diff --git a/Manifest.files.gz b/Manifest.files.gz index 25d9a7378f26..9f0e1fdc4fa3 100644 Binary files a/Manifest.files.gz and b/Manifest.files.gz differ diff --git a/app-admin/Manifest.gz b/app-admin/Manifest.gz index 531c47f2c109..992d13e7efbf 100644 Binary files a/app-admin/Manifest.gz and b/app-admin/Manifest.gz differ diff --git a/app-admin/awscli/Manifest b/app-admin/awscli/Manifest index ac58f16f0909..81de1d4f9649 100644 --- a/app-admin/awscli/Manifest +++ b/app-admin/awscli/Manifest @@ -3,3 +3,4 @@ DIST aws-cli-1.27.109.gh.tar.gz 2396167 BLAKE2B a4221643b05b076fc9304491041e3b14 DIST aws-cli-1.27.112.gh.tar.gz 2398322 BLAKE2B aad52e0df4da8c59441b6540f0ce3ac2884157260584ecf3b4af8826d4a3e60190100727e725d211b0299552addce19d9ffe903cb8e5b13113df052a2c23f2d2 SHA512 dc06c09963002ef2cc4b419cbeed0f0f99f1ca73140cca9c942f76b49e49905cb51ee1be8a9235b1edfd79543ae25664ea0d283b5bfa45b1346feb7f19cf3b78 DIST aws-cli-1.27.113.gh.tar.gz 2398657 BLAKE2B 00fc53140bb5085713fecfb4182bb37a032d8cd02de4328435a04e2052ee058ca64ab05666562dd9665c86f95afccb94d1230b248408412a024c973b05ddadcd SHA512 238fd1743b008e76a50edbf688020ecf5d0a302f66d288cdc440893a40471525f9cdd85b8f3fa48370d235de2cafed9b616b335541194e5312e3869c5db746dd DIST aws-cli-1.27.114.gh.tar.gz 2406530 BLAKE2B a566214d83d0238c74e306d82829bc9a512aa03def8a4f3ccffc819ded588427051c524fbd91c32f1dd6f6eafd54e6fe40a1e701c9985a1ec587f362fe1c2920 SHA512 60df892a996b5b5c36478e86f321ae9abe3c2d3faafc3187d0b9442d060633ddeddbeeab7ee42a0eca7cb45b07f8c86bbf9d626362a26c503f10b1c693dd1f2a +DIST aws-cli-1.27.115.gh.tar.gz 2406947 BLAKE2B ef5ac62ef273d92b19d1ef2ea755b35f2353a3aea66e935e44408f11c84320701b7419cfbf36f3ed220d62f3ca3d95ee455b50db4fbed70da7cdef885401090b SHA512 878da56008e5c8cd8347571187713c0624dfedae58bcf02df2082560cdcd082721cd215c4e4bce0b82281bdc61979f4006dd3b860bde65adbf072b45ec89130b diff --git a/app-admin/awscli/awscli-1.27.115.ebuild b/app-admin/awscli/awscli-1.27.115.ebuild new file mode 100644 index 000000000000..62c19f3a63fb --- /dev/null +++ b/app-admin/awscli/awscli-1.27.115.ebuild @@ -0,0 +1,80 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..11} ) + +inherit bash-completion-r1 distutils-r1 multiprocessing + +MY_P=aws-cli-${PV} +DESCRIPTION="Universal Command Line Environment for AWS" +HOMEPAGE=" + https://github.com/aws/aws-cli/ + https://pypi.org/project/awscli/ +" +SRC_URI=" + https://github.com/aws/aws-cli/archive/${PV}.tar.gz + -> ${MY_P}.gh.tar.gz +" +S=${WORKDIR}/${MY_P} + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86" + +# botocore is x.(y+2).z +BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 2)).$(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.6.0[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] + !app-admin/awscli-bin +" +BDEPEND=" + test? ( + dev-python/pytest-forked[${PYTHON_USEDEP}] + dev-python/pytest-xdist[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +src_prepare() { + # do not rely on bundled deps in botocore (sic!) + find -name '*.py' -exec sed -i \ + -e 's:from botocore[.]vendored import:import:' \ + -e 's:from botocore[.]vendored[.]:from :' \ + {} + || die + # strip overzealous upper bounds on requirements + sed -i -e 's:,<[0-9.]*::' -e 's:==:>=:' setup.py || die + distutils-r1_src_prepare +} + +python_test() { + local EPYTEST_DESELECT=( + # TODO + tests/functional/eks/test_kubeconfig.py::TestKubeconfigLoader::test_load_simple + tests/unit/customizations/eks/test_update_kubeconfig.py::TestKubeconfigSelector::test_choose_env_only + tests/unit/customizations/eks/test_update_kubeconfig.py::TestKubeconfigSelector::test_choose_existing + tests/unit/customizations/eks/test_kubeconfig.py::TestKubeconfigValidator::test_valid + ) + + # integration tests require AWS credentials and Internet access + epytest tests/{functional,unit} -n "$(makeopts_jobs)" --forked +} + +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-admin/clog/clog-1.3.0-r1.ebuild b/app-admin/clog/clog-1.3.0-r1.ebuild index cf737f78194c..cc6689579c1b 100644 --- a/app-admin/clog/clog-1.3.0-r1.ebuild +++ b/app-admin/clog/clog-1.3.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -9,13 +9,16 @@ DESCRIPTION="clog is a colorized log tail utility" HOMEPAGE="https://taskwarrior.org/docs/clog/" SRC_URI="https://gothenburgbitfactory.org/download/${P}.tar.gz" -KEYWORDS="~amd64 ~x86 ~x64-macos" LICENSE="MIT" SLOT="0" +KEYWORDS="~amd64 ~x86 ~x64-macos" RESTRICT="test" # No test suite on tar.gz +PATCHES=( + "${FILESDIR}"/${PN}-1.3.0-gcc13.patch +) + src_prepare() { - default sed -i -e 's|share/doc/clog|share/clog|' CMakeLists.txt || die cmake_src_prepare } diff --git a/app-admin/clog/files/clog-1.3.0-gcc13.patch b/app-admin/clog/files/clog-1.3.0-gcc13.patch new file mode 100644 index 000000000000..3bdbc464a90e --- /dev/null +++ b/app-admin/clog/files/clog-1.3.0-gcc13.patch @@ -0,0 +1,11 @@ +https://github.com/GothenburgBitFactory/libshared/pull/71 +--- a/src/libshared/src/JSON2.h ++++ b/src/libshared/src/JSON2.h +@@ -27,6 +27,7 @@ + #ifndef INCLUDED_JSON2 + #define INCLUDED_JSON2 + ++#include + #include + + class JSON2 diff --git a/app-admin/clog/metadata.xml b/app-admin/clog/metadata.xml index 85e4ed814fa2..e7c3b330a17a 100644 --- a/app-admin/clog/metadata.xml +++ b/app-admin/clog/metadata.xml @@ -1,5 +1,8 @@ - + + + GothenburgBitFactory/clog + diff --git a/app-admin/consul/Manifest b/app-admin/consul/Manifest index f97ac05df344..ae3a011478a5 100644 --- a/app-admin/consul/Manifest +++ b/app-admin/consul/Manifest @@ -1 +1,2 @@ DIST consul-1.14.3-vendor.tar.gz 40650363 BLAKE2B 1c15333d1a1053da871ccf032c8b21f6b1265a5c222395f217444de3c4472c755d205bad82d83ecdb520081830d11e4c7f113207fe83a7dac4860497518d5be8 SHA512 b1764b845bea8681d72858de4558fdfce4de1faaaf1fb5221eab12d8c9f512efbf1b8a118ea68c829660e23410381a2b71d12fc6d995a64be041d74ad616a663 +DIST consul-1.15.2-vendor.tar.gz 43070821 BLAKE2B 39e375cf6fcb17e9a633aa7048588560f8efc93aacad7a332210d509d0b50a74e525be5e56ad9e0aa642b43f68362b8e28beb264c4365a96dd98eab6f4d296d7 SHA512 b00cd569dee83c7850fc13e5591c55dd2903242349ec747cc7ac8f18ebd207858148521c62a1da914610988f95cd543fcc5f5771a1c072c09521a8af0a474ba6 diff --git a/app-admin/consul/consul-1.15.2.ebuild b/app-admin/consul/consul-1.15.2.ebuild new file mode 100644 index 000000000000..5142a830ba70 --- /dev/null +++ b/app-admin/consul/consul-1.15.2.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit go-module systemd + +DESCRIPTION="A tool for service discovery, monitoring and configuration" +HOMEPAGE="https://www.consul.io" +GIT_COMMIT="5e08e229dbdaed5adf3ca99afe9df247c51507da" + +SRC_URI="https://github.com/zmedico/consul/archive/v${PV}-vendor.tar.gz -> ${P}-vendor.tar.gz" + +LICENSE="MPL-2.0 Apache-2.0 BSD BSD-2 CC0-1.0 ISC MIT" +RESTRICT="test" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +BDEPEND="dev-go/gox" +COMMON_DEPEND=" + acct-group/consul + acct-user/consul" + DEPEND="${COMMON_DEPEND}" + RDEPEND="${COMMON_DEPEND}" + +S=${WORKDIR}/${P}-vendor + +src_prepare() { + default + sed -e 's|^GIT_DATE=.*|GIT_DATE=2023-03-30T17:51:19Z|' -i GNUmakefile || die +} + +src_compile() { + # The dev target sets causes build.sh to set appropriate XC_OS + # and XC_ARCH, and skips generation of an unused zip file, + # avoiding a dependency on app-arch/zip. + GIT_DESCRIBE="v${PV}" \ + GIT_DIRTY="" \ + GIT_COMMIT="${GIT_COMMIT}" \ + emake dev-build +} + +src_install() { + dobin bin/consul + + keepdir /etc/consul.d + insinto /etc/consul.d + doins "${FILESDIR}/"*.json.example + + keepdir /var/log/consul + fowners consul:consul /var/log/consul + + newinitd "${FILESDIR}/consul.initd" "${PN}" + newconfd "${FILESDIR}/consul.confd" "${PN}" + insinto /etc/logrotate.d + newins "${FILESDIR}/${PN}.logrotated" "${PN}" + systemd_dounit "${FILESDIR}/consul.service" +} diff --git a/app-admin/git-credential-gopass/Manifest b/app-admin/git-credential-gopass/Manifest index 22eacff3571d..36018363ec35 100644 --- a/app-admin/git-credential-gopass/Manifest +++ b/app-admin/git-credential-gopass/Manifest @@ -1,4 +1,4 @@ -DIST git-credential-gopass-1.15.3-deps.tar.xz 36895816 BLAKE2B 16b480c0e0f40f8b8e5802f25ef45d117dc96853d9fab89c9c7f11bda57bd681fb3f03bf7231a5b848196e079bb6717775389c86e8130e2b1f2238791ff2148b SHA512 7952aa7223839b8d0967b96b3dedbd2361df50b5108210de98237d7445d5941c06d98e295a7f7e25e57e466fd062933f6ef71a630cbbbfbf8d55a035a46c9558 -DIST git-credential-gopass-1.15.3.tar.gz 20583 BLAKE2B caf091710a0fa4f6ac461c6beec4fe2add797cbaf7794a4675544fd3e878cd0e57c27280040605cca3879598922912194b70aa70e237a688362dfd9186b5824e SHA512 c3be30d502d77865dba660780903d195c2d328045150627a7a3412ec987f92ed931995e6fc6663a623b32de637cb600f878e633175ce5b813bfcafb0fc4a1b8d DIST git-credential-gopass-1.15.4-deps.tar.xz 33138508 BLAKE2B 7cbb930e55f1ed53f3ce8c47e51d8066d1a518801d5d364b8c8b90b376910e916e34c5f2493cb062ac5c03e0b9aeb96119f129a8655b6ad3f1d9fec4600cb0a1 SHA512 14ecefd8b36513195cae86d355d974d596e859c46450121350af2d2aaf27f592b54e55e697c200eb89e94959f278e65712dbb4d534d0c1bcbc711fb4db829625 DIST git-credential-gopass-1.15.4.tar.gz 20592 BLAKE2B 2fef319cb7c1d90c89512f305fffbbe88ce5efa25bde798adfebdbf1a29847b1c62d51ca4ece4262c6746e5abb0f31e01804e827de8fdd364fa6bfbe2a9fd414 SHA512 4e456c35fb5fb4d91fada4c2ccafa5a48c9261746653dd363638b1fccfeea647f465d0956146a18bb0d50ffb8bd2c7502497efcac54095db7d37441074aeb6cb +DIST git-credential-gopass-1.15.5-deps.tar.xz 182896696 BLAKE2B 59cd74ff4be1dfd83d221327d041506c41799f67d8559f5a12341a70f2c63e36d03f8f99628ac973a02cbb42ba920366642f124a6315a8ff0d388d384c912b85 SHA512 64f34fecad85562cdf4db48030703b991bb2f6448e1fbd17ab0063f193c328f78e9630b7e64e9f1e4417f011b6a087e2e9fb19fe4adbac3ff36c3a315da933a6 +DIST git-credential-gopass-1.15.5.tar.gz 23210 BLAKE2B 18f58e3e72778b9e3493288e2ab546413e09ed49b3d2764ed72d0cc444d4c03afd7fc4a4ecc1f378320296c6c7a488e0ec0e42ee688ad1b51c999c5a030e8339 SHA512 de67f21b27dc4f8e5437b465a748dabf3563393b09aefff08016fe367ffd847b3ad196d034589a05e1723763abf56395ab08372a05b86005cca11a3cc4cfb91f diff --git a/app-admin/git-credential-gopass/git-credential-gopass-1.15.3.ebuild b/app-admin/git-credential-gopass/git-credential-gopass-1.15.5.ebuild similarity index 94% rename from app-admin/git-credential-gopass/git-credential-gopass-1.15.3.ebuild rename to app-admin/git-credential-gopass/git-credential-gopass-1.15.5.ebuild index 7f46921b8f13..ab81da8481dc 100644 --- a/app-admin/git-credential-gopass/git-credential-gopass-1.15.3.ebuild +++ b/app-admin/git-credential-gopass/git-credential-gopass-1.15.5.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/gopasspw/git-credential-gopass/archive/v${PV}.tar.gz LICENSE="MIT Apache-2.0 BSD MPL-2.0 BSD-2" SLOT="0" -KEYWORDS="amd64 ~ppc64 ~x86" +KEYWORDS="~amd64 ~ppc64 ~x86" DEPEND=">=dev-lang/go-1.16" RDEPEND=" diff --git a/app-admin/gopass-hibp/Manifest b/app-admin/gopass-hibp/Manifest index ddb056fcd474..9833b0abd7a0 100644 --- a/app-admin/gopass-hibp/Manifest +++ b/app-admin/gopass-hibp/Manifest @@ -1,4 +1,4 @@ -DIST gopass-hibp-1.15.3-deps.tar.xz 37693396 BLAKE2B 24bb949660e9e38fe03ab2c6d1af2a4c46501352149d0532a99d1f8bede20aa10936af02d4cc4e94036eee50db21cab7e91c31aa9d15e34b4bf4ae88cc31e284 SHA512 060bf251850efb39590028a40d2922d3a2299550b4259c96b58e52a5ebc99e52bd341811f1a27676c5b5a0ab25d7094de3514e7f2d733caf64537bdb1cee56f6 -DIST gopass-hibp-1.15.3.tar.gz 24961 BLAKE2B 477a5bdd285e1ff53a24e1f9f7e860b3226bc936a1283d058ba7b614a9578bdaa36fae9367584b182057c0dc114f10dafebea11149f1d3841ff7d263a7a7edd2 SHA512 da0e894a3429c40a3c5351f09edd21a9eb0552fde7cabee9f33f0b37346ef61af24d66aed0e81cc99d8f1ada716a5bf0182c2e604c1bf2b8d38de077c359ad18 DIST gopass-hibp-1.15.4-deps.tar.xz 33365976 BLAKE2B 15c125423cc52b89a93d650c30a94b95452d923884ef3637c5e04aef9885e89dfce4e1f2205ab18a362eea6624439accdb15420bc8fa950d4755cc741638deb6 SHA512 7f1312372ea9f134e81069de62d97d475c402e899248534923a9e5b3557360004dd92a01ca4bb0f1e3289c599bc027999742a9d24aa6922d8b2653f0e18a1f40 DIST gopass-hibp-1.15.4.tar.gz 24968 BLAKE2B 04c20ac2e29fd4268a01aca998ac32884c41b8e9a5f40772427a54a737ada5bcd6da0224a5e5939db082ddb5cc216deb24c9eea6db9320f8c89618bbff5fcfbe SHA512 64cd2beed3c1089b0be474722caba9511abdfac875c1a47ee29d2ec26591edf613801d0d3687a58d1cb67d9235093922fe5372effc96a373f49b09e7ffec54b1 +DIST gopass-hibp-1.15.5-deps.tar.xz 182857584 BLAKE2B 0e0c536b02ac2c22daa299513815351e0890361dd2f3fb7cf2bf33c7c980371321b3e009599242190f51acf14f83be1c32948999e29aa54ad4e6b17a8c9087d0 SHA512 9b81e1a30a111f58b81e2e88a13e955ab406c31922287990968ef21e575d611d7754e0d7e0ee82191fbe6d2f72f3d30cf34b632c5ba548c1d165e218e2803698 +DIST gopass-hibp-1.15.5.tar.gz 27096 BLAKE2B df6a87ba6279d3dc0f1403861e5829d2fd5f5ec1b2aadf4c1cb27d6380d50df482af115ec78ae807e20660c5cd1fbd4336849271959647259a5626896b85f923 SHA512 d32ad613a25b52e9fbdc655ac15ebac8456882be9dcc462f186a888e4f82070cfe295f0e359faa4cf01b3c562d01328ce1dcb835df85707957c79a84c52d9fcf diff --git a/app-admin/gopass-hibp/gopass-hibp-1.15.3.ebuild b/app-admin/gopass-hibp/gopass-hibp-1.15.5.ebuild similarity index 94% rename from app-admin/gopass-hibp/gopass-hibp-1.15.3.ebuild rename to app-admin/gopass-hibp/gopass-hibp-1.15.5.ebuild index 37f93d67124f..f3c5b3ef350d 100644 --- a/app-admin/gopass-hibp/gopass-hibp-1.15.3.ebuild +++ b/app-admin/gopass-hibp/gopass-hibp-1.15.5.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/gopasspw/gopass-hibp/archive/v${PV}.tar.gz -> ${P}.t LICENSE="MIT Apache-2.0 BSD MPL-2.0 BSD-2" SLOT="0" -KEYWORDS="amd64 ~ppc64 ~x86" +KEYWORDS="~amd64 ~ppc64 ~x86" DEPEND=">=dev-lang/go-1.16" RDEPEND=" diff --git a/app-admin/gopass-jsonapi/Manifest b/app-admin/gopass-jsonapi/Manifest index 09e429a28b69..357bd8d1e9f3 100644 --- a/app-admin/gopass-jsonapi/Manifest +++ b/app-admin/gopass-jsonapi/Manifest @@ -1,4 +1,4 @@ -DIST gopass-jsonapi-1.15.3-deps.tar.xz 37462824 BLAKE2B c6ec5937e0b029f70f378cc5ebda5b3dd70f426d67e0327f1851f68712fa6fc438841f2b1c6a403283a3a8a339c683970c10d11191d2ca282e0ebcc7c912876e SHA512 d41ff73f693283d33d9c0812ba929cf9fa2df51e616d653652cb2b2ffc8dd56f5b0a123cbdcf0659b579eb7dd6aa7895dd3a20b6df0420dc112dbdf48d5f5a72 -DIST gopass-jsonapi-1.15.3.tar.gz 32273 BLAKE2B ed0befce03a00336329f322a9d682a8237e72fc01816b1d3df35813cc360711f19051614fea8562e0fe47e1cd96607f4347cf57a08f5372b0a60896fa9fb88ed SHA512 90f1ddb51ed006e7504895f3b686192eec7571243601c3ab24e7525144c0ed338519a710258b5edd8d5b0b9b0bc8c6c319f37e3fb67ba1c938273be30b739989 DIST gopass-jsonapi-1.15.4-deps.tar.xz 33151484 BLAKE2B 40ce78be07dcc3a795da0e76f5b66b2a2a95b222170655773f5ee62e849780d8d6c618233f19f28af3087e116935d6fc7f5ac0ba653158b5ea27014776d9ed26 SHA512 820f92f7ae7dbe9b546ddf7573c72a3b4a2516610932e499e6e15dbcb6a2fc16a5a8710b02c730d0e7654dd1ac9c0e57eb753df1236ef1b6edc2ae86b2e999b5 DIST gopass-jsonapi-1.15.4.tar.gz 32293 BLAKE2B 5796bf2c8eceb50dc05643e27ec8673ca4bb350a57776b57e6b3aaa7379c643efbafe9eea1662af9615a68adad03ef82eb76fa01ae209fa59a0cffaecfe225a7 SHA512 9471210eb1feb6bdefd88c2c051fd2327ac0915963c6958f9ca2991139437e21c964e7da549d1803367c2b77b6755211921651ffaa2a14925b00826410cb4651 +DIST gopass-jsonapi-1.15.5-deps.tar.xz 182924608 BLAKE2B 1f17479dea38308fbf779ce772505af75461217b1d4f76f730b1a7747ffad8d2229712d0c740632c86a1e1a88aff093c67e500a35c12eac09563eaa28febc418 SHA512 bf51d1b9b83ce8056dfd7d88f17f2fea5efbe62a4f44fa68ffe3fdf317758782c9c6313de190db79462bc6a41188615e8995ea9ea7e01215f8f8381fbb597734 +DIST gopass-jsonapi-1.15.5.tar.gz 34898 BLAKE2B f0cfe7aba96cf9eed7b1fcdaaeb031a280e3e57515de1e4c8ac72f2fe9ed35d553c21c068aa542d46b96f0726214a50d403acf545b77f1862a7d2a1d6e729d15 SHA512 dbc8de9cf16f1c20af1e94bc1c0a7c168b76db28a889f0f51d04f8a922f6ec70fd6b921ef5413708bd6832f79e82521f48feef3f9eb9742062d1e2c806ff3067 diff --git a/app-admin/gopass-jsonapi/gopass-jsonapi-1.15.3.ebuild b/app-admin/gopass-jsonapi/gopass-jsonapi-1.15.5.ebuild similarity index 95% rename from app-admin/gopass-jsonapi/gopass-jsonapi-1.15.3.ebuild rename to app-admin/gopass-jsonapi/gopass-jsonapi-1.15.5.ebuild index ddab8fe42629..a25268591243 100644 --- a/app-admin/gopass-jsonapi/gopass-jsonapi-1.15.3.ebuild +++ b/app-admin/gopass-jsonapi/gopass-jsonapi-1.15.5.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/gopasspw/gopass-jsonapi/archive/v${PV}.tar.gz -> ${P LICENSE="MIT Apache-2.0 BSD MPL-2.0 BSD-2" SLOT="0" -KEYWORDS="amd64 ~ppc64 ~x86" +KEYWORDS="~amd64 ~ppc64 ~x86" DEPEND=">=dev-lang/go-1.16" RDEPEND=" diff --git a/app-admin/gopass-summon-provider/Manifest b/app-admin/gopass-summon-provider/Manifest index 5165dbf9420f..d63da246c2e6 100644 --- a/app-admin/gopass-summon-provider/Manifest +++ b/app-admin/gopass-summon-provider/Manifest @@ -1,4 +1,4 @@ -DIST gopass-summon-provider-1.15.3-deps.tar.xz 37377176 BLAKE2B 52da3b10cd05df981c2f1fc74d3a37b4136ac383f8388965d384573562ba70a52fa6894440f9f19378b24a4df6116ef7882684a4c3c4c2f30a5408715fcb2894 SHA512 e616b6ef0c6d300f62761e63a9184a243d34630269e0a2a85c9294e6b209a349421fba73c21b50df93c2e7ffd70582e162681b50c28c3effecae51d766b1515c -DIST gopass-summon-provider-1.15.3.tar.gz 17573 BLAKE2B 641f84b3ad27fa3af961a3d2463e7b476343238284b45575f9a76b12d811f1426943888129b19c1e60ca22debb560854ebded9b9966c16b0dc91e30f929892ff SHA512 d06734997651492aeb3d6b91bf8b15a48da3c2b7a5e7c8dec6fa40fa90e4e0e05ba89a73e100f27e1523f2c426e30f6fb07faf14151e98fe81e7403a468dcc33 DIST gopass-summon-provider-1.15.4-deps.tar.xz 33138508 BLAKE2B 7cbb930e55f1ed53f3ce8c47e51d8066d1a518801d5d364b8c8b90b376910e916e34c5f2493cb062ac5c03e0b9aeb96119f129a8655b6ad3f1d9fec4600cb0a1 SHA512 14ecefd8b36513195cae86d355d974d596e859c46450121350af2d2aaf27f592b54e55e697c200eb89e94959f278e65712dbb4d534d0c1bcbc711fb4db829625 DIST gopass-summon-provider-1.15.4.tar.gz 17546 BLAKE2B 9c0a8fc50ed4f39139d5b14e389066afc42814ff60036022877fe933b598f100b2169455b4576a2d83d18ea19c8ebce852510940e2c24e8a61073f074509c444 SHA512 6ba06f561379284bc1344ca6982f8bb7ed6641c790bc4907b235fc5a330551f829b21aadb4a72f962692d5d36bde68845f798eb9cc4116787a9015fd2bfc65d3 +DIST gopass-summon-provider-1.15.5-deps.tar.xz 182896696 BLAKE2B 59cd74ff4be1dfd83d221327d041506c41799f67d8559f5a12341a70f2c63e36d03f8f99628ac973a02cbb42ba920366642f124a6315a8ff0d388d384c912b85 SHA512 64f34fecad85562cdf4db48030703b991bb2f6448e1fbd17ab0063f193c328f78e9630b7e64e9f1e4417f011b6a087e2e9fb19fe4adbac3ff36c3a315da933a6 +DIST gopass-summon-provider-1.15.5.tar.gz 19679 BLAKE2B fbb4606ae6459537fc5f4c05fc7df7cd8191277a6e2435809bb352b92c88616ff93aa90f2597a62ef8c870fae310f659698ba9a6c4a9d7643730d05d3932c485 SHA512 c9009ca4fa282890b596abe9dd357cb550d70eaa74f30a9e5edfa659d1e646cf33bf105167f6627cee1818fe962f83af9e06294139697110bf593cd8a5f91ddb diff --git a/app-admin/gopass-summon-provider/gopass-summon-provider-1.15.3.ebuild b/app-admin/gopass-summon-provider/gopass-summon-provider-1.15.5.ebuild similarity index 94% rename from app-admin/gopass-summon-provider/gopass-summon-provider-1.15.3.ebuild rename to app-admin/gopass-summon-provider/gopass-summon-provider-1.15.5.ebuild index 5e5d48b3911a..ee10d170bf67 100644 --- a/app-admin/gopass-summon-provider/gopass-summon-provider-1.15.3.ebuild +++ b/app-admin/gopass-summon-provider/gopass-summon-provider-1.15.5.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/gopasspw/gopass-summon-provider/archive/v${PV}.tar.g LICENSE="MIT Apache-2.0 BSD MPL-2.0 BSD-2" SLOT="0" -KEYWORDS="amd64 ~ppc64 ~x86" +KEYWORDS="~amd64 ~ppc64 ~x86" DEPEND=">=dev-lang/go-1.16" RDEPEND=" diff --git a/app-admin/gopass/Manifest b/app-admin/gopass/Manifest index 08d8376794ab..143d3664d4c2 100644 --- a/app-admin/gopass/Manifest +++ b/app-admin/gopass/Manifest @@ -1,4 +1,4 @@ -DIST gopass-1.15.3-deps.tar.xz 36970888 BLAKE2B e338ba7a6a248694d33116a68aefc3abbe3b6b3a9a86896b5a0c5286824bffb94bb2715c8e9c1fc6ad0715897fa39e8fd46c0734adaafe5318dcdbc0eb0ac4b2 SHA512 2a5a011b170cf2635ab33399dec5661bb7ce297508878a82f38a3b6090c4b75086592da59ff07b81873ee67786be345d3092c69730b7e3c4234b048df1898ae4 -DIST gopass-1.15.3.tar.gz 2293686 BLAKE2B f6a5191dbb6642f448103d0b5017d792be2d7ab7d1156ceeebe52dc7bdaf9b027bf417982f0eb7a189ad09a8df06eab1fc2a637c8219a72721d583542ab51372 SHA512 1638c681c4343ff42247d7de5c153e9f992d34fc46b97a5199047c38f2658d968e8bd81029447f7768b39bf432464eb2a24d25215a7cff228e108b3ca4536220 DIST gopass-1.15.4-deps.tar.xz 34045072 BLAKE2B d8525a166df31c99b20a1a7262c2e287b7e429dcd010183585fbac7e58ae8ce4d5430fb936da0b9a85fd8a2f0ff08555d02140a649fddc07c818e11b3bcdb287 SHA512 0953101962d77116e788858652a98ffa3b8c0bd58137f59791da45d6e73cfd5fa39e40edd400c5d881cc549fc1b155b17dda48c6f59d9e06b6c000b259098d2a DIST gopass-1.15.4.tar.gz 2301976 BLAKE2B f947d0e7b7ba599743404a231d9b09380d0069489543e1cc306eb11a3dbf369368dc8c8a464abac04558907fa6c93982a56575b79b7920ee84a46c94beb815ae SHA512 c6cf67de3b3ace253822ea9890a50ecbd2829eb7b625d05327d1b3549ed3ff6b84d1155f71276fa94b6392012b0c87b4b9e488ca0d14915d40af77fc21325603 +DIST gopass-1.15.5-deps.tar.xz 182300292 BLAKE2B 12878d90f59c1e15f18eefed331ffcb195292f9895243918cf6e66cc0d90b95bf0b0fa098ba80fb77ec559476c88b79e56102f191bfee6f6b68ef00dbcd7572b SHA512 1ba502d9074fd722c82a998791d291b2fba98c35339f404757b7ae10b3bb8971329e4a8c74bcf4b589e67dede0bf04b240d8a3db9812f4aa75bbd7f7ef9c1c51 +DIST gopass-1.15.5.tar.gz 2304217 BLAKE2B bc20ce1f738e01800def34dac131199c249742cb1383af8bd97b0f441b47163b10ba2a3cc41962c933e343b88ce37c60c74665a599724353f3d5a245cc42cc75 SHA512 4e99db0020e87cb494fa33e6d63a6d3d7af10ebff79a32c95bfb18201f881c5e99ce6593c87cb43a6aa2f38bfcae23b1496eee9fbc88026aad41871ca83a94be diff --git a/app-admin/gopass/gopass-1.15.4.ebuild b/app-admin/gopass/gopass-1.15.4.ebuild index c54c2b1d89a1..67107d2d0faf 100644 --- a/app-admin/gopass/gopass-1.15.4.ebuild +++ b/app-admin/gopass/gopass-1.15.4.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/gopasspw/gopass/archive/v${PV}.tar.gz -> ${P}.tar.gz LICENSE="MIT Apache-2.0 BSD MPL-2.0 BSD-2" SLOT="0" -KEYWORDS="~amd64 ~ppc64 ~riscv ~x86" +KEYWORDS="amd64 ~ppc64 ~riscv ~x86" DEPEND=">=dev-lang/go-1.18" RDEPEND=" diff --git a/app-admin/gopass/gopass-1.15.3.ebuild b/app-admin/gopass/gopass-1.15.5.ebuild similarity index 96% rename from app-admin/gopass/gopass-1.15.3.ebuild rename to app-admin/gopass/gopass-1.15.5.ebuild index 67107d2d0faf..c54c2b1d89a1 100644 --- a/app-admin/gopass/gopass-1.15.3.ebuild +++ b/app-admin/gopass/gopass-1.15.5.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/gopasspw/gopass/archive/v${PV}.tar.gz -> ${P}.tar.gz LICENSE="MIT Apache-2.0 BSD MPL-2.0 BSD-2" SLOT="0" -KEYWORDS="amd64 ~ppc64 ~riscv ~x86" +KEYWORDS="~amd64 ~ppc64 ~riscv ~x86" DEPEND=">=dev-lang/go-1.18" RDEPEND=" diff --git a/app-admin/rsyslog/Manifest b/app-admin/rsyslog/Manifest index c2c7f2056f0b..edddd927eea9 100644 --- a/app-admin/rsyslog/Manifest +++ b/app-admin/rsyslog/Manifest @@ -1,8 +1,6 @@ DIST rsyslog-8.2208.0.tar.gz 3262298 BLAKE2B c13920c755a24d8060335f3281a349d2f32c3c99de7351991e09e62302f6d9f61f4390b7945e30816c7d28afe5f757f6a49b2855e40e3f2f518a423662196b1b SHA512 e63f2465011722eb1bc99676ef6afd66e655af4fb9d751b3d8776499d054c422b195c65fef9ea6b9012d9fb334b7ed8a1c918167fecff389cbb79aa6b74acb73 DIST rsyslog-8.2210.0.tar.gz 3266727 BLAKE2B fc94e7d9b7d828c35e6117ff44d40aa421b79ecd9072cc143177cb77ac6e84adaa5e2b9ae9a66e4bb70d8b93411715f63f0e3707e53c965ef892d9146ec43c92 SHA512 c665b7f7a3c5ef31c9b62b50f815cfbb52db0cbe4a06934f4f1c3cd2a56fb49c319d33857ee92ab843aa5894cac16c16b8eccdf83714f31ab57a95049c4af231 -DIST rsyslog-8.2212.0.tar.gz 3268012 BLAKE2B 72347c8281ce537cade415b73a5f15b80ad035ccf9091bcbb72952da32790064a8dd88416d3b7682e6fb77f23dbd51cb2b596587498d4cbccedf21c41c2c6305 SHA512 ca8c3d4c035f9dd5fb6b2d27c66f5e3211458cb1afbf2a73d3e268424a40e3e8746499d7db2e313cf2833f2f73640eb79924770198fb3009ef5461479cf80d15 DIST rsyslog-8.2302.0.tar.gz 3273655 BLAKE2B 41ab639dcc93e325b6e092bc7c2c8fa60ce6192ec20033665930573ed5944af5830fc91aa3e607501c2b4759775efcd55631f82096e18ff1df67f00c3e956d6b SHA512 ebdf179c320425a137d1d20eef15163b342165435879e55531aa0dd9ae459fa35266696cc80fecae63a7e1eef31be51ba4154360e5dbe3c00471a84883c03168 DIST rsyslog-doc-8.2208.0.tar.gz 6563848 BLAKE2B ec68684f1d7d895833f656ba6224a8013213a12b1bc7a28a268f2f629c25a3fbac7c379091f17eae24b6d71278c087e4a4cbed1656554de743fe5616a96559bf SHA512 428c2fe9e5025928d4a9d33f05f4eb20ac1bbde052b7fa2a8a0e45bfffe111eecc94eb2b6ec129de1011f0eabb106b4fb41d402b2a270e4148d3b1081e3b1da0 DIST rsyslog-doc-8.2210.0.tar.gz 6572454 BLAKE2B feb865e3585ee441117f38de61748a6ca99767dae113cfcf2cd0d0a124cc692889be713134163fc91f4ab43b9fe530e3c7c0b84e4bd4e70081c4539297ae1406 SHA512 e7847a9307a91fdf87d6cf91d2391eb75869679905b9598310c456fb3fe1864fc06dbdc649778f5b3788e47ffda0a6d89cb894258e55db441f7df7e74b0ae9f4 -DIST rsyslog-doc-8.2212.0.tar.gz 6574799 BLAKE2B b81bef5a15c2c76a517617cb64682c663809f3308ffb2427beca180db7c91b4000fa72041ef83440134917e10ee6f4cd16ff58633d719bdb895c7316a87d8dc9 SHA512 bbecf2b9b9752f7d8a10bc3125c55e4def2a61108a65a717d7d86e7b63634e010ecd31fe40b2256611822d3dd17be20cbf9eb65efd787315723aba6b29cb3a8a DIST rsyslog-doc-8.2302.0.tar.gz 6586882 BLAKE2B bd79d53670234df46fae79234e03bbee05129dcd5bfe36d74595ce90e91ed8efa2d32cc817dadc9634a67eab7b9e640ad686685495cff75ebb1ff16730c8e904 SHA512 b922a4ed3e7b7235aa4a00c26a45b3b9f3a092679a7ce324543eea0c59cb34ad5a0ee2cac3a37e8964a4bc059cbcc661932496c7ff5765ef4f2da19cb6d35ee2 diff --git a/app-admin/rsyslog/rsyslog-8.2212.0-r1.ebuild b/app-admin/rsyslog/rsyslog-8.2212.0-r1.ebuild deleted file mode 100644 index 0d3d01886462..000000000000 --- a/app-admin/rsyslog/rsyslog-8.2212.0-r1.ebuild +++ /dev/null @@ -1,496 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) - -inherit autotools linux-info python-any-r1 systemd - -DESCRIPTION="An enhanced multi-threaded syslogd with database support and more" -HOMEPAGE="https://www.rsyslog.com/" - -if [[ ${PV} == "9999" ]]; then - EGIT_REPO_URI="https://github.com/rsyslog/${PN}.git" - - DOC_REPO_URI="https://github.com/rsyslog/${PN}-doc.git" - - inherit git-r3 -else - KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc64 ~riscv ~sparc ~x86" - - SRC_URI=" - https://www.rsyslog.com/files/download/${PN}/${P}.tar.gz - doc? ( https://www.rsyslog.com/files/download/${PN}/${PN}-doc-${PV}.tar.gz ) - " -fi - -LICENSE="GPL-3 LGPL-3 Apache-2.0" -SLOT="0" - -IUSE="clickhouse curl dbi debug doc elasticsearch +gcrypt gnutls imhttp" -IUSE+=" impcap jemalloc kafka kerberos kubernetes mdblookup" -IUSE+=" mongodb mysql normalize omhttp omhttpfs omudpspoof +openssl" -IUSE+=" postgres rabbitmq redis relp rfc3195 rfc5424hmac snmp +ssl" -IUSE+=" systemd test usertools +uuid xxhash zeromq" - -RESTRICT="!test? ( test )" - -REQUIRED_USE=" - kubernetes? ( normalize ) - ssl? ( || ( gnutls openssl ) ) -" - -BDEPEND=">=sys-devel/autoconf-archive-2015.02.24 - sys-apps/lsb-release - virtual/pkgconfig - test? ( - jemalloc? ( /dev/null; then - die "certtool not found! Is net-libs/gnutls[tools] is installed?" - fi - - # Make sure the certificates directory exists - local CERTDIR="${EROOT}/etc/ssl/${PN}" - if [[ ! -d "${CERTDIR}" ]]; then - mkdir "${CERTDIR}" || die - fi - einfo "Your certificates will be stored in ${CERTDIR}" - - # Create a default CA if needed - if [[ ! -f "${CERTDIR}/${PN}_ca.cert.pem" ]]; then - einfo "No CA key and certificate found in ${CERTDIR}, creating them for you..." - certtool --generate-privkey \ - --outfile "${CERTDIR}/${PN}_ca.privkey.pem" || die - chmod 400 "${CERTDIR}/${PN}_ca.privkey.pem" - - cat > "${T}/${PF}.$$" <<- _EOF - cn = Portage automated CA - ca - cert_signing_key - expiration_days = 3650 - _EOF - - certtool --generate-self-signed \ - --load-privkey "${CERTDIR}/${PN}_ca.privkey.pem" \ - --outfile "${CERTDIR}/${PN}_ca.cert.pem" \ - --template "${T}/${PF}.$$" || die - chmod 400 "${CERTDIR}/${PN}_ca.privkey.pem" - - # Create the server certificate - echo - einfon "Please type the Common Name of the SERVER you wish to create a certificate for: " - read -r CN - - einfo "Creating private key and certificate for server ${CN}..." - certtool --generate-privkey \ - --outfile "${CERTDIR}/${PN}_${CN}.key.pem" || die - chmod 400 "${CERTDIR}/${PN}_${CN}.key.pem" - - cat > "${T}/${PF}.$$" <<- _EOF - cn = ${CN} - tls_www_server - dns_name = ${CN} - expiration_days = 3650 - _EOF - - certtool --generate-certificate \ - --outfile "${CERTDIR}/${PN}_${CN}.cert.pem" \ - --load-privkey "${CERTDIR}/${PN}_${CN}.key.pem" \ - --load-ca-certificate "${CERTDIR}/${PN}_ca.cert.pem" \ - --load-ca-privkey "${CERTDIR}/${PN}_ca.privkey.pem" \ - --template "${T}/${PF}.$$" &>/dev/null - chmod 400 "${CERTDIR}/${PN}_${CN}.cert.pem" - - else - einfo "Found existing ${CERTDIR}/${PN}_ca.cert.pem, skipping CA and SERVER creation." - fi - - # Create a client certificate - echo - einfon "Please type the Common Name of the CLIENT you wish to create a certificate for: " - read -r CN - - einfo "Creating private key and certificate for client ${CN}..." - certtool --generate-privkey \ - --outfile "${CERTDIR}/${PN}_${CN}.key.pem" || die - chmod 400 "${CERTDIR}/${PN}_${CN}.key.pem" - - cat > "${T}/${PF}.$$" <<- _EOF - cn = ${CN} - tls_www_client - dns_name = ${CN} - expiration_days = 3650 - _EOF - - certtool --generate-certificate \ - --outfile "${CERTDIR}/${PN}_${CN}.cert.pem" \ - --load-privkey "${CERTDIR}/${PN}_${CN}.key.pem" \ - --load-ca-certificate "${CERTDIR}/${PN}_ca.cert.pem" \ - --load-ca-privkey "${CERTDIR}/${PN}_ca.privkey.pem" \ - --template "${T}/${PF}.$$" || die - chmod 400 "${CERTDIR}/${PN}_${CN}.cert.pem" - - rm -f "${T}/${PF}.$$" - - echo - einfo "Here is the documentation on how to encrypt your log traffic:" - einfo " https://www.rsyslog.com/doc/rsyslog_tls.html" -} diff --git a/app-admin/syslog-ng/Manifest b/app-admin/syslog-ng/Manifest index 50c22bc534d6..2d6ac003d55b 100644 --- a/app-admin/syslog-ng/Manifest +++ b/app-admin/syslog-ng/Manifest @@ -1,2 +1,3 @@ DIST syslog-ng-3.38.1.tar.gz 5405048 BLAKE2B 7819cbe0caab7f580ca9f71181c84d64da838a238a6f8b8b79c8816e37e5691e72e1284de57d5066d3c681d8751950e5a32d65a1b1af4e064dd82f2c59899fe3 SHA512 3a3ef5c72d8c211ed2914791380061dcd48ea1ea95f636a1a8649dc5dee731a11e9ae000a37cbeeba624f4053b623b697e6c7f945a81153106c2365f4f09a847 DIST syslog-ng-4.0.1.tar.gz 5452824 BLAKE2B a5c0328f3c88a38dbc07bb7af2a74c0037a6679525a29fca58620a8ef6b05ec13f3942d26767aded0049376ed30ce6a525686501914648a509997c5de2b48eb4 SHA512 5f83ee3cc4935218feb19f3f5065a68099e3ee291d806ad8810499ded9f9ef3b326b4b22841cd736354ed6a2ebc1ce8ae73f6abe981aa6f64c42da9ee3b1e22f +DIST syslog-ng-4.1.1.tar.gz 5556174 BLAKE2B 3e1a9c394b8a88cc7b39a026950760cbc7796d67b62bb3c0f2970fd80c296e9bd75d1057fe81a0d22ac8488789d13607f19abc6aa38b3a38a30ff450ee66e3a0 SHA512 89abb7a53570b6f7c0dc76905c97d207447117f1db1aa0c0da97c17366ea833b6404f9c7fc318436fd01be2bab032eccca9712063a7c683780026e7e52493dc8 diff --git a/app-admin/syslog-ng/syslog-ng-4.0.1.ebuild b/app-admin/syslog-ng/syslog-ng-4.0.1.ebuild index ca7e9ae7a1a9..a59449fddd3e 100644 --- a/app-admin/syslog-ng/syslog-ng-4.0.1.ebuild +++ b/app-admin/syslog-ng/syslog-ng-4.0.1.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/balabit/syslog-ng/releases/download/${P}/${P}.tar.gz LICENSE="GPL-2+ LGPL-2.1+" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86" IUSE="amqp caps dbi geoip2 http ipv6 json kafka mongodb pacct python redis smtp snmp test spoof-source systemd tcpd" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} ) test? ( python )" diff --git a/app-admin/syslog-ng/syslog-ng-4.1.1.ebuild b/app-admin/syslog-ng/syslog-ng-4.1.1.ebuild new file mode 100644 index 000000000000..ca7e9ae7a1a9 --- /dev/null +++ b/app-admin/syslog-ng/syslog-ng-4.1.1.ebuild @@ -0,0 +1,178 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..11} ) +inherit autotools python-single-r1 systemd + +MY_PV_MM=$(ver_cut 1-2) +DESCRIPTION="syslog replacement with advanced filtering features" +HOMEPAGE="https://www.syslog-ng.com/products/open-source-log-management/" +SRC_URI="https://github.com/balabit/syslog-ng/releases/download/${P}/${P}.tar.gz" + +LICENSE="GPL-2+ LGPL-2.1+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="amqp caps dbi geoip2 http ipv6 json kafka mongodb pacct python redis smtp snmp test spoof-source systemd tcpd" +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} ) + test? ( python )" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-libs/glib-2.10.1:2 + >=dev-libs/ivykis-0.42.4 + >=dev-libs/libpcre-6.1:= + !dev-libs/eventlog + amqp? ( >=net-libs/rabbitmq-c-0.8.0:=[ssl] ) + caps? ( sys-libs/libcap ) + dbi? ( >=dev-db/libdbi-0.9.0 ) + geoip2? ( dev-libs/libmaxminddb:= ) + http? ( net-misc/curl ) + json? ( >=dev-libs/json-c-0.9:= ) + kafka? ( >=dev-libs/librdkafka-1.0.0:= ) + mongodb? ( >=dev-libs/mongo-c-driver-1.2.0 ) + python? ( ${PYTHON_DEPS} ) + redis? ( >=dev-libs/hiredis-0.11.0:= ) + smtp? ( net-libs/libesmtp:= ) + snmp? ( net-analyzer/net-snmp:0= ) + spoof-source? ( net-libs/libnet:1.1= ) + systemd? ( sys-apps/systemd:= ) + tcpd? ( >=sys-apps/tcp-wrappers-7.6 ) + dev-libs/openssl:0=" +DEPEND="${RDEPEND} + test? ( dev-libs/criterion )" +BDEPEND=" + >=sys-devel/bison-3.7.6 + sys-devel/flex + virtual/pkgconfig" + +DOCS=( AUTHORS NEWS.md CONTRIBUTING.md contrib/syslog-ng.conf.{HP-UX,RedHat,SunOS,doc} + contrib/syslog2ng "${T}/syslog-ng.conf.gentoo.hardened" + "${T}/syslog-ng.logrotate.hardened" "${FILESDIR}/README.hardened" ) +PATCHES=( + "${FILESDIR}"/${PN}-3.28.1-net-snmp.patch +) + +pkg_setup() { + use python && python-single-r1_pkg_setup +} + +src_prepare() { + local f + + # disable python-modules test as it requires additional python modules not + # packaged in Gentoo + sed -i '/MAKE/s/.*/exit 0/g' modules/python-modules/test_pymodules.sh || die + + use python && python_fix_shebang . + + # remove bundled libs + rm -r lib/ivykis || die + + # drop scl modules requiring json + if use !json; then + sed -i -r '/cim|elasticsearch|ewmm|graylog2|loggly|logmatic|netskope|nodejs|osquery|slack/d' scl/Makefile.am || die + fi + + # drop scl modules requiring http + if use !http; then + sed -i -r '/slack|telegram/d' scl/Makefile.am || die + fi + + # use gentoo default path + if use systemd; then + sed -e 's@/etc/syslog-ng.conf@/etc/syslog-ng/syslog-ng.conf@g;s@/var/run@/run@g' \ + -i contrib/systemd/syslog-ng@default || die + fi + + for f in syslog-ng.logrotate.hardened.in syslog-ng.logrotate.in; do + sed \ + -e "s#@GENTOO_RESTART@#$(usex systemd "systemctl kill -s HUP syslog-ng@default" \ + "/etc/init.d/syslog-ng reload")#g" \ + "${FILESDIR}/${f}" > "${T}/${f/.in/}" || die + done + + for f in syslog-ng.conf.gentoo.hardened.in \ + syslog-ng.conf.gentoo.in; do + sed -e "s/@SYSLOGNG_VERSION@/${MY_PV_MM}/g" "${FILESDIR}/${f}" > "${T}/${f/.in/}" || die + done + + default + eautoreconf +} + +src_configure() { + local myconf=( + --disable-docs + --disable-java + --disable-java-modules + --disable-riemann + --enable-manpages + --localstatedir=/var/lib/syslog-ng + --sysconfdir=/etc/syslog-ng + --with-embedded-crypto + --with-ivykis=system + --with-module-dir=/usr/$(get_libdir)/syslog-ng + --with-pidfile-dir=/var/run + --with-python-packages=none + --with-systemdsystemunitdir="$(systemd_get_systemunitdir)" + $(use_enable amqp) + $(usex amqp --with-librabbitmq-client=system --without-librabbitmq-client) + $(use_enable caps linux-caps) + $(use_enable dbi sql) + $(use_enable geoip2) + $(use_enable http) + $(use_enable ipv6) + $(use_enable json) + $(use_enable kafka) + $(use_enable mongodb) + $(usex mongodb --with-mongoc=system "--without-mongoc --disable-legacy-mongodb-options") + $(use_enable pacct) + $(use_enable python) + $(use_enable redis) + $(use_enable smtp) + $(use_enable snmp afsnmp) + $(use_enable spoof-source) + $(use_enable systemd) + $(use_enable tcpd tcp-wrapper) + ) + + econf "${myconf[@]}" +} + +src_install() { + default + + # Install default configuration + insinto /etc/default + doins contrib/systemd/syslog-ng@default + + insinto /etc/syslog-ng + newins "${T}/syslog-ng.conf.gentoo" syslog-ng.conf + + insinto /etc/logrotate.d + newins "${T}/syslog-ng.logrotate" syslog-ng + + newinitd "${FILESDIR}/syslog-ng.rc" syslog-ng + newconfd "${FILESDIR}/syslog-ng.confd" syslog-ng + keepdir /etc/syslog-ng/patterndb.d /var/lib/syslog-ng + find "${D}" -name '*.la' -delete || die + + use python && python_optimize +} + +pkg_postinst() { + # bug #355257 + if ! has_version app-admin/logrotate ; then + elog "It is highly recommended that app-admin/logrotate be emerged to" + elog "manage the log files. ${PN} installs a file in /etc/logrotate.d" + elog "for logrotate to use." + fi + + if use systemd; then + ewarn "The service file for systemd has changed to support multiple instances." + ewarn "To start the default instance issue:" + ewarn "# systemctl start syslog-ng@default" + fi +} diff --git a/app-arch/Manifest.gz b/app-arch/Manifest.gz index f6cd818a98ce..ca6bb08825e0 100644 Binary files a/app-arch/Manifest.gz and b/app-arch/Manifest.gz differ diff --git a/app-arch/lxqt-archiver/Manifest b/app-arch/lxqt-archiver/Manifest index c996c3ec949f..e77295ec153d 100644 --- a/app-arch/lxqt-archiver/Manifest +++ b/app-arch/lxqt-archiver/Manifest @@ -1 +1,2 @@ DIST lxqt-archiver-0.7.0.tar.xz 181612 BLAKE2B 41ad378f20a9a8f3d7ccfc7406d480eecfad41c991781f503947b37ee26eec5de38b44ea318507dc209a2f2f6d68db65e0f9cdf61920a47fb2d02dd975960f86 SHA512 d86fd636b1b2345ead8c4dc0161311b3e361d274902c5b34b9aaccf1a0b9af46d329fbec0d2249197b8e1c837d6949f723451f67fdc9ca4c6b7f1c2cf59daeca +DIST lxqt-archiver-0.8.0.tar.xz 181572 BLAKE2B 7bbd2b229cd8c546c86d742c13dac4bd00e24e85a146879290652a9ae41c9ced621738d06284fe285c81f2d5f8e43a5126b9bc61e286342cfb9d7fa935c330ee SHA512 70266581478e75505f708eccee4fd1680c1ff012dd4e99138d0c2d17fb8dfab24d9d5e5453d5d4a3f7a9b8437e8a980c3edf190f3e319400c46a655ba7db4898 diff --git a/app-arch/lxqt-archiver/lxqt-archiver-0.8.0.ebuild b/app-arch/lxqt-archiver/lxqt-archiver-0.8.0.ebuild new file mode 100644 index 000000000000..d305b0ec042b --- /dev/null +++ b/app-arch/lxqt-archiver/lxqt-archiver-0.8.0.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_PV="$(ver_cut 1-2)" + +inherit cmake xdg-utils + +DESCRIPTION="Qt GUI File Archiver" +HOMEPAGE="https://lxqt-project.org/" + +if [[ ${PV} == *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git" +else + SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~loong ~riscv ~x86" +fi + +LICENSE="GPL-2 GPL-2+" +SLOT="0" + +BDEPEND=" + >=dev-qt/linguist-tools-5.15:5 + >=dev-util/lxqt-build-tools-0.13.0 +" +DEPEND=" + dev-libs/glib:2 + dev-libs/json-glib + >=dev-qt/qtcore-5.15:5 + >=dev-qt/qtgui-5.15:5 + >=dev-qt/qtwidgets-5.15:5 + >=dev-qt/qtx11extras-5.15:5 + >=x11-libs/libfm-qt-1.3:= +" +RDEPEND="${DEPEND}" + +pkg_postinst() { + xdg_desktop_database_update + xdg_icon_cache_update + + elog "Please note that this is only a graphical front-end, and additional" + elog "packages are needed to have support for specific file formats." + elog "For example, to be able to work with the 7-Zip format, the" + elog "'app-arch/p7zip' package may be used." + elog "For the full list of supported formats, see the 'README.md' file:" + elog "https://github.com/lxqt/lxqt-archiver/blob/master/README.md" +} + +pkg_postrm() { + xdg_desktop_database_update +} diff --git a/app-crypt/Manifest.gz b/app-crypt/Manifest.gz index 940bb6a5697d..3f540e9a629e 100644 Binary files a/app-crypt/Manifest.gz and b/app-crypt/Manifest.gz differ diff --git a/app-crypt/acme/Manifest b/app-crypt/acme/Manifest index a1e19ee4c07a..5af06ae6bf48 100644 --- a/app-crypt/acme/Manifest +++ b/app-crypt/acme/Manifest @@ -1,3 +1,2 @@ -DIST certbot-2.3.0.gh.tar.gz 1335613 BLAKE2B af8ff393f92755e8e312f7596fe99abefa35c42cef6fa6688f7f3dd4a310205385fec81366df30d8edfe28d8abd3db447c9e1a3770fe31c3d45c69f04a038660 SHA512 5f52d9b0dd390fc696389a94ff897d803ee062feca50bb66972e197dcd79b0096b337cece2798557c3878903577171fd9afe1f18a4a2131ad7e6a62d0d945ebb DIST certbot-2.4.0.gh.tar.gz 1333159 BLAKE2B 534c7d090cc8a2b77b2dd8bd8c407409260c18e7741223a327bb240dac9685b1ca152d4a20bb0ec46d8717f89bd3de6f494019c57afe22a74db69641a3ed209e SHA512 c307c97154935a3a01b468d6e91505caba6073b4c01071c87382bdc08c892094d95d75b047047d3221b7d8018a61ce974c0f4defbfdee00b136af920fd579108 DIST certbot-2.5.0.gh.tar.gz 1333903 BLAKE2B 2d30764616d2253fe320ad94182e64cc3e1ce75bd90322fcf7c303a52e32420a57cf84a3acf3f8f4825e058d6fe1e59438b728dacdf9032c4d8797312903825e SHA512 92313e352409d543f260fedee3f376c4750d9428cd39fde3518b162091667173ba6d582b4e91477f7122cf198f24119ecf34b2dce12734afbfc0ebedc395a49e diff --git a/app-crypt/acme/acme-2.3.0.ebuild b/app-crypt/acme/acme-2.3.0.ebuild deleted file mode 100644 index cfc99164db52..000000000000 --- a/app-crypt/acme/acme-2.3.0.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -DISTUTILS_USE_PEP517=setuptools - -inherit distutils-r1 - -PARENT_PN="certbot" -PARENT_P="${PARENT_PN}-${PV}" - -if [[ "${PV}" == *9999 ]]; then - inherit git-r3 - - EGIT_REPO_URI="https://github.com/certbot/certbot.git" - EGIT_SUBMODULES=() - EGIT_CHECKOUT_DIR="${WORKDIR}/${PARENT_P}" -else - SRC_URI=" - https://github.com/certbot/certbot/archive/v${PV}.tar.gz - -> ${PARENT_P}.gh.tar.gz - " - KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86" -fi - -DESCRIPTION="An implementation of the ACME protocol" -HOMEPAGE=" - https://github.com/certbot/certbot - https://letsencrypt.org/ -" - -LICENSE="Apache-2.0" -SLOT="0" - -S="${WORKDIR}/${PARENT_P}/${PN}" - -BDEPEND=" - test? ( - dev-python/pytest[${PYTHON_USEDEP}] - dev-python/pytest-xdist[${PYTHON_USEDEP}] - dev-python/typing-extensions[${PYTHON_USEDEP}] - ) -" - -RDEPEND=" - dev-python/chardet[${PYTHON_USEDEP}] - >=dev-python/cryptography-2.5.0[${PYTHON_USEDEP}] - >=dev-python/josepy-1.13.0[${PYTHON_USEDEP}] - >=dev-python/pyopenssl-17.5.0[${PYTHON_USEDEP}] - dev-python/pyrfc3339[${PYTHON_USEDEP}] - >=dev-python/pytz-2019.3[${PYTHON_USEDEP}] - >=dev-python/requests-2.20.0[${PYTHON_USEDEP}] - >=dev-python/requests-toolbelt-0.3.0[${PYTHON_USEDEP}] -" - -distutils_enable_sphinx docs dev-python/sphinx-rtd-theme -distutils_enable_tests pytest diff --git a/app-crypt/certbot-apache/Manifest b/app-crypt/certbot-apache/Manifest index a1e19ee4c07a..5af06ae6bf48 100644 --- a/app-crypt/certbot-apache/Manifest +++ b/app-crypt/certbot-apache/Manifest @@ -1,3 +1,2 @@ -DIST certbot-2.3.0.gh.tar.gz 1335613 BLAKE2B af8ff393f92755e8e312f7596fe99abefa35c42cef6fa6688f7f3dd4a310205385fec81366df30d8edfe28d8abd3db447c9e1a3770fe31c3d45c69f04a038660 SHA512 5f52d9b0dd390fc696389a94ff897d803ee062feca50bb66972e197dcd79b0096b337cece2798557c3878903577171fd9afe1f18a4a2131ad7e6a62d0d945ebb DIST certbot-2.4.0.gh.tar.gz 1333159 BLAKE2B 534c7d090cc8a2b77b2dd8bd8c407409260c18e7741223a327bb240dac9685b1ca152d4a20bb0ec46d8717f89bd3de6f494019c57afe22a74db69641a3ed209e SHA512 c307c97154935a3a01b468d6e91505caba6073b4c01071c87382bdc08c892094d95d75b047047d3221b7d8018a61ce974c0f4defbfdee00b136af920fd579108 DIST certbot-2.5.0.gh.tar.gz 1333903 BLAKE2B 2d30764616d2253fe320ad94182e64cc3e1ce75bd90322fcf7c303a52e32420a57cf84a3acf3f8f4825e058d6fe1e59438b728dacdf9032c4d8797312903825e SHA512 92313e352409d543f260fedee3f376c4750d9428cd39fde3518b162091667173ba6d582b4e91477f7122cf198f24119ecf34b2dce12734afbfc0ebedc395a49e diff --git a/app-crypt/certbot-apache/certbot-apache-2.3.0.ebuild b/app-crypt/certbot-apache/certbot-apache-2.3.0.ebuild deleted file mode 100644 index 9ed5d0b39780..000000000000 --- a/app-crypt/certbot-apache/certbot-apache-2.3.0.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -DISTUTILS_USE_PEP517=setuptools - -inherit distutils-r1 - -PARENT_PN="${PN%-apache}" -PARENT_P="${PARENT_PN}-${PV}" - -if [[ "${PV}" == *9999 ]]; then - inherit git-r3 - - EGIT_REPO_URI="https://github.com/certbot/certbot.git" - EGIT_SUBMODULES=() - EGIT_CHECKOUT_DIR="${WORKDIR}/${PARENT_P}" -else - SRC_URI=" - https://github.com/certbot/certbot/archive/v${PV}.tar.gz - -> ${PARENT_P}.gh.tar.gz - " - # Only for amd64, arm64 and x86 because of dev-python/python-augeas - KEYWORDS="amd64 ~arm64 x86" -fi - -DESCRIPTION="Apache plugin for Certbot (Let’s Encrypt client)" -HOMEPAGE=" - https://github.com/certbot/certbot - https://letsencrypt.org/ -" - -LICENSE="Apache-2.0" -SLOT="0" - -S="${WORKDIR}/${PARENT_P}/${PN}" - -BDEPEND=" - test? ( dev-python/pytest[${PYTHON_USEDEP}] ) -" - -RDEPEND=" - >=app-crypt/acme-${PV}[${PYTHON_USEDEP}] - >=app-crypt/certbot-${PV}[${PYTHON_USEDEP}] - dev-python/python-augeas[${PYTHON_USEDEP}] -" - -distutils_enable_tests pytest diff --git a/app-crypt/certbot-nginx/Manifest b/app-crypt/certbot-nginx/Manifest index a1e19ee4c07a..5af06ae6bf48 100644 --- a/app-crypt/certbot-nginx/Manifest +++ b/app-crypt/certbot-nginx/Manifest @@ -1,3 +1,2 @@ -DIST certbot-2.3.0.gh.tar.gz 1335613 BLAKE2B af8ff393f92755e8e312f7596fe99abefa35c42cef6fa6688f7f3dd4a310205385fec81366df30d8edfe28d8abd3db447c9e1a3770fe31c3d45c69f04a038660 SHA512 5f52d9b0dd390fc696389a94ff897d803ee062feca50bb66972e197dcd79b0096b337cece2798557c3878903577171fd9afe1f18a4a2131ad7e6a62d0d945ebb DIST certbot-2.4.0.gh.tar.gz 1333159 BLAKE2B 534c7d090cc8a2b77b2dd8bd8c407409260c18e7741223a327bb240dac9685b1ca152d4a20bb0ec46d8717f89bd3de6f494019c57afe22a74db69641a3ed209e SHA512 c307c97154935a3a01b468d6e91505caba6073b4c01071c87382bdc08c892094d95d75b047047d3221b7d8018a61ce974c0f4defbfdee00b136af920fd579108 DIST certbot-2.5.0.gh.tar.gz 1333903 BLAKE2B 2d30764616d2253fe320ad94182e64cc3e1ce75bd90322fcf7c303a52e32420a57cf84a3acf3f8f4825e058d6fe1e59438b728dacdf9032c4d8797312903825e SHA512 92313e352409d543f260fedee3f376c4750d9428cd39fde3518b162091667173ba6d582b4e91477f7122cf198f24119ecf34b2dce12734afbfc0ebedc395a49e diff --git a/app-crypt/certbot-nginx/certbot-nginx-2.3.0.ebuild b/app-crypt/certbot-nginx/certbot-nginx-2.3.0.ebuild deleted file mode 100644 index 1e54d1c37e54..000000000000 --- a/app-crypt/certbot-nginx/certbot-nginx-2.3.0.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -DISTUTILS_USE_PEP517=setuptools - -inherit distutils-r1 - -PARENT_PN="${PN%-nginx}" -PARENT_P="${PARENT_PN}-${PV}" - -if [[ "${PV}" == *9999 ]]; then - inherit git-r3 - - EGIT_REPO_URI="https://github.com/certbot/certbot.git" - EGIT_SUBMODULES=() - EGIT_CHECKOUT_DIR="${WORKDIR}/${PARENT_P}" -else - SRC_URI=" - https://github.com/certbot/certbot/archive/v${PV}.tar.gz - -> ${PARENT_P}.gh.tar.gz - " - KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86" -fi - -DESCRIPTION="Nginx plugin for Certbot (Let’s Encrypt client)" -HOMEPAGE=" - https://github.com/certbot/certbot - https://letsencrypt.org/ -" - -LICENSE="Apache-2.0" -SLOT="0" - -S="${WORKDIR}/${PARENT_P}/${PN}" - -BDEPEND=" - test? ( dev-python/pytest[${PYTHON_USEDEP}] ) -" - -RDEPEND=" - >=app-crypt/acme-${PV}[${PYTHON_USEDEP}] - >=app-crypt/certbot-${PV}[${PYTHON_USEDEP}] - >=dev-python/pyopenssl-17.5.0[${PYTHON_USEDEP}] - >=dev-python/pyparsing-2.2.1[${PYTHON_USEDEP}] -" - -distutils_enable_tests pytest diff --git a/app-crypt/certbot/Manifest b/app-crypt/certbot/Manifest index a1e19ee4c07a..5af06ae6bf48 100644 --- a/app-crypt/certbot/Manifest +++ b/app-crypt/certbot/Manifest @@ -1,3 +1,2 @@ -DIST certbot-2.3.0.gh.tar.gz 1335613 BLAKE2B af8ff393f92755e8e312f7596fe99abefa35c42cef6fa6688f7f3dd4a310205385fec81366df30d8edfe28d8abd3db447c9e1a3770fe31c3d45c69f04a038660 SHA512 5f52d9b0dd390fc696389a94ff897d803ee062feca50bb66972e197dcd79b0096b337cece2798557c3878903577171fd9afe1f18a4a2131ad7e6a62d0d945ebb DIST certbot-2.4.0.gh.tar.gz 1333159 BLAKE2B 534c7d090cc8a2b77b2dd8bd8c407409260c18e7741223a327bb240dac9685b1ca152d4a20bb0ec46d8717f89bd3de6f494019c57afe22a74db69641a3ed209e SHA512 c307c97154935a3a01b468d6e91505caba6073b4c01071c87382bdc08c892094d95d75b047047d3221b7d8018a61ce974c0f4defbfdee00b136af920fd579108 DIST certbot-2.5.0.gh.tar.gz 1333903 BLAKE2B 2d30764616d2253fe320ad94182e64cc3e1ce75bd90322fcf7c303a52e32420a57cf84a3acf3f8f4825e058d6fe1e59438b728dacdf9032c4d8797312903825e SHA512 92313e352409d543f260fedee3f376c4750d9428cd39fde3518b162091667173ba6d582b4e91477f7122cf198f24119ecf34b2dce12734afbfc0ebedc395a49e diff --git a/app-crypt/certbot/certbot-2.3.0.ebuild b/app-crypt/certbot/certbot-2.3.0.ebuild deleted file mode 100644 index e7d9cff408fb..000000000000 --- a/app-crypt/certbot/certbot-2.3.0.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -DISTUTILS_USE_PEP517=setuptools - -inherit distutils-r1 - -if [[ "${PV}" == *9999 ]]; then - inherit git-r3 - - EGIT_REPO_URI="https://github.com/certbot/certbot.git" - EGIT_SUBMODULES=() - EGIT_CHECKOUT_DIR="${WORKDIR}/${P}" -else - SRC_URI=" - https://github.com/certbot/certbot/archive/v${PV}.tar.gz - -> ${P}.gh.tar.gz - " - KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86" -fi - -DESCRIPTION="Let’s Encrypt client to automate deployment of X.509 certificates" -HOMEPAGE=" - https://github.com/certbot/certbot - https://letsencrypt.org/ -" - -LICENSE="Apache-2.0" -SLOT="0" - -IUSE="selinux" - -S="${WORKDIR}/${P}/${PN}" - -BDEPEND=" - test? ( - dev-python/pytest[${PYTHON_USEDEP}] - dev-python/pytest-cov[${PYTHON_USEDEP}] - dev-python/pytest-xdist[${PYTHON_USEDEP}] - dev-python/typing-extensions[${PYTHON_USEDEP}] - ) -" - -# See certbot/setup.py for acme >= dep -RDEPEND=" - >=app-crypt/acme-${PV}[${PYTHON_USEDEP}] - >=dev-python/ConfigArgParse-0.9.3[${PYTHON_USEDEP}] - >=dev-python/configobj-5.0.6[${PYTHON_USEDEP}] - >=dev-python/cryptography-2.5.0[${PYTHON_USEDEP}] - >=dev-python/distro-1.0.1[${PYTHON_USEDEP}] - >=dev-python/josepy-1.13.0[${PYTHON_USEDEP}] - >=dev-python/parsedatetime-2.4[${PYTHON_USEDEP}] - dev-python/pyrfc3339[${PYTHON_USEDEP}] - >=dev-python/pytz-2019.3[${PYTHON_USEDEP}] - selinux? ( sec-policy/selinux-certbot ) -" - -distutils_enable_sphinx docs dev-python/sphinx-rtd-theme -distutils_enable_tests pytest diff --git a/app-crypt/gnupg/gnupg-2.2.41.ebuild b/app-crypt/gnupg/gnupg-2.2.41.ebuild index 3f97d048aebf..f1c1b15065fc 100644 --- a/app-crypt/gnupg/gnupg-2.2.41.ebuild +++ b/app-crypt/gnupg/gnupg-2.2.41.ebuild @@ -32,7 +32,7 @@ RESTRICT="!test? ( test )" DEPEND=" >=dev-libs/libassuan-2.5.0 >=dev-libs/libgcrypt-1.8.0:= - >=dev-libs/libgpg-error-1.29 + >=dev-libs/libgpg-error-1.38 >=dev-libs/libksba-1.3.5 >=dev-libs/npth-1.2 >=net-misc/curl-7.10 diff --git a/app-doc/Manifest.gz b/app-doc/Manifest.gz index f15534e5edfe..eeb678504987 100644 Binary files a/app-doc/Manifest.gz and b/app-doc/Manifest.gz differ diff --git a/app-doc/eclass-manpages/Manifest b/app-doc/eclass-manpages/Manifest index dc4056ec0bcd..31be392332c6 100644 --- a/app-doc/eclass-manpages/Manifest +++ b/app-doc/eclass-manpages/Manifest @@ -1,2 +1,2 @@ -DIST eclass-manpages-20230222.tar.xz 410124 BLAKE2B 7da1a4b539c227c386fd27e3fb6de4d0dc79c4b648491547df0dceb50ba93f27ef1105234ad5c0f6c6a409c8837e8a629029215782471651606375332223cc2e SHA512 4def4388095c82a187f5dfc6ffb0eff59cec922c606b0202e7995ff81209fa9fe48e22fb05d4b07be4cd7e10f78ef4f87d01362099333ad49619e45c4b8b9411 DIST eclass-manpages-20230329.tar.xz 409168 BLAKE2B 5913afcf95174540546d238cc637689fe0c7de2013f4271ac3feee749eb2fede8b741e2409ba09060fd5c36941e36ee504be8a584201d04b368886f50abfd3ea SHA512 ee43c47f26b474acec2f778a5bf05c752198d2f5cce959a337eaa674465c92869e213dd4aea8243671825cea80bbfbec7040cac283354de4e8feeefeace46d32 +DIST eclass-manpages-20230417.tar.xz 409620 BLAKE2B 0e1b3cce23ee9f2a91b87c5de89819eca8fd50101e813ecf56c8a1d4147bf33006505425be95a2f1693ec084fbf9409c2aaf1dccf6d9cbf244e71ee1c0e1498d SHA512 2cef6f30e917979b9f56c11f953c27a8048842b432fc6641ea06daf479bc202d9ea2f8ce26769584f317bf3cde2c2f9736d2605546be1b1a10ea557177639de3 diff --git a/app-doc/eclass-manpages/eclass-manpages-20230222.ebuild b/app-doc/eclass-manpages/eclass-manpages-20230417.ebuild similarity index 100% rename from app-doc/eclass-manpages/eclass-manpages-20230222.ebuild rename to app-doc/eclass-manpages/eclass-manpages-20230417.ebuild diff --git a/app-editors/Manifest.gz b/app-editors/Manifest.gz index fe420cab91eb..ba9fd73d8d56 100644 Binary files a/app-editors/Manifest.gz and b/app-editors/Manifest.gz differ diff --git a/app-editors/ghostwriter/Manifest b/app-editors/ghostwriter/Manifest index 9fe22337b7d9..5911f7895b85 100644 --- a/app-editors/ghostwriter/Manifest +++ b/app-editors/ghostwriter/Manifest @@ -1 +1,2 @@ DIST ghostwriter-2.1.6.tar.gz 7757010 BLAKE2B a450093b1f072aeea7e6a6e27abbdb2c427387eb70b5ed2a5e49ea1f33fd9c4e4014742cc7905e644ab39838c488d9eddb79e0d3c87bde7ce6528cd810b02e15 SHA512 10ee557a07f468cc12391c2b5f77a6667aef76429b58bfdc03df32dd1cd8c44a61fe77da5318d5b23758ede40a5f8ab89cf4573a09708a6abc2d12ec5ceb71ad +DIST ghostwriter-23.03.90.tar.xz 3064632 BLAKE2B f4e9605b37ff86f37af901a2b371fc6c03240df984ac8fda5fb568642b381b62838d01ce6845a0b8655ad7eae8c01eb54618a4de84f44ee601f11ba116ae53d3 SHA512 9c732c15e0f85334989e8f6e389f9e69e15dbd50081b44fba9fcfaa770f09a41213f7f2d70d4911cea340a7f97859f44489b9127544b461a0b2c5d7bc3eded77 diff --git a/app-editors/ghostwriter/ghostwriter-23.03.90.ebuild b/app-editors/ghostwriter/ghostwriter-23.03.90.ebuild new file mode 100644 index 000000000000..ee551a676910 --- /dev/null +++ b/app-editors/ghostwriter/ghostwriter-23.03.90.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +KDE_ORG_CATEGORY="office" +ECM_HANDBOOK="optional" +KFMIN=5.104.0 +QTMIN=5.15.5 +inherit ecm gear.kde.org + +DESCRIPTION="Cross-platform, aesthetic, distraction-free markdown editor" +HOMEPAGE="https://ghostwriter.kde.org/" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + app-text/hunspell:= + >=dev-qt/qtgui-${QTMIN}:5 + >=dev-qt/qtsvg-${QTMIN}:5 + >=dev-qt/qtwebchannel-${QTMIN}:5 + >=dev-qt/qtwebengine-${QTMIN}:5[widgets] + >=dev-qt/qtwidgets-${QTMIN}:5 + virtual/opengl +" +DEPEND="${RDEPEND} + >=dev-qt/qtconcurrent-${QTMIN}:5 +" +BDEPEND=" + >=dev-qt/linguist-tools-${QTMIN}:5 + virtual/pkgconfig +" + +DOCS=( CHANGELOG.md README.md ) diff --git a/app-emacs/Manifest.gz b/app-emacs/Manifest.gz index dcf8bedd6a83..5c5b8b708f72 100644 Binary files a/app-emacs/Manifest.gz and b/app-emacs/Manifest.gz differ diff --git a/app-emacs/a/a-1.0.0.ebuild b/app-emacs/a/a-1.0.0.ebuild index 7a5f15b8325f..fcf2484bdb5d 100644 --- a/app-emacs/a/a-1.0.0.ebuild +++ b/app-emacs/a/a-1.0.0.ebuild @@ -14,14 +14,8 @@ S="${WORKDIR}"/a.el-${PV} LICENSE="GPL-3+" KEYWORDS="~amd64 ~x86" SLOT="0" -IUSE="test" -RESTRICT="!test? ( test )" - -BDEPEND="test? ( app-emacs/ert-runner )" DOCS=( CHANGELOG.md README.md ) SITEFILE="50${PN}-gentoo.el" -src_test() { - ert-runner -L . -L test --reporter ert+duration --script test || die -} +elisp-enable-tests ert-runner test diff --git a/app-emacs/bnf-mode/bnf-mode-0.4.5.ebuild b/app-emacs/bnf-mode/bnf-mode-0.4.5.ebuild index 32d732fa617a..e3760e5fa4ec 100644 --- a/app-emacs/bnf-mode/bnf-mode-0.4.5.ebuild +++ b/app-emacs/bnf-mode/bnf-mode-0.4.5.ebuild @@ -13,20 +13,11 @@ SRC_URI="https://github.com/sergeyklay/${PN}/archive/${PV}.tar.gz LICENSE="GPL-3+" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" -BDEPEND=" - test? ( - app-emacs/buttercup - app-emacs/undercover - ) -" +BDEPEND="test? ( app-emacs/undercover )" DOCS=( NEWS README.org ) ELISP_TEXINFO="bnf-mode.texi" SITEFILE="50${PN}-gentoo.el" -src_test() { - buttercup -L . -L test --traceback full || die -} +elisp-enable-tests buttercup test diff --git a/app-emacs/doom-modeline/doom-modeline-3.3.2.ebuild b/app-emacs/doom-modeline/doom-modeline-3.3.2.ebuild index 3c29bcf81e15..6740287569c1 100644 --- a/app-emacs/doom-modeline/doom-modeline-3.3.2.ebuild +++ b/app-emacs/doom-modeline/doom-modeline-3.3.2.ebuild @@ -25,15 +25,9 @@ RDEPEND=" " BDEPEND="${RDEPEND}" +elisp-enable-tests ert test + src_compile() { elisp_src_compile elisp-make-autoload-file } - -src_test() { - ${EMACS} ${EMACSFLAGS} ${BYTECOMPFLAGS} \ - -L . -L test \ - -l test/${PN}-core-test.el \ - -l test/${PN}-env-test.el \ - -f ert-run-tests-batch-and-exit || die "tests failed" -} diff --git a/app-emacs/fsharp-mode/fsharp-mode-2.0.ebuild b/app-emacs/fsharp-mode/fsharp-mode-2.0.ebuild index 045c0e44c4df..dab6caca9f4b 100644 --- a/app-emacs/fsharp-mode/fsharp-mode-2.0.ebuild +++ b/app-emacs/fsharp-mode/fsharp-mode-2.0.ebuild @@ -14,15 +14,9 @@ S="${WORKDIR}"/emacs-${P} LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" - -BDEPEND="test? ( app-emacs/buttercup )" DOCS=( CHANGELOG.md README.org ) ELISP_REMOVE="eglot-fsharp.el test/integration-tests.el" SITEFILE="50${PN}-gentoo.el" -src_test() { - buttercup -L . -L test --traceback full || die -} +elisp-enable-tests buttercup test diff --git a/app-emacs/jinx/Manifest b/app-emacs/jinx/Manifest new file mode 100644 index 000000000000..cc55fa667dc7 --- /dev/null +++ b/app-emacs/jinx/Manifest @@ -0,0 +1 @@ +DIST jinx-0.6.tar.xz 16692 BLAKE2B 49a391b55b809dd6749ce264b4f732b5c902c1ea67a39e681327ddcf8f728271897202ecd282dc5c4999cf336a5b37c89b9863239291fc944cee352920d99189 SHA512 aa253836d04aec04674ca6dbbd1e73719bee78f4d01d4d93eef2cb05f4c3edc6ec4a11c352fb8952780523f187581fae9c33ea0d30416ec30803b7a196d03f60 diff --git a/app-emacs/jinx/files/50jinx-gentoo.el b/app-emacs/jinx/files/50jinx-gentoo.el new file mode 100644 index 000000000000..35fde43c0137 --- /dev/null +++ b/app-emacs/jinx/files/50jinx-gentoo.el @@ -0,0 +1,4 @@ +;;; app-emacs/jinx site configuration -*- lexical-binding: t; -*- +(add-to-list 'load-path "@SITELISP@") +(add-to-list 'load-path "@EMACSMODULES@") +(load "@SITELISP@/jinx-autoload.el" nil t) diff --git a/app-emacs/jinx/files/jinx-0.6-try-load-path.patch b/app-emacs/jinx/files/jinx-0.6-try-load-path.patch new file mode 100644 index 000000000000..5cb498015791 --- /dev/null +++ b/app-emacs/jinx/files/jinx-0.6-try-load-path.patch @@ -0,0 +1,32 @@ +From 3c0aa84130e07cf69219adce8a3494e76977fc26 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Arsen=20Arsenovi=C4=87?= +Date: Tue, 18 Apr 2023 01:29:55 +0200 +Subject: [PATCH] Try searching the whole load-path for jinx-mod + +* jinx.el (jinx--load-module): Try to (locate-library module) +before trying to look for a sibling file of jinx.el. +--- +https://github.com/minad/jinx/pull/42 + + jinx.el | 5 +++++ + 1 file changed, 5 insertions(+) + +diff --git a/jinx.el b/jinx.el +index d0cf56d..e829d50 100644 +--- a/jinx.el ++++ b/jinx.el +@@ -472,6 +472,11 @@ If VISIBLE is non-nil, only include visible overlays." + (let ((default-directory + (file-name-directory (locate-library "jinx.el" t))) + (module (file-name-with-extension "jinx-mod" module-file-suffix))) ++ ++ (let ((located-module (locate-library module))) ++ (when located-module ++ (setq module located-module))) ++ + (unless (file-exists-p module) + (let ((command + `("cc" "-I." "-O2" "-Wall" "-Wextra" "-fPIC" "-shared" +-- +2.40.0 + diff --git a/app-emacs/jinx/jinx-0.6.ebuild b/app-emacs/jinx/jinx-0.6.ebuild new file mode 100644 index 000000000000..4cb2cfcb7ae9 --- /dev/null +++ b/app-emacs/jinx/jinx-0.6.ebuild @@ -0,0 +1,44 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS=27.1 +inherit edo elisp toolchain-funcs + +DESCRIPTION="Enchanted Spell Checker for GNU Emacs" +HOMEPAGE="https://github.com/minad/jinx" + +# Recompressed from ELPA. +SRC_URI="https://dev.gentoo.org/~arsen/${P}.tar.xz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + app-text/enchant:2 + >=app-emacs/compat-29.1.4.0 +" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +SITEFILE="50${PN}-gentoo.el" + +PATCHES=( + "${FILESDIR}"/jinx-0.6-try-load-path.patch +) + +src_compile() { + edo $(tc-getCC) -fPIC -Wall -Wextra -shared \ + $($(tc-getPKG_CONFIG) --cflags --libs enchant-2) \ + ${CPPFLAGS} ${CFLAGS} ${LDFLAGS} -o jinx-mod.so jinx-mod.c + elisp_src_compile +} + +src_install() { + elisp-make-autoload-file + elisp_src_install + + elisp-modules-install "${PN}" jinx-mod.so +} diff --git a/app-emacs/jinx/metadata.xml b/app-emacs/jinx/metadata.xml new file mode 100644 index 000000000000..983a85253bdd --- /dev/null +++ b/app-emacs/jinx/metadata.xml @@ -0,0 +1,19 @@ + + + + + arsen@gentoo.org + Arsen Arsenović + + + sam@gentoo.org + Sam James + + + gnu-emacs@gentoo.org + Gentoo GNU Emacs project + + + minad/jinx + + diff --git a/app-emacs/lsp-mode/lsp-mode-8.0.0_p20220620.ebuild b/app-emacs/lsp-mode/lsp-mode-8.0.0_p20220620.ebuild index 2855d703f835..8b7c6ad12cda 100644 --- a/app-emacs/lsp-mode/lsp-mode-8.0.0_p20220620.ebuild +++ b/app-emacs/lsp-mode/lsp-mode-8.0.0_p20220620.ebuild @@ -16,8 +16,6 @@ S="${WORKDIR}"/${PN}-${COMMIT} LICENSE="GPL-3+" KEYWORDS="amd64" SLOT="0" -IUSE="test" -RESTRICT="!test? ( test )" RDEPEND=" >=app-emacs/dash-2.18.0 @@ -33,7 +31,6 @@ BDEPEND=" app-emacs/deferred app-emacs/ecukes app-emacs/el-mock - app-emacs/ert-runner app-emacs/espuds app-emacs/flycheck app-emacs/undercover @@ -46,15 +43,13 @@ ELISP_REMOVE="test/lsp-clangd-test.el test/lsp-common-test.el test/lsp-integration-test.el" # Remove failing tests SITEFILE="50${PN}-gentoo.el" +elisp-enable-tests ert-runner "${S}" -t "!no-win" -t "!org" + src_compile() { elisp_src_compile elisp-compile clients/*.el } -src_test() { - ert-runner -L clients --reporter ert+duration -t "!no-win" -t "!org" || die -} - src_install() { elisp_src_install elisp-install ${PN}/clients clients/* diff --git a/app-emacs/php-mode/php-mode-1.24.3.ebuild b/app-emacs/php-mode/php-mode-1.24.3.ebuild index 3b027aa017cb..66ad92fae09b 100644 --- a/app-emacs/php-mode/php-mode-1.24.3.ebuild +++ b/app-emacs/php-mode/php-mode-1.24.3.ebuild @@ -18,8 +18,10 @@ KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos" DOCS=( ../AUTHORS.md ../CHANGELOG.md ../CONTRIBUTING.md ../README{,.ja}.md ../docs ) SITEFILE="50${PN}-gentoo.el" +elisp-enable-tests ert "${S}" -L ../tests -l ../tests/php-mode-test.el + src_test() { touch ../tests/project/1/.git || die - ${EMACS} ${EMACSFLAGS} -L . -L ../tests -l ../tests/php-mode-test.el \ - -f ert-run-tests-batch-and-exit || die "tests run failed" + + elisp_src_test } diff --git a/app-emacs/treemacs/treemacs-3.1.ebuild b/app-emacs/treemacs/treemacs-3.1.ebuild index de552c5b30b2..6d097c74f261 100644 --- a/app-emacs/treemacs/treemacs-3.1.ebuild +++ b/app-emacs/treemacs/treemacs-3.1.ebuild @@ -7,7 +7,7 @@ NEED_EMACS=26.1 DISTUTILS_USE_PEP517=no PYTHON_COMPAT=( python3_{9..11} ) -inherit elisp distutils-r1 +inherit distutils-r1 elisp DESCRIPTION="Tree style project file explorer" HOMEPAGE="https://github.com/Alexander-Miller/treemacs/" @@ -17,8 +17,6 @@ SRC_URI="https://github.com/Alexander-Miller/${PN}/archive/${PV}.tar.gz LICENSE="GPL-3+" KEYWORDS="~amd64" SLOT="0" -IUSE="test" -RESTRICT="!test? ( test )" RDEPEND=" app-emacs/ace-window @@ -29,10 +27,7 @@ RDEPEND=" app-emacs/pfuture app-emacs/s " -BDEPEND=" - ${RDEPEND} - test? ( app-emacs/buttercup ) -" +BDEPEND="${RDEPEND}" BYTECOMPFLAGS="-L . -L src/elisp" PATCHES=( @@ -44,6 +39,8 @@ PATCHES=( DOCS=( Changelog.org Extensions.org README.org screenshots ) SITEFILE="50${PN}-gentoo.el" +elisp-enable-tests buttercup test + src_prepare() { distutils-r1_src_prepare @@ -62,10 +59,6 @@ src_compile() { elisp-compile src/elisp/*.el } -src_test() { - buttercup ${BYTECOMPFLAGS} -L test --traceback full || die "tests failed" -} - src_install() { elisp-install ${PN} src/elisp/*.el{,c} elisp-site-file-install "${FILESDIR}/${SITEFILE}" diff --git a/app-emacs/typescript-mode/typescript-mode-0.4.ebuild b/app-emacs/typescript-mode/typescript-mode-0.4.ebuild index 901e8cfeed71..9adf1b44fa5d 100644 --- a/app-emacs/typescript-mode/typescript-mode-0.4.ebuild +++ b/app-emacs/typescript-mode/typescript-mode-0.4.ebuild @@ -16,15 +16,12 @@ KEYWORDS="~amd64 ~x86" SITEFILE="50${PN}-gentoo.el" +elisp-enable-tests ert "${S}" -l typescript-mode-tests.el + src_compile() { elisp-compile ${PN}.el } -src_test() { - ${EMACS} ${EMACSFLAGS} -L . -l typescript-mode-tests.el \ - -f ert-run-tests-batch-and-exit || die -} - src_install() { elisp-install ${PN} ${PN}.el{,c} elisp-site-file-install "${FILESDIR}/${SITEFILE}" diff --git a/app-emulation/Manifest.gz b/app-emulation/Manifest.gz index a511eef1bc6d..347497ecc06e 100644 Binary files a/app-emulation/Manifest.gz and b/app-emulation/Manifest.gz differ diff --git a/app-emulation/dxvk/Manifest b/app-emulation/dxvk/Manifest index 33679295b714..98ad594e85d9 100644 --- a/app-emulation/dxvk/Manifest +++ b/app-emulation/dxvk/Manifest @@ -1,6 +1,7 @@ DIST dxvk-1.10.3.tar.gz 1204407 BLAKE2B 3507ffe4abf9c45f2a138b05e7cf706322a6bf3d2e9ae86a9d6216b206c09f79eac696ee7dfe33d0bef55e727f51301c36eb89bfa3b3f429d7d5fafc1eebdcb4 SHA512 8995b231b3f3650beda04c01f30186d10a373075a4774b4ecbfb3bbeb4de99c57555f1db0611e5c61c6a411a7215e0faf228f9861f6b7adae6fc365e8056f7e3 DIST dxvk-2.0.tar.gz 943397 BLAKE2B 7d59050e8ac3f9be311d11323cc0057d84c3b730360fe9e064ff4a5e2db5bffea5bae3214da366c60295ec5f1577ab08e2776274c9aaff7a7de1b9f2cefa836a SHA512 98537bdec2b5e4f2ead5b93ab49db717e0706fe771a82a6ef1e5b5792c1bdd3f417cd6b6b2deadb1397b8a0740445fa88b9fb6c1f73510cc5c0e7ae35d65bcac DIST dxvk-2.1.tar.gz 960078 BLAKE2B ad8ea7eb000237914d9116a8fbfde13fde3dc00d428ebfe41aacb9373c6509112545ef1942b4cbc96a18338c3d07c2c494d0454236721e220ee5f5731a5c27b9 SHA512 10d919ba2612f665a20f7c72605967adeea94d8414bee45878f9df42ad263fa5ebfc7a76319173dce054ffe9b9cdc919ff7a136042f3f4e64142844c943bdef7 +DIST dxvk-caf31033d7.tar.gz 961317 BLAKE2B 2686ed36c00325dfbe0351f6c8e3f6787f4568ee8baa73fa51e8e743f4f8f47174fd309d13de2fba6ea1d8496aaba6976bfba02685d2eeaa17cb9cc019620f5e SHA512 e8b9939d5de2642f445cead2d8168b02b05ee18dbb1b5dc89b5abd285cf75a9a229026e482b665b322baab0b82c2ccba9c23ead0f1c6e5f9d1cbfa60307d39ea DIST dxvk-libdisplay-info-d39344f466.tar.bz2 81232 BLAKE2B af76ccd3c40bc953008bc30d222c72f90bdc77f47f767b6e7423efaa0ec89d746396a755160b5470e219a15a0aa392be6066aab12921b45a1adb35d88132cd97 SHA512 79b4bf325cefc39bc587233bd82ff64c927ca5f829b8172d213c3d47af725c8dc7fe33576a8e96a869075ee2a8f00d165f3aa9e6c472e862a47e5c800b2b3315 DIST dxvk-spirv-headers-0bcc624926.tar.gz 437771 BLAKE2B 08815e36ad99b84777e38ad0c5616b6608a552f993e7f67433f2b8e20de81e9bce41420ac5998f5b67bca70a92ce70aed91b238990bd431c7b97070dfb0c5a60 SHA512 5995cf75d5605d41e9643bca81c195ef5aaa17d596e0282807f6fa8f8c494f7b63a41d611c535ae43dc3d609436aabef1e0d89626f37e6f20bad17b5e122e32c DIST dxvk-vulkan-headers-98f440ce68.tar.gz 1691979 BLAKE2B bf6fd288f16df7adcb5cebeb6e13713db1c26a0b833dead2fb522227861abc60b2d0cda8e3f46f8e89cccb629e01081ba27763989ad6fd336c60a475b198c1c8 SHA512 69238d37d0af0162e0fd68094cd2fa9baa320497d34a9de491dea086c23291d0815b51e89218b1f0ee2b3314cbc8ac1809d6edb15ca51fcb282fe1e2b39a1a77 diff --git a/app-emulation/dxvk/dxvk-2.1_p20230207.ebuild b/app-emulation/dxvk/dxvk-2.1_p20230207.ebuild new file mode 100644 index 000000000000..8f164958b449 --- /dev/null +++ b/app-emulation/dxvk/dxvk-2.1_p20230207.ebuild @@ -0,0 +1,173 @@ +# Copyright 2022-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..11} ) +MULTILIB_COMPAT=( abi_x86_{32,64} ) +inherit flag-o-matic meson-multilib python-any-r1 + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/doitsujin/dxvk.git" + EGIT_SUBMODULES=( + # picky about headers and is cross-compiled making -I/usr/include troublesome + include/{spirv,vulkan} + subprojects/libdisplay-info + ) +else + HASH_DXVK=caf31033d711460e86781b16a4d9b0f41fa9e817 # matches proton-8.0.1c + HASH_SPIRV=0bcc624926a25a2a273d07877fd25a6ff5ba1cfb + HASH_VULKAN=98f440ce6868c94f5ec6e198cc1adda4760e8849 + HASH_DISPLAYINFO=d39344f466caae0495ebac4d49b03a886d83ba3a + SRC_URI=" + https://github.com/doitsujin/dxvk/archive/${HASH_DXVK}.tar.gz + -> ${PN}-${HASH_DXVK::10}.tar.gz + https://github.com/KhronosGroup/SPIRV-Headers/archive/${HASH_SPIRV}.tar.gz + -> ${PN}-spirv-headers-${HASH_SPIRV::10}.tar.gz + https://github.com/KhronosGroup/Vulkan-Headers/archive/${HASH_VULKAN}.tar.gz + -> ${PN}-vulkan-headers-${HASH_VULKAN::10}.tar.gz + https://gitlab.freedesktop.org/JoshuaAshton/libdisplay-info/-/archive/${HASH_DISPLAYINFO}/${PN}-libdisplay-info-${HASH_DISPLAYINFO::10}.tar.bz2" + S="${WORKDIR}/${PN}-${HASH_DXVK}" + KEYWORDS="-* ~amd64 ~x86" +fi +# setup_dxvk.sh is no longer provided, fetch old until a better solution +SRC_URI+=" https://raw.githubusercontent.com/doitsujin/dxvk/cd21cd7fa3b0df3e0819e21ca700b7627a838d69/setup_dxvk.sh" + +DESCRIPTION="Vulkan-based implementation of D3D9, D3D10 and D3D11 for Linux / Wine" +HOMEPAGE="https://github.com/doitsujin/dxvk/" + +LICENSE="ZLIB Apache-2.0 MIT" +SLOT="0" +IUSE="+abi_x86_32 crossdev-mingw +d3d9 +d3d10 +d3d11 debug +dxgi" +REQUIRED_USE=" + || ( d3d9 d3d10 d3d11 dxgi ) + d3d10? ( d3d11 ) + d3d11? ( dxgi )" + +BDEPEND=" + ${PYTHON_DEPS} + dev-util/glslang + !crossdev-mingw? ( dev-util/mingw64-toolchain[${MULTILIB_USEDEP}] )" + +pkg_pretend() { + [[ ${MERGE_TYPE} == binary ]] && return + + if use crossdev-mingw && [[ ! -v MINGW_BYPASS ]]; then + local tool=-w64-mingw32-g++ + for tool in $(usev abi_x86_64 x86_64${tool}) $(usev abi_x86_32 i686${tool}); do + if ! type -P ${tool} >/dev/null; then + eerror "With USE=crossdev-mingw, it is necessary to setup the mingw toolchain." + eerror "For instructions, please see: https://wiki.gentoo.org/wiki/Mingw" + use abi_x86_32 && use abi_x86_64 && + eerror "Also, with USE=abi_x86_32, will need both i686 and x86_64 toolchains." + die "USE=crossdev-mingw is set but ${tool} was not found" + elif [[ ! $(LC_ALL=C ${tool} -v 2>&1) =~ "Thread model: posix" ]]; then + eerror "${PN} requires GCC to be built with --enable-threads=posix" + eerror "Please see: https://wiki.gentoo.org/wiki/Mingw#POSIX_threads_for_Windows" + die "USE=crossdev-mingw is set but ${tool} does not use POSIX threads" + fi + done + fi +} + +src_prepare() { + if [[ ${PV} != 9999 ]]; then + rmdir include/{spirv,vulkan} subprojects/libdisplay-info || die + mv ../SPIRV-Headers-${HASH_SPIRV} include/spirv || die + mv ../Vulkan-Headers-${HASH_VULKAN} include/vulkan || die + mv ../libdisplay-info-${HASH_DISPLAYINFO} subprojects/libdisplay-info || die + fi + + default + + sed "/^basedir=/s|=.*|=${EPREFIX}/usr/lib/${PN}|" \ + "${DISTDIR}"/setup_dxvk.sh > setup_dxvk.sh || die +} + +src_configure() { + use crossdev-mingw || PATH=${BROOT}/usr/lib/mingw64-toolchain/bin:${PATH} + + # AVX has a history of causing issues with this package, disable for safety + # https://bugs.winehq.org/show_bug.cgi?id=43516 + # https://bugs.winehq.org/show_bug.cgi?id=45289 + append-flags -mno-avx + + if [[ ${CHOST} != *-mingw* ]]; then + if [[ ! -v MINGW_BYPASS ]]; then + unset AR CC CXX RC STRIP + filter-flags '-fstack-clash-protection' #758914 + filter-flags '-fstack-protector*' #870136 + filter-flags '-fuse-ld=*' + filter-flags '-mfunction-return=thunk*' #878849 + fi + + CHOST_amd64=x86_64-w64-mingw32 + CHOST_x86=i686-w64-mingw32 + CHOST=$(usex x86 ${CHOST_x86} ${CHOST_amd64}) + + strip-unsupported-flags + fi + + multilib-minimal_src_configure +} + +multilib_src_configure() { + # multilib's ${CHOST_amd64}-gcc -m32 is unusable with crossdev, + # unset again so meson eclass will set ${CHOST}-gcc + others + use crossdev-mingw && [[ ! -v MINGW_BYPASS ]] && unset AR CC CXX RC STRIP + + local emesonargs=( + --prefix="${EPREFIX}"/usr/lib/${PN} + --{bin,lib}dir=x${MULTILIB_ABI_FLAG: -2} + $(meson_use {,enable_}d3d9) + $(meson_use {,enable_}d3d10) + $(meson_use {,enable_}d3d11) + $(meson_use {,enable_}dxgi) + $(usev !debug --strip) # portage won't strip .dll, so allow it here + ) + + meson_src_configure +} + +multilib_src_install_all() { + dobin setup_dxvk.sh + dodoc README.md dxvk.conf + + find "${ED}" -type f -name '*.a' -delete || die +} + +pkg_preinst() { + [[ -e ${EROOT}/usr/$(get_libdir)/dxvk/d3d11.dll ]] && DXVK_HAD_OVERLAY= +} + +pkg_postinst() { + if [[ ! ${REPLACING_VERSIONS} ]]; then + elog "To enable ${PN} on a wine prefix, you can run the following command:" + elog + elog " WINEPREFIX=/path/to/prefix setup_dxvk.sh install --symlink" + elog + elog "See ${EROOT}/usr/share/doc/${PF}/README.md* for details." + elog "Note: setup_dxvk.sh is unofficially temporarily provided as it was" + elog "removed upstream, handling may change in the future." + elif [[ -v DXVK_HAD_OVERLAY ]]; then + # temporary warning until this version is more widely used + elog "Gentoo's main repo ebuild for ${PN} uses different paths than most overlays." + elog "If you were using symbolic links in wine prefixes it may be necessary to" + elog "refresh them by re-running the command:" + elog + elog " WINEPREFIX=/path/to/prefix setup_dxvk.sh install --symlink" + elog + elog "Also, if you were using /etc/${PN}.conf, ${PN} is no longer patched to load" + elog "it. See ${EROOT}/usr/share/doc/${PF}/README.md* for handling configs." + fi + + if [[ ! ${REPLACING_VERSIONS##* } ]] || + ver_test ${REPLACING_VERSIONS##* } -lt 2.0 + then + elog + elog ">=${PN}-2.0 requires drivers and Wine to support vulkan-1.3, meaning:" + elog ">=wine-*-7.1 (or >=wine-proton-7.0), and >=mesa-22.0 (or >=nvidia-drivers-510)" + elog "For details, see: https://github.com/doitsujin/dxvk/wiki/Driver-support" + fi +} diff --git a/app-emulation/virtiofsd/Manifest b/app-emulation/virtiofsd/Manifest new file mode 100644 index 000000000000..af73e343eabf --- /dev/null +++ b/app-emulation/virtiofsd/Manifest @@ -0,0 +1,82 @@ +DIST aho-corasick-0.7.18.crate 112923 BLAKE2B 4f6947d1aacf89ccfab0592cdc55fa61ef09cea38231d3f758765dbce328a810c0b588be4ba96e81d64955379ee005722d22a7aec39caea6e72342245d7ca34f SHA512 7a23b16231a90d23ee60ad4c81bc225410599a4560d33d3a203138fc540c39cf1000100fed3aed40dcc371c3635656a3792545dca5dd1aefbde00d8774eebd00 +DIST ansi_term-0.12.1.crate 24838 BLAKE2B f636772c34e2d68cda7b8d3b2b86abda074585a62bd2654812ce92384244655a9197fa66e6939e19a674c0148ca605313d83de262bb18c2339a8a4eb4438a791 SHA512 b840e28b3e7700689a69a39659b1e066560078dd4a58326b91a028915819e7af883399ee53e920db68fd974c58d35bb1ddf8d427af5937d5f696f57c4376b671 +DIST arc-swap-1.5.0.crate 65351 BLAKE2B c6b278134f6e29551302e27131639f3bc5bfb05042701cf6c12aab1697f211be0942c44919d374e196ef03605fb137334b42decb9623a137b6ead346586c2105 SHA512 b668a75b2ac77a9d2df3f29b70c8c22e5a961cd2478cd76b6d313e0e1ff809508887451b895f057d160860daa4b02cb74616ab8daa34d163ef3f42a009842031 +DIST atty-0.2.14.crate 5470 BLAKE2B 2db856a9e898a430258f059aeaf7c844a153293e8856d90ac81f7d91a888c89198768ad5cb09303c23241fe85c560a55148fa56a303651a82b0edb895616bfab SHA512 d7b6c4b9a0f898d91ddbc41a5ee45bbf45d1d269508c8cc87ee3e3990500e41e0ec387afb1f3bc7db55bedac396dd86c6509f4bf9e5148d809c3802edcc5e1d9 +DIST autocfg-1.1.0.crate 13272 BLAKE2B 7724055c337d562103f191f4e36cab469e578f0c51cc24d33624dea155d108a07578703766341fd6a4cc1ef52acda406e7dba1650d59115f18261281e5b40203 SHA512 df972c09abbdc0b6cb6bb55b1e29c7fed706ece38a62613d9e275bac46a19574a7f96f0152cccb0239efea04ee90083a146b58b15307696c4c81878cd12de28f +DIST bitflags-1.3.2.crate 23021 BLAKE2B eb990bb27b2bdeb66fd7212ce582cb36e1c616debbac85df642d0c82b25439e6bf9b1e811fac76b59e58ea3c1bbea6170d03a61e8f9a395e4334a0e2e2987eda SHA512 3c698f757b5cc62f815f9a1cce365c3d2dd88e4db71f331dff8bba86c2865f755b81cb4c9bfc59bd86b7643b0943f9e09a7c4f8ad75eb2ab0e714803d0129f62 +DIST capng-0.2.2.crate 24372 BLAKE2B 85cf114065f0f103a9e1583b11316c5a95d5fa9f5d70448d6749b500e956e4e0c6fb4f5e548a7490d191ecae878624cf4ea1e5026a6a0796c8269e68de70af0e SHA512 132c446c36eea932a39190b284d0f2f29b50334dc8c12043e43a1eca90366a56b2034c649740ac20ded4c4e91147226237cbbcee18750dfc281154644d6fa0db +DIST cc-1.0.78.crate 61375 BLAKE2B fd4765cf5ae0dc7018bc6b56298cd0fa9bf6fe23545e845670d98ce73baee55354e77c6d87cf047f10b074f3d742deca8b5631a250c69b347b4a1fc653965d43 SHA512 b85bec4c75cb1d1e252419052e9dd22b6892e54ea36195ff483a04f785b5b103e82b30b778459fd45324ffeb2463aa4f5696baeff2779c25ffe9f65eb99ae893 +DIST cfg-if-1.0.0.crate 7934 BLAKE2B e99a5589c11d79d77a4537b34ce0a45d37b981c123b79b807cea836c89fc3926d693458893baca2882448d3d44e3f64e06141f6d916b748daa10b8cc1ae16d1b SHA512 0fb16a8882fd30e86b62c5143b1cb18ab564e84e75bd1f28fd12f24ffdc4a42e0d2e012a99abb606c12efe3c11061ff5bf8e24ab053e550ae083f7d90f6576ff +DIST clap-2.34.0.crate 202210 BLAKE2B f383adf1d757ac4b68995132b33837686ce451f85a02a8d05d2c746da398510d05d46330f3efade063c3952aacb1754cdac73dd0afcae0df5340a89f9353aa1c SHA512 c648a761b9996a7e7464a538bb53621bae22090b846a42c3b729beca3363958ae67e3da9f93f58b10a10e043cadf7ff930388680d168646178c2824177832db8 +DIST env_logger-0.10.0.crate 36574 BLAKE2B d2f387682059fe9b4566ab995be449c58c57b8df5e5d8bd5ffd153aec1648721d8a9606d3f9aa034263651f5182043e08b6cc08d2d29d0a10f6cc61df9949a06 SHA512 4dd02f9d333a1f15657167ef4bd403eda5426cad17e0a4a43fa20cc65449345eb4d3fae2d6b10a3480016b9e23497fac13ed7e70b40c9450ef430be9f910d3e4 +DIST errno-0.2.8.crate 9276 BLAKE2B b73738deb47d1f76ec91ffd15558126d32312647b82677290725669edb01b8f34a503172fad6518ebf0ffb1633ef0afaf0750982b9384a9fb87833d31721c9a8 SHA512 1f513743224cd9a9b7e4caaf33dab075a4a79efa90c9f46c9edfb0c8600daccd3ad2677ba2116621e19fcf8be456954da5d611cbcea4b6f1410f7731828b50d1 +DIST errno-dragonfly-0.1.2.crate 1810 BLAKE2B 781fc26dce5c33d83b9a1fd9be2b2ce9ac2559aaa858957ba6777e143b1e44cdfee48e1b47e3c91a95075a51921d1a421d0b45eb3d8de827cf4dd0ad744a7d8c SHA512 f853f1e1b8dd0f359a8f9a0399b3384c1103cd090d96e2b2204f91a40d40a9eb99383d4aa6a11e5470c51557afacf452d4be2049600d4235d27f59870fa3b916 +DIST error-chain-0.12.4.crate 29274 BLAKE2B d082bcbce47411477e8b597cfcb76985cc7d6f1696926cb5314f4e84d2c8642939f5263e110aaef56353ec086a21874a8093bcea1d018be81c86ca42c2c30d71 SHA512 c0ee19a0ba2d79ff1843148d0a582045e68466a9dc429e5f3c8a3a75bc1b6e0d6de03ad69fce851bc0297e7db77b2c6817a13c37e1c3d4501ed41db8a454bf79 +DIST futures-0.3.21.crate 49935 BLAKE2B 290dee4f7662a473d82350092c0b12a8270f6d6f5eae9e4f7e06a6abf59e2d9f2d33e5e62e2682fcf6e109d62f651cb37cc467cff2b20f909c72b5fee2cb7683 SHA512 723fc190e4480fd812a852656fa6509a188f0d06adaa1c22ef24ec4afa7688a1c5d3961e5747f0812d073fc672b0e084af6ad5e5c3fac3ea5829466f993ad865 +DIST futures-channel-0.3.21.crate 31961 BLAKE2B e99f37cdeac080c8bad2203fd24b48eb62918166104ad6cc531c8f69d3e0c3a5898ca27f19693e2c143c9049a7d244f9af49c16fecba12233f9ff3f1d01e35b0 SHA512 1c10398657949b53b6df196cc44d8e4b3acf53b4d216be6f5f631d8d4b500f5c344e2cc7d5a5642ced6c5480511884611be6d429f56a0ede4a716b9c5770cb76 +DIST futures-core-0.3.21.crate 14601 BLAKE2B 73cf4c422202a34cc9916509939fab35c79093a6c1aeb99e35763727ebf7d3a06ae203684d75cc74183126f0cd95dec1530f136ffa2a0e69354c554883e3af1f SHA512 b60e7892436ae28fd2240f17816f934f6caeac663d67b8efc7d519ebb4b0bd921f0b732b6176bd4b472d2fbe346d39a37ba394401e15afa93af8294ceea90976 +DIST futures-executor-0.3.21.crate 17306 BLAKE2B fd20c7f0b4996cc10e3b3d30c33630a42eb363ac7893af4ae5c476775f8e4f3724ac110648252b6cfb3d652d352fbb5833f2647d262a4c9ae999de1fa69340a3 SHA512 597732f96b45ce21f7a0b149f62cbdc54a80010bfa5421ab0ef7345c501c197e1c8fe109fa2d1c813d5c2e872b4670e0fbd96e2572cc3e9d2646b68f41c78147 +DIST futures-io-0.3.21.crate 8902 BLAKE2B e673342d3fae38e5a6a20c426cb1127353b4f15459b4c27965566f7f2f13f0773ac6ec850b0d679bea37d68219edf6cdf9d1d0eed37665f4ff51c6060b81466c SHA512 dde0b79c4ba208b4c92c699457efbd515d331ab612e7b7df735b3b8f2ab79c012b1ba329ddaf488d68c69dbd119aa231b833b81cbcc0cc2f55c656f68dc22bd8 +DIST futures-macro-0.3.21.crate 11250 BLAKE2B c981e6d56971871102591b6f14b13f0ed75499627036a90cb71a3e11336db408d11ea0feced484d9ea454f47db74951cdfc61377af267359f46cb6462cc3fc0c SHA512 a79d4d3e487d05554e05e04f3a631fc9f0b5c525126eed550ee30eed16d4c457dc39274efac53558a3e33a119b8ff9d3552ce367359eec9d05105b278f7677c0 +DIST futures-sink-0.3.21.crate 7843 BLAKE2B e4b2ac98e89063b23f5e278cad1df6b1b8f96d4f0df0cb035ce964b91e97f88c7a1a4942ec4010cb4da5f4a3552487eac048a6bfcef637bf1f83398d7f38758e SHA512 9bc0198495b5a1b3ed25fcf7b053a235bba0a43a4226bf085d9027537a57add1686ef61179bf2a2d4189945cb5a05a8d64ba6e6e647c56245666d51e138d113f +DIST futures-task-0.3.21.crate 11815 BLAKE2B ec3f2e2c025e9a482d86912099e68722099c22c0024669906036504d0e70998cb9cb5fd4074928d21847334611ccfcbe6d3e2f686c4d4d7d4436f1e7f501b8fb SHA512 8f3b27865d8c7a290471903297e3c0b52caebfaa55550a4738d7915008b893fce67c7d9ae5c5bd03f2a42ee72a96aa0245c4bee70fc06977b3493eb81bca2033 +DIST futures-util-0.3.21.crate 153768 BLAKE2B b3bc5632bbc7616d33f74361d68f83e0cb051125475101c84212ea2bd03307e927cd125e2f93eeb0f84946cc45d3964a590dcbfcfff88d3ce1970f127e71aed3 SHA512 ff952fb74a54e793de943e3aee2ac771357bf9f1aa5de89af128868c46a6b44e414fc4ea97f2d9b201ff7ff41023e119f1adf90d314343ff53ab987c3e07f5d4 +DIST heck-0.3.3.crate 10260 BLAKE2B dc756738081d855583f239908f671e9b5dde72ebfb577f6387b1a169817a03332464cf67071708a4c4f06b1ecb222118e8c719073ccdec1c0f938e5ef378b13f SHA512 b3498e033f44e03206421e565efec5b21d13107b60d35e4476331c44e6effd75c81f7678f2452c822eefd581209a2ffefd2034779cca2d8b4fac4583bbbf777f +DIST hermit-abi-0.1.19.crate 9979 BLAKE2B 801e8052b85341cca388ada9db4b06bb1bd7b64474185b2ad06c0256b9e597639bd3dd4ba0053ea010f922e53969a4ab47b90d451fd9b94c8f2324055d151ea1 SHA512 1c877fcd562b15d2de9c151fd6c5f3ea4bf48abcb799e6139a180ffad5d64b632f0000d5707bbd92ff23a0e5f349157b9e0f5be8b50f03680b0fa47315dbb78a +DIST hermit-abi-0.2.6.crate 13027 BLAKE2B 4df5306639511a5f69594e903f8ce62482cbbfbfe272a91a12f407483dbac4e87c2d7e5668cc06ca5c0fc149ca93a3152fe6ad4bb3b96cacf56a22cb635e5b7f SHA512 bad8442bb822a9c99f6536db16523c80f5139af6a139bcc359c03725c59ff935816e2ecc5c491dc362ac75ab2dff41ab1e9dd29431f5e9a109b60eb9b7a8dc28 +DIST hostname-0.3.1.crate 9272 BLAKE2B cafcae4bbfadd51d058e3daba3e63d897bc3418723d8e843fd941d9663dbc89dba131c77d14ce7a5da552650ea3c40c4e418c88d465f1bab2fa20c178596852d SHA512 a90407996353c9bcf5b76be03713e3a0455ac80a50892e77a508744cf436a938ddb87ef97d8cc91ec7dc4353cfb7bca0fd28c90a72f8a9ecd4f29220d174edf2 +DIST humantime-2.1.0.crate 16749 BLAKE2B e2ae8325b037fb175b9200cc5c1944ce579056c6662cce307beb6701894552362a25e371aad65f8fb9384945b48815ca74bb8b544a32e0a5845b7edd30b918c9 SHA512 3bf29ddd1391d82897c22baa0ff3ed58ef6d6959859f1f8ed54d324caba5b6fb4422e56790511ce82f902cd11467f93c8ab7fc7b0e0bdb719308a4d0a446ae0c +DIST io-lifetimes-1.0.4.crate 35815 BLAKE2B 82485bfd13189e0762f7ee501626df0dc741e152ceed875b91a3eed6608686b6d454939d557a0bc29d6bf210dfbe56d35131beb141fc95250544ab8ea992482b SHA512 1b2b151561dc79d1467b699590b2cb5d4acb39f75f38c05a94edb6d1543acca541b5a083fe7b606bc37cb2812692b7acb46996d0b096b96b0b085d31b1336775 +DIST is-terminal-0.4.2.crate 7577 BLAKE2B 4ef84768184203b58e2b155256e35fd7a74169a8ccd52c3c74aec7fb1d6aeefe6232d049bbdbc40ede2acaf0be453caac19f758cf1abfd04cd1efdf4022c4996 SHA512 ce4997ce1b9f529a7d1b875985cde02440de288a0e823f2f5a9647e3a34658c5f56d254e85dd7f152a987f08f428bd82ce7e2af626c4b3c76cde50e8ae1e9374 +DIST itoa-1.0.2.crate 11112 BLAKE2B e277db8e2f506d4d20b6888b609d9726d594e1cb2c9f21df60a8cf8dcbad1808d8c1bdb0b7857ce7734b92c0f23fb1ec56f8564e779f27eea953d0ffbfcd3f84 SHA512 44a732a102d60b58e72fe76c43a1d185fa12ff08d04eeacf03234368552f84d3de87a2ea0a6e7a56b8cfa74cb6f6697005afcee26f45afe0c2fc7dce5da3b593 +DIST lazy_static-1.4.0.crate 10443 BLAKE2B 25b2e61bbac48f0dcbc79c81d7bf01f2403d8269ecb6be3ea6147bd00f7a588df15a91f44dfc18ada19b21faa71de4637c7d493a8628cbecd0e547d74e616a23 SHA512 e124c0521ec7c950f3c4a066821918da7a9c6e711115d98009ae7c351928fdddead852e7596fea5937a9c30e4e4ce8eee7099b20248b5d6e3b2494b6a6d88cb8 +DIST libc-0.2.139.crate 638983 BLAKE2B e92b296cf8c916e10e859722ed75f4790401662ff7aa2fe8ed84ef9b94a00538768be33c272f0881e42da887c8c43e1fd44d061343386216492a76fe5d308598 SHA512 ff5fae517c49c382dee9b1d7479b65b0a818780453e5c00c416847d02f42186e2fcf19a8a8dc5e9cc2611300690c6ad324f9c0f0e8172e913a1b781fb7c0b5b4 +DIST libseccomp-sys-0.2.1.crate 11601 BLAKE2B 77a77d6d1f8ef6f5d25b35c299032738aed0a404c855cb84223a7334caaf57392fbd8f0915f4f7be875778176cbfdb8062eabbf7b414d3c198a5d41cd8a466ef SHA512 b53b13f95ac487d802ff051b4cee32be2dfa496846f3104a61399a53a07a7d6fb6b4543088765858e26e060e22e0bf93f8cb3a175c06dae4719f918844c7fe0f +DIST linux-raw-sys-0.1.4.crate 878981 BLAKE2B b8708b06e48ef4e32d820b5a0e25ce12d3d985d729a2d7fef46d0b3b4518b4ad40d037d4689fb2270f9c2583dc031d0f4daa26500197e6c32bffd1400357934c SHA512 ee6d5a7a08b183681ae00890784c9e6b72e4c987b2ce2d7de6e7308b7a10d4a2b532db3d5121523bf5d4a262407f3033af4f4c1fd9f09be091523366fa30d768 +DIST log-0.4.17.crate 38028 BLAKE2B b46be3719fc0a53e50b1f342762e188587e9f1ceb692c72473ce2663edfb8253742d30024e68c1444780ab7fc0e2d5b0601b8ea7228dc3405a9342a57548e605 SHA512 2477d88db42b1d92c30708d88823212e236f613b3465e85eb425f83f8d16fadfaf0352f06c2999a1852102edd2f6ffb10ecb539d8a3b6c48f552a25622ccffa2 +DIST match_cfg-0.1.0.crate 7153 BLAKE2B d3f40e5b16761fed337ed18dfa9db9e46aa2ad84ca8cfdc7cf7c72bea7cff8d084d95214ce013b3515bbe5b1ad4b8527bfce692569551e4588fe6f396a8a96ee SHA512 fd36f2b128d70a0f278e708bcb3274d90380229f754aed7ce9b808138b0189d5e1a07e0ba732216f788a530cecddcdd980559b3f71efa371d8805a213ff8f2d6 +DIST memchr-2.5.0.crate 65812 BLAKE2B 57966413a1f933dcb2d2d4ccb29c247070f65a83299b2a9f5aa83f5a48a5c5f1c4c7c632fa63bd19f9508e9291e7258db2f16e2813a56fd84e0856f70f1e67ab SHA512 444a163b484c233e78c0e2e4d51f01ce2da93d7d29f516a95e4b0866b20bdfd3f34137653abed53eb70387991ee3e2b5937d8d4360a85bbcb50a93005a75defa +DIST num_cpus-1.13.1.crate 14752 BLAKE2B 27490aeee349d944c29e50b44e9a84371030459353a9316ffaa0245ce499df4424e39c25a81be59cd0f9a19c3214c78bdc7a84b632059282be476d8f918c44d6 SHA512 91ffe0ec792228621d6c2d5cc544ef4744203d19fc9c86e0aad2610038c43aca0448b6c27d82979417a0f6c939ea73523303a44c28df0d1c1b8d09814d5306d9 +DIST num_threads-0.1.6.crate 7334 BLAKE2B 416efdf395b0299b6b01e1508823afdda08cf67ca54e1d644fc5accbb0490945a492a34bc5ba70c3e838e6405d17ddce164ef87468bd9da27097de8994ad9577 SHA512 b2d9897e29e59353379b6372a629fc7f9afc89f777b4410eaeac7b4729527948a8dbecb175f056899f9076693ef855cc0d40e725cc54f28af588fbac5f7ce3b6 +DIST pin-project-lite-0.2.9.crate 27713 BLAKE2B d6985b5add432fb6287d1b0c9fb0cc91a195f82c5a748a9ea430e4ba884717ec7b16d730b5ea62de5b2bfead1771da2d115b3776e12e605f70f2538f374a28fa SHA512 cef0b77233adca712db1183f780732ea577cf1b27c2643de221d54c837c75ce749f907e24a967be7474812c7682cba613a3fc5d553a9578a1b80569da0e562e4 +DIST pin-utils-0.1.0.crate 7580 BLAKE2B 457e1287202f16d1873b24bf4f1de1828300128c4ba3131758e64f9784d36d47365f22d85493c3a85d854f0d8dbb4c6cef3a0f5b064014dc03943e58b7ba9178 SHA512 828422b8440cc82ac6b0743e0112fa7540d437aed457564999092b1462cd7672cd6b1f0201b67075431aeedd3d9c5127468a3dd028744109944f7f023c82fd70 +DIST proc-macro-error-1.0.4.crate 25293 BLAKE2B ef918c5efaf2545ab38787c8d0c07315af00431139e4dff66346bf798e3a429f91d12a79776c150412fdda0b158a72badd5e1044ac4d6917f8482d4b5a7110b7 SHA512 8a47bc9d3e24e9561d1e384d8f5a633284c2cf9b5e6733c5f9d1dbfe1870ccc8e2152482852e50b551cecb68e009148585b910ffb0508a7b4875598eaf8657db +DIST proc-macro-error-attr-1.0.4.crate 7971 BLAKE2B 98e2925881c2be186e22c2c439697e91d43f807eb61a5d13e3b0b4321ed50a74f3d699942c04b89b6fea0f156bb5d19ebcf22f9cd4b98a7e6917c437600ed823 SHA512 2606afa9ec78d7dad4500c98d3a5ecbd02c6b53ab829c742bed7f57b322a95238ab4e01cf268746815f1424fd9b02eddfa30e72f98c66106f57765f3d3116495 +DIST proc-macro2-1.0.40.crate 40559 BLAKE2B d83cf7283393a82ca65263afc375d123bd2f48b719c9eab6859c52dc0c2b9b4b5af3090a0ebd0fedf0e1095f0bafbc443016f751a0485dc654bcd80a6f71e326 SHA512 bb179524bd41e36735010a7ec53e096359ffc3688ab97806a45ed9cfb17e8688ce352bbb8cd3bd4e15a4299e8500603c86591b17cfa31bca03f299f6f6347992 +DIST quote-1.0.20.crate 28160 BLAKE2B db257025f64817b1b58eecb8e64e63f1782d8a7fcb42ed6c3364254ec5a26705e49ce0637c880b0355b99a77473ce3083caae2cfabbd1a1a7e4fc826bae2cb7c SHA512 d12f4a425273b99ae655da11fcf5dad2609e20ad3e7d85cde08c7d09f444a5c7a3505470bad2d48b1ba8ea59ebf38ab87aa1052e47ec414acfc05dcb07d438be +DIST regex-1.6.0.crate 239329 BLAKE2B 646405e681ce572ebe2dc51a3339f0f8204143f9b2b8f8e74a4c80379c43c3581363ad347610a384d5ee831cf1425f74ddd944a658b1da2461e8068c5521af69 SHA512 b4861c9cc13d6fb224f67057fd3522f04576591b3d7ae0d3581dce42ca2b2bff96860cf2a7f4dfab00e46a1d29e6473f6723c4aeb02e34ed6d5f205b66f07876 +DIST regex-syntax-0.6.27.crate 297300 BLAKE2B 4ca1a2e23d04e29c5925085ea4ab7ebcc398dfe135eacaab1e686aa8be43a110a28e8bec05a6910183f9a6bb1fd0d635fcb1a60b5a6a03fed4d2cf937a542a5a SHA512 5cc705a5dda08cbdb4dbcf3fa98763cadcda13d9c3ba407b35f3e88d77935efc2704bb40b3fb5aad7dfbad0df43bcb4c4cad9732defb954e2228a0739f7c37c6 +DIST rustix-0.36.7.crate 290628 BLAKE2B 7cdd5610fb4c5c079de7dcead4d68115c67f56c77404dfc946c80062c44b5e821bdfc1c1ac0139c1dc9f0a7bca73076136dc38a08c1b690f00ea25353b9259ba SHA512 ed5fd16a983d2549ed8322c261fca651fcf0dfbd4eb1f7bfd896830434768fac317cb410ccf7fcf03a8b29f3de7dd06b5b4b6be4278f4fa13aa46f462a9e66ad +DIST slab-0.4.7.crate 16647 BLAKE2B f567cc822e7b84f64a0b0372c22a0463d260871455a33df025808a0476dcbbd4e051a117d8896d96d6d3d0655b7c296cd691ca22edc54486440f4e2e0f5d1e1b SHA512 659a9ca3323fc2cd236f6cb9eb6feeae8a1f5fa046fa239a34cd7a5ab8a7eadb9e5977e8d5cc41e9138900dd7c75ebc0601480771c5fdd2e084ee76619b82521 +DIST strsim-0.8.0.crate 9309 BLAKE2B 40a8be506c43ee1ffe006ddc7dee98c3d418bdd205d57b78f5d1e4c9312feb57e1eaf952e02d92d4e0932db240c6fba45beb06ea8c4fc6de1cf1faa8b6a3a939 SHA512 1d55a8d946cd55f5f37d06aea536549ded95739fa58c0f2da285a0041154c181f663682bdcac643aa198b3e762d694a04f058db985c62ebe22b5c16327ba6d34 +DIST structopt-0.3.26.crate 53798 BLAKE2B 04be64637d18bcc87d261320668023459a42c167bb5a4c52216df556a7dd19be28032e7bf759cbcf710a3729a9dfaeb20c29f37f35fcf33533db583ac4fa049a SHA512 dec27090b57107473c9d398db68bde3b1b5191e7c7980d7d2c20fc723f92c64a6cf1d391d5122a103222c4262253d8073fd0fdfb11c74f235af79b2ae0caf069 +DIST structopt-derive-0.4.18.crate 20996 BLAKE2B 2ae17e0d365a7ce7a4d0e007513623ee0d5acf45afdc3844114e02975b855fd1a9f7df404a24044cf33a3a4cc4142eccc34d1e97925646d54d460a89baa28275 SHA512 68a7f9c2ed987993fdd8bb7e81c31969a1fdf5351c58cba9de61a2f5957aba1626be4b0742f31d4de502301675ba24b0d91dd3acb24f5607bdeec83070626a57 +DIST syn-1.0.98.crate 235451 BLAKE2B 0667c24d7f6b9bf4c0a5f45fb51c903303a87c72d445ad824e05ab98a158f9beda0d00721144c486335b6a830db47fe57a34831cff6995f478c969c4d0a039dc SHA512 fe5dda742e085e14b6aea5617d3f9dd19ffd46009f34b119c0d74ec693042f641e594f75ff027dbfa38f3d5149a94eb6187248ee9d09d41dab9cc2cfc18fab18 +DIST syslog-6.0.1.crate 9552 BLAKE2B eb4414c675842fd8cbde4e0c9ecec5dd0f43ca2877a082d634e145202df6817cee86e2edb11f1b78cfa5b0e5df98a42b6cdb2bf1b70c562661dfa9c03da142ba SHA512 fc3e0ef078d2414420e717b66517e9fc668a03b5d0cd0001aed6e477a92f2873877b873159bdf964e4cd670519e5a308bc7357674bd67ac320754221415aa36c +DIST termcolor-1.1.3.crate 17242 BLAKE2B 5aef69c0004081bd3cc4d531d13d63627cc02313868c0faab62358d13abfa7b4ba82f142c2801d25a6ae46ecbc8b7bdbeaa21c9105ea3b8950ab6a38cdb88513 SHA512 5838fcbfd70f300cb4b62aab50565db52074c56b152ccc8ac1173e4676c0d5a636271bf5a645a77da6e1d4edbf0091af2cd4dd6d73b85c3d198c760898c06f3a +DIST textwrap-0.11.0.crate 17322 BLAKE2B 257428908342774593bbd3528fcdae710712ff54e8a711393a24356d8ba0e16e466a4b20c05f942c48ca76b3b5b5aaa90ec202f782cad892caa8b71ccf124da6 SHA512 f5c0fe4f28ff1a3a0931e8e235b5157a45f67967985bcc752418c5ec3481fca44a8ae4800088889b37e8cd0533f53d3c456d5ffd19b767b3f83a87b49a2e209a +DIST time-0.3.11.crate 91807 BLAKE2B d5b80416590bf48c8f403cc0e2ad735b95d98048dc335737fe509c44f805cc911fa55d6af611d3a05150b2a9ebedf005e8903a4daf66e245a5d5f290ed661c46 SHA512 214bb8c5573d3ee405a923f55e22ac3d659c30ba413f5e960e17d8f226d094133e2b52084e34efc6ece2311e13a862f2fcded9783937d69709d11144a8d6b48d +DIST unicode-ident-1.0.2.crate 34951 BLAKE2B f03f7a040142785675a800672bb363dcf7aae266eebf50425436100249442f27b18837f9e297d93b59a9254c349e13222f8af892a9c0fbf2bac676df8a1b0e1e SHA512 60d78668b762eb842c15ee554c0c1175393702c805f1a874957d49104e9152ad2d0316966553fb14cb520aa858a84da223bf426d55e4ac23de3324a3bebc301c +DIST unicode-segmentation-1.9.0.crate 93241 BLAKE2B 359904bcaadfd161128d40a896a2d10e5dfdb4098de245c949ae3fffecce9b4b6b999bbc2c6ca522944733ab0074e50fe829690183639c312bba8f8d0ad24456 SHA512 7d0ea37bfb24a1a803b1cd40b7b0c0e6e44ebf9a474fdedf0dcca1ead25662e19f44af29b87de1b000c3cc75fec93320938bb3ab9d9e82298eda324bb97e7294 +DIST unicode-width-0.1.9.crate 16745 BLAKE2B 38d4b92e47a284d6881a8073089be59a73d82b91efe5522f55be977f95f479890b6c02cd519544729f1b1e62eb21bcfff8c5f5382917f953603b760e39cf1ea7 SHA512 0f5ec46c57e3b5e50cb8430c89db8d9c129e80ca11a9c398b5312bfe95001e19ca3efbfeb01c3ac09c4ce7e26c6ee1f352f7e114ecef78cefd68c54d2d50f5f4 +DIST vec_map-0.8.2.crate 14466 BLAKE2B 8f109fbff19604b82ea2aa61c952e2ce9b5597ccc8e1ef4e847648e2de08dece8c4debe92889edeccb8d393645fd0b62436b49d236ded7ad181c4a51239a9539 SHA512 4f1ef59bc2c437e79f1f84fe021bce5aa8ccd581f500f3d5776913d5f17d45b03ccee64f5bd03d47656318cfc9344a1f4311079d471fa409a8e4e94c143973f9 +DIST version_check-0.9.4.crate 14895 BLAKE2B fa1fa4008af165bfc1fdbe560488afd9d232cfafee94104fbcc4cbc52f234849bff9ddfa88109a1ac682f6d9c1d86b0459893d223f64e65adc08966aaf93dc89 SHA512 b172dc9a3759a4a683ffc39b9a40b03b9974b626a088217de87090466cef695226557c226cf3e469b2b25ee7297b7eb0d7719878cab42457f80146a81943c0c8 +DIST vhost-0.6.0.crate 196931 BLAKE2B e988df6489c33332c4b5a804ab1f79a1318ef07c46a531cc56df71529246678fa0469e2520708bb2b71dbdf3c8abdc7385f84c25701850139c26ff13cde88b82 SHA512 13d6d2966d596072d0afb559e4702d2a43fa6a85ebec5345bab0455483cfef0c4a70908737955d2423e380839ad0d57118203f3f2c582653d590dc52498cfe1c +DIST vhost-user-backend-0.8.0.crate 17703 BLAKE2B 9a4c9ab7f5eb1433b70500972ee580e0c34114da5db4d153f4130943114232d6e977357632e0fb57719c99c05c7074df04fe58d3bac9cd66500211a02f0fe728 SHA512 25ed03b2600c063ef3a75d6115e34451459bdeba80488c937e1f0caeb30412211b021387d682010d7f318d427322f6582e0e2dbc81097a7bfa014a27856dd04a +DIST virtio-bindings-0.1.0.crate 20293 BLAKE2B e511229ae22a53dd9cd1d2aeb235026c139d11ccd2e528eb78848e3586067c027d6f1b7d538276f74548d0949fe60a5d052caeb7f693b3d7d6d8baeb3ab550cd SHA512 ba27ff5790528942b1ed4a20851d426f0a66415970b98957b4bdfc5d3505897874ee9c0242be16d55964799b790f2acd76a1f0c38aa90aff3e3c337584d357ec +DIST virtio-queue-0.7.0.crate 146031 BLAKE2B 8fb2970e87051787e8891393edb345e3b0045681da5d07d5f75c6695580e57faf172c469a8f14b785c5d622e699613696e3544f8a4d06fa66e58a3546c4c191f SHA512 45891b3411915999d1758b0825699ea07912f83cca5802e56d33023378c268d29d77c3a7b52c0a0828b2256ead0ef6264753db2a78a8f571eb9787b879cc544a +DIST virtiofsd-v1.5.1.tar.gz 112534 BLAKE2B 52c86ab9d4842ecd496aed3f09a98be96d7ee0eda43a2519eb066be1f648963b155386f9eac1a1c878c12fd05d928f88700c6a7a840c0f34dfa6f86caab15fec SHA512 a50b3fac6d5eafc691ef4fc8808acb4dc03261f01623f6675a234d457231f96181e9cf6c8ac68b4fe1b1c97257faf56bc6d0c2776142c9dbfe82b4e9bde0e34a +DIST vm-memory-0.10.0.crate 68989 BLAKE2B 469a22ecf49d00b44c58b11856db46be02ec7abb783a451ed7f57080989d63d2ce1d66bec3ab8f2b92da8c2e8c685a6d5f652570cff9a48368eca037bc2ed6d9 SHA512 7bdeb565f4bdd6b0df39fb753c97addd18a51b5d788076f60f98cb8d532612a6d41c533f8d3bd3ffcb0304f045fe8b1f69762efdf29f957b27959b6be66420ea +DIST vmm-sys-util-0.11.1.crate 56848 BLAKE2B c5de8659cfe17914f008e5f74e45929421e2f8cfd9a801a8a5478e7934f94ce299aa91b9951374a6cb9f94a8311f76ae841b87170685e3d5250337da42d6629a SHA512 7395b730bf5e42ca75a73b2d75b2f624958474549c9ee63d4fc63a5a81c51b1e0c370e79d4290b4d6768499498a2941989845d5816c76e3eb1f5b43fdd0c8286 +DIST winapi-0.3.9.crate 1200382 BLAKE2B cb5799749ccd935ea2d7068d953cecf19f543d9db7dc16ad4584bb7005373ada34937a3ced7225544d8bc765da599911c7a3190efefb3a25b7c1bb7123b4f673 SHA512 ff8b7b78065f3d8999ec03c725a0460ebc059771bf071c7a3df3f0ecd733edf3b0a2450024d4e24e1aedddaecd9038ce1376c0d8bbf45132068cf45cf4a53a97 +DIST winapi-i686-pc-windows-gnu-0.4.0.crate 2918815 BLAKE2B 4d357e4d30f9552972170d65b9a5358b69c46a3e772fe05efc22f3d4ffc1caeeaad7aacdc7abd503a7ad0545f8bd7d22bf351dcb6df76f812fa4d45c34d65df0 SHA512 a672ccefd0730a8166fef1d4e39f9034d9ae426a3f5e28d1f4169fa5c5790767693f281d890e7804773b34acdb0ae1febac33cde8c50c0044a5a6152c7209ec2 +DIST winapi-util-0.1.5.crate 10164 BLAKE2B fc800aceae5249a858c806c3e969ef2545766099872d856ebee51c883d9acf1122278db9607d50ca53eac351502b700fd2463900932d342240f97f683d517963 SHA512 7baeb661f397c4693dfa001fdc774b323c51a7c55caad40f2de5112a1cefd1d6151e3df41fa4ee193460a5905917c83d2b1de5fa10b4bd014ad96690af95c0fd +DIST winapi-x86_64-pc-windows-gnu-0.4.0.crate 2947998 BLAKE2B 2ad1ea8b5fa07d544e910ccba043ae925269b76b26c9da356305b34b86741dd8b9aff0b9ffe3d562db4fcd7d7c46a11ce9e3168b782b1d89ae6881742b7ede82 SHA512 4a654af6a5d649dc87e00497245096b35a2894ae66f155cb62389902c3b93ddcc5cf7d0d8b9dd97b291d2d80bc686af2298e80abef6ac69883f4a54e79712513 +DIST windows-sys-0.42.0.crate 3006791 BLAKE2B 7a0962364ecc416cf0ae7e49cce1298a12d819003e488f6e77aff1a52710f00378638b6a05db5557a031e1b75659587657971ddc63eaab35495133762f99a7b2 SHA512 b07b119688f3e3ad234d36979947f34e8e19988fb62101afbe18ec8afc9c8a4261128939df8bbb849d5c5982422cb4c50dbcba70f2bf401fbb7c605df1b2b354 +DIST windows_aarch64_gnullvm-0.42.1.crate 362795 BLAKE2B 722b45789bcd1d973803b327d44072fbf9c904d448e29ae9e56d2f9d1a3e9b64e06883e4bf5ebf141f1e924235858fd1472e07a744cc5b16a0a3a4fc8ec8f6d4 SHA512 51eb9fa7ea441a9fef590c12576a8bbef74932d40fafde8f9e3a28f2734ce5aee6dd5fa478fb3847443241c8c392bb4abbc6014c71260bf924431779f7184f73 +DIST windows_aarch64_msvc-0.42.1.crate 664655 BLAKE2B f4a060b802016a6d77a8ea6ac44c35dfec384acef9c45f932e2b6aca9d3ac48ae031f99e5b58f270d6020b8796e9dd06f7e8ffa7cc5610ea3f69181c2be7adc8 SHA512 f6412bae4b041201ef94e5a159ce90fd6b09816350204d4f573c1afdfb0a6d62d7887fbc2e416b40ec1d4478db521be492edf4703d87482d6d0006a51b827538 +DIST windows_i686_gnu-0.42.1.crate 733428 BLAKE2B c1ca24973aca06b255d9317735cca7a13f7f69293da52dad41df43a5cdf48aac3d40d8b6765cf564905fb71cb548308d757f01167efe7a61da7bd2e2a7080f0a SHA512 61c3271b07df1d4585c875d27cf1686c8f595dcbb79626e8d15ff47228f7b7a4556d3d994566ccceee0d6795a4c76767f85f4579282fc9eed731e04c7e193a57 +DIST windows_i686_msvc-0.42.1.crate 722583 BLAKE2B e03978daa0ac95d7bd9f594b28360dab647a1fe525f0ae4b44e6842d93c5674d9f202e8bbca99a0d30ecf7d138af0c48eec8e69e08bf285db51e32bcf83a2c54 SHA512 8afa4f92cb7bd96d4fdbefbd8e7bcaa37dee52224d5d8b950c5a537d3bb805bf9781097b8bd44d96e8b62b1290e3a3020557502fa3b357a53df6fea36b318932 +DIST windows_x86_64_gnu-0.42.1.crate 697614 BLAKE2B 3cef0a3da3ce142bbdf932dbb54eb6473070c5722c9ec791dc4077efe2d774d51f8b3d06b3321f8f21cc49764f44d54b3432ee7a0d9376925b422b197f5d557e SHA512 f4c16b587fe407dee1f39df029c52302a0fbd5f519816a8d974fe9c2f928043b14037c701c0f3c9cf2e5c765e82430fd4b71615fe63a66a88159f7b15506f892 +DIST windows_x86_64_gnullvm-0.42.1.crate 362788 BLAKE2B fff81e63b86ad04ce22ad3e05ec4cc02c0b791384c93bafb50832f6db9cb7fd9301ad3845339a08dd8cadac1d59f3e8dc9d5f56d7a987989dbfc16b9131af67b SHA512 8cc988b5995a4726bb7518b7fccff528274ad9b2b0160fe247eb240f9ced10db95afe7bff91bfc5a08ebd8237b6821e4a4abad1ff9da45022f1ce7e7586bcf05 +DIST windows_x86_64_msvc-0.42.1.crate 664606 BLAKE2B 6c460cfa392aad0d11add200d652a42ee1a60052570527c4e85405f765255375729d4e26287f5246dcad65fa89ccadea23c5135171b311e6da5027e33149c547 SHA512 a651b1a34f101125f929c1d1f5e933691c7a5c19d0bb0c501fb6812236d2771805428e3bd5e05be7d72715595f5fc9e7978dd7934e5d92e9b78a41c2ece695b2 diff --git a/app-emulation/virtiofsd/metadata.xml b/app-emulation/virtiofsd/metadata.xml new file mode 100644 index 000000000000..1a78f9677df7 --- /dev/null +++ b/app-emulation/virtiofsd/metadata.xml @@ -0,0 +1,15 @@ + + + + + michal.privoznik@gmail.com + Michal Privoznik + + + virtualization@gentoo.org + Gentoo Virtualization Project + + + virtio-fs/virtiofsd + + diff --git a/app-emulation/virtiofsd/virtiofsd-1.5.1.ebuild b/app-emulation/virtiofsd/virtiofsd-1.5.1.ebuild new file mode 100644 index 000000000000..3352892e3b9a --- /dev/null +++ b/app-emulation/virtiofsd/virtiofsd-1.5.1.ebuild @@ -0,0 +1,126 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +CRATES=" + aho-corasick-0.7.18 + ansi_term-0.12.1 + arc-swap-1.5.0 + atty-0.2.14 + autocfg-1.1.0 + bitflags-1.3.2 + capng-0.2.2 + cc-1.0.78 + cfg-if-1.0.0 + clap-2.34.0 + env_logger-0.10.0 + errno-0.2.8 + errno-dragonfly-0.1.2 + error-chain-0.12.4 + futures-0.3.21 + futures-channel-0.3.21 + futures-core-0.3.21 + futures-executor-0.3.21 + futures-io-0.3.21 + futures-macro-0.3.21 + futures-sink-0.3.21 + futures-task-0.3.21 + futures-util-0.3.21 + heck-0.3.3 + hermit-abi-0.1.19 + hermit-abi-0.2.6 + hostname-0.3.1 + humantime-2.1.0 + io-lifetimes-1.0.4 + is-terminal-0.4.2 + itoa-1.0.2 + lazy_static-1.4.0 + libc-0.2.139 + libseccomp-sys-0.2.1 + linux-raw-sys-0.1.4 + log-0.4.17 + match_cfg-0.1.0 + memchr-2.5.0 + num_cpus-1.13.1 + num_threads-0.1.6 + pin-project-lite-0.2.9 + pin-utils-0.1.0 + proc-macro-error-1.0.4 + proc-macro-error-attr-1.0.4 + proc-macro2-1.0.40 + quote-1.0.20 + regex-1.6.0 + regex-syntax-0.6.27 + rustix-0.36.7 + slab-0.4.7 + strsim-0.8.0 + structopt-0.3.26 + structopt-derive-0.4.18 + syn-1.0.98 + syslog-6.0.1 + termcolor-1.1.3 + textwrap-0.11.0 + time-0.3.11 + unicode-ident-1.0.2 + unicode-segmentation-1.9.0 + unicode-width-0.1.9 + vec_map-0.8.2 + version_check-0.9.4 + vhost-0.6.0 + vhost-user-backend-0.8.0 + virtio-bindings-0.1.0 + virtio-queue-0.7.0 + vm-memory-0.10.0 + vmm-sys-util-0.11.1 + winapi-0.3.9 + winapi-i686-pc-windows-gnu-0.4.0 + winapi-util-0.1.5 + winapi-x86_64-pc-windows-gnu-0.4.0 + windows-sys-0.42.0 + windows_aarch64_gnullvm-0.42.1 + windows_aarch64_msvc-0.42.1 + windows_i686_gnu-0.42.1 + windows_i686_msvc-0.42.1 + windows_x86_64_gnu-0.42.1 + windows_x86_64_gnullvm-0.42.1 + windows_x86_64_msvc-0.42.1 +" + +inherit cargo + +DESCRIPTION="Shared file system for virtual machines" +HOMEPAGE="https://virtio-fs.gitlab.io/" + +if [[ ${PV} = *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://gitlab.com/virtio-fs/virtiofsd.git" + EGIT_BRANCH="main" +else + SRC_URI="https://gitlab.com/virtio-fs/virtiofsd/-/archive/v${PV}/virtiofsd-v${PV}.tar.gz + $(cargo_crate_uris ${CRATES})" + KEYWORDS="~amd64" + S="${WORKDIR}/${PN}-v${PV}" +fi + +LICENSE="Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD MIT Unicode-DFS-2016 Unlicense" +SLOT="0" + +DEPEND=" + sys-libs/libcap-ng + sys-libs/libseccomp +" +RDEPEND="${DEPEND}" + +# rust does not use *FLAGS from make.conf, silence portage warning +# update with proper path to binaries this crate installs, omit leading / +QA_FLAGS_IGNORED="usr/bin/${PN}" + +src_unpack() { + if [[ "${PV}" == *9999* ]]; then + git-r3_src_unpack + cargo_live_src_unpack + else + cargo_src_unpack + fi +} diff --git a/app-emulation/virtiofsd/virtiofsd-9999.ebuild b/app-emulation/virtiofsd/virtiofsd-9999.ebuild new file mode 100644 index 000000000000..3352892e3b9a --- /dev/null +++ b/app-emulation/virtiofsd/virtiofsd-9999.ebuild @@ -0,0 +1,126 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +CRATES=" + aho-corasick-0.7.18 + ansi_term-0.12.1 + arc-swap-1.5.0 + atty-0.2.14 + autocfg-1.1.0 + bitflags-1.3.2 + capng-0.2.2 + cc-1.0.78 + cfg-if-1.0.0 + clap-2.34.0 + env_logger-0.10.0 + errno-0.2.8 + errno-dragonfly-0.1.2 + error-chain-0.12.4 + futures-0.3.21 + futures-channel-0.3.21 + futures-core-0.3.21 + futures-executor-0.3.21 + futures-io-0.3.21 + futures-macro-0.3.21 + futures-sink-0.3.21 + futures-task-0.3.21 + futures-util-0.3.21 + heck-0.3.3 + hermit-abi-0.1.19 + hermit-abi-0.2.6 + hostname-0.3.1 + humantime-2.1.0 + io-lifetimes-1.0.4 + is-terminal-0.4.2 + itoa-1.0.2 + lazy_static-1.4.0 + libc-0.2.139 + libseccomp-sys-0.2.1 + linux-raw-sys-0.1.4 + log-0.4.17 + match_cfg-0.1.0 + memchr-2.5.0 + num_cpus-1.13.1 + num_threads-0.1.6 + pin-project-lite-0.2.9 + pin-utils-0.1.0 + proc-macro-error-1.0.4 + proc-macro-error-attr-1.0.4 + proc-macro2-1.0.40 + quote-1.0.20 + regex-1.6.0 + regex-syntax-0.6.27 + rustix-0.36.7 + slab-0.4.7 + strsim-0.8.0 + structopt-0.3.26 + structopt-derive-0.4.18 + syn-1.0.98 + syslog-6.0.1 + termcolor-1.1.3 + textwrap-0.11.0 + time-0.3.11 + unicode-ident-1.0.2 + unicode-segmentation-1.9.0 + unicode-width-0.1.9 + vec_map-0.8.2 + version_check-0.9.4 + vhost-0.6.0 + vhost-user-backend-0.8.0 + virtio-bindings-0.1.0 + virtio-queue-0.7.0 + vm-memory-0.10.0 + vmm-sys-util-0.11.1 + winapi-0.3.9 + winapi-i686-pc-windows-gnu-0.4.0 + winapi-util-0.1.5 + winapi-x86_64-pc-windows-gnu-0.4.0 + windows-sys-0.42.0 + windows_aarch64_gnullvm-0.42.1 + windows_aarch64_msvc-0.42.1 + windows_i686_gnu-0.42.1 + windows_i686_msvc-0.42.1 + windows_x86_64_gnu-0.42.1 + windows_x86_64_gnullvm-0.42.1 + windows_x86_64_msvc-0.42.1 +" + +inherit cargo + +DESCRIPTION="Shared file system for virtual machines" +HOMEPAGE="https://virtio-fs.gitlab.io/" + +if [[ ${PV} = *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://gitlab.com/virtio-fs/virtiofsd.git" + EGIT_BRANCH="main" +else + SRC_URI="https://gitlab.com/virtio-fs/virtiofsd/-/archive/v${PV}/virtiofsd-v${PV}.tar.gz + $(cargo_crate_uris ${CRATES})" + KEYWORDS="~amd64" + S="${WORKDIR}/${PN}-v${PV}" +fi + +LICENSE="Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD MIT Unicode-DFS-2016 Unlicense" +SLOT="0" + +DEPEND=" + sys-libs/libcap-ng + sys-libs/libseccomp +" +RDEPEND="${DEPEND}" + +# rust does not use *FLAGS from make.conf, silence portage warning +# update with proper path to binaries this crate installs, omit leading / +QA_FLAGS_IGNORED="usr/bin/${PN}" + +src_unpack() { + if [[ "${PV}" == *9999* ]]; then + git-r3_src_unpack + cargo_live_src_unpack + else + cargo_src_unpack + fi +} diff --git a/app-emulation/vkd3d-proton/Manifest b/app-emulation/vkd3d-proton/Manifest index 27dd5d641096..ff20d740ee09 100644 --- a/app-emulation/vkd3d-proton/Manifest +++ b/app-emulation/vkd3d-proton/Manifest @@ -1,9 +1,12 @@ +DIST vkd3d-proton-08909d9856.tar.gz 1424776 BLAKE2B cb29a927b28980283c96d9a1ac99ef98570b72edbec147314b2884e2d8c78c23b8b7cdab4530b9098e55a25801a9fad3e5a8ae48695b994c226d05fd380c905b SHA512 ca79dfccf638f65546f8654bbb3819b6b72e8a6fd2cf9c5d697444b91244e96d55d059c971afc6b0709c762575a27024862a482dc0159a58804f7d4072746660 DIST vkd3d-proton-2.6.tar.gz 1271948 BLAKE2B 02d2574a66614613748fe3471a6fd5aac2650fdae15a17b17ea2ed028fa53a0579b866e7240036a26108afc343395826474bb99e015b9299c2abec811bb872ab SHA512 6f27d213652e2380a9ba4534ac9ffe4b752b4608fbc2e8acd273fa151ab19ad0b132e3436384d2b8591cd1a59f0b69d342c893dc3a64be85188b5e3274bcf3f1 DIST vkd3d-proton-2.8.tar.gz 1435183 BLAKE2B 8b265e6dac1dd0ed6377ea6bc0ecffa7eccb8360f890bf2c996395b9db90e132ede9bddf6e889a9302466cccdcd2000f1e7ad9ece740b797c44f081b7ca1bb98 SHA512 d708fe62d64487b4430862b93913ba45f2889268c5efb9b1dc69fd48a665fcffc06a7bb91afc13b06a35fd82005a3115dc85f1de74d65f6958fd6f0c02a54007 +DIST vkd3d-proton-dxil-spirv-9e2c26d15c.tar.gz 698285 BLAKE2B 034627322183771c67ac7f927f3883bb186ee1f17657e825f542331dcc4d907d65c764dd6e01603ac77d1205c92500be016a6f0df1e742b6e71f9a189d8287da SHA512 42e385f33b97444bf02a6f662094c256b5f92d5fd444fd3545a52b55aa30e23db2d794a62543de97baaf59cc4b6a1e8429d10b88c01c4bd0d71f5e086319b2d1 DIST vkd3d-proton-dxil-spirv-b537bbb91b.tar.gz 631130 BLAKE2B 99f40c5efde87d0af86542b427e5b0429be68ca69ba0c2b6d10a821811756d8dadff4449f268ae404f8ace09a91b3e8aaa135e534a77c0239e58c1a970a044cc SHA512 3c20090b7a1b53c30fd4967622fc7384e1bcc504c30d8075068b87dad1bd2c6f4a12459bf42e61bf76b9dd454ec17a9d529f74ab0d5583627e966d94bb341dc3 DIST vkd3d-proton-dxil-spirv-babf511d4c.tar.gz 695011 BLAKE2B 49e13065037edec80815b19907664d9681bc191303032db2e1678fbff5e144846c2ee267fdf5c1d4c31a1a30f2c14275f8e276a771253fabb8bbea8936be4eb4 SHA512 b310e4e856b4571ce13cce8539bd1640c7578b132558c009fcc04c24b4b10a86b620542891442dd81feaa8f6ad63d2d05021ca228d1c5f46eebe384fdb30f77e DIST vkd3d-proton-spirv-headers-1d31a10040.tar.gz 445679 BLAKE2B 3dac88269df92428fd93ca187eb417ec0156ff0b24200daf85526aaa92c30ba8743102764e20c47d783ed0704fa690c1bf60944ef81bbdd296890dde5fb9fcaa SHA512 2536619cd7854954892dbb5ab5cd97e4e95fe3f5c121c4b2022426ae734fc20c1ebadbae1da7689f5ca18397075c54e4f16ad525b8ee873c4b0ffdc07aaacc03 DIST vkd3d-proton-spirv-headers-87d5b782be.tar.gz 439180 BLAKE2B 9c64a1b7aa408172bb57b38ca0e3d31221c7dfecfcd9afc77449c14e76f60f7436f1a54a794bf4959f4575f177e1024621c6ff696f7fb19b545877e0a527031c SHA512 d6ce02e53c259e508d1d72d81cc6aa6b3019e7ecd6a8878d81d8681d9734756f66c762ebd4b8b1d0f9fbb7a8f1f18d72aeb27c56822d810aca5a3e53c51c1ef6 DIST vkd3d-proton-spirv-headers-ae217c1780.tar.gz 415130 BLAKE2B 0c6444c4c1cb43b9c69757d7c2257ce2fe1bc6be308341f3189766f120994e4920bc738b737d9eefc299359dab568fb8809782e3663dd589c0e4d13aecb8873a SHA512 02cf1d63b29e48ef0efe489eb32237ba2f9f4bf58a182b00dc96aab18faba94de79283398e9e945cd81130f83fff228c59b04e496716ea9ccc148a5f4465282c DIST vkd3d-proton-vulkan-headers-83e1a9ed8c.tar.gz 1299014 BLAKE2B 0b1e635aaa6eebec3525b13698a064e0e5b8a78829a772cbe9e1890148059bf396bc5c830e8d6ee3070a3343775991642565283994c65acfa0d82a91590b7d84 SHA512 ecb2158cad55edb4ba069383668f3b311a2f6aa6777b5b7ed94795d454622426ee34fee52b13c97d2f07b5b2f965815ee61a0203b76a0b0d2c708a4786d06b96 +DIST vkd3d-proton-vulkan-headers-9f93cbe76a.tar.gz 1811251 BLAKE2B 6993e6e7301925a949a8ee18d7d0dec48adc8d4c66bb759929891241b64dd8f4bf4e563e86b40020123d5eced74b3ab02b86f3488b7d782c3cd4536079a3ddec SHA512 d0a157a560b58b676bbef115097423a4ab22928cd08a1010d2f3695bbf5fe3af79653b8db6ec00fa061ff46010749dc13526488f53cac6860af2a1918d873a19 DIST vkd3d-proton-vulkan-headers-b7a86d3b2b.tar.gz 1753074 BLAKE2B a2588e84edd09a04c3622a95310acc781432d6a962c69c1f5a709b65e2bfeb5196d9d217b0d261532c4b5c1424f13ff64d33728303c989fdbce3048741add486 SHA512 377ada7a9721c225067c6548475109cf4ad1f3d677b835fbe7a4bc7520621acd816cc59d4b75b23bc28f25891b556792cf853b98c0dfb915856774ff27eb6aba diff --git a/app-emulation/vkd3d-proton/vkd3d-proton-2.8_p20230207.ebuild b/app-emulation/vkd3d-proton/vkd3d-proton-2.8_p20230207.ebuild new file mode 100644 index 000000000000..58f1162cda67 --- /dev/null +++ b/app-emulation/vkd3d-proton/vkd3d-proton-2.8_p20230207.ebuild @@ -0,0 +1,179 @@ +# Copyright 2022-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MULTILIB_COMPAT=( abi_x86_{32,64} ) +inherit flag-o-matic meson-multilib toolchain-funcs + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/HansKristian-Work/vkd3d-proton.git" + EGIT_SUBMODULES=( + # uses hacks / recent features and easily breaks, keep bundled headers + # (also cross-compiled and -I/usr/include is troublesome) + subprojects/{SPIRV,Vulkan}-Headers + subprojects/dxil-spirv + subprojects/dxil-spirv/third_party/spirv-headers # skip cross/tools + ) +else + HASH_VKD3D=08909d98565065994612e529feb0cad04e498a8e # matches proton-8.0.1c + HASH_DXIL=9e2c26d15c0eeac91fb8c6dda3aff8f6a602c0b6 + HASH_SPIRV=1d31a100405cf8783ca7a31e31cdd727c9fc54c3 + HASH_SPIRV_DXIL=87d5b782bec60822aa878941e6b13c0a9a954c9b + HASH_VULKAN=9f93cbe76abe9f6cb4a36df10b08fa3b78ae0027 + SRC_URI=" + https://github.com/HansKristian-Work/vkd3d-proton/archive/${HASH_VKD3D}.tar.gz + -> ${PN}-${HASH_VKD3D::10}.tar.gz + https://github.com/HansKristian-Work/dxil-spirv/archive/${HASH_DXIL}.tar.gz + -> ${PN}-dxil-spirv-${HASH_DXIL::10}.tar.gz + https://github.com/KhronosGroup/SPIRV-Headers/archive/${HASH_SPIRV}.tar.gz + -> ${PN}-spirv-headers-${HASH_SPIRV::10}.tar.gz + https://github.com/KhronosGroup/SPIRV-Headers/archive/${HASH_SPIRV_DXIL}.tar.gz + -> ${PN}-spirv-headers-${HASH_SPIRV_DXIL::10}.tar.gz + https://github.com/KhronosGroup/Vulkan-Headers/archive/${HASH_VULKAN}.tar.gz + -> ${PN}-vulkan-headers-${HASH_VULKAN::10}.tar.gz" + S="${WORKDIR}/${PN}-${HASH_VKD3D}" + KEYWORDS="-* ~amd64 ~x86" +fi + +DESCRIPTION="Fork of VKD3D, development branches for Proton's Direct3D 12 implementation" +HOMEPAGE="https://github.com/HansKristian-Work/vkd3d-proton/" + +LICENSE="LGPL-2.1+ Apache-2.0 MIT" +SLOT="0" +IUSE="+abi_x86_32 crossdev-mingw debug extras" + +BDEPEND=" + dev-util/glslang + !crossdev-mingw? ( dev-util/mingw64-toolchain[${MULTILIB_USEDEP}] )" + +pkg_pretend() { + [[ ${MERGE_TYPE} == binary ]] && return + + if use crossdev-mingw && [[ ! -v MINGW_BYPASS ]]; then + local tool=-w64-mingw32-g++ + for tool in $(usev abi_x86_64 x86_64${tool}) $(usev abi_x86_32 i686${tool}); do + if ! type -P ${tool} >/dev/null; then + eerror "With USE=crossdev-mingw, it is necessary to setup the mingw toolchain." + eerror "For instructions, please see: https://wiki.gentoo.org/wiki/Mingw" + use abi_x86_32 && use abi_x86_64 && + eerror "Also, with USE=abi_x86_32, will need both i686 and x86_64 toolchains." + die "USE=crossdev-mingw is enabled, but ${tool} was not found" + elif [[ ! $(LC_ALL=C ${tool} -v 2>&1) =~ "Thread model: posix" ]]; then + eerror "${PN} requires GCC to be built with --enable-threads=posix" + eerror "Please see: https://wiki.gentoo.org/wiki/Mingw#POSIX_threads_for_Windows" + die "USE=crossdev-mingw is enabled, but ${tool} does not use POSIX threads" + fi + done + tool=-w64-mingw32-widl + for tool in $(usev abi_x86_64 x86_64${tool}) $(usev abi_x86_32 i686${tool}); do + if ! type -P widl >/dev/null && ! type -P ${tool} >/dev/null; then + eerror "With USE=crossdev-mingw, you need to provide the widl compiler by either" + eerror "building crossdev mingw64-runtime with USE=tools or installing wine." + die "USE=crossdev-mingw is set but neither widl nor ${tool} were found" + fi + done + fi +} + +src_prepare() { + if [[ ${PV} != 9999 ]]; then + rmdir subprojects/{{SPIRV,Vulkan}-Headers,dxil-spirv} || die + mv ../dxil-spirv-${HASH_DXIL} subprojects/dxil-spirv || die + mv ../SPIRV-Headers-${HASH_SPIRV} subprojects/SPIRV-Headers || die + mv ../Vulkan-Headers-${HASH_VULKAN} subprojects/Vulkan-Headers || die + + # dxil and vkd3d's spirv headers currently mismatch and incompatible + rmdir subprojects/dxil-spirv/third_party/spirv-headers || die + mv ../SPIRV-Headers-${HASH_SPIRV_DXIL} \ + subprojects/dxil-spirv/third_party/spirv-headers || die +# ln -s ../../../SPIRV-Headers/include \ +# subprojects/dxil-spirv/third_party/spirv-headers || die + fi + + default + + sed -i "/^basedir=/s|=.*|=${EPREFIX}/usr/lib/${PN}|" setup_vkd3d_proton.sh || die + + if [[ ${PV} != 9999 ]]; then + # without .git, meson sets vkd3d_build as 0x${PV} leading to failure + sed -i "s/@VCS_TAG@/${HASH_VKD3D::15}/" vkd3d_build.h.in || die + sed -i "s/@VCS_TAG@/${HASH_VKD3D::7}/" vkd3d_version.h.in || die + fi +} + +src_configure() { + use crossdev-mingw || PATH=${BROOT}/usr/lib/mingw64-toolchain/bin:${PATH} + + if [[ ${CHOST} != *-mingw* ]]; then + if [[ ! -v MINGW_BYPASS ]]; then + unset AR CC CXX RC STRIP WIDL + filter-flags '-fstack-clash-protection' #758914 + filter-flags '-fstack-protector*' #870136 + filter-flags '-fuse-ld=*' + filter-flags '-mfunction-return=thunk*' #878849 + fi + + CHOST_amd64=x86_64-w64-mingw32 + CHOST_x86=i686-w64-mingw32 + CHOST=$(usex x86 ${CHOST_x86} ${CHOST_amd64}) + + # preferring meson eclass' cross file over upstream's but, unlike + # dxvk, we lose static options in the process (from build-win*.txt) + append-ldflags -static -static-libgcc -static-libstdc++ + + strip-unsupported-flags + fi + + multilib-minimal_src_configure +} + +multilib_src_configure() { + # multilib's ${CHOST_amd64}-gcc -m32 is unusable with crossdev, + # unset again so meson eclass will set ${CHOST}-gcc + others + use crossdev-mingw && [[ ! -v MINGW_BYPASS ]] && unset AR CC CXX STRIP WIDL + + # prefer ${CHOST}'s widl (mingw) over wine's as used by upstream if + # possible, but eclasses don't handle that so setup machine files + local widl=$(tc-getPROG WIDL widl) + use amd64 && [[ ${widl} == widl && ${ABI} == x86 ]] && widl="widl','-m32" + printf "[binaries]\nwidl = ['${widl}']\n" > "${T}"/widl.${ABI}.ini || die + + local emesonargs=( + --prefix="${EPREFIX}"/usr/lib/${PN} + --{bin,lib}dir=x${ABI: -2} + --{cross,native}-file="${T}"/widl.${ABI}.ini + $(meson_use {,enable_}extras) + $(meson_use debug enable_trace) + $(usev !debug --strip) # portage won't strip .dll, so allow it here + -Denable_tests=false # needs wine/vulkan and is intended for manual use + ) + + meson_src_configure +} + +multilib_src_install_all() { + dobin setup_vkd3d_proton.sh + einstalldocs + + find "${ED}" -type f -name '*.a' -delete || die +} + +pkg_postinst() { + if [[ ! ${REPLACING_VERSIONS} ]]; then + elog "To enable ${PN} on a wine prefix, you can run the following command:" + elog + elog " WINEPREFIX=/path/to/prefix setup_vkd3d_proton.sh install --symlink" + elog + elog "See ${EROOT}/usr/share/doc/${PF}/README.md* for details." + fi + + if [[ ! ${REPLACING_VERSIONS##* } ]] || + ver_test ${REPLACING_VERSIONS##* } -lt 2.7 + then + elog + elog ">=${PN}-2.7 requires drivers and Wine to support vulkan-1.3, meaning:" + elog ">=wine-*-7.1 (or >=wine-proton-7.0), and >=mesa-22.0 (or >=nvidia-drivers-510)" + fi +} diff --git a/app-emulation/vkd3d/vkd3d-1.7.ebuild b/app-emulation/vkd3d/vkd3d-1.7.ebuild index cea4a98c8e5e..0a6c10a184bc 100644 --- a/app-emulation/vkd3d/vkd3d-1.7.ebuild +++ b/app-emulation/vkd3d/vkd3d-1.7.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://dl.winehq.org/vkd3d/source/${P}.tar.xz" LICENSE="LGPL-2.1+" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="ncurses spirv-tools" RESTRICT="test" #838655 diff --git a/app-emulation/wine-mono/Manifest b/app-emulation/wine-mono/Manifest index 9308ad8eae21..f7650b02b715 100644 --- a/app-emulation/wine-mono/Manifest +++ b/app-emulation/wine-mono/Manifest @@ -4,3 +4,5 @@ DIST wine-mono-7.3.1-x86.msi 86930432 BLAKE2B f43b605ab7b07a7b4d8d4675297af6e827 DIST wine-mono-7.3.1-x86.tar.xz 43216532 BLAKE2B bc00f41d2e9e88c0a687fad6bdd48e9a836f3d7369747602665691ca3e430c895655e9c5e9ef955a5cf45a96818b6858bc3cc93d90c3d7a49f8d8f4ff824d45a SHA512 a2c8d10d9b34fd7775eeddb6494b84f2f04e6a2f21d93940dc902434b189d43bdfdcd198baf8133cda8b17c2bc25ee84538e12a32027cdd66da9ab029eed6777 DIST wine-mono-7.4.0-x86.msi 87334912 BLAKE2B c0b778f9db59d1a2917631f1d6ca1a1798972a6a42e27975da78f3a35b77018a99228d7d95e5640c57618533a6b01bf2252859e3e978e2aa8dbdc8cd62afcc28 SHA512 cf35513b368324487c387d4339e5b05a90c4825b25ea603140524b79e69786ccc20dfb898213a9548c0313c0b0e4b160acb88364e4b280dd6712d185d9e5ae57 DIST wine-mono-7.4.0-x86.tar.xz 45404344 BLAKE2B 3a74106b9b3f21a88c2435f7988d66a54e08beea931a0ce0df6431c21add4ee2685bf9c9cb2404ee1a685736d61b1aee3cdd507130e5c5dddba7e506a2ff18bb SHA512 108cb5d969e84deeda3d2b11dba7cd73853fc3b088ecf2bcdb9bc5c5bbaaff03e72cd4f485d1935eda43cdd95b927886441be1d2204edeaee1ff1fea75735d22 +DIST wine-mono-7.4.1-x86.msi 87339008 BLAKE2B 571469f21f4b2f4483172ef88cd973f94dd09eed3b9312775339711901fc5cd753944802a10e35c22f68b8685ae10f782e005f6ae9fcf7afc7b4da039a732b34 SHA512 ac2b398ce4c58b35da05d6d002f04cbdf7c615a9058f3db8e00f6c10166be84d90fc09ffa7e44f171e97bd91b741855f1547036d2eca2a688a92e3ed4297762a +DIST wine-mono-7.4.1-x86.tar.xz 44433444 BLAKE2B 28adbcca630698e74e455fbe37b8cd60c3d836c503db6a2df20e4db3e12f549a5d1fae6a4c0ccd6068e2667f700fbfe09858b95f156ad8d660ef3804773179a0 SHA512 2d0b231ee6e34d23f1e2ae0d7995dd31caab352f30816302743f884f5da56a071e931dabb53f813dd5389c82bdab70057b1d5c6430f1f88ace93789e41962cb6 diff --git a/app-emulation/wine-mono/wine-mono-7.4.1.ebuild b/app-emulation/wine-mono/wine-mono-7.4.1.ebuild new file mode 100644 index 000000000000..96896ce732cf --- /dev/null +++ b/app-emulation/wine-mono/wine-mono-7.4.1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Replacement for the .NET runtime and class libraries in Wine" +HOMEPAGE="https://wiki.winehq.org/Mono" +SRC_URI=" + shared? ( https://github.com/madewokherd/wine-mono/releases/download/${P}/${P}-x86.tar.xz ) + !shared? ( https://github.com/madewokherd/wine-mono/releases/download/${P}/${P}-x86.msi )" +S="${WORKDIR}" + +LICENSE="BSD-2 GPL-2 LGPL-2.1 MIT MPL-1.1" +SLOT="${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="+shared" + +src_install() { + insinto /usr/share/wine/mono + + if use shared; then + doins -r ${P} + else + doins "${DISTDIR}"/${P}-x86.msi + fi +} diff --git a/app-emulation/wine-proton/Manifest b/app-emulation/wine-proton/Manifest index fe670f488183..0829b760d5f8 100644 --- a/app-emulation/wine-proton/Manifest +++ b/app-emulation/wine-proton/Manifest @@ -1,2 +1,3 @@ DIST proton-wine-7.0-5.tar.gz 45724439 BLAKE2B d5ad4f00ca658b31c562c2ff4eb5ae33707126eee44ccfd9f33084ab5d184743034541efe3f9d18eb2a6941111da4c5134555f93769e8370b118b6f04e00ae1e SHA512 b16ace9c0bfa6d2685ea53617be2bba7e82c5c8da604f9e188bf782219785cfaed4317578c4314f2bde89d363a2e115f3bceeaa69d4a85f078a5fdb1ec64d33b DIST proton-wine-7.0-6.tar.gz 45780326 BLAKE2B f140fcfdd1a47904c34a49d0795fa3326d7cf0d3fac8d6c2ef2a4926181a46223f43a2d1ca96c543e800c8c46b2a3cc51ae306a029d68a42608876e869e177d5 SHA512 793bbe2b23042301a1b518717d78cfff01eaffa0388883d010659a45779b9136d33cfac63f0c3fbb1e458953a954b423eb70ac4fa87633352267db890ceb2fef +DIST proton-wine-8.0-1c.tar.gz 48204851 BLAKE2B 5a746cf4d10e605ce30e93a5116e73c4ae893a6ccb105984afa3e65e0ec64780ca58462fe5fc89e51aef0499fdc52be9756254878d8f7f28160a1cf4ed0ee3a9 SHA512 67dbd73287409aaecd5cfab29f79ddf455bbbd25e79289c66828bd4f0fac3003e68afe3e65ea39e18e2390b825342a52285c4be1368928606628b72a274b5456 diff --git a/app-emulation/wine-proton/files/README.gentoo b/app-emulation/wine-proton/files/README.gentoo index 5b24fb4b7b8f..a6354c92ee53 100644 --- a/app-emulation/wine-proton/files/README.gentoo +++ b/app-emulation/wine-proton/files/README.gentoo @@ -7,7 +7,7 @@ To keep a low maintenance cost, these changes are not reverted in Gentoo with the exception of re-enabling winemenubuilder for desktop entries. Also, given this Wine variant is oriented toward running games, some -normally unrelated features (e.g. ldap) may not have real upstream +normally unrelated features (e.g. cups) may not have real upstream (Valve) support. Because of this, some are left always disabled. If needed, use other variants for the more expected Wine behavior. diff --git a/app-emulation/wine-proton/files/wine-proton-8.0.1c-unwind.patch b/app-emulation/wine-proton/files/wine-proton-8.0.1c-unwind.patch new file mode 100644 index 000000000000..50fc5be57abc --- /dev/null +++ b/app-emulation/wine-proton/files/wine-proton-8.0.1c-unwind.patch @@ -0,0 +1,36 @@ +Fix build with llvm-libunwind, and also fix for non-llvm libunwind +when using clang+bfd given clang doesn't have _Unwind_Find_FDE in +its rtlib and expects it from llvm-libunwind. + +The _CONFIG_H_ check is for context; + struct dwarf_eh_bases bases; ++#if defined(_LIBUNWIND_VERSION) || defined(____LIBUNWIND_CONFIG_H__) || !defined(__clang__) + const struct dwarf_fde *fde = _Unwind_Find_FDE( (void *)(context->Rip - 1), &bases ); + +@@ -779,4 +780,5 @@ + return dwarf_virtual_unwind( context->Rip, &dispatch->EstablisherFrame, context, fde, + &bases, &dispatch->LanguageHandler, &dispatch->HandlerData ); ++#endif + #ifdef HAVE_LIBUNWIND + return libunwind_virtual_unwind( context->Rip, &dispatch->EstablisherFrame, context, diff --git a/app-emulation/wine-proton/wine-proton-7.0.6.ebuild b/app-emulation/wine-proton/wine-proton-7.0.6.ebuild index fd2ff4ec13f1..6cb4c973b3db 100644 --- a/app-emulation/wine-proton/wine-proton-7.0.6.ebuild +++ b/app-emulation/wine-proton/wine-proton-7.0.6.ebuild @@ -39,7 +39,6 @@ RESTRICT="test" # `grep WINE_CHECK_SONAME configure.ac` + if not directly linked WINE_DLOPEN_DEPEND=" - dev-libs/gmp:=[${MULTILIB_USEDEP}] dev-libs/libgcrypt:=[${MULTILIB_USEDEP}] media-libs/freetype[${MULTILIB_USEDEP}] media-libs/libglvnd[X,${MULTILIB_USEDEP}] @@ -53,7 +52,10 @@ WINE_DLOPEN_DEPEND=" fontconfig? ( media-libs/fontconfig[${MULTILIB_USEDEP}] ) osmesa? ( media-libs/mesa[osmesa,${MULTILIB_USEDEP}] ) sdl? ( media-libs/libsdl2[haptic,joystick,${MULTILIB_USEDEP}] ) - ssl? ( net-libs/gnutls:=[${MULTILIB_USEDEP}] ) + ssl? ( + dev-libs/gmp:=[${MULTILIB_USEDEP}] + net-libs/gnutls:=[${MULTILIB_USEDEP}] + ) udisks? ( sys-apps/dbus[${MULTILIB_USEDEP}] ) v4l? ( media-libs/libv4l[${MULTILIB_USEDEP}] ) xcomposite? ( x11-libs/libXcomposite[${MULTILIB_USEDEP}] ) diff --git a/app-emulation/wine-proton/wine-proton-7.0.9999.ebuild b/app-emulation/wine-proton/wine-proton-7.0.9999.ebuild index fd2ff4ec13f1..6cb4c973b3db 100644 --- a/app-emulation/wine-proton/wine-proton-7.0.9999.ebuild +++ b/app-emulation/wine-proton/wine-proton-7.0.9999.ebuild @@ -39,7 +39,6 @@ RESTRICT="test" # `grep WINE_CHECK_SONAME configure.ac` + if not directly linked WINE_DLOPEN_DEPEND=" - dev-libs/gmp:=[${MULTILIB_USEDEP}] dev-libs/libgcrypt:=[${MULTILIB_USEDEP}] media-libs/freetype[${MULTILIB_USEDEP}] media-libs/libglvnd[X,${MULTILIB_USEDEP}] @@ -53,7 +52,10 @@ WINE_DLOPEN_DEPEND=" fontconfig? ( media-libs/fontconfig[${MULTILIB_USEDEP}] ) osmesa? ( media-libs/mesa[osmesa,${MULTILIB_USEDEP}] ) sdl? ( media-libs/libsdl2[haptic,joystick,${MULTILIB_USEDEP}] ) - ssl? ( net-libs/gnutls:=[${MULTILIB_USEDEP}] ) + ssl? ( + dev-libs/gmp:=[${MULTILIB_USEDEP}] + net-libs/gnutls:=[${MULTILIB_USEDEP}] + ) udisks? ( sys-apps/dbus[${MULTILIB_USEDEP}] ) v4l? ( media-libs/libv4l[${MULTILIB_USEDEP}] ) xcomposite? ( x11-libs/libXcomposite[${MULTILIB_USEDEP}] ) diff --git a/app-emulation/wine-proton/wine-proton-8.0.1c.ebuild b/app-emulation/wine-proton/wine-proton-8.0.1c.ebuild new file mode 100644 index 000000000000..e514971ce399 --- /dev/null +++ b/app-emulation/wine-proton/wine-proton-8.0.1c.ebuild @@ -0,0 +1,329 @@ +# Copyright 2022-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MULTILIB_COMPAT=( abi_x86_{32,64} ) +PYTHON_COMPAT=( python3_{9..11} ) +inherit autotools flag-o-matic multilib multilib-build python-any-r1 +inherit readme.gentoo-r1 toolchain-funcs wrapper + +WINE_GECKO=2.47.3 +WINE_MONO=7.4.1 +WINE_PV=$(ver_rs 2 -) + +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/ValveSoftware/wine.git" + EGIT_BRANCH="experimental_$(ver_cut 1-2)" +else + SRC_URI="https://github.com/ValveSoftware/wine/archive/refs/tags/proton-wine-${WINE_PV}.tar.gz" + S="${WORKDIR}/${PN}-wine-${WINE_PV}" + KEYWORDS="-* ~amd64 ~x86" +fi + +DESCRIPTION="Valve Software's fork of Wine" +HOMEPAGE="https://github.com/ValveSoftware/wine/" + +LICENSE="LGPL-2.1+ BSD-2 IJG MIT OPENLDAP ZLIB gsm libpng2 libtiff" +SLOT="${PV}" +IUSE=" + +abi_x86_32 +abi_x86_64 +alsa crossdev-mingw custom-cflags debug + +fontconfig +gecko +gstreamer llvm-libunwind +mono nls osmesa + perl pulseaudio +sdl selinux +ssl udev udisks +unwind usb v4l + +xcomposite xinerama" + +# tests are non-trivial to run, can hang easily, don't play well with +# sandbox, and several need real opengl/vulkan or network access +RESTRICT="test" + +# `grep WINE_CHECK_SONAME configure.ac` + if not directly linked +WINE_DLOPEN_DEPEND=" + dev-libs/libgcrypt:=[${MULTILIB_USEDEP}] + media-libs/freetype[${MULTILIB_USEDEP}] + media-libs/libglvnd[X,${MULTILIB_USEDEP}] + media-libs/vulkan-loader[${MULTILIB_USEDEP}] + x11-libs/libXcursor[${MULTILIB_USEDEP}] + x11-libs/libXfixes[${MULTILIB_USEDEP}] + x11-libs/libXi[${MULTILIB_USEDEP}] + x11-libs/libXrandr[${MULTILIB_USEDEP}] + x11-libs/libXrender[${MULTILIB_USEDEP}] + x11-libs/libXxf86vm[${MULTILIB_USEDEP}] + fontconfig? ( media-libs/fontconfig[${MULTILIB_USEDEP}] ) + osmesa? ( media-libs/mesa[osmesa,${MULTILIB_USEDEP}] ) + sdl? ( media-libs/libsdl2[haptic,joystick,${MULTILIB_USEDEP}] ) + ssl? ( + dev-libs/gmp:=[${MULTILIB_USEDEP}] + net-libs/gnutls:=[${MULTILIB_USEDEP}] + ) + udisks? ( sys-apps/dbus[${MULTILIB_USEDEP}] ) + v4l? ( media-libs/libv4l[${MULTILIB_USEDEP}] ) + xcomposite? ( x11-libs/libXcomposite[${MULTILIB_USEDEP}] ) + xinerama? ( x11-libs/libXinerama[${MULTILIB_USEDEP}] )" +WINE_COMMON_DEPEND=" + ${WINE_DLOPEN_DEPEND} + x11-libs/libX11[${MULTILIB_USEDEP}] + x11-libs/libXext[${MULTILIB_USEDEP}] + alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] ) + gstreamer? ( + dev-libs/glib:2[${MULTILIB_USEDEP}] + media-libs/gst-plugins-base:1.0[opengl,${MULTILIB_USEDEP}] + media-libs/gstreamer:1.0[${MULTILIB_USEDEP}] + ) + pulseaudio? ( media-libs/libpulse[${MULTILIB_USEDEP}] ) + udev? ( virtual/libudev:=[${MULTILIB_USEDEP}] ) + unwind? ( + llvm-libunwind? ( sys-libs/llvm-libunwind[${MULTILIB_USEDEP}] ) + !llvm-libunwind? ( sys-libs/libunwind:=[${MULTILIB_USEDEP}] ) + ) + usb? ( dev-libs/libusb:1[${MULTILIB_USEDEP}] )" +RDEPEND=" + ${WINE_COMMON_DEPEND} + app-emulation/wine-desktop-common + gecko? ( app-emulation/wine-gecko:${WINE_GECKO}[${MULTILIB_USEDEP}] ) + gstreamer? ( media-plugins/gst-plugins-meta:1.0[${MULTILIB_USEDEP}] ) + mono? ( app-emulation/wine-mono:${WINE_MONO} ) + perl? ( + dev-lang/perl + dev-perl/XML-LibXML + ) + selinux? ( sec-policy/selinux-wine ) + udisks? ( sys-fs/udisks:2 )" +DEPEND=" + ${WINE_COMMON_DEPEND} + sys-kernel/linux-headers + x11-base/xorg-proto" +BDEPEND=" + ${PYTHON_DEPS} + dev-lang/perl + sys-devel/binutils + sys-devel/bison + sys-devel/flex + virtual/pkgconfig + nls? ( sys-devel/gettext ) + !crossdev-mingw? ( dev-util/mingw64-toolchain[${MULTILIB_USEDEP}] )" +IDEPEND=">=app-eselect/eselect-wine-2" + +QA_CONFIG_IMPL_DECL_SKIP=( + __clear_cache # unused on amd64+x86 (bug #900332) + res_getservers # false positive +) +QA_TEXTRELS="usr/lib/*/wine/i386-unix/*.so" # uses -fno-PIC -Wl,-z,notext + +PATCHES=( + "${FILESDIR}"/${PN}-7.0.4-musl.patch + "${FILESDIR}"/${PN}-7.0.4-noexecstack.patch + "${FILESDIR}"/${PN}-7.0.4-restore-menubuilder.patch + "${FILESDIR}"/${PN}-8.0.1c-unwind.patch +) + +pkg_pretend() { + [[ ${MERGE_TYPE} == binary ]] && return + + if use crossdev-mingw && [[ ! -v MINGW_BYPASS ]]; then + local mingw=-w64-mingw32 + for mingw in $(usev abi_x86_64 x86_64${mingw}) $(usev abi_x86_32 i686${mingw}); do + if ! type -P ${mingw}-gcc >/dev/null; then + eerror "With USE=crossdev-mingw, you must prepare the MinGW toolchain" + eerror "yourself by installing sys-devel/crossdev then running:" + eerror + eerror " crossdev --target ${mingw}" + eerror + eerror "For more information, please see: https://wiki.gentoo.org/wiki/Mingw" + eerror "--> Note that mingw builds are default for ${PN} even without this USE." + die "USE=crossdev-mingw is enabled, but ${mingw}-gcc was not found" + fi + done + fi +} + +src_prepare() { + # sanity check, bumping these has a history of oversights + local geckomono=$(sed -En '/^#define (GECKO|MONO)_VER/{s/[^0-9.]//gp}' \ + dlls/appwiz.cpl/addons.c || die) + if [[ ${WINE_GECKO}$'\n'${WINE_MONO} != "${geckomono}" ]]; then + local gmfatal= + [[ ${PV} == *9999 ]] && gmfatal=nonfatal + ${gmfatal} die -n "gecko/mono mismatch in ebuild, has: " ${geckomono} " (please file a bug)" + fi + + default + + # ensure .desktop calls this variant + slot + sed -i "/^Exec=/s/wine /${P} /" loader/wine.desktop || die + + # similarly to staging, append to `wine --version` for identification + sed -i "s/wine_build[^1]*1/& (Proton-${WINE_PV})/" configure.ac || die + + # always update for patches (including user's wrt #432348) + eautoreconf + tools/make_requests || die # perl + dlls/winevulkan/make_vulkan -x vk.xml || die # python, needed for proton's +} + +src_configure() { + WINE_PREFIX=/usr/lib/${P} + WINE_DATADIR=/usr/share/${P} + + local conf=( + --prefix="${EPREFIX}"${WINE_PREFIX} + --datadir="${EPREFIX}"${WINE_DATADIR} + --includedir="${EPREFIX}"/usr/include/${P} + --libdir="${EPREFIX}"${WINE_PREFIX} + --mandir="${EPREFIX}"${WINE_DATADIR}/man + + # upstream (Valve) doesn't really support misc configurations (e.g. + # adds vulkan code not always guarded by --with-vulkan), so force + # some major options that are typically needed by games either way + --with-freetype + --with-mingw # needed by many, notably Blizzard titles + --with-opengl + --with-vulkan + --with-x + + # ...and disable most options unimportant for games and unused by + # Proton rather than expose as volatile USEs with little support + --without-capi + --without-cups + --without-gphoto + --without-gssapi + --without-krb5 + --without-netapi + --without-opencl + --without-pcap + --without-sane + ac_cv_lib_soname_odbc= + + $(use_enable gecko mshtml) + $(use_enable mono mscoree) + --disable-tests + $(use_with alsa) + $(use_with fontconfig) + $(use_with gstreamer) + $(use_with nls gettext) + $(use_with osmesa) + --without-oss # media-sound/oss is not packaged (OSSv4) + $(use_with pulseaudio pulse) + $(use_with sdl) + $(use_with ssl gnutls) + $(use_with udev) + $(use_with udisks dbus) # dbus is only used for udisks + $(use_with unwind) + $(use_with usb) + $(use_with v4l v4l2) + $(use_with xcomposite) + $(use_with xinerama) + ) + + tc-ld-force-bfd # builds with non-bfd but broken at runtime (bug #867097) + filter-lto # build failure + use custom-cflags || strip-flags # can break in obscure ways at runtime + use crossdev-mingw || PATH=${BROOT}/usr/lib/mingw64-toolchain/bin:${PATH} + + # temporary workaround for tc-ld-force-bfd not yet enforcing with mold + # https://github.com/gentoo/gentoo/pull/28355 + [[ $($(tc-getCC) ${LDFLAGS} -Wl,--version 2>/dev/null) == mold* ]] && + append-ldflags -fuse-ld=bfd + + # build using upstream's way (--with-wine64) + # order matters: configure+compile 64->32, install 32->64 + local -i bits + for bits in $(usev abi_x86_64 64) $(usev abi_x86_32 32); do + ( + einfo "Configuring ${PN} for ${bits}bits in ${WORKDIR}/build${bits} ..." + + mkdir ../build${bits} || die + cd ../build${bits} || die + + pe_arch=i386 + if (( bits == 64 )); then + pe_arch=x86_64 + : "${CROSSCC:=${CROSSCC_amd64:-x86_64-w64-mingw32-gcc}}" + conf+=( --enable-win64 ) + elif use amd64; then + conf+=( + $(usev abi_x86_64 --with-wine64=../build64) + TARGETFLAGS=-m32 # for widl + ) + # _setup is optional, but use over Wine's auto-detect (+#472038) + multilib_toolchain_setup x86 + fi + : "${CROSSCC:=${CROSSCC_x86:-i686-w64-mingw32-gcc}}" + + # CROSSCC is no longer recognized by Wine, but still use for now + # (future handling for CROSS* variables is subject to changes) + conf+=( ac_cv_prog_${pe_arch}_CC="${CROSSCC}" ) + + # use *FLAGS for mingw, but strip unsupported + : "${CROSSCFLAGS:=$( + # >=wine-7.21 configure.ac no longer adds -fno-strict by mistake + append-cflags '-fno-strict-aliasing' + filter-flags '-fstack-clash-protection' #758914 + filter-flags '-fstack-protector*' #870136 + filter-flags '-mfunction-return=thunk*' #878849 + CC=${CROSSCC} test-flags-CC ${CFLAGS:--O2})}" + : "${CROSSLDFLAGS:=$( + filter-flags '-fuse-ld=*' + CC=${CROSSCC} test-flags-CCLD ${LDFLAGS})}" + export CROSS{C,LD}FLAGS + + ECONF_SOURCE=${S} econf "${conf[@]}" + ) + done +} + +src_compile() { + use abi_x86_64 && emake -C ../build64 # do first + use abi_x86_32 && emake -C ../build32 +} + +src_install() { + use abi_x86_32 && emake DESTDIR="${D}" -C ../build32 install + use abi_x86_64 && emake DESTDIR="${D}" -C ../build64 install # do last + + # symlink for plain 'wine' and install its man pages if 64bit-only #404331 + if use abi_x86_64 && use !abi_x86_32; then + dosym wine64 ${WINE_PREFIX}/bin/wine + dosym wine64-preloader ${WINE_PREFIX}/bin/wine-preloader + local man + for man in ../build64/loader/wine.*man; do + : "${man##*/wine}" + : "${_%.*}" + insinto ${WINE_DATADIR}/man/${_:+${_#.}/}man1 + newins ${man} wine.1 + done + fi + + use perl || rm "${ED}"${WINE_DATADIR}/man/man1/wine{dump,maker}.1 \ + "${ED}"${WINE_PREFIX}/bin/{function_grep.pl,wine{dump,maker}} || die + + # create variant wrappers for eselect-wine + local bin + for bin in "${ED}"${WINE_PREFIX}/bin/*; do + make_wrapper "${bin##*/}-${P#wine-}" "${bin#"${ED}"}" + done + + # don't let portage try to strip PE files with the wrong + # strip executable and instead handle it here (saves ~120MB) + dostrip -x ${WINE_PREFIX}/wine/{i386,x86_64}-windows + use debug || + find "${ED}"${WINE_PREFIX}/wine/*-windows -regex '.*\.\(a\|dll\|exe\)' \ + -exec $(usex abi_x86_64 x86_64 i686)-w64-mingw32-strip --strip-unneeded {} + || die + + dodoc ANNOUNCE AUTHORS README* documentation/README* + readme.gentoo_create_doc +} + +pkg_preinst() { + has_version ${CATEGORY}/${PN} && WINE_HAD_ANY_SLOT= +} + +pkg_postinst() { + [[ -v WINE_HAD_ANY_SLOT ]] || readme.gentoo_print_elog + + eselect wine update --if-unset || die +} + +pkg_postrm() { + eselect wine update --if-unset || die +} diff --git a/app-emulation/wine-staging/Manifest b/app-emulation/wine-staging/Manifest index ec414e8b5d9c..75698bd47154 100644 --- a/app-emulation/wine-staging/Manifest +++ b/app-emulation/wine-staging/Manifest @@ -2,7 +2,9 @@ DIST wine-8.0.tar.xz 29054044 BLAKE2B baf8f96b665119c9f38a148a2472dbe8f6ca8d4641 DIST wine-8.3.tar.xz 28983532 BLAKE2B b811a13aaa87f186c744254059d40fdf0740da42cf788acb2375c04cf3ecc281c92afc7bb7830d5797624d96f803edcb2d2778c5da378d89938fe0b68e72a287 SHA512 9c0c86f1d523cc65fe6bcb2f98e73f8909282eda1c04516ff35a32833e469421e099fe1351c3078ac96aa7884fc194a77fcf2ba8863e2a227316fd84562f1f5a DIST wine-8.4.tar.xz 29031312 BLAKE2B 0b91267a68e4e332544d273646bb1e9389c3af3f48069ab7942096af5512e86a61d39788d91c221b4ae96e81858cfdff1e43a658ba407ff1450b6d752b8a3235 SHA512 8de144a65c0a3a2984fabc1294b647b8581da5fa8bd28a9ff756ab59256ee2b453d898453fc902bbc372a4e017a8e29b1eeef917f137ec1134ac08b671eccc7d DIST wine-8.5.tar.xz 29064032 BLAKE2B 35fa6d7ec88ff67d9acf13466b3618eb45d664bed0a9ee581e46cb6e7692395837c8c8e86dead1dbcad582ef29c674a0df4b7180addee837b466eba7fdcd350a SHA512 f6aaab8a32eb7bce7f48d21d99417c9e6e8fe41b3d36320762775ef954db7ddd4fcff01d56475f35038d814557834a41a9e3ae85e5cae8a1b820c5044b42a327 +DIST wine-8.6.tar.xz 29118124 BLAKE2B e4659785722f0c1adb9ce4a156fbafc8484977a5fe2f4a6e1d5eaf8f1f14c6787f080b9d389cdd8716eb7fd00ee2879fab2042af5dcb970530d2e19628442c73 SHA512 602680675f5e062121767769106199179c52a6dd93e97b9b8b4d8365134c72f7745e37d4e3edf6c89c553fb1bfe55b914e77177508fb4f032410d423359abba7 DIST wine-staging-8.0.tar.gz 9529620 BLAKE2B c9540195ea885d9f1e980232b0af471e92c61eb079cae35fdb3af5c13d4660b3466f751772440e38f15874082db296d16d1f1d68827a505b2dd949617eda0203 SHA512 76a729d7ced1ff634ddb455ddfaa66ca103b652f43cd152b57ada7431bb5fbb74f5e92bf2f4f329b6df6f5908130afad84e609cbce6df645d6cf8131e9b949f9 DIST wine-staging-8.3.tar.gz 9523336 BLAKE2B 3fdb6343ab3735e9235ea3d99e3da4d392de9620d93e85e2bd3b13ae2e0eca2654b2b48230a3bfd7c66ead1fb751ddb092b361943f7a95eb3df5a240c2b9e32b SHA512 e2b1dc107088f716f1c7e80bc25b152ff5c2c4c4a6f29a60e42eabdea0e8b5df84eaeaf8b978f5aefc3f9ad5962eb74784d5a98b95fa3694485d00f3fa628ce6 DIST wine-staging-8.4.tar.gz 9522340 BLAKE2B b9fb08f529c9c24d9d6b09adbb359b265e246b8f4651eef0983d10b9c84afbdc9c58e04180e802cd3a7d0951f12ff46495b1ec0508e02f5b76ae7d0d987dc22c SHA512 96a6a870020e59f8437c65604536fec4b80d7d9e5a937e5d0a6cb0b2b4e544e6153fa0cdf2a8fd2c32d090001334e68124c2855c6a2a1454fdcdb6ea23d75fd7 DIST wine-staging-8.5.tar.gz 9530306 BLAKE2B 9457fb44aea427c2c09d6329f2f585ae7e14ca32950204019136616d73ad1b83b629297499197b91fb542784b8e5b6edd8743ee6a72794ce58ef5c6b1d27f308 SHA512 9d347c55a62f661bdcc102d373e05d162217b7b1348bdb6f2b114d20e35146862379d2cf03a96916bd1d52166a538af55d48e25a169cd6ee23818673bd35909a +DIST wine-staging-8.6.1.tar.gz 9527141 BLAKE2B be43c642e6caa0f7e28a0aa45f736b839fe277a54c573955940523b6a27a0e4b7b5d531a027aab4a3c21a413fcac129dc16a7241700f2f848061fadafc9e695f SHA512 28bb066b55293e73df072cceb27a191365d6a319d859e6797bc443e830bb6ddd22cdbf7d9692b43e8eb7f2feb68ac1205aa440c60b37ab7c10ebeab83aa590ce diff --git a/app-emulation/wine-staging/wine-staging-8.6.1.ebuild b/app-emulation/wine-staging/wine-staging-8.6.1.ebuild new file mode 100644 index 000000000000..61b4b60e0323 --- /dev/null +++ b/app-emulation/wine-staging/wine-staging-8.6.1.ebuild @@ -0,0 +1,369 @@ +# Copyright 2022-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MULTILIB_COMPAT=( abi_x86_{32,64} ) +PYTHON_COMPAT=( python3_{9..11} ) +inherit autotools edo flag-o-matic multilib multilib-build +inherit python-any-r1 toolchain-funcs wrapper + +WINE_GECKO=2.47.4 +WINE_MONO=7.4.0 + +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/wine-staging/wine-staging.git" + WINE_EGIT_REPO_URI="https://gitlab.winehq.org/wine/wine.git" +else + (( $(ver_cut 2) )) && WINE_SDIR=$(ver_cut 1).x || WINE_SDIR=$(ver_cut 1).0 + SRC_URI=" + https://dl.winehq.org/wine/source/${WINE_SDIR}/wine-$(ver_cut 1-2).tar.xz + https://github.com/wine-staging/wine-staging/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="-* ~amd64 ~x86" +fi +S="${WORKDIR}/wine-$(ver_cut 1-2)" + +DESCRIPTION="Free implementation of Windows(tm) on Unix, with Wine-Staging patchset" +HOMEPAGE="https://wiki.winehq.org/Wine-Staging" + +LICENSE="LGPL-2.1+ BSD-2 IJG MIT OPENLDAP ZLIB gsm libpng2 libtiff" +SLOT="${PV}" +IUSE=" + +X +abi_x86_32 +abi_x86_64 +alsa capi crossdev-mingw cups dos + llvm-libunwind debug custom-cflags +fontconfig +gecko gphoto2 + +gstreamer kerberos +mingw +mono netapi nls opencl +opengl osmesa + pcap perl pulseaudio samba scanner +sdl selinux smartcard +ssl + +truetype udev udisks +unwind usb v4l +vulkan wayland +xcomposite + xinerama" +REQUIRED_USE=" + X? ( truetype ) + crossdev-mingw? ( mingw )" # bug #551124 for truetype + +# tests are non-trivial to run, can hang easily, don't play well with +# sandbox, and several need real opengl/vulkan or network access +RESTRICT="test" + +# `grep WINE_CHECK_SONAME configure.ac` + if not directly linked +WINE_DLOPEN_DEPEND=" + X? ( + x11-libs/libXcursor[${MULTILIB_USEDEP}] + x11-libs/libXfixes[${MULTILIB_USEDEP}] + x11-libs/libXi[${MULTILIB_USEDEP}] + x11-libs/libXrandr[${MULTILIB_USEDEP}] + x11-libs/libXrender[${MULTILIB_USEDEP}] + x11-libs/libXxf86vm[${MULTILIB_USEDEP}] + opengl? ( + media-libs/libglvnd[X,${MULTILIB_USEDEP}] + osmesa? ( media-libs/mesa[osmesa,${MULTILIB_USEDEP}] ) + ) + xcomposite? ( x11-libs/libXcomposite[${MULTILIB_USEDEP}] ) + xinerama? ( x11-libs/libXinerama[${MULTILIB_USEDEP}] ) + ) + cups? ( net-print/cups[${MULTILIB_USEDEP}] ) + fontconfig? ( media-libs/fontconfig[${MULTILIB_USEDEP}] ) + kerberos? ( virtual/krb5[${MULTILIB_USEDEP}] ) + netapi? ( net-fs/samba[${MULTILIB_USEDEP}] ) + sdl? ( media-libs/libsdl2[haptic,joystick,${MULTILIB_USEDEP}] ) + ssl? ( net-libs/gnutls:=[${MULTILIB_USEDEP}] ) + truetype? ( media-libs/freetype[${MULTILIB_USEDEP}] ) + udisks? ( sys-apps/dbus[${MULTILIB_USEDEP}] ) + v4l? ( media-libs/libv4l[${MULTILIB_USEDEP}] ) + vulkan? ( media-libs/vulkan-loader[${MULTILIB_USEDEP}] )" +WINE_COMMON_DEPEND=" + ${WINE_DLOPEN_DEPEND} + X? ( + x11-libs/libX11[${MULTILIB_USEDEP}] + x11-libs/libXext[${MULTILIB_USEDEP}] + ) + alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] ) + capi? ( net-libs/libcapi:=[${MULTILIB_USEDEP}] ) + gphoto2? ( media-libs/libgphoto2:=[${MULTILIB_USEDEP}] ) + gstreamer? ( + dev-libs/glib:2[${MULTILIB_USEDEP}] + media-libs/gst-plugins-base:1.0[${MULTILIB_USEDEP}] + media-libs/gstreamer:1.0[${MULTILIB_USEDEP}] + ) + opencl? ( virtual/opencl[${MULTILIB_USEDEP}] ) + pcap? ( net-libs/libpcap[${MULTILIB_USEDEP}] ) + pulseaudio? ( media-libs/libpulse[${MULTILIB_USEDEP}] ) + scanner? ( media-gfx/sane-backends[${MULTILIB_USEDEP}] ) + smartcard? ( sys-apps/pcsc-lite[${MULTILIB_USEDEP}] ) + udev? ( virtual/libudev:=[${MULTILIB_USEDEP}] ) + unwind? ( + llvm-libunwind? ( sys-libs/llvm-libunwind[${MULTILIB_USEDEP}] ) + !llvm-libunwind? ( sys-libs/libunwind:=[${MULTILIB_USEDEP}] ) + ) + usb? ( dev-libs/libusb:1[${MULTILIB_USEDEP}] ) + wayland? ( dev-libs/wayland[${MULTILIB_USEDEP}] )" +RDEPEND=" + ${WINE_COMMON_DEPEND} + app-emulation/wine-desktop-common + dos? ( games-emulation/dosbox ) + gecko? ( app-emulation/wine-gecko:${WINE_GECKO}[${MULTILIB_USEDEP}] ) + gstreamer? ( media-plugins/gst-plugins-meta:1.0[${MULTILIB_USEDEP}] ) + mono? ( app-emulation/wine-mono:${WINE_MONO} ) + perl? ( + dev-lang/perl + dev-perl/XML-LibXML + ) + samba? ( net-fs/samba[winbind] ) + selinux? ( sec-policy/selinux-wine ) + udisks? ( sys-fs/udisks:2 )" +DEPEND=" + ${WINE_COMMON_DEPEND} + sys-kernel/linux-headers + X? ( x11-base/xorg-proto )" +# gitapply.sh prefers git but can fallback to patch+extras +BDEPEND=" + ${PYTHON_DEPS} + || ( + dev-vcs/git + ( + sys-apps/gawk + sys-apps/util-linux + ) + ) + dev-lang/perl + sys-devel/binutils + sys-devel/bison + sys-devel/flex + virtual/pkgconfig + mingw? ( !crossdev-mingw? ( + >=dev-util/mingw64-toolchain-10.0.0_p1-r2[${MULTILIB_USEDEP}] + ) ) + nls? ( sys-devel/gettext )" +IDEPEND=">=app-eselect/eselect-wine-2" + +QA_CONFIG_IMPL_DECL_SKIP=( + __clear_cache # unused on amd64+x86 (bug #900334) + res_getservers # false positive +) +QA_FLAGS_IGNORED="usr/lib/.*/wine/.*-unix/odbc32.so" # has no compiled objects +QA_TEXTRELS="usr/lib/*/wine/i386-unix/*.so" # uses -fno-PIC -Wl,-z,notext + +PATCHES=( + "${FILESDIR}"/${PN}-7.17-noexecstack.patch + "${FILESDIR}"/${PN}-7.20-unwind.patch +) + +pkg_pretend() { + [[ ${MERGE_TYPE} == binary ]] && return + + if use crossdev-mingw && [[ ! -v MINGW_BYPASS ]]; then + local mingw=-w64-mingw32 + for mingw in $(usev abi_x86_64 x86_64${mingw}) $(usev abi_x86_32 i686${mingw}); do + if ! type -P ${mingw}-gcc >/dev/null; then + eerror "With USE=crossdev-mingw, you must prepare the MinGW toolchain" + eerror "yourself by installing sys-devel/crossdev then running:" + eerror + eerror " crossdev --target ${mingw}" + eerror + eerror "For more information, please see: https://wiki.gentoo.org/wiki/Mingw" + die "USE=crossdev-mingw is enabled, but ${mingw}-gcc was not found" + fi + done + fi +} + +src_unpack() { + if [[ ${PV} == *9999 ]]; then + EGIT_CHECKOUT_DIR=${WORKDIR}/${P} + git-r3_src_unpack + + EGIT_COMMIT=$(<"${EGIT_CHECKOUT_DIR}"/staging/upstream-commit) || die + EGIT_REPO_URI=${WINE_EGIT_REPO_URI} + EGIT_CHECKOUT_DIR=${S} + einfo "Fetching Wine commit matching the current patchset by default (${EGIT_COMMIT})" + git-r3_src_unpack + else + default + fi +} + +src_prepare() { + local patchinstallargs=( + --all + --no-autoconf + -W winemenubuilder-Desktop_Icon_Path #652176 + ${MY_WINE_STAGING_CONF} + ) + + edo "${PYTHON}" ../${P}/staging/patchinstall.py "${patchinstallargs[@]}" + + # sanity check, bumping these has a history of oversights + local geckomono=$(sed -En '/^#define (GECKO|MONO)_VER/{s/[^0-9.]//gp}' \ + dlls/appwiz.cpl/addons.c || die) + if [[ ${WINE_GECKO}$'\n'${WINE_MONO} != "${geckomono}" ]]; then + local gmfatal= + [[ ${PV} == *9999 ]] && gmfatal=nonfatal + ${gmfatal} die -n "gecko/mono mismatch in ebuild, has: " ${geckomono} " (please file a bug)" + fi + + default + + # ensure .desktop calls this variant + slot + sed -i "/^Exec=/s/wine /${P} /" loader/wine.desktop || die + + # always update for patches (including user's wrt #432348) + eautoreconf + tools/make_requests || die # perl +} + +src_configure() { + WINE_PREFIX=/usr/lib/${P} + WINE_DATADIR=/usr/share/${P} + + local conf=( + --prefix="${EPREFIX}"${WINE_PREFIX} + --datadir="${EPREFIX}"${WINE_DATADIR} + --includedir="${EPREFIX}"/usr/include/${P} + --libdir="${EPREFIX}"${WINE_PREFIX} + --mandir="${EPREFIX}"${WINE_DATADIR}/man + $(use_enable gecko mshtml) + $(use_enable mono mscoree) + --disable-tests + $(use_with X x) + $(use_with alsa) + $(use_with capi) + $(use_with cups) + $(use_with fontconfig) + $(use_with gphoto2 gphoto) + $(use_with gstreamer) + $(use_with kerberos gssapi) + $(use_with kerberos krb5) + $(use_with mingw) + $(use_with netapi) + $(use_with nls gettext) + $(use_with opencl) + $(use_with opengl) + $(use_with osmesa) + --without-oss # media-sound/oss is not packaged (OSSv4) + $(use_with pcap) + $(use_with pulseaudio pulse) + $(use_with scanner sane) + $(use_with sdl) + $(use_with smartcard pcsclite) + $(use_with ssl gnutls) + $(use_with truetype freetype) + $(use_with udev) + $(use_with udisks dbus) # dbus is only used for udisks + $(use_with unwind) + $(use_with usb) + $(use_with v4l v4l2) + $(use_with vulkan) + $(use_with wayland) + $(use_with xcomposite) + $(use_with xinerama) + ) + + tc-ld-force-bfd # builds with non-bfd but broken at runtime (bug #867097) + filter-lto # build failure + use mingw || filter-flags -fno-plt # build failure + use custom-cflags || strip-flags # can break in obscure ways at runtime + use crossdev-mingw || PATH=${BROOT}/usr/lib/mingw64-toolchain/bin:${PATH} + + # temporary workaround for tc-ld-force-bfd not yet enforcing with mold + # https://github.com/gentoo/gentoo/pull/28355 + [[ $($(tc-getCC) ${LDFLAGS} -Wl,--version 2>/dev/null) == mold* ]] && + append-ldflags -fuse-ld=bfd + + # build using upstream's way (--with-wine64) + # order matters: configure+compile 64->32, install 32->64 + local -i bits + for bits in $(usev abi_x86_64 64) $(usev abi_x86_32 32); do + ( + einfo "Configuring ${PN} for ${bits}bits in ${WORKDIR}/build${bits} ..." + + mkdir ../build${bits} || die + cd ../build${bits} || die + + pe_arch=i386 + if (( bits == 64 )); then + pe_arch=x86_64 + : "${CROSSCC:=${CROSSCC_amd64:-x86_64-w64-mingw32-gcc}}" + conf+=( --enable-win64 ) + elif use amd64; then + conf+=( + $(usev abi_x86_64 --with-wine64=../build64) + TARGETFLAGS=-m32 # for widl + ) + # _setup is optional, but use over Wine's auto-detect (+#472038) + multilib_toolchain_setup x86 + fi + : "${CROSSCC:=${CROSSCC_x86:-i686-w64-mingw32-gcc}}" + + if use mingw; then + # CROSSCC is no longer recognized by Wine, but still use for now + # (future handling for CROSS* variables is subject to changes) + conf+=( ac_cv_prog_${pe_arch}_CC="${CROSSCC}" ) + + # use *FLAGS for mingw, but strip unsupported + : "${CROSSCFLAGS:=$( + # >=wine-7.21 configure.ac no longer adds -fno-strict by mistake + append-cflags '-fno-strict-aliasing' + filter-flags '-fstack-clash-protection' #758914 + filter-flags '-fstack-protector*' #870136 + filter-flags '-mfunction-return=thunk*' #878849 + CC=${CROSSCC} test-flags-CC ${CFLAGS:--O2})}" + : "${CROSSLDFLAGS:=$( + filter-flags '-fuse-ld=*' + CC=${CROSSCC} test-flags-CCLD ${LDFLAGS})}" + export CROSS{C,LD}FLAGS + fi + + ECONF_SOURCE=${S} econf "${conf[@]}" + ) + done +} + +src_compile() { + use abi_x86_64 && emake -C ../build64 # do first + use abi_x86_32 && emake -C ../build32 +} + +src_install() { + use abi_x86_32 && emake DESTDIR="${D}" -C ../build32 install + use abi_x86_64 && emake DESTDIR="${D}" -C ../build64 install # do last + + # symlink for plain 'wine' and install its man pages if 64bit-only #404331 + if use abi_x86_64 && use !abi_x86_32; then + dosym wine64 ${WINE_PREFIX}/bin/wine + dosym wine64-preloader ${WINE_PREFIX}/bin/wine-preloader + local man + for man in ../build64/loader/wine.*man; do + : "${man##*/wine}" + : "${_%.*}" + insinto ${WINE_DATADIR}/man/${_:+${_#.}/}man1 + newins ${man} wine.1 + done + fi + + use perl || rm "${ED}"${WINE_DATADIR}/man/man1/wine{dump,maker}.1 \ + "${ED}"${WINE_PREFIX}/bin/{function_grep.pl,wine{dump,maker}} || die + + # create variant wrappers for eselect-wine + local bin + for bin in "${ED}"${WINE_PREFIX}/bin/*; do + make_wrapper "${bin##*/}-${P#wine-}" "${bin#"${ED}"}" + done + + # don't let portage try to strip PE files with the wrong + # strip executable and instead handle it here (saves ~120MB) + if use mingw; then + dostrip -x ${WINE_PREFIX}/wine/{i386,x86_64}-windows + use debug || + find "${ED}"${WINE_PREFIX}/wine/*-windows -regex '.*\.\(a\|dll\|exe\)' \ + -exec $(usex abi_x86_64 x86_64 i686)-w64-mingw32-strip --strip-unneeded {} + || die + fi + + dodoc ANNOUNCE AUTHORS README* documentation/README* +} + +pkg_postinst() { + eselect wine update --if-unset || die +} + +pkg_postrm() { + eselect wine update --if-unset || die +} diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.0.2.ebuild b/app-emulation/wine-vanilla/wine-vanilla-7.0.2.ebuild index 53b146197a48..87cd1e61cd65 100644 --- a/app-emulation/wine-vanilla/wine-vanilla-7.0.2.ebuild +++ b/app-emulation/wine-vanilla/wine-vanilla-7.0.2.ebuild @@ -16,7 +16,7 @@ else (( $(ver_cut 2) )) && WINE_SDIR=$(ver_cut 1).x || WINE_SDIR=$(ver_cut 1).0 SRC_URI="https://dl.winehq.org/wine/source/${WINE_SDIR}/wine-${PV}.tar.xz" S="${WORKDIR}/wine-${PV}" - KEYWORDS="-* ~amd64 ~x86" + KEYWORDS="-* ~amd64 x86" fi DESCRIPTION="Free implementation of Windows(tm) on Unix, without external patchsets" diff --git a/app-emulation/xen-tools/Manifest b/app-emulation/xen-tools/Manifest index a19fd3da527d..ba263e641129 100644 --- a/app-emulation/xen-tools/Manifest +++ b/app-emulation/xen-tools/Manifest @@ -4,7 +4,13 @@ DIST brotli-666c3280cc11dc433c303d79a83d4ffbdd12cc8d.tar.gz 23855739 BLAKE2B 740 DIST edk2-7b4a99be8a39c12d3a7fc4b8db9f0eab4ac688d5.tar.gz 13998677 BLAKE2B 3614ceb69e295a6afb37c7905d0aec3534d8daf3d9f22137c1b722da6dc764a3669d99af03f96155d45feb5058a6f725acf37d1048186fecff4232d64f96e97c SHA512 a1933d815b947fd4f13c96970a6dc36c3048e3ddf27c897684104b0129cf58331e46d3147062ae1fb8973f08cd373c319788dd850ac5e45da385eed8368571a4 DIST ipxe-git-3c040ad387099483102708bb1839110bc788cefb.tar.gz 3962725 BLAKE2B a8084abaf93a4ab06ba170427a66dab08e68ba1288f42ea744e2cbc66d6bd2294bee82f6d0994260d2cd60daf6a6068e40eb74fdeba2bccaa432d090d81fd9db SHA512 4ac1d07ce879a3a8c6c260380258c37f5e4ecddc880b27fb59afc38fbf3718e81b04a4dda2b58fe7a438a23175e00b6179fc067acbc4a75e33d93c4b85ff5d68 DIST seabios-1.14.0.tar.gz 628985 BLAKE2B cc1126925dab1551a655680d20d06ebf28c12c386500d1ee4df9e1a99403b4c5bc6a66c2cc5ef58b4c3d6d7226f35007506a6a1855c2cf2742469dcb7aba05bb SHA512 215c42f59425f8abd062be7b11fc0e39c977cee5001a2381551b0f851ac337d0dd53c065267e6dee0e710ffd700fa635f9007b89da8dfce0f47122c984ee8146 +DIST seabios-1.16.0.tar.gz 635419 BLAKE2B b645f20bae341d56ce4fc4a7044446050d8490c6c136377f6dccf02c88100b0644bc13d210b4a517a8be6002d5671b0fba77120a2aca3a9bafbad5e88d037e40 SHA512 9daefcfb1c9edda4462a4b080c9bac552154d577ae19703a914928e43005e7a52edd86869c6507e94a7f0c61ce8b3e6f5dea38cd5146628cb138a130947c522f DIST xen-4.15.4.tar.gz 40820669 BLAKE2B 22edaf817851856c777d02b5211be932c1731bf50fb582545f948c7e8f871937f7c94636496a480642fa7ed8222e12dda091a06638c75b9ee935f3ff9bc2aea0 SHA512 fa6a4991c0699025af163ed117f8d0523c0a482102464615025eb3575d755ffacec5df394e3fe01871cde6028678f654d99f8e3c2533b138765971a2a7994cb8 DIST xen-4.16.3.tar.gz 45003057 BLAKE2B 6092cff33bffed1b6133daf8d3ce53c57204297e66df6ac58266b2da8d5585df62ae718cc8afaad36ebe6dabdce65b9979b0d13b88e60f2b23c01be21ae4db8e SHA512 b8cbd6f95681de5f824ada2d3cbe0653a38514a18df0dafcf811fb255219c7abec96f46217bdb0c83e1119f685da9a6af7194eeaa94f1cc3c892702782133b4f +DIST xen-4.17.0.tar.gz 46484553 BLAKE2B a4665fb557eb264566179bc5b2678d44f694ef5b20bb7dc58c8a7e6fcdf0145f25a462cfe2ad35be67a4a5ca4579c03eb092954915953e2ab98ae90b4ea983f0 SHA512 8aa7c3025c81127a4f653411bc1cbe8fc27b767a2f96a2a454329a6773cb74d714ecc1ff011a8e7169c6b83b2cc5cb39c39798bd6b1178df75ce9ff00f5a1011 DIST xen-gentoo-patches-4.15.3-gentoo-patchset-2.tar.bz2 4681 BLAKE2B 59fe5c2d5f3b975f281778ee96f8771debde7ae738636fc8294e7e2578dffc40938d8c48e4e94f0341762b2ba8e1b6769f71b7783322fb3b2a0a187bbf2b5104 SHA512 8540aa3631277fb652f90c53f6f5b4e9d119a7ed267dec96d7aecca4eac2c465ec3be32b0b82057e79f858cc8115bfdfbf2af5c4879a0be3f98ed68cbe64fdae DIST xen-gentoo-patches-4.16.1-gentoo-patchset-2.tar.bz2 5403 BLAKE2B 7fa3b4aa123b2deed260d02b8d34a35dd205207038edb92569278b25c6fe32e0f0e3857c07755553e047f0eb0d9fe7f8b0816e0f3d7f68aee7929afaf6611dfd SHA512 9e7d25640b24235acf756b031b8b7cee582dded65fe7b94a706c990232e9704d574036c3a9605f285e8e9534578d100a3f38719b27b22775f17ef8f68287997e +DIST xen-gentoo-patches-4.17.0-gentoo-patchset-0.tar.bz2 4474 BLAKE2B aa367a4ccf96a61c04c52e415d7143ca946323d7d50d6ab16ad7a917279ad4b1aac802e35e7e306c3a244317db713e913dc8d6343717b2307ccd049adb956a0d SHA512 debba71b17be7b1bb9a70f01782c12c3c053cc2fb1f4ad95829356ee365878aad68430055d4b8c648ef1ff54cb9e3e7c03d40d14c560d51f8ac4fce2b8f82190 +DIST xen-upstream-patches-4.15.5-pre-patchset-0.tar.bz2 21880 BLAKE2B 89ef7b8cc56ca5a4738ce665aaa3461b61c554088b1b727e34ea417beb43f9b8eae403bae50449c0c96e79ff4b71edf9b6808071b1ca8f0b3878bf1cb9697c6e SHA512 0752d699168e3c2ba13a0ad886dd1d1f9affefc5e7fed9980b2a634012508f405c2accfcd7e92f79016bb869d2d0b09139266a952cc203bea37870fc7d910e51 +DIST xen-upstream-patches-4.16.4-pre-patchset-0.tar.bz2 60151 BLAKE2B 5c8a8f772ba6be5f776b3270b9f1e64df35c2be7b4e238262eb4ec6b4859576b3ecb448880e1e05ad53dbdaa71643e678978151b10d0d47c901ab3e3518b7eb0 SHA512 b33a9b2f602f18165e048ef6a339bc5bf3f800fb1f2449e2e1a6090774ce3ef07b1d7ea8e9e6449fae7b91afcc1a6e281c1bb218a56bca74ba7f12b491fab186 +DIST xen-upstream-patches-4.17.1-pre-patchset-0.tar.bz2 87023 BLAKE2B 4b6c66c20aecde5a696ee6879b1a9e9b365eba3a2e55c7b13153adb4c100081242a5f4498e17597697ac96a75685d88536309accb8dcebee45b31c9b35a3d7d8 SHA512 9da15f7726f2813a6dc701dbf67c1aa52a574c8049238c6d18d68bc0c0c80db98b925cd1cb7ec5627ff8b3489847608a185353cda6e599e6e5bffe75339b18a7 diff --git a/app-emulation/xen-tools/xen-tools-4.15.5_pre1.ebuild b/app-emulation/xen-tools/xen-tools-4.15.5_pre1.ebuild new file mode 100644 index 000000000000..75003ae0412f --- /dev/null +++ b/app-emulation/xen-tools/xen-tools-4.15.5_pre1.ebuild @@ -0,0 +1,541 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_REQ_USE='ncurses,xml(+),threads(+)' + +inherit bash-completion-r1 flag-o-matic multilib python-single-r1 toolchain-funcs + +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + REPO="xen.git" + EGIT_REPO_URI="git://xenbits.xen.org/${REPO}" + S="${WORKDIR}/${REPO}" +else + KEYWORDS="amd64 ~arm ~arm64 x86" + + SEABIOS_VER="1.16.0" + EDK2_COMMIT="7b4a99be8a39c12d3a7fc4b8db9f0eab4ac688d5" + EDK2_OPENSSL_VERSION="1_1_1j" + EDK2_SOFTFLOAT_COMMIT="b64af41c3276f97f0e181920400ee056b9c88037" + EDK2_BROTLI_COMMIT="666c3280cc11dc433c303d79a83d4ffbdd12cc8d" + IPXE_COMMIT="3c040ad387099483102708bb1839110bc788cefb" + + XEN_GENTOO_PATCHSET_NUM=2 + XEN_GENTOO_PATCHSET_BASE=4.15.3 + XEN_PRE_PATCHSET_NUM=0 + XEN_PRE_VERSION_BASE=4.15.4 + + XEN_BASE_PV="${PV}" + if [[ -n "${XEN_PRE_VERSION_BASE}" ]]; then + XEN_BASE_PV="${XEN_PRE_VERSION_BASE}" + fi + if [[ -z "${XEN_GENTOO_PATCHSET_BASE}" ]]; then + XEN_GENTOO_PATCHSET_BASE="${XEN_BASE_PV}" + fi + + SRC_URI=" + https://downloads.xenproject.org/release/xen/${XEN_BASE_PV}/xen-${XEN_BASE_PV}.tar.gz + https://www.seabios.org/downloads/seabios-${SEABIOS_VER}.tar.gz + ipxe? ( https://xenbits.xen.org/xen-extfiles/ipxe-git-${IPXE_COMMIT}.tar.gz ) + ovmf? ( https://github.com/tianocore/edk2/archive/${EDK2_COMMIT}.tar.gz -> edk2-${EDK2_COMMIT}.tar.gz + https://github.com/openssl/openssl/archive/OpenSSL_${EDK2_OPENSSL_VERSION}.tar.gz + https://github.com/ucb-bar/berkeley-softfloat-3/archive/${EDK2_SOFTFLOAT_COMMIT}.tar.gz -> berkeley-softfloat-${EDK2_SOFTFLOAT_COMMIT}.tar.gz + https://github.com/google/brotli/archive/${EDK2_BROTLI_COMMIT}.tar.gz -> brotli-${EDK2_BROTLI_COMMIT}.tar.gz + ) + " + + if [[ -n "${XEN_PRE_PATCHSET_NUM}" ]]; then + XEN_UPSTREAM_PATCHES_TAG="$(ver_cut 1-3)-pre-patchset-${XEN_PRE_PATCHSET_NUM}" + XEN_UPSTREAM_PATCHES_NAME="xen-upstream-patches-${XEN_UPSTREAM_PATCHES_TAG}" + SRC_URI+=" https://gitweb.gentoo.org/proj/xen-upstream-patches.git/snapshot/${XEN_UPSTREAM_PATCHES_NAME}.tar.bz2" + XEN_UPSTREAM_PATCHES_DIR="${WORKDIR}/${XEN_UPSTREAM_PATCHES_NAME}" + fi + if [[ -n "${XEN_GENTOO_PATCHSET_NUM}" ]]; then + XEN_GENTOO_PATCHES_TAG="$(ver_cut 1-3 ${XEN_GENTOO_PATCHSET_BASE})-gentoo-patchset-${XEN_GENTOO_PATCHSET_NUM}" + XEN_GENTOO_PATCHES_NAME="xen-gentoo-patches-${XEN_GENTOO_PATCHES_TAG}" + SRC_URI+=" https://gitweb.gentoo.org/proj/xen-gentoo-patches.git/snapshot/${XEN_GENTOO_PATCHES_NAME}.tar.bz2" + XEN_GENTOO_PATCHES_DIR="${WORKDIR}/${XEN_GENTOO_PATCHES_NAME}" + fi +fi + +DESCRIPTION="Xen tools including QEMU and xl" +HOMEPAGE="https://xenproject.org" +DOCS=( README ) + +S="${WORKDIR}/xen-$(ver_cut 1-3 ${XEN_BASE_PV})" + +LICENSE="GPL-2" +SLOT="0/$(ver_cut 1-2)" +# Inclusion of IUSE ocaml on stabalizing requires maintainer of ocaml to (get off his hands and) make +# >=dev-lang/ocaml-4 stable +# Masked in profiles/eapi-5-files instead +IUSE="api debug doc +hvm +ipxe lzma ocaml ovmf pygrub python +qemu +qemu-traditional +rombios screen selinux sdl static-libs system-ipxe system-qemu system-seabios" + +REQUIRED_USE=" + ${PYTHON_REQUIRED_USE} + ipxe? ( rombios ) + ovmf? ( hvm ) + pygrub? ( python ) + rombios? ( hvm ) + system-ipxe? ( rombios ) + ?? ( ipxe system-ipxe ) + ?? ( qemu system-qemu )" + +COMMON_DEPEND=" + lzma? ( app-arch/xz-utils ) + qemu? ( + dev-libs/glib:2 + sys-libs/pam + ) + app-arch/bzip2 + dev-libs/libnl:3 + dev-libs/lzo:2 + dev-libs/yajl + sys-apps/util-linux + sys-fs/e2fsprogs + sys-libs/ncurses + sys-libs/zlib + ${PYTHON_DEPS} +" + +RDEPEND="${COMMON_DEPEND} + sys-apps/iproute2[-minimal] + net-misc/bridge-utils + screen? ( + app-misc/screen + app-admin/logrotate + ) + selinux? ( sec-policy/selinux-xen )" + +DEPEND="${COMMON_DEPEND} + app-misc/pax-utils + >=sys-kernel/linux-headers-4.11 + x11-libs/pixman + $(python_gen_cond_dep ' + dev-python/lxml[${PYTHON_USEDEP}] + ') + x86? ( sys-devel/dev86 + system-ipxe? ( sys-firmware/ipxe[qemu] ) + sys-power/iasl ) + api? ( dev-libs/libxml2 + net-misc/curl ) + + ovmf? ( + !arm? ( !arm64? ( dev-lang/nasm ) ) + $(python_gen_impl_dep sqlite) + ) + !amd64? ( >=sys-apps/dtc-1.4.0 ) + amd64? ( sys-power/iasl + system-seabios? ( + || ( + sys-firmware/seabios + sys-firmware/seabios-bin + ) + ) + system-ipxe? ( sys-firmware/ipxe[qemu] ) + rombios? ( sys-devel/bin86 sys-devel/dev86 ) ) + arm64? ( sys-power/iasl + rombios? ( sys-devel/bin86 sys-devel/dev86 ) ) + doc? ( + app-text/ghostscript-gpl + app-text/pandoc + $(python_gen_cond_dep ' + dev-python/markdown[${PYTHON_USEDEP}] + ') + dev-texlive/texlive-latexextra + media-gfx/transfig + ) + hvm? ( x11-base/xorg-proto ) + qemu? ( + app-arch/snappy:= + dev-util/meson + sdl? ( + media-libs/libsdl[X] + media-libs/libsdl2[X] + ) + ) + system-qemu? ( app-emulation/qemu[xen] ) + ocaml? ( dev-ml/findlib + dev-lang/ocaml[ocamlopt] ) + python? ( >=dev-lang/swig-4.0.0 )" + +BDEPEND="dev-lang/perl + sys-devel/bison + sys-devel/gettext" + +# hvmloader is used to bootstrap a fully virtualized kernel +# Approved by QA team in bug #144032 +QA_WX_LOAD=" + usr/libexec/xen/boot/hvmloader + usr/libexec/xen/boot/ovmf.bin + usr/libexec/xen/boot/xen-shim + usr/share/qemu-xen/qemu/hppa-firmware.img + usr/share/qemu-xen/qemu/opensbi-riscv32-generic-fw_dynamic.elf + usr/share/qemu-xen/qemu/opensbi-riscv64-generic-fw_dynamic.elf + usr/share/qemu-xen/qemu/s390-ccw.img + usr/share/qemu-xen/qemu/u-boot.e500 +" + +QA_EXECSTACK=" + usr/share/qemu-xen/qemu/hppa-firmware.img +" + +QA_PREBUILT=" + usr/libexec/xen/bin/elf2dmp + usr/libexec/xen/bin/ivshmem-client + usr/libexec/xen/bin/ivshmem-server + usr/libexec/xen/bin/qemu-edid + usr/libexec/xen/bin/qemu-img + usr/libexec/xen/bin/qemu-io + usr/libexec/xen/bin/qemu-keymap + usr/libexec/xen/bin/qemu-nbd + usr/libexec/xen/bin/qemu-pr-helper + usr/libexec/xen/bin/qemu-storage-daemon + usr/libexec/xen/bin/qemu-system-i386 + usr/libexec/xen/bin/virtfs-proxy-helper + usr/libexec/xen/boot/ovmf.bin + usr/libexec/xen/boot/xen-shim + usr/libexec/xen/libexec/qemu-pr-helper + usr/libexec/xen/libexec/virtfs-proxy-helper + usr/libexec/xen/libexec/virtiofsd + usr/libexec/xen/libexec/xen-bridge-helper + usr/share/qemu-xen/qemu/s390-ccw.img + usr/share/qemu-xen/qemu/s390-netboot.img + usr/share/qemu-xen/qemu/u-boot.e500 +" + +RESTRICT="test" + +pkg_setup() { + python_setup + export "CONFIG_LOMOUNT=y" + + #bug 522642, disable compile tools/tests + export "CONFIG_TESTS=n" + + if [[ -z ${XEN_TARGET_ARCH} ]] ; then + if use x86 && use amd64; then + die "Confusion! Both x86 and amd64 are set in your use flags!" + elif use x86; then + export XEN_TARGET_ARCH="x86_32" + elif use amd64 ; then + export XEN_TARGET_ARCH="x86_64" + elif use arm; then + export XEN_TARGET_ARCH="arm32" + elif use arm64; then + export XEN_TARGET_ARCH="arm64" + else + die "Unsupported architecture!" + fi + fi +} + +src_prepare() { + # move before Gentoo patch, one patch should apply to seabios, to fix gcc-4.5.x build err + mv ../seabios-${SEABIOS_VER} tools/firmware/seabios-dir-remote || die + pushd tools/firmware/ > /dev/null + ln -s seabios-dir-remote seabios-dir || die + popd > /dev/null + + if [[ -v XEN_UPSTREAM_PATCHES_DIR ]]; then + eapply "${XEN_UPSTREAM_PATCHES_DIR}" + fi + + if [[ -v XEN_GENTOO_PATCHES_DIR ]]; then + eapply "${XEN_GENTOO_PATCHES_DIR}" + fi + + # Rename qemu-bridge-helper to xen-bridge-helper to avoid file + # collisions with app-emulation/qemu. + sed -i 's/qemu-bridge-helper/xen-bridge-helper/g' \ + tools/qemu-xen/include/net/net.h \ + tools/qemu-xen/Makefile \ + tools/qemu-xen/qemu-bridge-helper.c \ + tools/qemu-xen/qemu-options.hx \ + || die + + if use ovmf; then + mv ../edk2-${EDK2_COMMIT} tools/firmware/ovmf-dir-remote || die + rm -r tools/firmware/ovmf-dir-remote/CryptoPkg/Library/OpensslLib/openssl || die + rm -r tools/firmware/ovmf-dir-remote/ArmPkg/Library/ArmSoftFloatLib/berkeley-softfloat-3 || die + rm -r tools/firmware/ovmf-dir-remote/BaseTools/Source/C/BrotliCompress/brotli || die + rm -r tools/firmware/ovmf-dir-remote/MdeModulePkg/Library/BrotliCustomDecompressLib/brotli || die + mv ../openssl-OpenSSL_${EDK2_OPENSSL_VERSION} tools/firmware/ovmf-dir-remote/CryptoPkg/Library/OpensslLib/openssl || die + mv ../berkeley-softfloat-3-${EDK2_SOFTFLOAT_COMMIT} tools/firmware/ovmf-dir-remote/ArmPkg/Library/ArmSoftFloatLib/berkeley-softfloat-3 || die + cp -r ../brotli-${EDK2_BROTLI_COMMIT} tools/firmware/ovmf-dir-remote/BaseTools/Source/C/BrotliCompress/brotli || die + cp -r ../brotli-${EDK2_BROTLI_COMMIT} tools/firmware/ovmf-dir-remote/MdeModulePkg/Library/BrotliCustomDecompressLib/brotli || die + cp tools/firmware/ovmf-makefile tools/firmware/ovmf-dir-remote/Makefile || die + + # Bug #816987 + pushd tools/firmware/ovmf-dir-remote/BaseTools/Source/C/BrotliCompress/brotli > /dev/null + eapply "${FILESDIR}/${PN}-4.15.1-brotli-gcc11.patch" + popd > /dev/null + + pushd tools/firmware/ovmf-dir-remote/MdeModulePkg/Library/BrotliCustomDecompressLib/brotli > /dev/null + eapply "${FILESDIR}/${PN}-4.15.1-brotli-gcc11.patch" + popd > /dev/null + fi + + # ipxe + if use ipxe; then + cp "${DISTDIR}/ipxe-git-${IPXE_COMMIT}.tar.gz" tools/firmware/etherboot/ipxe.tar.gz || die + + # gcc 11 + cp "${XEN_GENTOO_PATCHES_DIR}/ipxe/${PN}-4.15.0-ipxe-gcc11.patch" tools/firmware/etherboot/patches/ipxe-gcc11.patch || die + echo ipxe-gcc11.patch >> tools/firmware/etherboot/patches/series || die + fi + + mv tools/qemu-xen/qemu-bridge-helper.c tools/qemu-xen/xen-bridge-helper.c || die + + # Fix texi2html build error with new texi2html, qemu.doc.html + sed -i -e "/texi2html -monolithic/s/-number//" tools/qemu-xen-traditional/Makefile || die + + # Drop .config, fixes to gcc-4.6 + sed -e '/-include $(XEN_ROOT)\/.config/d' -i Config.mk || die "Couldn't drop" + + # drop flags + unset CFLAGS + unset LDFLAGS + unset ASFLAGS + unset CPPFLAGS + + if ! use pygrub; then + sed -e '/^SUBDIRS-y += pygrub/d' -i tools/Makefile || die + fi + + if ! use python; then + sed -e '/^SUBDIRS-y += python$/d' -i tools/Makefile || die + fi + + if ! use hvm; then + sed -e '/SUBDIRS-$(CONFIG_X86) += firmware/d' -i tools/Makefile || die + # Bug 351648 + elif ! use x86 && ! has x86 $(get_all_abis); then + mkdir -p "${WORKDIR}"/extra-headers/gnu || die + touch "${WORKDIR}"/extra-headers/gnu/stubs-32.h || die + export CPATH="${WORKDIR}"/extra-headers + fi + + if use qemu; then + if use sdl; then + sed -i -e "s:\$\$source/configure:\0 --enable-sdl:" \ + tools/Makefile || die + else + sed -i -e "s:\${QEMU_ROOT\:\-\.}/configure:\0 --disable-sdl:" \ + tools/qemu-xen-traditional/xen-setup || die + sed -i -e "s:\$\$source/configure:\0 --disable-sdl:" \ + tools/Makefile || die + fi + else + # Don't bother with qemu, only needed for fully virtualised guests + sed -i '/SUBDIRS-$(CONFIG_QEMU_XEN)/s/^/#/g' tools/Makefile || die + fi + + # Reset bash completion dir; Bug 472438 + sed -e "s;^BASH_COMPLETION_DIR :=.*;BASH_COMPLETION_DIR := $(get_bashcompdir);" \ + -i config/Paths.mk.in || die + + # xencommons, Bug #492332, sed lighter weight than patching + sed -e 's:\$QEMU_XEN -xen-domid:test -e "\$QEMU_XEN" \&\& &:' \ + -i tools/hotplug/Linux/init.d/xencommons.in || die + + # fix bashishm + sed -e '/Usage/s/\$//g' \ + -i tools/hotplug/Linux/init.d/xendriverdomain.in || die + + # respect multilib, usr/lib/libcacard.so.0.0.0 + sed -e "/^libdir=/s/\/lib/\/$(get_libdir)/" \ + -i tools/qemu-xen/configure || die + + #bug 518136, don't build 32bit exactuable for nomultilib profile + if [[ "${ARCH}" == 'amd64' ]] && ! has_multilib_profile; then + sed -i -e "/x86_emulator/d" tools/tests/Makefile || die + fi + + # uncomment lines in xl.conf + sed -e 's:^#autoballoon=:autoballoon=:' \ + -e 's:^#lockfile=:lockfile=:' \ + -e 's:^#vif.default.script=:vif.default.script=:' \ + -i tools/examples/xl.conf || die + + # disable capstone (Bug #673474) + sed -e "s:\$\$source/configure:\0 --disable-capstone:" \ + -i tools/Makefile || die + + # disable glusterfs + sed -e "s:\$\$source/configure:\0 --disable-glusterfs:" \ + -i tools/Makefile || die + + # disable jpeg automagic + sed -e "s:\$\$source/configure:\0 --disable-vnc-jpeg:" \ + -i tools/Makefile || die + + # disable png automagic + sed -e "s:\$\$source/configure:\0 --disable-vnc-png:" \ + -i tools/Makefile || die + + # disable docker (Bug #732970) + sed -e "s:\$\$source/configure:\0 --disable-containers:" \ + -i tools/Makefile || die + + # disable abi-dumper (Bug #791172) + sed -e 's/$(ABI_DUMPER) /echo /g' \ + -i tools/libs/libs.mk || die + + # Remove -Werror + find . -type f \( -name Makefile -o -name "*.mk" \) \ + -exec sed -i \ + -e 's/-Werror //g' \ + -e '/^CFLAGS *+= -Werror$/d' \ + -e 's/, "-Werror"//' \ + {} + || die + + default +} + +src_configure() { + local myconf=( + --libdir="${EPREFIX}/usr/$(get_libdir)" + --libexecdir="${EPREFIX}/usr/libexec" + --localstatedir="${EPREFIX}/var" + --disable-golang + --disable-werror + --disable-xen + --enable-tools + --enable-docs + $(use_enable api xenapi) + $(use_enable ipxe) + $(usex system-ipxe '--with-system-ipxe=/usr/share/ipxe' '') + $(use_enable ocaml ocamltools) + $(use_enable ovmf) + $(use_enable rombios) + --with-xenstored=$(usex ocaml 'oxenstored' 'xenstored') + ) + + use system-seabios && myconf+=( --with-system-seabios=/usr/share/seabios/bios.bin ) + use system-qemu && myconf+=( --with-system-qemu=/usr/bin/qemu-system-x86_64 ) + use amd64 && myconf+=( $(use_enable qemu-traditional) ) + tc-ld-disable-gold # Bug 669570 + econf ${myconf[@]} +} + +src_compile() { + local myopt + use debug && myopt="${myopt} debug=y" + use python && myopt="${myopt} XENSTAT_PYTHON_BINDINGS=y" + + if test-flag-CC -fno-strict-overflow; then + append-flags -fno-strict-overflow + fi + + # bug #845099 + if use ipxe; then + local -x NO_WERROR=1 + fi + + emake CC="$(tc-getCC)" LD="$(tc-getLD)" AR="$(tc-getAR)" RANLIB="$(tc-getRANLIB)" build-tools ${myopt} + + if use doc; then + emake -C docs build + else + emake -C docs man-pages + fi +} + +src_install() { + # Override auto-detection in the build system, bug #382573 + export INITD_DIR=/tmp/init.d + export CONFIG_LEAF_DIR=../tmp/default + + # Let the build system compile installed Python modules. + local PYTHONDONTWRITEBYTECODE + export PYTHONDONTWRITEBYTECODE + + emake DESTDIR="${ED}" DOCDIR="/usr/share/doc/${PF}" \ + XEN_PYTHON_NATIVE_INSTALL=y install-tools + + # Created at runtime + rm -rv "${ED}/var/run" || die + + # Fix the remaining Python shebangs. + python_fix_shebang "${D}" + + # Remove RedHat-specific stuff + rm -rf "${D}"/tmp || die + + if use doc; then + emake DESTDIR="${D}" DOCDIR="/usr/share/doc/${PF}" install-docs + dodoc -r docs/{pdf,txt} + else + emake -C docs DESTDIR="${D}" DOCDIR="/usr/share/doc/${PF}" install-man-pages # Bug 668032 + fi + dodoc ${DOCS[@]} + + newconfd "${FILESDIR}"/xendomains.confd xendomains + newconfd "${FILESDIR}"/xenstored.confd xenstored + newconfd "${FILESDIR}"/xenconsoled.confd xenconsoled + newinitd "${FILESDIR}"/xendomains.initd-r2 xendomains + newinitd "${FILESDIR}"/xenstored.initd-r1 xenstored + newinitd "${FILESDIR}"/xenconsoled.initd xenconsoled + newinitd "${FILESDIR}"/xencommons.initd xencommons + newconfd "${FILESDIR}"/xencommons.confd xencommons + newinitd "${FILESDIR}"/xenqemudev.initd xenqemudev + newconfd "${FILESDIR}"/xenqemudev.confd xenqemudev + newinitd "${FILESDIR}"/xen-watchdog.initd xen-watchdog + + if use screen; then + cat "${FILESDIR}"/xendomains-screen.confd >> "${D}"/etc/conf.d/xendomains || die + cp "${FILESDIR}"/xen-consoles.logrotate "${D}"/etc/xen/ || die + keepdir /var/log/xen-consoles + fi + + # For -static-libs wrt Bug 384355 + if ! use static-libs; then + rm -f "${D}"/usr/$(get_libdir)/*.a "${D}"/usr/$(get_libdir)/ocaml/*/*.a + fi + + # for xendomains + keepdir /etc/xen/auto + + # Remove files failing QA AFTER emake installs them, avoiding seeking absent files + find "${D}" \( -name openbios-sparc32 -o -name openbios-sparc64 \ + -o -name openbios-ppc -o -name palcode-clipper \) -delete || die + + keepdir /var/lib/xen/dump + keepdir /var/lib/xen/xenpaging + keepdir /var/lib/xenstored + keepdir /var/log/xen + + if use python; then + python_domodule "${S}/tools/libs/stat/bindings/swig/python/xenstat.py" + python_domodule "${S}/tools/libs/stat/bindings/swig/python/_xenstat.so" + fi + + python_optimize +} + +pkg_postinst() { + elog "Official Xen Guide and the offical wiki page:" + elog "https://wiki.gentoo.org/wiki/Xen" + elog "https://wiki.xen.org/wiki/Main_Page" + elog "" + elog "Recommended to utilise the xencommons script to config system at boot" + elog "Add by use of rc-update on completion of the install" + + if ! use hvm; then + echo + elog "HVM (VT-x and AMD-V) support has been disabled. If you need hvm" + elog "support enable the hvm use flag." + elog "An x86 or amd64 system is required to build HVM support." + fi + + if use qemu; then + elog "The qemu-bridge-helper is renamed to the xen-bridge-helper in the in source" + elog "build of qemu. This allows for app-emulation/qemu to be emerged concurrently" + elog "with the qemu capable xen. It is up to the user to distinguish between and utilise" + elog "the qemu-bridge-helper and the xen-bridge-helper. File bugs of any issues that arise" + fi +} diff --git a/app-emulation/xen-tools/xen-tools-4.16.4_pre1.ebuild b/app-emulation/xen-tools/xen-tools-4.16.4_pre1.ebuild new file mode 100644 index 000000000000..00ad2555a8f4 --- /dev/null +++ b/app-emulation/xen-tools/xen-tools-4.16.4_pre1.ebuild @@ -0,0 +1,532 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_REQ_USE='ncurses,xml(+),threads(+)' + +inherit bash-completion-r1 flag-o-matic multilib python-single-r1 readme.gentoo-r1 toolchain-funcs + +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + REPO="xen.git" + EGIT_REPO_URI="git://xenbits.xen.org/${REPO}" + S="${WORKDIR}/${REPO}" +else + KEYWORDS="~amd64 ~arm ~arm64 ~x86" + + SEABIOS_VER="1.16.0" + EDK2_COMMIT="7b4a99be8a39c12d3a7fc4b8db9f0eab4ac688d5" + EDK2_OPENSSL_VERSION="1_1_1j" + EDK2_SOFTFLOAT_COMMIT="b64af41c3276f97f0e181920400ee056b9c88037" + EDK2_BROTLI_COMMIT="666c3280cc11dc433c303d79a83d4ffbdd12cc8d" + IPXE_COMMIT="3c040ad387099483102708bb1839110bc788cefb" + + XEN_GENTOO_PATCHSET_NUM=2 + XEN_GENTOO_PATCHSET_BASE=4.16.1 + XEN_PRE_PATCHSET_NUM=0 + XEN_PRE_VERSION_BASE=4.16.3 + + XEN_BASE_PV="${PV}" + if [[ -n "${XEN_PRE_VERSION_BASE}" ]]; then + XEN_BASE_PV="${XEN_PRE_VERSION_BASE}" + fi + + SRC_URI=" + https://downloads.xenproject.org/release/xen/${XEN_BASE_PV}/xen-${XEN_BASE_PV}.tar.gz + https://www.seabios.org/downloads/seabios-${SEABIOS_VER}.tar.gz + ipxe? ( https://xenbits.xen.org/xen-extfiles/ipxe-git-${IPXE_COMMIT}.tar.gz ) + ovmf? ( https://github.com/tianocore/edk2/archive/${EDK2_COMMIT}.tar.gz -> edk2-${EDK2_COMMIT}.tar.gz + https://github.com/openssl/openssl/archive/OpenSSL_${EDK2_OPENSSL_VERSION}.tar.gz + https://github.com/ucb-bar/berkeley-softfloat-3/archive/${EDK2_SOFTFLOAT_COMMIT}.tar.gz -> berkeley-softfloat-${EDK2_SOFTFLOAT_COMMIT}.tar.gz + https://github.com/google/brotli/archive/${EDK2_BROTLI_COMMIT}.tar.gz -> brotli-${EDK2_BROTLI_COMMIT}.tar.gz + ) + " + + if [[ -n "${XEN_PRE_PATCHSET_NUM}" ]]; then + XEN_UPSTREAM_PATCHES_TAG="$(ver_cut 1-3)-pre-patchset-${XEN_PRE_PATCHSET_NUM}" + XEN_UPSTREAM_PATCHES_NAME="xen-upstream-patches-${XEN_UPSTREAM_PATCHES_TAG}" + SRC_URI+=" https://gitweb.gentoo.org/proj/xen-upstream-patches.git/snapshot/${XEN_UPSTREAM_PATCHES_NAME}.tar.bz2" + XEN_UPSTREAM_PATCHES_DIR="${WORKDIR}/${XEN_UPSTREAM_PATCHES_NAME}" + fi + if [[ -n "${XEN_GENTOO_PATCHSET_NUM}" ]]; then + XEN_GENTOO_PATCHES_TAG="$(ver_cut 1-3 ${XEN_GENTOO_PATCHSET_BASE})-gentoo-patchset-${XEN_GENTOO_PATCHSET_NUM}" + XEN_GENTOO_PATCHES_NAME="xen-gentoo-patches-${XEN_GENTOO_PATCHES_TAG}" + SRC_URI+=" https://gitweb.gentoo.org/proj/xen-gentoo-patches.git/snapshot/${XEN_GENTOO_PATCHES_NAME}.tar.bz2" + XEN_GENTOO_PATCHES_DIR="${WORKDIR}/${XEN_GENTOO_PATCHES_NAME}" + fi +fi + +DESCRIPTION="Xen tools including QEMU and xl" +HOMEPAGE="https://xenproject.org" +DOCS=( README ) + +S="${WORKDIR}/xen-$(ver_cut 1-3 ${XEN_BASE_PV})" + +LICENSE="GPL-2" +SLOT="0/$(ver_cut 1-2)" +# Inclusion of IUSE ocaml on stabalizing requires maintainer of ocaml to (get off his hands and) make +# >=dev-lang/ocaml-4 stable +# Masked in profiles/eapi-5-files instead +IUSE="api debug doc +hvm +ipxe lzma ocaml ovmf pygrub python +qemu +qemu-traditional +rombios screen selinux sdl static-libs system-ipxe system-qemu system-seabios systemd zstd" + +REQUIRED_USE=" + ${PYTHON_REQUIRED_USE} + ipxe? ( rombios ) + ovmf? ( hvm ) + pygrub? ( python ) + rombios? ( hvm ) + system-ipxe? ( rombios ) + ?? ( ipxe system-ipxe ) + ?? ( qemu system-qemu )" + +COMMON_DEPEND=" + lzma? ( app-arch/xz-utils ) + qemu? ( + dev-libs/glib:2 + sys-libs/pam + ) + zstd? ( app-arch/zstd ) + app-arch/bzip2 + app-arch/zstd + dev-libs/libnl:3 + dev-libs/lzo:2 + dev-libs/yajl + sys-apps/util-linux + sys-fs/e2fsprogs + sys-libs/ncurses + sys-libs/zlib + ${PYTHON_DEPS} +" + +RDEPEND="${COMMON_DEPEND} + sys-apps/iproute2[-minimal] + net-misc/bridge-utils + screen? ( + app-misc/screen + app-admin/logrotate + ) + selinux? ( sec-policy/selinux-xen )" + +DEPEND="${COMMON_DEPEND} + app-misc/pax-utils + >=sys-kernel/linux-headers-4.11 + x11-libs/pixman + $(python_gen_cond_dep ' + dev-python/lxml[${PYTHON_USEDEP}] + ') + x86? ( sys-devel/dev86 + system-ipxe? ( sys-firmware/ipxe[qemu] ) + sys-power/iasl ) + api? ( dev-libs/libxml2 + net-misc/curl ) + + ovmf? ( + !arm? ( !arm64? ( dev-lang/nasm ) ) + $(python_gen_impl_dep sqlite) + ) + !amd64? ( >=sys-apps/dtc-1.4.0 ) + amd64? ( sys-power/iasl + system-seabios? ( + || ( + sys-firmware/seabios + sys-firmware/seabios-bin + ) + ) + system-ipxe? ( sys-firmware/ipxe[qemu] ) + rombios? ( sys-devel/bin86 sys-devel/dev86 ) ) + arm64? ( sys-power/iasl + rombios? ( sys-devel/bin86 sys-devel/dev86 ) ) + doc? ( + app-text/ghostscript-gpl + app-text/pandoc + $(python_gen_cond_dep ' + dev-python/markdown[${PYTHON_USEDEP}] + ') + dev-texlive/texlive-latexextra + media-gfx/transfig + ) + hvm? ( x11-base/xorg-proto ) + qemu? ( + app-arch/snappy:= + dev-util/meson + sdl? ( + media-libs/libsdl[X] + media-libs/libsdl2[X] + ) + ) + system-qemu? ( app-emulation/qemu[xen] ) + ocaml? ( dev-ml/findlib + dev-lang/ocaml[ocamlopt] ) + python? ( >=dev-lang/swig-4.0.0 )" + +BDEPEND="dev-lang/perl + sys-devel/bison + sys-devel/gettext" + +# hvmloader is used to bootstrap a fully virtualized kernel +# Approved by QA team in bug #144032 +QA_WX_LOAD=" + usr/libexec/xen/boot/hvmloader + usr/libexec/xen/boot/ovmf.bin + usr/libexec/xen/boot/xen-shim + usr/share/qemu-xen/qemu/hppa-firmware.img + usr/share/qemu-xen/qemu/opensbi-riscv32-generic-fw_dynamic.elf + usr/share/qemu-xen/qemu/opensbi-riscv64-generic-fw_dynamic.elf + usr/share/qemu-xen/qemu/s390-ccw.img + usr/share/qemu-xen/qemu/u-boot.e500 +" + +QA_EXECSTACK=" + usr/share/qemu-xen/qemu/hppa-firmware.img +" + +QA_PREBUILT=" + usr/libexec/xen/bin/elf2dmp + usr/libexec/xen/bin/ivshmem-client + usr/libexec/xen/bin/ivshmem-server + usr/libexec/xen/bin/qemu-edid + usr/libexec/xen/bin/qemu-img + usr/libexec/xen/bin/qemu-io + usr/libexec/xen/bin/qemu-keymap + usr/libexec/xen/bin/qemu-nbd + usr/libexec/xen/bin/qemu-pr-helper + usr/libexec/xen/bin/qemu-storage-daemon + usr/libexec/xen/bin/qemu-system-i386 + usr/libexec/xen/bin/virtfs-proxy-helper + usr/libexec/xen/boot/ovmf.bin + usr/libexec/xen/boot/xen-shim + usr/libexec/xen/libexec/qemu-pr-helper + usr/libexec/xen/libexec/virtfs-proxy-helper + usr/libexec/xen/libexec/virtiofsd + usr/libexec/xen/libexec/xen-bridge-helper + usr/share/qemu-xen/qemu/s390-ccw.img + usr/share/qemu-xen/qemu/s390-netboot.img + usr/share/qemu-xen/qemu/u-boot.e500 +" + +RESTRICT="test" + +pkg_setup() { + python_setup + export "CONFIG_LOMOUNT=y" + + #bug 522642, disable compile tools/tests + export "CONFIG_TESTS=n" + + if [[ -z ${XEN_TARGET_ARCH} ]] ; then + if use x86 && use amd64; then + die "Confusion! Both x86 and amd64 are set in your use flags!" + elif use x86; then + export XEN_TARGET_ARCH="x86_32" + elif use amd64 ; then + export XEN_TARGET_ARCH="x86_64" + elif use arm; then + export XEN_TARGET_ARCH="arm32" + elif use arm64; then + export XEN_TARGET_ARCH="arm64" + else + die "Unsupported architecture!" + fi + fi +} + +src_prepare() { + # move before Gentoo patch, one patch should apply to seabios, to fix gcc-4.5.x build err + mv ../seabios-${SEABIOS_VER} tools/firmware/seabios-dir-remote || die + pushd tools/firmware/ > /dev/null + ln -s seabios-dir-remote seabios-dir || die + popd > /dev/null + + if [[ -v XEN_UPSTREAM_PATCHES_DIR ]]; then + eapply "${XEN_UPSTREAM_PATCHES_DIR}" + fi + + if [[ -v XEN_GENTOO_PATCHES_DIR ]]; then + eapply "${XEN_GENTOO_PATCHES_DIR}" + fi + + # Rename qemu-bridge-helper to xen-bridge-helper to avoid file + # collisions with app-emulation/qemu. + sed -i 's/qemu-bridge-helper/xen-bridge-helper/g' \ + tools/qemu-xen/include/net/net.h \ + tools/qemu-xen/meson.build \ + tools/qemu-xen/qemu-bridge-helper.c \ + tools/qemu-xen/qemu-options.hx \ + || die + mv tools/qemu-xen/qemu-bridge-helper.c tools/qemu-xen/xen-bridge-helper.c || die + + if use ovmf; then + mv ../edk2-${EDK2_COMMIT} tools/firmware/ovmf-dir-remote || die + rm -r tools/firmware/ovmf-dir-remote/CryptoPkg/Library/OpensslLib/openssl || die + rm -r tools/firmware/ovmf-dir-remote/ArmPkg/Library/ArmSoftFloatLib/berkeley-softfloat-3 || die + rm -r tools/firmware/ovmf-dir-remote/BaseTools/Source/C/BrotliCompress/brotli || die + rm -r tools/firmware/ovmf-dir-remote/MdeModulePkg/Library/BrotliCustomDecompressLib/brotli || die + mv ../openssl-OpenSSL_${EDK2_OPENSSL_VERSION} tools/firmware/ovmf-dir-remote/CryptoPkg/Library/OpensslLib/openssl || die + mv ../berkeley-softfloat-3-${EDK2_SOFTFLOAT_COMMIT} tools/firmware/ovmf-dir-remote/ArmPkg/Library/ArmSoftFloatLib/berkeley-softfloat-3 || die + cp -r ../brotli-${EDK2_BROTLI_COMMIT} tools/firmware/ovmf-dir-remote/BaseTools/Source/C/BrotliCompress/brotli || die + cp -r ../brotli-${EDK2_BROTLI_COMMIT} tools/firmware/ovmf-dir-remote/MdeModulePkg/Library/BrotliCustomDecompressLib/brotli || die + cp tools/firmware/ovmf-makefile tools/firmware/ovmf-dir-remote/Makefile || die + + # Bug #816987 + pushd tools/firmware/ovmf-dir-remote/BaseTools/Source/C/BrotliCompress/brotli > /dev/null + eapply "${XEN_GENTOO_PATCHES_DIR}/ovmf/${PN}-4.15.1-brotli-gcc11.patch" + popd > /dev/null + + pushd tools/firmware/ovmf-dir-remote/MdeModulePkg/Library/BrotliCustomDecompressLib/brotli > /dev/null + eapply "${XEN_GENTOO_PATCHES_DIR}/ovmf/${PN}-4.15.1-brotli-gcc11.patch" + popd > /dev/null + fi + + # ipxe + if use ipxe; then + cp "${DISTDIR}/ipxe-git-${IPXE_COMMIT}.tar.gz" tools/firmware/etherboot/ipxe.tar.gz || die + + # gcc 11 + cp "${XEN_GENTOO_PATCHES_DIR}/ipxe/${PN}-4.15.0-ipxe-gcc11.patch" tools/firmware/etherboot/patches/ipxe-gcc11.patch || die + echo ipxe-gcc11.patch >> tools/firmware/etherboot/patches/series || die + fi + + # Fix texi2html build error with new texi2html, qemu.doc.html + sed -i -e "/texi2html -monolithic/s/-number//" tools/qemu-xen-traditional/Makefile || die + + # Drop .config, fixes to gcc-4.6 + sed -e '/-include $(XEN_ROOT)\/.config/d' -i Config.mk || die "Couldn't drop" + + # drop flags + unset CFLAGS + unset LDFLAGS + unset ASFLAGS + unset CPPFLAGS + + if ! use pygrub; then + sed -e '/^SUBDIRS-y += pygrub/d' -i tools/Makefile || die + fi + + if ! use python; then + sed -e '/^SUBDIRS-y += python$/d' -i tools/Makefile || die + fi + + if ! use hvm; then + sed -e '/SUBDIRS-$(CONFIG_X86) += firmware/d' -i tools/Makefile || die + # Bug 351648 + elif ! use x86 && ! has x86 $(get_all_abis); then + mkdir -p "${WORKDIR}"/extra-headers/gnu || die + touch "${WORKDIR}"/extra-headers/gnu/stubs-32.h || die + export CPATH="${WORKDIR}"/extra-headers + fi + + if use qemu; then + if use sdl; then + sed -i -e "s:\$\$source/configure:\0 --enable-sdl:" \ + tools/Makefile || die + else + sed -i -e "s:\${QEMU_ROOT\:\-\.}/configure:\0 --disable-sdl:" \ + tools/qemu-xen-traditional/xen-setup || die + sed -i -e "s:\$\$source/configure:\0 --disable-sdl:" \ + tools/Makefile || die + fi + else + # Don't bother with qemu, only needed for fully virtualised guests + sed -i '/SUBDIRS-$(CONFIG_QEMU_XEN)/s/^/#/g' tools/Makefile || die + fi + + # Reset bash completion dir; Bug 472438 + sed -e "s;^BASH_COMPLETION_DIR :=.*;BASH_COMPLETION_DIR := $(get_bashcompdir);" \ + -i config/Paths.mk.in || die + + # xencommons, Bug #492332, sed lighter weight than patching + sed -e 's:\$QEMU_XEN -xen-domid:test -e "\$QEMU_XEN" \&\& &:' \ + -i tools/hotplug/Linux/init.d/xencommons.in || die + + # fix bashishm + sed -e '/Usage/s/\$//g' \ + -i tools/hotplug/Linux/init.d/xendriverdomain.in || die + + # respect multilib, usr/lib/libcacard.so.0.0.0 + sed -e "/^libdir=/s/\/lib/\/$(get_libdir)/" \ + -i tools/qemu-xen/configure || die + + #bug 518136, don't build 32bit exactuable for nomultilib profile + if [[ "${ARCH}" == 'amd64' ]] && ! has_multilib_profile; then + sed -i -e "/x86_emulator/d" tools/tests/Makefile || die + fi + + # uncomment lines in xl.conf + sed -e 's:^#autoballoon=:autoballoon=:' \ + -e 's:^#lockfile=:lockfile=:' \ + -e 's:^#vif.default.script=:vif.default.script=:' \ + -i tools/examples/xl.conf || die + + # disable capstone (Bug #673474) + sed -e "s:\$\$source/configure:\0 --disable-capstone:" \ + -i tools/Makefile || die + + # disable glusterfs + sed -e "s:\$\$source/configure:\0 --disable-glusterfs:" \ + -i tools/Makefile || die + + # disable jpeg automagic + sed -e "s:\$\$source/configure:\0 --disable-vnc-jpeg:" \ + -i tools/Makefile || die + + # disable png automagic + sed -e "s:\$\$source/configure:\0 --disable-vnc-png:" \ + -i tools/Makefile || die + + # disable docker (Bug #732970) + sed -e "s:\$\$source/configure:\0 --disable-containers:" \ + -i tools/Makefile || die + + # disable abi-dumper (Bug #791172) + sed -e 's/$(ABI_DUMPER) /echo /g' \ + -i tools/libs/libs.mk || die + + # Remove -Werror + find . -type f \( -name Makefile -o -name "*.mk" \) \ + -exec sed -i \ + -e 's/-Werror //g' \ + -e '/^CFLAGS *+= -Werror$/d' \ + -e 's/, "-Werror"//' \ + {} + || die + + default +} + +src_configure() { + local myconf=( + --libdir="${EPREFIX}/usr/$(get_libdir)" + --libexecdir="${EPREFIX}/usr/libexec" + --localstatedir="${EPREFIX}/var" + --disable-golang + --disable-werror + --disable-xen + --enable-tools + --enable-docs + $(use_enable api xenapi) + $(use_enable ipxe) + $(usex system-ipxe '--with-system-ipxe=/usr/share/ipxe' '') + $(use_enable ocaml ocamltools) + $(use_enable ovmf) + $(use_enable rombios) + $(use_enable systemd) + --with-xenstored=$(usex ocaml 'oxenstored' 'xenstored') + ) + + use system-seabios && myconf+=( --with-system-seabios=/usr/share/seabios/bios.bin ) + use system-qemu && myconf+=( --with-system-qemu=/usr/bin/qemu-system-x86_64 ) + use amd64 && myconf+=( $(use_enable qemu-traditional) ) + tc-ld-disable-gold # Bug 669570 + econf ${myconf[@]} +} + +src_compile() { + local myopt + use debug && myopt="${myopt} debug=y" + use python && myopt="${myopt} XENSTAT_PYTHON_BINDINGS=y" + + if test-flag-CC -fno-strict-overflow; then + append-flags -fno-strict-overflow + fi + + # bug #845099 + if use ipxe; then + local -x NO_WERROR=1 + fi + + emake \ + HOSTCC="$(tc-getBUILD_CC)" \ + HOSTCXX="$(tc-getBUILD_CXX)" \ + CC="$(tc-getCC)" \ + CXX="$(tc-getCXX)" \ + LD="$(tc-getLD)" \ + AR="$(tc-getAR)" \ + OBJDUMP="$(tc-getOBJDUMP)" \ + RANLIB="$(tc-getRANLIB)" \ + build-tools ${myopt} + + if use doc; then + emake -C docs build + else + emake -C docs man-pages + fi +} + +src_install() { + # Override auto-detection in the build system, bug #382573 + export INITD_DIR=/tmp/init.d + export CONFIG_LEAF_DIR=../tmp/default + + # Let the build system compile installed Python modules. + local PYTHONDONTWRITEBYTECODE + export PYTHONDONTWRITEBYTECODE + + emake DESTDIR="${ED}" DOCDIR="/usr/share/doc/${PF}" \ + XEN_PYTHON_NATIVE_INSTALL=y install-tools + + # Created at runtime + rm -rv "${ED}/var/run" || die + + # Fix the remaining Python shebangs. + python_fix_shebang "${D}" + + # Remove RedHat-specific stuff + rm -rf "${D}"/tmp || die + + if use doc; then + emake DESTDIR="${D}" DOCDIR="/usr/share/doc/${PF}" install-docs + dodoc -r docs/{pdf,txt} + else + emake -C docs DESTDIR="${D}" DOCDIR="/usr/share/doc/${PF}" install-man-pages # Bug 668032 + fi + dodoc ${DOCS[@]} + + newconfd "${FILESDIR}"/xendomains.confd xendomains + newconfd "${FILESDIR}"/xenstored.confd xenstored + newconfd "${FILESDIR}"/xenconsoled.confd xenconsoled + newinitd "${FILESDIR}"/xendomains.initd-r2 xendomains + newinitd "${FILESDIR}"/xenstored.initd-r1 xenstored + newinitd "${FILESDIR}"/xenconsoled.initd xenconsoled + newinitd "${FILESDIR}"/xencommons.initd xencommons + newconfd "${FILESDIR}"/xencommons.confd xencommons + newinitd "${FILESDIR}"/xenqemudev.initd xenqemudev + newconfd "${FILESDIR}"/xenqemudev.confd xenqemudev + newinitd "${FILESDIR}"/xen-watchdog.initd xen-watchdog + + if use screen; then + cat "${FILESDIR}"/xendomains-screen.confd >> "${D}"/etc/conf.d/xendomains || die + cp "${FILESDIR}"/xen-consoles.logrotate "${D}"/etc/xen/ || die + keepdir /var/log/xen-consoles + fi + + # For -static-libs wrt Bug 384355 + if ! use static-libs; then + rm -f "${D}"/usr/$(get_libdir)/*.a "${D}"/usr/$(get_libdir)/ocaml/*/*.a + fi + + # for xendomains + keepdir /etc/xen/auto + + # Remove files failing QA AFTER emake installs them, avoiding seeking absent files + find "${D}" \( -name openbios-sparc32 -o -name openbios-sparc64 \ + -o -name openbios-ppc -o -name palcode-clipper \) -delete || die + + keepdir /var/lib/xen/dump + keepdir /var/lib/xen/xenpaging + keepdir /var/lib/xenstored + keepdir /var/log/xen + + if use python; then + python_domodule "${S}/tools/libs/stat/bindings/swig/python/xenstat.py" + python_domodule "${S}/tools/libs/stat/bindings/swig/python/_xenstat.so" + fi + + python_optimize + + readme.gentoo_create_doc +} + +pkg_postinst() { + readme.gentoo_print_elog +} diff --git a/app-emulation/xen-tools/xen-tools-4.17.1_pre1.ebuild b/app-emulation/xen-tools/xen-tools-4.17.1_pre1.ebuild new file mode 100644 index 000000000000..0ad9e03de6f4 --- /dev/null +++ b/app-emulation/xen-tools/xen-tools-4.17.1_pre1.ebuild @@ -0,0 +1,533 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_REQ_USE='ncurses,xml(+),threads(+)' + +inherit bash-completion-r1 flag-o-matic multilib python-single-r1 readme.gentoo-r1 toolchain-funcs + +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + REPO="xen.git" + EGIT_REPO_URI="git://xenbits.xen.org/${REPO}" + S="${WORKDIR}/${REPO}" +else + KEYWORDS="~amd64 ~arm ~arm64 ~x86" + + SEABIOS_VER="1.16.0" + EDK2_COMMIT="7b4a99be8a39c12d3a7fc4b8db9f0eab4ac688d5" + EDK2_OPENSSL_VERSION="1_1_1j" + EDK2_SOFTFLOAT_COMMIT="b64af41c3276f97f0e181920400ee056b9c88037" + EDK2_BROTLI_COMMIT="666c3280cc11dc433c303d79a83d4ffbdd12cc8d" + IPXE_COMMIT="3c040ad387099483102708bb1839110bc788cefb" + + XEN_GENTOO_PATCHSET_NUM=0 + XEN_GENTOO_PATCHSET_BASE=4.17.0 + XEN_PRE_PATCHSET_NUM=0 + XEN_PRE_VERSION_BASE=4.17.0 + + XEN_BASE_PV="${PV}" + if [[ -n "${XEN_PRE_VERSION_BASE}" ]]; then + XEN_BASE_PV="${XEN_PRE_VERSION_BASE}" + fi + + SRC_URI=" + https://downloads.xenproject.org/release/xen/${XEN_BASE_PV}/xen-${XEN_BASE_PV}.tar.gz + https://www.seabios.org/downloads/seabios-${SEABIOS_VER}.tar.gz + ipxe? ( https://xenbits.xen.org/xen-extfiles/ipxe-git-${IPXE_COMMIT}.tar.gz ) + ovmf? ( https://github.com/tianocore/edk2/archive/${EDK2_COMMIT}.tar.gz -> edk2-${EDK2_COMMIT}.tar.gz + https://github.com/openssl/openssl/archive/OpenSSL_${EDK2_OPENSSL_VERSION}.tar.gz + https://github.com/ucb-bar/berkeley-softfloat-3/archive/${EDK2_SOFTFLOAT_COMMIT}.tar.gz -> berkeley-softfloat-${EDK2_SOFTFLOAT_COMMIT}.tar.gz + https://github.com/google/brotli/archive/${EDK2_BROTLI_COMMIT}.tar.gz -> brotli-${EDK2_BROTLI_COMMIT}.tar.gz + ) + " + + if [[ -n "${XEN_PRE_PATCHSET_NUM}" ]]; then + XEN_UPSTREAM_PATCHES_TAG="$(ver_cut 1-3)-pre-patchset-${XEN_PRE_PATCHSET_NUM}" + XEN_UPSTREAM_PATCHES_NAME="xen-upstream-patches-${XEN_UPSTREAM_PATCHES_TAG}" + SRC_URI+=" https://gitweb.gentoo.org/proj/xen-upstream-patches.git/snapshot/${XEN_UPSTREAM_PATCHES_NAME}.tar.bz2" + XEN_UPSTREAM_PATCHES_DIR="${WORKDIR}/${XEN_UPSTREAM_PATCHES_NAME}" + fi + if [[ -n "${XEN_GENTOO_PATCHSET_NUM}" ]]; then + XEN_GENTOO_PATCHES_TAG="$(ver_cut 1-3 ${XEN_GENTOO_PATCHSET_BASE})-gentoo-patchset-${XEN_GENTOO_PATCHSET_NUM}" + XEN_GENTOO_PATCHES_NAME="xen-gentoo-patches-${XEN_GENTOO_PATCHES_TAG}" + SRC_URI+=" https://gitweb.gentoo.org/proj/xen-gentoo-patches.git/snapshot/${XEN_GENTOO_PATCHES_NAME}.tar.bz2" + XEN_GENTOO_PATCHES_DIR="${WORKDIR}/${XEN_GENTOO_PATCHES_NAME}" + fi +fi + +DESCRIPTION="Xen tools including QEMU and xl" +HOMEPAGE="https://xenproject.org" +DOCS=( README ) + +S="${WORKDIR}/xen-$(ver_cut 1-3 ${XEN_BASE_PV})" + +LICENSE="GPL-2" +SLOT="0/$(ver_cut 1-2)" +# Inclusion of IUSE ocaml on stabalizing requires maintainer of ocaml to (get off his hands and) make +# >=dev-lang/ocaml-4 stable +# Masked in profiles/eapi-5-files instead +IUSE="api debug doc +hvm +ipxe lzma ocaml ovmf pygrub python +qemu +qemu-traditional +rombios screen selinux sdl static-libs system-ipxe system-qemu system-seabios systemd zstd" + +REQUIRED_USE=" + ${PYTHON_REQUIRED_USE} + ipxe? ( rombios ) + ovmf? ( hvm ) + pygrub? ( python ) + rombios? ( hvm ) + system-ipxe? ( rombios ) + ?? ( ipxe system-ipxe ) + ?? ( qemu system-qemu )" + +COMMON_DEPEND=" + lzma? ( app-arch/xz-utils ) + qemu? ( + dev-libs/glib:2 + sys-libs/pam + ) + zstd? ( app-arch/zstd ) + app-arch/bzip2 + app-arch/zstd + dev-libs/libnl:3 + dev-libs/lzo:2 + dev-libs/yajl + sys-apps/util-linux + sys-fs/e2fsprogs + sys-libs/ncurses + sys-libs/zlib + ${PYTHON_DEPS} +" + +RDEPEND="${COMMON_DEPEND} + sys-apps/iproute2[-minimal] + net-misc/bridge-utils + screen? ( + app-misc/screen + app-admin/logrotate + ) + selinux? ( sec-policy/selinux-xen )" + +DEPEND="${COMMON_DEPEND} + app-misc/pax-utils + >=sys-kernel/linux-headers-4.11 + x11-libs/pixman + $(python_gen_cond_dep ' + dev-python/lxml[${PYTHON_USEDEP}] + ') + x86? ( sys-devel/dev86 + system-ipxe? ( sys-firmware/ipxe[qemu] ) + sys-power/iasl ) + api? ( dev-libs/libxml2 + net-misc/curl ) + + ovmf? ( + !arm? ( !arm64? ( dev-lang/nasm ) ) + $(python_gen_impl_dep sqlite) + ) + !amd64? ( >=sys-apps/dtc-1.4.0 ) + amd64? ( sys-power/iasl + system-seabios? ( + || ( + sys-firmware/seabios + sys-firmware/seabios-bin + ) + ) + system-ipxe? ( sys-firmware/ipxe[qemu] ) + rombios? ( sys-devel/bin86 sys-devel/dev86 ) ) + arm64? ( sys-power/iasl + rombios? ( sys-devel/bin86 sys-devel/dev86 ) ) + doc? ( + app-text/ghostscript-gpl + app-text/pandoc + $(python_gen_cond_dep ' + dev-python/markdown[${PYTHON_USEDEP}] + ') + dev-texlive/texlive-latexextra + media-gfx/transfig + ) + hvm? ( x11-base/xorg-proto ) + qemu? ( + app-arch/snappy:= + dev-util/meson + sdl? ( + media-libs/libsdl[X] + media-libs/libsdl2[X] + ) + ) + system-qemu? ( app-emulation/qemu[xen] ) + ocaml? ( dev-ml/findlib + dev-lang/ocaml[ocamlopt] ) + python? ( >=dev-lang/swig-4.0.0 )" + +BDEPEND="dev-lang/perl + sys-devel/bison + sys-devel/gettext" + +# hvmloader is used to bootstrap a fully virtualized kernel +# Approved by QA team in bug #144032 +QA_WX_LOAD=" + usr/libexec/xen/boot/hvmloader + usr/libexec/xen/boot/ovmf.bin + usr/libexec/xen/boot/xen-shim + usr/share/qemu-xen/qemu/hppa-firmware.img + usr/share/qemu-xen/qemu/opensbi-riscv32-generic-fw_dynamic.elf + usr/share/qemu-xen/qemu/opensbi-riscv64-generic-fw_dynamic.elf + usr/share/qemu-xen/qemu/s390-ccw.img + usr/share/qemu-xen/qemu/u-boot.e500 +" + +QA_EXECSTACK=" + usr/share/qemu-xen/qemu/hppa-firmware.img +" + +QA_PREBUILT=" + usr/libexec/xen/bin/elf2dmp + usr/libexec/xen/bin/ivshmem-client + usr/libexec/xen/bin/ivshmem-server + usr/libexec/xen/bin/qemu-edid + usr/libexec/xen/bin/qemu-img + usr/libexec/xen/bin/qemu-io + usr/libexec/xen/bin/qemu-keymap + usr/libexec/xen/bin/qemu-nbd + usr/libexec/xen/bin/qemu-pr-helper + usr/libexec/xen/bin/qemu-storage-daemon + usr/libexec/xen/bin/qemu-system-i386 + usr/libexec/xen/bin/virtfs-proxy-helper + usr/libexec/xen/boot/ovmf.bin + usr/libexec/xen/boot/xen-shim + usr/libexec/xen/libexec/qemu-pr-helper + usr/libexec/xen/libexec/virtfs-proxy-helper + usr/libexec/xen/libexec/virtiofsd + usr/libexec/xen/libexec/xen-bridge-helper + usr/share/qemu-xen/qemu/s390-ccw.img + usr/share/qemu-xen/qemu/s390-netboot.img + usr/share/qemu-xen/qemu/u-boot.e500 +" + +RESTRICT="test" + +pkg_setup() { + python_setup + export "CONFIG_LOMOUNT=y" + + #bug 522642, disable compile tools/tests + export "CONFIG_TESTS=n" + + if [[ -z ${XEN_TARGET_ARCH} ]] ; then + if use x86 && use amd64; then + die "Confusion! Both x86 and amd64 are set in your use flags!" + elif use x86; then + export XEN_TARGET_ARCH="x86_32" + elif use amd64 ; then + export XEN_TARGET_ARCH="x86_64" + elif use arm; then + export XEN_TARGET_ARCH="arm32" + elif use arm64; then + export XEN_TARGET_ARCH="arm64" + else + die "Unsupported architecture!" + fi + fi +} + +src_prepare() { + # move before Gentoo patch, one patch should apply to seabios, to fix gcc-4.5.x build err + mv ../seabios-${SEABIOS_VER} tools/firmware/seabios-dir-remote || die + pushd tools/firmware/ > /dev/null + ln -s seabios-dir-remote seabios-dir || die + popd > /dev/null + + if [[ -v XEN_UPSTREAM_PATCHES_DIR ]]; then + eapply "${XEN_UPSTREAM_PATCHES_DIR}" + fi + + if [[ -v XEN_GENTOO_PATCHES_DIR ]]; then + eapply "${XEN_GENTOO_PATCHES_DIR}" + fi + + # Rename qemu-bridge-helper to xen-bridge-helper to avoid file + # collisions with app-emulation/qemu. + sed -i 's/qemu-bridge-helper/xen-bridge-helper/g' \ + tools/qemu-xen/include/net/net.h \ + tools/qemu-xen/meson.build \ + tools/qemu-xen/qemu-bridge-helper.c \ + tools/qemu-xen/qemu-options.hx \ + || die + mv tools/qemu-xen/qemu-bridge-helper.c tools/qemu-xen/xen-bridge-helper.c || die + + if use ovmf; then + mv ../edk2-${EDK2_COMMIT} tools/firmware/ovmf-dir-remote || die + rm -r tools/firmware/ovmf-dir-remote/CryptoPkg/Library/OpensslLib/openssl || die + rm -r tools/firmware/ovmf-dir-remote/ArmPkg/Library/ArmSoftFloatLib/berkeley-softfloat-3 || die + rm -r tools/firmware/ovmf-dir-remote/BaseTools/Source/C/BrotliCompress/brotli || die + rm -r tools/firmware/ovmf-dir-remote/MdeModulePkg/Library/BrotliCustomDecompressLib/brotli || die + mv ../openssl-OpenSSL_${EDK2_OPENSSL_VERSION} tools/firmware/ovmf-dir-remote/CryptoPkg/Library/OpensslLib/openssl || die + mv ../berkeley-softfloat-3-${EDK2_SOFTFLOAT_COMMIT} tools/firmware/ovmf-dir-remote/ArmPkg/Library/ArmSoftFloatLib/berkeley-softfloat-3 || die + cp -r ../brotli-${EDK2_BROTLI_COMMIT} tools/firmware/ovmf-dir-remote/BaseTools/Source/C/BrotliCompress/brotli || die + cp -r ../brotli-${EDK2_BROTLI_COMMIT} tools/firmware/ovmf-dir-remote/MdeModulePkg/Library/BrotliCustomDecompressLib/brotli || die + cp tools/firmware/ovmf-makefile tools/firmware/ovmf-dir-remote/Makefile || die + + # Bug #816987 + pushd tools/firmware/ovmf-dir-remote/BaseTools/Source/C/BrotliCompress/brotli > /dev/null + eapply "${XEN_GENTOO_PATCHES_DIR}/ovmf/${PN}-4.15.1-brotli-gcc11.patch" + popd > /dev/null + + pushd tools/firmware/ovmf-dir-remote/MdeModulePkg/Library/BrotliCustomDecompressLib/brotli > /dev/null + eapply "${XEN_GENTOO_PATCHES_DIR}/ovmf/${PN}-4.15.1-brotli-gcc11.patch" + popd > /dev/null + fi + + # ipxe + if use ipxe; then + cp "${DISTDIR}/ipxe-git-${IPXE_COMMIT}.tar.gz" tools/firmware/etherboot/ipxe.tar.gz || die + + # gcc 11 + cp "${XEN_GENTOO_PATCHES_DIR}/ipxe/${PN}-4.15.0-ipxe-gcc11.patch" tools/firmware/etherboot/patches/ipxe-gcc11.patch || die + echo ipxe-gcc11.patch >> tools/firmware/etherboot/patches/series || die + fi + + # Fix texi2html build error with new texi2html, qemu.doc.html + sed -i -e "/texi2html -monolithic/s/-number//" tools/qemu-xen-traditional/Makefile || die + + # Drop .config, fixes to gcc-4.6 + sed -e '/-include $(XEN_ROOT)\/.config/d' -i Config.mk || die "Couldn't drop" + + # drop flags + unset CFLAGS + unset LDFLAGS + unset ASFLAGS + unset CPPFLAGS + + if ! use pygrub; then + sed -e '/^SUBDIRS-y += pygrub/d' -i tools/Makefile || die + fi + + if ! use python; then + sed -e '/^SUBDIRS-y += python$/d' -i tools/Makefile || die + fi + + if ! use hvm; then + sed -e '/SUBDIRS-$(CONFIG_X86) += firmware/d' -i tools/Makefile || die + # Bug 351648 + elif ! use x86 && ! has x86 $(get_all_abis); then + mkdir -p "${WORKDIR}"/extra-headers/gnu || die + touch "${WORKDIR}"/extra-headers/gnu/stubs-32.h || die + export CPATH="${WORKDIR}"/extra-headers + fi + + if use qemu; then + if use sdl; then + sed -i -e "s:\$\$source/configure:\0 --enable-sdl:" \ + tools/Makefile || die + else + sed -i -e "s:\${QEMU_ROOT\:\-\.}/configure:\0 --disable-sdl:" \ + tools/qemu-xen-traditional/xen-setup || die + sed -i -e "s:\$\$source/configure:\0 --disable-sdl:" \ + tools/Makefile || die + fi + else + # Don't bother with qemu, only needed for fully virtualised guests + sed -i '/SUBDIRS-$(CONFIG_QEMU_XEN)/s/^/#/g' tools/Makefile || die + fi + + # Reset bash completion dir; Bug 472438 + sed -e "s;^BASH_COMPLETION_DIR :=.*;BASH_COMPLETION_DIR := $(get_bashcompdir);" \ + -i config/Paths.mk.in || die + + # xencommons, Bug #492332, sed lighter weight than patching + sed -e 's:\$QEMU_XEN -xen-domid:test -e "\$QEMU_XEN" \&\& &:' \ + -i tools/hotplug/Linux/init.d/xencommons.in || die + + # fix bashishm + sed -e '/Usage/s/\$//g' \ + -i tools/hotplug/Linux/init.d/xendriverdomain.in || die + + # respect multilib, usr/lib/libcacard.so.0.0.0 + sed -e "/^libdir=/s/\/lib/\/$(get_libdir)/" \ + -i tools/qemu-xen/configure || die + + #bug 518136, don't build 32bit exactuable for nomultilib profile + if [[ "${ARCH}" == 'amd64' ]] && ! has_multilib_profile; then + sed -i -e "/x86_emulator/d" tools/tests/Makefile || die + fi + + # uncomment lines in xl.conf + sed -e 's:^#autoballoon=:autoballoon=:' \ + -e 's:^#lockfile=:lockfile=:' \ + -e 's:^#vif.default.script=:vif.default.script=:' \ + -i tools/examples/xl.conf || die + + # disable capstone (Bug #673474) + sed -e "s:\$\$source/configure:\0 --disable-capstone:" \ + -i tools/Makefile || die + + # disable glusterfs + sed -e "s:\$\$source/configure:\0 --disable-glusterfs:" \ + -i tools/Makefile || die + + # disable jpeg automagic + sed -e "s:\$\$source/configure:\0 --disable-vnc-jpeg:" \ + -i tools/Makefile || die + + # disable png automagic + sed -e "s:\$\$source/configure:\0 --disable-vnc-png:" \ + -i tools/Makefile || die + + # disable docker (Bug #732970) + sed -e "s:\$\$source/configure:\0 --disable-containers:" \ + -i tools/Makefile || die + + # disable abi-dumper (Bug #791172) + sed -e 's/$(ABI_DUMPER) /echo /g' \ + -i tools/libs/libs.mk || die + + # Remove -Werror + find . -type f \( -name Makefile -o -name "*.mk" \) \ + -exec sed -i \ + -e 's/-Werror //g' \ + -e '/^CFLAGS *+= -Werror$/d' \ + -e 's/, "-Werror"//' \ + {} + || die + + default +} + +src_configure() { + local myconf=( + --libdir="${EPREFIX}/usr/$(get_libdir)" + --libexecdir="${EPREFIX}/usr/libexec" + --localstatedir="${EPREFIX}/var" + --disable-golang + --disable-pvshim + --disable-werror + --disable-xen + --enable-tools + --enable-docs + $(use_enable api xenapi) + $(use_enable ipxe) + $(usex system-ipxe '--with-system-ipxe=/usr/share/ipxe' '') + $(use_enable ocaml ocamltools) + $(use_enable ovmf) + $(use_enable rombios) + $(use_enable systemd) + --with-xenstored=$(usex ocaml 'oxenstored' 'xenstored') + ) + + use system-seabios && myconf+=( --with-system-seabios=/usr/share/seabios/bios.bin ) + use system-qemu && myconf+=( --with-system-qemu=/usr/bin/qemu-system-x86_64 ) + use amd64 && myconf+=( $(use_enable qemu-traditional) ) + tc-ld-disable-gold # Bug 669570 + econf ${myconf[@]} +} + +src_compile() { + local myopt + use debug && myopt="${myopt} debug=y" + use python && myopt="${myopt} XENSTAT_PYTHON_BINDINGS=y" + + if test-flag-CC -fno-strict-overflow; then + append-flags -fno-strict-overflow + fi + + # bug #845099 + if use ipxe; then + local -x NO_WERROR=1 + fi + + emake \ + HOSTCC="$(tc-getBUILD_CC)" \ + HOSTCXX="$(tc-getBUILD_CXX)" \ + CC="$(tc-getCC)" \ + CXX="$(tc-getCXX)" \ + LD="$(tc-getLD)" \ + AR="$(tc-getAR)" \ + OBJDUMP="$(tc-getOBJDUMP)" \ + RANLIB="$(tc-getRANLIB)" \ + build-tools ${myopt} + + if use doc; then + emake -C docs build + else + emake -C docs man-pages + fi +} + +src_install() { + # Override auto-detection in the build system, bug #382573 + export INITD_DIR=/tmp/init.d + export CONFIG_LEAF_DIR=../tmp/default + + # Let the build system compile installed Python modules. + local PYTHONDONTWRITEBYTECODE + export PYTHONDONTWRITEBYTECODE + + emake DESTDIR="${ED}" DOCDIR="/usr/share/doc/${PF}" \ + XEN_PYTHON_NATIVE_INSTALL=y install-tools + + # Created at runtime + rm -rv "${ED}/var/run" || die + + # Fix the remaining Python shebangs. + python_fix_shebang "${D}" + + # Remove RedHat-specific stuff + rm -rf "${D}"/tmp || die + + if use doc; then + emake DESTDIR="${D}" DOCDIR="/usr/share/doc/${PF}" install-docs + dodoc -r docs/{pdf,txt} + else + emake -C docs DESTDIR="${D}" DOCDIR="/usr/share/doc/${PF}" install-man-pages # Bug 668032 + fi + dodoc ${DOCS[@]} + + newconfd "${FILESDIR}"/xendomains.confd xendomains + newconfd "${FILESDIR}"/xenstored.confd xenstored + newconfd "${FILESDIR}"/xenconsoled.confd xenconsoled + newinitd "${FILESDIR}"/xendomains.initd-r2 xendomains + newinitd "${FILESDIR}"/xenstored.initd-r1 xenstored + newinitd "${FILESDIR}"/xenconsoled.initd xenconsoled + newinitd "${FILESDIR}"/xencommons.initd xencommons + newconfd "${FILESDIR}"/xencommons.confd xencommons + newinitd "${FILESDIR}"/xenqemudev.initd xenqemudev + newconfd "${FILESDIR}"/xenqemudev.confd xenqemudev + newinitd "${FILESDIR}"/xen-watchdog.initd xen-watchdog + + if use screen; then + cat "${FILESDIR}"/xendomains-screen.confd >> "${D}"/etc/conf.d/xendomains || die + cp "${FILESDIR}"/xen-consoles.logrotate "${D}"/etc/xen/ || die + keepdir /var/log/xen-consoles + fi + + # For -static-libs wrt Bug 384355 + if ! use static-libs; then + rm -f "${D}"/usr/$(get_libdir)/*.a "${D}"/usr/$(get_libdir)/ocaml/*/*.a + fi + + # for xendomains + keepdir /etc/xen/auto + + # Remove files failing QA AFTER emake installs them, avoiding seeking absent files + find "${D}" \( -name openbios-sparc32 -o -name openbios-sparc64 \ + -o -name openbios-ppc -o -name palcode-clipper \) -delete || die + + keepdir /var/lib/xen/dump + keepdir /var/lib/xen/xenpaging + keepdir /var/lib/xenstored + keepdir /var/log/xen + + if use python; then + python_domodule "${S}/tools/libs/stat/bindings/swig/python/xenstat.py" + python_domodule "${S}/tools/libs/stat/bindings/swig/python/_xenstat.so" + fi + + python_optimize + + readme.gentoo_create_doc +} + +pkg_postinst() { + readme.gentoo_print_elog +} diff --git a/app-emulation/xen/Manifest b/app-emulation/xen/Manifest index 732977659c67..4c60e9d1624c 100644 --- a/app-emulation/xen/Manifest +++ b/app-emulation/xen/Manifest @@ -1,3 +1,8 @@ DIST xen-4.15.4.tar.gz 40820669 BLAKE2B 22edaf817851856c777d02b5211be932c1731bf50fb582545f948c7e8f871937f7c94636496a480642fa7ed8222e12dda091a06638c75b9ee935f3ff9bc2aea0 SHA512 fa6a4991c0699025af163ed117f8d0523c0a482102464615025eb3575d755ffacec5df394e3fe01871cde6028678f654d99f8e3c2533b138765971a2a7994cb8 DIST xen-4.16.3.tar.gz 45003057 BLAKE2B 6092cff33bffed1b6133daf8d3ce53c57204297e66df6ac58266b2da8d5585df62ae718cc8afaad36ebe6dabdce65b9979b0d13b88e60f2b23c01be21ae4db8e SHA512 b8cbd6f95681de5f824ada2d3cbe0653a38514a18df0dafcf811fb255219c7abec96f46217bdb0c83e1119f685da9a6af7194eeaa94f1cc3c892702782133b4f +DIST xen-4.17.0.tar.gz 46484553 BLAKE2B a4665fb557eb264566179bc5b2678d44f694ef5b20bb7dc58c8a7e6fcdf0145f25a462cfe2ad35be67a4a5ca4579c03eb092954915953e2ab98ae90b4ea983f0 SHA512 8aa7c3025c81127a4f653411bc1cbe8fc27b767a2f96a2a454329a6773cb74d714ecc1ff011a8e7169c6b83b2cc5cb39c39798bd6b1178df75ce9ff00f5a1011 DIST xen-gentoo-patches-4.16.1-gentoo-patchset-2.tar.bz2 5403 BLAKE2B 7fa3b4aa123b2deed260d02b8d34a35dd205207038edb92569278b25c6fe32e0f0e3857c07755553e047f0eb0d9fe7f8b0816e0f3d7f68aee7929afaf6611dfd SHA512 9e7d25640b24235acf756b031b8b7cee582dded65fe7b94a706c990232e9704d574036c3a9605f285e8e9534578d100a3f38719b27b22775f17ef8f68287997e +DIST xen-gentoo-patches-4.17.0-gentoo-patchset-0.tar.bz2 4474 BLAKE2B aa367a4ccf96a61c04c52e415d7143ca946323d7d50d6ab16ad7a917279ad4b1aac802e35e7e306c3a244317db713e913dc8d6343717b2307ccd049adb956a0d SHA512 debba71b17be7b1bb9a70f01782c12c3c053cc2fb1f4ad95829356ee365878aad68430055d4b8c648ef1ff54cb9e3e7c03d40d14c560d51f8ac4fce2b8f82190 +DIST xen-upstream-patches-4.15.5-pre-patchset-0.tar.bz2 21880 BLAKE2B 89ef7b8cc56ca5a4738ce665aaa3461b61c554088b1b727e34ea417beb43f9b8eae403bae50449c0c96e79ff4b71edf9b6808071b1ca8f0b3878bf1cb9697c6e SHA512 0752d699168e3c2ba13a0ad886dd1d1f9affefc5e7fed9980b2a634012508f405c2accfcd7e92f79016bb869d2d0b09139266a952cc203bea37870fc7d910e51 +DIST xen-upstream-patches-4.16.4-pre-patchset-0.tar.bz2 60151 BLAKE2B 5c8a8f772ba6be5f776b3270b9f1e64df35c2be7b4e238262eb4ec6b4859576b3ecb448880e1e05ad53dbdaa71643e678978151b10d0d47c901ab3e3518b7eb0 SHA512 b33a9b2f602f18165e048ef6a339bc5bf3f800fb1f2449e2e1a6090774ce3ef07b1d7ea8e9e6449fae7b91afcc1a6e281c1bb218a56bca74ba7f12b491fab186 +DIST xen-upstream-patches-4.17.1-pre-patchset-0.tar.bz2 87023 BLAKE2B 4b6c66c20aecde5a696ee6879b1a9e9b365eba3a2e55c7b13153adb4c100081242a5f4498e17597697ac96a75685d88536309accb8dcebee45b31c9b35a3d7d8 SHA512 9da15f7726f2813a6dc701dbf67c1aa52a574c8049238c6d18d68bc0c0c80db98b925cd1cb7ec5627ff8b3489847608a185353cda6e599e6e5bffe75339b18a7 diff --git a/app-emulation/xen/xen-4.15.5_pre1.ebuild b/app-emulation/xen/xen-4.15.5_pre1.ebuild new file mode 100644 index 000000000000..6e2e5476fb6f --- /dev/null +++ b/app-emulation/xen/xen-4.15.5_pre1.ebuild @@ -0,0 +1,187 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..10} ) + +inherit flag-o-matic mount-boot python-any-r1 toolchain-funcs + +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="git://xenbits.xen.org/xen.git" + SRC_URI="" +else + KEYWORDS="amd64 ~arm -x86" + + XEN_GENTOO_PATCHSET_NUM= + XEN_GENTOO_PATCHSET_BASE= + XEN_PRE_PATCHSET_NUM=0 + XEN_PRE_VERSION_BASE=4.15.4 + + XEN_BASE_PV="${PV}" + if [[ -n "${XEN_PRE_VERSION_BASE}" ]]; then + XEN_BASE_PV="${XEN_PRE_VERSION_BASE}" + fi + if [[ -z "${XEN_GENTOO_PATCHSET_BASE}" ]]; then + XEN_GENTOO_PATCHSET_BASE="${XEN_BASE_PV}" + fi + + SRC_URI="https://downloads.xenproject.org/release/xen/${XEN_BASE_PV}/xen-${XEN_BASE_PV}.tar.gz" + + if [[ -n "${XEN_PRE_PATCHSET_NUM}" ]]; then + XEN_UPSTREAM_PATCHES_TAG="$(ver_cut 1-3)-pre-patchset-${XEN_PRE_PATCHSET_NUM}" + XEN_UPSTREAM_PATCHES_NAME="xen-upstream-patches-${XEN_UPSTREAM_PATCHES_TAG}" + SRC_URI+=" https://gitweb.gentoo.org/proj/xen-upstream-patches.git/snapshot/${XEN_UPSTREAM_PATCHES_NAME}.tar.bz2" + XEN_UPSTREAM_PATCHES_DIR="${WORKDIR}/${XEN_UPSTREAM_PATCHES_NAME}" + fi + if [[ -n "${XEN_GENTOO_PATCHSET_NUM}" ]]; then + XEN_GENTOO_PATCHES_TAG="$(ver_cut 1-3 ${XEN_BASE_PV})-gentoo-patchset-${XEN_GENTOO_PATCHSET_NUM}" + XEN_GENTOO_PATCHES_NAME="xen-gentoo-patches-${XEN_GENTOO_PATCHES_TAG}" + SRC_URI+=" https://gitweb.gentoo.org/proj/xen-gentoo-patches.git/snapshot/${XEN_GENTOO_PATCHES_NAME}.tar.bz2" + XEN_GENTOO_PATCHES_DIR="${WORKDIR}/${XEN_GENTOO_PATCHES_NAME}" + fi +fi + +DESCRIPTION="The Xen virtual machine monitor" +HOMEPAGE="https://xenproject.org" + +S="${WORKDIR}/xen-$(ver_cut 1-3 ${XEN_BASE_PV})" + +LICENSE="GPL-2" +SLOT="0" +IUSE="debug efi flask" +REQUIRED_USE="arm? ( debug )" + +DEPEND="${PYTHON_DEPS} + efi? ( >=sys-devel/binutils-2.22[multitarget] ) + !efi? ( >=sys-devel/binutils-2.22 ) + flask? ( sys-apps/checkpolicy )" +RDEPEND="" +PDEPEND="~app-emulation/xen-tools-${PV}" + +# no tests are available for the hypervisor +# prevent the silliness of /usr/lib/debug/usr/lib/debug files +# prevent stripping of the debug info from the /usr/lib/debug/xen-syms +RESTRICT="test splitdebug strip" + +# Approved by QA team in bug #144032 +QA_WX_LOAD="boot/xen-syms-${PV}" + +pkg_setup() { + python-any-r1_pkg_setup + if [[ -z ${XEN_TARGET_ARCH} ]]; then + if use amd64; then + export XEN_TARGET_ARCH="x86_64" + elif use arm; then + export XEN_TARGET_ARCH="arm32" + elif use arm64; then + export XEN_TARGET_ARCH="arm64" + else + die "Unsupported architecture!" + fi + fi +} + +src_prepare() { + if [[ -v XEN_UPSTREAM_PATCHES_DIR ]]; then + eapply "${XEN_UPSTREAM_PATCHES_DIR}" + fi + + if [[ -v XEN_GENTOO_PATCHES_DIR ]]; then + eapply "${XEN_GENTOO_PATCHES_DIR}" + fi + + eapply "${FILESDIR}"/${PN}-4.15-efi.patch + + # Enable XSM-FLASK + use flask && eapply "${FILESDIR}"/${PN}-4.15-flask.patch + + # Workaround new gcc-11 options + sed -e '/^CFLAGS/s/-Werror//g' -i xen/Makefile || die + + # Drop .config + sed -e '/-include $(XEN_ROOT)\/.config/d' -i Config.mk || die "Couldn't drop" + + if use efi; then + export EFI_VENDOR="gentoo" + export EFI_MOUNTPOINT="/boot" + fi + + default +} + +xen_make() { + # Setting clang to either 'y' or 'n' tells Xen's build system + # whether or not clang is used. + local clang=n + if tc-is-clang; then + clang=y + fi + + # Send raw LDFLAGS so that --as-needed works + emake \ + V=1 \ + LDFLAGS="$(raw-ldflags)" \ + HOSTCC="$(tc-getBUILD_CC)" \ + HOSTCXX="$(tc-getBUILD_CXX)" \ + clang="${clang}" \ + "$@" +} + +src_configure() { + cd xen || die + + touch gentoo-config || die + if use arm; then + echo "CONFIG_EARLY_PRINTK=sun7i" >> gentoo-config || die + fi + if use debug; then + cat <<-EOF >> gentoo-config || die + CONFIG_DEBUG=y + CONFIG_CRASH_DEBUG=y +EOF + fi + if use flask; then + echo "CONFIG_XSM=y" >> gentoo-config || die + fi + + # remove flags + unset CFLAGS + + tc-ld-disable-gold # Bug 700374 + + xen_make KCONFIG_ALLCONFIG=gentoo-config alldefconfig +} + +src_compile() { + xen_make -C xen +} + +src_install() { + # The 'make install' doesn't 'mkdir -p' the subdirs + if use efi; then + mkdir -p "${D}"${EFI_MOUNTPOINT}/efi/${EFI_VENDOR} || die + fi + + xen_make DESTDIR="${D}" -C xen install + + # make install likes to throw in some extra EFI bits if it built + use efi || rm -rf "${D}/usr/$(get_libdir)/efi" +} + +pkg_postinst() { + elog "Official Xen Guide:" + elog " https://wiki.gentoo.org/wiki/Xen" + + use efi && einfo "The efi executable is installed in /boot/efi/gentoo" + + ewarn + ewarn "Xen 4.12+ changed the default scheduler to credit2 which can cause" + ewarn "domU lockups on multi-cpu systems. The legacy credit scheduler seems" + ewarn "to work fine." + ewarn + ewarn "Add sched=credit to xen command line options to use the legacy scheduler." + ewarn + ewarn "https://wiki.gentoo.org/wiki/Xen#Xen_domU_hanging_with_Xen_4.12.2B" +} diff --git a/app-emulation/xen/xen-4.16.4_pre1.ebuild b/app-emulation/xen/xen-4.16.4_pre1.ebuild new file mode 100644 index 000000000000..637b34f05dfb --- /dev/null +++ b/app-emulation/xen/xen-4.16.4_pre1.ebuild @@ -0,0 +1,174 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..11} ) + +inherit flag-o-matic mount-boot python-any-r1 toolchain-funcs + +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="git://xenbits.xen.org/xen.git" + SRC_URI="" +else + KEYWORDS="~amd64 ~arm -x86" + + XEN_GENTOO_PATCHSET_NUM=2 + XEN_GENTOO_PATCHSET_BASE=4.16.1 + XEN_PRE_PATCHSET_NUM=0 + XEN_PRE_VERSION_BASE=4.16.3 + + XEN_BASE_PV="${PV}" + if [[ -n "${XEN_PRE_VERSION_BASE}" ]]; then + XEN_BASE_PV="${XEN_PRE_VERSION_BASE}" + fi + + SRC_URI="https://downloads.xenproject.org/release/xen/${XEN_BASE_PV}/xen-${XEN_BASE_PV}.tar.gz" + + if [[ -n "${XEN_PRE_PATCHSET_NUM}" ]]; then + XEN_UPSTREAM_PATCHES_TAG="$(ver_cut 1-3)-pre-patchset-${XEN_PRE_PATCHSET_NUM}" + XEN_UPSTREAM_PATCHES_NAME="xen-upstream-patches-${XEN_UPSTREAM_PATCHES_TAG}" + SRC_URI+=" https://gitweb.gentoo.org/proj/xen-upstream-patches.git/snapshot/${XEN_UPSTREAM_PATCHES_NAME}.tar.bz2" + XEN_UPSTREAM_PATCHES_DIR="${WORKDIR}/${XEN_UPSTREAM_PATCHES_NAME}" + fi + if [[ -n "${XEN_GENTOO_PATCHSET_NUM}" ]]; then + XEN_GENTOO_PATCHES_TAG="$(ver_cut 1-3 ${XEN_GENTOO_PATCHSET_BASE})-gentoo-patchset-${XEN_GENTOO_PATCHSET_NUM}" + XEN_GENTOO_PATCHES_NAME="xen-gentoo-patches-${XEN_GENTOO_PATCHES_TAG}" + SRC_URI+=" https://gitweb.gentoo.org/proj/xen-gentoo-patches.git/snapshot/${XEN_GENTOO_PATCHES_NAME}.tar.bz2" + XEN_GENTOO_PATCHES_DIR="${WORKDIR}/${XEN_GENTOO_PATCHES_NAME}" + fi +fi + +DESCRIPTION="The Xen virtual machine monitor" +HOMEPAGE="https://xenproject.org" + +S="${WORKDIR}/xen-$(ver_cut 1-3 ${XEN_BASE_PV})" + +LICENSE="GPL-2" +SLOT="0" +IUSE="+boot-symlinks debug efi flask" +REQUIRED_USE="arm? ( debug )" + +DEPEND="${PYTHON_DEPS} + efi? ( >=sys-devel/binutils-2.22[multitarget] ) + !efi? ( >=sys-devel/binutils-2.22 ) + flask? ( sys-apps/checkpolicy )" +RDEPEND="" +PDEPEND="~app-emulation/xen-tools-${PV}" + +# no tests are available for the hypervisor +# prevent the silliness of /usr/lib/debug/usr/lib/debug files +# prevent stripping of the debug info from the /usr/lib/debug/xen-syms +RESTRICT="test splitdebug strip" + +# Approved by QA team in bug #144032 +QA_WX_LOAD="boot/xen-syms-${PV}" + +pkg_setup() { + python-any-r1_pkg_setup + if [[ -z ${XEN_TARGET_ARCH} ]]; then + if use amd64; then + export XEN_TARGET_ARCH="x86_64" + elif use arm; then + export XEN_TARGET_ARCH="arm32" + elif use arm64; then + export XEN_TARGET_ARCH="arm64" + else + die "Unsupported architecture!" + fi + fi +} + +src_prepare() { + if [[ -v XEN_UPSTREAM_PATCHES_DIR ]]; then + eapply "${XEN_UPSTREAM_PATCHES_DIR}" + fi + + if [[ -v XEN_GENTOO_PATCHES_DIR ]]; then + eapply "${XEN_GENTOO_PATCHES_DIR}" + fi + + # Symlinks do not work on fat32 volumes # 829765 + if ! use boot-symlinks || use efi; then + eapply "${XEN_GENTOO_PATCHES_DIR}"/no-boot-symlinks/${PN}-4.16-no-symlinks.patch + fi + + # Workaround new gcc-11 options + sed -e '/^CFLAGS/s/-Werror//g' -i xen/Makefile || die + + # Drop .config + sed -e '/-include $(XEN_ROOT)\/.config/d' -i Config.mk || die "Couldn't drop" + + if use efi; then + export EFI_VENDOR="gentoo" + export EFI_MOUNTPOINT="/boot" + fi + + default +} + +xen_make() { + # Setting clang to either 'y' or 'n' tells Xen's build system + # whether or not clang is used. + local clang=n + if tc-is-clang; then + clang=y + fi + + # Send raw LDFLAGS so that --as-needed works + emake \ + V=1 \ + LDFLAGS="$(raw-ldflags)" \ + HOSTCC="$(tc-getBUILD_CC)" \ + HOSTCXX="$(tc-getBUILD_CXX)" \ + CC="$(tc-getCC)" \ + CXX="$(tc-getCXX)" \ + LD="$(tc-getLD)" \ + AR="$(tc-getAR)" \ + OBJDUMP="$(tc-getOBJDUMP)" \ + RANLIB="$(tc-getRANLIB)" \ + clang="${clang}" \ + "$@" +} + +src_configure() { + cd xen || die + + touch gentoo-config || die + if use arm; then + echo "CONFIG_EARLY_PRINTK=sun7i" >> gentoo-config || die + fi + if use debug; then + cat <<-EOF >> gentoo-config || die + CONFIG_DEBUG=y + CONFIG_CRASH_DEBUG=y +EOF + fi + if use flask; then + echo "CONFIG_XSM=y" >> gentoo-config || die + fi + + # remove flags + unset CFLAGS + + tc-ld-disable-gold # Bug 700374 + + xen_make KCONFIG_ALLCONFIG=gentoo-config alldefconfig +} + +src_compile() { + xen_make -C xen +} + +src_install() { + # The 'make install' doesn't 'mkdir -p' the subdirs + if use efi; then + mkdir -p "${D}"${EFI_MOUNTPOINT}/efi/${EFI_VENDOR} || die + fi + + xen_make DESTDIR="${D}" -C xen install + + # make install likes to throw in some extra EFI bits if it built + use efi || rm -rf "${D}/usr/$(get_libdir)/efi" +} diff --git a/app-emulation/xen/xen-4.17.1_pre1.ebuild b/app-emulation/xen/xen-4.17.1_pre1.ebuild new file mode 100644 index 000000000000..b14c81a14797 --- /dev/null +++ b/app-emulation/xen/xen-4.17.1_pre1.ebuild @@ -0,0 +1,174 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..11} ) + +inherit flag-o-matic mount-boot python-any-r1 toolchain-funcs + +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="git://xenbits.xen.org/xen.git" + SRC_URI="" +else + KEYWORDS="~amd64 ~arm -x86" + + XEN_GENTOO_PATCHSET_NUM=0 + XEN_GENTOO_PATCHSET_BASE=4.17.0 + XEN_PRE_PATCHSET_NUM=0 + XEN_PRE_VERSION_BASE=4.17.0 + + XEN_BASE_PV="${PV}" + if [[ -n "${XEN_PRE_VERSION_BASE}" ]]; then + XEN_BASE_PV="${XEN_PRE_VERSION_BASE}" + fi + + SRC_URI="https://downloads.xenproject.org/release/xen/${XEN_BASE_PV}/xen-${XEN_BASE_PV}.tar.gz" + + if [[ -n "${XEN_PRE_PATCHSET_NUM}" ]]; then + XEN_UPSTREAM_PATCHES_TAG="$(ver_cut 1-3)-pre-patchset-${XEN_PRE_PATCHSET_NUM}" + XEN_UPSTREAM_PATCHES_NAME="xen-upstream-patches-${XEN_UPSTREAM_PATCHES_TAG}" + SRC_URI+=" https://gitweb.gentoo.org/proj/xen-upstream-patches.git/snapshot/${XEN_UPSTREAM_PATCHES_NAME}.tar.bz2" + XEN_UPSTREAM_PATCHES_DIR="${WORKDIR}/${XEN_UPSTREAM_PATCHES_NAME}" + fi + if [[ -n "${XEN_GENTOO_PATCHSET_NUM}" ]]; then + XEN_GENTOO_PATCHES_TAG="$(ver_cut 1-3 ${XEN_GENTOO_PATCHSET_BASE})-gentoo-patchset-${XEN_GENTOO_PATCHSET_NUM}" + XEN_GENTOO_PATCHES_NAME="xen-gentoo-patches-${XEN_GENTOO_PATCHES_TAG}" + SRC_URI+=" https://gitweb.gentoo.org/proj/xen-gentoo-patches.git/snapshot/${XEN_GENTOO_PATCHES_NAME}.tar.bz2" + XEN_GENTOO_PATCHES_DIR="${WORKDIR}/${XEN_GENTOO_PATCHES_NAME}" + fi +fi + +DESCRIPTION="The Xen virtual machine monitor" +HOMEPAGE="https://xenproject.org" + +S="${WORKDIR}/xen-$(ver_cut 1-3 ${XEN_BASE_PV})" + +LICENSE="GPL-2" +SLOT="0" +IUSE="+boot-symlinks debug efi flask" +REQUIRED_USE="arm? ( debug )" + +DEPEND="${PYTHON_DEPS} + efi? ( >=sys-devel/binutils-2.22[multitarget] ) + !efi? ( >=sys-devel/binutils-2.22 ) + flask? ( sys-apps/checkpolicy )" +RDEPEND="" +PDEPEND="~app-emulation/xen-tools-${PV}" + +# no tests are available for the hypervisor +# prevent the silliness of /usr/lib/debug/usr/lib/debug files +# prevent stripping of the debug info from the /usr/lib/debug/xen-syms +RESTRICT="test splitdebug strip" + +# Approved by QA team in bug #144032 +QA_WX_LOAD="boot/xen-syms-${PV}" + +pkg_setup() { + python-any-r1_pkg_setup + if [[ -z ${XEN_TARGET_ARCH} ]]; then + if use amd64; then + export XEN_TARGET_ARCH="x86_64" + elif use arm; then + export XEN_TARGET_ARCH="arm32" + elif use arm64; then + export XEN_TARGET_ARCH="arm64" + else + die "Unsupported architecture!" + fi + fi +} + +src_prepare() { + if [[ -v XEN_UPSTREAM_PATCHES_DIR ]]; then + eapply "${XEN_UPSTREAM_PATCHES_DIR}" + fi + + if [[ -v XEN_GENTOO_PATCHES_DIR ]]; then + eapply "${XEN_GENTOO_PATCHES_DIR}" + fi + + # Symlinks do not work on fat32 volumes # 829765 + if ! use boot-symlinks || use efi; then + eapply "${XEN_GENTOO_PATCHES_DIR}"/no-boot-symlinks/${PN}-4.16-no-symlinks.patch + fi + + # Workaround new gcc-11 options + sed -e '/^CFLAGS/s/-Werror//g' -i xen/Makefile || die + + # Drop .config + sed -e '/-include $(XEN_ROOT)\/.config/d' -i Config.mk || die "Couldn't drop" + + if use efi; then + export EFI_VENDOR="gentoo" + export EFI_MOUNTPOINT="/boot" + fi + + default +} + +xen_make() { + # Setting clang to either 'y' or 'n' tells Xen's build system + # whether or not clang is used. + local clang=n + if tc-is-clang; then + clang=y + fi + + # Send raw LDFLAGS so that --as-needed works + emake \ + V=1 \ + LDFLAGS="$(raw-ldflags)" \ + HOSTCC="$(tc-getBUILD_CC)" \ + HOSTCXX="$(tc-getBUILD_CXX)" \ + CC="$(tc-getCC)" \ + CXX="$(tc-getCXX)" \ + LD="$(tc-getLD)" \ + AR="$(tc-getAR)" \ + OBJDUMP="$(tc-getOBJDUMP)" \ + RANLIB="$(tc-getRANLIB)" \ + clang="${clang}" \ + "$@" +} + +src_configure() { + cd xen || die + + touch gentoo-config || die + if use arm; then + echo "CONFIG_EARLY_PRINTK=sun7i" >> gentoo-config || die + fi + if use debug; then + cat <<-EOF >> gentoo-config || die + CONFIG_DEBUG=y + CONFIG_CRASH_DEBUG=y +EOF + fi + if use flask; then + echo "CONFIG_XSM=y" >> gentoo-config || die + fi + + # remove flags + unset CFLAGS + + tc-ld-disable-gold # Bug 700374 + + xen_make KCONFIG_ALLCONFIG=gentoo-config alldefconfig +} + +src_compile() { + xen_make -C xen +} + +src_install() { + # The 'make install' doesn't 'mkdir -p' the subdirs + if use efi; then + mkdir -p "${D}"${EFI_MOUNTPOINT}/efi/${EFI_VENDOR} || die + fi + + xen_make DESTDIR="${D}" -C xen install + + # make install likes to throw in some extra EFI bits if it built + use efi || rm -rf "${D}/usr/$(get_libdir)/efi" +} diff --git a/app-forensics/Manifest.gz b/app-forensics/Manifest.gz index fb3db783c2ba..9160800e206c 100644 Binary files a/app-forensics/Manifest.gz and b/app-forensics/Manifest.gz differ diff --git a/app-forensics/aflplusplus/Manifest b/app-forensics/aflplusplus/Manifest index 90512a2f7a66..4bfecf350b20 100644 --- a/app-forensics/aflplusplus/Manifest +++ b/app-forensics/aflplusplus/Manifest @@ -4,3 +4,5 @@ DIST aflplusplus-4.04c-patches.tar.xz 4236 BLAKE2B 86bb5d1e0da271833fc548633e088 DIST aflplusplus-4.04c.tar.gz 2832011 BLAKE2B 80a5652b0d64b4824c3b4f91bf993a8499a0c86cf878ca83c7b7afe217cc1603700d4cf7408ae40f1435251153f88e0663cabe470a06387e6664249b3a015172 SHA512 1c2e2e6677e87de2f069e1acdc2319580e488670c3d4975a0f0807da33965c4a14087a7c734195d0a47260acc91f7211b10bd905aac99bdab81145b282edb44e DIST aflplusplus-4.05c-patches.tar.xz 4860 BLAKE2B dcc0bf2799393bb7e27c6592cf46efc19277733ae1e17b3ab5b7a60aed244ec24405ceaecb5f310ac344390a92b4348275e8a19936b8760c0f2fe74f086771b9 SHA512 7a475f433796d9b9c13c5755a11aa632174662d18e69add6531fe1cbe42d75ad514bc779e42630b0a48c9df9edcc89fe992f654812fa2281b6ffa64a1019c82c DIST aflplusplus-4.05c.tar.gz 2839704 BLAKE2B 31594e5c41cb057a1598a112e158360a172a512756a2cba2ec9bd78643045945c9a0f378e322c9250e75a6348b76f5cc84d8de6560e0a6a92a19f4d4b9a149eb SHA512 cb07279e4b1b2fa48a455acd551e26d9a53cf585258880aba4f26aa147b748b947b0608e5bbec4212362da3efc20183ba90b2dfa6584df93861dcca269d5ea7c +DIST aflplusplus-4.06c-patches.tar.xz 4360 BLAKE2B fb59065ef610e87d8bc822513822c150b592e0cdcf4f8f2d861b5dc4a5ded49a03b4ccc46636e24d69bdcee58f6882511f25a04cbc02565f9435c47be1b0829f SHA512 251db964ce6c7e1f59c6c1a8383c1fe4d362c7d336df4d13f0bc1f3c8583494e2b9c9f160fdd544174cc784afc1ae100310109d0d6a30c361b82f3ab50350afa +DIST aflplusplus-4.06c.tar.gz 2859398 BLAKE2B bf26d6be364d01f91a5b60e2bca1ab48e2fed04571bbaee2fd74c31af1c3d53295808c5372bda8dc941232349e9113e09f2d0e8cadc5917fc4fc52e24bad9d60 SHA512 b585b244218e70e1120a81a5fbb7401d277174be13c5d5d507130ff7a7b25723ff29c2b3c820466ba847ff53ef016b23781edaccdfcdce904f6b93ec4d860140 diff --git a/app-forensics/aflplusplus/aflplusplus-4.06c.ebuild b/app-forensics/aflplusplus/aflplusplus-4.06c.ebuild new file mode 100644 index 000000000000..2d81610f1f76 --- /dev/null +++ b/app-forensics/aflplusplus/aflplusplus-4.06c.ebuild @@ -0,0 +1,87 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..11} ) +LLVM_MAX_SLOT=16 +inherit toolchain-funcs llvm optfeature python-single-r1 + +AFL_PATCHSET="${PN}-4.06c-patches" +DESCRIPTION="A fork of AFL, the popular compile-time instrumentation fuzzer" +HOMEPAGE="https://github.com/AFLplusplus/AFLplusplus" +SRC_URI="https://github.com/AFLplusplus/AFLplusplus/archive/${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI+=" https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${AFL_PATCHSET}.tar.xz" +S="${WORKDIR}"/AFLplusplus-${PV} + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm64" +IUSE="test" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +# Tests involve heavy use of LD_PRELOAD in some cases +# This isn't compatible with sandbox +RESTRICT="test" + +# It turns out we need Clang too +RDEPEND="${PYTHON_DEPS} + >=sys-devel/llvm-13:= + || ( + sys-devel/clang:13 + sys-devel/clang:14 + sys-devel/clang:${LLVM_MAX_SLOT} + ) + !app-forensics/afl" +DEPEND="${RDEPEND} + test? ( dev-util/cmocka )" + +QA_FLAGS_IGNORED="afl-gcc-cmplog-pass.so afl-gcc-cmptrs-pass.so" +QA_PREBUILT="usr/share/afl/testcases/others/elf/small_exec.elf" + +PATCHES=( + "${WORKDIR}"/${AFL_PATCHSET} +) + +llvm_check_deps() { + has_version -b "sys-devel/clang:${LLVM_SLOT}" && \ + has_version -b "sys-devel/llvm:${LLVM_SLOT}" +} + +pkg_setup() { + llvm_pkg_setup + python-single-r1_pkg_setup +} + +mymake() { + emake \ + CC="$(tc-getCC)" \ + CXX="$(tc-getCXX)" \ + CFLAGS_FLTO="" \ + LLVM_CONFIG="$(get_llvm_prefix ${LLVM_MAX_SLOT})"/bin/llvm-config \ + PREFIX="${EPREFIX}/usr" \ + HELPER_PATH="${EPREFIX}/usr/$(get_libdir)/afl" \ + DOC_PATH="${EPREFIX}/usr/share/doc/${PF}" \ + MAN_PATH="${EPREFIX}/usr/share/man/man8" \ + "$@" +} + +src_compile() { + mymake +} + +src_test() { + mymake test +} + +src_install() { + mymake DESTDIR="${D}" install + dostrip -x /usr/share/afl/testcases/ +} + +pkg_postinst() { + # TODO: Any others? + optfeature "fuzzing with AFL_USE_ASAN" sys-libs/compiler-rt-sanitizers[asan] + optfeature "fuzzing with AFL_USE_MSAN" sys-libs/compiler-rt-sanitizers[msan] +} diff --git a/app-misc/Manifest.gz b/app-misc/Manifest.gz index f3bbe4841fd8..8257a456c701 100644 Binary files a/app-misc/Manifest.gz and b/app-misc/Manifest.gz differ diff --git a/app-misc/linuxspa/linuxspa-0.7.1-r2.ebuild b/app-misc/linuxspa/linuxspa-0.7.1-r2.ebuild index efb3d532513c..44f68bb0d4d0 100644 --- a/app-misc/linuxspa/linuxspa-0.7.1-r2.ebuild +++ b/app-misc/linuxspa/linuxspa-0.7.1-r2.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 inherit toolchain-funcs @@ -9,13 +9,11 @@ MY_PN="LinuxSPA" DESCRIPTION="Linux Serial Protocol Analyser" HOMEPAGE="https://sourceforge.net/projects/serialsniffer/" SRC_URI="mirror://sourceforge/serialsniffer/${MY_PN}-${PV}.tgz" -LICENSE="GPL-2" +S="${WORKDIR}/${MY_PN}" +LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 x86" -IUSE="" - -S="${WORKDIR}/${MY_PN}" +KEYWORDS="~amd64 ~x86" PATCHES=( "${FILESDIR}/${P}-compile-fix.patch" ) diff --git a/app-misc/qtxdg-tools/Manifest b/app-misc/qtxdg-tools/Manifest index 70d4d84922a1..b0c80b7b3338 100644 --- a/app-misc/qtxdg-tools/Manifest +++ b/app-misc/qtxdg-tools/Manifest @@ -1,2 +1,3 @@ DIST qtxdg-tools-3.10.0.tar.xz 16704 BLAKE2B a43ebdaca879cbfc6f1b6cebcea4964c5486bd983b030a4b374605efeef9a9ad67e3176c95e33ad09c90df5e9432526dbf62ecfbb192df768509e213f57e383f SHA512 d5cdc14ceadf6b2ed7adaa7de383b9930d57d06a6c5294920764b403bcedfdb837de4a01e70f65f2957e18a9e866659406b88e35903376fb26b91f8620b95a55 +DIST qtxdg-tools-3.11.0.tar.xz 16716 BLAKE2B ef6b88e69b0b4e8896ba37f7b5f663234a5348759d430600396432f4abb52901001c54ec78bd706efa021b51d9ff514457ff8e123d5142a6562cd380dd5a15ee SHA512 da88f36130b7c23d1553bce252ddc783ae30ba91cd55fba065702376f6cc9c0353c0ad4bb099ed1b65964bd9d476ae431bfde46df110bccec832d3f57cbaa7f3 DIST qtxdg-tools-3.9.1.tar.xz 16688 BLAKE2B c59032f55749616554036cded80050b3390f02741d6874d4e48ca943d0b37864d3565cc1bb0e39474cfbcc38b6b525e73c22a9e9d6277a319dd44a93935af982 SHA512 f5bea93ad927967edf13c07ee39a24297fbe06d03e450557afd519b26c3eeed6c9347747efbdc2e0c201a4d51f66cd80a5f2da143544149375d89f36baab5c3f diff --git a/app-misc/qtxdg-tools/qtxdg-tools-3.11.0.ebuild b/app-misc/qtxdg-tools/qtxdg-tools-3.11.0.ebuild new file mode 100644 index 000000000000..a648456e7b5e --- /dev/null +++ b/app-misc/qtxdg-tools/qtxdg-tools-3.11.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 2022-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="User Tools from libqtxdg" +HOMEPAGE="https://lxqt-project.org/" + +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git" +else + SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" +fi + +LICENSE="LGPL-2.1" +SLOT="0" + +BDEPEND=">=dev-util/lxqt-build-tools-0.13.0" +RDEPEND=" + >=dev-libs/libqtxdg-3.11.0 + >=dev-qt/qtcore-5.15:5 +" +DEPEND="${RDEPEND}" diff --git a/app-misc/tmux-mem-cpu-load/Manifest b/app-misc/tmux-mem-cpu-load/Manifest index 143ff2c45522..7323b0aa516f 100644 --- a/app-misc/tmux-mem-cpu-load/Manifest +++ b/app-misc/tmux-mem-cpu-load/Manifest @@ -1 +1,2 @@ DIST tmux-mem-cpu-load-3.5.1.tar.gz 23020 BLAKE2B 2bbe2441c0fd687fee4ed2f27b8cea0fdbb0596c36fe8c791be110b880abe5d8c28a14960a9836552cf49b4f92d32a127be9271954853c5310f1628791138f7a SHA512 e08a3ad088021d4f4a3fb671a15cc8468a833501202391a63f57d3b53ea65934dc32869c3b7bbe47bce7d8ff2c9d1d35a5823a70c80d1218392aac82ed96e68f +DIST tmux-mem-cpu-load-3.7.0.tar.gz 23374 BLAKE2B 61dfd556b22afd37d7011c2f31e1c1ee2632921c590ac273e92baf18f018d09eaffc628490d8c2bca973fc73dba67f83dfd380792c70f7fac8335cc9c732d7c3 SHA512 0a87d91e2d7ea0b687b0610b913aa782813fc80cc689c6f42fa2e1537715b7b2307edbfabf231fc0e13fe5aeaca1c0ffa4500ce338b37365ba0ac7a8b69e7385 diff --git a/app-misc/tmux-mem-cpu-load/files/tmux-mem-cpu-load-3.7.0-gcc13.patch b/app-misc/tmux-mem-cpu-load/files/tmux-mem-cpu-load-3.7.0-gcc13.patch new file mode 100644 index 000000000000..77e905aa8fb9 --- /dev/null +++ b/app-misc/tmux-mem-cpu-load/files/tmux-mem-cpu-load-3.7.0-gcc13.patch @@ -0,0 +1,24 @@ +https://github.com/thewtex/tmux-mem-cpu-load/pull/95 + +From 59cca005e4c6d2fe9f90574a99afe78dcb6d8539 Mon Sep 17 00:00:00 2001 +From: Sam James +Date: Tue, 18 Apr 2023 04:25:00 +0100 +Subject: [PATCH] Fix build with GCC 13 + +GCC 13 (as usual for new compiler releases) shuffles around some internal includes so some +are no longer transitively included. + +See https://gnu.org/software/gcc/gcc-13/porting_to.html. + +Bug: https://bugs.gentoo.org/895304 +--- a/common/cpu.h ++++ b/common/cpu.h +@@ -19,6 +19,7 @@ + #ifndef CPU_H_ + #define CPU_H_ + ++#include + #include + + #if defined(__APPLE__) && defined(__MACH__) + diff --git a/app-misc/tmux-mem-cpu-load/tmux-mem-cpu-load-3.7.0.ebuild b/app-misc/tmux-mem-cpu-load/tmux-mem-cpu-load-3.7.0.ebuild new file mode 100644 index 000000000000..72e6848796f4 --- /dev/null +++ b/app-misc/tmux-mem-cpu-load/tmux-mem-cpu-load-3.7.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +if [[ ${PV} == *9999* ]]; then + EGIT_REPO_URI="https://github.com/thewtex/tmux-mem-cpu-load.git" + inherit git-r3 +else + SRC_URI="https://github.com/thewtex/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86" +fi + +DESCRIPTION="CPU, RAM memory, and load monitor for use with tmux" +HOMEPAGE="https://github.com/thewtex/tmux-mem-cpu-load" + +LICENSE="Apache-2.0" +SLOT="0" + +DOCS=( AUTHORS README.rst ) + +PATCHES=( + "${FILESDIR}"/${PN}-3.7.0-gcc13.patch +) diff --git a/app-misc/tmux-mem-cpu-load/tmux-mem-cpu-load-9999.ebuild b/app-misc/tmux-mem-cpu-load/tmux-mem-cpu-load-9999.ebuild index e8fe363b9562..8cf26ebed9d5 100644 --- a/app-misc/tmux-mem-cpu-load/tmux-mem-cpu-load-9999.ebuild +++ b/app-misc/tmux-mem-cpu-load/tmux-mem-cpu-load-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -10,7 +10,7 @@ if [[ ${PV} == *9999* ]]; then inherit git-r3 else SRC_URI="https://github.com/thewtex/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm64 ~x86" + KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86" fi DESCRIPTION="CPU, RAM memory, and load monitor for use with tmux" diff --git a/app-text/Manifest.gz b/app-text/Manifest.gz index f9d54e053adc..d8baeeffa0d0 100644 Binary files a/app-text/Manifest.gz and b/app-text/Manifest.gz differ diff --git a/app-text/ghostscript-gpl/ghostscript-gpl-10.01.1.ebuild b/app-text/ghostscript-gpl/ghostscript-gpl-10.01.1.ebuild index 91a302566066..504411567c86 100644 --- a/app-text/ghostscript-gpl/ghostscript-gpl-10.01.1.ebuild +++ b/app-text/ghostscript-gpl/ghostscript-gpl-10.01.1.ebuild @@ -23,7 +23,7 @@ fi LICENSE="AGPL-3 CPL-1.0" SLOT="0/$(ver_cut 1-2)" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~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 ~loong ~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="cups dbus gtk l10n_de static-libs unicode X" LANGS="ja ko zh-CN zh-TW" diff --git a/app-text/highlight/highlight-4.1.ebuild b/app-text/highlight/highlight-4.1.ebuild index 7a8b44f56b5c..e392371ce93d 100644 --- a/app-text/highlight/highlight-4.1.ebuild +++ b/app-text/highlight/highlight-4.1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -LUA_COMPAT=( lua5-{1..3} ) +LUA_COMPAT=( lua5-{1..4} luajit ) inherit lua-single qmake-utils toolchain-funcs diff --git a/dev-cpp/Manifest.gz b/dev-cpp/Manifest.gz index 6e94f5e58093..c0ec3e4b597f 100644 Binary files a/dev-cpp/Manifest.gz and b/dev-cpp/Manifest.gz differ diff --git a/dev-cpp/abseil-cpp/abseil-cpp-20200923.3.ebuild b/dev-cpp/abseil-cpp/abseil-cpp-20200923.3.ebuild index cf4ff66b0425..b321f55076b5 100644 --- a/dev-cpp/abseil-cpp/abseil-cpp-20200923.3.ebuild +++ b/dev-cpp/abseil-cpp/abseil-cpp-20200923.3.ebuild @@ -36,6 +36,7 @@ RESTRICT="!test? ( test )" PATCHES=( "${FILESDIR}/${PN}-20200923-arm_no_crypto.patch" + "${FILESDIR}/${PN}-20211102.0-r2-gcc-13.patch" "${FILESDIR}/${PN}-20210324.1-glibc-2.34.patch" ) diff --git a/dev-cpp/cpp-httplib/cpp-httplib-0.12.1.ebuild b/dev-cpp/cpp-httplib/cpp-httplib-0.12.1.ebuild index 5e7e52076c45..b4b2e67701ea 100644 --- a/dev-cpp/cpp-httplib/cpp-httplib-0.12.1.ebuild +++ b/dev-cpp/cpp-httplib/cpp-httplib-0.12.1.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://github.com/yhirose/cpp-httplib/archive/v${PV}.tar.gz LICENSE="MIT" SLOT="0/0.11" # soversion -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 ~x86" IUSE="brotli ssl test zlib" REQUIRED_USE="test? ( brotli ssl zlib )" diff --git a/dev-cpp/kokkos/metadata.xml b/dev-cpp/kokkos/metadata.xml index 41492a48020d..a5d2799906b4 100644 --- a/dev-cpp/kokkos/metadata.xml +++ b/dev-cpp/kokkos/metadata.xml @@ -5,4 +5,7 @@ tamiko@gentoo.org Matthias Maier + + kokkos/kokkos + diff --git a/dev-cpp/rapidfuzz-cpp/Manifest b/dev-cpp/rapidfuzz-cpp/Manifest index 4816b61eaf0b..0cce1ce046d1 100644 --- a/dev-cpp/rapidfuzz-cpp/Manifest +++ b/dev-cpp/rapidfuzz-cpp/Manifest @@ -1,3 +1,4 @@ DIST rapidfuzz-cpp-1.10.1.gh.tar.gz 284749 BLAKE2B 530476df0120e0a864298f80d786df02e0bc77a9b3482b2be7ff94ed4c4c749828eddadcaae2e8958e991744842380c48e2ce1bfa59062dc592b6a8905dbc234 SHA512 9e33601b85189bca8ff1ff21e33f62fb674d6f6ce5713588f303b5879b02eba84e96421fea3c96cfc6a7393ad5a95c755176d7c17e7f4c81498516f163584bf6 DIST rapidfuzz-cpp-1.10.2.gh.tar.gz 284978 BLAKE2B 5d2ef555ce2af009d4bb2fbf3e649e6cfc43ab3b20497d8e00c3f99d23173faf3425be4fcaec78820c969a336bb4255e6f680482aba657e838ecc4194e92db01 SHA512 65198df529005264ef94cb308eb09d6569ea805f46fbd42e6fedd18ac949722ff10ed30fbc41aaa986d790566168ff46c2b03ec5f7b6041b2f3e522e534f2ee2 DIST rapidfuzz-cpp-1.10.4.gh.tar.gz 283916 BLAKE2B e0c3890628dd9303ff7d67d83df5a53f0466ccefd37fca6e56aa8613abc09fc16523e677cee3061425b2bd7720e5c6b26d43f51556ec7b1ef6d48583a1055a9e SHA512 11dfd3b5f869eaf11edcb2c075709416645c89ab6057dbcaf12eb5defd609c33e792265b131942f22e3e2661f8c00a653e23a83eb2ba4bd8c82a7d16960d3b3b +DIST rapidfuzz-cpp-1.11.2.gh.tar.gz 285371 BLAKE2B c4ac8907f70dbb4718c30e58acca54938a5e53ff7af916a754ec77e353fe628e6db13576c195b35560913410399470cf0f78a23c0e691591786128f0f0ee0d11 SHA512 80ae15a6a3d75679a992d2bfd48de318ec9349cf972adfb94a1d1061e9a8af5e6ed354a1ae7c4cd6b2bb8af8b5382dd07c2be71cf7bb9e064a8f3a568139618f diff --git a/dev-cpp/rapidfuzz-cpp/files/rapidfuzz-cpp-1.11.2-gcc13.patch b/dev-cpp/rapidfuzz-cpp/files/rapidfuzz-cpp-1.11.2-gcc13.patch new file mode 100644 index 000000000000..c3e8117d22e3 --- /dev/null +++ b/dev-cpp/rapidfuzz-cpp/files/rapidfuzz-cpp-1.11.2-gcc13.patch @@ -0,0 +1,22 @@ +https://github.com/maxbachmann/rapidfuzz-cpp/pull/102 + +From f3c691bd8a0659ac3acb7510dab5a536f4d41e1b Mon Sep 17 00:00:00 2001 +From: Sam James +Date: Tue, 18 Apr 2023 07:33:39 +0100 +Subject: [PATCH] Fix build with GCC 13 + +GCC 13 (as usual for new compiler releases) shuffles around some internal includes so some +are no longer transitively included. + +See https://gnu.org/software/gcc/gcc-13/porting_to.html. + +Bug: https://bugs.gentoo.org/895696 +--- a/test/distance/examples/ocr.hpp ++++ b/test/distance/examples/ocr.hpp +@@ -1,4 +1,5 @@ + #pragma once ++#include + #include + + extern std::basic_string ocr_example1; + diff --git a/dev-cpp/rapidfuzz-cpp/rapidfuzz-cpp-1.11.2.ebuild b/dev-cpp/rapidfuzz-cpp/rapidfuzz-cpp-1.11.2.ebuild new file mode 100644 index 000000000000..adba46f925b6 --- /dev/null +++ b/dev-cpp/rapidfuzz-cpp/rapidfuzz-cpp-1.11.2.ebuild @@ -0,0 +1,36 @@ +# Copyright 2022-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="Rapid fuzzy string matching in C++" +HOMEPAGE="https://github.com/maxbachmann/rapidfuzz-cpp/" +SRC_URI=" + https://github.com/maxbachmann/rapidfuzz-cpp/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +BDEPEND=" + test? ( + >=dev-cpp/catch-3 + ) +" + +PATCHES=( + "${FILESDIR}"/${PN}-1.11.2-gcc13.patch +) + +src_configure() { + local mycmakeargs=( + -DRAPIDFUZZ_BUILD_TESTING=$(usex test) + ) + cmake_src_configure +} diff --git a/dev-db/Manifest.gz b/dev-db/Manifest.gz index 41a32d29ccfb..1dd76400157d 100644 Binary files a/dev-db/Manifest.gz and b/dev-db/Manifest.gz differ diff --git a/dev-db/mydumper/mydumper-0.13.1.2.ebuild b/dev-db/mydumper/mydumper-0.13.1.2.ebuild index bcf83752cc30..aea82d341428 100644 --- a/dev-db/mydumper/mydumper-0.13.1.2.ebuild +++ b/dev-db/mydumper/mydumper-0.13.1.2.ebuild @@ -15,7 +15,7 @@ S="${WORKDIR}/${MY_P}" LICENSE="GPL-3+" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 ~x86" IUSE="doc" RDEPEND="app-arch/zstd diff --git a/dev-db/percona-server/files/percona-server-8.0.26.16-gcc-13.patch b/dev-db/percona-server/files/percona-server-8.0.26.16-gcc-13.patch new file mode 100644 index 000000000000..ce5844dfe9d5 --- /dev/null +++ b/dev-db/percona-server/files/percona-server-8.0.26.16-gcc-13.patch @@ -0,0 +1,41 @@ +https://bugs.gentoo.org/895700 +--- a/plugin/group_replication/libmysqlgcs/include/mysql/gcs/gcs_logging.h ++++ b/plugin/group_replication/libmysqlgcs/include/mysql/gcs/gcs_logging.h +@@ -24,6 +24,7 @@ + #define GCS_LOGGING_INCLUDED + + #include ++#include + #include + + #include "plugin/group_replication/libmysqlgcs/include/mysql/gcs/gcs_types.h" +--- a/plugin/group_replication/libmysqlgcs/include/mysql/gcs/gcs_types.h ++++ b/plugin/group_replication/libmysqlgcs/include/mysql/gcs/gcs_types.h +@@ -23,6 +23,7 @@ + #ifndef GCS_TYPES_INCLUDED + #define GCS_TYPES_INCLUDED + ++#include + #include + #include + #include +--- a/plugin/x/src/interface/document_id_generator.h ++++ b/plugin/x/src/interface/document_id_generator.h +@@ -26,6 +26,7 @@ + #define PLUGIN_X_SRC_INTERFACE_DOCUMENT_ID_GENERATOR_H_ + + #include ++#include + #include + + namespace xpl { +--- a/sql/dd/impl/sdi.h ++++ b/sql/dd/impl/sdi.h +@@ -23,6 +23,7 @@ + #ifndef DD__SDI_INCLUDED + #define DD__SDI_INCLUDED + ++#include + #include + #include "my_compiler.h" + #include "sql/dd/sdi_fwd.h" // RJ_Document diff --git a/dev-db/percona-server/metadata.xml b/dev-db/percona-server/metadata.xml index f237cfbc6d1a..d3a175b143da 100644 --- a/dev-db/percona-server/metadata.xml +++ b/dev-db/percona-server/metadata.xml @@ -16,4 +16,7 @@ Add support for TokuDB storage engine Builds the TokuDB backup plugin + + percona/percona-server + diff --git a/dev-db/percona-server/percona-server-8.0.26.16-r2.ebuild b/dev-db/percona-server/percona-server-8.0.26.16-r2.ebuild index 6cda9fcd379e..4548b9b63299 100644 --- a/dev-db/percona-server/percona-server-8.0.26.16-r2.ebuild +++ b/dev-db/percona-server/percona-server-8.0.26.16-r2.ebuild @@ -47,7 +47,7 @@ KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 -riscv ~s390 ~sparc ~ # and we will run a mysql server during test phase S="${WORKDIR}/mysql" -# Be warned, *DEPEND are version-dependant +# Be warned, *DEPEND are version-dependent # These are used for both runtime and compiletime # openldap < dep for bug #835647 (we need ldap_r) COMMON_DEPEND=" @@ -177,6 +177,7 @@ src_unpack() { src_prepare() { eapply "${WORKDIR}"/mysql-patches eapply "${FILESDIR}"/${PN}-8.0.26.16-gcc-12.patch + eapply "${FILESDIR}"/${PN}-8.0.26.16-gcc-13.patch # Avoid rpm call which would trigger sandbox, #692368 sed -i \ @@ -252,6 +253,7 @@ src_configure() { # all the time for simplicity and to make sure it is actually correct. -DSTACK_DIRECTION=$(tc-stack-grows-down && echo -1 || echo 1) -DCMAKE_POSITION_INDEPENDENT_CODE=ON + -DUSE_LD_LLD=OFF -DWITH_CURL=system -DWITH_BOOST="${WORKDIR}/boost_$(ver_rs 1- _ ${MY_BOOST_VERSION})" -DWITH_ROUTER=$(usex router ON OFF) diff --git a/dev-db/percona-toolkit/percona-toolkit-3.5.1.ebuild b/dev-db/percona-toolkit/percona-toolkit-3.5.1.ebuild index cac56554aef2..488a2c186226 100644 --- a/dev-db/percona-toolkit/percona-toolkit-3.5.1.ebuild +++ b/dev-db/percona-toolkit/percona-toolkit-3.5.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://www.percona.com/downloads/${PN}/${PV}/source/tarball/${P}.tar.g LICENSE="|| ( GPL-2 Artistic )" SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" # Package warrants IUSE doc IUSE="" diff --git a/dev-db/percona-xtrabackup/files/percona-xtrabackup-8.0.30.23-gcc13.patch b/dev-db/percona-xtrabackup/files/percona-xtrabackup-8.0.30.23-gcc13.patch new file mode 100644 index 000000000000..cf13aba845a1 --- /dev/null +++ b/dev-db/percona-xtrabackup/files/percona-xtrabackup-8.0.30.23-gcc13.patch @@ -0,0 +1,38 @@ +https://bugs.gentoo.org/895702 +--- a/components/keyrings/common/data/data.h ++++ b/components/keyrings/common/data/data.h +@@ -23,6 +23,7 @@ + #ifndef DATA_INCLUDED + #define DATA_INCLUDED + ++#include + #include + #include + #include "pfs_string.h" +--- a/libbinlogevents/include/gtids/global.h ++++ b/libbinlogevents/include/gtids/global.h +@@ -23,6 +23,7 @@ + #ifndef CS_GTIDS_GLOBALS_INCLUDED + #define CS_GTIDS_GLOBALS_INCLUDED + ++#include + #include + #include + #include "libbinlogevents/include/uuid.h" +@@ -34,4 +35,4 @@ typedef binary_log::Uuid Uuid; + + } // namespace binary_log::gtids + +-#endif +\ No newline at end of file ++#endif +--- a/sql/dd/impl/sdi.h ++++ b/sql/dd/impl/sdi.h +@@ -23,6 +23,7 @@ + #ifndef DD__SDI_INCLUDED + #define DD__SDI_INCLUDED + ++#include + #include + #include "my_compiler.h" + #include "sql/dd/sdi_fwd.h" // RJ_Document diff --git a/dev-db/percona-xtrabackup/percona-xtrabackup-8.0.30.23.ebuild b/dev-db/percona-xtrabackup/percona-xtrabackup-8.0.30.23.ebuild index d0a696311550..7c1066f1f22d 100644 --- a/dev-db/percona-xtrabackup/percona-xtrabackup-8.0.30.23.ebuild +++ b/dev-db/percona-xtrabackup/percona-xtrabackup-8.0.30.23.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -50,6 +50,7 @@ RDEPEND=" PATCHES=( "${FILESDIR}"/${PN}-8.0.26-remove-rpm.patch + "${FILESDIR}"/${PN}-8.0.30.23-gcc13.patch ) S="${WORKDIR}/percona-xtrabackup-${MY_PV}" diff --git a/dev-db/pgbouncer/Manifest b/dev-db/pgbouncer/Manifest index 18dc9af30a24..cf53948311d9 100644 --- a/dev-db/pgbouncer/Manifest +++ b/dev-db/pgbouncer/Manifest @@ -1,2 +1,3 @@ DIST pgbouncer-1.16.1.tar.gz 591450 BLAKE2B 137193ad614586d708598fd7003af4dee69f03f88a7235ba4074b63d57ffc3ee1c41fbccb49c5df7c23a2272b33810f8c2a9084d98e2e695a3b5f5ec317e0227 SHA512 9ecb7c7ae136d85e3da434094909df3a6ff06ce8586a1848c0c00914d87a877aecbb26ea30ad8230062160f3177621cc16deb4a490e9a2a649c8032dacb86341 DIST pgbouncer-1.17.0.tar.gz 598294 BLAKE2B 697411c612b4d53c779c3170692e49afd250c28a1674a835403aa6e0ee27f1e52627b97d0ed478868f8658be7ce2323fdfd1604e5a00d739f3152c55332479b2 SHA512 5913ce542f0f694f114db8a2f339e536fb2b5887efb160b7ce3c708ae3d638bee95943104eafb9fbc4fc225649bd5625da2ccf1b56489afe33ebf8aacac48863 +DIST pgbouncer-1.18.0.tar.gz 600825 BLAKE2B 5c701d6534b9127cb8aef4e47c956644e657506104f5d9844724cc27901f48d271471ff0fe7f863bc064a30906c0ab9dfa9d0ca9472753d183419e57ae2ad333 SHA512 1c2bd55c6909a012917fcf1b139ab4bac89de1d02b346b8ade2205c15105a0c6f4f6632bf5844f654cb19e3312b8ed22bf2d14094a17f5515325c826662d5935 diff --git a/dev-db/pgbouncer/pgbouncer-1.18.0.ebuild b/dev-db/pgbouncer/pgbouncer-1.18.0.ebuild new file mode 100644 index 000000000000..0552eb5d92a9 --- /dev/null +++ b/dev-db/pgbouncer/pgbouncer-1.18.0.ebuild @@ -0,0 +1,79 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Lightweight connection pooler for PostgreSQL" +HOMEPAGE="https://www.pgbouncer.org/" +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" + +# At-most-one-of, one can be enabled but not both +REQUIRED_USE="?? ( c-ares udns )" + +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 ) +" + +DEPEND="${RDEPEND}" + +# Tests require a local database server, wants to fiddle with iptables, +# and doesn't support overriding. +RESTRICT="test" + +src_prepare() { + eapply "${FILESDIR}"/pgbouncer-1.12-dirs.patch + + default +} + +src_configure() { + # --enable-debug is only used to disable stripping + econf \ + --docdir=/usr/share/doc/${PF} \ + --enable-debug \ + $(use_with c-ares cares) \ + $(use_enable debug cassert) \ + $(use_with pam) \ + $(use_with ssl openssl) \ + $(use_with systemd) \ + $(use_with udns) +} + +src_install() { + emake DESTDIR="${D}" install + + dodoc AUTHORS + use doc && dodoc doc/*.md + + newconfd "${FILESDIR}/${PN}.confd-r1" "${PN}" + newinitd "${FILESDIR}/${PN}.initd-r2" "${PN}" + + insinto /etc + doins etc/pgbouncer.ini + + insinto /etc/logrotate.d + newins "${FILESDIR}/logrotate" pgbouncer +} + +pkg_postinst() { + if [[ -z ${REPLACING_VERSIONS} ]] ; then + einfo "Please read the config.txt for Configuration Directives" + einfo + einfo "For Administration Commands, see:" + einfo " man pgbouncer" + einfo + einfo "By default, PgBouncer does not have access to any database." + einfo "GRANT the permissions needed for your application and make sure that it" + einfo "exists in PgBouncer's auth_file." + fi +} diff --git a/dev-db/redis/Manifest b/dev-db/redis/Manifest index 761e3103758a..d376e13268e4 100644 --- a/dev-db/redis/Manifest +++ b/dev-db/redis/Manifest @@ -1,5 +1,7 @@ DIST redis-6.2.11.tar.gz 2492990 BLAKE2B edf046d86e295878abc5ba46ea6c8048c97f27b90d132ec1318350fa0634bb5e4cd1407757f07ef3c11abcb13b05ccc8a757bc17d7f1c9800644dfc0d2994d77 SHA512 9962446d7b1f14524a3007967768b33281dd33706567b8ac56e4cb7d3caa8533bcbc319ea899a163d56567be85cbc03cdcc440d9b1c9707372e10b53d1c1dcd7 +DIST redis-6.2.12.tar.gz 2494460 BLAKE2B f7ac63c9c377743c158b435f954acf58db764f8ed70d5e76d13b814bf6316102eb9b0994477ac4629ff4fe94fef175735b95e7aa61f3ab69dd1caf63f39bf765 SHA512 cb955efacfd3ca9c526403f041d3500bfbd757137af46a1b76f2773ff835d9892f6a970cd9893f89f803aa2491f342b603c6208a08aad8f72f37feef4a03e8d1 DIST redis-6.2.7.tar.gz 2487287 BLAKE2B 06f1b1e16cdf06c38b67c1f1dcccc025da50cc3719688b8c2bf23077d77dd97ea546909043fb65e60478ac3661cc033fa6e8d7a38e361e69eb93ba3db07b7c66 SHA512 d113094b8e31754915db7f0317d9b7969e034af3a7bac2ae0cbfad6cc61ba3aae35e9709c435abc1024a96f914df7a760b3cd18d06c375b541cfa837d1c5b953 DIST redis-7.0.10.tar.gz 2986993 BLAKE2B 94008c7801a9a0909b2b0131a45d4e0815648c7761d9a78c59be2cb03f6955678d7185c907f663bccd8a156851b61f76eaeca82dbd3beb5e64cc6ebf060e2ec2 SHA512 cb6376b8eb9bd56808d15b7a2289b39ad62ade618ab4b57314e6bda43a91905a4f222b32fa27fd4040e29e55ba4f4624452c246fb42fe3539c154954592efaa7 +DIST redis-7.0.11.tar.gz 2988485 BLAKE2B b82c2dd9c81a2d92051814b07e6e3a886e52a1f46b9aa28124ad8850a5fec6a0b7bb86ec803c0e23c2c92fea0e2f29e7eca9f5f875d4396fdff9d1b54dbaf0e1 SHA512 679c908b87b4e513401b49d7b87ac1cb03a29dd145dc2364afd579dd541a38feb5d65ee9b7077bb6ec96c3850812bdd475ca10d5cf92ebe52839ff1a2be89174 DIST redis-7.0.5.tar.gz 2968205 BLAKE2B c319a2f656e4bd26637735ef73e58eecc306e202b57d6da3a38150a02d738a414c6696e261b8ab88033e117aee4f02308aab9ca4a5f382d66ec3a10f3e020580 SHA512 16ff920cb8df4d82e78ef34209285024aa98189be8acbca86b10fb3064dcc70eac60206aadece6af08406860ed01a004ce3aaa86be896ea36c7f486686646753 DIST redis-7.0.9.tar.gz 2984823 BLAKE2B 9c2e79f40ad14f6412ec4bc79507a32f8780bf4b3a311b87dd309e74b6367536f1c91b8026efc6acb3d750ca7c49687a74660c66d104caa439ef385db3eab230 SHA512 e984a19583e4aae0a5dce85a434d3255f4f13725eba0f11a1fe1a1189b17035152a26b65f1a3a8834f0dd8218f4a65986c918f96386120ea9419bd02366c8293 diff --git a/dev-db/redis/redis-6.2.12.ebuild b/dev-db/redis/redis-6.2.12.ebuild new file mode 100644 index 000000000000..786b4513b599 --- /dev/null +++ b/dev-db/redis/redis-6.2.12.ebuild @@ -0,0 +1,195 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +# Redis does NOT build with Lua 5.2 or newer at this time: +# - 5.3 and 5.4 give: +# lua_bit.c:83:2: error: #error "Unknown number type, check LUA_NUMBER_* in luaconf.h" +# - 5.2 fails with: +# scripting.c:(.text+0x1f9b): undefined reference to `lua_open' +# because lua_open became lua_newstate in 5.2 +LUA_COMPAT=( lua5-1 luajit ) + +# Upstream have deviated too far from vanilla Lua, adding their own APIs +# like lua_enablereadonlytable, but we still need the eclass and such +# for bug #841422. +inherit autotools edo flag-o-matic lua-single multiprocessing systemd tmpfiles toolchain-funcs + +DESCRIPTION="A persistent caching system, key-value, and data structures database" +HOMEPAGE="https://redis.io" +SRC_URI="https://download.redis.io/releases/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris" +IUSE="+jemalloc selinux ssl systemd tcmalloc test" +RESTRICT="!test? ( test )" + +COMMON_DEPEND=" + ${LUA_DEPS} + jemalloc? ( >=dev-libs/jemalloc-5.1:= ) + ssl? ( dev-libs/openssl:0= ) + systemd? ( sys-apps/systemd:= ) + tcmalloc? ( dev-util/google-perftools ) +" + +RDEPEND=" + ${COMMON_DEPEND} + acct-group/redis + acct-user/redis + selinux? ( sec-policy/selinux-redis ) +" + +BDEPEND=" + ${COMMON_DEPEND} + virtual/pkgconfig +" + +# Tcl is only needed in the CHOST test env +DEPEND=" + ${COMMON_DEPEND} + test? ( + dev-lang/tcl:0= + ssl? ( dev-tcltk/tls ) + )" + +REQUIRED_USE="?? ( jemalloc tcmalloc ) + ${LUA_REQUIRED_USE}" + +PATCHES=( + "${FILESDIR}"/${PN}-6.2.1-config.patch + "${FILESDIR}"/${PN}-5.0-shared.patch + "${FILESDIR}"/${PN}-6.2.3-ppc-atomic.patch + "${FILESDIR}"/${PN}-sentinel-5.0-config.patch +) + +src_prepare() { + default + + # Copy lua modules into build dir + #cp "${S}"/deps/lua/src/{fpconv,lua_bit,lua_cjson,lua_cmsgpack,lua_struct,strbuf}.c "${S}"/src || die + #cp "${S}"/deps/lua/src/{fpconv,strbuf}.h "${S}"/src || die + # Append cflag for lua_cjson + # https://github.com/antirez/redis/commit/4fdcd213#diff-3ba529ae517f6b57803af0502f52a40bL61 + append-cflags "-DENABLE_CJSON_GLOBAL" + + # now we will rewrite present Makefiles + local makefiles="" MKF + for MKF in $(find -name 'Makefile' | cut -b 3-); do + mv "${MKF}" "${MKF}.in" + sed -i -e 's:$(CC):@CC@:g' \ + -e 's:$(CFLAGS):@AM_CFLAGS@:g' \ + -e 's: $(DEBUG)::g' \ + -e 's:$(OBJARCH)::g' \ + -e 's:ARCH:TARCH:g' \ + -e '/^CCOPT=/s:$: $(LDFLAGS):g' \ + "${MKF}.in" \ + || die "Sed failed for ${MKF}" + makefiles+=" ${MKF}" + done + # autodetection of compiler and settings; generates the modified Makefiles + cp "${FILESDIR}"/configure.ac-3.2 configure.ac || die + + # Use the correct pkgconfig name for Lua. + # The upstream configure script handles luajit specially, and is not + # affected by these changes. + sed -i \ + -e "/^AC_INIT/s|, [0-9].+, |, $PV, |" \ + -e "s:AC_CONFIG_FILES(\[Makefile\]):AC_CONFIG_FILES([${makefiles}]):g" \ + -e "/PKG_CHECK_MODULES.*\/s,lua5.1,${ELUA},g" \ + configure.ac || die "Sed failed for configure.ac" + eautoreconf +} + +src_configure() { + econf #$(use_with lua_single_target_luajit luajit) + + # Linenoise can't be built with -std=c99, see https://bugs.gentoo.org/451164 + # also, don't define ANSI/c99 for lua twice + sed -i -e "s:-std=c99::g" deps/linenoise/Makefile deps/Makefile || die +} + +src_compile() { + local myconf="" + + if use jemalloc; then + myconf+="MALLOC=jemalloc" + elif use tcmalloc; then + myconf+="MALLOC=tcmalloc" + else + myconf+="MALLOC=libc" + fi + + if use ssl; then + myconf+=" BUILD_TLS=yes" + fi + + export USE_SYSTEMD=$(usex systemd) + + tc-export AR CC RANLIB + emake V=1 ${myconf} AR="${AR}" CC="${CC}" RANLIB="${RANLIB}" +} + +src_test() { + local runtestargs=( + --clients "$(makeopts_jobs)" # see bug #649868 + ) + + if has usersandbox ${FEATURES} || ! has userpriv ${FEATURES}; then + ewarn "unit/oom-score-adj test will be skipped." \ + "It is known to fail with FEATURES usersandbox or -userpriv. See bug #756382." + + # unit/oom-score-adj was introduced in version 6.2.0 + runtestargs+=( --skipunit unit/oom-score-adj ) # see bug #756382 + fi + + if use ssl; then + edo ./utils/gen-test-certs.sh + runtestargs+=( --tls ) + fi + + edo ./runtest "${runtestargs[@]}" +} + +src_install() { + insinto /etc/redis + doins redis.conf sentinel.conf + use prefix || fowners -R redis:redis /etc/redis /etc/redis/{redis,sentinel}.conf + fperms 0750 /etc/redis + fperms 0644 /etc/redis/{redis,sentinel}.conf + + newconfd "${FILESDIR}/redis.confd-r2" redis + newinitd "${FILESDIR}/redis.initd-6" redis + + systemd_newunit "${FILESDIR}/redis.service-4" redis.service + newtmpfiles "${FILESDIR}/redis.tmpfiles-2" redis.conf + + newconfd "${FILESDIR}/redis-sentinel.confd-r1" redis-sentinel + newinitd "${FILESDIR}/redis-sentinel.initd-r1" redis-sentinel + + insinto /etc/logrotate.d/ + newins "${FILESDIR}/${PN}.logrotate" ${PN} + + dodoc 00-RELEASENOTES BUGS CONTRIBUTING MANIFESTO README.md + + dobin src/redis-cli + dosbin src/redis-benchmark src/redis-server src/redis-check-aof src/redis-check-rdb + fperms 0750 /usr/sbin/redis-benchmark + dosym redis-server /usr/sbin/redis-sentinel + + if use prefix; then + diropts -m0750 + else + diropts -m0750 -o redis -g redis + fi + keepdir /var/{log,lib}/redis +} + +pkg_postinst() { + tmpfiles_process redis.conf + + ewarn "The default redis configuration file location changed to:" + ewarn " /etc/redis/{redis,sentinel}.conf" + ewarn "Please apply your changes to the new configuration files." +} diff --git a/dev-db/redis/redis-7.0.11.ebuild b/dev-db/redis/redis-7.0.11.ebuild new file mode 100644 index 000000000000..6351e489f12e --- /dev/null +++ b/dev-db/redis/redis-7.0.11.ebuild @@ -0,0 +1,187 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +# N.B.: It is no clue in porting to Lua eclasses, as upstream have deviated +# too far from vanilla Lua, adding their own APIs like lua_enablereadonlytable + +inherit autotools edo flag-o-matic multiprocessing systemd tmpfiles toolchain-funcs + +DESCRIPTION="A persistent caching system, key-value, and data structures database" +HOMEPAGE="https://redis.io" +SRC_URI="https://download.redis.io/releases/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris" +IUSE="+jemalloc selinux ssl systemd tcmalloc test" +RESTRICT="!test? ( test )" + +COMMON_DEPEND=" + jemalloc? ( >=dev-libs/jemalloc-5.1:= ) + ssl? ( dev-libs/openssl:0= ) + systemd? ( sys-apps/systemd:= ) + tcmalloc? ( dev-util/google-perftools ) +" + +RDEPEND=" + ${COMMON_DEPEND} + acct-group/redis + acct-user/redis + selinux? ( sec-policy/selinux-redis ) +" + +BDEPEND=" + ${COMMON_DEPEND} + virtual/pkgconfig +" + +# Tcl is only needed in the CHOST test env +DEPEND=" + ${COMMON_DEPEND} + test? ( + dev-lang/tcl:0= + ssl? ( dev-tcltk/tls ) + )" + +REQUIRED_USE="?? ( jemalloc tcmalloc )" + +PATCHES=( + "${FILESDIR}"/${PN}-6.2.1-config.patch + "${FILESDIR}"/${PN}-5.0-shared.patch + "${FILESDIR}"/${PN}-6.2.3-ppc-atomic.patch + "${FILESDIR}"/${PN}-sentinel-5.0-config.patch + "${FILESDIR}"/${PN}-7.0.4-no-which.patch +) + +src_prepare() { + default + + # Append cflag for lua_cjson + # https://github.com/antirez/redis/commit/4fdcd213#diff-3ba529ae517f6b57803af0502f52a40bL61 + append-cflags "-DENABLE_CJSON_GLOBAL" + + # now we will rewrite present Makefiles + local makefiles="" MKF + for MKF in $(find -name 'Makefile' | cut -b 3-); do + mv "${MKF}" "${MKF}.in" + sed -i -e 's:$(CC):@CC@:g' \ + -e 's:$(CFLAGS):@AM_CFLAGS@:g' \ + -e 's: $(DEBUG)::g' \ + -e 's:$(OBJARCH)::g' \ + -e 's:ARCH:TARCH:g' \ + -e '/^CCOPT=/s:$: $(LDFLAGS):g' \ + "${MKF}.in" \ + || die "Sed failed for ${MKF}" + makefiles+=" ${MKF}" + done + # autodetection of compiler and settings; generates the modified Makefiles + cp "${FILESDIR}"/configure.ac-7.0 configure.ac || die + + sed -i \ + -e "/^AC_INIT/s|, __PV__, |, $PV, |" \ + -e "s:AC_CONFIG_FILES(\[Makefile\]):AC_CONFIG_FILES([${makefiles}]):g" \ + configure.ac || die "Sed failed for configure.ac" + eautoreconf +} + +src_configure() { + econf + + # Linenoise can't be built with -std=c99, see https://bugs.gentoo.org/451164 + # also, don't define ANSI/c99 for lua twice + sed -i -e "s:-std=c99::g" deps/linenoise/Makefile deps/Makefile || die +} + +src_compile() { + local myconf="" + + if use jemalloc; then + myconf+="MALLOC=jemalloc" + elif use tcmalloc; then + myconf+="MALLOC=tcmalloc" + else + myconf+="MALLOC=libc" + fi + + if use ssl; then + myconf+=" BUILD_TLS=yes" + fi + + export USE_SYSTEMD=$(usex systemd) + + tc-export AR CC RANLIB + emake V=1 ${myconf} AR="${AR}" CC="${CC}" RANLIB="${RANLIB}" +} + +src_test() { + local runtestargs=( + --clients "$(makeopts_jobs)" # see bug #649868 + + --skiptest "Active defrag eval scripts" # see bug #851654 + ) + + if has usersandbox ${FEATURES} || ! has userpriv ${FEATURES}; then + ewarn "oom-score-adj related tests will be skipped." \ + "They are known to fail with FEATURES usersandbox or -userpriv. See bug #756382." + + runtestargs+=( + # unit/oom-score-adj was introduced in version 6.2.0 + --skipunit unit/oom-score-adj # see bug #756382 + + # Following test was added in version 7.0.0 to unit/introspection. + # It also tries to adjust OOM score. + --skiptest "CONFIG SET rollback on apply error" + ) + fi + + if use ssl; then + edo ./utils/gen-test-certs.sh + runtestargs+=( --tls ) + fi + + edo ./runtest "${runtestargs[@]}" +} + +src_install() { + insinto /etc/redis + doins redis.conf sentinel.conf + use prefix || fowners -R redis:redis /etc/redis /etc/redis/{redis,sentinel}.conf + fperms 0750 /etc/redis + fperms 0644 /etc/redis/{redis,sentinel}.conf + + newconfd "${FILESDIR}/redis.confd-r2" redis + newinitd "${FILESDIR}/redis.initd-6" redis + + systemd_newunit "${FILESDIR}/redis.service-4" redis.service + newtmpfiles "${FILESDIR}/redis.tmpfiles-2" redis.conf + + newconfd "${FILESDIR}/redis-sentinel.confd-r1" redis-sentinel + newinitd "${FILESDIR}/redis-sentinel.initd-r1" redis-sentinel + + insinto /etc/logrotate.d/ + newins "${FILESDIR}/${PN}.logrotate" ${PN} + + dodoc 00-RELEASENOTES BUGS CONTRIBUTING.md MANIFESTO README.md + + dobin src/redis-cli + dosbin src/redis-benchmark src/redis-server src/redis-check-aof src/redis-check-rdb + fperms 0750 /usr/sbin/redis-benchmark + dosym redis-server /usr/sbin/redis-sentinel + + if use prefix; then + diropts -m0750 + else + diropts -m0750 -o redis -g redis + fi + keepdir /var/{log,lib}/redis +} + +pkg_postinst() { + tmpfiles_process redis.conf + + ewarn "The default redis configuration file location changed to:" + ewarn " /etc/redis/{redis,sentinel}.conf" + ewarn "Please apply your changes to the new configuration files." +} diff --git a/dev-db/sqlite/Manifest b/dev-db/sqlite/Manifest index cba6d8563d20..7e22dbb9c93c 100644 --- a/dev-db/sqlite/Manifest +++ b/dev-db/sqlite/Manifest @@ -1,4 +1,2 @@ -DIST sqlite-doc-3400100.zip 10934836 BLAKE2B 52adbfa911a5d8556e4e071bf14ad83145023fbd426f285d9724d7f06e41257df53d3c28224581f12b4ca8f699bf3d3ec829ee161374ce0208783e5da72639dc SHA512 1131b0a6304a4dd6287c85d38d1450fd2dd0e3377d88a263e3c4716415e0587750357f25486727b9433797da0331229682565e7a8a3986eba89cfcab550a2d41 DIST sqlite-doc-3410200.zip 10633275 BLAKE2B 1323179d04b9fa21df4ed93ad1aa89ff943a9d930ef02699aade779f18f28aa45dac8362d6427d7eb896c0c0b20e12f8446050f1fc08c3deef24e395123319c1 SHA512 77099fd3bfdb0c19baedb1248c5ff028a14cbc98d18956dfb13e55289a7dddbe82d25e4522f0cbbe9c2798e0531c354df5a207f89c62dfe0f84877db47bb4f9e -DIST sqlite-src-3400100.zip 13725560 BLAKE2B 24d2efbbf7f8f35888b1e53c98f9c7fece9b1cf0b175bf49b78869253aa753ce47e2db67247183c07368e69d6eb63a6e39c06b212c8fd5ca36c892ff535bedca SHA512 78f8c6396bf8da090671c6f4c41255e60788324fccdaad906c53610eb6e37705f4d25c7f84da3be00b511ddf9f2e0545901f33f5ae4b6e00b1ea9413af095299 DIST sqlite-src-3410200.zip 13836230 BLAKE2B 4edcd65728143b1ea27abe65db8c8353dfa309858e6f40d70f3c376ef9e5613d92c41ed5a3c3282cacef8a29a434e3881f6e47ba5642820331170ceb69321d86 SHA512 28cfa72f2b39d851c38fb757a0c6d0696c22548792ce2fa1be5e2f6084e4bf0a5fb216902b59ccba5b6ebaf140aab954ed7676d84841b58ad063404a119a0c17 diff --git a/dev-db/sqlite/files/sqlite-3.39.4-icu-72-test.patch b/dev-db/sqlite/files/sqlite-3.39.4-icu-72-test.patch deleted file mode 100644 index 54de04d11f06..000000000000 --- a/dev-db/sqlite/files/sqlite-3.39.4-icu-72-test.patch +++ /dev/null @@ -1,29 +0,0 @@ -https://sqlite.org/src/vpatch?from=18e89a436daa18a8&to=a2b6883ac2ef878f -https://sqlite.org/forum/forumpost/072d2fddc4 -https://bugs.gentoo.org/882605 ---- a/test/fts3expr4.test -+++ b/test/fts3expr4.test -@@ -48,11 +48,20 @@ - - # In "col:word", if "col" is not the name of a column, the entire thing - # is passed to the tokenizer. - # - do_icu_expr_test 1.7 {a:word} {PHRASE 0 0 word} --do_icu_expr_test 1.8 {d:word} {PHRASE 3 0 d:word} -+# do_icu_expr_test 1.8 {d:word} {PHRASE 3 0 d:word} -+do_test 1.8 { -+ set res [ -+ db one {SELECT fts3_exprtest('icu en_US', 'd:word', 'a', 'b', 'c')} -+ ] -+ expr { -+ $res=="PHRASE 3 0 d:word" || -+ $res=="AND {AND {PHRASE 3 0 d} {PHRASE 3 0 :}} {PHRASE 3 0 word}" -+ } -+} 1 - - set sqlite_fts3_enable_parentheses 0 - - do_icu_expr_test 2.1 { - f (e NEAR/2 a) - - diff --git a/dev-db/sqlite/sqlite-3.40.1.ebuild b/dev-db/sqlite/sqlite-3.40.1.ebuild deleted file mode 100644 index 7013595958a3..000000000000 --- a/dev-db/sqlite/sqlite-3.40.1.ebuild +++ /dev/null @@ -1,432 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools flag-o-matic multilib-minimal toolchain-funcs - -DESCRIPTION="SQL database engine" -HOMEPAGE="https://sqlite.org/" - -# On version updates, make sure to read the forum (https://sqlite.org/forum/forum) -# for hints regarding test failures, backports, etc. -if [[ ${PV} == 9999 ]]; then - S="${WORKDIR}"/${PN} - PROPERTIES="live" -else - SRC_PV="$(printf "%u%02u%02u%02u" $(ver_rs 1- " "))" - DOC_PV="${SRC_PV}" - #DOC_PV="$(printf "%u%02u%02u00" $(ver_rs 1-3 " "))" - - SRC_URI=" - https://sqlite.org/2022/${PN}-src-${SRC_PV}.zip - doc? ( https://sqlite.org/2022/${PN}-doc-${DOC_PV}.zip ) - " - S="${WORKDIR}/${PN}-src-${SRC_PV}" - - KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~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" -fi - -LICENSE="public-domain" -SLOT="3" -IUSE="debug doc icu +readline secure-delete static-libs tcl test tools" -RESTRICT="!test? ( test )" - -RDEPEND=" - sys-libs/zlib:=[${MULTILIB_USEDEP}] - icu? ( dev-libs/icu:=[${MULTILIB_USEDEP}] ) - readline? ( sys-libs/readline:=[${MULTILIB_USEDEP}] ) - tcl? ( dev-lang/tcl:=[${MULTILIB_USEDEP}] ) - tools? ( dev-lang/tcl:= ) -" -DEPEND=" - ${RDEPEND} - test? ( >=dev-lang/tcl-8.6:0[${MULTILIB_USEDEP}] ) -" -BDEPEND=">=dev-lang/tcl-8.6:0" -if [[ ${PV} == 9999 ]]; then - BDEPEND+=" dev-vcs/fossil" -else - BDEPEND+=" app-arch/unzip" -fi - -PATCHES=( - "${FILESDIR}"/${PN}-3.39.4-icu-72-test.patch -) - -_fossil_fetch() { - local distdir="${PORTAGE_ACTUAL_DISTDIR:-${DISTDIR}}" - local repo_id="${1}" - local repo_uri="${2}" - - local -x FOSSIL_HOME="${HOME}" - - mkdir -p "${T}/fossil/${repo_id}" || die - pushd "${T}/fossil/${repo_id}" > /dev/null || die - - if [[ -n "${EVCS_OFFLINE}" ]]; then - if [[ ! -f "${distdir}/fossil-src/${repo_id}/${repo_id}.fossil" ]]; then - die "Network activity disabled using EVCS_OFFLINE and clone of repository missing: \"${distdir}/fossil-src/${repo_id}/${repo_id}.fossil\"" - fi - else - if [[ ! -f "${distdir}/fossil-src/${repo_id}/${repo_id}.fossil" ]]; then - einfo fossil clone --verbose "${repo_uri}" "${repo_id}.fossil" - fossil clone --verbose "${repo_uri}" "${repo_id}.fossil" || die - echo - else - cp -p "${distdir}/fossil-src/${repo_id}/${repo_id}.fossil" . || die - einfo fossil pull --repository "${repo_id}.fossil" --verbose "${repo_uri}" - fossil pull --repository "${repo_id}.fossil" --verbose "${repo_uri}" || die - echo - fi - - ( - addwrite "${distdir}" - mkdir -p "${distdir}/fossil-src/${repo_id}" || die - cp -p "${repo_id}.fossil" "${distdir}/fossil-src/${repo_id}/${repo_id}.fossil" || die - ) - fi - - popd > /dev/null || die -} - -_fossil_checkout() { - local distdir="${PORTAGE_ACTUAL_DISTDIR:-${DISTDIR}}" - local repo_id="${1}" - local branch_or_commit="${2}" - local target_directory="${3}" - - local -x FOSSIL_HOME="${HOME}" - - if [[ ! -f "${distdir}/fossil-src/${repo_id}/${repo_id}.fossil" ]]; then - die "Clone of repository missing: \"${distdir}/fossil-src/${repo_id}/${repo_id}.fossil\"" - fi - - if [[ ! -f "${T}/fossil/${repo_id}/${repo_id}.fossil" ]]; then - mkdir -p "${T}/fossil/${repo_id}" || die - cp -p "${distdir}/fossil-src/${repo_id}/${repo_id}.fossil" "${T}/fossil/${repo_id}" || die - fi - - mkdir "${target_directory}" || die - pushd "${target_directory}" > /dev/null || die - - einfo fossil open --quiet "${T}/fossil/${repo_id}/${repo_id}.fossil" "${branch_or_commit}" - fossil open --quiet "${T}/fossil/${repo_id}/${repo_id}.fossil" "${branch_or_commit}" || die - echo - - popd > /dev/null || die -} - -fossil_fetch() { - local repo_id="${1}" - local repo_uri="${2}" - local target_directory="${3}" - - local branch_or_commit="${EFOSSIL_COMMIT:-${EFOSSIL_BRANCH:-trunk}}" - - _fossil_fetch "${repo_id}" "${repo_uri}" - _fossil_checkout "${repo_id}" "${branch_or_commit}" "${target_directory}" -} - -src_unpack() { - if [[ ${PV} == 9999 ]]; then - fossil_fetch sqlite https://sqlite.org/src "${WORKDIR}/${PN}" - if use doc; then - fossil_fetch sqlite-doc https://sqlite.org/docsrc "${WORKDIR}/${PN}-doc" - fi - else - default - fi -} - -src_prepare() { - default - - eautoreconf - multilib_copy_sources -} - -multilib_src_configure() { - local -x CPPFLAGS="${CPPFLAGS}" CFLAGS="${CFLAGS}" - local options=() - - options+=( - --enable-load-extension - --enable-threadsafe - ) - - # Support detection of misuse of SQLite API. - # https://sqlite.org/compile.html#enable_api_armor - append-cppflags -DSQLITE_ENABLE_API_ARMOR - - # Support bytecode and tables_used virtual tables. - # https://sqlite.org/compile.html#enable_bytecode_vtab - # https://sqlite.org/bytecodevtab.html - append-cppflags -DSQLITE_ENABLE_BYTECODE_VTAB - - # Support column metadata functions. - # https://sqlite.org/compile.html#enable_column_metadata - # https://sqlite.org/c3ref/column_database_name.html - append-cppflags -DSQLITE_ENABLE_COLUMN_METADATA - - # Support sqlite_dbpage virtual table. - # https://sqlite.org/compile.html#enable_dbpage_vtab - # https://sqlite.org/dbpage.html - append-cppflags -DSQLITE_ENABLE_DBPAGE_VTAB - - # Support dbstat virtual table. - # https://sqlite.org/compile.html#enable_dbstat_vtab - # https://sqlite.org/dbstat.html - append-cppflags -DSQLITE_ENABLE_DBSTAT_VTAB - - # Support sqlite3_serialize() and sqlite3_deserialize() functions. - # https://sqlite.org/compile.html#enable_deserialize - # https://sqlite.org/c3ref/serialize.html - # https://sqlite.org/c3ref/deserialize.html - append-cppflags -DSQLITE_ENABLE_DESERIALIZE - - # Support comments in output of EXPLAIN. - # https://sqlite.org/compile.html#enable_explain_comments - append-cppflags -DSQLITE_ENABLE_EXPLAIN_COMMENTS - - # Support Full-Text Search versions 3, 4 and 5. - # https://sqlite.org/compile.html#enable_fts3 - # https://sqlite.org/compile.html#enable_fts3_parenthesis - # https://sqlite.org/compile.html#enable_fts4 - # https://sqlite.org/compile.html#enable_fts5 - # https://sqlite.org/fts3.html - # https://sqlite.org/fts5.html - append-cppflags -DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_FTS3_PARENTHESIS -DSQLITE_ENABLE_FTS4 - options+=( --enable-fts5 ) - - # Support hidden columns. - append-cppflags -DSQLITE_ENABLE_HIDDEN_COLUMNS - - # Support memsys5 memory allocator. - # https://sqlite.org/compile.html#enable_memsys5 - # https://sqlite.org/malloc.html#memsys5 - append-cppflags -DSQLITE_ENABLE_MEMSYS5 - - # Support sqlite3_normalized_sql() function. - # https://sqlite.org/c3ref/expanded_sql.html - append-cppflags -DSQLITE_ENABLE_NORMALIZE - - # Support sqlite_offset() function. - # https://sqlite.org/compile.html#enable_offset_sql_func - # https://sqlite.org/lang_corefunc.html#sqlite_offset - append-cppflags -DSQLITE_ENABLE_OFFSET_SQL_FUNC - - # Support pre-update hook functions. - # https://sqlite.org/compile.html#enable_preupdate_hook - # https://sqlite.org/c3ref/preupdate_count.html - append-cppflags -DSQLITE_ENABLE_PREUPDATE_HOOK - - # Support Resumable Bulk Update extension. - # https://sqlite.org/compile.html#enable_rbu - # https://sqlite.org/rbu.html - append-cppflags -DSQLITE_ENABLE_RBU - - # Support R*Trees. - # https://sqlite.org/compile.html#enable_rtree - # https://sqlite.org/compile.html#enable_geopoly - # https://sqlite.org/rtree.html - # https://sqlite.org/geopoly.html - append-cppflags -DSQLITE_ENABLE_RTREE -DSQLITE_ENABLE_GEOPOLY - - # Support Session extension. - # https://sqlite.org/compile.html#enable_session - # https://sqlite.org/sessionintro.html - append-cppflags -DSQLITE_ENABLE_SESSION - - # Support scan status functions. - # https://sqlite.org/compile.html#enable_stmt_scanstatus - # https://sqlite.org/c3ref/stmt_scanstatus.html - # https://sqlite.org/c3ref/stmt_scanstatus_reset.html - append-cppflags -DSQLITE_ENABLE_STMT_SCANSTATUS - - # Support sqlite_stmt virtual table. - # https://sqlite.org/compile.html#enable_stmtvtab - # https://sqlite.org/stmt.html - append-cppflags -DSQLITE_ENABLE_STMTVTAB - - # Support unknown() function. - # https://sqlite.org/compile.html#enable_unknown_sql_function - append-cppflags -DSQLITE_ENABLE_UNKNOWN_SQL_FUNCTION - - # Support unlock notification. - # https://sqlite.org/compile.html#enable_unlock_notify - # https://sqlite.org/c3ref/unlock_notify.html - # https://sqlite.org/unlock_notify.html - append-cppflags -DSQLITE_ENABLE_UNLOCK_NOTIFY - - # Support LIMIT and ORDER BY clauses on DELETE and UPDATE statements. - # https://sqlite.org/compile.html#enable_update_delete_limit - # https://sqlite.org/lang_delete.html#optional_limit_and_order_by_clauses - # https://sqlite.org/lang_update.html#optional_limit_and_order_by_clauses - append-cppflags -DSQLITE_ENABLE_UPDATE_DELETE_LIMIT - - # Support soundex() function. - # https://sqlite.org/compile.html#soundex - # https://sqlite.org/lang_corefunc.html#soundex - append-cppflags -DSQLITE_SOUNDEX - - # Support URI filenames. - # https://sqlite.org/compile.html#use_uri - # https://sqlite.org/uri.html - append-cppflags -DSQLITE_USE_URI - - options+=( $(use_enable debug) ) - - if use icu; then - # Support ICU extension. - # https://sqlite.org/compile.html#enable_icu - append-cppflags -DSQLITE_ENABLE_ICU - sed -e "s/^TLIBS = @LIBS@/& -licui18n -licuuc/" -i Makefile.in || die "sed failed" - fi - - options+=( - --disable-editline - $(use_enable readline) - ) - - if use readline; then - options+=( --with-readline-inc="-I${ESYSROOT}/usr/include/readline" ) - fi - - if use secure-delete; then - # Enable secure_delete pragma by default. - # https://sqlite.org/compile.html#secure_delete - # https://sqlite.org/pragma.html#pragma_secure_delete - append-cppflags -DSQLITE_SECURE_DELETE - fi - - options+=( $(use_enable static-libs static) ) - - # tcl, test, tools USE flags. - if use tcl || use test || { use tools && multilib_is_native_abi; }; then - options+=( - --enable-tcl - --with-tcl="${ESYSROOT}/usr/$(get_libdir)" - ) - else - options+=( --disable-tcl ) - fi - - if [[ "${ABI}" == "x86" ]]; then - if $(tc-getCC) ${CPPFLAGS} ${CFLAGS} -E -P -dM - < /dev/null 2> /dev/null | grep -q "^#define __SSE__ 1$"; then - append-cflags -mfpmath=sse - else - append-cflags -ffloat-store - fi - - # Skip known-broken test for now - # https://sqlite.org/forum/forumpost/d97caf168f - # https://sqlite.org/forum/forumpost/50f136d91d - if use test ; then - rm test/atof1.test || die - fi - fi - - econf "${options[@]}" -} - -multilib_src_compile() { - emake HAVE_TCL="$(usev tcl 1)" TCLLIBDIR="${EPREFIX}/usr/$(get_libdir)/${P}" - - if use tools && multilib_is_native_abi; then - emake changeset dbdump dbhash dbtotxt index_usage rbu scrub showdb showjournal showshm showstat4 showwal sqldiff sqlite3_analyzer sqlite3_checker sqlite3_expert sqltclsh - fi - - if [[ ${PV} == 9999 ]] && use doc && multilib_is_native_abi; then - emake tclsqlite3.c - - local build_directory="$(pwd)" - build_directory="${build_directory##*/}" - - mkdir "${WORKDIR}/${PN}-doc-build" || die - pushd "${WORKDIR}/${PN}-doc-build" > /dev/null || die - - emake -f "../${PN}-doc/Makefile" -j1 SRC="../${PN}" BLD="../${build_directory}" DOC="../${PN}-doc" CC="$(tc-getBUILD_CC)" TCLINC="" TCLFLAGS="$($(tc-getBUILD_PKG_CONFIG) --libs tcl) -ldl -lm" base doc - rmdir doc/matrix{/*,} || die - - popd > /dev/null || die - fi -} - -multilib_src_test() { - if [[ "${EUID}" -eq 0 ]]; then - ewarn "Skipping tests due to root permissions" - return - fi - - local -x SQLITE_HISTORY="${T}/sqlite_history_${ABI}" - - # e_uri.test tries to open files in /. - # bug #839798 - local SANDBOX_PREDICT=${SANDBOX_PREDICT} - addpredict "/test.db:/ÿ.db" - - emake HAVE_TCL="$(usex tcl 1 "")" $(usex debug 'fulltest' 'test') -} - -multilib_src_install() { - emake DESTDIR="${D}" HAVE_TCL="$(usex tcl 1 "")" TCLLIBDIR="${EPREFIX}/usr/$(get_libdir)/${P}" install - - if use tools && multilib_is_native_abi; then - install_tool() { - if [[ -f ".libs/${1}" ]]; then - newbin ".libs/${1}" "${2}" - else - newbin "${1}" "${2}" - fi - } - - install_tool changeset sqlite3-changeset - install_tool dbdump sqlite3-db-dump - install_tool dbhash sqlite3-db-hash - install_tool dbtotxt sqlite3-db-to-txt - install_tool index_usage sqlite3-index-usage - install_tool rbu sqlite3-rbu - install_tool scrub sqlite3-scrub - install_tool showdb sqlite3-show-db - install_tool showjournal sqlite3-show-journal - install_tool showshm sqlite3-show-shm - install_tool showstat4 sqlite3-show-stat4 - install_tool showwal sqlite3-show-wal - install_tool sqldiff sqlite3-diff - install_tool sqlite3_analyzer sqlite3-analyzer - install_tool sqlite3_checker sqlite3-checker - install_tool sqlite3_expert sqlite3-expert - install_tool sqltclsh sqlite3-tclsh - - unset -f install_tool - fi -} - -multilib_src_install_all() { - find "${ED}" -name "*.la" -delete || die - - doman sqlite3.1 - - if use doc; then - if [[ ${PV} == 9999 ]]; then - pushd "${WORKDIR}/${PN}-doc-build/doc" > /dev/null || die - else - pushd "${WORKDIR}/${PN}-doc-${DOC_PV}" > /dev/null || die - fi - - find "(" -name "*.db" -o -name "*.txt" ")" -delete || die - if [[ ${PV} != 9999 ]]; then - rm search search.d/admin || die - rmdir search.d || die - find -name "*~" -delete || die - fi - - ( - docinto html - dodoc -r * - ) - - popd > /dev/null || die - fi -} diff --git a/dev-games/Manifest.gz b/dev-games/Manifest.gz index 1b9a85380c2a..bb1806306399 100644 Binary files a/dev-games/Manifest.gz and b/dev-games/Manifest.gz differ diff --git a/dev-games/godot/Manifest b/dev-games/godot/Manifest index 0049075b59ba..72fa9eb936fb 100644 --- a/dev-games/godot/Manifest +++ b/dev-games/godot/Manifest @@ -1,3 +1,2 @@ DIST godot-3.5.2-stable.tar.xz 24047432 BLAKE2B a4d600cb174b2f79cc91c583b1052db2e7e2921003ffd5a307a2484af9cc050b600e763b6016ba2df043ba5e492f0bdd13c207fd3a3d794b6602f7c574093cb0 SHA512 e9f3c8b23cd69422639fe22948fb1f5f2071dff6e013fee3c08d6d3c1f39de4dfc252d32eb395c847021c9bbc1b2fa320500140ff3e684bf00530889ba48a181 -DIST godot-4.0.1-stable.tar.xz 29626604 BLAKE2B 4dbcfe05b830a1e5e8cf23a31fc0ea743ae5985b9454eb41f3231d7e2b51d4e86dc1fba2c6ccf457a1c7e0d3336191b5e961936b3916837ca34b90609d9e4f30 SHA512 cb4f6eced611a3fd2f65ea31a80971f67d2f8b8bdb9a710bec41d2d9fc2d5714ab2a1ead58540dd0a7787b123dba6195fedf1b2eb56db122cb4f9f05f9633513 DIST godot-4.0.2-stable.tar.xz 29909648 BLAKE2B e8c99450a4b6871fa91b2bf6596ef82702e72dcc73b4f5b01f6338fc11a812a9bc47c60ddf36dbbff963461acb74406960a275d386bc217708a1c88df9050e3b SHA512 53aefef2f0ea63c82834f0e2da7b898c8504b6d7a3bef0af61d6c730c5ba2db21ea99a2cb10731bd39209d72a492059d93475019418658c4e181b514d6d09ed3 diff --git a/dev-games/godot/godot-4.0.1.ebuild b/dev-games/godot/godot-4.0.1.ebuild deleted file mode 100644 index 0cfaf7e1e100..000000000000 --- a/dev-games/godot/godot-4.0.1.ebuild +++ /dev/null @@ -1,236 +0,0 @@ -# Copyright 2022-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit bash-completion-r1 desktop python-any-r1 scons-utils toolchain-funcs xdg - -DESCRIPTION="Multi-platform 2D and 3D game engine with a feature-rich editor" -HOMEPAGE="https://godotengine.org/" -SRC_URI="https://downloads.tuxfamily.org/godotengine/${PV}/${P}-stable.tar.xz" -S="${WORKDIR}/${P}-stable" - -LICENSE=" - MIT - Apache-2.0 BSD Boost-1.0 CC0-1.0 Unlicense ZLIB - gui? ( CC-BY-4.0 ) tools? ( OFL-1.1 )" -SLOT="4" -KEYWORDS="~amd64" -# Enable roughly same as upstream by default so it works as expected, -# except raycast (tools-only heavy dependency), and deprecated. -IUSE=" - alsa +dbus debug deprecated +fontconfig +gui pulseaudio raycast - +runner speech test +theora +tools +udev +upnp +vulkan +webp" -# TODO: tests still need more figuring out -RESTRICT="test" - -# dlopen: libglvnd -RDEPEND=" - app-arch/zstd:= - dev-games/recastnavigation:= - dev-libs/icu:= - dev-libs/libpcre2:=[pcre32] - media-libs/freetype[brotli,harfbuzz] - media-libs/harfbuzz:=[icu] - media-libs/libogg - media-libs/libpng:= - media-libs/libvorbis - +Date: Tue, 18 Apr 2023 12:29:08 +0100 +Subject: [PATCH] Fix build with GCC 13 + +GCC 13 (as usual for new compiler releases) shuffles around some internal includes so some +are no longer transitively included. + +See https://gnu.org/software/gcc/gcc-13/porting_to.html. + +Bug: https://bugs.gentoo.org/895098 +--- a/MyGUIEngine/include/MyGUI_Types.h ++++ b/MyGUIEngine/include/MyGUI_Types.h +@@ -9,6 +9,7 @@ + + #include "MyGUI_Prerequest.h" + ++#include + #include + #include + #include diff --git a/dev-games/mygui/mygui-3.4.1.ebuild b/dev-games/mygui/mygui-3.4.1.ebuild index 182b5dbdf3cd..84c0fdb8b016 100644 --- a/dev-games/mygui/mygui-3.4.1.ebuild +++ b/dev-games/mygui/mygui-3.4.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -42,6 +42,7 @@ STATIC_BUILD=${WORKDIR}/${P}_build_static PATCHES=( "${FILESDIR}"/${P}-build.patch "${FILESDIR}"/${P}-FHS.patch + "${FILESDIR}"/${P}-gcc13.patch ) pkg_setup() { diff --git a/dev-java/Manifest.gz b/dev-java/Manifest.gz index 857fc291fcbe..b121785e7826 100644 Binary files a/dev-java/Manifest.gz and b/dev-java/Manifest.gz differ diff --git a/dev-java/maven-bin/maven-bin-3.9.1.ebuild b/dev-java/maven-bin/maven-bin-3.9.1.ebuild index 6748f5927604..59bdf23384c1 100644 --- a/dev-java/maven-bin/maven-bin-3.9.1.ebuild +++ b/dev-java/maven-bin/maven-bin-3.9.1.ebuild @@ -16,7 +16,7 @@ HOMEPAGE="https://maven.apache.org/" LICENSE="Apache-2.0" SLOT="3.9" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" DEPEND=" >=virtual/jdk-1.8:* diff --git a/dev-java/swt/swt-4.27.ebuild b/dev-java/swt/swt-4.27.ebuild index d6fab4c42c59..499b8e3841a0 100644 --- a/dev-java/swt/swt-4.27.ebuild +++ b/dev-java/swt/swt-4.27.ebuild @@ -20,7 +20,7 @@ SRC_URI=" LICENSE="CPL-1.0 LGPL-2.1 MPL-1.1" SLOT="4.27" -KEYWORDS="~amd64 ~arm64 ~ppc64" +KEYWORDS="amd64 arm64 ppc64" IUSE="cairo opengl webkit" COMMON_DEP=" diff --git a/dev-lang/Manifest.gz b/dev-lang/Manifest.gz index a075bb4c8882..fae11718e083 100644 Binary files a/dev-lang/Manifest.gz and b/dev-lang/Manifest.gz differ diff --git a/dev-lang/crystal/crystal-1.7.3.ebuild b/dev-lang/crystal/crystal-1.7.3.ebuild index 9c03c216028f..ad8d1fd21905 100644 --- a/dev-lang/crystal/crystal-1.7.3.ebuild +++ b/dev-lang/crystal/crystal-1.7.3.ebuild @@ -17,7 +17,7 @@ SRC_URI="https://github.com/crystal-lang/crystal/archive/${PV}.tar.gz -> ${P}.ta LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64" +KEYWORDS="amd64" IUSE="doc debug llvm-libunwind" # Upstream test suite not reliable diff --git a/dev-lang/eisl/Manifest b/dev-lang/eisl/Manifest index d56d498cf438..7995da783928 100644 --- a/dev-lang/eisl/Manifest +++ b/dev-lang/eisl/Manifest @@ -1,3 +1,3 @@ -DIST eisl-2.70.tar.gz 2126647 BLAKE2B f9bebd32a45cf73d3b58598e2f7683611426dc97c4e6411549e49f19c9e843dd24d90e9bdaf9ca97bc70fea970068bf2dfd532a861fd444b9f8b17f76666bf07 SHA512 9aaf75244515d74d40d5534e20d108f7723e0fb9cf01ecc618d32a4cd2fdd2f7132445ed9ce020e0c9ea3a05bee614e78853ac0554ee189946ee3d220ba082ec DIST eisl-2.72.tar.gz 2124119 BLAKE2B e0a1216b4e9c301ec965d0dc7a6fcaa5acd91fd611193959fee698a27523c0c4832e7960652af14af3e7f5846131d81f0ae9db7030511e051d5384ba573241ae SHA512 80998239b9cc421f42323f24ffbc5f518a2675c314580284309d127523bab328db21d294d8d32dca413abd63d279a2c857ea34ec35548da15459235eb0f3da2b DIST eisl-2.85.tar.gz 2126779 BLAKE2B b95735cac70a1bae0277f910ba0b69746ca44979c08b4c19c5642d1d998e0a248827cf6cc0bac9f29c620c34ede2558e7723b7ab8b841fadbf366fa9047e6a7c SHA512 4b09e0faa126e30e44d0d23cfb79316289631da1ae8069989c58852f14c4b1f2e28539698fc8a1f433ff11e0be7a63efd836d0978965eefe42a7620c11b56c54 +DIST eisl-2.90.tar.gz 2129524 BLAKE2B 5b7a7aaf68a53ac4611b90f98f50fb66973411f1303f0de9dab14301a49847a1250c07d1e912d55783b939d3a2b7a6aa82fa3d9b42818ea9aacf37949ba9e14a SHA512 3cefc6608e1f4d4a0ba581c2043cb9af9d379273cfda74a4ac77f802dbb672faf98af5a60a946e12f0abedd47074b67a0c8163a81eebca92a20cd04f767d6b0f diff --git a/dev-lang/eisl/eisl-2.70.ebuild b/dev-lang/eisl/eisl-2.90.ebuild similarity index 87% rename from dev-lang/eisl/eisl-2.70.ebuild rename to dev-lang/eisl/eisl-2.90.ebuild index c79630e56a74..7a5ed7b0c16e 100644 --- a/dev-lang/eisl/eisl-2.70.ebuild +++ b/dev-lang/eisl/eisl-2.90.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/sasagawa888/eisl/archive/v${PV}.tar.gz LICENSE="BSD-2" SLOT="0" -KEYWORDS="amd64 ~x86" +KEYWORDS="~amd64 ~x86" RESTRICT="test" # Tests run cppcheck (and fail) DOCS=( README{,-ja}.md documents ) @@ -20,10 +20,7 @@ DOCS=( README{,-ja}.md documents ) RDEPEND="sys-libs/ncurses:=" DEPEND="${RDEPEND}" -PATCHES=( - "${FILESDIR}"/${PN}-2.67-Makefile.patch - "${FILESDIR}"/${PN}-2.65-implicit.patch -) +PATCHES=( "${FILESDIR}"/${PN}-2.85-Makefile.patch ) src_compile() { emake CC="$(tc-getCC)" clean edlis eisl diff --git a/dev-lang/typescript/typescript-5.0.2.ebuild b/dev-lang/typescript/typescript-5.0.2.ebuild index 598301d43b33..7857fd2f036d 100644 --- a/dev-lang/typescript/typescript-5.0.2.ebuild +++ b/dev-lang/typescript/typescript-5.0.2.ebuild @@ -11,7 +11,7 @@ S="${WORKDIR}"/package LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~ppc64" +KEYWORDS="amd64 ~arm64 ~ppc64" RDEPEND="net-libs/nodejs" BDEPEND=">=net-libs/nodejs-16[npm]" diff --git a/dev-libs/Manifest.gz b/dev-libs/Manifest.gz index eac9a5000b28..b4d8c92e1fbe 100644 Binary files a/dev-libs/Manifest.gz and b/dev-libs/Manifest.gz differ diff --git a/dev-libs/apr/Manifest b/dev-libs/apr/Manifest index d20559caa519..32e6e7e42c5e 100644 --- a/dev-libs/apr/Manifest +++ b/dev-libs/apr/Manifest @@ -1,2 +1,3 @@ DIST apr-1.7.2.tar.bz2 890218 BLAKE2B a17ee4311a33acee0bdeb9e5225a198f9dec1b2e0267a742080c77d5342e5052392a5a2100a0ba85f5a192b8679838a7002d4c9a12aa5bdd7921eff025b75d15 SHA512 0a3a27ccc97bbe4865c1bc0b803012e3da6d5b1f17d4fb0da6f5f58eec01f6d2ae1f25e52896ea5f9c5ac04c5fddcfd1ac606b301c322cf40d5c4d4ce0a1b76e DIST apr-1.7.3.tar.bz2 901048 BLAKE2B effd809ff2d43c5340874456c6440c94c3c1dc728964d6b65050e0e11692961ccbedba63fd02009c79fa05bb8effde7cc46d2b22c560745d49d54f0a793e4b6d SHA512 d8f62868d8e3ec92cede1f0d93b5d48e49441f575c98e165ff84343746a6abd265290ab16a57f741896ae7a6b3e534a334325a99a61c96c2485e085f7761c124 +DIST apr-1.7.4.tar.bz2 894526 BLAKE2B a93b9d3f2c46fe0a34ce1d544e7a43ba40720e2fae8b8a7d0957413ac695057902378dbf96f067ced7486da86c8e513b7fbd48fa79839efeeb40a3295fe2d3df SHA512 2342c997765ea2ca96eac158e5fd260232dba68fc41b90a79a7ba9b25c539fc217981867362090e0ebebe632289257c342275e3c5baedb698c474ef8f49a9dcd diff --git a/dev-libs/apr/apr-1.7.4.ebuild b/dev-libs/apr/apr-1.7.4.ebuild new file mode 100644 index 000000000000..9ab51b0ca62a --- /dev/null +++ b/dev-libs/apr/apr-1.7.4.ebuild @@ -0,0 +1,170 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools toolchain-funcs + +DESCRIPTION="Apache Portable Runtime Library" +HOMEPAGE="https://apr.apache.org/" +SRC_URI="mirror://apache/apr/${P}.tar.bz2" + +LICENSE="Apache-2.0" +SLOT="1/${PV%.*}" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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="doc old-kernel selinux static-libs +urandom" + +# See bug #815265 for libcrypt dependency +DEPEND=" + virtual/libcrypt:= + elibc_glibc? ( >=sys-apps/util-linux-2.16 ) +" +RDEPEND=" + ${DEPEND} + selinux? ( sec-policy/selinux-base-policy ) +" +BDEPEND=" + >=sys-devel/libtool-2.4.2 + doc? ( app-doc/doxygen ) +" + +DOCS=( CHANGES NOTICE README ) + +PATCHES=( + "${FILESDIR}"/${PN}-1.5.0-mint.patch + "${FILESDIR}"/${PN}-1.6.3-skip-known-failing-tests.patch + "${FILESDIR}"/${PN}-1.7.2-libtool.patch + "${FILESDIR}"/${PN}-1.7.2-sysroot.patch # bug #385775 + "${FILESDIR}"/${PN}-1.7.2-fix-pkgconfig-libs.patch + "${FILESDIR}"/${PN}-1.7.2-respect-flags.patch + "${FILESDIR}"/${PN}-1.7.2-autoconf-2.72.patch + "${FILESDIR}"/config.layout.patch +) + +src_prepare() { + default + + mv configure.in configure.ac || die + AT_M4DIR="build" eautoreconf +} + +src_configure() { + tc-export AS CC CPP + + local myconf=( + --enable-layout=gentoo + --enable-nonportable-atomics + --enable-posix-shm + --enable-threads + $(use_enable static-libs static) + --with-installbuilddir="${EPREFIX}"/usr/share/${PN}/build + ) + + tc-is-static-only && myconf+=( --disable-dso ) + + if use old-kernel; then + local apr_cv_accept4 apr_cv_dup3 apr_cv_epoll_create1 apr_cv_sock_cloexec + export apr_cv_accept4="no" + export apr_cv_dup3="no" + export apr_cv_epoll_create1="no" + export apr_cv_sock_cloexec="no" + fi + + if tc-is-cross-compiler; then + # The apache project relies heavily on AC_TRY_RUN and doesn't + # have any sane cross-compiling fallback logic. + export \ + ac_cv_file__dev_zero="yes" \ + ac_cv_func_sem_open="yes" \ + ac_cv_mmap__dev_zero="yes" \ + ac_cv_negative_eai="yes" \ + ac_cv_o_nonblock_inherited="no" \ + ac_cv_struct_rlimit="yes" \ + ap_cv_atomic_builtins="yes" \ + apr_cv_accept4="yes" \ + apr_cv_dup3="yes" \ + apr_cv_epoll="yes" \ + apr_cv_epoll_create1="yes" \ + apr_cv_gai_addrconfig="yes" \ + apr_cv_mutex_recursive="yes" \ + apr_cv_mutex_robust_shared="yes" \ + apr_cv_process_shared_works="yes" \ + apr_cv_pthreads_lib="-pthread" \ + apr_cv_sock_cloexec="yes" \ + apr_cv_tcp_nodelay_with_cork="yes" + fi + + if use urandom; then + myconf+=( --with-devrandom=/dev/urandom ) + elif (( ${CHOST#*-hpux11.} <= 11 )); then + : # no /dev/*random on hpux11.11 and before, apr detects this. + else + myconf+=( --with-devrandom=/dev/random ) + fi + + # shl_load does not search runpath, but hpux11 supports dlopen + if [[ ${CHOST} == *-hpux11* ]]; then + myconf+=( --enable-dso=dlfcn ) + elif [[ ${CHOST} == *-solaris2.10 ]]; then + local atomic_contents=$(<$([[ ${CHOST} != ${CBUILD} ]] && echo "${EPREFIX}/usr/${CHOST}")/usr/include/atomic.h) + + case "${atomic_contents}" in + *atomic_cas_ptr*) + ;; + *) + local patch_id=$([[ ${CHOST} == sparc* ]] && echo 118884 || echo 118885) + + elog "You do not have Solaris Patch ID ${patch_id} (Problem 4954703) installed on your host ($(hostname))," + elog "using generic atomic operations instead." + + myconf+=( --disable-nonportable-atomics ) + ;; + esac + else + if use ppc || use sparc || use mips; then + # Avoid libapr containing undefined references (underlinked) + # undefined reference to `__sync_val_compare_and_swap_8' + # (May be possible to fix via libatomic linkage in future?) + # bug #740464 + myconf+=( --disable-nonportable-atomics ) + fi + fi + + econf "${myconf[@]}" +} + +src_compile() { + if tc-is-cross-compiler; then + # This header is the same across targets, so use the build compiler. + emake tools/gen_test_char + + tc-export_build_env BUILD_CC + ${BUILD_CC} ${BUILD_CFLAGS} ${BUILD_CPPFLAGS} ${BUILD_LDFLAGS} \ + tools/gen_test_char.c -o tools/gen_test_char || die + fi + + emake all $(usev doc dox) +} + +src_test() { + # Building tests in parallel is broken + emake -j1 check +} + +src_install() { + default + + if ! use static-libs; then + find "${ED}" -name '*.la' -delete || die + fi + + if use doc; then + docinto html + dodoc -r docs/dox/html/* + fi + + # This file is only used on AIX systems, which Gentoo is not, + # and causes collisions between the SLOTs, so remove it. + # Even in Prefix, we don't need this on AIX. + rm "${ED}/usr/$(get_libdir)/apr.exp" || die +} diff --git a/dev-libs/icu/files/icu-73.1-fix-UChar-api.patch b/dev-libs/icu/files/icu-73.1-fix-UChar-api.patch new file mode 100644 index 000000000000..7f3f6a8e472f --- /dev/null +++ b/dev-libs/icu/files/icu-73.1-fix-UChar-api.patch @@ -0,0 +1,49 @@ +https://bugs.gentoo.org/904381 +https://unicode-org.atlassian.net/browse/ICU-22356 +https://github.com/unicode-org/icu/pull/2431 + +From d58ab7c27c2f5ecb83a3fc3de5803dc42f807746 Mon Sep 17 00:00:00 2001 +From: Xi Ruoyao +Date: Mon, 17 Apr 2023 15:33:18 +0800 +Subject: [PATCH] ICU-22356 Revert ICU-21833 change for ures.h + +These usages of UChar are in inline functions for calling C API functions, so they should not be changed to char16_t or the code will fail to compile with `-DUCHAR_TYPE=`. +--- a/common/unicode/ures.h ++++ b/common/unicode/ures.h +@@ -812,7 +812,7 @@ inline UnicodeString + ures_getUnicodeString(const UResourceBundle *resB, UErrorCode* status) { + UnicodeString result; + int32_t len = 0; +- const char16_t *r = ures_getString(resB, &len, status); ++ const UChar *r = ures_getString(resB, &len, status); + if(U_SUCCESS(*status)) { + result.setTo(true, r, len); + } else { +@@ -837,7 +837,7 @@ inline UnicodeString + ures_getNextUnicodeString(UResourceBundle *resB, const char ** key, UErrorCode* status) { + UnicodeString result; + int32_t len = 0; +- const char16_t* r = ures_getNextString(resB, &len, key, status); ++ const UChar* r = ures_getNextString(resB, &len, key, status); + if(U_SUCCESS(*status)) { + result.setTo(true, r, len); + } else { +@@ -859,7 +859,7 @@ inline UnicodeString + ures_getUnicodeStringByIndex(const UResourceBundle *resB, int32_t indexS, UErrorCode* status) { + UnicodeString result; + int32_t len = 0; +- const char16_t* r = ures_getStringByIndex(resB, indexS, &len, status); ++ const UChar* r = ures_getStringByIndex(resB, indexS, &len, status); + if(U_SUCCESS(*status)) { + result.setTo(true, r, len); + } else { +@@ -882,7 +882,7 @@ inline UnicodeString + ures_getUnicodeStringByKey(const UResourceBundle *resB, const char* key, UErrorCode* status) { + UnicodeString result; + int32_t len = 0; +- const char16_t* r = ures_getStringByKey(resB, key, &len, status); ++ const UChar* r = ures_getStringByKey(resB, key, &len, status); + if(U_SUCCESS(*status)) { + result.setTo(true, r, len); + } else { + diff --git a/dev-libs/icu/icu-73.1-r1.ebuild b/dev-libs/icu/icu-73.1-r1.ebuild new file mode 100644 index 000000000000..ad36b18454e5 --- /dev/null +++ b/dev-libs/icu/icu-73.1-r1.ebuild @@ -0,0 +1,163 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +# Please bump with dev-libs/icu-layoutex + +PYTHON_COMPAT=( python3_{9..11} ) +VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/icu.asc +inherit autotools flag-o-matic multilib-minimal python-any-r1 toolchain-funcs verify-sig + +MY_PV=${PV/_rc/-rc} +MY_PV=${MY_PV//./_} + +DESCRIPTION="International Components for Unicode" +HOMEPAGE="https://icu.unicode.org/" +SRC_URI="https://github.com/unicode-org/icu/releases/download/release-${MY_PV/_/-}/icu4c-${MY_PV/-rc/rc}-src.tgz" +SRC_URI+=" verify-sig? ( https://github.com/unicode-org/icu/releases/download/release-${MY_PV/_/-}/icu4c-${MY_PV/-rc/rc}-src.tgz.asc )" +S="${WORKDIR}"/${PN}/source + +# Keyword with boost-1.82 +if [[ ${PV} != *_rc* ]] ; then + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt" +fi +LICENSE="BSD" +SLOT="0/${PV}" +IUSE="debug doc examples static-libs test" +RESTRICT="!test? ( test )" + +BDEPEND=" + ${PYTHON_DEPS} + sys-devel/autoconf-archive + virtual/pkgconfig + doc? ( app-doc/doxygen[dot] ) + verify-sig? ( >=sec-keys/openpgp-keys-icu-20221020 ) +" + +MULTILIB_CHOST_TOOLS=( + /usr/bin/icu-config +) + +PATCHES=( + "${FILESDIR}/${PN}-65.1-remove-bashisms.patch" + "${FILESDIR}/${PN}-64.2-darwin.patch" + "${FILESDIR}/${PN}-68.1-nonunicode.patch" + "${FILESDIR}/${PN}-73.1-fix-UChar-api.patch" +) + +src_prepare() { + default + + # Disable renaming as it assumes stable ABI and that consumers + # won't use unofficial APIs. We need this despite the configure argument. + sed -i \ + -e "s/#define U_DISABLE_RENAMING 0/#define U_DISABLE_RENAMING 1/" \ + common/unicode/uconfig.h || die + + # Fix linking of icudata + sed -i \ + -e "s:LDFLAGSICUDT=-nodefaultlibs -nostdlib:LDFLAGSICUDT=:" \ + config/mh-linux || die + + # Append doxygen configuration to configure + sed -i \ + -e 's:icudefs.mk:icudefs.mk Doxyfile:' \ + configure.ac || die + + eautoreconf +} + +src_configure() { + MAKEOPTS+=" VERBOSE=1" + + # ICU tries to append -std=c++11 without this, so as of 71.1, + # despite GCC 9+ using c++14 (or gnu++14) and GCC 11+ using gnu++17, + # we still need this. + append-cxxflags -std=c++14 + + if tc-is-cross-compiler; then + mkdir "${WORKDIR}"/host || die + pushd "${WORKDIR}"/host >/dev/null || die + + CFLAGS="" CXXFLAGS="" ASFLAGS="" LDFLAGS="" \ + CC="$(tc-getBUILD_CC)" CXX="$(tc-getBUILD_CXX)" AR="$(tc-getBUILD_AR)" \ + RANLIB="$(tc-getBUILD_RANLIB)" LD="$(tc-getBUILD_LD)" \ + "${S}"/configure --disable-renaming --disable-debug \ + --disable-samples --enable-static || die + emake + + popd >/dev/null || die + fi + + multilib-minimal_src_configure +} + +multilib_src_configure() { + local myeconfargs=( + --disable-renaming + --disable-samples + --disable-layoutex + $(use_enable debug) + $(use_enable static-libs static) + $(use_enable test tests) + $(multilib_native_use_enable examples samples) + ) + + tc-is-cross-compiler && myeconfargs+=( + --with-cross-build="${WORKDIR}"/host + ) + + # Work around cross-endian testing failures with LTO #757681 + if tc-is-cross-compiler && is-flagq '-flto*' ; then + myeconfargs+=( --disable-strict ) + fi + + # ICU tries to use clang by default + tc-export CC CXX + + # Make sure we configure with the same shell as we run icu-config + # with, or ECHO_N, ECHO_T and ECHO_C will be wrongly defined + export CONFIG_SHELL="${EPREFIX}/bin/sh" + # Probably have no /bin/sh in prefix-chain + [[ -x ${CONFIG_SHELL} ]] || CONFIG_SHELL="${BASH}" + + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" +} + +multilib_src_compile() { + default + + if multilib_is_native_abi && use doc; then + doxygen -u Doxyfile || die + doxygen Doxyfile || die + fi +} + +multilib_src_test() { + # INTLTEST_OPTS: intltest options + # -e: Exhaustive testing + # -l: Reporting of memory leaks + # -v: Increased verbosity + # IOTEST_OPTS: iotest options + # -e: Exhaustive testing + # -v: Increased verbosity + # CINTLTST_OPTS: cintltst options + # -e: Exhaustive testing + # -v: Increased verbosity + emake -j1 check +} + +multilib_src_install() { + default + + if multilib_is_native_abi && use doc; then + docinto html + dodoc -r doc/html/* + fi +} + +multilib_src_install_all() { + local HTML_DOCS=( ../readme.html ) + einstalldocs +} diff --git a/dev-libs/ktextaddons/Manifest b/dev-libs/ktextaddons/Manifest new file mode 100644 index 000000000000..e47adb5b639e --- /dev/null +++ b/dev-libs/ktextaddons/Manifest @@ -0,0 +1 @@ +DIST ktextaddons-1.1.1.tar.xz 213528 BLAKE2B 4b64b11fa9443a32c84972974c43d62a820c1af629d89ac87968c620e536a580da883f2eaa43d45c19d9957916130a7decea5487b5a70228dc670c84aba4037f SHA512 c09f7205a8c3d830af4dd32f152c8496390edec2cd1ac42398cfbfdb398c38a27ffa81e85962777b467eeff1989ed49dbe6013e97208ff45745ea71d8a750e4a diff --git a/dev-libs/ktextaddons/ktextaddons-1.1.1-r1.ebuild b/dev-libs/ktextaddons/ktextaddons-1.1.1-r1.ebuild new file mode 100644 index 000000000000..f557b3280eaa --- /dev/null +++ b/dev-libs/ktextaddons/ktextaddons-1.1.1-r1.ebuild @@ -0,0 +1,48 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +ECM_DESIGNERPLUGIN="true" +ECM_QTHELP="true" +ECM_TEST="true" +KFMIN=5.103.0 +QTMIN=5.15.5 +VIRTUALX_REQUIRED="test" +inherit ecm kde.org + +DESCRIPTION="Various text handling addons" +HOMEPAGE="https://invent.kde.org/libraries/ktextaddons" + +if [[ ${KDE_BUILD_TYPE} = release ]]; then + SRC_URI="mirror://kde/stable/${PN}/${P}.tar.xz" + KEYWORDS="~amd64" +fi + +LICENSE="LGPL-2+" +SLOT="5" +IUSE="speech" + +RESTRICT="test" + +RDEPEND=" + dev-libs/qtkeychain:=[qt5(+)] + >=dev-qt/qtgui-${QTMIN}:5 + >=dev-qt/qtnetwork-${QTMIN}:5 + >=dev-qt/qtwidgets-${QTMIN}:5 + >=kde-frameworks/kconfig-${KFMIN}:5 + >=kde-frameworks/kconfigwidgets-${KFMIN}:5 + >=kde-frameworks/kcoreaddons-${KFMIN}:5 + >=kde-frameworks/ki18n-${KFMIN}:5 + >=kde-frameworks/kwidgetsaddons-${KFMIN}:5 + >=kde-frameworks/kxmlgui-${KFMIN}:5 + speech? ( >=dev-qt/qtspeech-${QTMIN}:5 ) +" +DEPEND="${RDEPEND}" + +src_configure() { + local mycmakeargs=( + $(cmake_use_find_package speech Qt5TextToSpeech) + ) + ecm_src_configure +} diff --git a/dev-libs/ktextaddons/metadata.xml b/dev-libs/ktextaddons/metadata.xml new file mode 100644 index 000000000000..35297b0e4483 --- /dev/null +++ b/dev-libs/ktextaddons/metadata.xml @@ -0,0 +1,16 @@ + + + + + kde@gentoo.org + Gentoo KDE Project + + + libraries/ktextaddons + https://bugs.kde.org/ + + + Build plugins for dev-qt/designer + Enable text-to-speech support + + diff --git a/dev-libs/libfastjson/Manifest b/dev-libs/libfastjson/Manifest index 2390c247e4ff..6242e9e567cb 100644 --- a/dev-libs/libfastjson/Manifest +++ b/dev-libs/libfastjson/Manifest @@ -1,3 +1,4 @@ DIST libfastjson-0.99.8.tar.gz 433819 BLAKE2B f988c01de8e7becc5a848825c18151fec2b80f81eb5b50e459b1a3bb535f5521fb63e9350eb133eb984f57f42c5f529220a0c9461eb4689e1421ad815c4c4d87 SHA512 1e7eb7eaae2c6ccb78b77ac883808e1d311b03bad083dc72ab7712765a2ed139accd762850d60f54c6fe0ad48c4385714818fd2c8ed76700ce3546e5aff1c823 DIST libfastjson-0.99.9.1.tar.gz 89468 BLAKE2B 6922c482043499d5c39845c5d8db12a956c7820c15514eed7e4a0ba74f24b68c4cb580ea53f215a965de4b2e6fe70d07e5a14dee09f52725f88328de279dd62a SHA512 32b513fb66ac5a54b0a3d028fabffad5d675fe50475ddd834de45c69eb0a60f83f85a0706071e5d61df25fb09a3de65ac37c295a620a65801782e0f24d033d41 DIST libfastjson-0.99.9.tar.gz 436502 BLAKE2B 5ed542f373dee2e28c85f8b48e9d35c7727d7e565c691f90caed7a9ac1192814c6371e03bce18dd9765b4251e6a78b7e612eeb38872d2833cd72021d41fb889a SHA512 90505fba033179aa92f12ac5dbbb071f69f3491de5bbbbb46d553b08ac325448459c9e33ba22ef4f9db0bae4496cca60046eebf6325d70b045c1a0a9845b0d48 +DIST libfastjson-1.2304.0.tar.gz 89477 BLAKE2B 2a24ada8f98b837bc4c6983694354615309913eff69f006933441e5a8e9fc58365ca4bd3e03ebdda60e685cefd7e48739f45c49348899150b9b2923f05a709c6 SHA512 a43dc809c0fc073f8bddaebdf91c996ccfc6275d7dcc312762e8dfb366dc121c7698c316b71bd5b43f2f7e9b3c326c90cfa927ce415824a7d32dd5e6667048ab diff --git a/dev-libs/libfastjson/libfastjson-1.2304.0.ebuild b/dev-libs/libfastjson/libfastjson-1.2304.0.ebuild new file mode 100644 index 000000000000..67b402d40b7a --- /dev/null +++ b/dev-libs/libfastjson/libfastjson-1.2304.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="Fork of the json-c library, which is optimized for liblognorm processing" +HOMEPAGE="https://www.rsyslog.com/tag/libfastjson/" +SRC_URI="https://github.com/rsyslog/${PN}/archive/v${PV}.tar.gz + -> ${P}.tar.gz" +LICENSE="MIT" +SLOT="0/4.3.0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc64 ~riscv ~sparc ~x86" +IUSE="static-libs" + +BDEPEND=">=sys-devel/autoconf-archive-2015.02.04" + +DOCS=( AUTHORS ChangeLog ) + +src_prepare() { + default + eautoreconf +} + +src_configure() { + local -a myconf=( + $(use_enable static-libs static) + --disable-rdrand + --enable-compile-warnings=yes + ) + econf "${myconf[@]}" +} + +src_install() { + default + + find "${ED}"/usr/lib* -name '*.la' -delete || die +} diff --git a/dev-libs/libmemcached-awesome/libmemcached-awesome-1.1.4.ebuild b/dev-libs/libmemcached-awesome/libmemcached-awesome-1.1.4.ebuild index f74a0725e90f..c0bdd3b2fc42 100644 --- a/dev-libs/libmemcached-awesome/libmemcached-awesome-1.1.4.ebuild +++ b/dev-libs/libmemcached-awesome/libmemcached-awesome-1.1.4.ebuild @@ -12,7 +12,7 @@ S="${WORKDIR}/libmemcached-${PV}" LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~x86" +KEYWORDS="amd64 arm arm64 x86" IUSE="+libevent sasl test" RESTRICT="!test? ( test )" diff --git a/dev-libs/libqtxdg/Manifest b/dev-libs/libqtxdg/Manifest index 5537acf580f6..3ff73dd11ed4 100644 --- a/dev-libs/libqtxdg/Manifest +++ b/dev-libs/libqtxdg/Manifest @@ -1,2 +1,3 @@ DIST libqtxdg-3.10.0.tar.xz 71656 BLAKE2B 345fd1c3b3b117521220fe70487a9e934800031b7c8c6973b360c0817fd1635118a65bac90bb16818bfb035db55b1b23b5cbfd350583be34f49373c50551f5c0 SHA512 c5c3b91684fca5a288d7097b1d9f94c6cb80d7aaca46d861b9aba3efc625ac8b109513fd56e337615d1700d56af0c945ac6c8977cb9b0e88737ee490244d0ad5 +DIST libqtxdg-3.11.0.tar.xz 71688 BLAKE2B df5f9ebe6d964a23c89402419e4b6e27812a25d96d065e64c05348fe833e2c27c06e11260c8c58999b232eaf154404549100b81325e02ec7c10eaa40d68ff4cd SHA512 494140fa35e184c128c851f06501b5c62324a796d3f61ed47b750dbdffff756c1a42240d4458797e2f2f01c9b06b997f0fbfc76fe7f99866f7cad084ac1342f7 DIST libqtxdg-3.9.1.tar.xz 71604 BLAKE2B 73db84890afa5b7177447a01ae2eb92db4bf13c6e3377a0ac7bdda192b15f8cd068db2875c13ba37d7d27a2c28e48d435801625b11ec8f7eb602fa02b5eca841 SHA512 1b05a10649229a34e3b653c37abefbb02c8b456d77aaabed0e47668818ee29730ea049d96bc5c71c9ad83d1c9c87888195bf228dc9817fd27053f0286752978c diff --git a/dev-libs/libqtxdg/libqtxdg-3.11.0.ebuild b/dev-libs/libqtxdg/libqtxdg-3.11.0.ebuild new file mode 100644 index 000000000000..1e3e0e22e3c1 --- /dev/null +++ b/dev-libs/libqtxdg/libqtxdg-3.11.0.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake optfeature virtualx + +DESCRIPTION="Qt Implementation of XDG Standards" +HOMEPAGE="https://lxqt-project.org/" + +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git" +else + SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" +fi + +LICENSE="LGPL-2.1+ Nokia-Qt-LGPL-Exception-1.1" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +BDEPEND=" + >=dev-util/lxqt-build-tools-0.13.0 + virtual/pkgconfig +" +RDEPEND=" + dev-libs/glib:2 + >=dev-qt/qtcore-5.15:5 + >=dev-qt/qtdbus-5.15:5 + >=dev-qt/qtgui-5.15:5= + >=dev-qt/qtsvg-5.15:5 + >=dev-qt/qtwidgets-5.15:5 + >=dev-qt/qtxml-5.15:5 + x11-misc/xdg-utils +" +DEPEND="${RDEPEND} + test? ( >=dev-qt/qttest-5.15:5 ) +" + +src_configure() { + local mycmakeargs=( + -DBUILD_TESTS=$(usex test) + ) + + cmake_src_configure +} + +src_test() { + # Tests don't work with C + LC_ALL=en_US.utf8 virtx cmake_src_test +} + +pkg_postinst() { + ! has_version lxqt-base/lxqt-meta && optfeature "features that require a terminal emulator" x11-terms/xterm +} diff --git a/dev-libs/libxls/files/libxls-1.6.2-gcc13.patch b/dev-libs/libxls/files/libxls-1.6.2-gcc13.patch new file mode 100644 index 000000000000..6958bb63bc65 --- /dev/null +++ b/dev-libs/libxls/files/libxls-1.6.2-gcc13.patch @@ -0,0 +1,25 @@ +https://github.com/libxls/libxls/pull/118 + +From f46aea10c50fb08657c15f8f3e813d5434b8b4d5 Mon Sep 17 00:00:00 2001 +From: Elliott Sales de Andrade +Date: Wed, 18 Jan 2023 05:21:23 -0500 +Subject: [PATCH] Fix header include in C++ mode + +This file is included in the toplevel `xls.h` within an `extern "C"`, +which means including C++ headers in it is completely broken. With GCC +13, this causes strange errors due to "missing" symbols. +--- a/include/libxls/xlstypes.h ++++ b/include/libxls/xlstypes.h +@@ -36,11 +36,7 @@ + #ifndef XLS_TYPES_INC + #define XLS_TYPES_INC + +-#ifdef __cplusplus +-#include +-#else + #include +-#endif + #include + + typedef unsigned char BYTE; + diff --git a/dev-libs/libxls/libxls-1.6.2.ebuild b/dev-libs/libxls/libxls-1.6.2-r1.ebuild similarity index 88% rename from dev-libs/libxls/libxls-1.6.2.ebuild rename to dev-libs/libxls/libxls-1.6.2-r1.ebuild index 95af65648371..0ba177446fdc 100644 --- a/dev-libs/libxls/libxls-1.6.2.ebuild +++ b/dev-libs/libxls/libxls-1.6.2-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -18,6 +18,7 @@ BDEPEND=" PATCHES=( "${FILESDIR}"/${PN}-1.4.0-asprintf.patch + "${FILESDIR}"/${PN}-1.6.2-gcc13.patch ) src_configure() { diff --git a/dev-libs/mpfr/Manifest b/dev-libs/mpfr/Manifest index f278ebd18e1a..f73e8f1b0dcc 100644 --- a/dev-libs/mpfr/Manifest +++ b/dev-libs/mpfr/Manifest @@ -14,5 +14,9 @@ DIST mpfr-4.1.0-patch13.patch 3344 BLAKE2B 1239cf16dfe32a71bb6fc7b156978cd451bcb DIST mpfr-4.1.0.tar.xz 1525476 BLAKE2B 41d1be0c4b557760f12a4525ad3a84b6e2cd6f0927c935fcfba577ac0490e582d1ae4b581dce58e21e705cf9d7c88373054d7fb7a94bb32c69b339f99a25dc68 SHA512 1bd1c349741a6529dfa53af4f0da8d49254b164ece8a46928cdb13a99460285622d57fe6f68cef19c6727b3f9daa25ddb3d7d65c201c8f387e421c7f7bee6273 DIST mpfr-4.1.1-patch01.patch 2985 BLAKE2B d6bed1d6fca2319db457096a81aca060c1bd934fcdf9c5f98ba44920a7e97c2a5e9c539ec554feb723fb98c84096e1cb615c0d973133c67f3c2097edc1c5b803 SHA512 aa98173d59a24d0f59acff0c2143db5623746db3f6445e300a018a124b35a6b57d631c357a9a890f23c748591f621a95d3a801bed7341b6c8b6ddcc86ecfb107 DIST mpfr-4.1.1.tar.xz 1429836 BLAKE2B ce20baee2f060acb28b877ffe6fc40c5619cf6af231bd54ca6cfb3e42ef2d74a4ffbab96cf0b5dd6a162e558099a54701d42f34f5bf2256f256fe6f5ae2505d0 SHA512 be468749bd88870dec37be35e544983a8fb7bda638eb9414c37334b9d553099ea2aa067045f51ae2c8ab86d852ef833e18161d173e414af0928e9a438c9b91f1 +DIST mpfr-4.2.0-patch01.patch 2927 BLAKE2B 15f2003b9b423065ea8e7db9191fd56d9832263a87290652b906c0360e1599017659c5650635410825a1ed66eb9ec4c93aefa746dd2505984e07c6ff8b06312c SHA512 a97791ba106cd843e279b913a776f2e1221462978c27ba2e97afa4d3b1763ef87cec991cf337f98897100c5554dd47d7a6342cb51878d351fcc516d951a5cf6b +DIST mpfr-4.2.0-patch02.patch 8009 BLAKE2B 094ece68c41e4945d3713a919b39cd3d9a574efe2a84202fceaa5067e74ace109e342732a2221165e2e911796e386e47d3360688fc07bb57eb2a1ed90a93b4be SHA512 b5c3f885c086fe13f91fdc411dc4cdcbba93a140563932d46a98e1bbf0714d3c98cc97468eb48cff917527b2c69ac756ad30e4bbec9f4a974f257141741cb1c7 +DIST mpfr-4.2.0-patch03.patch 4678 BLAKE2B 356f4c2dc522dc44deab4f92b27590be8bca38e17c98db07348aae8959ae3314fd5dfe8c08dcfa30c31fddb1b90ec55499ce9fb4853e8b7ecc3aab314ac7a251 SHA512 cc646867498279530e1c593e129361d7f56e81736b2c2f7563c18c53c139698fbff88b48ae5c8f6856ac1abb47fe39e0148cecf8a41771c962b005d2a239835f +DIST mpfr-4.2.0-patch04.patch 2622 BLAKE2B 42fe01ce698d335070469518c42f8f3d4bbff9b69cb2a6bd9a3e504d4970be562a504cfc7495b5a2bfcc9fea2a35ccd4fa39db829e63b016f627140349b0ca31 SHA512 73b03be27abacf3b845405aca58b5f77a243f2adf3994e5d8eba74c926132b62d2aa55931c4ed70752aaf45fcfa3676c5c597b723d919306aad40675d5ea51b8 DIST mpfr-4.2.0.tar.xz 1477532 BLAKE2B dd88ae3a6a910ad8faeb791b49c3b1085de5d0d4c49c637c124bf4d9bc79fb621d0d1d69e07d0642b9b678f6d355a5830d083dfd189e1e91d0e04c970c10bd64 SHA512 58e843125884ca58837ae5159cd4092af09e8f21931a2efd19c15de057c9d1dc0753ae95c592e2ce59a727fbc491af776db8b00a055320413cdcf2033b90505c DIST mpfr-4.2.0.tar.xz.asc 228 BLAKE2B b281a11528a69418739b0122b4130d9cf212569f9ded8def685b31afe700ea776dd40ac0de7aa6de1bbd5d03a1dc9726ed4278cc6cccfacd1147681a6de27f70 SHA512 ce64346cce89bc38fee161a5e01c349c97c69b626547e54a522b741949cb27bba1668d123143fd03b015f9bdd692bcba08c7b85cf4d4cea9f7834383e04d4bbc diff --git a/dev-libs/mpfr/mpfr-4.2.0_p4.ebuild b/dev-libs/mpfr/mpfr-4.2.0_p4.ebuild new file mode 100644 index 000000000000..b80366c8f91b --- /dev/null +++ b/dev-libs/mpfr/mpfr-4.2.0_p4.ebuild @@ -0,0 +1,90 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/vincentlefevre.asc +inherit multilib-minimal verify-sig + +# Upstream distribute patches before a new release is made +# See https://www.mpfr.org/mpfr-current/#bugs for the latest version (and patches) + +# Check whether any patches touch e.g. manuals! +# https://archives.gentoo.org/gentoo-releng-autobuilds/message/c2dd39fc4ebc849db6bb0f551739e2ed +MY_PV=${PV%%_p*} +MY_PATCH=$(ver_cut 5-) +MY_PATCHES=() +MY_P=${PN}-${MY_PV/_/-} + +DESCRIPTION="Library for multiple-precision floating-point computations with exact rounding" +HOMEPAGE="https://www.mpfr.org/ https://gitlab.inria.fr/mpfr" +SRC_URI="https://www.mpfr.org/${PN}-$(ver_cut 1-3)/${MY_P}.tar.xz" +SRC_URI+=" verify-sig? ( https://www.mpfr.org/${PN}-$(ver_cut 1-3)/${MY_P}.tar.xz.asc )" + +if [[ ${PV} == *_p* ]] ; then + # If this is a patch release, we have to download each of the patches: + # -_pN = N patches + # - patch file names are like: patch01, patch02, ..., patch10, patch12, .. + # + # => name the ebuild _pN where N is the number of patches on the 'bugs' page. + for ((my_patch_index=1; my_patch_index <= MY_PATCH; my_patch_index++)); do + SRC_URI+=" $(printf "https://www.mpfr.org/${PN}-$(ver_cut 1-3)/patch%02d -> ${PN}-$(ver_cut 1-3)-patch%02d.patch " ${my_patch_index}{,})" + MY_PATCHES+=( "${DISTDIR}"/$(printf ${PN}-$(ver_cut 1-3)-patch%02d.patch ${my_patch_index}) ) + done + unset my_patch_index +fi +S="${WORKDIR}/${MY_P}" + +LICENSE="LGPL-2.1" +# This is a critical package; if SONAME changes, bump subslot but also add +# preserve-libs.eclass usage to pkg_*inst! See e.g. the readline ebuild. +SLOT="0/6" # libmpfr.so version +if [[ ${PV} != *_rc* ]] ; then + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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" +fi +IUSE="static-libs" + +RDEPEND=">=dev-libs/gmp-5.0.0:=[${MULTILIB_USEDEP},static-libs?]" +DEPEND="${RDEPEND}" +BDEPEND="verify-sig? ( sec-keys/openpgp-keys-vincentlefevre )" + +PATCHES=( + # Apply the upstream patches released out-of-band; generated above + "${MY_PATCHES[@]}" + + # Additional patches +) + +HTML_DOCS=( doc/FAQ.html ) + +src_unpack() { + use verify-sig && verify-sig_verify_detached "${DISTDIR}"/${MY_P}.tar.xz{,.asc} + + # Avoid src_unpack noise from patches + unpack ${MY_P}.tar.xz +} + +src_prepare() { + default + + # 4.1.0_p13's patch10 patches a .texi file *and* the corresponding + # info file. We need to make sure the info file is newer, so the + # build doesn't try to run makeinfo. Won't be needed on next release. + #touch "${S}/doc/mpfr.info" || die +} + +multilib_src_configure() { + # bug #476336#19 + # Make sure mpfr doesn't go probing toolchains it shouldn't + ECONF_SOURCE="${S}" \ + user_redefine_cc=yes \ + econf $(use_enable static-libs static) +} + +multilib_src_install_all() { + rm "${ED}"/usr/share/doc/${PF}/COPYING* || die + + if ! use static-libs ; then + find "${ED}"/usr -name '*.la' -delete || die + fi +} diff --git a/dev-libs/pocl/files/pocl-3.1-c++11.patch b/dev-libs/pocl/files/pocl-3.1-c++11.patch new file mode 100644 index 000000000000..e676979f2e95 --- /dev/null +++ b/dev-libs/pocl/files/pocl-3.1-c++11.patch @@ -0,0 +1,23 @@ +https://bugs.gentoo.org/903968 +https://github.com/pocl/pocl/issues/1200 +https://github.com/pocl/pocl/commit/b5a097e5e55922561f738eedbde050b0fec2e480 + +From b5a097e5e55922561f738eedbde050b0fec2e480 Mon Sep 17 00:00:00 2001 +From: Topi Leppanen +Date: Thu, 13 Apr 2023 11:14:23 +0300 +Subject: [PATCH] Don't use make_unique in countred example + +This is because of C++11 compatibility reasons. +Fixes #1200. +--- a/examples/accel/OpenCLcontext.cpp ++++ b/examples/accel/OpenCLcontext.cpp +@@ -189,7 +189,8 @@ bool OpenCL_Manager::processCameraFrame(unsigned char* input, unsigned long *out + return isValid; + } + +-OpenCL_Manager::OpenCL_Manager() : Context{std::make_unique()} {} ++OpenCL_Manager::OpenCL_Manager() ++ : Context{std::unique_ptr(new OpenCL_Context())} {} + OpenCL_Manager::~OpenCL_Manager() {} + + diff --git a/dev-libs/pocl/pocl-3.1.ebuild b/dev-libs/pocl/pocl-3.1.ebuild index 473aa1f2fa62..ff61446e2a20 100644 --- a/dev-libs/pocl/pocl-3.1.ebuild +++ b/dev-libs/pocl/pocl-3.1.ebuild @@ -52,6 +52,7 @@ llvm_check_deps() { PATCHES=( "${FILESDIR}"/${P}-nodebug.patch + "${FILESDIR}"/${P}-c++11.patch ) pkg_setup() { diff --git a/dev-libs/qhotkey/Manifest b/dev-libs/qhotkey/Manifest new file mode 100644 index 000000000000..627b3a927533 --- /dev/null +++ b/dev-libs/qhotkey/Manifest @@ -0,0 +1 @@ +DIST qhotkey-1.5.0.tar.gz 53083 BLAKE2B fab832d97ea8525b6d2916543b60c4e9ec2af1e0461b402d22367f5a9654b564cc24ee835e2157b1ef9f2dece66b750105b9815ccd7e0db4ae7352b33a5d6750 SHA512 c57135864e976c0881bca320f39ff98ec6973cb226902fe051b844ad29d106593bdf5524335b8f83a62cecac362af95b61964bc5fa6a47abcb7adf668bcc14c1 diff --git a/dev-libs/qhotkey/metadata.xml b/dev-libs/qhotkey/metadata.xml new file mode 100644 index 000000000000..884dd3b49960 --- /dev/null +++ b/dev-libs/qhotkey/metadata.xml @@ -0,0 +1,18 @@ + + + + + gentoo@retornaz.com + Quentin Retornaz + + + proxy-maint@gentoo.org + Proxy Maintainers + + + Skycoder42/QHotkey + + + Use Qt6 dependencies + + diff --git a/dev-libs/qhotkey/qhotkey-1.5.0.ebuild b/dev-libs/qhotkey/qhotkey-1.5.0.ebuild new file mode 100644 index 000000000000..5721563f8374 --- /dev/null +++ b/dev-libs/qhotkey/qhotkey-1.5.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="A global shortcut/hotkey library for desktop Qt applications" +HOMEPAGE="https://github.com/Skycoder42/QHotkey" + +MY_PN="QHotkey" + +SRC_URI="https://github.com/Skycoder42/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +LICENSE="BSD-with-attribution" +SLOT="0" +KEYWORDS="~amd64" +IUSE="qt6" +S="${WORKDIR}/${MY_PN}-${PV}" + +DEPEND=" + !qt6? ( + dev-qt/qtcore:5 + dev-qt/qtx11extras:5 + ) + qt6? ( + dev-qt/qtbase:6 + ) + x11-libs/libX11 +" + +src_configure() { + local mycmakeargs=( + -DQT_DEFAULT_MAJOR_VERSION:STRING=$(usex qt6 "6" "5") + ) + cmake_src_configure +} diff --git a/dev-libs/rocksdb/files/rocksdb-6.14.6-gcc13.patch b/dev-libs/rocksdb/files/rocksdb-6.14.6-gcc13.patch new file mode 100644 index 000000000000..384c241bc2b8 --- /dev/null +++ b/dev-libs/rocksdb/files/rocksdb-6.14.6-gcc13.patch @@ -0,0 +1,51 @@ +https://bugs.gentoo.org/895358 +--- a/db/compaction/compaction_iteration_stats.h ++++ b/db/compaction/compaction_iteration_stats.h +@@ -5,6 +5,7 @@ + + #pragma once + ++#include + #include "rocksdb/rocksdb_namespace.h" + + struct CompactionIterationStats { +--- a/include/rocksdb/utilities/checkpoint.h ++++ b/include/rocksdb/utilities/checkpoint.h +@@ -8,6 +8,7 @@ + #pragma once + #ifndef ROCKSDB_LITE + ++#include + #include + #include + #include "rocksdb/status.h" +--- a/table/block_based/data_block_hash_index.h ++++ b/table/block_based/data_block_hash_index.h +@@ -5,6 +5,7 @@ + + #pragma once + ++#include + #include + #include + +--- a/third-party/folly/folly/synchronization/detail/ProxyLockable-inl.h ++++ b/third-party/folly/folly/synchronization/detail/ProxyLockable-inl.h +@@ -13,6 +13,7 @@ + #include + #include + #include ++#include + #include + + namespace folly { +--- a/util/string_util.h ++++ b/util/string_util.h +@@ -6,6 +6,7 @@ + + #pragma once + ++#include + #include + #include + #include diff --git a/dev-libs/rocksdb/rocksdb-6.15.5-r1.ebuild b/dev-libs/rocksdb/rocksdb-6.15.5-r1.ebuild index e5d045110946..65bcab9dd9d0 100644 --- a/dev-libs/rocksdb/rocksdb-6.15.5-r1.ebuild +++ b/dev-libs/rocksdb/rocksdb-6.15.5-r1.ebuild @@ -26,6 +26,7 @@ DEPEND=" RDEPEND="${DEPEND}" PATCHES=( + "${FILESDIR}"/${PN}-6.14.6-gcc13.patch "${FILESDIR}"/${PN}-6.17.3-libatomic.patch ) diff --git a/dev-libs/rocksdb/rocksdb-6.17.3-r1.ebuild b/dev-libs/rocksdb/rocksdb-6.17.3-r1.ebuild index 06b33de81b92..86a2c6f594ad 100644 --- a/dev-libs/rocksdb/rocksdb-6.17.3-r1.ebuild +++ b/dev-libs/rocksdb/rocksdb-6.17.3-r1.ebuild @@ -26,6 +26,7 @@ DEPEND=" RDEPEND="${DEPEND}" PATCHES=( + "${FILESDIR}"/${PN}-6.14.6-gcc13.patch "${FILESDIR}"/${PN}-6.17.3-add_timer_for_riscv.patch "${FILESDIR}"/${PN}-6.17.3-libatomic.patch ) diff --git a/dev-libs/xmlsec/files/xmlsec-1.3.0-clang.patch b/dev-libs/xmlsec/files/xmlsec-1.3.0-clang.patch new file mode 100644 index 000000000000..a8e8a9b50a46 --- /dev/null +++ b/dev-libs/xmlsec/files/xmlsec-1.3.0-clang.patch @@ -0,0 +1,19 @@ +https://bugs.gentoo.org/904418 +https://github.com/lsh123/xmlsec/commit/0682c1d4be1e1d5d0f3cf5c4d2301dc3da09d677 + +From 0682c1d4be1e1d5d0f3cf5c4d2301dc3da09d677 Mon Sep 17 00:00:00 2001 +From: lsh123 +Date: Thu, 13 Apr 2023 09:49:25 -0400 +Subject: [PATCH] Add newline (#628) + +Issue #626 +--- a/src/openssl/symkeys.c ++++ b/src/openssl/symkeys.c +@@ -618,4 +618,4 @@ xmlSecOpenSSLKeyDataPbkdf2Set(xmlSecKeyDataPtr data, const xmlSecByte* buf, xmlS + + return(xmlSecBufferSetData(buffer, buf, bufSize)); + } +-#endif /* XMLSEC_NO_PBKDF2 */ +\ No newline at end of file ++#endif /* XMLSEC_NO_PBKDF2 */ + diff --git a/dev-libs/xmlsec/files/xmlsec-1.3.0-optimisation.patch b/dev-libs/xmlsec/files/xmlsec-1.3.0-optimisation.patch new file mode 100644 index 000000000000..2cd0401e019d --- /dev/null +++ b/dev-libs/xmlsec/files/xmlsec-1.3.0-optimisation.patch @@ -0,0 +1,11 @@ +--- a/configure.ac ++++ b/configure.ac +@@ -2482,7 +2482,7 @@ AC_ARG_ENABLE([pedantic], [AS_HELP_STRING([--enable-pedantic],[enable pedantic c + if test "z$enable_pedantic" = "zno" ; then + AC_MSG_RESULT([disabled]) + else +- CFLAGS="$CFLAGS -O -std=c99 -pedantic -pedantic-errors -W -Wall -Wextra" ++ CFLAGS="$CFLAGS -std=c99 -pedantic -W -Wall -Wextra" + CFLAGS="$CFLAGS -fno-inline -Wnull-dereference -Wdouble-promotion" + CFLAGS="$CFLAGS -Wformat=2 -Wformat-security -Wformat-nonliteral" + CFLAGS="$CFLAGS -Wconversion -Wunused -Wshadow -Wpointer-arith -Wcast-align" diff --git a/dev-libs/xmlsec/xmlsec-1.3.0.ebuild b/dev-libs/xmlsec/xmlsec-1.3.0-r1.ebuild similarity index 93% rename from dev-libs/xmlsec/xmlsec-1.3.0.ebuild rename to dev-libs/xmlsec/xmlsec-1.3.0-r1.ebuild index ca8bb9084b40..e90f0e76d9e9 100644 --- a/dev-libs/xmlsec/xmlsec-1.3.0.ebuild +++ b/dev-libs/xmlsec/xmlsec-1.3.0-r1.ebuild @@ -3,6 +3,8 @@ EAPI=8 +inherit autotools + DESCRIPTION="Command line tool for signing, verifying, encrypting and decrypting XML" HOMEPAGE="https://www.aleksey.com/xmlsec" SRC_URI="https://www.aleksey.com/xmlsec/download/${PN}1-${PV}.tar.gz" @@ -42,8 +44,16 @@ BDEPEND=" PATCHES=( "${FILESDIR}"/${P}-strict-prototypes.patch + "${FILESDIR}"/${P}-clang.patch + "${FILESDIR}"/${P}-optimisation.patch ) +src_prepare() { + default + + eautoreconf +} + src_configure() { local myeconfargs=( $(use_enable doc docs) diff --git a/dev-ml/Manifest.gz b/dev-ml/Manifest.gz index 05a9ff1ae382..1eae48e5e8ea 100644 Binary files a/dev-ml/Manifest.gz and b/dev-ml/Manifest.gz differ diff --git a/dev-ml/alcotest/Manifest b/dev-ml/alcotest/Manifest index e0310030e282..c7b896928f81 100644 --- a/dev-ml/alcotest/Manifest +++ b/dev-ml/alcotest/Manifest @@ -2,3 +2,4 @@ DIST alcotest-1.2.3.tar.gz 274177 BLAKE2B 1c38baf8932fe16ec3899cd1dd747099065cf9 DIST alcotest-1.4.0.tar.gz 279675 BLAKE2B 3cc50ab37a16948ceca9b5e6aa885fa50bbe0722c6132ed4991fb64c568253d9913287d1b9e5547f59a210d6803e2a83565f02950fb12cb91ed9f8e24d7864c1 SHA512 adb73c8b2be6f47cb406bbc49dba7dc86e990a60e2e68302592a24dcc24e11e76e2aa6fc2f003c1e4fdbb79744df6ab601daff9540cd7b0096ac9f9bff18098c DIST alcotest-1.5.0.tar.gz 288227 BLAKE2B 6af28f2516888273903bbb7750ba583778c54447157ece29ad8053323492dddfde9b901699be26c868f1f3835ad89d6f163176033f52ffdccc82fa2609e57b64 SHA512 9f496d1b14a78a9cba5dfde71cbda41d3090d2083bc9895dc9d9f54876b86630079219e678f13f6ffd382deb2a1a298b61b2a222fc65d25d4a242d8c280b4784 DIST alcotest-1.6.0.tar.gz 288586 BLAKE2B 6e7ab4618d899346de3d8ef63c1b81f92d9cdca06e9df03bf2ea5f0a6b7d5b8ae5a231dc92aca5ebc268e3fda93d448f6edd12333ad6c657ef5361921e31f838 SHA512 58079596334c193d00f22c5fc708952f01b40593eabb26cf9725d51250fc5b816d0bf40c70bab50e9b88a973008a9889f95601127731e8c1583e4ef17173fe9e +DIST alcotest-1.7.0.tar.gz 293433 BLAKE2B 83a9b1bb3a6d9ec09de739e77a6e1085bbca328f5be39f6ab28931a7bc16d223d571917f924598ddcc399910f986df95eb72ae61f28512221d9de6174ffe3988 SHA512 6e29cc39109f5d83a175578f48ff1b48fdf13913b7cdd332823a660c681ab0cd5dec41b10322226102b023d7c74620decf964458926abed56ae835e4e565014e diff --git a/dev-ml/alcotest/alcotest-1.7.0.ebuild b/dev-ml/alcotest/alcotest-1.7.0.ebuild new file mode 100644 index 000000000000..02bd046c8bf8 --- /dev/null +++ b/dev-ml/alcotest/alcotest-1.7.0.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit dune + +DESCRIPTION="A lightweight and colourful test framework" +HOMEPAGE="https://github.com/mirage/alcotest/" +SRC_URI="https://github.com/mirage/alcotest/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="ISC" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" +IUSE="+ocamlopt" + +RDEPEND=" + >=dev-ml/dune-3.0:= + dev-ml/astring:= + dev-ml/async_kernel:= + dev-ml/async:= + >=dev-ml/async_unix-0.15.0:= + dev-ml/base:= + dev-ml/cmdliner:= + >=dev-ml/core-0.15.0:= + >=dev-ml/core_unix-0.15.0:= + dev-ml/duration:= + >=dev-ml/fmt-0.8.9:= + dev-ml/lwt:= + dev-ml/mirage-clock:= + dev-ml/re:= + dev-ml/result:= + dev-ml/logs:= + dev-ml/uutf:= + dev-ml/uuidm:= +" +DEPEND="${RDEPEND}" diff --git a/dev-ml/camomile/Manifest b/dev-ml/camomile/Manifest index f5976e8b2a78..3766becc3b7d 100644 --- a/dev-ml/camomile/Manifest +++ b/dev-ml/camomile/Manifest @@ -1 +1,2 @@ DIST camomile-1.0.2.tar.gz 7032339 BLAKE2B 8cd60c74821c2c8e7084e752d1e4d67428c935859e02a8630f3f5563b53b3ce444071fa26153950f6a410b2743073692c7061e4f1f902c23e5fa54c50a89383c SHA512 d62ecaa297058b52674f98e513a6d776148fe62651b2b4a2dac4bb3e05abb8b7684960e889f68c6dab60aee669fbab715a2d6a9206645e24d10d8aaaf7cedf0e +DIST camomile-2.0.0.tar.gz 7030383 BLAKE2B 795f6a0e482cbc2d5a38bcb1a9ca2f93f1d7ec437bc736dbc50ef39b6c072df925776dba315e04a9dd508fffe06ffcd2eaac10ef56da56727b8e85ca2f931e9a SHA512 b0ae3d921f65390e8ec88a04901dd097b568db9f9ae70fb328e9d3ddb2dd8922b9a8e8da9ace91ad9cb5f6a1310ae5b6ba502e287d6c828f4d60622289316ac8 diff --git a/dev-ml/camomile/camomile-2.0.0.ebuild b/dev-ml/camomile/camomile-2.0.0.ebuild new file mode 100644 index 000000000000..333db6f3ae41 --- /dev/null +++ b/dev-ml/camomile/camomile-2.0.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit dune + +DESCRIPTION="Camomile is a comprehensive Unicode library for ocaml" +HOMEPAGE="https://github.com/savonet/Camomile" +SRC_URI="https://github.com/savonet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${P^}" + +LICENSE="LGPL-2" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +IUSE="+ocamlopt" + +# Unbound module errors +RESTRICT="test" + +RDEPEND=" + dev-ml/dune-site:= + dev-ml/camlp-streams:= +" +DEPEND="${RDEPEND}" diff --git a/dev-ml/camomile/metadata.xml b/dev-ml/camomile/metadata.xml index 1e19ff097ea1..07d1d0e57508 100644 --- a/dev-ml/camomile/metadata.xml +++ b/dev-ml/camomile/metadata.xml @@ -6,6 +6,6 @@ ML - yoriyuki/Camomile + savonet/Camomile diff --git a/dev-ml/dune-site/dune-site-3.7.1.ebuild b/dev-ml/dune-site/dune-site-3.7.1.ebuild index 86c18b3cac7e..7bf2f44ff50c 100644 --- a/dev-ml/dune-site/dune-site-3.7.1.ebuild +++ b/dev-ml/dune-site/dune-site-3.7.1.ebuild @@ -13,7 +13,7 @@ S="${WORKDIR}/dune-${PV}" LICENSE="MIT" SLOT="0/${PV}" -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" IUSE="+ocamlopt" RESTRICT="test" diff --git a/dev-python/Manifest.gz b/dev-python/Manifest.gz index bfef65ec5f1c..fdad8533d7de 100644 Binary files a/dev-python/Manifest.gz and b/dev-python/Manifest.gz differ diff --git a/dev-python/aiosqlite/Manifest b/dev-python/aiosqlite/Manifest index cce382dbcf07..fc3b0039ba6b 100644 --- a/dev-python/aiosqlite/Manifest +++ b/dev-python/aiosqlite/Manifest @@ -1 +1,2 @@ DIST aiosqlite-0.18.0.tar.gz 27066 BLAKE2B 2743db7770b8377a1ab2b11b286684840b1ace9015180fb18590026e4607f78f72068765ea5ab69f9b2fd6ad96007dbbb517d371c2142930f2a587f0b13f81ea SHA512 dcab1bac1b32a86f31957a2f297969ba25cf43cd129afba5810812124964640744cdcbf9764c0037adb9b6cd917cd816a26823578ffb16d864be19f92373d59f +DIST aiosqlite-0.19.0.tar.gz 21832 BLAKE2B 0cd367979e84af23e7ca9965535ab6477bb78c6b2b0c6af3a8698bbde6400dee80d468b99f125ae03ab98053212170cbbaaeac5134e9f85dc66704eafa96f78f SHA512 56debffdb73b6ec98bb69ce2b711e53417cbcb06501a2dc94558157c2cd010f9f56345bcf5378a17eb064ac6bd5f3638650edffcd1f73883bdeae7476afa96e8 diff --git a/dev-python/aiosqlite/aiosqlite-0.19.0.ebuild b/dev-python/aiosqlite/aiosqlite-0.19.0.ebuild new file mode 100644 index 000000000000..bef55760e148 --- /dev/null +++ b/dev-python/aiosqlite/aiosqlite-0.19.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=flit +PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_REQ_USE="sqlite" + +inherit distutils-r1 pypi + +DESCRIPTION="asyncio bridge to the standard sqlite3 module" +HOMEPAGE=" + https://aiosqlite.omnilib.dev + https://pypi.org/project/aiosqlite/ + https://github.com/omnilib/aiosqlite +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +distutils_enable_tests unittest + +# AttributeError: 'str' object has no attribute 'supported' +#distutils_enable_sphinx docs dev-python/m2r diff --git a/dev-python/astroid/Manifest b/dev-python/astroid/Manifest index 04ec21a09a31..8ad285f5eb28 100644 --- a/dev-python/astroid/Manifest +++ b/dev-python/astroid/Manifest @@ -1,2 +1,3 @@ DIST astroid-2.15.1.gh.tar.gz 460960 BLAKE2B ec08cc53027323a70291adc888b3621dc139783e6f72859eac05a2c6da0150cc5d19dc6a7278b6a846f985cf44c7d868df1ba11d0c6e3b7a5d3c71a38603743e SHA512 26f85aff9de08d4b413c40951f2aefd2c19304c077b502774b253e3fcced42173bc7e996fac82b3462c6915625ff48fd80dd1ab5e3425aefa103347f821f7df4 DIST astroid-2.15.2.gh.tar.gz 461132 BLAKE2B 1e4d5fa174c7893743ebe9a17b28bdee68fefd35a69802358eb4448402a00622ec56a7ba18a8cdae8cafd9e75bbee9cd18f39bbb44fbcc061c893fc24e308376 SHA512 aea2a55780f81893d8dad4acb572883017e3d6270d48a8f0d3b4520279bc4d79e9d04192479d5aad453ab7bda6d29edf1f56c92d86c04a8ef07bd4561bf908c4 +DIST astroid-2.15.3.gh.tar.gz 461474 BLAKE2B 3631d5d3c591dcf4a7aef0b78a5dea4b7dba90c6c11297fd9a60aefbad7c7a3b8c1dee1adc634991292a6650ad02f4408f8aee15fa0ac67fca4279d86b96f963 SHA512 622a33c6ca278c1036d8f3c7de36d474c8697dd47593ebc6d4987600b779e3901ff7a2ad6d621396bf54ed394a4ea8704dd226d97021b40fd7641756b9b2f975 diff --git a/dev-python/astroid/astroid-2.15.3.ebuild b/dev-python/astroid/astroid-2.15.3.ebuild new file mode 100644 index 000000000000..553be35505ca --- /dev/null +++ b/dev-python/astroid/astroid-2.15.3.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{9..11} ) + +inherit distutils-r1 + +DESCRIPTION="Abstract Syntax Tree for logilab packages" +HOMEPAGE=" + https://github.com/pylint-dev/astroid/ + https://pypi.org/project/astroid/ +" +SRC_URI=" + https://github.com/pylint-dev/astroid/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="LGPL-2.1+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +# Version specified in pyproject.toml +RDEPEND=" + >=dev-python/lazy-object-proxy-1.4.0[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] + =dev-python/typing-extensions-4.0.0[${PYTHON_USEDEP}] + ' 3.9 3.10) +" +BDEPEND=" + dev-python/setuptools-scm[${PYTHON_USEDEP}] + test? ( + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/python-dateutil[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +export SETUPTOOLS_SCM_PRETEND_VERSION=${PV} + +python_test() { + local EPYTEST_DESELECT=( + # no clue why they're broken + tests/test_modutils.py::GetModulePartTest::test_known_values_get_builtin_module_part + tests/test_regrtest.py::NonRegressionTests::test_numpy_distutils + tests/brain/test_regex.py::TestRegexBrain::test_regex_pattern_and_match_subscriptable + # some problem with warnings (our options?) + tests/test_decorators.py::TestDeprecationDecorators::test_deprecated_default_argument_values_one_arg + tests/test_decorators.py::TestDeprecationDecorators::test_deprecated_default_argument_values_two_args + tests/test_scoped_nodes.py::test_deprecation_of_doc_attribute + # requires six bundled in urllib3, sigh + tests/test_modutils.py::test_file_info_from_modpath__SixMetaPathImporter + # requires pip, and looks suspicious anyway + tests/test_manager.py::IsolatedAstroidManagerTest::test_no_user_warning + ) + + # Faker causes sys.path_importer_cache keys to be overwritten + # with PosixPaths + epytest -p no:faker +} diff --git a/dev-python/attrs/Manifest b/dev-python/attrs/Manifest index f04c9c93dc56..0503ca40deba 100644 --- a/dev-python/attrs/Manifest +++ b/dev-python/attrs/Manifest @@ -1 +1,2 @@ DIST attrs-22.2.0.tar.gz 215900 BLAKE2B 9cb96cec022735ecdd7577f9ee06b2e16b9be05e9df1183c101bef186a66f2c4505224f1047b4b4cdca2a05641279199ab54c7b2e26a9599c3cd8b9ab4543845 SHA512 a7707fb11e21cddd2b25c94c9859dc8306745f0256237493a4ad818ffaf005d1c1e84d55d07fce14eaea18fde4994363227286df2751523e1fe4ef6623562a20 +DIST attrs-23.1.0.tar.gz 212878 BLAKE2B e562c22e7afdf50a9cf8deafc221d0438b8f3fb6b379c6eeb7f9e5ef182b69d5aa9bb886f4b7f69818ba2f1e9bf2ffa2831571a61c3521ab1c56f9c199b411a2 SHA512 1fff41da90668601b29412f71b4419dd9ffb9f2a8e54ce2199198557729167d6d7574954dc998818caba0d6bc378ab2ce068541df9c1c0d4ab1b071758d4a38a diff --git a/dev-python/attrs/attrs-23.1.0.ebuild b/dev-python/attrs/attrs-23.1.0.ebuild new file mode 100644 index 000000000000..2f5f859f9bd4 --- /dev/null +++ b/dev-python/attrs/attrs-23.1.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=hatchling +PYTHON_COMPAT=( python3_{9..11} pypy3 ) + +inherit distutils-r1 pypi + +DESCRIPTION="Attributes without boilerplate" +HOMEPAGE=" + https://github.com/python-attrs/attrs/ + https://attrs.readthedocs.io/ + https://pypi.org/project/attrs/ +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + +BDEPEND=" + dev-python/hatch-fancy-pypi-readme[${PYTHON_USEDEP}] + dev-python/hatch-vcs[${PYTHON_USEDEP}] + test? ( + $(python_gen_impl_dep sqlite) + $(python_gen_cond_dep ' + dev-python/cloudpickle[${PYTHON_USEDEP}] + ' 'python3*') + dev-python/hypothesis[${PYTHON_USEDEP}] + dev-python/zope-interface[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest diff --git a/dev-python/bitstring/Manifest b/dev-python/bitstring/Manifest index fb1367b4f5a5..3d4f1234ddc1 100644 --- a/dev-python/bitstring/Manifest +++ b/dev-python/bitstring/Manifest @@ -1 +1,2 @@ +DIST bitstring-4.0.2.tar.gz 211208 BLAKE2B 75ba6de71ac1a4ea384aad38405ccef21a101c641ee244096d67aad9b46315ee5dab9099b928e3300772c6f15637d4b54899c0a40f6a7ab4e48cfa1c66f310ab SHA512 11d7cddc7372ef9dac92d97df6e9972d7e75e4b02ad1e777357bea667e096beb405871b6cc9baa0522e2251278ad8c11a34724932efb2593fccf572857a608ce DIST bitstring-bitstring-4.0.1.gh.tar.gz 413983 BLAKE2B a4b424d2c139b34ce5ea81522486d0e42d82a06cfc64ce664505a2c1f1a626939b57b1755642220e2fb4219ead3a2a368006878ea05bdae59a638948b24e8b8c SHA512 f036a042f83c70b830f987114e7eb54754145296c60cd6486f398247a069c50588f3c86395a849a99e3c9b94364f1fcf4fedf4b59b80f03b6aecb38d992f5490 diff --git a/dev-python/bitstring/bitstring-4.0.2.ebuild b/dev-python/bitstring/bitstring-4.0.2.ebuild new file mode 100644 index 000000000000..216ef848aaf3 --- /dev/null +++ b/dev-python/bitstring/bitstring-4.0.2.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{9..11} ) + +inherit distutils-r1 pypi + +DESCRIPTION="A pure Python module for creation and analysis of binary data" +HOMEPAGE=" + https://github.com/scott-griffiths/bitstring/ + https://pypi.org/project/bitstring/ +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +distutils_enable_tests unittest + +src_test() { + cd tests || die + distutils-r1_src_test +} diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest index a0a75f35e1b7..94a255404b51 100644 --- a/dev-python/boto3/Manifest +++ b/dev-python/boto3/Manifest @@ -3,3 +3,4 @@ DIST boto3-1.26.109.gh.tar.gz 635150 BLAKE2B d60417a5220eb1cd4a82e9652a0c6bc2bdb DIST boto3-1.26.112.gh.tar.gz 636498 BLAKE2B 2768bdc1fec35eca4a3079bf12933fc28322d111c8be4548d7c5068597e5020c02a1036124088e158a24b6eec705152dcfa36f4029ee1e64ff9cf429cecee7d3 SHA512 f125f8951f2d8703b1e8c1f2f617ba77e190a3dd7fdb04b04a7fe36b56dabdcc3939d9ccda6127ce08d41bcb3573fb94a86dc4f8cfe61435414c8671786c6f36 DIST boto3-1.26.113.gh.tar.gz 636722 BLAKE2B 0b5c3819c004ba425294208f114b4b11713730a18e45cf274b8bfe1f762f59e2c404e0a4ccbbec16be934931e7b37c2bd462b7df7d6d47275b1de26300de216e SHA512 bafda63eddb19b97538224e9c12bc3178a0999cc4d2547cb7ec7335f28a7fe3875130573d4fab2fe21000cc1e3bc4e3a7a5ae99bc8f0e9dc7e2b40ad6fb5a2e0 DIST boto3-1.26.114.gh.tar.gz 637000 BLAKE2B 06f74ac214f4c2161ebe464e1c8fc42c74cb4429110c8ce979db3962fde5240c62ac94b4b9ca002fff89a36659a8830265ac693bd9522082b8cae21108e16cf9 SHA512 324ea177c8ee98a0935d1935f08b31f1640eedf8a7dd19f2bc958f6c1c2fb9deea29f0482b1f4c903d70860a93274dd0d70eafe0564116361daf5e7df51abd26 +DIST boto3-1.26.115.gh.tar.gz 637877 BLAKE2B 861cf3a197002bcfac3f1ca3428bd01f1a8e103462e0de83ed33bb7575de0056f4222195c70dcd0e40dcf3744467e8c017bfe361e589eaf641fec76d6d3eea94 SHA512 337e90d91bb9efcff89b410d5222dead7ce1d0f35257bebe0309cd5fa657facd1a0352bee0ea23d3b94ad852da03a182b7dabf4c2d854390fd227bd58fabc6d3 diff --git a/dev-python/boto3/boto3-1.26.115.ebuild b/dev-python/boto3/boto3-1.26.115.ebuild new file mode 100644 index 000000000000..2a4a7643203e --- /dev/null +++ b/dev-python/boto3/boto3-1.26.115.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..11} ) + +inherit distutils-r1 multiprocessing + +DESCRIPTION="The AWS SDK for Python" +HOMEPAGE=" + https://github.com/boto/boto3/ + https://pypi.org/project/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/boto3/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz + " + KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~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.6.0[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/mock[${PYTHON_USEDEP}] + dev-python/pytest-xdist[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +python_prepare_all() { + # don't lock versions to narrow ranges + sed -e '/botocore/ d' \ + -e '/jmespath/ d' \ + -e '/s3transfer/ d' \ + -i setup.py || die + + # do not rely on bundled deps in botocore (sic!) + find -name '*.py' -exec sed -i \ + -e 's:from botocore[.]vendored import:import:' \ + -e 's:from botocore[.]vendored[.]:from :' \ + {} + || die + + distutils-r1_python_prepare_all +} + +python_test() { + epytest tests/{functional,unit} -n "$(makeopts_jobs)" +} diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest index f70e0583ead1..d5eb677f84a1 100644 --- a/dev-python/botocore/Manifest +++ b/dev-python/botocore/Manifest @@ -3,3 +3,4 @@ DIST botocore-1.29.109.gh.tar.gz 11375235 BLAKE2B 9bd6333319cce685257a5bd4eb06d2 DIST botocore-1.29.112.gh.tar.gz 11380151 BLAKE2B 0392abe4e6be29a9e3eae1e693d7cc121ffd2bba08ac3555b22bb234f6c94cda90251f51368774f7d02a06eb16c9f80c703280947e308390374da2f60efedeb4 SHA512 7f2445db878ea21562604ae57722fd993fe5f9770990ee27f98dba440617505f5e14f3f13a4e97e8de0927a8f5aa384fd7f1355ad3d669264e7eb48fc19c93d2 DIST botocore-1.29.113.gh.tar.gz 11386284 BLAKE2B a3611f356f25080f00f675b20a8b49952bcf1e464b9a114bf37392ebdf4573ac1e9eb6373c61dbf87f8101e055f4f6600f7825f45b00c5723c1528d74865dd6c SHA512 8a16fdde7099ae75a3587ee0c0108c12a6c5c27dbbbfc2d98eb3ccd4c66b45f0389a722f1b10ac3f3cc69ea7ba9135cc0604e35126cc2691a26f4a6173d5258a DIST botocore-1.29.114.gh.tar.gz 11388772 BLAKE2B 6c9ce892cccf2f85ba4bcd49b31309528016313bb699efbca3b00d3cf3797de5e1b35bd71a3b5bd6d471e9c411ad7750ebd25c03571aa18c34cd42bc2f47bc19 SHA512 6633a2aaf2865a89976ba4097fa64cee4167a9144d4eadc7d9be711e65735bab08d2c03c18ae52c4901fea47265301cb95c91306b261fb48b4119bec66cde376 +DIST botocore-1.29.115.gh.tar.gz 11394187 BLAKE2B 621be4a22b7f06d520bcd630ed6e1a8721d11d5c7822f56f54907177d0773b69247b627a42cfbb1b8e053f54ea16f7238acc0d485379c1e071b6e917ea625596 SHA512 525d8f219cad541c4cc125c2d5eeb7595fba6192bda23e7bcc02a65e4ec413756ae3d8ab5bcb3185b5c837bc7214c22146e52716ff010cc396bc8d32cd98b956 diff --git a/dev-python/botocore/botocore-1.29.115.ebuild b/dev-python/botocore/botocore-1.29.115.ebuild new file mode 100644 index 000000000000..491b6bbc21f2 --- /dev/null +++ b/dev-python/botocore/botocore-1.29.115.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..11} ) + +inherit distutils-r1 multiprocessing + +DESCRIPTION="Low-level, data-driven core of boto 3" +HOMEPAGE=" + https://github.com/boto/botocore/ + https://pypi.org/project/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=" + https://github.com/boto/botocore/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz + " + KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux" +fi + +RDEPEND=" + dev-python/six[${PYTHON_USEDEP}] + =dev-python/urllib3-1.25.4[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/jsonschema[${PYTHON_USEDEP}] + dev-python/pytest-xdist[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +src_prepare() { + # unpin deps + sed -i -e "s:>=.*':':" setup.py || die + + # unbundle deps + rm -r botocore/vendored || die + find -name '*.py' -exec sed -i \ + -e 's:from botocore[.]vendored import:import:' \ + -e 's:from botocore[.]vendored[.]:from :' \ + {} + || die + + distutils-r1_src_prepare +} + +python_test() { + local EPYTEST_DESELECT=( + # rely on bundled six + tests/functional/test_six_imports.py::test_no_bare_six_imports + tests/functional/test_six_threading.py::test_six_thread_safety + # fails on unrelated warnings + tests/unit/test_client.py::TestAutoGeneratedClient::test_BOTO_DISABLE_COMMONNAME + tests/unit/test_client.py::TestClientErrors::test_BOTO_DISABLE_COMMONNAME + # TODO + tests/functional/test_credentials.py::SSOSessionTest::test_token_chosen_from_provider + ) + + epytest tests/{functional,unit} -n "$(makeopts_jobs)" +} diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest index a7d892964ad7..fbf0dae66bc9 100644 --- a/dev-python/cfn-lint/Manifest +++ b/dev-python/cfn-lint/Manifest @@ -3,3 +3,4 @@ DIST cfn-lint-0.75.1.gh.tar.gz 3487870 BLAKE2B 26aaf3b24023260d7a7d8f2b89fc9135e DIST cfn-lint-0.76.1.gh.tar.gz 3631194 BLAKE2B 95d395369fc230fe4e6c5d5e2a0e4bf246f1f312c6595e998004d43a7662e43ed0612a56893956fbb15e99ed197d9af2723fc1c2ea9b14fc27d8b4ff7b29e484 SHA512 5c65111fa7f57b268f2f3f52157d464de467cfdf16cd672e399ab7b2d23d648346c6754c45cd169f993ae15180ffafc710c9f2fa0675a7ecb1d8fc5b3d0ec5ce DIST cfn-lint-0.76.2.tar.gz 3402554 BLAKE2B e5f9405d2852e3b81140a24d94c90a3bf8c919eb6823280a0a887c6acc56ec71d991cbc76532cc49d1189a8f64750ba3e9db02fb3b46b27a28ec3468f4dd268e SHA512 96351ade16308be18baace1351e263a179eacc0b3635e9baa959baadaebb6a08825f6cb9cd83cb83b8635785c7f54405bfcf00f85d6d95d101d3298919cd1ea7 DIST cfn-lint-0.77.0.tar.gz 3474124 BLAKE2B 5715618f6b44a7a88ef3af8d21d038fa4ce4707973e64eb9712ff524cd5276e71802ad4b9a55580ac469b6474c7d48a8ccee04660bcaf7934df7a23cab1e5a9a SHA512 6509197ef29d8bcbfc416df0a63f89736f704b147bbeb489586b6a06e1818f1d91e59429c73a9e9e23dadb20325a3c79d0b8e1b4637cd0e131f9673422e36734 +DIST cfn-lint-0.77.1.tar.gz 3483399 BLAKE2B 6eaaba9cf70044c673164bce3a062b00ae7703b091e2c0e8d5065e815278fdb88d75f2592695cd1be1612421f95c806f6eaf3be9f4725abec0cf5e39070ff175 SHA512 0d18e7bc19d5562c88194f834267fa6d2fd8125754399ef281598beb68752e7935a653fbe3a0573f4887cb7a76c41b49ad8e268d390db59dd79794cde4939f31 diff --git a/dev-python/cfn-lint/cfn-lint-0.77.1.ebuild b/dev-python/cfn-lint/cfn-lint-0.77.1.ebuild new file mode 100644 index 000000000000..2b6753f1c840 --- /dev/null +++ b/dev-python/cfn-lint/cfn-lint-0.77.1.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYPI_NO_NORMALIZE=1 +PYTHON_COMPAT=( python3_{10..11} ) + +inherit distutils-r1 pypi + +DESCRIPTION="CloudFormation Linter" +HOMEPAGE=" + https://github.com/aws-cloudformation/cfn-lint/ + https://pypi.org/project/cfn-lint/ +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" + +RDEPEND=" + >=dev-python/aws-sam-translator-1.64.0[${PYTHON_USEDEP}] + dev-python/jsonpatch[${PYTHON_USEDEP}] + >=dev-python/jschema_to_python-1.2.3[${PYTHON_USEDEP}] + >=dev-python/jsonschema-3.0[${PYTHON_USEDEP}] + dev-python/junit-xml[${PYTHON_USEDEP}] + dev-python/pyyaml-5.4[${PYTHON_USEDEP}] + >=dev-python/requests-2.15.0[${PYTHON_USEDEP}] + dev-python/regex[${PYTHON_USEDEP}] + >=dev-python/sarif_om-1.0.4[${PYTHON_USEDEP}] + >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest + +src_prepare() { + # unpin the deps + sed -e 's:~=[0-9.]*::' -i setup.py || die + distutils-r1_src_prepare +} + +python_test() { + local EPYTEST_DESELECT=( + # TODO + test/unit/module/test_template.py::TestTemplate::test_build_graph + # requires git repo + test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs + # Internet + test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter + test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3 + # TODO: it looks as if AWS_DEFAULT_REGION didn't work + test/unit/module/core/test_run_cli.py::TestCli::test_bad_config + test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters + test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters + test/unit/module/core/test_run_cli.py::TestCli::test_template_config + ) + + # from tox.ini + local -x AWS_DEFAULT_REGION=us-east-1 + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 + epytest +} diff --git a/dev-python/httpx-socks/Manifest b/dev-python/httpx-socks/Manifest index 5846d3d30a62..50cad1500761 100644 --- a/dev-python/httpx-socks/Manifest +++ b/dev-python/httpx-socks/Manifest @@ -1 +1,2 @@ DIST httpx-socks-0.7.5.gh.tar.gz 24847 BLAKE2B 9c119b756bf493df47a1bc9c36339508a2192d2bd4392113955fed6929d7c79654f17c069f9d952a11d8c95cf210cdf54af1bb59f47dc50b26b180f0915d3fe9 SHA512 df921af0c5fd0e8b4cb127cd13d5285ae57eb6ff9bc95f9422c02c79771ef55f345ef1618156fd0887467ed81cad2081ea9f2a56a03dc1d80948ed9eabe67aee +DIST httpx-socks-0.7.6.gh.tar.gz 15116 BLAKE2B d94e13cf61a831cc36486962dd493ebfff4822a73c39f9be30fb2c13720330ec6e6ec1fb763ef1551f00fd97270a8b288e4ed7fc2b30c2f78cd8f608e88d77a6 SHA512 08e2d72d93896c15cc9e455f5d878d1015b72da48b17e53a361f7af2d0890caca42478a0f295332093afa19735a0a2fd4fddf13d09c7baf57575cd6534f9cdf9 diff --git a/dev-python/httpx-socks/httpx-socks-0.7.6.ebuild b/dev-python/httpx-socks/httpx-socks-0.7.6.ebuild new file mode 100644 index 000000000000..79e93a2e4311 --- /dev/null +++ b/dev-python/httpx-socks/httpx-socks-0.7.6.ebuild @@ -0,0 +1,44 @@ +# Copyright 2022-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( pypy3 python3_{9..11} ) + +inherit distutils-r1 + +DESCRIPTION="Proxy (HTTP, SOCKS) transports for httpx" +HOMEPAGE=" + https://github.com/romis2012/httpx-socks/ + https://pypi.org/project/httpx-socks/ +" +# no tests in sdist, as of 0.7.6 +SRC_URI=" + https://github.com/romis2012/httpx-socks/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +RDEPEND=" + =dev-python/httpx-0.21.0[${PYTHON_USEDEP}] + =dev-python/httpcore-0.14.0[${PYTHON_USEDEP}] + >=dev-python/python-socks-2.0.0[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + >=dev-python/hypercorn-0.12.0[${PYTHON_USEDEP}] + >=dev-python/pytest-asyncio-0.18.3[${PYTHON_USEDEP}] + >=dev-python/pytest-trio-0.7.0[${PYTHON_USEDEP}] + >=dev-python/starlette-0.19.1[${PYTHON_USEDEP}] + >=dev-python/trio-0.18.0[${PYTHON_USEDEP}] + >=dev-python/yarl-1.6.3[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest diff --git a/dev-python/hypothesis/Manifest b/dev-python/hypothesis/Manifest index be5547b08411..ecddc684586a 100644 --- a/dev-python/hypothesis/Manifest +++ b/dev-python/hypothesis/Manifest @@ -4,3 +4,4 @@ DIST hypothesis-6.70.0.gh.tar.gz 9351669 BLAKE2B 04e6739a1e6cf5907486c5fc6e09d17 DIST hypothesis-6.70.1.gh.tar.gz 9351685 BLAKE2B 99488f4caae4da403ebe28c2c18829d493ea76515f4a503ece0063dad2638cc5d05f9b55372d5c457b0dfc3af31d3422c44d647ea0c2a92a83b20d64c70c4b2f SHA512 a858df7d469604b2d43d003c76f43e40931f6024f6cf164c9b427a449cd0d843df401052e3312c529fd4467d80e0870810ad6863812ec53a47dcf9ec82336472 DIST hypothesis-6.70.2.gh.tar.gz 9351849 BLAKE2B 074003592741cd89ae9ae44b3857daa3f5d1c8cbb0ab3513f3930b27fcc4e27417994c4240fbbba4649cb04716820db0e9c4f4ac745c194535a81b8a6197f7c3 SHA512 20f812ca8e005877893eacde1bac796495f8697ecbbd6da5f807a9ce6d7e310682030323a8b7bb3e646040253968d2f15cb6fcc858f47be631ef62af4924ac78 DIST hypothesis-6.71.0.gh.tar.gz 9357031 BLAKE2B e4a83a94bb6971c3ecba4cc69655f9da23a83ab48332a7a748ca7364d9e549a671bf466e32f6e65447f809a9917fc8fd2548dd26764173ea5849a4df3e027b54 SHA512 dea1d5ec1b753649345edd784183f171531adb583e33d0e5d12b14554169fa054e05f4c16135171c708c208b42968082b3ce79cc0441efccf1eff6da37c59f97 +DIST hypothesis-6.72.0.gh.tar.gz 9357320 BLAKE2B a688d3bfa90d4b335c022ed823e3ab3c9bb7b6e4404e62259e65faf7d2867d6cb8379b14a8328294c325506278c6523b9a14f6798110d67c9b636a89720a3ab9 SHA512 7d5cdf91114a34267edcca10295ee84005f2799ed58e7125c584fcc49171e60383a80c7a0040e41d24b3225113cb354966d40f61c94a28bcdbd596582577372b diff --git a/dev-python/hypothesis/hypothesis-6.72.0.ebuild b/dev-python/hypothesis/hypothesis-6.72.0.ebuild new file mode 100644 index 000000000000..ccd35ad36fe8 --- /dev/null +++ b/dev-python/hypothesis/hypothesis-6.72.0.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +CLI_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( "${CLI_COMPAT[@]}" python3_11 pypy3 ) +PYTHON_REQ_USE="threads(+),sqlite" + +inherit distutils-r1 multiprocessing optfeature + +TAG=hypothesis-python-${PV} +MY_P=hypothesis-${TAG} +DESCRIPTION="A library for property based testing" +HOMEPAGE=" + https://github.com/HypothesisWorks/hypothesis/ + https://pypi.org/project/hypothesis/ +" +SRC_URI=" + https://github.com/HypothesisWorks/hypothesis/archive/${TAG}.tar.gz + -> ${P}.gh.tar.gz +" +S="${WORKDIR}/${MY_P}/hypothesis-python" + +LICENSE="MPL-2.0" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="cli" + +RDEPEND=" + >=dev-python/attrs-19.2.0[${PYTHON_USEDEP}] + >=dev-python/sortedcontainers-2.1.0[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + >=dev-python/exceptiongroup-1.0.0_rc8[${PYTHON_USEDEP}] + ' 3.9 3.10) + cli? ( + $(python_gen_cond_dep ' + dev-python/black[${PYTHON_USEDEP}] + dev-python/click[${PYTHON_USEDEP}] + ' "${CLI_COMPAT[@]}") + ) +" +BDEPEND=" + test? ( + dev-python/mock[${PYTHON_USEDEP}] + dev-python/pexpect[${PYTHON_USEDEP}] + dev-python/pytest-xdist[${PYTHON_USEDEP}] + !! "${T}"/mkdocs <<-EOF || die - #!/bin/sh - exec "${EPYTHON}" -m mkdocs "\${@}" - EOF - chmod +x "${T}"/mkdocs || die - epytest -} diff --git a/dev-python/mkdocs-minify-plugin/mkdocs-minify-plugin-0.6.3.ebuild b/dev-python/mkdocs-minify-plugin/mkdocs-minify-plugin-0.6.3.ebuild deleted file mode 100644 index b290a000fe77..000000000000 --- a/dev-python/mkdocs-minify-plugin/mkdocs-minify-plugin-0.6.3.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -DISTUTILS_USE_PEP517=setuptools -inherit distutils-r1 - -DESCRIPTION="An MkDocs plugin to minify HTML and/or JS files prior to being written to disk" -HOMEPAGE=" - https://github.com/byrnereese/mkdocs-minify-plugin - https://pypi.org/project/mkdocs-minify-plugin/ -" -# pypi sdist lacks tests, as of 0.6.3 -SRC_URI=" - https://github.com/byrnereese/mkdocs-minify-plugin/archive/${PV}.tar.gz - -> ${P}.gh.tar.gz -" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc ~riscv ~x86" - -RDEPEND=" - >=dev-python/csscompressor-0.9.5[${PYTHON_USEDEP}] - >=dev-python/mkdocs-1.4.1[${PYTHON_USEDEP}] - >=app-text/htmlmin-0.1.12[${PYTHON_USEDEP}] - >=dev-python/jsmin-3.0.1[${PYTHON_USEDEP}] -" - -distutils_enable_tests pytest - -python_test() { - local -x PATH=${T}:${PATH} - cat > "${T}"/mkdocs <<-EOF || die - #!/bin/sh - exec "${EPYTHON}" -m mkdocs "\${@}" - EOF - chmod +x "${T}"/mkdocs || die - epytest -} diff --git a/dev-python/mock/Manifest b/dev-python/mock/Manifest index 708e53ea1096..ea4869bbe749 100644 --- a/dev-python/mock/Manifest +++ b/dev-python/mock/Manifest @@ -1 +1,2 @@ DIST mock-5.0.1.gh.tar.gz 84539 BLAKE2B ac50d187974a671db096222af0d0f27add771959553387ca8402951c17ed8e2b9669fff7b147fbc7aca25abc4b5006f5f9d3c2b13f6626a9bea140f6738b3f78 SHA512 b387137632237fa9079a0f70d8724e28bc1833c49d6e14f8fbc357064cf495f6177c783db9448343c0bea98936fc5c3667ce625f5dcdaca851a2f9cc7e3e5639 +DIST mock-5.0.2.tar.gz 77477 BLAKE2B 1a85d7af3b6444343495980c5169be0373d09c2d91cc68674a1d221edd764642b4de42ec7b58973e8ff9748089f61795bbdec00eee1ab216df77ea42b6c47b1e SHA512 f1fecc4ade7eaeb158f3b4dcb5a9e5ce28c666727722f75946bdfff2600f3c590c2833f972cfbd928fc42bcb05b5bac11790ef9f8ff6389a80bfa121f232686d diff --git a/dev-python/mock/mock-5.0.2.ebuild b/dev-python/mock/mock-5.0.2.ebuild new file mode 100644 index 000000000000..d817a85380c0 --- /dev/null +++ b/dev-python/mock/mock-5.0.2.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{9..11} pypy3 ) + +inherit distutils-r1 pypi + +DESCRIPTION="Rolling backport of unittest.mock for all Pythons" +HOMEPAGE=" + https://github.com/testing-cabal/mock/ + https://pypi.org/project/mock/ +" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris" + +distutils_enable_tests pytest + +DOCS=( CHANGELOG.rst README.rst ) diff --git a/dev-python/pyamg/Manifest b/dev-python/pyamg/Manifest index b2369788dc5a..ee76c73d48d8 100644 --- a/dev-python/pyamg/Manifest +++ b/dev-python/pyamg/Manifest @@ -1 +1,2 @@ DIST pyamg-4.2.3.gh.tar.gz 4101959 BLAKE2B 190cce0bb06bbfc09e8c7a8d6d70498308e4d0e098c23a12d12ae8373b56ef183694430c1f85e287682f9733e3f85ff2bd94d8e10003f578af32f3c3f583a8f4 SHA512 ad11ed2870de41bb9596167a5a7fc3edd4c4bc898c2f5b5ffa3cfa862372d993fe1adfc5f3d199150ba69a4d2acbf75e5d99b3aa872273da0d05f1fd8d9f5c6d +DIST pyamg-5.0.0.gh.tar.gz 4132243 BLAKE2B 72630feb399653566c32ece3aad52f7e7634418c607ff8a4cc84aa1f5a378ef27b0b954e2ed1e52a9cb74a26a3b0c30ca3b0c25469ad4a7001dd5dc0b6a2a535 SHA512 c601e93dbc805f56aa976e5e32c80ae8307022736f29d1d28c5646e814d0c3684b1241f0d8953a2c47ba372107c013e9421d49997340887c0dc92d7c0a56dea7 diff --git a/dev-python/pyamg/pyamg-5.0.0.ebuild b/dev-python/pyamg/pyamg-5.0.0.ebuild new file mode 100644 index 000000000000..4171b0ddd8fe --- /dev/null +++ b/dev-python/pyamg/pyamg-5.0.0.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{9..11} ) + +inherit distutils-r1 + +DESCRIPTION="Algebraic multigrid solvers in Python" +HOMEPAGE=" + https://www.pyamg.org/ + https://github.com/pyamg/pyamg/ + https://pypi.org/project/pyamg/ +" +SRC_URI=" + https://github.com/pyamg/pyamg/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND=" + dev-python/pybind11[${PYTHON_USEDEP}] + dev-python/numpy[${PYTHON_USEDEP}] +" +RDEPEND=" + dev-python/CppHeaderParser[${PYTHON_USEDEP}] + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] + dev-python/scipy[${PYTHON_USEDEP}] +" +BDEPEND=" + ${DEPEND} + >=dev-python/setuptools-scm-7.0.0[${PYTHON_USEDEP}] + test? ( + dev-python/matplotlib[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +python_test() { + cd "${T}" || die + epytest --pyargs pyamg +} diff --git a/dev-python/pypdf/Manifest b/dev-python/pypdf/Manifest index fa992b1978e4..4c18bdd04eb7 100644 --- a/dev-python/pypdf/Manifest +++ b/dev-python/pypdf/Manifest @@ -1,5 +1,7 @@ DIST pypdf-3.6.0.gh.tar.gz 7174931 BLAKE2B 2d9260ecccc03e6039d288d1fb16f8d1deffcd8daf83e4bb25ff7f2c49b3c6c979ebca2f04458964999d29fb5979b21a0087b02ac66c0bf387cce2be50a308be SHA512 43286f7c9c68048d763a87b02eb932ba597a7aa778153e8abd96d7d496da0d910199dab1e985d21c625daae225dde69936fff56accd52102353e6a03e30db4c7 DIST pypdf-3.7.0.gh.tar.gz 7505675 BLAKE2B 68491e9d144717a5f92a00c01ae0cbdd1713c94f65ad44bb9ad1de556a80caac674c164d7c7a2d9738f68afdfb36ad3cde7791016856d0e8ddc1ff2c2d7335b3 SHA512 4d1d7d47ca20970174bf938af19813f5e2738ea6658fe3023b64e93575e3e73eef84327def6eb8868f4bbba01030a24252032a16cd89c6b79e3390b9ee9ecbb8 DIST pypdf-3.7.1.gh.tar.gz 7508532 BLAKE2B 917eb7a825781f966d6b268cf3471935b9d245de5465acd428f87cc387a01bf1739d1cddb504498e4e7505a098508a1e12d686ad21ef73960f11bcddd4acca57 SHA512 5834a5738860c341e231a0ba79d9ffbc14d1f683bc781793d962fb8303aac5e6ec825492cd2e470d47fdd166576c5c4be64bbb7a03f7f79b160d456667ce8f15 +DIST pypdf-3.8.0.gh.tar.gz 7509837 BLAKE2B 2acf12b5c43799252641f2c7d0ebd24c1f1eb02b655b0c458eef1049b660452967ff613e17b2eb70330d67677860b58b0f8f99d3af2c2794c4aacb30646b3244 SHA512 a4f33c8f940303958221a48ffbf088c363d7cf9360d5c9d27829b5703735216c32af63262313a25598c3479c4584999a23ac6bf77daa701042ef65314194dab3 DIST pypdf-sample-files-0c3b1d3879c5cd7d913b3d931fa33b37529d7346.gh.tar.gz 9028862 BLAKE2B 7c72b76724e7b0fb4069c3151c13342d66cc451f398f6826b09dfb5b57e2d2b625118de1f431b5759466c4e6afb5d0c8682c4c28ec2f3b700a6cc39787ec6ecd SHA512 342562a711673030eb729135f27c241f5f37305b0d6f30f555667881e921089b801a3376330d840b16d4a3683d0b6f07824d05e4d208d32a3771ca83a0b7f22d +DIST pypdf-sample-files-d3d250321b01ca1194e16a814d24508897862fe8.gh.tar.gz 9030851 BLAKE2B 63e5778763315aff0753e5a0f06cd55432a494efea921c73e765567aee63223af3f3d81436e22d089008bc38c917e10eb5da7988abd458fd3f3488e8faeed70e SHA512 a8e77982ad78aeb58db7a5a722c9e072d7c55bca7290f448ba388b70256137fc6b9919c8079d8b548407c88b8befe7caeeb65217eb52b6d9bbadfaf652d89e0a DIST pypdf-sample-files-fb7a080b35b3553bd10221282beeda7847959e83.gh.tar.gz 9027029 BLAKE2B 8f8797263b86f08efd9708d5812000efd08708abf66a0e95f50f5a147102e555dd7f8c465ae73cae842d86efdb52cabba5f8962626f56cb1b98409bfa108e150 SHA512 3a9cdab964a14cf6b14d80d917441a4e5effe2b7647163b666781ecabd189624dbbe5039111f6b1d753ff73e013665a1b86d87ca7806580fda58ec5810f88e94 diff --git a/dev-python/pypdf/pypdf-3.8.0.ebuild b/dev-python/pypdf/pypdf-3.8.0.ebuild new file mode 100644 index 000000000000..e4dd15ff67f2 --- /dev/null +++ b/dev-python/pypdf/pypdf-3.8.0.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=flit +PYTHON_COMPAT=( python3_{9..11} ) + +inherit distutils-r1 + +SAMPLE_COMMIT=d3d250321b01ca1194e16a814d24508897862fe8 +DESCRIPTION="Python library to work with PDF files" +HOMEPAGE=" + https://pypi.org/project/pypdf/ + https://github.com/py-pdf/pypdf/ +" +SRC_URI=" + https://github.com/py-pdf/pypdf/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz + test? ( + https://github.com/py-pdf/sample-files/archive/${SAMPLE_COMMIT}.tar.gz + -> ${PN}-sample-files-${SAMPLE_COMMIT}.gh.tar.gz + ) +" +S=${WORKDIR}/pypdf-${PV} + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" + +RDEPEND=" + $(python_gen_cond_dep ' + dev-python/typing-extensions[${PYTHON_USEDEP}] + ' 3.8 3.9) +" +BDEPEND=" + dev-python/pillow[${PYTHON_USEDEP}] + test? ( + dev-python/pycryptodome[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +EPYTEST_DESELECT=( + # rely on -Werror + tests/test_utils.py::test_deprecate_no_replacement + tests/test_workflows.py::test_orientations +) + +src_unpack() { + default + if use test; then + mv "sample-files-${SAMPLE_COMMIT}"/* "${S}"/sample-files/ || die + fi +} + +python_test() { + epytest -o addopts= -m "not enable_socket" +} diff --git a/dev-python/python-email-validator/Manifest b/dev-python/python-email-validator/Manifest index c9ee5fef7d12..188f4322e606 100644 --- a/dev-python/python-email-validator/Manifest +++ b/dev-python/python-email-validator/Manifest @@ -1,2 +1,3 @@ +DIST email_validator-2.0.0.post1.tar.gz 45136 BLAKE2B d800462f55ee0693917a5348107bd68af2a9c0b6e1a3ccbf28aa22716bbf6da2998bbf4b16352e719c13761b895a85566911bfd4422a516d77214a729da41aca SHA512 0e72d88dea00ade9a8727a4d3ff9a239f581afc14bf7c7a22a582d69e70c7653371c035451493b89fc1a49c70aab8cdfe6159285ea5e8976e645199319004029 DIST python-email-validator-1.3.1.gh.tar.gz 28691 BLAKE2B eb69028066e969a935117f51a32d75595468797a82608bcb7f6ebcbebada01aac29e3e223efc849dc519d85897a375cdc584760f3cb5a431e2c39aa566c20514 SHA512 7806ef35c07cf0cfef3d8c6c7fe6dd3cb58da091a134b57d879a2cfcdf6425f8729ab8b03194135749ae47b369da47434c1d130432cfaa8eeaf5d07149c15dc2 DIST python-email-validator-2.0.0.gh.tar.gz 39007 BLAKE2B 319fa94979fdb6b701c1c8f754f2915e02a53de7ee6f06a5409980b1e4dedca75d08cd24e4f5ee35e7803c7ff4dbb03c1e75645dd7e0443ccaa2b26b6035648a SHA512 6448c55dea3d43d1d457f4b3f24360aaaa6e4ea8f81db891e94d2ff685ae1d8bc1023d4a6329fc495ff6069fc1a6861185e66eada9d2ed6546e6c6b8716df802 diff --git a/dev-python/python-email-validator/python-email-validator-2.0.0_p1.ebuild b/dev-python/python-email-validator/python-email-validator-2.0.0_p1.ebuild new file mode 100644 index 000000000000..2cb4ff62e61a --- /dev/null +++ b/dev-python/python-email-validator/python-email-validator-2.0.0_p1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYPI_PN=email-validator +PYTHON_COMPAT=( python3_{9..11} pypy3 ) + +inherit distutils-r1 pypi + +DESCRIPTION="A robust email syntax and deliverability validation library" +HOMEPAGE=" + https://github.com/JoshData/python-email-validator/ + https://pypi.org/project/email-validator/ +" + +LICENSE="CC0-1.0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +SLOT="0" + +RDEPEND=" + >=dev-python/idna-2.8[${PYTHON_USEDEP}] + >=dev-python/dnspython-1.15.0[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest + +EPYTEST_DESELECT=( + # Internet + tests/test_deliverability.py +) diff --git a/dev-python/pyxattr/Manifest b/dev-python/pyxattr/Manifest index 198aa8cf3450..0c90e047e927 100644 --- a/dev-python/pyxattr/Manifest +++ b/dev-python/pyxattr/Manifest @@ -1 +1,2 @@ DIST pyxattr-0.8.0.tar.gz 35720 BLAKE2B 776cacc68a2dc3e9d60b026d9d0dd3b3ff362445c8f9eb205d1799378b1cb1ab0e6af5fe9bc4f295e428195d0431287f62f6fb735a37831e3b36b7f53f5535a6 SHA512 921af6341cdfdfccea0c46e02742d051de00c7eca75c52f9fcc1618217c41869da957dd6ce03fa7d1367b86b44b49b5263ba65de277bf2453807c6f69a67141b +DIST pyxattr-0.8.1.tar.gz 38443 BLAKE2B 2b044f5774c4b1e95a711e3bdad0c2f604d330865155360b8b6e08377c78d058e17a7d3f4792d6ef932b81f92b1671277663a36652d60a25aaa658a2e545f8a6 SHA512 98ba196b29b431ecacf0257712aa219175ba030e1c62fb388b4f3109d2d6b14ef09ed38f85177bd2991d3109c0af4cd2a108d17886dd51549e817727714f72f1 diff --git a/dev-python/pyxattr/pyxattr-0.8.1.ebuild b/dev-python/pyxattr/pyxattr-0.8.1.ebuild new file mode 100644 index 000000000000..e9891b221530 --- /dev/null +++ b/dev-python/pyxattr/pyxattr-0.8.1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{9..11} pypy3 ) + +inherit distutils-r1 pypi + +DESCRIPTION="Python interface to xattr" +HOMEPAGE=" + https://pyxattr.k1024.org/ + https://github.com/iustin/pyxattr/ + https://pypi.org/project/pyxattr/ +" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" + +DEPEND=" + sys-apps/attr:= +" +RDEPEND=" + ${DEPEND} +" + +distutils_enable_tests pytest +distutils_enable_sphinx doc dev-python/recommonmark + +python_prepare_all() { + sed -i -e 's:, "-Werror"::' setup.py || die + # Bug 548486 + sed -e "s:html_theme = 'default':html_theme = 'classic':" \ + -i doc/conf.py || die + + distutils-r1_python_prepare_all +} diff --git a/dev-python/rapidfuzz/Manifest b/dev-python/rapidfuzz/Manifest index acee19967517..bda2fa029942 100644 --- a/dev-python/rapidfuzz/Manifest +++ b/dev-python/rapidfuzz/Manifest @@ -2,3 +2,4 @@ DIST rapidfuzz-2.13.7.tar.gz 999972 BLAKE2B 1120a8fb91b03bc3d9bf6a04291f188df06d DIST rapidfuzz-2.14.0.tar.gz 997048 BLAKE2B 74ee7d6a6f5b41067eca5480e036270ac67d277523045d63ed04fc3ee570a092a6ebc35eeb8566452ec74d536c453634893759a29bb102fe381cca912637a38e SHA512 66599cb507786932d45d7366a7aa5e440375ec9c49c865743b6f2bf1f3ed748b5e9003ba6010568ba185031b995b41d47abe84e8af5575bdd3b055dbfb56920e DIST rapidfuzz-2.15.0.tar.gz 998377 BLAKE2B f749aef36791a2ec9a5dc870f5438af7088debd8b0abf5a44af37d31f84f577d540d18599a3d34641aa52a8e55db3cb491f43dc3c2f4b5fce8d8137c16c9ba7e SHA512 e77d34304a2145828aa183b1539f341c0761a84a481a0d72f3b15fda9564a7e1651ee3b255203bd270d5e5f70c5670f351d53e0bc560e94b8518cf67924a5e7a DIST rapidfuzz-2.15.1.tar.gz 1209658 BLAKE2B 2644566c4dd9e3db2ecd2a42f4d1b7c80dd34b0ca1b2e80f2906dacf5180f702b6c7445652a3ab95fecb53d07256f35351e4e88329e2423871e26db9bc5519bb SHA512 541877af22570d9324f1d4c4f2b54fdc16ce321b28aac5d5bcd61bd915f38b7eabecafea3d65372f556e3e80be39015d674cb18714c77d8ea971fe3d2986b90d +DIST rapidfuzz-3.0.0.tar.gz 1230857 BLAKE2B b15bcca17288cc428b485b0c6e1d322027eee5c8c0261b7f0240e4f5908ff2d53e05124855213a1923d96ec7537b75263c17f220bfaf792ab92f2f455d761027 SHA512 bafdb6045baa78154026dc0eb2498eb0031f03c36e8b17a9219d6e0c55041a9b6c164f4fcc0523480903fece0ab4e2e50a8f969a52b6934fcfbad80d8eadba25 diff --git a/dev-python/rapidfuzz/rapidfuzz-2.15.1.ebuild b/dev-python/rapidfuzz/rapidfuzz-2.15.1.ebuild index fbeb5b3cf312..ab6017b3d088 100644 --- a/dev-python/rapidfuzz/rapidfuzz-2.15.1.ebuild +++ b/dev-python/rapidfuzz/rapidfuzz-2.15.1.ebuild @@ -39,6 +39,8 @@ distutils_enable_tests pytest src_prepare() { # sterilize build flags sed -i -e '/CMAKE_INTERPROCEDURAL_OPTIMIZATION/d' CMakeLists.txt || die + # remove bundled libraries + rm -r extern || die distutils-r1_src_prepare diff --git a/dev-python/rapidfuzz/rapidfuzz-3.0.0.ebuild b/dev-python/rapidfuzz/rapidfuzz-3.0.0.ebuild new file mode 100644 index 000000000000..44a7e6368305 --- /dev/null +++ b/dev-python/rapidfuzz/rapidfuzz-3.0.0.ebuild @@ -0,0 +1,48 @@ +# Copyright 2022-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +# custom wrapper over setuptools +DISTUTILS_USE_PEP517=standalone +PYTHON_COMPAT=( python3_{9..11} ) + +inherit distutils-r1 pypi + +DESCRIPTION="Rapid fuzzy string matching in Python using various string metrics" +HOMEPAGE=" + https://github.com/maxbachmann/RapidFuzz/ + https://pypi.org/project/rapidfuzz/ +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +# all these are header-only libraries +DEPEND=" + >=dev-cpp/taskflow-3.0.0 + >=dev-cpp/rapidfuzz-cpp-1.11.2 + dev-python/numpy[${PYTHON_USEDEP}] +" +BDEPEND=" + dev-python/rapidfuzz_capi[${PYTHON_USEDEP}] + >=dev-python/scikit-build-0.16.2[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/hypothesis[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +src_prepare() { + # sterilize build flags + sed -i -e '/CMAKE_INTERPROCEDURAL_OPTIMIZATION/d' CMakeLists.txt || die + # remove bundled libraries + rm -r extern || die + + distutils-r1_src_prepare + + export RAPIDFUZZ_BUILD_EXTENSION=1 +} diff --git a/dev-python/simplejson/Manifest b/dev-python/simplejson/Manifest index d70d013eebc9..f2b19d5bbbe1 100644 --- a/dev-python/simplejson/Manifest +++ b/dev-python/simplejson/Manifest @@ -1,3 +1,2 @@ -DIST simplejson-3.18.3.gh.tar.gz 81540 BLAKE2B bf6a162499b28a362638e19735f668571f88943ae396fb7f813d51ab0684caa8cb996a35deaf1d68adee2a812d685058e9e80d6f6e66604bbb7c704051b0b37f SHA512 54223e08775ab6277722342084bf56684588dd9dda574428cb73b791d37d0b74decef6082268c0389cc4586a534a19e62ec5738fa9ffffaee63f68e27fb465c8 DIST simplejson-3.18.4.tar.gz 83721 BLAKE2B fb9ea04402ba740a445751ff2be2f5f5c826e20f38289dcf9aa9c8abbaba4b59bf906c3378317818c77bcfa6ccc3fe76608651eac660683eeac61f5750099e3d SHA512 6335389eb620c96d5c537cd335e20d4f112b86c0c463ceed4d8fa36c27bab8b00386b7995e40070bda5eed1fe5883a462579c7d09bdbc828c39537282669d0e4 DIST simplejson-3.19.1.tar.gz 85207 BLAKE2B 4c3d1d5de4292404e44977777332fe57327ece1afcd9890b605d52a248764612da351b7c5afb36d4e1cdcb530f07b99b8d971124899b86e4b2f4005a66afcbb5 SHA512 a2239a932f43abe59da84fc3ba95eeaa6a720c929da79d8f4447603b8c770403c9cba0f008a66c20c5c8aa3255891b687336eef1db071171a2c8435563bbb1bd diff --git a/dev-python/simplejson/simplejson-3.18.3.ebuild b/dev-python/simplejson/simplejson-3.18.3.ebuild deleted file mode 100644 index ccff598446a2..000000000000 --- a/dev-python/simplejson/simplejson-3.18.3.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} pypy3 ) - -inherit distutils-r1 - -DESCRIPTION="Simple, fast, extensible JSON encoder/decoder for Python" -HOMEPAGE=" - https://github.com/simplejson/simplejson/ - https://pypi.org/project/simplejson/ -" -SRC_URI=" - https://github.com/simplejson/simplejson/archive/v${PV}.tar.gz - -> ${P}.gh.tar.gz -" - -LICENSE="|| ( MIT AFL-2.1 )" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" -IUSE="+native-extensions" - -DOCS=( README.rst CHANGES.txt ) - -distutils_enable_tests unittest - -src_configure() { - export DISABLE_SPEEDUPS=$(usex native-extensions 0 1) - use native-extensions && export REQUIRE_SPEEDUPS=1 -} - -python_test() { - cd "${BUILD_DIR}/install$(python_get_sitedir)" || die - eunittest -} diff --git a/dev-python/simplejson/simplejson-3.18.4.ebuild b/dev-python/simplejson/simplejson-3.18.4.ebuild index 8284047249eb..fcb83a588896 100644 --- a/dev-python/simplejson/simplejson-3.18.4.ebuild +++ b/dev-python/simplejson/simplejson-3.18.4.ebuild @@ -16,7 +16,7 @@ HOMEPAGE=" LICENSE="|| ( MIT AFL-2.1 )" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" IUSE="+native-extensions" DOCS=( README.rst CHANGES.txt ) diff --git a/dev-python/soupsieve/Manifest b/dev-python/soupsieve/Manifest index 152568314091..39fc5df20e75 100644 --- a/dev-python/soupsieve/Manifest +++ b/dev-python/soupsieve/Manifest @@ -1 +1,2 @@ +DIST soupsieve-2.4.1.gh.tar.gz 105158 BLAKE2B 73ae01835ac7edf17bd1be1eb33cae5d06a7ef21c63fac50d61fd0f3246f734cd76f70245da19334d65746cf6e02a5a4c970ba2fbfb1a79de7fcda0bca1a38de SHA512 71ed91beabd9afef5756dddbb259f2607ca5109b8ff3f0a25bc3d4730f2948e160c20334b1c6e9f9095362f2b9e601e1ccfee09854e000b2f9f83af514790caa DIST soupsieve-2.4.gh.tar.gz 104437 BLAKE2B cca6185980473245e2c08181142f497584ae01928b4a8569f9436d30df339b93b92c33818dab93b6646f6e1dbeb52242822fffa193be87c18a25324cc03b9e1a SHA512 68885307d8e6731d47372af5130f2fb88567c7d5b5995c84fb11116007b2360dea88aac1b5c8cadc41f99ef71704c4fe710c45318be0be727ed9145ce009e4fd diff --git a/dev-python/soupsieve/soupsieve-2.4.1.ebuild b/dev-python/soupsieve/soupsieve-2.4.1.ebuild new file mode 100644 index 000000000000..97f0a6c4a683 --- /dev/null +++ b/dev-python/soupsieve/soupsieve-2.4.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=hatchling +PYTHON_COMPAT=( python3_{9..11} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="A modern CSS selector implementation for BeautifulSoup" +HOMEPAGE=" + https://github.com/facelessuser/soupsieve/ + https://pypi.org/project/soupsieve/ +" +SRC_URI=" + https://github.com/facelessuser/${PN}/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +BDEPEND=" + test? ( + dev-python/beautifulsoup4[${PYTHON_USEDEP}] + dev-python/lxml[${PYTHON_USEDEP}] + dev-python/html5lib[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest diff --git a/dev-python/sqlalchemy/sqlalchemy-2.0.7.ebuild b/dev-python/sqlalchemy/sqlalchemy-2.0.7.ebuild index 9dd057f56fc7..0bf16f0b5df2 100644 --- a/dev-python/sqlalchemy/sqlalchemy-2.0.7.ebuild +++ b/dev-python/sqlalchemy/sqlalchemy-2.0.7.ebuild @@ -21,7 +21,7 @@ S="${WORKDIR}/${MY_PN}-${PV}" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" IUSE="examples +sqlite test" RDEPEND=" @@ -71,7 +71,10 @@ python_test() { test/ext/asyncio/test_engine_py3k.py::TextSyncDBAPI::test_sync_driver_run_sync "test/engine/test_pool.py::PoolEventsTest::test_checkin_event_gc[False-True]" "test/engine/test_pool.py::PoolEventsTest::test_checkin_event_gc[True-True]" + "test/engine/test_pool.py::PoolEventsTest::test_checkin_event_gc[has_terminate-is_asyncio]" + "test/engine/test_pool.py::PoolEventsTest::test_checkin_event_gc[not_has_terminate-is_asyncio]" "test/engine/test_pool.py::QueuePoolTest::test_userspace_disconnectionerror_weakref_finalizer[True-_exclusions0]" + "test/engine/test_pool.py::QueuePoolTest::test_userspace_disconnectionerror_weakref_finalizer[True]" ) fi diff --git a/dev-python/sqlalchemy/sqlalchemy-2.0.8.ebuild b/dev-python/sqlalchemy/sqlalchemy-2.0.8.ebuild index 0ac2428370ce..72166aadb1d9 100644 --- a/dev-python/sqlalchemy/sqlalchemy-2.0.8.ebuild +++ b/dev-python/sqlalchemy/sqlalchemy-2.0.8.ebuild @@ -71,7 +71,10 @@ python_test() { test/ext/asyncio/test_engine_py3k.py::TextSyncDBAPI::test_sync_driver_run_sync "test/engine/test_pool.py::PoolEventsTest::test_checkin_event_gc[False-True]" "test/engine/test_pool.py::PoolEventsTest::test_checkin_event_gc[True-True]" + "test/engine/test_pool.py::PoolEventsTest::test_checkin_event_gc[has_terminate-is_asyncio]" + "test/engine/test_pool.py::PoolEventsTest::test_checkin_event_gc[not_has_terminate-is_asyncio]" "test/engine/test_pool.py::QueuePoolTest::test_userspace_disconnectionerror_weakref_finalizer[True-_exclusions0]" + "test/engine/test_pool.py::QueuePoolTest::test_userspace_disconnectionerror_weakref_finalizer[True]" ) fi diff --git a/dev-python/typeguard/Manifest b/dev-python/typeguard/Manifest index 2b01cfd43441..ade5ffe6b10b 100644 --- a/dev-python/typeguard/Manifest +++ b/dev-python/typeguard/Manifest @@ -1,4 +1 @@ -DIST typeguard-2.13.3.gh.tar.gz 37436 BLAKE2B a3cb616692119c64a9dc0d0bae25cc661b7974a0b6cf6632fa403f7c5430873570b1aaa310bc03843deee6f77a831c303ea9d9091db596eb565fce43980bbb13 SHA512 26c31ee9670650d1969320187a924d29d986894a38f1026af58f705b132b64be3b6e2ac34729f966f5d302d486334b5a5d9e65fb206245b82b0ff0852020b609 -DIST typeguard-3.0.0.tar.gz 55330 BLAKE2B b0b764414c70e109e5bdddd1bfac06af5b0db8d8913e2777b4bec94598ae70f5ed323686f54d902c541c606e7ae32129b3a29099e59cfe5ff2ecad4e6991409e SHA512 367ffea6636817bf9ce492de575b38b1f15aec323d415476bdea271f01ee60073274fd955bdad0e554eb306fb4e516b80a29e5db10015cf47856279235e36c24 -DIST typeguard-3.0.1.tar.gz 56196 BLAKE2B f53bfc7571063bc74588356cbff513311b0100079f42c3d8188ae430ffc1cf3ff2b7599a6ed0973ae02bb9d5d1818abc1c63a24d453592e630a4ac794ef4a5e4 SHA512 07d0276033730a6fc345aeabcbeb68f3b9740cb8336ed8ad731f75925d3bd9007ce050514bd98d39c1b85a4615ddf503420686ccd8ff6513c2610e40b8f89504 DIST typeguard-3.0.2.tar.gz 58171 BLAKE2B d11b9592c191f131a48c8545a1ffbc4dcf4fc32f12dd0ba0bbab84c11ae1d6ba4cf6126fdc5d5b9b2ba81f07a3047f8328c7a8c29c1779238a04b12d4fe8b01c SHA512 a8f87494d4962cfa451ab266fb2958867acb677ec07acad0e8ccead16b9f3d59facffbe133de4e7808147caefb2b41c184b19bc82a812d041e90c3c1c1c0667a diff --git a/dev-python/typeguard/files/typeguard-2.13.3-test.patch b/dev-python/typeguard/files/typeguard-2.13.3-test.patch deleted file mode 100644 index 3c01c018ea86..000000000000 --- a/dev-python/typeguard/files/typeguard-2.13.3-test.patch +++ /dev/null @@ -1,44 +0,0 @@ -diff --git a/src/typeguard/__init__.py b/src/typeguard/__init__.py -index 5684d63..27fa30b 100644 ---- a/src/typeguard/__init__.py -+++ b/src/typeguard/__init__.py -@@ -61,22 +61,25 @@ except ImportError: - from typing import _ForwardRef as ForwardRef - evaluate_forwardref = ForwardRef._eval_type - --if sys.version_info >= (3, 10): -- from typing import is_typeddict --else: -- _typed_dict_meta_types = () -- if sys.version_info >= (3, 8): -- from typing import _TypedDictMeta -- _typed_dict_meta_types += (_TypedDictMeta,) -+try: -+ from typing_extensions import is_typeddict -+except ImportError: -+ if sys.version_info >= (3, 10): -+ from typing import is_typeddict -+ else: -+ _typed_dict_meta_types = () -+ if sys.version_info >= (3, 8): -+ from typing import _TypedDictMeta -+ _typed_dict_meta_types += (_TypedDictMeta,) - -- try: -- from typing_extensions import _TypedDictMeta -- _typed_dict_meta_types += (_TypedDictMeta,) -- except ImportError: -- pass -+ try: -+ from typing_extensions import _TypedDictMeta -+ _typed_dict_meta_types += (_TypedDictMeta,) -+ except ImportError: -+ pass - -- def is_typeddict(tp) -> bool: -- return isinstance(tp, _typed_dict_meta_types) -+ def is_typeddict(tp) -> bool: -+ return isinstance(tp, _typed_dict_meta_types) - - - if TYPE_CHECKING: diff --git a/dev-python/typeguard/typeguard-2.13.3-r1.ebuild b/dev-python/typeguard/typeguard-2.13.3-r1.ebuild deleted file mode 100644 index d40683e5eb2b..000000000000 --- a/dev-python/typeguard/typeguard-2.13.3-r1.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 2021-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) - -inherit distutils-r1 - -DESCRIPTION="Run-time type checker for Python" -HOMEPAGE=" - https://pypi.org/project/typeguard/ - https://github.com/agronholm/typeguard/ -" -SRC_URI=" - https://github.com/agronholm/typeguard/archive/${PV}.tar.gz - -> ${P}.gh.tar.gz -" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86" - -BDEPEND=" - dev-python/setuptools-scm[${PYTHON_USEDEP}] - test? ( - dev-python/typing-extensions[${PYTHON_USEDEP}] - ) -" - -distutils_enable_tests pytest - -export SETUPTOOLS_SCM_PRETEND_VERSION=${PV} - -PATCHES=( - # backport from https://github.com/agronholm/typeguard/pull/243 - "${FILESDIR}"/${P}-test.patch -) - -python_test() { - local EPYTEST_IGNORE=( - # mypy changes results from version to version - tests/mypy - ) - - local -x PYTHONDONTWRITEBYTECODE= - epytest -} diff --git a/dev-python/typeguard/typeguard-3.0.0.ebuild b/dev-python/typeguard/typeguard-3.0.0.ebuild deleted file mode 100644 index 45c5399f1af2..000000000000 --- a/dev-python/typeguard/typeguard-3.0.0.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 2021-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) - -inherit distutils-r1 pypi - -DESCRIPTION="Run-time type checker for Python" -HOMEPAGE=" - https://pypi.org/project/typeguard/ - https://github.com/agronholm/typeguard/ -" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" - -RDEPEND=" - $(python_gen_cond_dep ' - >=dev-python/importlib_metadata-3.6[${PYTHON_USEDEP}] - ' 3.{8..9}) - $(python_gen_cond_dep ' - >=dev-python/typing-extensions-4.4.0[${PYTHON_USEDEP}] - ' 3.{8..10}) -" -BDEPEND=" - >=dev-python/setuptools-scm-6.4[${PYTHON_USEDEP}] -" - -distutils_enable_tests pytest - -python_test() { - local EPYTEST_IGNORE=( - # mypy changes results from version to version - tests/mypy - ) - - local -x PYTHONDONTWRITEBYTECODE= - local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 - # the XFAIL test pass due to some package being installed - epytest -o xfail_strict=False -} diff --git a/dev-python/typeguard/typeguard-3.0.1.ebuild b/dev-python/typeguard/typeguard-3.0.1.ebuild deleted file mode 100644 index 45c5399f1af2..000000000000 --- a/dev-python/typeguard/typeguard-3.0.1.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 2021-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) - -inherit distutils-r1 pypi - -DESCRIPTION="Run-time type checker for Python" -HOMEPAGE=" - https://pypi.org/project/typeguard/ - https://github.com/agronholm/typeguard/ -" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" - -RDEPEND=" - $(python_gen_cond_dep ' - >=dev-python/importlib_metadata-3.6[${PYTHON_USEDEP}] - ' 3.{8..9}) - $(python_gen_cond_dep ' - >=dev-python/typing-extensions-4.4.0[${PYTHON_USEDEP}] - ' 3.{8..10}) -" -BDEPEND=" - >=dev-python/setuptools-scm-6.4[${PYTHON_USEDEP}] -" - -distutils_enable_tests pytest - -python_test() { - local EPYTEST_IGNORE=( - # mypy changes results from version to version - tests/mypy - ) - - local -x PYTHONDONTWRITEBYTECODE= - local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 - # the XFAIL test pass due to some package being installed - epytest -o xfail_strict=False -} diff --git a/dev-python/typeguard/typeguard-3.0.2.ebuild b/dev-python/typeguard/typeguard-3.0.2.ebuild index d0ca5aa215d9..3f32cac8a6c1 100644 --- a/dev-python/typeguard/typeguard-3.0.2.ebuild +++ b/dev-python/typeguard/typeguard-3.0.2.ebuild @@ -16,7 +16,7 @@ HOMEPAGE=" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc ~x86" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86" RDEPEND=" $(python_gen_cond_dep ' diff --git a/dev-python/zstandard/Manifest b/dev-python/zstandard/Manifest index 3ba5c4e64297..02e800d6aba0 100644 --- a/dev-python/zstandard/Manifest +++ b/dev-python/zstandard/Manifest @@ -1 +1,2 @@ DIST python-zstandard-0.20.0.gh.tar.gz 712241 BLAKE2B 6ec393a440eb2a0527e655ee1aec16a47120578bbbb69d2f208b4367be199041887bf02d8feeb74f87992d0ab2b5e668cf8b3d8cd8967bd6dc47d4e052781ebc SHA512 bdbbd829e431a9b1ad1247b83e2e6102314a257a32c92a5c666c5ac050eb115bccd9d358240ac9ab41e975ade13bbbc155c66cb8fb583d2ee8dbd28ae323e4f8 +DIST python-zstandard-0.21.0.gh.tar.gz 711413 BLAKE2B de3c5a5b34242c20452e35ba6bac451a176f9f442dfc7028f5bae9299c8cedafa58edce85b21bbbdd440765a7eef67bf3c996ae1a81d534a18bfc203cdcc1c25 SHA512 51a7a7a6c20733858f96763738f3097f52dae1ca3a33bad3e78e31d6f339d8f2ddb0a7da2fafaa0b162b17e5054c0582ab52054f1215e8c39d8e1f8002babd7c diff --git a/dev-python/zstandard/zstandard-0.21.0.ebuild b/dev-python/zstandard/zstandard-0.21.0.ebuild new file mode 100644 index 000000000000..5fc27ad9bd17 --- /dev/null +++ b/dev-python/zstandard/zstandard-0.21.0.ebuild @@ -0,0 +1,67 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{9..11} pypy3 ) + +inherit distutils-r1 + +MY_P=python-zstandard-${PV} +DESCRIPTION="Zstandard Bindings for Python" +HOMEPAGE=" + https://github.com/indygreg/python-zstandard/ + https://pypi.org/project/zstandard/ +" +SRC_URI=" + https://github.com/indygreg/python-zstandard/archive/${PV}.tar.gz + -> ${MY_P}.gh.tar.gz +" +S=${WORKDIR}/${MY_P} + +SLOT="0" +LICENSE="BSD" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + +DEPEND=" + app-arch/zstd:= +" +RDEPEND=" + ${DEPEND} + $(python_gen_cond_dep ' + >=dev-python/cffi-1.14.0-r2:=[${PYTHON_USEDEP}] + ' 'python*') +" +BDEPEND=" + test? ( + dev-python/hypothesis[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests unittest + +src_prepare() { + # the C backend is repeatedly broken, so force CFFI instead + sed -e '/PYTHON_ZSTANDARD_IMPORT_POLICY/s:default:cffi:' \ + -i zstandard/__init__.py || die + # unreliable, fails on x86 + sed -e 's:test_estimated_compression_context_size:_&:' \ + -i tests/test_data_structures.py || die + # unbundle zstd + : > zstd/zstdlib.c || die + # it does random preprocessing on that, so we can't use #include + cp "${ESYSROOT}/usr/include/zstd.h" zstd/zstd.h || die + sed -i -e '/include_dirs/a libraries=["zstd"],' make_cffi.py || die + + distutils-r1_src_prepare + + DISTUTILS_ARGS=( + --no-c-backend + ) +} + +src_test() { + rm -r zstandard || die + distutils-r1_src_test +} diff --git a/dev-qt/Manifest.gz b/dev-qt/Manifest.gz index 775b4558000c..6221c26c45e9 100644 Binary files a/dev-qt/Manifest.gz and b/dev-qt/Manifest.gz differ diff --git a/dev-qt/qtbase/qtbase-6.5.0.ebuild b/dev-qt/qtbase/qtbase-6.5.0-r1.ebuild similarity index 99% rename from dev-qt/qtbase/qtbase-6.5.0.ebuild rename to dev-qt/qtbase/qtbase-6.5.0-r1.ebuild index 38de403b3daf..b99943b6b2db 100644 --- a/dev-qt/qtbase/qtbase-6.5.0.ebuild +++ b/dev-qt/qtbase/qtbase-6.5.0-r1.ebuild @@ -93,6 +93,7 @@ DEPEND=" x11-libs/libX11 >=x11-libs/libxcb-1.12:= >=x11-libs/libxkbcommon-0.5.0[X] + x11-libs/xcb-util-cursor x11-libs/xcb-util-image x11-libs/xcb-util-keysyms x11-libs/xcb-util-renderutil diff --git a/dev-qt/qtscxml/Manifest b/dev-qt/qtscxml/Manifest index beb1c1313b49..043bd9c12785 100644 --- a/dev-qt/qtscxml/Manifest +++ b/dev-qt/qtscxml/Manifest @@ -1,2 +1,3 @@ DIST qtscxml-everywhere-opensource-src-5.15.8.tar.xz 436864 BLAKE2B ada2ac54eaef077da132929a658a461151e5b1c15a02874b80da6334eb5fdca5737126e5caff308fccd0bec96cd07a36b188113b8d26beb7dab9d1e9278598e8 SHA512 f1e560e3091eb60b70e5b7ab187511708d16c1b2e8a0c1a6d7a95358eb3ed998bdf0e57b7855e38a773509805790603e3e8e64627f52f05f305d8a29108db9f2 DIST qtscxml-everywhere-opensource-src-5.15.9.tar.xz 436620 BLAKE2B 4471906e193e71c2cf16165a6925f2fa802d057afcb2690b0e9558c4fa98445282660346364800357e37f1146e077a3b10043fba3bd934bee34d8b801c74214e SHA512 f6c6bdcb651055fd3a9b18fae1860f0d72afe83a08b387cb1393d0b1966eaaf1d8ce4530e6faa3a4e4a18d97a8e36937303b99e29d7dba17b6bcda61a5eb9872 +DIST qtscxml-everywhere-src-6.5.0.tar.xz 1254984 BLAKE2B c004f2bb8961c2d8678497363920b7be82917b9b178334db90ef4ec386d498f7bbc4976018f0dbf35f76f7b7b5aea972b785f51bf60d91d29b5c7585dc18171e SHA512 21933952c5eecce2cfe45c8c7b50d249b71f49538ee6736a7180534abd44b6032ea9e4d2aa9b658b78f60ffd61cd065046da6df5abed13483237e8d8dcd9fe56 diff --git a/dev-qt/qtscxml/qtscxml-6.5.0.ebuild b/dev-qt/qtscxml/qtscxml-6.5.0.ebuild new file mode 100644 index 000000000000..1016e87c11b7 --- /dev/null +++ b/dev-qt/qtscxml/qtscxml-6.5.0.ebuild @@ -0,0 +1,20 @@ +# Copyright 2021-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit qt6-build + +DESCRIPTION="State Chart XML (SCXML) support library for the Qt6 framework" + +if [[ ${QT6_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64" +fi + +DEPEND=" + =dev-qt/qtbase-${PV}* + =dev-qt/qtdeclarative-${PV}* +" +RDEPEND=" + ${DEPEND} +" diff --git a/dev-qt/qtwebengine/files/qtwebengine-6.5.0-gcc-13-build.patch b/dev-qt/qtwebengine/files/qtwebengine-6.5.0-gcc-13-build.patch new file mode 100644 index 000000000000..0993771177b4 --- /dev/null +++ b/dev-qt/qtwebengine/files/qtwebengine-6.5.0-gcc-13-build.patch @@ -0,0 +1,394 @@ +Upstream: https://code.qt.io/cgit/qt/qtwebengine-chromium.git/commit/?h=108-based&id=9de0d8a90d9 + +From 9de0d8a90d9b0176542db8b54d678a9fcbb69337 Mon Sep 17 00:00:00 2001 +From: Martin Negyokru +Date: Fri, 3 Mar 2023 16:56:50 +0100 +Subject: Fixes for building with GCC-13 + +Pick-to: 102-based +Pick-to: 87-based +Fixes: QTBUG-111697 +Change-Id: I51fca3b3eb627b2617ff5c6c051fa1182671244d +Reviewed-on: https://codereview.qt-project.org/c/qt/qtwebengine-chromium/+/464490 +Reviewed-by: Allan Sandfeld Jensen +--- + chromium/base/debug/profiler.h | 1 + + chromium/cc/trees/target_property.cc | 2 ++ + chromium/components/metrics/psi_memory_parser.h | 2 ++ + chromium/components/viz/common/shared_element_resource_id.h | 1 + + chromium/content/public/browser/browsing_data_remover_delegate.h | 1 + + chromium/device/base/synchronization/one_writer_seqlock.h | 1 + + chromium/device/bluetooth/public/cpp/bluetooth_uuid.h | 1 + + chromium/extensions/common/constants.h | 2 ++ + chromium/extensions/renderer/bindings/api_invocation_errors.h | 1 + + chromium/gpu/config/gpu_feature_info.h | 1 + + chromium/net/base/parse_number.h | 2 ++ + chromium/net/cookies/cookie_inclusion_status.h | 1 + + .../net/third_party/quiche/src/quiche/quic/core/crypto/quic_hkdf.h | 1 + + .../net/third_party/quiche/src/quiche/quic/core/quic_connection_id.h | 1 + + chromium/pdf/document_attachment_info.h | 1 + + chromium/sandbox/linux/syscall_broker/broker_file_permission.h | 1 + + chromium/third_party/angle/include/GLSLANG/ShaderVars.h | 1 + + .../blink/public/common/bluetooth/web_bluetooth_device_id.h | 1 + + .../third_party/blink/public/common/interest_group/auction_config.h | 1 + + .../blink/public/common/origin_trials/origin_trial_public_key.h | 1 + + .../renderer/platform/graphics/paint/effect_paint_property_node.h | 2 +- + chromium/third_party/pdfium/constants/annotation_flags.h | 2 ++ + chromium/third_party/perfetto/include/perfetto/ext/base/uuid.h | 1 + + chromium/third_party/vulkan_memory_allocator/include/vk_mem_alloc.h | 4 ++++ + chromium/third_party/webrtc/rtc_base/third_party/base64/base64.h | 1 + + chromium/ui/base/prediction/kalman_filter.h | 2 ++ + chromium/ui/events/types/scroll_types.h | 2 ++ + chromium/ui/gfx/geometry/linear_gradient.h | 1 + + 28 files changed, 38 insertions(+), 1 deletion(-) + +diff --git a/src/3rdparty/chromium/base/debug/profiler.h b/src/3rdparty/chromium/base/debug/profiler.h +index 5f0deadd5d3..80c73feb922 100644 +--- a/src/3rdparty/chromium/base/debug/profiler.h ++++ b/src/3rdparty/chromium/base/debug/profiler.h +@@ -6,6 +6,7 @@ + #define BASE_DEBUG_PROFILER_H_ + + #include ++#include + + #include + +diff --git a/src/3rdparty/chromium/cc/trees/target_property.cc b/src/3rdparty/chromium/cc/trees/target_property.cc +index f6e873a01a1..714bd5efed1 100644 +--- a/src/3rdparty/chromium/cc/trees/target_property.cc ++++ b/src/3rdparty/chromium/cc/trees/target_property.cc +@@ -2,6 +2,8 @@ + // Use of this source code is governed by a BSD-style license that can be + // found in the LICENSE file. + ++#include ++ + #include "cc/trees/target_property.h" + + #include "ui/gfx/animation/keyframe/target_property.h" +diff --git a/src/3rdparty/chromium/components/metrics/psi_memory_parser.h b/src/3rdparty/chromium/components/metrics/psi_memory_parser.h +index b8b22f4ab74..3d7ec9ca63a 100644 +--- a/src/3rdparty/chromium/components/metrics/psi_memory_parser.h ++++ b/src/3rdparty/chromium/components/metrics/psi_memory_parser.h +@@ -5,6 +5,8 @@ + #ifndef COMPONENTS_METRICS_PSI_MEMORY_PARSER_H_ + #define COMPONENTS_METRICS_PSI_MEMORY_PARSER_H_ + ++#include ++ + #include + + #include "base/gtest_prod_util.h" +diff --git a/src/3rdparty/chromium/components/viz/common/shared_element_resource_id.h b/src/3rdparty/chromium/components/viz/common/shared_element_resource_id.h +index b39a2d3dc18..ca3d8aedaef 100644 +--- a/src/3rdparty/chromium/components/viz/common/shared_element_resource_id.h ++++ b/src/3rdparty/chromium/components/viz/common/shared_element_resource_id.h +@@ -5,6 +5,7 @@ + #ifndef COMPONENTS_VIZ_COMMON_SHARED_ELEMENT_RESOURCE_ID_H_ + #define COMPONENTS_VIZ_COMMON_SHARED_ELEMENT_RESOURCE_ID_H_ + ++#include + #include + #include + +diff --git a/src/3rdparty/chromium/content/public/browser/browsing_data_remover_delegate.h b/src/3rdparty/chromium/content/public/browser/browsing_data_remover_delegate.h +index ee75332f05f..c0168281e81 100644 +--- a/src/3rdparty/chromium/content/public/browser/browsing_data_remover_delegate.h ++++ b/src/3rdparty/chromium/content/public/browser/browsing_data_remover_delegate.h +@@ -5,6 +5,7 @@ + #ifndef CONTENT_PUBLIC_BROWSER_BROWSING_DATA_REMOVER_DELEGATE_H_ + #define CONTENT_PUBLIC_BROWSER_BROWSING_DATA_REMOVER_DELEGATE_H_ + ++#include + #include + #include + #include "base/callback_forward.h" +diff --git a/src/3rdparty/chromium/device/base/synchronization/one_writer_seqlock.h b/src/3rdparty/chromium/device/base/synchronization/one_writer_seqlock.h +index 528b6683ca2..e37a16b81be 100644 +--- a/src/3rdparty/chromium/device/base/synchronization/one_writer_seqlock.h ++++ b/src/3rdparty/chromium/device/base/synchronization/one_writer_seqlock.h +@@ -6,6 +6,7 @@ + #define DEVICE_BASE_SYNCHRONIZATION_ONE_WRITER_SEQLOCK_H_ + + #include ++#include + #include + + #include "base/atomicops.h" +diff --git a/src/3rdparty/chromium/device/bluetooth/public/cpp/bluetooth_uuid.h b/src/3rdparty/chromium/device/bluetooth/public/cpp/bluetooth_uuid.h +index 816d3405eb0..15c4004c013 100644 +--- a/src/3rdparty/chromium/device/bluetooth/public/cpp/bluetooth_uuid.h ++++ b/src/3rdparty/chromium/device/bluetooth/public/cpp/bluetooth_uuid.h +@@ -5,6 +5,7 @@ + #ifndef DEVICE_BLUETOOTH_PUBLIC_CPP_BLUETOOTH_UUID_H_ + #define DEVICE_BLUETOOTH_PUBLIC_CPP_BLUETOOTH_UUID_H_ + ++#include + #include + #include + #include +diff --git a/src/3rdparty/chromium/extensions/common/constants.h b/src/3rdparty/chromium/extensions/common/constants.h +index bf6bac2b47c..b1a0d56ea64 100644 +--- a/src/3rdparty/chromium/extensions/common/constants.h ++++ b/src/3rdparty/chromium/extensions/common/constants.h +@@ -5,6 +5,8 @@ + #ifndef EXTENSIONS_COMMON_CONSTANTS_H_ + #define EXTENSIONS_COMMON_CONSTANTS_H_ + ++#include ++ + #include "base/files/file_path.h" + #include "base/strings/string_piece_forward.h" + #include "build/chromeos_buildflags.h" +diff --git a/src/3rdparty/chromium/extensions/renderer/bindings/api_invocation_errors.h b/src/3rdparty/chromium/extensions/renderer/bindings/api_invocation_errors.h +index e21700ecfc4..3b704e83b06 100644 +--- a/src/3rdparty/chromium/extensions/renderer/bindings/api_invocation_errors.h ++++ b/src/3rdparty/chromium/extensions/renderer/bindings/api_invocation_errors.h +@@ -5,6 +5,7 @@ + #ifndef EXTENSIONS_RENDERER_BINDINGS_API_INVOCATION_ERRORS_H_ + #define EXTENSIONS_RENDERER_BINDINGS_API_INVOCATION_ERRORS_H_ + ++#include + #include + #include + +diff --git a/src/3rdparty/chromium/gpu/config/gpu_feature_info.h b/src/3rdparty/chromium/gpu/config/gpu_feature_info.h +index 1a7028e4717..b9e951c0a4f 100644 +--- a/src/3rdparty/chromium/gpu/config/gpu_feature_info.h ++++ b/src/3rdparty/chromium/gpu/config/gpu_feature_info.h +@@ -5,6 +5,7 @@ + #ifndef GPU_CONFIG_GPU_FEATURE_INFO_H_ + #define GPU_CONFIG_GPU_FEATURE_INFO_H_ + ++#include + #include + #include + +diff --git a/src/3rdparty/chromium/net/base/parse_number.h b/src/3rdparty/chromium/net/base/parse_number.h +index d6adf388e6f..ea360d1c927 100644 +--- a/src/3rdparty/chromium/net/base/parse_number.h ++++ b/src/3rdparty/chromium/net/base/parse_number.h +@@ -5,6 +5,8 @@ + #ifndef NET_BASE_PARSE_NUMBER_H_ + #define NET_BASE_PARSE_NUMBER_H_ + ++#include ++ + #include "base/strings/string_piece.h" + #include "net/base/net_export.h" + +diff --git a/src/3rdparty/chromium/net/cookies/cookie_inclusion_status.h b/src/3rdparty/chromium/net/cookies/cookie_inclusion_status.h +index 5f289ddcd94..44f2f9eb1ff 100644 +--- a/src/3rdparty/chromium/net/cookies/cookie_inclusion_status.h ++++ b/src/3rdparty/chromium/net/cookies/cookie_inclusion_status.h +@@ -6,6 +6,7 @@ + #define NET_COOKIES_COOKIE_INCLUSION_STATUS_H_ + + #include ++#include + #include + #include + #include +diff --git a/src/3rdparty/chromium/net/third_party/quiche/src/quiche/quic/core/crypto/quic_hkdf.h b/src/3rdparty/chromium/net/third_party/quiche/src/quiche/quic/core/crypto/quic_hkdf.h +index 6a300ed0c0b..3e30f1cb02f 100644 +--- a/src/3rdparty/chromium/net/third_party/quiche/src/quiche/quic/core/crypto/quic_hkdf.h ++++ b/src/3rdparty/chromium/net/third_party/quiche/src/quiche/quic/core/crypto/quic_hkdf.h +@@ -5,6 +5,7 @@ + #ifndef QUICHE_QUIC_CORE_CRYPTO_QUIC_HKDF_H_ + #define QUICHE_QUIC_CORE_CRYPTO_QUIC_HKDF_H_ + ++#include + #include + + #include "absl/strings/string_view.h" +diff --git a/src/3rdparty/chromium/net/third_party/quiche/src/quiche/quic/core/quic_connection_id.h b/src/3rdparty/chromium/net/third_party/quiche/src/quiche/quic/core/quic_connection_id.h +index 52f15017283..db4d3108497 100644 +--- a/src/3rdparty/chromium/net/third_party/quiche/src/quiche/quic/core/quic_connection_id.h ++++ b/src/3rdparty/chromium/net/third_party/quiche/src/quiche/quic/core/quic_connection_id.h +@@ -5,6 +5,7 @@ + #ifndef QUICHE_QUIC_CORE_QUIC_CONNECTION_ID_H_ + #define QUICHE_QUIC_CORE_QUIC_CONNECTION_ID_H_ + ++#include + #include + #include + +diff --git a/src/3rdparty/chromium/pdf/document_attachment_info.h b/src/3rdparty/chromium/pdf/document_attachment_info.h +index e0fffc2ca4e..095463fcb5b 100644 +--- a/src/3rdparty/chromium/pdf/document_attachment_info.h ++++ b/src/3rdparty/chromium/pdf/document_attachment_info.h +@@ -5,6 +5,7 @@ + #ifndef PDF_DOCUMENT_ATTACHMENT_INFO_H_ + #define PDF_DOCUMENT_ATTACHMENT_INFO_H_ + ++#include + #include + + +diff --git a/src/3rdparty/chromium/sandbox/linux/syscall_broker/broker_file_permission.h b/src/3rdparty/chromium/sandbox/linux/syscall_broker/broker_file_permission.h +index b167ffb099a..2347d546167 100644 +--- a/src/3rdparty/chromium/sandbox/linux/syscall_broker/broker_file_permission.h ++++ b/src/3rdparty/chromium/sandbox/linux/syscall_broker/broker_file_permission.h +@@ -6,6 +6,7 @@ + #define SANDBOX_LINUX_SYSCALL_BROKER_BROKER_FILE_PERMISSION_H_ + + #include ++#include + #include + + #include "sandbox/sandbox_export.h" +diff --git a/src/3rdparty/chromium/third_party/angle/include/GLSLANG/ShaderVars.h b/src/3rdparty/chromium/third_party/angle/include/GLSLANG/ShaderVars.h +index 4b76d33af2f..4db1902d1b7 100644 +--- a/src/3rdparty/chromium/third_party/angle/include/GLSLANG/ShaderVars.h ++++ b/src/3rdparty/chromium/third_party/angle/include/GLSLANG/ShaderVars.h +@@ -12,6 +12,7 @@ + + #include + #include ++#include + #include + #include + +diff --git a/src/3rdparty/chromium/third_party/blink/public/common/bluetooth/web_bluetooth_device_id.h b/src/3rdparty/chromium/third_party/blink/public/common/bluetooth/web_bluetooth_device_id.h +index 7a74887af96..058870eef35 100644 +--- a/src/3rdparty/chromium/third_party/blink/public/common/bluetooth/web_bluetooth_device_id.h ++++ b/src/3rdparty/chromium/third_party/blink/public/common/bluetooth/web_bluetooth_device_id.h +@@ -6,6 +6,7 @@ + #define THIRD_PARTY_BLINK_PUBLIC_COMMON_BLUETOOTH_WEB_BLUETOOTH_DEVICE_ID_H_ + + #include ++#include + #include + + #include "third_party/blink/public/common/common_export.h" +diff --git a/src/3rdparty/chromium/third_party/blink/public/common/interest_group/auction_config.h b/src/3rdparty/chromium/third_party/blink/public/common/interest_group/auction_config.h +index 5151ab7483f..51e7e1a58f0 100644 +--- a/src/3rdparty/chromium/third_party/blink/public/common/interest_group/auction_config.h ++++ b/src/3rdparty/chromium/third_party/blink/public/common/interest_group/auction_config.h +@@ -7,6 +7,7 @@ + + #include + ++#include + #include + #include + #include +diff --git a/src/3rdparty/chromium/third_party/blink/public/common/origin_trials/origin_trial_public_key.h b/src/3rdparty/chromium/third_party/blink/public/common/origin_trials/origin_trial_public_key.h +index c1b5f59f57e..246200991a5 100644 +--- a/src/3rdparty/chromium/third_party/blink/public/common/origin_trials/origin_trial_public_key.h ++++ b/src/3rdparty/chromium/third_party/blink/public/common/origin_trials/origin_trial_public_key.h +@@ -6,6 +6,7 @@ + #define THIRD_PARTY_BLINK_PUBLIC_COMMON_ORIGIN_TRIALS_ORIGIN_TRIAL_PUBLIC_KEY_H_ + + #include ++#include + + namespace blink { + +diff --git a/src/3rdparty/chromium/third_party/blink/renderer/platform/graphics/paint/effect_paint_property_node.h b/src/3rdparty/chromium/third_party/blink/renderer/platform/graphics/paint/effect_paint_property_node.h +index e40a7620795..745b7b0891f 100644 +--- a/src/3rdparty/chromium/third_party/blink/renderer/platform/graphics/paint/effect_paint_property_node.h ++++ b/src/3rdparty/chromium/third_party/blink/renderer/platform/graphics/paint/effect_paint_property_node.h +@@ -122,7 +122,7 @@ class PLATFORM_EXPORT EffectPaintPropertyNode + + // An identifier for a document transition shared element. `id.valid()` + // returns true if this has been set, and false otherwise. +- DocumentTransitionSharedElementId document_transition_shared_element_id; ++ blink::DocumentTransitionSharedElementId document_transition_shared_element_id; + + // An identifier to tag shared element resources generated and cached in the + // Viz process. This generated resource can be used as content for other +diff --git a/src/3rdparty/chromium/third_party/pdfium/constants/annotation_flags.h b/src/3rdparty/chromium/third_party/pdfium/constants/annotation_flags.h +index d2731dac7a3..46bc87ef92a 100644 +--- a/src/3rdparty/chromium/third_party/pdfium/constants/annotation_flags.h ++++ b/src/3rdparty/chromium/third_party/pdfium/constants/annotation_flags.h +@@ -5,6 +5,8 @@ + #ifndef CONSTANTS_ANNOTATION_FLAGS_H_ + #define CONSTANTS_ANNOTATION_FLAGS_H_ + ++#include ++ + namespace pdfium { + namespace annotation_flags { + +diff --git a/src/3rdparty/chromium/third_party/perfetto/include/perfetto/ext/base/uuid.h b/src/3rdparty/chromium/third_party/perfetto/include/perfetto/ext/base/uuid.h +index 1b4c53815bc..472042fabc4 100644 +--- a/src/3rdparty/chromium/third_party/perfetto/include/perfetto/ext/base/uuid.h ++++ b/src/3rdparty/chromium/third_party/perfetto/include/perfetto/ext/base/uuid.h +@@ -18,6 +18,7 @@ + #define INCLUDE_PERFETTO_EXT_BASE_UUID_H_ + + #include ++#include + #include + + #include "perfetto/ext/base/optional.h" +diff --git a/src/3rdparty/chromium/third_party/vulkan_memory_allocator/include/vk_mem_alloc.h b/src/3rdparty/chromium/third_party/vulkan_memory_allocator/include/vk_mem_alloc.h +index b7c586b80eb..9e073d4e1b8 100644 +--- a/src/3rdparty/chromium/third_party/vulkan_memory_allocator/include/vk_mem_alloc.h ++++ b/src/3rdparty/chromium/third_party/vulkan_memory_allocator/include/vk_mem_alloc.h +@@ -2393,6 +2393,10 @@ VMA_CALL_PRE void VMA_CALL_POST vmaFreeVirtualBlockStatsString(VmaVirtualBlock V + #include + #include + ++#if VMA_STATS_STRING_ENABLED ++#include ++#endif // VMA_STATS_STRING_ENABLED ++ + #if VMA_RECORDING_ENABLED + #include + #if defined(_WIN32) +diff --git a/src/3rdparty/chromium/third_party/webrtc/rtc_base/third_party/base64/base64.h b/src/3rdparty/chromium/third_party/webrtc/rtc_base/third_party/base64/base64.h +index 4190a79dc09..5a9285f0071 100644 +--- a/src/3rdparty/chromium/third_party/webrtc/rtc_base/third_party/base64/base64.h ++++ b/src/3rdparty/chromium/third_party/webrtc/rtc_base/third_party/base64/base64.h +@@ -12,6 +12,7 @@ + #ifndef RTC_BASE_THIRD_PARTY_BASE64_BASE64_H_ + #define RTC_BASE_THIRD_PARTY_BASE64_BASE64_H_ + ++#include + #include + #include + +diff --git a/src/3rdparty/chromium/ui/base/prediction/kalman_filter.h b/src/3rdparty/chromium/ui/base/prediction/kalman_filter.h +index bee3f946e9c..f7c8716ca33 100644 +--- a/src/3rdparty/chromium/ui/base/prediction/kalman_filter.h ++++ b/src/3rdparty/chromium/ui/base/prediction/kalman_filter.h +@@ -5,6 +5,8 @@ + #ifndef UI_BASE_PREDICTION_KALMAN_FILTER_H_ + #define UI_BASE_PREDICTION_KALMAN_FILTER_H_ + ++#include ++ + #include "base/component_export.h" + #include "ui/gfx/geometry/matrix3_f.h" + +diff --git a/src/3rdparty/chromium/ui/events/types/scroll_types.h b/src/3rdparty/chromium/ui/events/types/scroll_types.h +index be6b2779f41..dbe2e5cf746 100644 +--- a/src/3rdparty/chromium/ui/events/types/scroll_types.h ++++ b/src/3rdparty/chromium/ui/events/types/scroll_types.h +@@ -5,6 +5,8 @@ + #ifndef UI_EVENTS_TYPES_SCROLL_TYPES_H_ + #define UI_EVENTS_TYPES_SCROLL_TYPES_H_ + ++#include ++ + namespace ui { + + enum class ScrollGranularity : uint8_t { +diff --git a/src/3rdparty/chromium/ui/gfx/geometry/linear_gradient.h b/src/3rdparty/chromium/ui/gfx/geometry/linear_gradient.h +index 65cd4cb07c7..ab0ce5808c3 100644 +--- a/src/3rdparty/chromium/ui/gfx/geometry/linear_gradient.h ++++ b/src/3rdparty/chromium/ui/gfx/geometry/linear_gradient.h +@@ -6,6 +6,7 @@ + #define UI_GFX_LINEAR_GRADIENT_H_ + + #include ++#include + #include + + #include "ui/gfx/geometry/geometry_skia_export.h" +-- +cgit v1.2.3 + diff --git a/dev-qt/qtwebengine/qtwebengine-6.5.0.ebuild b/dev-qt/qtwebengine/qtwebengine-6.5.0-r1.ebuild similarity index 98% rename from dev-qt/qtwebengine/qtwebengine-6.5.0.ebuild rename to dev-qt/qtwebengine/qtwebengine-6.5.0-r1.ebuild index a53723d0d980..f8bac25f51b1 100644 --- a/dev-qt/qtwebengine/qtwebengine-6.5.0.ebuild +++ b/dev-qt/qtwebengine/qtwebengine-6.5.0-r1.ebuild @@ -51,6 +51,7 @@ RDEPEND=" media-libs/libpng:= >=media-libs/libvpx-1.5:=[svc(+)] media-libs/libwebp:= + media-libs/openjpeg:2= media-libs/opus sys-apps/dbus sys-apps/pciutils @@ -86,6 +87,8 @@ DEPEND="${RDEPEND} media-libs/libglvnd " +PATCHES=( "${FILESDIR}/${PN}-6.5.0-gcc-13-build.patch" ) + python_check_deps() { python_has_version "dev-python/html5lib[${PYTHON_USEDEP}]" } @@ -228,6 +231,7 @@ src_configure() { -DQT_FEATURE_webengine_system_ffmpeg=off # https://bugs.gentoo.org/831487 -DQT_FEATURE_webengine_system_icu=$(usex system-icu) -DQT_FEATURE_webengine_system_libevent=on + -DQT_FEATURE_webengine-system-libopenjpeg2=on -DQT_FEATURE_webengine_system_libpci=on -DQT_FEATURE_webengine_system_libpng=on -DQT_FEATURE_webengine_system_pulseaudio=$(usex pulseaudio on off) diff --git a/dev-ruby/Manifest.gz b/dev-ruby/Manifest.gz index 2295e339556c..4713a73e7020 100644 Binary files a/dev-ruby/Manifest.gz and b/dev-ruby/Manifest.gz differ diff --git a/dev-ruby/asciimath/Manifest b/dev-ruby/asciimath/Manifest index ed1ed44d3fcd..f8770812eec3 100644 --- a/dev-ruby/asciimath/Manifest +++ b/dev-ruby/asciimath/Manifest @@ -1,2 +1,3 @@ DIST asciimath-1.0.9.gem 18944 BLAKE2B 3ccc3f594d7a0d8b6996349d85356179ef3a9052a84f923ad1d0976e42f58670a350473b41d1c4a0c4f70a3cc4687e6adaa7987bd811ef32bd3da41f100f4246 SHA512 32c4f2cb7e9d330c371e9b9abcdf9e31bf44014c5c0b0044589302116b55840a2e1a41ab006d61a2258e4a5c2d4a772dad77f579150fc9bf099a7a4d19c6cd44 DIST asciimath-2.0.4.gem 60416 BLAKE2B 9a5d6bf967962d37e620d0b49204ba8dafadf65e95a613924c7c169fee98f00203861fbbb1c06db1ee833e401f9a2141566dc693237e1cb7e797e639c63dccfa SHA512 28ab7fd7f43320112c0e7166fb2a6ef269eb91314940deb88606443bec055792cf3c49bc2d9b75c1e5ee5690c3071e66f15f817c4539fc6246da7a8d792f1803 +DIST asciimath-2.0.5.gem 60928 BLAKE2B ba81e68f4ae529dab80a40e5d268137af743d8c01f22c84c39c91102bea0b2293871158d157f19bd4213a59b5808a26a5d99697d79750b8a3fc39436426979f2 SHA512 05328306e0b750baf49eb090b02d3e840e58a764ed96dc511fc9fd1b7c3fd0b49e0be0d3300acadd809c0b2860fa2ad873e979711d6725e1420782395c5a2185 diff --git a/dev-ruby/asciimath/asciimath-2.0.5.ebuild b/dev-ruby/asciimath/asciimath-2.0.5.ebuild new file mode 100644 index 000000000000..e638fb7ccf5b --- /dev/null +++ b/dev-ruby/asciimath/asciimath-2.0.5.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby30 ruby31 ruby32" + +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.adoc README.adoc" + +inherit ruby-fakegem + +DESCRIPTION="A pure Ruby AsciiMath parsing and conversion library" +HOMEPAGE="https://github.com/asciidoctor/asciimath" + +LICENSE="MIT" +SLOT="1" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="" + +ruby_add_bdepend "test? ( dev-ruby/nokogiri )" diff --git a/dev-ruby/asciimath/metadata.xml b/dev-ruby/asciimath/metadata.xml index a4001e7edbe1..2d4ed20e31b5 100644 --- a/dev-ruby/asciimath/metadata.xml +++ b/dev-ruby/asciimath/metadata.xml @@ -6,6 +6,6 @@ Gentoo Ruby Project - pepijnve/asciimath + asciidoctor/asciimath diff --git a/dev-ruby/bcrypt_pbkdf/bcrypt_pbkdf-1.1.0-r2.ebuild b/dev-ruby/bcrypt_pbkdf/bcrypt_pbkdf-1.1.0-r2.ebuild index ebd16a4d5548..da962783124c 100644 --- a/dev-ruby/bcrypt_pbkdf/bcrypt_pbkdf-1.1.0-r2.ebuild +++ b/dev-ruby/bcrypt_pbkdf/bcrypt_pbkdf-1.1.0-r2.ebuild @@ -16,7 +16,7 @@ HOMEPAGE="https://github.com/net-ssh/bcrypt_pbkdf-ruby" LICENSE="MIT" SLOT="1" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 x86" IUSE="" ruby_add_bdepend "test? ( virtual/ruby-ssl )" diff --git a/dev-ruby/blankslate/blankslate-3.1.3-r2.ebuild b/dev-ruby/blankslate/blankslate-3.1.3-r2.ebuild index baf2ec440ebc..6bb755a572de 100644 --- a/dev-ruby/blankslate/blankslate-3.1.3-r2.ebuild +++ b/dev-ruby/blankslate/blankslate-3.1.3-r2.ebuild @@ -17,7 +17,7 @@ HOMEPAGE="https://rubygems.org/gems/blankslate" IUSE="" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~s390 sparc x86" all_ruby_prepare() { # Avoid test failing with rspec 2.x. diff --git a/dev-ruby/introspection/introspection-0.0.4-r2.ebuild b/dev-ruby/introspection/introspection-0.0.4-r2.ebuild index 9539a60f5f90..d7a08eba7456 100644 --- a/dev-ruby/introspection/introspection-0.0.4-r2.ebuild +++ b/dev-ruby/introspection/introspection-0.0.4-r2.ebuild @@ -16,7 +16,7 @@ HOMEPAGE="https://jamesmead.org/" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~s390 sparc x86" IUSE="" ruby_add_rdepend ">=dev-ruby/metaclass-0.0.1" diff --git a/dev-ruby/mechanize/Manifest b/dev-ruby/mechanize/Manifest index 2072a1c0d0db..27fa2010a801 100644 --- a/dev-ruby/mechanize/Manifest +++ b/dev-ruby/mechanize/Manifest @@ -1,2 +1,3 @@ DIST mechanize-2.8.5.gem 142848 BLAKE2B 73fbf0ef6e3091bd37ace311415056bbc94ef22cfe5411b440faa791747faac349765db20c18a0133037e9564c061c13b250aa2a5677152d7fa0732d8a4a10cd SHA512 8ef26d80c7c55f564084eedf6c7255849ccf6efbb2e6ce11ddb3b5f8f3591861200041b89416ab3d8b9a8595c6c8de1f9c7e01b8e0c6b63265488498e2584c94 DIST mechanize-2.9.0.gem 142848 BLAKE2B caea8897860db3fd0f5d8abb5102f5cc6ba3379e5e8dbc046dc8f709d1adec10e9101db1a88295c53f5da51d4bbf78fc51454eb105ae7417a5707d0f30d80e5b SHA512 0402fbed9e740b3faf0f76ce3ccb88602d0243ad54f7e025586c0c75ae08670c6be53c49d425b3c7378af2fff478d17b61d238fb7d2858b26629d68089a09657 +DIST mechanize-2.9.1.gem 143872 BLAKE2B 0e5d9f8e2f6eadf8de1f252518646b58117e1151be595edb5827a69b1bc83ce063690fe41ea3ec38a66565d44cb46141e4a0b34c878308c69dbc1249304d6f0a SHA512 6525cf8ea31c36fb20f5d83bebdb647942f24ddee979a832343ea964de11e31421e4f68943c1b15c9bb519b9b11cda9ab2a1c10ceca412e1854b5b20dda7ac78 diff --git a/dev-ruby/mechanize/mechanize-2.9.1.ebuild b/dev-ruby/mechanize/mechanize-2.9.1.ebuild new file mode 100644 index 000000000000..1054080c2d22 --- /dev/null +++ b/dev-ruby/mechanize/mechanize-2.9.1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +USE_RUBY="ruby30 ruby31" + +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md EXAMPLES.rdoc GUIDE.rdoc README.md" + +inherit ruby-fakegem + +DESCRIPTION="A Ruby library used for automating interaction with websites" +HOMEPAGE="https://github.com/sparklemotion/mechanize" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc64 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris" +IUSE="" + +ruby_add_bdepend ">=dev-ruby/hoe-3.7 + test? ( dev-ruby/minitest:5 )" + +ruby_add_rdepend " + >=dev-ruby/addressable-2.8:0 + >=dev-ruby/domain_name-0.5.20190701:0 + >=dev-ruby/http-cookie-1.0.3:0 + dev-ruby/mime-types:3 + >=dev-ruby/net-http-digest_auth-1.4.1:0 + dev-ruby/net-http-persistent:4 + >=dev-ruby/nokogiri-1.11.2:0 + >=dev-ruby/rubyntlm-0.6.3:0 + >=dev-ruby/webrick-1.7:0 + >=dev-ruby/webrobots-0.1.2 =dev-ruby/webrobots-0.1* +" + +each_ruby_test() { + ${RUBY} -Ilib:.:test -e '$VERBOSE=true; Dir["test/**/test_*.rb"].each{|f| require f}' || die +} + +all_ruby_install() { + all_fakegem_install + + docinto examples + dodoc examples/* +} diff --git a/dev-ruby/net-ssh-gateway/net-ssh-gateway-2.0.0-r2.ebuild b/dev-ruby/net-ssh-gateway/net-ssh-gateway-2.0.0-r2.ebuild index 5272baac62c2..b0293bf57d1a 100644 --- a/dev-ruby/net-ssh-gateway/net-ssh-gateway-2.0.0-r2.ebuild +++ b/dev-ruby/net-ssh-gateway/net-ssh-gateway-2.0.0-r2.ebuild @@ -15,7 +15,7 @@ SRC_URI="https://github.com/net-ssh/net-ssh-gateway/archive/${PV}.tar.gz -> ${P} LICENSE="GPL-2" SLOT="2.0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +KEYWORDS="amd64 ppc ppc64 x86" IUSE="" ruby_add_depend "dev-ruby/minitest:5 diff --git a/dev-ruby/octokit/Manifest b/dev-ruby/octokit/Manifest index f1cf1dc7f55c..40e118a28dbb 100644 --- a/dev-ruby/octokit/Manifest +++ b/dev-ruby/octokit/Manifest @@ -1,3 +1,4 @@ DIST octokit-4.25.1.tar.gz 3154185 BLAKE2B b1698de8694cd2e147542eb6e7e9784428daa035a6e123c05c135558a669c0d222ef4629cc89de815a51b7b3660a8dd2cb80e8d11b90ac43f661e3e2e078b0c0 SHA512 780393e6765e82f0fbfada3b8800ccb981df4383ebfda0b218c24bac224b39f836c3d9cb94cf2564676000862dec7ab94cd2dbdaff51c37142d1f45140121bf1 DIST octokit-5.6.1.tar.gz 3171006 BLAKE2B 33fd132f81c7b1e1b3c1a4264b7bc6a7e7dbc2f9ccd4f1d2d734ae10914c5544eb90c629200e6d81b9a33fccc23791147af6660840248235ebe6b946f2ebba13 SHA512 3ed2e3eb61190da521f9246ac0fdb530e15c45cb41e5849f04ba1a92f0da8060a82eb2d90dfcb407436efba5f7f0ea98c69a342c67aa26b62eeab74a1f906c4e DIST octokit-6.1.0.tar.gz 3187811 BLAKE2B 70a849fe855ddf46aeaf6d512d675119188bb39e6a439c311531f20f9c52ce8da829e0e1242b29e821d5d6468b360e69b71ec645fdf7b1b217e4607032aa0d0c SHA512 7f362f7c4e021ae38083bfd498d98ddda7c2a36c439c8a924cb0390ede42911e8f0477481f1bde6b208009e27d42501d143d0549eb9731d8fb529c977a91da9d +DIST octokit-6.1.1.tar.gz 3193336 BLAKE2B 890afac205992c25dd8b48f63ea7a4cf250687318ecb9c0980fc50ff1583943074cea1d9260f139b1a5f86295483f44120421dba8294eba641104301f0188123 SHA512 d91b326d892f80f08598ebb0a03edfd1fb85d36e40dac49593291a6b2ff6a957f5cd2283655c20ff0299f40c75ad7472ff55a14b182bec5f92693b560c2d3c87 diff --git a/dev-ruby/octokit/octokit-6.1.1.ebuild b/dev-ruby/octokit/octokit-6.1.1.ebuild new file mode 100644 index 000000000000..7d06ff6f153c --- /dev/null +++ b/dev-ruby/octokit/octokit-6.1.1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby30 ruby31" + +RUBY_FAKEGEM_RECIPE_DOC="yard" +RUBY_FAKEGEM_RECIPE_TEST="rspec3" +RUBY_FAKEGEM_EXTRADOC="README.md CONTRIBUTING.md" +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Ruby toolkit for the Github API" +HOMEPAGE="https://github.com/octokit/octokit.rb" +SRC_URI="https://github.com/octokit/octokit.rb/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="" + +RUBY_S=octokit.rb-${PV} + +ruby_add_rdepend " + dev-ruby/faraday:1 + >=dev-ruby/sawyer-0.9:0 +" + +ruby_add_bdepend "test? ( + dev-ruby/jwt + dev-ruby/mime-types + >=dev-ruby/netrc-0.7.7 + >=dev-ruby/rbnacl-7.1.1:6 + dev-ruby/vcr[json] + dev-ruby/webmock:3 )" + +all_ruby_prepare() { + sed -e '/if RUBY_ENGINE/,/^end/ s:^:#: ; 1igem "webmock", "~>3.0"; gem "faraday", "<2"' \ + -e '/pry/ s:^:#:' \ + -i spec/spec_helper.rb || die +} diff --git a/dev-ruby/pg/pg-1.4.6.ebuild b/dev-ruby/pg/pg-1.4.6.ebuild index e47f01c5b83e..b5903de0cdee 100644 --- a/dev-ruby/pg/pg-1.4.6.ebuild +++ b/dev-ruby/pg/pg-1.4.6.ebuild @@ -20,7 +20,7 @@ RUBY_S="ruby-${P}" LICENSE="|| ( BSD-2 Ruby-BSD )" SLOT="1" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" RDEPEND+=" dev-db/postgresql:*" diff --git a/dev-ruby/rbs/rbs-2.8.4.ebuild b/dev-ruby/rbs/rbs-2.8.4.ebuild index 877e43c9ebab..145408767cf9 100644 --- a/dev-ruby/rbs/rbs-2.8.4.ebuild +++ b/dev-ruby/rbs/rbs-2.8.4.ebuild @@ -20,7 +20,7 @@ HOMEPAGE="https://github.com/ruby/rbs" SRC_URI="https://github.com/ruby/rbs/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="|| ( Ruby-BSD BSD-2 )" -KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~loong ~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 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" SLOT="0" IUSE="test" diff --git a/dev-ruby/stringio/stringio-3.0.5.ebuild b/dev-ruby/stringio/stringio-3.0.5.ebuild index f7df3249e79a..701e2800531d 100644 --- a/dev-ruby/stringio/stringio-3.0.5.ebuild +++ b/dev-ruby/stringio/stringio-3.0.5.ebuild @@ -15,7 +15,7 @@ HOMEPAGE="https://github.com/ruby/stringio" SRC_URI="https://github.com/ruby/stringio/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD-2" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~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 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" SLOT="0" IUSE="test" diff --git a/dev-ruby/typeprof/typeprof-0.21.7.ebuild b/dev-ruby/typeprof/typeprof-0.21.7.ebuild index df8b8df4d4e1..ed817e622e30 100644 --- a/dev-ruby/typeprof/typeprof-0.21.7.ebuild +++ b/dev-ruby/typeprof/typeprof-0.21.7.ebuild @@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/ruby/typeprof" SRC_URI="https://github.com/ruby/typeprof/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~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 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" SLOT="0" IUSE="test" diff --git a/dev-util/Manifest.gz b/dev-util/Manifest.gz index 4ea3a95d5620..46f7865bb0b7 100644 Binary files a/dev-util/Manifest.gz and b/dev-util/Manifest.gz differ diff --git a/dev-util/cutter/cutter-2.2.0.ebuild b/dev-util/cutter/cutter-2.2.0-r1.ebuild similarity index 94% rename from dev-util/cutter/cutter-2.2.0.ebuild rename to dev-util/cutter/cutter-2.2.0-r1.ebuild index a50f8070c0da..2ced0df3a4d9 100644 --- a/dev-util/cutter/cutter-2.2.0.ebuild +++ b/dev-util/cutter/cutter-2.2.0-r1.ebuild @@ -28,7 +28,8 @@ DEPEND="${PYTHON_DEPS} dev-qt/qtwidgets:5 >=dev-util/rizin-0.5.0:= graphviz? ( media-gfx/graphviz )" -RDEPEND="${DEPEND}" +RDEPEND="${DEPEND} + !net-analyzer/cutter" # https://bugs.gentoo.org/897738 BDEPEND="dev-qt/linguist-tools:5" src_configure() { diff --git a/dev-util/glslang/glslang-1.3.243.ebuild b/dev-util/glslang/glslang-1.3.243.ebuild index c00807a5549c..9a03e6499202 100644 --- a/dev-util/glslang/glslang-1.3.243.ebuild +++ b/dev-util/glslang/glslang-1.3.243.ebuild @@ -12,7 +12,7 @@ if [[ ${PV} == *9999* ]]; then else SNAPSHOT_COMMIT="sdk-${PV}.0" SRC_URI="https://github.com/KhronosGroup/${PN}/archive/${SNAPSHOT_COMMIT}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86" + KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv x86" S="${WORKDIR}/${PN}-${SNAPSHOT_COMMIT}" fi diff --git a/dev-util/lxqt-build-tools/Manifest b/dev-util/lxqt-build-tools/Manifest index 0e8d7a36b614..4c9cab7e1ce5 100644 --- a/dev-util/lxqt-build-tools/Manifest +++ b/dev-util/lxqt-build-tools/Manifest @@ -1 +1,2 @@ DIST lxqt-build-tools-0.12.0.tar.xz 25444 BLAKE2B a3e2d942467d1c2affb957052731f4e4edfa03ed7d84e4ff354b4d501a7f79999ff678538f1c90cff55b6f2f80c172820ed93f036f05cd80c6f982c4bf8bbe54 SHA512 6c8f0d8f04a2ba06c1cff935580a88312f18f87b5da99e53f46c053b842f179bf474b3637ddcb0e9a0007f1d03b9e7cfd92a6552e53082ce34348fcfb6436add +DIST lxqt-build-tools-0.13.0.tar.xz 25480 BLAKE2B aebbcb55851b0acc00bf4d34e3846e12a3d503e4f7238ba57d7d6b3df44ccd8e6dbe5fc1986ed722dfd4384ad17f22be14fa0c6270b3ed385ae7cd4ff5711e3e SHA512 ffb300159d6bbbdbe9d43d261a5028342f24057c943cf8dab5093d53b72bf5700de8f545914d454993e949d64aba77e3d01cbe68e8a4b4f6ca9f9f9693de3e0b diff --git a/dev-util/lxqt-build-tools/lxqt-build-tools-0.13.0.ebuild b/dev-util/lxqt-build-tools/lxqt-build-tools-0.13.0.ebuild new file mode 100644 index 000000000000..8c41191e3c2a --- /dev/null +++ b/dev-util/lxqt-build-tools/lxqt-build-tools-0.13.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="LXQt Build Tools" +HOMEPAGE="https://lxqt-project.org/" + +if [[ ${PV} = *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git" +else + SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc64 ~riscv ~x86" +fi + +LICENSE="BSD" +SLOT="0" + +DEPEND=" + >=dev-libs/glib-2.50.0 + >=dev-qt/qtcore-5.15:5 +" +RDEPEND="${DEPEND}" diff --git a/dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-12.1.0.ebuild b/dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-12.1.0-r1.ebuild similarity index 99% rename from dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-12.1.0.ebuild rename to dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-12.1.0-r1.ebuild index ea6ef12fb14a..138f95c19eb0 100644 --- a/dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-12.1.0.ebuild +++ b/dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-12.1.0-r1.ebuild @@ -239,7 +239,7 @@ src_install() { # remove rdma libs (unless USE=rdma) if ! use rdma; then - rm "${ED}"/${cudadir}/targets/x86_64-linux/lib/libcufile_rdma.so.* || die + rm "${ED}"/${cudadir}/targets/x86_64-linux/lib/libcufile_rdma* || die fi # set executable bit on demo_suite binaries diff --git a/dev-util/poke/Manifest b/dev-util/poke/Manifest index 9066d7c932cc..5e153dbaec48 100644 --- a/dev-util/poke/Manifest +++ b/dev-util/poke/Manifest @@ -1,3 +1,4 @@ DIST poke-2.4.tar.gz 7372092 BLAKE2B 64b8b22713bb581c30b624200c0a283a8de548895db2c21d83babbb18a93f3a8975dd7af752bd7ea856242f90035add249fbb62462ac632bec351598bcca0fe5 SHA512 6fa1097a5cbbd4171b6a390934c5648b4c382b8b8c8dd4955bba82cb57107f67e23b39f2df2081904a02f457e6c5b2d10baed710da3ed4b9b9eab3f4127e12bc DIST poke-2.90.1.tar.gz 7512925 BLAKE2B 38c9283f1c0b183b1b74c2ebd347edf6e9a9191d19070f7da32e6b0f520ec8197be3a813bc98160b47363cd11069bdaf84bb528498fe51cf2dcadf0bfa06a25e SHA512 f5823bed61ab64c2cdde83c918716fe64ad5552499023b2f5202130d6b2bab405c9d1cb1e12c7f190749689d86bf36f4edfe140ce748ac4c5f03d219197558d3 DIST poke-3.0.tar.gz 7510801 BLAKE2B 4e80bd0603b0f690f7b6dc9b3913bb165f61160cd6e677751e6f8ea444bc395141204cc32c3ed97bad4b4044d505a800a64a4c973200e7338b50f05d9ea90c25 SHA512 5b786cdfae732a1f7196b0c4bf271c97f204f8fe9de9b34d92704f35150c8abfc2c080940d67efac63e3e82d0d4afe2fde4b75066faf9f4d1e9df6b6f62edb96 +DIST poke-3.1.tar.gz 7562582 BLAKE2B c348973185e7f33d670a9dccab60c02e8ccc247c5aa46936ac4b04674687c9e7edae707639a16c3853232b422d0c969930fe3879b59c1dba351fe7c3da56d34f SHA512 5680ce13b0a8e9a1f2770d295bccf7ccbe3aff54f3f4301a12c4719f54a6717ce5addb6ae3fe0478d0e426ccc756ef06a5e852b0d6ada0f8d3c587640ad209dd diff --git a/dev-util/poke/poke-3.1.ebuild b/dev-util/poke/poke-3.1.ebuild new file mode 100644 index 000000000000..80e149428e9b --- /dev/null +++ b/dev-util/poke/poke-3.1.ebuild @@ -0,0 +1,126 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit elisp-common flag-o-matic toolchain-funcs + +DESCRIPTION="Extensible editor for structured binary data" +HOMEPAGE="https://www.jemarch.net/poke" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://git.savannah.gnu.org/git/poke.git" + REGEN_BDEPEND=" + >=sys-devel/autoconf-2.62 + >=sys-devel/automake-1.16 + sys-apps/gawk + sys-apps/help2man + sys-apps/texinfo + sys-devel/bison + sys-devel/flex + " +elif [[ $(ver_cut 2) -ge 90 || $(ver_cut 3) -ge 90 ]]; then + SRC_URI="https://alpha.gnu.org/gnu/poke/${P}.tar.gz" + REGEN_BDEPEND="" +else + SRC_URI="mirror://gnu/poke/${P}.tar.gz" + KEYWORDS="~amd64 ~x86" + REGEN_BDEPEND="" +fi + +LICENSE="GPL-3+" +SLOT="0" +IUSE="emacs pvm-profiling nbd nls test" + +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-libs/boehm-gc:= + dev-libs/libatomic_ops + sys-devel/gettext + sys-libs/readline:= + emacs? ( >=app-editors/emacs-23.1:* ) + nbd? ( sys-libs/libnbd ) +" +DEPEND=" + ${RDEPEND} + test? ( nbd? ( sys-libs/libnbd[uri-support] ) ) +" +BDEPEND=" + ${REGEN_BDEPEND} + virtual/pkgconfig + pvm-profiling? ( sys-devel/gcc ) + emacs? ( >=app-editors/emacs-23.1:* ) + test? ( + dev-util/dejagnu + nbd? ( sys-block/nbdkit ) + ) +" + +SITEFILE="50${PN}-gentoo.el" + +pkg_pretend() { + if use pvm-profiling && ! tc-is-gcc; then + die "USE=pvm-profiling requires GCC" + fi +} + +pkg_setup() { + use emacs && elisp-check-emacs-version +} + +src_prepare() { + default + + if [[ ${PV} == 9999 ]]; then + ./bootstrap || die + fi +} + +src_configure() { + # See bug 858461. + # Upstream support might happen one day. For context, only one file needs + # LTO to be disabled (since it's an autogenerated bytecode interpreter), + # others do not. The build system will handle this at some point in the + # future. Until then, just filter out LTO. + filter-lto + + local myconf=( + --with-lispdir="${EPREFIX}/${SITELISP}/${PN}" + --enable-hserver + $(use_enable nbd libnbd) + $(use_enable pvm-profiling) + $(use_enable nls) + ) + + econf "${myconf[@]}" +} + +src_compile() { + default + + if use emacs; then + cd etc || die + elisp-compile *.el + fi +} + +src_install() { + default + + if use emacs; then + elisp-site-file-install "${FILESDIR}/${SITEFILE}" + cd etc || die + elisp-install "${PN}" *.el *.elc + fi + find "${ED}" -name '*.la' -delete || die +} + +pkg_postinst() { + use emacs && elisp-site-regen +} + +pkg_postrm() { + use emacs && elisp-site-regen +} diff --git a/dev-util/rizin/Manifest b/dev-util/rizin/Manifest index 518a6ae49d4c..08b725c3d8c3 100644 --- a/dev-util/rizin/Manifest +++ b/dev-util/rizin/Manifest @@ -1,4 +1,6 @@ DIST rizin-src-v0.4.1.tar.xz 11453808 BLAKE2B dcae21320e2533904d9a337d4fb9cc9a450439753106dc5c341e3ca7c788f0a44034340eb0dfe3fad4f1d8a7ebe873720d42d70ce343e8c7b953d4d148a38da2 SHA512 565358e11fd4db44ec7f8c25313a1cfc726c38a17afcb699c3fc2af520242fb343ea4a267f0a8e35bdc08e9a765a6a17ec7b8eaba9f9ad9ef5a7dcfe01c7354c DIST rizin-src-v0.5.1.tar.xz 11770688 BLAKE2B 31369497d5aa425aa6030ce404baa5d4a10ef2453a93f9b2c9f7d47135b5ffbc61618ef7e743acef3939bca2838a94637b7a1794ff44998608aee3f988301483 SHA512 c856112651bec91bb6e9f5580f60e3168f02a9f194bf567186a66398c162f59953ca8c3bf43441315356ca6ef077b7c56e4150e2dd8a79d4d08c5f789c549596 +DIST rizin-src-v0.5.2.tar.xz 11779644 BLAKE2B d74c02c1f58d099a0047a7a528b7e182980901bc1bf2722aef259e03ddf9af908c3ebcde4f1268fcbd07125a21f064259601a54c6b8413e19f6b85c95113cf3d SHA512 2fbd3873c7725d4fa1dee53d685c4a5d372013f300cd19dd92752b82987f049a4eba77b4d4ae33b576678714752147355ac486951949a35275cc3fdc5447a351 DIST rizin-testbins-0264ae4ee5bd606ec6c6a539255eeb57ce2c82c2.tar.gz 179281553 BLAKE2B b86278589da2f8e5859b0f4b16e2667a6e7477c9a889158da5a2c1a1b6e29af4798d56a22dd4c3e23aec1908e7b444ca999502e73f8d8ccf4e0bf2a969380564 SHA512 ae11b6da5cb995f8f1cc996a7b772234b3e7e7c2b0695d0b223657ba839c82dbbcb390600aeb0d16c7c61a5037ba9d0739df79efd730c1b96392cfc1e6f6613d DIST rizin-testbins-aef7f7b714a696f382f55b8cbbf94c5b69518de3.tar.gz 178497762 BLAKE2B 8c82a537a58e65d35bd8b309311c4377b5996ff4b650fc6cff4cf347e04fbe4b2ec0e88f03ff43572c8e99675186b05b393b7da070a60ab107c3cca829d2544b SHA512 2745b58646963c28a45b46e8e709845c355863e61cf796aeb3d2e617f1bf2f9916a4b106cd08f48b1ef6e36f7f38624b5977dcd62c921124b0a1122b7220baa8 +DIST rizin-testbins-d66f95359fe830514267f446975374752201c3f1.tar.gz 179428523 BLAKE2B 9d18c2f49460e26809bc526eab9d7bfed15d3fb3f94b22d327f9981547130f82107259f2942e098834cd8ad755e8eadb4b8459a10070105ec116b16fbac19fe3 SHA512 cdeefc6e4103e99c4581a45475c2326505f8003c80a158a78be32b27dfa65fe42a80bbf25ffc47c1f8abdd50faba0fb073a7236395ab67eafb0202695877c4ba diff --git a/dev-util/rizin/rizin-0.5.2.ebuild b/dev-util/rizin/rizin-0.5.2.ebuild new file mode 100644 index 000000000000..db47e015c5df --- /dev/null +++ b/dev-util/rizin/rizin-0.5.2.ebuild @@ -0,0 +1,95 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..11} ) + +# This is the commit that the CI for the release commit used +BINS_COMMIT="d66f95359fe830514267f446975374752201c3f1" + +inherit meson python-any-r1 + +DESCRIPTION="reverse engineering framework for binary analysis" +HOMEPAGE="https://rizin.re/" + +SRC_URI="mirror+https://github.com/rizinorg/rizin/releases/download/v${PV}/rizin-src-v${PV}.tar.xz + test? ( https://github.com/rizinorg/rizin-testbins/archive/${BINS_COMMIT}.tar.gz -> rizin-testbins-${BINS_COMMIT}.tar.gz )" +KEYWORDS="~amd64 ~arm64 ~x86" + +LICENSE="Apache-2.0 BSD LGPL-3 MIT" +SLOT="0/${PV}" +IUSE="test" + +# Need to audit licenses of the binaries used for testing +RESTRICT="test? ( fetch ) !test? ( test )" + +RDEPEND=" + app-arch/lz4:0= + app-arch/xz-utils + dev-libs/capstone:0= + dev-libs/libmspack + dev-libs/libzip:0= + dev-libs/openssl:0= + >=dev-libs/tree-sitter-0.19.0 + dev-libs/xxhash + sys-apps/file + sys-libs/zlib:0= +" +DEPEND="${RDEPEND}" +BDEPEND="${PYTHON_DEPS}" + +PATCHES=( + "${FILESDIR}/${PN}-0.4.0-never-rebuild-parser.patch" +) + +S="${WORKDIR}/${PN}-v${PV}" + +src_prepare() { + default + + local py_to_mangle=( + librz/core/cmd_descs/cmd_descs_generate.py + sys/clang-format.py + test/fuzz/scripts/fuzz_rz_asm.py + test/scripts/gdbserver.py + ) + + python_fix_shebang "${py_to_mangle[@]}" + + # https://github.com/rizinorg/rizin/issues/3459 + sed -ie '/dyld_chained_ptr_arm64e_auth/d' test/unit/test_bin_mach0.c || die + + if use test; then + cp -r "${WORKDIR}/rizin-testbins-${BINS_COMMIT}" "${S}/test/bins" || die + cp -r "${WORKDIR}/rizin-testbins-${BINS_COMMIT}" "${S}" || die + fi +} + +src_configure() { + local emesonargs=( + -Dcli=enabled + -Duse_sys_capstone=enabled + -Duse_sys_libmspack=enabled + -Duse_sys_libzip=enabled + -Duse_sys_lz4=enabled + -Duse_sys_lzma=enabled + -Duse_sys_magic=enabled + -Duse_sys_openssl=enabled + -Duse_sys_tree_sitter=enabled + -Duse_sys_xxhash=enabled + -Duse_sys_zlib=enabled + + $(meson_use test enable_tests) + $(meson_use test enable_rz_test) + ) + meson_src_configure +} + +src_test() { + # We can select running either unit or integration tests, or all of + # them by not passing --suite. According to upstream, integration + # tests are more fragile and unit tests are sufficient for testing + # packaging, so only run those. + meson_src_test --suite unit +} diff --git a/dev-util/spirv-headers/spirv-headers-1.3.243.ebuild b/dev-util/spirv-headers/spirv-headers-1.3.243.ebuild index d01ba8ef9a93..b074631e4c45 100644 --- a/dev-util/spirv-headers/spirv-headers-1.3.243.ebuild +++ b/dev-util/spirv-headers/spirv-headers-1.3.243.ebuild @@ -13,4 +13,4 @@ S="${WORKDIR}/SPIRV-Headers-${EGIT_COMMIT}" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86" +KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv x86" diff --git a/dev-util/spirv-tools/spirv-tools-1.3.243.ebuild b/dev-util/spirv-tools/spirv-tools-1.3.243.ebuild index 9b7c8253a4ff..a8099b02d704 100644 --- a/dev-util/spirv-tools/spirv-tools-1.3.243.ebuild +++ b/dev-util/spirv-tools/spirv-tools-1.3.243.ebuild @@ -14,7 +14,7 @@ if [[ ${PV} == *9999* ]]; then else EGIT_COMMIT="sdk-${PV}.0" SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86" + KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv x86" S="${WORKDIR}"/${MY_PN}-${EGIT_COMMIT} fi diff --git a/dev-util/umockdev/Manifest b/dev-util/umockdev/Manifest index 71c59bbd86ed..c5b45e9c6491 100644 --- a/dev-util/umockdev/Manifest +++ b/dev-util/umockdev/Manifest @@ -1 +1,2 @@ DIST umockdev-0.17.16.tar.xz 491208 BLAKE2B d653e489285437e1111d8841b3628dc3734e799274e9d334b9200c425d8654a18050e9bab7e290dc12ab12f286a4f492219423d1905965a870d843a1809e9ceb SHA512 5d4a094481510f4466e49766512d0959a5a9d9f5a9b7cbd7719bc94e95d9800760482bf3ea2ee97d2138c89680adb4116964688ae13a07e3c1f0ba8e94230584 +DIST umockdev-0.17.17.tar.xz 491504 BLAKE2B 0572b3538641009abdc854513b563eab517268e884896c9e0fec804c50c8397eb7acf011fba5fc5378fdd87db99f6b1eadc29825a0613c021efb29e875a265d1 SHA512 39537bcc56cf554773e8669508832bde6f3d4eb83d605c0e58bed3b2d206a6dc0bd0678bd39954825ee0cbed9f1ea9448f836d97ed3ea7e2aa7ce2875456e459 diff --git a/dev-util/umockdev/umockdev-0.17.17.ebuild b/dev-util/umockdev/umockdev-0.17.17.ebuild new file mode 100644 index 000000000000..a0aa5c033605 --- /dev/null +++ b/dev-util/umockdev/umockdev-0.17.17.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_{9..11} ) + +inherit meson-multilib python-any-r1 vala + +if [[ ${PV} = 9999* ]]; then + EGIT_REPO_URI="https://github.com/martinpitt/${PN}.git" + inherit git-r3 +else + SRC_URI="https://github.com/martinpitt/umockdev/releases/download/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +fi + +DESCRIPTION="Mock hardware devices for creating unit tests" +HOMEPAGE="https://github.com/martinpitt/umockdev/" + +LICENSE="LGPL-2.1+" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + net-libs/libpcap[${MULTILIB_USEDEP}] + virtual/libudev:=[${MULTILIB_USEDEP}] + >=dev-libs/glib-2.32:2[${MULTILIB_USEDEP}] + >=dev-libs/gobject-introspection-1.32:= +" +DEPEND="${RDEPEND} + test? ( + ${PYTHON_DEPS} + dev-libs/libgudev:=[${MULTILIB_USEDEP}] + ) +" +BDEPEND=" + $(vala_depend) + app-arch/xz-utils + virtual/pkgconfig +" + +pkg_setup() { + use test && python-any-r1_pkg_setup +} + +src_prepare() { + default + vala_setup +} + +multilib_src_configure() { + export VALAC="$(type -P valac-$(vala_best_api_version))" + meson_src_configure +} + +multilib_src_test() { + meson_src_test --no-suite fails-valgrind +} diff --git a/dev-util/umockdev/umockdev-9999.ebuild b/dev-util/umockdev/umockdev-9999.ebuild index b562b894a04d..a0aa5c033605 100644 --- a/dev-util/umockdev/umockdev-9999.ebuild +++ b/dev-util/umockdev/umockdev-9999.ebuild @@ -11,7 +11,7 @@ if [[ ${PV} = 9999* ]]; then inherit git-r3 else SRC_URI="https://github.com/martinpitt/umockdev/releases/download/${PV}/${P}.tar.xz" - KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" fi DESCRIPTION="Mock hardware devices for creating unit tests" diff --git a/dev-util/vulkan-headers/vulkan-headers-1.3.243.ebuild b/dev-util/vulkan-headers/vulkan-headers-1.3.243.ebuild index fdef9654420b..872d26d1d2b5 100644 --- a/dev-util/vulkan-headers/vulkan-headers-1.3.243.ebuild +++ b/dev-util/vulkan-headers/vulkan-headers-1.3.243.ebuild @@ -11,7 +11,7 @@ if [[ ${PV} == *9999* ]]; then inherit git-r3 else SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/sdk-${PV}.0.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86" + KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv x86" S="${WORKDIR}"/${MY_PN}-sdk-${PV}.0 fi diff --git a/dev-util/vulkan-tools/vulkan-tools-1.3.243.ebuild b/dev-util/vulkan-tools/vulkan-tools-1.3.243.ebuild index ae7ec142589b..e868c43fde5b 100644 --- a/dev-util/vulkan-tools/vulkan-tools-1.3.243.ebuild +++ b/dev-util/vulkan-tools/vulkan-tools-1.3.243.ebuild @@ -13,7 +13,7 @@ if [[ ${PV} == *9999* ]]; then inherit git-r3 else SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/sdk-${PV}.0.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv" + KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv" S="${WORKDIR}"/${MY_PN}-sdk-${PV}.0 fi diff --git a/eclass/Manifest.gz b/eclass/Manifest.gz index c4e8707955e1..d7913b5b846b 100644 Binary files a/eclass/Manifest.gz and b/eclass/Manifest.gz differ diff --git a/eclass/elisp-common.eclass b/eclass/elisp-common.eclass index 004db173f0cd..0462f022d1ba 100644 --- a/eclass/elisp-common.eclass +++ b/eclass/elisp-common.eclass @@ -10,6 +10,7 @@ # Mamoru Komachi # Christian Faulhammer # Ulrich Müller +# Maciej Barć # @SUPPORTED_EAPIS: 6 7 8 # @BLURB: Emacs-related installation utilities # @DESCRIPTION: @@ -337,6 +338,205 @@ elisp-make-autoload-file() { eend $? "elisp-make-autoload-file: batch-update-autoloads failed" || die } +# @FUNCTION: elisp-test-buttercup +# @USAGE: [test-subdirectory] [test-runner-opts] ... +# @DESCRIPTION: +# Run ELisp package tests using the "buttercup" test runner. +# +# The option "test-subdirectory" may be given any number of times, it should +# be given as though it was passed to Emacs or the test tool, not as a string. +# +# The options "test-subdirectory" and "test-runner-opts" are optional, +# but if "test-runner-opts" needs to be provided also "test-subdirectory" has +# to be specified. + +elisp-test-buttercup() { + debug-print-function ${FUNCNAME} "$@" + + local test_dir="${1:-$(pwd)}" + shift + + local -a myopts=( + ${BYTECOMPFLAGS} + -L "${test_dir}" + --traceback full + "$@" + ) + ebegin "Running buttercup tests" + buttercup "${myopts[@]}" "${test_dir}" + eend $? "${FUNCNAME}: tests failed" || die +} + +# @FUNCTION: elisp-test-ert-runner +# @USAGE: [test-subdirectory] [test-runner-opts] ... +# @DESCRIPTION: +# Run ELisp package tests using the "ert-runner" test runner. +# +# The option "test-subdirectory" may be given any number of times, it should +# be given as though it was passed to Emacs or the test tool, not as a string. +# +# The options "test-subdirectory" and "test-runner-opts" are optional, +# but if "test-runner-opts" needs to be provided also "test-subdirectory" has +# to be specified. + +elisp-test-ert-runner() { + debug-print-function ${FUNCNAME} "$@" + + local test_dir="${1:-$(pwd)}" + shift + + local -a myopts=( + ${BYTECOMPFLAGS} + --reporter ert+duration + --script + -L "${test_dir}" + "$@" + ) + ebegin "Running ert-runner tests" + ert-runner "${myopts[@]}" "${test_dir}" + eend $? "${FUNCNAME}: tests failed" || die +} + +# @FUNCTION: elisp-test-ert +# @USAGE: [test-subdirectory] [test-runner-opts] ... +# @DESCRIPTION: +# Run ELisp package tests using "ert", the Emacs's built-in test runner. +# +# The option "test-subdirectory" may be given any number of times, it should +# be given as though it was passed to Emacs or the test tool, not as a string. +# +# The options "test-subdirectory" and "test-runner-opts" are optional, +# but if "test-runner-opts" needs to be provided also "test-subdirectory" has +# to be specified. + +elisp-test-ert() { + debug-print-function ${FUNCNAME} "$@" + + local test_dir="${1:-$(pwd)}" + shift + + local -a extra_load=() + local extra_load_file + for extra_load_file in "${test_dir}"/?*-test.el; do + if [[ -f "${extra_load_file}" ]]; then + extra_load+=( -l "${extra_load_file}" ) + fi + done + + local -a myopts=( + ${EMACSFLAGS} + ${BYTECOMPFLAGS} + -L "${test_dir}" + "${extra_load[@]}" + "$@" + -f ert-run-tests-batch-and-exit + ) + ebegin "Running ert tests" + ${EMACS} "${myopts[@]}" + eend $? "${FUNCNAME}: tests failed" || die +} + +# @FUNCTION: elisp-enable-tests +# @USAGE: [--optional] [test-runner-options] ... +# @DESCRIPTION: +# Set up IUSE, RESTRICT, BDEPEND and test runner function for running tests +# with the specified test runner. +# +# The test-runner argument must be one of: +# +# - buttercup: for "buttercup" provided via "app-emacs/buttercup" +# +# - ert-runner: for "ert-runner" provided via "app-emacs/ert-runner" +# +# - ert: for built-in GNU Emacs test utility +# +# If the "--optional" flag is passed (before specifying the test runner), +# then it is assumed that the ELisp package is a part of some project that +# optionally enables GNU Emacs support. +# This will correctly set up the test and Emacs dependencies. +# +# Notice that the fist option passed to the "test-runner" is the directory +# and the rest are miscellaneous options applicable to that given runner. +# +# This function has to be called post inherit, specifically after "IUSE", +# "RESTRICT" and "BDEPEND" variables are assigned. +# It is advised to place this call right before (re)defining a given ebuild's +# phases. +# +# Example: +# @CODE +# inherit elisp-common +# +# ... +# +# elisp-enable-tests --optional ert-runner "${S}"/elisp -t "!org" +# +# src_test() { +# emake -C tests test +# elisp-test +# } +# @CODE + +elisp-enable-tests() { + debug-print-function ${FUNCNAME} "$@" + + local optional + if [[ ${1} = "--optional" ]] ; then + optional=YES + shift + fi + + local test_pkg + local test_runner=${1} + shift + + _ELISP_TEST_OPTS=( "$@" ) + + case ${test_runner} in + buttercup ) + test_pkg="app-emacs/buttercup" + _ELISP_TEST_FUNCTION=elisp-test-buttercup + ;; + ert-runner ) + test_pkg="app-emacs/ert-runner" + _ELISP_TEST_FUNCTION=elisp-test-ert-runner + ;; + ert ) + _ELISP_TEST_FUNCTION=elisp-test-ert + ;; + * ) + die "${FUNCNAME}: unknown test runner, given ${test_runner}" + ;; + esac + + if [[ ${test_pkg} ]]; then + IUSE+=" test " + RESTRICT+=" !test? ( test ) " + if [[ ${optional} ]]; then + IUSE+=" emacs " + BDEPEND+=" test? ( emacs? ( ${test_pkg} ) ) " + else + BDEPEND+=" test? ( ${test_pkg} ) " + fi + fi + + return 0 +} + +# @FUNCTION: elisp-test +# @DESCRIPTION: +# Test the package using a ELisp test runner. +# +# If called without executing "elisp-enable-tests" beforehand, then +# does nothing, otherwise a test runner is called with given +# "test-runner-options". + +elisp-test() { + if [[ ${_ELISP_TEST_FUNCTION} ]]; then + ${_ELISP_TEST_FUNCTION} "${_ELISP_TEST_OPTS[@]}" + fi +} + # @FUNCTION: elisp-install # @USAGE: # @DESCRIPTION: diff --git a/eclass/elisp.eclass b/eclass/elisp.eclass index 192f27384967..1ac1a2dbfabf 100644 --- a/eclass/elisp.eclass +++ b/eclass/elisp.eclass @@ -9,6 +9,7 @@ # Jeremy Maitin-Shepard # Christian Faulhammer # Ulrich Müller +# Maciej Barć # @SUPPORTED_EAPIS: 7 8 # @PROVIDES: elisp-common # @BLURB: Eclass for Emacs Lisp packages @@ -142,6 +143,19 @@ elisp_src_compile() { fi } +# @FUNCTION: elisp_src_test +# @DESCRIPTION: +# Call "elisp-test" to test the package if "elisp-enable-tests" was called +# beforehand, otherwise execute the default test function - "src_test". + +elisp_src_test() { + if [[ ${_ELISP_TEST_FUNCTION} ]]; then + elisp-test + else + default_src_test + fi +} + # @FUNCTION: elisp_src_install # @DESCRIPTION: # Call elisp-install to install all Emacs Lisp (*.el and *.elc) files. @@ -187,5 +201,5 @@ elisp_pkg_postrm() { elisp-site-regen } -EXPORT_FUNCTIONS src_{unpack,prepare,configure,compile,install} \ +EXPORT_FUNCTIONS src_{unpack,prepare,configure,compile,test,install} \ pkg_{setup,postinst,postrm} diff --git a/eclass/go-module.eclass b/eclass/go-module.eclass index 5cffbb1084d9..f97b69f591c8 100644 --- a/eclass/go-module.eclass +++ b/eclass/go-module.eclass @@ -343,10 +343,11 @@ go-module_setup_proxy() { # @FUNCTION: go-module_src_unpack # @DESCRIPTION: -# If EGO_SUM is set, unpack the base tarball(s) and set up the -# local go proxy. Also warn that this usage is deprecated. -# - Otherwise, if EGO_VENDOR is set, bail out. -# - Otherwise do a normal unpack. +# Sets up GOFLAGS for the system and then unpacks based on the following rules: +# 1. If EGO_SUM is set, unpack the base tarball(s) and set up the +# local go proxy. This mode is deprecated. +# 2. Otherwise, if EGO_VENDOR is set, bail out, as this functionality was removed. +# 3. Otherwise, call 'ego mod verify' and then do a normal unpack. go-module_src_unpack() { if use amd64 || use arm || use arm64 || ( use ppc64 && [[ $(tc-endian) == "little" ]] ) || use s390 || use x86; then diff --git a/eclass/postgres.eclass b/eclass/postgres.eclass index e94ab56a40ae..95ed168d40a1 100644 --- a/eclass/postgres.eclass +++ b/eclass/postgres.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: postgres.eclass @@ -6,7 +6,7 @@ # PostgreSQL # @AUTHOR: # Aaron W. Swenson -# @SUPPORTED_EAPIS: 7 +# @SUPPORTED_EAPIS: 7 8 # @BLURB: An eclass for PostgreSQL-related packages # @DESCRIPTION: # This eclass provides common utility functions that many @@ -15,7 +15,7 @@ # user to the postgres system group, and generating dependencies. case ${EAPI} in - 7) ;; + 7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac @@ -65,6 +65,17 @@ declare -p POSTGRES_USEDEP &>/dev/null && POSTGRES_DEP+="[${POSTGRES_USEDEP}]" # required if the package must build against one of the PostgreSQL slots # declared in POSTGRES_COMPAT. +# @ECLASS_VARIABLE: PG_SLOT +# @DEFAULT_UNSET +# @DESCRIPTION: +# PG_SLOT is the chosen PostgreSQL slot that is used for the build. + +# @ECLASS_VARIABLE: PG_CONFIG +# @DEFAULT_UNSET +# @DESCRIPTION: +# PG_CONFIG is the path to pg_config for the chosen PostgreSQL slot. +# For example, PG_CONFIG="pg_config15" + # @ECLASS_VARIABLE: _POSTGRES_COMPAT # @INTERNAL # @DESCRIPTION: @@ -150,6 +161,10 @@ postgres_pkg_setup() { export PG_SLOT=${best_slot} export PG_CONFIG=$(type -P pg_config${best_slot//./}) + if [[ -z ${PG_CONFIG} ]] ; then + die "Could not find pg_config for ${PG_SLOT}. Is dev-db/postgresql:${PG_SLOT} installed?" + fi + local pg_pkg_config_path="$(${PG_CONFIG} --libdir)/pkgconfig" if [[ -n "${PKG_CONFIG_PATH}" ]]; then export PKG_CONFIG_PATH="${pg_pkg_config_path}:${PKG_CONFIG_PATH}" diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 66cf8e88f9b2..ba83cad72cb2 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -280,7 +280,8 @@ if [[ ${PN} != kgcc64 && ${PN} != gcc-* ]] ; then tc_version_is_at_least 12 && IUSE+=" ieee-long-double" tc_version_is_at_least 12.2.1_p20221203 ${PV} && IUSE+=" default-znow" tc_version_is_at_least 12.2.1_p20221203 ${PV} && IUSE+=" default-stack-clash-protection" - tc_version_is_at_least 13.0.0_pre20221211 ${PV} && IUSE+=" rust" + tc_version_is_at_least 13.0.0_pre20221218 ${PV} && IUSE+=" modula2" + tc_version_is_at_least 14.0.0_pre20230423 ${PV} && IUSE+=" rust" fi if tc_version_is_at_least 10; then @@ -1045,6 +1046,7 @@ toolchain_src_configure() { is_f77 && GCC_LANG+=",f77" is_f95 && GCC_LANG+=",f95" is_ada && GCC_LANG+=",ada" + is_modula2 && GCC_LANG+=",m2" is_rust && GCC_LANG+=",rust" confgcc+=( --enable-languages=${GCC_LANG} ) @@ -2744,6 +2746,11 @@ is_objcxx() { _tc_use_if_iuse cxx && _tc_use_if_iuse objc++ } +is_modula2() { + gcc-lang-supported m2 || return 1 + _tc_use_if_iuse cxx && _tc_use_if_iuse modula2 +} + is_rust() { gcc-lang-supported rust || return 1 _tc_use_if_iuse rust diff --git a/games-strategy/Manifest.gz b/games-strategy/Manifest.gz index 98e38c7d6eb0..b4ed1e3d8225 100644 Binary files a/games-strategy/Manifest.gz and b/games-strategy/Manifest.gz differ diff --git a/games-strategy/warzone2100/Manifest b/games-strategy/warzone2100/Manifest index ea1382535205..4d31b6de0c1f 100644 --- a/games-strategy/warzone2100/Manifest +++ b/games-strategy/warzone2100/Manifest @@ -1,3 +1,4 @@ DIST warzone2100-4.3.3.tar.xz 320439712 BLAKE2B 15d29a0d7dc8c10b41dabf210e2113f079731e7976932a44054fa86b90dddee68e46faa5e4cf1d25ba57fc5d14c6ddedaea0f1544deb5755d19ca2ff02b7cb56 SHA512 46ccf2720d09481dfc89c1e3abb9802a379d1bfe0b3823566b51f2ea177fd793653d5b2592f07c724f0121cafd014c1ea6226b8c2bc22ec12ac3ca1bfaf298f4 DIST warzone2100-4.3.4.tar.xz 320385680 BLAKE2B 4c0e26dfe0bc1c80eef0620a81d50d1e8fcf93ad7f125a860d5cfc842e24b5458189c932452353e6e5cb86adc7be4ef0509d006961736afda8292f083285b79e SHA512 75d1b75c452f0c5e3c518efd5378be003c4040f4202408d344341849f534a93573b235191451eb9b8b8e2945754ca2355a44547607e21e1cf60453176dce8f2a +DIST warzone2100-4.3.5.tar.xz 320369492 BLAKE2B 526568cd25e7600e4f45714f4cd2a8ef9da8a1a3f6691d9cb07f4ed6c9367fc412f0fa77b4a547c4a4eac6d42624ac5b9d1e105e4606f801f773ce6028740286 SHA512 ec65f22a0aad9fe482c4ea916cb321d171b10f0a9b181fea7db2eb17bf54e32b3828c8259082fff266713e2cab4e32dcc455d0d5b923a5ca221fc77b11137062 DIST warzone2100-videos-2.2.wz 571937134 BLAKE2B 60b70a71bd920e2d72ded5d519b17db2f3db4b0289edadeb58059a21aba7038b95219dc44cb807754461d1a9bdca60f0d7698be68622b8bd64a55efa949622d3 SHA512 ca1a1af51296afdaca137114821508c5783f077090e665eae0f6df895855f57c43f84434706309e819417f5f35d1c649bd14e96dc9fbbb1252d30a4f9a223cf6 diff --git a/games-strategy/warzone2100/warzone2100-4.3.5.ebuild b/games-strategy/warzone2100/warzone2100-4.3.5.ebuild new file mode 100644 index 000000000000..8a663d4f672e --- /dev/null +++ b/games-strategy/warzone2100/warzone2100-4.3.5.ebuild @@ -0,0 +1,121 @@ +# Copyright 2022-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PLOCALES="af_ZA bg_BG ca_ES cs da de el en_GB eo es et_EE fa_IR fi fr fy ga he_IL hr hu id_ID id it ko la lt nb nl pl pt_BR pt ro ru sk sl tr tt_RU uk_UA zh_CN zh_TW" +inherit cmake plocale xdg + +MY_PV=$(ver_cut 1-2) +VIDEOS_PV=2.2 +VIDEOS_P=${PN}-videos-${VIDEOS_PV}.wz + +DESCRIPTION="3D real-time strategy game" +HOMEPAGE="https://wz2100.net/" +SRC_URI=" + mirror://sourceforge/warzone2100/releases/${PV}/${PN}_src.tar.xz -> ${P}.tar.xz + videos? ( mirror://sourceforge/warzone2100/warzone2100/Videos/${VIDEOS_PV}/high-quality-en/sequences.wz -> ${VIDEOS_P} ) +" +S="${WORKDIR}/${PN}" + +LICENSE="GPL-2+ CC-BY-SA-3.0 public-domain vulkan? ( GPL-3 )" +SLOT="0" +KEYWORDS="~amd64 ~x86" +# Upstream requested debug support +IUSE="debug discord nls videos vulkan" + +COMMON_DEPEND=" + dev-libs/fribidi + >=dev-games/physfs-2[zip] + dev-db/sqlite:3 + >=dev-libs/libsodium-1.0.14:= + media-libs/freetype:2 + media-libs/harfbuzz:= + media-libs/libogg + media-libs/libpng:= + media-libs/libsdl2[opengl,video,X] + media-libs/libtheora + media-libs/libvorbis + media-libs/openal + media-libs/opus + net-libs/miniupnpc:= + net-misc/curl + sys-libs/zlib + nls? ( virtual/libintl ) + vulkan? ( media-libs/libsdl2:=[vulkan] ) +" +DEPEND=" + ${COMMON_DEPEND} + media-libs/fontconfig +" +RDEPEND=" + ${COMMON_DEPEND} + media-fonts/dejavu +" +BDEPEND=" + app-arch/zip + app-text/asciidoc + games-util/basis_universal + virtual/pkgconfig + nls? ( sys-devel/gettext ) +" + +HTML_DOCS=( doc/quickstartguide.html doc/docbook-xsl.css doc/ScriptingManual.htm ) +DOCS=( README.md doc/images doc/Scripting.md doc/js-globals.md ) + +PATCHES=( + "${FILESDIR}"/${PN}-4.1.3-no-compress-manpages.patch +) + +src_unpack() { + unpack ${P}.tar.xz +} + +src_prepare() { + sed -i -e 's/#top_builddir/top_builddir/' po/Makevars || die + + # Delete translations we're not using + cleanup_po() { + local locale=${1} + einfo "Cleaning up disabled locale: ${locale}" + rm po/${locale}.po || die + } + + plocale_for_each_disabled_locale cleanup_po + + cmake_src_prepare +} + +src_configure() { + # TODO: unbundle nlohmann-json + # TODO: unbundle fmt + local mycmakeargs=( + -DWZ_DISTRIBUTOR="Gentoo Linux" + -DWZ_ENABLE_WARNINGS_AS_ERRORS=OFF + -DWZ_ENABLE_BACKEND_VULKAN=$(usex vulkan) + -DBUILD_SHARED_LIBS=OFF + -DENABLE_NLS=$(usex nls) + -DENABLE_DISCORD=$(usex discord) + ) + + cmake_src_configure +} + +src_compile() { + cmake_src_compile + + asciidoc -b html5 doc/quickstartguide.asciidoc || die +} + +src_install() { + cmake_src_install + + # We cover licencing within the ebuild itself + rm "${ED}"/usr/share/doc/${PF}/COPYING* \ + "${ED}"/usr/share/doc/${PF}/copyright || die + + if use videos ; then + insinto /usr/share/${PN} + newins "${DISTDIR}"/${VIDEOS_P} sequences.wz + fi +} diff --git a/gnome-extra/Manifest.gz b/gnome-extra/Manifest.gz index 78353a665bd0..708a4ce7d42c 100644 Binary files a/gnome-extra/Manifest.gz and b/gnome-extra/Manifest.gz differ diff --git a/gnome-extra/gnome-shell-extension-alphabetical-grid/Manifest b/gnome-extra/gnome-shell-extension-alphabetical-grid/Manifest index e68000f1ebfa..19e3bede975b 100644 --- a/gnome-extra/gnome-shell-extension-alphabetical-grid/Manifest +++ b/gnome-extra/gnome-shell-extension-alphabetical-grid/Manifest @@ -1,3 +1 @@ -DIST gnome-shell-extension-alphabetical-grid-27.0.tar.gz 212216 BLAKE2B 095159d7e9e3683e30dc0d8bf0e2b8cd66b3b22748a4a8551bdcbd284ace1eda96ce9b2d3822d67815a46ea5f3df33ce7ccbd3e0371d987c9be240881be89c57 SHA512 d4c37b21e9c429250fd95281ce7cacb5252e093f834577448bdc218065f147f60b556f65450384e40360a0ff8bc1f52195a46664241cd386d486d5e1327817b8 -DIST gnome-shell-extension-alphabetical-grid-28.0.tar.gz 213098 BLAKE2B 15a59c56110462994c890075790d92a4dda10b1de348c16c3909d20af6a35fa82e471ba1feb0a28787627468c0e2dd9f6d926e9b145248387e1c2c87ef964360 SHA512 31be9cedeabde79c41f6d8ad7047756d085b1d35f2d7479f056d72e56ae9d95e09692ea2dfaa700dcf45958fd42cd9e1b6f43a75d76ebf68ea0f1051dcd3a723 DIST gnome-shell-extension-alphabetical-grid-29.0.tar.gz 213643 BLAKE2B f4e0244f41ec426f5c2189ccfb32144c419d10d22ea477b102d60defd203cc80cb5272aaeedcc5fd3e554341a51aa9ed0e829e38a2c6977daaf82f954fd6a073 SHA512 a4417637d719cc2d35fca80b3621e8bd6e965ed87890105f611d69ae4b901c25080c64599ceac3518dafedd0fb240989b447b643bb88fc2164463371eb0c98f2 diff --git a/gnome-extra/gnome-shell-extension-alphabetical-grid/gnome-shell-extension-alphabetical-grid-27.0.ebuild b/gnome-extra/gnome-shell-extension-alphabetical-grid/gnome-shell-extension-alphabetical-grid-27.0.ebuild deleted file mode 100644 index 76a35b86c273..000000000000 --- a/gnome-extra/gnome-shell-extension-alphabetical-grid/gnome-shell-extension-alphabetical-grid-27.0.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -inherit gnome2-utils - -# Useful specially to prevent -# https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/4684 -# https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/3180 -DESCRIPTION="Restore the alphabetical ordering of the app grid" -HOMEPAGE="https://github.com/stuarthayhurst/alphabetical-grid-extension" -SRC_URI="https://github.com/stuarthayhurst/alphabetical-grid-extension/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND=" - app-eselect/eselect-gnome-shell-extensions - >=gnome-base/gnome-shell-3.38 -" -DEPEND="${COMMON_DEPEND}" -BDEPEND="" - -S="${WORKDIR}/alphabetical-grid-extension-${PV}" -extension_uuid="AlphabeticalAppGrid@stuarthayhurst" - -# Tests are only useful for upstream -RESTRICT="test" - -# Not useful for us -src_compile() { :; } - -src_install() { - einstalldocs - mv docs/icon.svg extension || die - cd extension || die - insinto /usr/share/glib-2.0/schemas - doins schemas/*.xml - rm -rf schemas || die - insinto /usr/share/gnome-shell/extensions/"${extension_uuid}" - doins -r * -} - -pkg_preinst() { - gnome2_schemas_savelist -} - -pkg_postinst() { - gnome2_schemas_update - ebegin "Updating list of installed extensions" - eselect gnome-shell-extensions update - eend $? -} - -pkg_postrm() { - gnome2_schemas_update -} diff --git a/gnome-extra/gnome-shell-extension-alphabetical-grid/gnome-shell-extension-alphabetical-grid-28.0.ebuild b/gnome-extra/gnome-shell-extension-alphabetical-grid/gnome-shell-extension-alphabetical-grid-28.0.ebuild deleted file mode 100644 index 60d548d52ade..000000000000 --- a/gnome-extra/gnome-shell-extension-alphabetical-grid/gnome-shell-extension-alphabetical-grid-28.0.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -inherit gnome2-utils - -# Useful specially to prevent -# https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/4684 -# https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/3180 -DESCRIPTION="Restore the alphabetical ordering of the app grid" -HOMEPAGE="https://github.com/stuarthayhurst/alphabetical-grid-extension" -SRC_URI="https://github.com/stuarthayhurst/alphabetical-grid-extension/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND=" - app-eselect/eselect-gnome-shell-extensions - >=gnome-base/gnome-shell-3.38 -" -DEPEND="${COMMON_DEPEND}" -BDEPEND="" - -S="${WORKDIR}/alphabetical-grid-extension-${PV}" -extension_uuid="AlphabeticalAppGrid@stuarthayhurst" - -# Tests are only useful for upstream -RESTRICT="test" - -# Not useful for us -src_compile() { :; } - -src_install() { - einstalldocs - mv docs/icon.svg extension || die - cd extension || die - insinto /usr/share/glib-2.0/schemas - doins schemas/*.xml - rm -rf schemas || die - insinto /usr/share/gnome-shell/extensions/"${extension_uuid}" - doins -r * -} - -pkg_preinst() { - gnome2_schemas_savelist -} - -pkg_postinst() { - gnome2_schemas_update - ebegin "Updating list of installed extensions" - eselect gnome-shell-extensions update - eend $? -} - -pkg_postrm() { - gnome2_schemas_update -} diff --git a/gnome-extra/gnome-shell-extension-alphabetical-grid/gnome-shell-extension-alphabetical-grid-29.0.ebuild b/gnome-extra/gnome-shell-extension-alphabetical-grid/gnome-shell-extension-alphabetical-grid-29.0.ebuild index 60d548d52ade..76a35b86c273 100644 --- a/gnome-extra/gnome-shell-extension-alphabetical-grid/gnome-shell-extension-alphabetical-grid-29.0.ebuild +++ b/gnome-extra/gnome-shell-extension-alphabetical-grid/gnome-shell-extension-alphabetical-grid-29.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/stuarthayhurst/alphabetical-grid-extension/archive/r LICENSE="GPL-3" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="" RDEPEND=" diff --git a/gnome-extra/gnome-shell-extension-control-blur-effect-on-lock-screen/Manifest b/gnome-extra/gnome-shell-extension-control-blur-effect-on-lock-screen/Manifest index 22bdb49dfeca..2d6416f8066c 100644 --- a/gnome-extra/gnome-shell-extension-control-blur-effect-on-lock-screen/Manifest +++ b/gnome-extra/gnome-shell-extension-control-blur-effect-on-lock-screen/Manifest @@ -1 +1,2 @@ DIST gnome-shell-extension-control-blur-effect-on-lock-screen-20220323.tar.gz 2618 BLAKE2B 050f801bcc1ced63647c49badb779ce60a7de329ecebfef324cb8d1992e992933524a5e0e08272cf93bd9e24c9be72ba3b1365721b7954422ae0dfab7c1448bf SHA512 c13bff5676d5cf5ad6c932c6f19f1229fe65b3c4c0bcad6d0f3dfbce5bb763ebbd5cea7140e7b3ad5417819ee27e4e49369740d634b13b7f037fa4dc324dbced +DIST gnome-shell-extension-control-blur-effect-on-lock-screen-20230408.tar.gz 18303 BLAKE2B e15c4cb3274e0c295162dbb4788f9668d16b17f38bff0f8c45716202470c29986d28df19efdeda707365dc3b229a1dccb4c7b9fe4cfab7868d6286ac7ccf561b SHA512 4167587a1786f06a559975a393c2dac7fd54f4abeab902adbbd9637ef7a2399ad1e8e5a52f881559766599c8905ce501a3febb020f0b300b0a1ce5450d04052d diff --git a/gnome-extra/gnome-shell-extension-control-blur-effect-on-lock-screen/gnome-shell-extension-control-blur-effect-on-lock-screen-20230408.ebuild b/gnome-extra/gnome-shell-extension-control-blur-effect-on-lock-screen/gnome-shell-extension-control-blur-effect-on-lock-screen-20230408.ebuild new file mode 100644 index 000000000000..2125b3aea854 --- /dev/null +++ b/gnome-extra/gnome-shell-extension-control-blur-effect-on-lock-screen/gnome-shell-extension-control-blur-effect-on-lock-screen-20230408.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit gnome2-utils + +DESCRIPTION="Control the blur effect on gnome-shell lock screen" +HOMEPAGE="https://github.com/PRATAP-KUMAR/Control_Blur_Effect_On_Lock_Screen" +COMMIT="53b17ccf60dedd815be4657d6e3655d838a984df" +SRC_URI="https://github.com/PRATAP-KUMAR/Control_Blur_Effect_On_Lock_Screen/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +# glib for glib-compile-schemas at build time, needed at runtime anyways +COMMON_DEPEND=" + dev-libs/glib:2 +" +RDEPEND="${COMMON_DEPEND} + app-eselect/eselect-gnome-shell-extensions + >=gnome-base/gnome-shell-44 +" +DEPEND="${COMMON_DEPEND}" +BDEPEND="" + +extension_uuid="ControlBlurEffectOnLockScreen@pratap.fastmail.fm" +S="${WORKDIR}/${PN/gnome-shell-extension-/}-${COMMIT}" + +src_compile() { :; } + +src_install() { + einstalldocs + insinto /usr/share/glib-2.0/schemas + doins schemas/*.xml + rm -rf LICENSE README.md schemas + insinto /usr/share/gnome-shell/extensions/"${extension_uuid}" + doins -r * +} + +pkg_preinst() { + gnome2_schemas_savelist +} + +pkg_postinst() { + gnome2_schemas_update + ebegin "Updating list of installed extensions" + eselect gnome-shell-extensions update + eend $? +} + +pkg_postrm() { + gnome2_schemas_update +} diff --git a/gnome-extra/gucharmap/Manifest b/gnome-extra/gucharmap/Manifest index 8bb4c9e7a271..75c0821b12c0 100644 --- a/gnome-extra/gucharmap/Manifest +++ b/gnome-extra/gucharmap/Manifest @@ -1,3 +1,4 @@ DIST gucharmap-15.0.2.tar.bz2 1480065 BLAKE2B 9fa5c024d05b25da2ec5d8a93efd2428ca0e47e88e3c5e701995664a548775ae6061fbe1bc4671c15595151a68a3e186544f671b683231461f9be02a86caf11e SHA512 5b345cd0cfe5c588ae062f402c66b45fbbdd03705c4c4900a2314ff19562279436712e19d7143d87cbf6db49e10cba825dd37c0a57aba8b1c1fd9a3e7dbe363e DIST gucharmap-15.0.3.tar.bz2 1480191 BLAKE2B 9cb551099982286305b24afc8c5d134f61a937e22641d254c0ce60de73b02d9fdb2d4a6c7f6c760bce0ef4e434ead07db0a8f1a14c7ef3a5d8a8ea9ab5af5a33 SHA512 017bd747bfce02c10d6a8f4528ff90f0e99f19e037704d706af73f8751c2ecb3d3ebd01e1d0499d910a368b2b0707cc91d48d7943a3157f0f20522be7ce769c6 +DIST gucharmap-15.0.4.tar.bz2 1453197 BLAKE2B 718890e466e19934b012a79deefc2174edba6de59bd9a374dee5e8cf396fd0a06ae8e4db4cfb223d43284d59be87344310e4cb94e1e45ae158e0213e7bfa06f5 SHA512 280fb164f2d850f9b4a8e54c24d0bc461e0abe2e53f34a6f2f0098397c04856091c6f730cfa9451de5b676b569e2a43bcf2a9dfe160f916b00622ec5535c1e94 DIST gucharmap-3.0.1.tar.bz2 3275481 BLAKE2B 80dde7791abdc72677add9c65c59f810e6c6952116b92db34059c4c40d2657246b17844c105e68f32c86294e9b4e71e9d48e6f0522855465734d7c24e8d17608 SHA512 4d8a2276b5cb1a0b0fadca2a8522755c5884985a12d5b19341b9cefcd7f749ec1286c0271419e38ec84be7edcfa1293e7f0263eb682c75387d692792de3e1fb1 diff --git a/gnome-extra/gucharmap/gucharmap-15.0.4.ebuild b/gnome-extra/gucharmap/gucharmap-15.0.4.ebuild new file mode 100644 index 000000000000..375128fee077 --- /dev/null +++ b/gnome-extra/gucharmap/gucharmap-15.0.4.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_{9..11} ) + +inherit gnome2-utils meson python-any-r1 vala xdg + +DESCRIPTION="Unicode character map viewer and library" +HOMEPAGE="https://wiki.gnome.org/Apps/Gucharmap" +SRC_URI="https://gitlab.gnome.org/GNOME/${PN}/-/archive/${PV}/${P}.tar.bz2" + +LICENSE="GPL-3+" +SLOT="2.90" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" + +UNICODE_VERSION="15.0" + +IUSE="+introspection gtk-doc vala" +REQUIRED_USE="vala? ( introspection )" + +RDEPEND="media-libs/freetype:2 + >=dev-libs/glib-2.32:2 + >=x11-libs/gtk+-3.22:3[introspection?] + >=dev-libs/libpcre2-10.21:= + =app-i18n/unicode-data-${UNICODE_VERSION}* + >=x11-libs/pango-1.42.4-r2[introspection?] +" +DEPEND="${RDEPEND}" +BDEPEND=" + ${PYTHON_DEPS} + app-text/docbook-xml-dtd:4.1.2 + dev-util/itstool + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig + gtk-doc? ( >=dev-util/gtk-doc-1 ) + introspection? ( >=dev-libs/gobject-introspection-1.54:= ) + vala? ( $(vala_depend) ) +" + +PATCHES=( + "${FILESDIR}"/14.0.1-install-user-help.patch + "${FILESDIR}"/15.0.1-fix-file-conflicts.patch +) + +src_prepare() { + default + use vala && vala_setup + xdg_environment_reset +} + +src_configure() { + local emesonargs=( + -Dcharmap=true + -Ddbg=false # in 14.0.1 all this does is pass -ggdb3 + $(meson_use gtk-doc docs) + $(meson_use introspection gir) + -Dgtk3=true + -Ducd_path="${EPREFIX}/usr/share/unicode-data" + $(meson_use vala vapi) + ) + + meson_src_configure +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} diff --git a/gnome-extra/nm-applet/Manifest b/gnome-extra/nm-applet/Manifest index 01c153a2b856..b051ad7a018f 100644 --- a/gnome-extra/nm-applet/Manifest +++ b/gnome-extra/nm-applet/Manifest @@ -1 +1,2 @@ DIST network-manager-applet-1.30.0.tar.xz 1880076 BLAKE2B 9fb663baf40760818055fb89528d593c53fb6c3884b375712e44967250b294651ce2d9d16fe080a7f64cd111fb3581a3fc56e6e9478ed1765f3bc42303995686 SHA512 2c0acf1942c0d238b28a2d9d39f8741f376dd16defefc776852c63f79c2e8e01974c3a485dc6382d5a239b8308eb12bb668f1c327ef27e7fc228d1ad03498b7d +DIST network-manager-applet-1.32.0.tar.xz 1899584 BLAKE2B 7ce83c1a81ef62002283b87d09dd7045d3688597f71dba7f91b6feaed504934af10974cbe5732027a187a031df6668697cd433ad4bb5975503b1c7fa6789d6c2 SHA512 a7abe55c88fa95406e62fb442c068f95325fca748438aa037e0bd5b23add6454c3bc27ac54afe520746d32845bc7403f228f9bfde8e70c7442c906a8227ebe6c diff --git a/gnome-extra/nm-applet/nm-applet-1.32.0.ebuild b/gnome-extra/nm-applet/nm-applet-1.32.0.ebuild new file mode 100644 index 000000000000..5d85e1c2d4e7 --- /dev/null +++ b/gnome-extra/nm-applet/nm-applet-1.32.0.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +GNOME_ORG_MODULE="network-manager-applet" + +inherit gnome.org gnome2-utils meson xdg + +DESCRIPTION="NetworkManager connection editor and applet" +HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager" + +LICENSE="GPL-2+" +SLOT="0" +IUSE="appindicator modemmanager selinux teamd" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86" + +RDEPEND=" + >=dev-libs/glib-2.40:2 + >=app-crypt/libsecret-0.18 + >=net-libs/libnma-1.10.4-r2 + >=x11-libs/gtk+-3.10:3 + >=dev-libs/libgudev-147:= + >=net-misc/networkmanager-1.16[modemmanager?,teamd?] + appindicator? ( + dev-libs/libayatana-appindicator + >=dev-libs/libdbusmenu-16.04.0 + ) + modemmanager? ( net-misc/modemmanager ) + selinux? ( sys-libs/libselinux ) + teamd? ( >=dev-libs/jansson-2.7:= ) + + virtual/freedesktop-icon-theme +" +DEPEND="${RDEPEND}" +BDEPEND=" + dev-libs/libxml2 + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig +" + +src_configure() { + local emesonargs=( + -Dappindicator=$(usex appindicator ayatana no) + $(meson_use modemmanager wwan) + $(meson_use selinux) + $(meson_use teamd team) + -Dmore_asserts=0 + -Dld_gc=false + ) + meson_src_configure +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} diff --git a/gui-libs/Manifest.gz b/gui-libs/Manifest.gz index 3708661d26a4..9d8ad0272c85 100644 Binary files a/gui-libs/Manifest.gz and b/gui-libs/Manifest.gz differ diff --git a/gui-libs/vte-common/Manifest b/gui-libs/vte-common/Manifest index ffc9875f13d6..2078ab22450e 100644 --- a/gui-libs/vte-common/Manifest +++ b/gui-libs/vte-common/Manifest @@ -1,3 +1,4 @@ DIST vte-0.70.3.tar.bz2 502706 BLAKE2B 1fee46dee38618137781d62b27730893b0c6969cf3badfa157628621a608983be48e35ef4d8e58099c93b8be91434b257d120cab2e7a943cfecaf37ff7b3fd5d SHA512 5520bc58b0ad2f803da27985e30862de987ecc31c0137895c6945c53f99a7c16ee0281646b9e04362de934364ee7beaa1acf47dad9baf5a16ab9898d5f746d2d DIST vte-0.70.4.tar.bz2 502950 BLAKE2B d3152c939e0b90b542aad268b455085e04c194cc6d86e4d9352b6531cf74a19bdcd16351e1f3934b1835d1470815215c19b1301136cecf43d23a6951fd8bb889 SHA512 f899c99bf5a9593fa618016a31c93e249bcc01b8635e1b878ab236de71a24a5b3cf1a032bea96855e43d894d004b0e00f20cc2e08079e52d8e7cb709cc73a7af DIST vte-0.72.0.tar.bz2 503848 BLAKE2B 4c87f5648b17a269072a7fbe520e9cf086325d8740050b9868fd6e0d812ed78e240a3d3dc882729435bbae30fbbbfe35c0e92f36cd62e6aa8e581350b81a3f90 SHA512 198ea27d0991d825cc993746422e89b0e7b2b225e9cbdb072477dcf5b5866e79a27920233e8da63a412c5f270769e6d333470f5368d0b09b39e15d53ddbe6dd6 +DIST vte-0.72.1.tar.bz2 504271 BLAKE2B 8ab39ab8d491757ab9402ad4bfc10ca733427d2efe895204c0db580e44107a9ab005c29ce2e6934ae27e8da7c27e39d1173fe787ddb8569938a29697eed2e2e1 SHA512 a5655d2d2602183cbda1050003d7cf883e427c8e00976af4ee2685f43530d87169e31a3b9597133d14dffdc95f20f9ca1488186d8463997a2672510f5a95d145 diff --git a/gui-libs/vte-common/vte-common-0.72.1.ebuild b/gui-libs/vte-common/vte-common-0.72.1.ebuild new file mode 100644 index 000000000000..b2ef085b763d --- /dev/null +++ b/gui-libs/vte-common/vte-common-0.72.1.ebuild @@ -0,0 +1,78 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_{9..11} ) + +inherit gnome.org meson python-any-r1 + +DESCRIPTION="Library providing a virtual terminal emulator widget" +HOMEPAGE="https://wiki.gnome.org/Apps/Terminal/VTE" + +# Once SIXEL support ships (0.66 or later), might need xterm license (but code might be considered upgraded to LGPL-3+) +LICENSE="LGPL-3+ GPL-3+" +SLOT="2.91" # vte_api_version in meson.build +IUSE="systemd" +KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" + +# Upstream is hostile and refuses to upload tarballs. +SRC_URI="https://gitlab.gnome.org/GNOME/vte/-/archive/${PV}/vte-${PV}.tar.bz2" + +DEPEND=" + || ( >=gui-libs/gtk-4.0.1:4 >=x11-libs/gtk+-3.24.22:3 ) + >=dev-libs/fribidi-1.0.0 + >=dev-libs/glib-2.60:2 + >=x11-libs/pango-1.22.0 + >=dev-libs/libpcre2-10.21 + systemd? ( >=sys-apps/systemd-220:= ) + sys-libs/zlib + x11-libs/pango +" +RDEPEND=" + ! +Date: Tue, 18 Apr 2023 08:26:50 +0100 +Subject: [PATCH] Fix build with GCC 13 + +GCC 13 (as usual for new compiler releases) shuffles around some internal includes so some +are no longer transitively included. + +See https://gnu.org/software/gcc/gcc-13/porting_to.html. + +Bug: https://bugs.gentoo.org/895570 +Closes: https://github.com/WayfireWM/wayfire/issues/1758 +--- a/subprojects/wf-utils/wayfire/rule/lambda_rule.cpp ++++ b/subprojects/wf-utils/wayfire/rule/lambda_rule.cpp +@@ -1,6 +1,7 @@ + #include "wayfire/rule/lambda_rule.hpp" + #include "wayfire/condition/condition.hpp" + #include ++#include + #include + #include + #include + diff --git a/gui-wm/wayfire/wayfire-0.7.5.ebuild b/gui-wm/wayfire/wayfire-0.7.5.ebuild index 3daa6027b141..9aa8f0449f9d 100644 --- a/gui-wm/wayfire/wayfire-0.7.5.ebuild +++ b/gui-wm/wayfire/wayfire-0.7.5.ebuild @@ -73,6 +73,10 @@ BDEPEND=" virtual/pkgconfig " +PATCHES=( + "${FILESDIR}"/${PN}-0.7.5-gcc13.patch +) + src_configure() { sed -e "s:@EPREFIX@:${EPREFIX}:" \ "${FILESDIR}"/wayfire-session > "${T}"/wayfire-session || die diff --git a/kde-plasma/Manifest.gz b/kde-plasma/Manifest.gz index 02adf706bd98..2cf0e6297a01 100644 Binary files a/kde-plasma/Manifest.gz and b/kde-plasma/Manifest.gz differ diff --git a/kde-plasma/breeze-gtk/files/breeze-gtk-5.27.4-blurry-big-gtk3-window-buttons.patch b/kde-plasma/breeze-gtk/files/breeze-gtk-5.27.4-blurry-big-gtk3-window-buttons.patch deleted file mode 100644 index 505d4ee016a3..000000000000 --- a/kde-plasma/breeze-gtk/files/breeze-gtk-5.27.4-blurry-big-gtk3-window-buttons.patch +++ /dev/null @@ -1,67 +0,0 @@ -From 49a595aaed62ce08cf6e173fa85165b1e847802d Mon Sep 17 00:00:00 2001 -From: Fushan Wen -Date: Fri, 7 Apr 2023 21:41:39 +0800 -Subject: [PATCH 1/2] gtk3: remove invalid icon size property - -'-gtk-icon-size' is not a valid property name ---- - src/gtk3/widgets/_dialogs.scss | 10 ---------- - 1 file changed, 10 deletions(-) - -diff --git a/src/gtk3/widgets/_dialogs.scss b/src/gtk3/widgets/_dialogs.scss -index 3056fc8..4eb1082 100644 ---- a/src/gtk3/widgets/_dialogs.scss -+++ b/src/gtk3/widgets/_dialogs.scss -@@ -57,13 +57,3 @@ filechooser { - border-bottom: 1px solid gtk("@borders"); - } - } -- --// Icon sizes -- --.normal-icons { -- -gtk-icon-size: 16px; --} -- --.large-icons { -- -gtk-icon-size: 32px; --} --- -2.40.0 - - -From bfe2ce620d395c943bb13a646295948b5bffbcc3 Mon Sep 17 00:00:00 2001 -From: Fushan Wen -Date: Fri, 7 Apr 2023 22:02:11 +0800 -Subject: [PATCH 2/2] gtk3: restore old icon size for titlebutton - -`background-size` results in different sizes on X11 and Wayland. - -BUG: 468203 -FIXED-IN: 5.27.5 ---- - src/gtk3/widgets/_window_decorations.scss | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -diff --git a/src/gtk3/widgets/_window_decorations.scss b/src/gtk3/widgets/_window_decorations.scss -index aef28ca..6568e6b 100644 ---- a/src/gtk3/widgets/_window_decorations.scss -+++ b/src/gtk3/widgets/_window_decorations.scss -@@ -74,11 +74,11 @@ window { - .titlebar { - &.default-decoration button.titlebutton { - padding: 1px; -- min-height: 24px; -- min-width: 24px; -+ min-height: 18px; -+ min-width: 18px; - margin: 0; - } -- $titlebutton-size: 24px 24px; -+ $titlebutton-size: 18px 18px; - button.titlebutton { - &:hover, - &:active, --- -2.40.0 - diff --git a/kde-plasma/plasma-firewall/plasma-firewall-5.27.4.ebuild b/kde-plasma/plasma-firewall/plasma-firewall-5.27.4.ebuild index 8d777543eabd..50455f0e12b9 100644 --- a/kde-plasma/plasma-firewall/plasma-firewall-5.27.4.ebuild +++ b/kde-plasma/plasma-firewall/plasma-firewall-5.27.4.ebuild @@ -55,6 +55,11 @@ src_configure() { ecm_src_configure } +src_test() { + local -x QT_QPA_PLATFORM=offscreen + ecm_src_test +} + pkg_postinst () { ecm_pkg_postinst diff --git a/lxqt-base/Manifest.gz b/lxqt-base/Manifest.gz index f496cb9ecfe7..32ad8faad409 100644 Binary files a/lxqt-base/Manifest.gz and b/lxqt-base/Manifest.gz differ diff --git a/lxqt-base/liblxqt/Manifest b/lxqt-base/liblxqt/Manifest index c88f5e37989e..ae6221a092b1 100644 --- a/lxqt-base/liblxqt/Manifest +++ b/lxqt-base/liblxqt/Manifest @@ -1 +1,2 @@ DIST liblxqt-1.2.0.tar.xz 83144 BLAKE2B dd86925a527ad4e8e019da459fac1f0091035889e4e9147c0f9bed0fc9d34c622e914b53c66868631c94181a4f0cbbbcabccb6620b6e3383395d9dffd5cec05b SHA512 3e9bc5946107a5486fde1ecea1637d16901a272a229525dc3f9c0450225287ce41e3bbec9441797a24bc850ba16e3e1efe172d871c5a6685b5b228b88b5a2221 +DIST liblxqt-1.3.0.tar.xz 83524 BLAKE2B 8a2c9df1e76dd93c7905f85d94e9c56db932fc89781aafc577d4b6f0b3db76a862576b39260b75dd219b280723b81ffa306619a9332bce3b5ba51c28b0c08f12 SHA512 71595c98e5236467c96ea903a7326c1ddf04329b34ecce48cda9f55970d4a3b608dd8297a3fc484275fc25d11efa2740837239e4cbf436954d87ee1a0857ba21 diff --git a/lxqt-base/liblxqt/liblxqt-1.3.0.ebuild b/lxqt-base/liblxqt/liblxqt-1.3.0.ebuild new file mode 100644 index 000000000000..a19a17790f18 --- /dev/null +++ b/lxqt-base/liblxqt/liblxqt-1.3.0.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="Common base library for the LXQt desktop environment" +HOMEPAGE="https://lxqt-project.org/" + +if [[ ${PV} = *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git" +else + SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" +fi + +LICENSE="LGPL-2.1+ BSD" +SLOT="0/$(ver_cut 1-2)" +IUSE="+backlight" + +BDEPEND=" + dev-qt/linguist-tools:5 + >=dev-util/lxqt-build-tools-0.13.0 +" +DEPEND=" + >=dev-libs/libqtxdg-3.11.0 + >=dev-qt/qtcore-5.15:5 + >=dev-qt/qtdbus-5.15:5 + >=dev-qt/qtgui-5.15:5 + >=dev-qt/qtwidgets-5.15:5 + >=dev-qt/qtx11extras-5.15:5 + >=dev-qt/qtxml-5.15:5 + kde-frameworks/kwindowsystem:5[X] + x11-libs/libX11 + x11-libs/libXScrnSaver + backlight? ( sys-auth/polkit-qt ) +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + -DBUILD_BACKLIGHT_LINUX_BACKEND=$(usex backlight) + ) + + cmake_src_configure +} diff --git a/lxqt-base/lxqt-about/Manifest b/lxqt-base/lxqt-about/Manifest index 341a8198e4c3..c7e685327a6b 100644 --- a/lxqt-base/lxqt-about/Manifest +++ b/lxqt-base/lxqt-about/Manifest @@ -1 +1,2 @@ DIST lxqt-about-1.2.0.tar.xz 45808 BLAKE2B e92778fc33fd5b9e2fa88cb86c8682c2dfe7d612d1391d8bd133682a97d334b7452217845bf18bab9f8fbb8f91a4eae7b64b88be564b4d490f791fba366ee017 SHA512 16513bda9dc243fad1196f30fe9f90558c96a3bbe64f7575bf8e393e95a4fd2ead3abcb5542b237b3766c5f25cc04fe782b22918bce65ab339e9b94e616f4790 +DIST lxqt-about-1.3.0.tar.xz 46236 BLAKE2B e1a9cea0d0fac6cba5a3e7b2d3cb0c8e10430870bb04c4354849764738a6f3c5afada841c2dcde9f288c34917f4aef49db13f6ee48e1082bc9d9faed84be1869 SHA512 31a96a4f2ea4961b89b9080188bd8a9fa5f304868a2ab0b96aa9821de88a9aaebf64a8257cbdd8427f4c025045dc7a13602b35311ab96b9b8297c43d5bb92bf7 diff --git a/lxqt-base/lxqt-about/lxqt-about-1.3.0.ebuild b/lxqt-base/lxqt-about/lxqt-about-1.3.0.ebuild new file mode 100644 index 000000000000..9a7601534ecd --- /dev/null +++ b/lxqt-base/lxqt-about/lxqt-about-1.3.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="LXQt about dialog" +HOMEPAGE="https://lxqt-project.org/" + +MY_PV="$(ver_cut 1-2)" + +if [[ ${PV} = *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git" +else + SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" +fi + +LICENSE="LGPL-2.1+" +SLOT="0" + +BDEPEND=">=dev-util/lxqt-build-tools-0.13.0" +DEPEND=" + >=dev-libs/libqtxdg-3.11.0 + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 + =lxqt-base/liblxqt-${MY_PV}*:= +" +RDEPEND="${DEPEND}" diff --git a/lxqt-base/lxqt-admin/Manifest b/lxqt-base/lxqt-admin/Manifest index 2ccebd6be67e..a196ca76a20f 100644 --- a/lxqt-base/lxqt-admin/Manifest +++ b/lxqt-base/lxqt-admin/Manifest @@ -1 +1,2 @@ DIST lxqt-admin-1.2.0.tar.xz 149440 BLAKE2B 51ab909b2cdb531da58130fb316cd1aba7ee4df5b502f0f09a7e110675d349dd69659393d38c126d3ee899f1c4aef7918ffe8425832b2cdfcf35f5752ed9e39f SHA512 bbb8c5c386a5a0b2123140e9a5fdfafbd7d7f12586a311d153454bc8b0af94b671af61b8b406f6ff441e059455d63684291f1eb0c45c063b2f762d19548e5035 +DIST lxqt-admin-1.3.0.tar.xz 151148 BLAKE2B b4feae9d043ea5891b3522ecc20dea677452f532f1c17f754d13d9c506ac72e4d0deb7b52359e78c749f8784c7ceddb47574e8bb162c373afb2caa60b87765b0 SHA512 5538d20466a42c5a6e31925889ce2315bd63fc15b79ede0faacd485f10a33375f9799597601dcf3bba421e7b55797b0d7c898c2b579d878c32e79ef897735ef6 diff --git a/lxqt-base/lxqt-admin/lxqt-admin-1.3.0.ebuild b/lxqt-base/lxqt-admin/lxqt-admin-1.3.0.ebuild new file mode 100644 index 000000000000..654cff780842 --- /dev/null +++ b/lxqt-base/lxqt-admin/lxqt-admin-1.3.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="LXQt system administration tool" +HOMEPAGE="https://lxqt-project.org/" + +MY_PV="$(ver_cut 1-2)" + +if [[ ${PV} = *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git" +else + SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~riscv ~x86" +fi + +LICENSE="LGPL-2.1+" +SLOT="0" + +BDEPEND=">=dev-util/lxqt-build-tools-0.13.0" +DEPEND=" + >=dev-qt/qtcore-5.15:5 + >=dev-qt/qtdbus-5.15:5 + >=dev-qt/qtgui-5.15:5 + >=dev-qt/qtwidgets-5.15:5 + =lxqt-base/liblxqt-${MY_PV}* + kde-frameworks/kwindowsystem:5 + >=sys-auth/polkit-qt-0.113.0 + =lxqt-base/liblxqt-${MY_PV}*:= +" +RDEPEND="${DEPEND}" diff --git a/lxqt-base/lxqt-config/Manifest b/lxqt-base/lxqt-config/Manifest index 49f27324d3da..5743629277c1 100644 --- a/lxqt-base/lxqt-config/Manifest +++ b/lxqt-base/lxqt-config/Manifest @@ -1 +1,2 @@ DIST lxqt-config-1.2.0.tar.xz 364972 BLAKE2B 2c4082f8b70284492d02372e03088dbade48a8288cd2e0038dd60fd4a70c4ff434188d795ec75bbd268ea3d75661751230c06a74f1cd65273934f89604c7170d SHA512 ae0f71a6ac85e80bc1d1de890148b908bda21aced0829f5f203442f3a0139dbeec44e7190adc1f5706361f4cf7a00bdead3035c63bf6da2bbba5a16a88d7b469 +DIST lxqt-config-1.3.0.tar.xz 370624 BLAKE2B 2015d2ec8f1a925e505b8c93b3db99fe351d8db742c78b2a19e8f8be7df47be619b3b5c313a693f1ac4e54b1f117aea5a706e8eae2d0fb6340fafe1b4a47412d SHA512 30610d1c90d897eb54ce5ee75a39721a7818b0164bc97dece5b74aec2032c3b0027316995d83c077352e93fd2f7ab319d1801ed5ce356b857805e855db71cd75 diff --git a/lxqt-base/lxqt-config/lxqt-config-1.3.0.ebuild b/lxqt-base/lxqt-config/lxqt-config-1.3.0.ebuild new file mode 100644 index 000000000000..ba267034532a --- /dev/null +++ b/lxqt-base/lxqt-config/lxqt-config-1.3.0.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_PV="$(ver_cut 1-2)" + +inherit cmake xdg-utils + +DESCRIPTION="LXQt system configuration control center" +HOMEPAGE="https://lxqt-project.org/" + +if [[ ${PV} = *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git" +else + SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" +fi + +LICENSE="GPL-2 GPL-2+ GPL-3 LGPL-2 LGPL-2+ LGPL-2.1+ WTFPL-2" +SLOT="0" +IUSE="+monitor +touchpad" + +BDEPEND=" + >=dev-qt/linguist-tools-5.15:5 +" +DEPEND=" + >=dev-libs/libqtxdg-3.11.0 + >=dev-qt/qtcore-5.15:5 + >=dev-qt/qtgui-5.15:5 + >=dev-qt/qtwidgets-5.15:5 + >=dev-qt/qtsvg-5.15:5 + >=dev-qt/qtx11extras-5.15:5 + >=dev-qt/qtxml-5.15:5 + =lxqt-base/liblxqt-${MY_PV}*:= + sys-libs/zlib:= + x11-apps/setxkbmap + x11-libs/libxcb:= + x11-libs/libX11 + x11-libs/libXcursor + x11-libs/libXfixes + monitor? ( kde-plasma/libkscreen:5= ) + touchpad? ( + virtual/libudev:= + x11-drivers/xf86-input-libinput + x11-libs/libXi + ) +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + -DWITH_MONITOR=$(usex monitor) + -DWITH_TOUCHPAD=$(usex touchpad) + ) + + cmake_src_configure +} + +src_install() { + cmake_src_install + doman man/*.1 liblxqt-config-cursor/man/*.1 lxqt-config-appearance/man/*.1 +} + +pkg_postinst() { + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_icon_cache_update +} diff --git a/lxqt-base/lxqt-globalkeys/Manifest b/lxqt-base/lxqt-globalkeys/Manifest index 05c645b3235d..9ebf2ac0091d 100644 --- a/lxqt-base/lxqt-globalkeys/Manifest +++ b/lxqt-base/lxqt-globalkeys/Manifest @@ -1 +1,2 @@ DIST lxqt-globalkeys-1.2.0.tar.xz 73504 BLAKE2B 604799bef68618fb2c7b71d9c944bb306a95dfd46776529bb48a3b441dbcb53da20401380ac7d7ddcd69d5661232360f4ae14f93926b144d98bb40fbd48afb37 SHA512 c1270ae03fcb2fd8b8e548898c36d57ead6b5bea62f246a1587f4093a937141c6c7339f838d1f4ff0b9bd9b9c8079ba8cf0229b575d323e6d78e8b7ccc2eb624 +DIST lxqt-globalkeys-1.3.0.tar.xz 73844 BLAKE2B 94b28a092a25895bcca39a8eb8626d19ca3c7ebcedc2898a5a2b222bdc1034c6de3ef3c98653acbc26c20e7b8ba51b54b26c1d1ceded674ab740edffabec93bf SHA512 9acdbff95734bc098b312aa906c38766a035041f8f3e58406470716013762a19d7a8f6cc07377dc8921be9aa09647fff2fef69e7c8ed15109dff71cbaf573eb7 diff --git a/lxqt-base/lxqt-globalkeys/lxqt-globalkeys-1.3.0.ebuild b/lxqt-base/lxqt-globalkeys/lxqt-globalkeys-1.3.0.ebuild new file mode 100644 index 000000000000..668a4f888f83 --- /dev/null +++ b/lxqt-base/lxqt-globalkeys/lxqt-globalkeys-1.3.0.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="Daemon and library for global keyboard shortcuts registration" +HOMEPAGE="https://lxqt-project.org/" + +MY_PV="$(ver_cut 1-2)" + +if [[ ${PV} = *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git" +else + SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" +fi + +LICENSE="LGPL-2.1 LGPL-2.1+" +SLOT="0" + +BDEPEND=" + >=dev-qt/linguist-tools-5.15:5 + >=dev-util/lxqt-build-tools-0.13.0 +" +DEPEND=" + >=dev-qt/qtcore-5.15:5 + >=dev-qt/qtdbus-5.15:5 + >=dev-qt/qtgui-5.15:5 + >=dev-qt/qtwidgets-5.15:5 + kde-frameworks/kwindowsystem:5 + =lxqt-base/liblxqt-${MY_PV}*:= + x11-libs/libX11 +" +RDEPEND="${DEPEND}" diff --git a/lxqt-base/lxqt-meta/lxqt-meta-1.3.0.ebuild b/lxqt-base/lxqt-meta/lxqt-meta-1.3.0.ebuild new file mode 100644 index 000000000000..795379cf238b --- /dev/null +++ b/lxqt-base/lxqt-meta/lxqt-meta-1.3.0.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_PV="$(ver_cut 1-2)" + +DESCRIPTION="Meta ebuild for LXQt, the Lightweight Desktop Environment" +HOMEPAGE="https://lxqt-project.org/" + +if [[ ${PV} != *9999* ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" +fi + +LICENSE="metapackage" +SLOT="0" + +IUSE="+about admin archiver +desktop-portal +display-manager +filemanager +lximage minimal nls +policykit powermanagement processviewer screenshot ++sddm ssh-askpass sudo terminal +trash" + +REQUIRED_USE="trash? ( filemanager )" + +# Note: we prefer kde-frameworks/oxygen-icons over other icon sets, as the initial +# install expects oxygen icons, until the user specifies otherwise (bug 543380) +RDEPEND=" + kde-frameworks/oxygen-icons + >=lxde-base/lxmenu-data-0.1.5 + =lxqt-base/lxqt-config-${MY_PV}* + =lxqt-base/lxqt-globalkeys-${MY_PV}* + =lxqt-base/lxqt-notificationd-${MY_PV}* + =lxqt-base/lxqt-panel-${MY_PV}* + =lxqt-base/lxqt-qtplugin-${MY_PV}* + =lxqt-base/lxqt-runner-${MY_PV}* + =lxqt-base/lxqt-session-${MY_PV}* + virtual/ttf-fonts + x11-terms/xterm + =x11-themes/lxqt-themes-${MY_PV}* + about? ( =lxqt-base/lxqt-about-${MY_PV}* ) + admin? ( =lxqt-base/lxqt-admin-${MY_PV}* ) + archiver? ( app-arch/lxqt-archiver ) + desktop-portal? ( gui-libs/xdg-desktop-portal-lxqt ) + display-manager? ( + sddm? ( >=x11-misc/sddm-0.11.0 ) + !sddm? ( x11-misc/lightdm ) + ) + filemanager? ( =x11-misc/pcmanfm-qt-${MY_PV}* ) + lximage? ( media-gfx/lximage-qt ) + !minimal? ( + x11-wm/openbox + x11-misc/obconf-qt + ) + nls? ( dev-qt/qttranslations:5 ) + policykit? ( =lxqt-base/lxqt-policykit-${MY_PV}* ) + powermanagement? ( =lxqt-base/lxqt-powermanagement-${MY_PV}* ) + processviewer? ( x11-misc/qps:0 ) + screenshot? ( x11-misc/screengrab:0 ) + sddm? ( >=x11-misc/sddm-0.11.0 ) + ssh-askpass? ( =lxqt-base/lxqt-openssh-askpass-${MY_PV}* ) + sudo? ( =lxqt-base/lxqt-sudo-${MY_PV}* ) + terminal? ( x11-terms/qterminal:0 ) + trash? ( gnome-base/gvfs ) +" diff --git a/lxqt-base/lxqt-notificationd/Manifest b/lxqt-base/lxqt-notificationd/Manifest index 6ecbab8ef06a..849b06c33b62 100644 --- a/lxqt-base/lxqt-notificationd/Manifest +++ b/lxqt-base/lxqt-notificationd/Manifest @@ -1 +1,2 @@ DIST lxqt-notificationd-1.2.0.tar.xz 60720 BLAKE2B 90d2676e4efd3a46bd6e11becf815c9746bf7ae9f8bb5de5ba48df5af433c91a285f048139cf87a3d1857c2c79ff904e75fdb3b085da80b51e196c07e17e488e SHA512 55ae52cf45942ee7992b099cbea1f81776ab7cc17401f903772458dee3e7ea1899bda13c5e6c5e117b2397dbbbe349c6e06dd389f51b03d4853b2f93c5cb000a +DIST lxqt-notificationd-1.3.0.tar.xz 61064 BLAKE2B 249a2cd764cb8ca0bbd4de1bb903df87b58d1efe6cab775edc60dfd4ac6da7bac4f83fad95d3567df7fd4adb3a0a06372fbd70b44a71a4e40b03dfdd3a062710 SHA512 8bc57c8a6710aaa5d050802a588530ec446611362eaa7c87aae2dae74b7ed9745486a90efbd854dedf79bc9994e13b5444f8b5259452614e01a8b393dd796607 diff --git a/lxqt-base/lxqt-notificationd/lxqt-notificationd-1.3.0.ebuild b/lxqt-base/lxqt-notificationd/lxqt-notificationd-1.3.0.ebuild new file mode 100644 index 000000000000..4f65c2d4b0d3 --- /dev/null +++ b/lxqt-base/lxqt-notificationd/lxqt-notificationd-1.3.0.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="LXQt notification daemon and library" +HOMEPAGE="https://lxqt-project.org/" + +MY_PV="$(ver_cut 1-2)" + +if [[ ${PV} = *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git" +else + SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" +fi + +LICENSE="LGPL-2.1 LGPL-2.1+" +SLOT="0" + +BDEPEND=" + dev-qt/linguist-tools:5 + >=dev-util/lxqt-build-tools-0.13.0 +" +DEPEND=" + >=dev-libs/libqtxdg-3.11.0 + >=dev-qt/qtcore-5.15:5 + >=dev-qt/qtdbus-5.15:5 + >=dev-qt/qtgui-5.15:5 + >=dev-qt/qtwidgets-5.15:5 + kde-frameworks/kwindowsystem:5 + =lxqt-base/liblxqt-${MY_PV}*:= +" +RDEPEND="${DEPEND}" diff --git a/lxqt-base/lxqt-openssh-askpass/Manifest b/lxqt-base/lxqt-openssh-askpass/Manifest index a1eba98df18e..a8734ce7e1a1 100644 --- a/lxqt-base/lxqt-openssh-askpass/Manifest +++ b/lxqt-base/lxqt-openssh-askpass/Manifest @@ -1 +1,2 @@ DIST lxqt-openssh-askpass-1.2.0.tar.xz 17476 BLAKE2B d5bfe5e7081beb527cc8dda54aac28514af1d683cb24e931d1175d941c4928f7186b3f42310d95b034138d0021612f16b1bf274ad54ac59586d9a8df287400e1 SHA512 8093516f6e1616a5e012d9af2c491580ab8a35053d4c47045b95a151e2e0e0c6f4055e2cb009140883b31057911d5fec80d5a1f84be8e15f7470dbc0e348960e +DIST lxqt-openssh-askpass-1.3.0.tar.xz 17560 BLAKE2B 509ce775ffe3030017d5a37e31a8c979ab1c5c7e963cdc36bb9c70cd34e860d2c017e894e58d905be7a3b86d3efccae7ab464804640b1e958422a3b89a272614 SHA512 82f632577cc5b73dda54c8cdea0feadfb4a1f768e7b1d58b2c9e1f12eb40cbec88e7e31a4afc76efe153b5e424c205dde8a19c2249ed7ab6655f7376e54f1950 diff --git a/lxqt-base/lxqt-openssh-askpass/lxqt-openssh-askpass-1.3.0.ebuild b/lxqt-base/lxqt-openssh-askpass/lxqt-openssh-askpass-1.3.0.ebuild new file mode 100644 index 000000000000..774ad3d3fe66 --- /dev/null +++ b/lxqt-base/lxqt-openssh-askpass/lxqt-openssh-askpass-1.3.0.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="LXQt OpenSSH user password prompt tool" +HOMEPAGE="https://lxqt-project.org/" + +MY_PV="$(ver_cut 1-2)" + +if [[ ${PV} = *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git" +else + SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" +fi + +LICENSE="LGPL-2.1 LGPL-2.1+" +SLOT="0" + +BDEPEND=" + >=dev-qt/linguist-tools-5.15:5 +" +DEPEND=" + >=dev-qt/qtcore-5.15:5 + >=dev-qt/qtwidgets-5.15:5 + =lxqt-base/liblxqt-${MY_PV}*:= +" +RDEPEND="${DEPEND}" + +src_install() { + cmake_src_install + doman man/*.1 + + newenvd - 99${PN} <<- _EOF_ + SSH_ASKPASS='${EPREFIX}/usr/bin/lxqt-openssh-askpass' + _EOF_ +} diff --git a/lxqt-base/lxqt-panel/Manifest b/lxqt-base/lxqt-panel/Manifest index 0249c83df9bc..4b20787b7a84 100644 --- a/lxqt-base/lxqt-panel/Manifest +++ b/lxqt-base/lxqt-panel/Manifest @@ -1 +1,2 @@ DIST lxqt-panel-1.2.0.tar.xz 563852 BLAKE2B 78822e0a268448e0ffabec2a8418d7b72d585a8644cf7f1ee3fcd4aa6723bfd5f158ee38a3facf4410575a918e3cd4c331427d74c961ea2a17497fc464140d5c SHA512 7042cf585c153524aaa43b074f3a9f5c2848e2baf200134ca8194f4ffceda438e55d2cff6cc1c37274b35491234800d728cd89cec89cb42dc914a5bba924f3b6 +DIST lxqt-panel-1.3.0.tar.xz 610764 BLAKE2B 96d4f0368a5071badec0c7dfbcb1f5c9592723fa2ca3be81fe47e0cdccd3108451f204c6de95c154d2ca03f7554fe639afd257f72d554682fabc2bd493ab896d SHA512 1bf66db90e4fbd1ec38688b3a27c9dc5ab2e0a71ace74555580c379e9e12211ded61d01fa46484e8a600bb9b30cb3203ec38697ade0a9cb81cb2cd8043af8b97 diff --git a/lxqt-base/lxqt-panel/lxqt-panel-1.3.0.ebuild b/lxqt-base/lxqt-panel/lxqt-panel-1.3.0.ebuild new file mode 100644 index 000000000000..00ca261b2d51 --- /dev/null +++ b/lxqt-base/lxqt-panel/lxqt-panel-1.3.0.ebuild @@ -0,0 +1,117 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="LXQt desktop panel and plugins" +HOMEPAGE="https://lxqt-project.org/" + +MY_PV="$(ver_cut 1-2)" + +if [[ ${PV} = *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git" +else + SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" +fi + +LICENSE="LGPL-2.1 LGPL-2.1+" +SLOT="0" +IUSE="+alsa colorpicker cpuload +desktopswitch +directorymenu dom +kbindicator ++mainmenu +mount networkmonitor pulseaudio +quicklaunch lm-sensors +showdesktop ++spacer +statusnotifier sysstat +taskbar tray +volume +worldclock" + +# Work around a missing header issue: https://bugs.gentoo.org/666278 +REQUIRED_USE=" + || ( desktopswitch mainmenu showdesktop taskbar ) + volume? ( || ( alsa pulseaudio ) ) +" + +BDEPEND=" + >=dev-qt/linguist-tools-5.15:5 + >=dev-util/lxqt-build-tools-0.13.0 + virtual/pkgconfig +" +DEPEND=" + >=dev-libs/libqtxdg-3.11.0 + >=dev-qt/qtcore-5.15:5 + >=dev-qt/qtdbus-5.15:5 + >=dev-qt/qtgui-5.15:5 + >=dev-qt/qtsvg-5.15:5 + >=dev-qt/qtwidgets-5.15:5 + >=dev-qt/qtx11extras-5.15:5 + >=dev-qt/qtxml-5.15:5 + kde-frameworks/kwindowsystem:5[X] + >=lxde-base/lxmenu-data-0.1.5 + >=lxde-base/menu-cache-1.1.0 + =lxqt-base/liblxqt-${MY_PV}*:= + =lxqt-base/lxqt-globalkeys-${MY_PV}* + x11-libs/libX11 + cpuload? ( sys-libs/libstatgrab ) + kbindicator? ( x11-libs/libxkbcommon ) + lm-sensors? ( sys-apps/lm-sensors:= ) + mount? ( kde-frameworks/solid:5 ) + networkmonitor? ( sys-libs/libstatgrab ) + statusnotifier? ( + dev-libs/libdbusmenu-qt[qt5(+)] + >=dev-qt/qtconcurrent-5.15:5 + ) + sysstat? ( >=lxqt-base/libsysstat-0.4.6 ) + tray? ( + x11-libs/libxcb:= + x11-libs/libXcomposite + x11-libs/libXdamage + x11-libs/libXrender + x11-libs/xcb-util + ) + volume? ( + alsa? ( media-libs/alsa-lib ) + pulseaudio? ( + media-sound/pavucontrol-qt + media-sound/pulseaudio + ) + ) +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + # Plugins + -DCOLORPICKER_PLUGIN=$(usex colorpicker) + -DCPULOAD_PLUGIN=$(usex cpuload) + -DDESKTOPSWITCH_PLUGIN=$(usex desktopswitch) + -DDIRECTORYMENU_PLUGIN=$(usex directorymenu) + -DDOM_PLUGIN=$(usex dom) + -DKBINDICATOR_PLUGIN=$(usex kbindicator) + -DMAINMENU_PLUGIN=$(usex mainmenu) + -DMOUNT_PLUGIN=$(usex mount) + -DNETWORKMONITOR_PLUGIN=$(usex networkmonitor) + -DQUICKLAUNCH_PLUGIN=$(usex quicklaunch) + -DSENSORS_PLUGIN=$(usex lm-sensors) + -DSHOWDESKTOP_PLUGIN=$(usex showdesktop) + -DSPACER_PLUGIN=$(usex spacer) + -DSTATUSNOTIFIER_PLUGIN=$(usex statusnotifier) + -DSYSSTAT_PLUGIN=$(usex sysstat) + -DTASKBAR_PLUGIN=$(usex taskbar) + -DTRAY_PLUGIN=$(usex tray) + -DVOLUME_PLUGIN=$(usex volume) + -DWORLDCLOCK_PLUGIN=$(usex worldclock) + ) + + if use volume; then + mycmakeargs+=( + -DVOLUME_USE_ALSA=$(usex alsa) + -DVOLUME_USE_PULSEAUDIO=$(usex pulseaudio) + ) + fi + + cmake_src_configure +} + +src_install() { + cmake_src_install + doman panel/man/*.1 +} diff --git a/lxqt-base/lxqt-policykit/Manifest b/lxqt-base/lxqt-policykit/Manifest index d92e56af7492..e8806fdd8ea6 100644 --- a/lxqt-base/lxqt-policykit/Manifest +++ b/lxqt-base/lxqt-policykit/Manifest @@ -1 +1,2 @@ DIST lxqt-policykit-1.2.0.tar.xz 39188 BLAKE2B b127a39a360ace73b3043e906ee435c28b8cdb18bd4e704e9e2be01ad1ed18f2c4626802952b169b27a086643397c3d697bd44adfc7e1a01de27f8aa8c31ddb3 SHA512 ba11f0cae52ad3f2e5db55e040bb02f11841d60d3497e483329b81a3cdc8caae8e9e6df08d702314ff9715f7919db2b3cfe82773dccd2d9e385a7b9ab77cf67f +DIST lxqt-policykit-1.3.0.tar.xz 39344 BLAKE2B ea816eb811a359ae67e2ac6b6b54b4d4af11bd41c450da013a974003253cfff3e4cc0f81768ee96231e426dbdf6a17ad04d8ce0750538e1de6009421ccf745c3 SHA512 4a05064f988bd2eb35c4b889fbb098a7617eb7a702deba35338f0f3dfc6e5946505b35f3c022a33bad0e268c710bf7f3c0cdf84160054e118298ee390db8af45 diff --git a/lxqt-base/lxqt-policykit/lxqt-policykit-1.3.0.ebuild b/lxqt-base/lxqt-policykit/lxqt-policykit-1.3.0.ebuild new file mode 100644 index 000000000000..05cc1b106217 --- /dev/null +++ b/lxqt-base/lxqt-policykit/lxqt-policykit-1.3.0.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="LXQt PolKit authentication agent" +HOMEPAGE="https://lxqt-project.org/" + +MY_PV="$(ver_cut 1-2)" + +if [[ ${PV} = *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git" +else + SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" +fi + +LICENSE="LGPL-2.1 LGPL-2.1+" +SLOT="0" + +BDEPEND=" + >=dev-qt/linguist-tools-5.15:5 + >=dev-util/lxqt-build-tools-0.13.0 + virtual/pkgconfig +" +DEPEND=" + >=dev-qt/qtcore-5.15:5 + >=dev-qt/qtgui-5.15:5 + >=dev-qt/qtwidgets-5.15:5 + =lxqt-base/liblxqt-${MY_PV}*:= + >=sys-auth/polkit-qt-0.113.0 +" +RDEPEND="${DEPEND}" + +src_install() { + cmake_src_install + doman man/*.1 +} diff --git a/lxqt-base/lxqt-powermanagement/Manifest b/lxqt-base/lxqt-powermanagement/Manifest index 2097baab4595..b11324d11115 100644 --- a/lxqt-base/lxqt-powermanagement/Manifest +++ b/lxqt-base/lxqt-powermanagement/Manifest @@ -1 +1,2 @@ DIST lxqt-powermanagement-1.2.0.tar.xz 89440 BLAKE2B a608878a205fa08cbb517f133def3bd25e878dcca622f586fe1491f593610ff910e1e986a83c3bbdd9657fafd2f1854a8094f53060f4b7576cf8ebe27a65280a SHA512 5aa3f4413ff5acac7a75d0893628302df50fdf7752ac7d4e9f6a7cf83a8f2860a8bff858c1cebbd2ed44e8adf0887b64aec7d2203a5fef9a54d5fe11b64176c9 +DIST lxqt-powermanagement-1.3.0.tar.xz 91852 BLAKE2B 28deb2120974a000333bba6bc5b9922abb40f2fd0efde07d8a8cf32c2c7172e796107f4b0c3a9332ff4f179fb02a2ecd7e856dfd746d85eaf8a627ce897c2e7c SHA512 79891ba791a167c8b4b27acd309908b0badafcf273aca880c4db592b776d8672d240bc8d4a9552cb83195a9a9929e5b1722a6d20be3ea810c3dcb61dc83fd323 diff --git a/lxqt-base/lxqt-powermanagement/lxqt-powermanagement-1.3.0.ebuild b/lxqt-base/lxqt-powermanagement/lxqt-powermanagement-1.3.0.ebuild new file mode 100644 index 000000000000..cf70d933a82a --- /dev/null +++ b/lxqt-base/lxqt-powermanagement/lxqt-powermanagement-1.3.0.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake xdg-utils + +DESCRIPTION="LXQt daemon for power management and auto-suspend" +HOMEPAGE="https://lxqt-project.org/" + +MY_PV="$(ver_cut 1-2)" + +if [[ ${PV} == *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git" +else + SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~riscv ~x86" +fi + +LICENSE="LGPL-2.1 LGPL-2.1+" +SLOT="0" + +BDEPEND=" + >=dev-qt/linguist-tools-5.15:5 + >=dev-util/lxqt-build-tools-0.13.0 + virtual/pkgconfig +" +DEPEND=" + >=dev-libs/libqtxdg-3.11.0 + >=dev-qt/qtcore-5.15:5 + >=dev-qt/qtdbus-5.15:5 + >=dev-qt/qtgui-5.15:5 + >=dev-qt/qtsvg-5.15:5 + >=dev-qt/qtwidgets-5.15:5 + kde-frameworks/kwindowsystem:5 + kde-frameworks/kidletime:5 + kde-frameworks/solid:5 + =lxqt-base/liblxqt-${MY_PV}*:= + =lxqt-base/lxqt-globalkeys-${MY_PV}* + sys-power/upower +" +RDEPEND="${DEPEND}" + +pkg_postinst() { + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_icon_cache_update +} diff --git a/lxqt-base/lxqt-qtplugin/Manifest b/lxqt-base/lxqt-qtplugin/Manifest index 5d6db1255c41..274b135e6afa 100644 --- a/lxqt-base/lxqt-qtplugin/Manifest +++ b/lxqt-base/lxqt-qtplugin/Manifest @@ -1 +1,2 @@ DIST lxqt-qtplugin-1.2.0.tar.xz 23848 BLAKE2B 02a97d6291ea9dce1cb7458283be5704eddd6a9ba503618cf6dca052fcb0aa25cc31419bef3e71e5b9270ed04ab151d0d197fb8226e3b99217399d8b615c588e SHA512 9c46b36e64a4b9f0b26bfac75a5fc1ba3a1af7a435526bc55fc9cee14b6bf51aa681d8bbb6eae56eadf26b7da23b37f833f56eddcdc8855cacb7f9c616c18ce4 +DIST lxqt-qtplugin-1.3.0.tar.xz 23864 BLAKE2B 4aa79eb0513a3efac265707864137ec935042d3357395fa9e08e1b735015e665c95afe45c8c32c262a76e2d8bd92e80956965cd65e64eef0d409094e4e56b7c1 SHA512 a1fefe5af7aacfb3c594fa1c181c2146c702fe0fabaf269c7e22e5755026accc68745d4ba64cd725ba66691f704c5a5d69658b55188b9919586601efbadc27ff diff --git a/lxqt-base/lxqt-qtplugin/lxqt-qtplugin-1.3.0.ebuild b/lxqt-base/lxqt-qtplugin/lxqt-qtplugin-1.3.0.ebuild new file mode 100644 index 000000000000..3ee5742c21af --- /dev/null +++ b/lxqt-base/lxqt-qtplugin/lxqt-qtplugin-1.3.0.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_PV="$(ver_cut 1-2)" + +inherit cmake + +DESCRIPTION="LXQt system integration plugin for Qt" +HOMEPAGE="https://lxqt-project.org/" + +if [[ ${PV} = *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git" +else + SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" +fi + +LICENSE="LGPL-2.1+" +SLOT="0" + +BDEPEND=" + >=dev-qt/linguist-tools-5.15:5 + >=dev-util/lxqt-build-tools-0.13.0 +" +DEPEND=" + dev-libs/libdbusmenu-qt[qt5(+)] + >=dev-libs/libqtxdg-3.11.0 + >=dev-qt/qtcore-5.15:5 + >=dev-qt/qtdbus-5.15:5 + >=dev-qt/qtgui-5.15:5= + >=dev-qt/qtwidgets-5.15:5 + =x11-libs/libfm-qt-${MY_PV}* +" +RDEPEND="${DEPEND}" diff --git a/lxqt-base/lxqt-runner/Manifest b/lxqt-base/lxqt-runner/Manifest index 0156aa608d28..89fd0b81ce4e 100644 --- a/lxqt-base/lxqt-runner/Manifest +++ b/lxqt-base/lxqt-runner/Manifest @@ -1 +1,2 @@ DIST lxqt-runner-1.2.0.tar.xz 267912 BLAKE2B 26d0f0dd8745fe13dfe5af9e254ada68db0de0c07331a6fa2f6c2c05e9b9536528e8a3c09704d090dcbc9104381691ae1eaa77312e998245b8d189ef705052ae SHA512 098add122e4c31ed5428362c4246ea2d76e734c309c3af10dc790b84cf6aa11f5c9ff8f94680b0a35c20ce48927f323917481dc8cd2304d13c796172974b54e6 +DIST lxqt-runner-1.3.0.tar.xz 223880 BLAKE2B 2ba95d7d24bbdf656ed364c449513c65d340bc55b283ef1914244151068d99b3f67d76622286f246eeeddd4bdd09cf59fdd3ea127ce11c244a92189b16ae9203 SHA512 79351e4cebb14ce6578197dc4d4ec3ee3b5be3d3832da778b075c5e2da38dcb518113c8076a4488570e68f51cedc5a3fe4855e296e813aa2b848a386ddcd6fbc diff --git a/lxqt-base/lxqt-runner/lxqt-runner-1.3.0.ebuild b/lxqt-base/lxqt-runner/lxqt-runner-1.3.0.ebuild new file mode 100644 index 000000000000..e04d534c2255 --- /dev/null +++ b/lxqt-base/lxqt-runner/lxqt-runner-1.3.0.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="LXQt quick launcher" +HOMEPAGE="https://lxqt-project.org/" + +MY_PV="$(ver_cut 1-2)" + +if [[ ${PV} = *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git" +else + SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" +fi + +LICENSE="LGPL-2.1 LGPL-2.1+" +SLOT="0" + +BDEPEND=" + >=dev-qt/linguist-tools-5.15:5 + >=dev-util/lxqt-build-tools-0.13.0 + virtual/pkgconfig +" +DEPEND=" + >=dev-cpp/muParser-2.2.3 + >=dev-libs/libqtxdg-3.11.0 + >=dev-qt/qtcore-5.15:5 + >=dev-qt/qtgui-5.15:5 + >=dev-qt/qtwidgets-5.15:5 + >=dev-qt/qtxml-5.15:5 + kde-frameworks/kwindowsystem:5 + =lxqt-base/liblxqt-${MY_PV}*:= + =lxqt-base/lxqt-globalkeys-${MY_PV}* +" +RDEPEND="${DEPEND}" + +src_install() { + cmake_src_install + doman man/*.1 +} diff --git a/lxqt-base/lxqt-session/Manifest b/lxqt-base/lxqt-session/Manifest index ef273b1ea6c1..a0f473be4ff9 100644 --- a/lxqt-base/lxqt-session/Manifest +++ b/lxqt-base/lxqt-session/Manifest @@ -1 +1,2 @@ DIST lxqt-session-1.2.0.tar.xz 185092 BLAKE2B 625a099628203b3b75ad77490e58dba19c89e1ce9de49006d649e228b1ff74f5a2f4743b35e4ba161737eef6eca42cedcead0e50ea62b9e4a25e3d7680e1c363 SHA512 9edbf8ef084ebf5b3fc2e9b30c20d537d1dcefc518428e4367fd4a3ecb9e6a67fb4f8a56def838fb6ff167c481398491de4309f2ad16465bba1bbca1f1b7cf4d +DIST lxqt-session-1.3.0.tar.xz 186860 BLAKE2B 7b52f82f2d4bc75bf03e7d2e3456797238ea91856088b2e39f8b5caa4f4f55ab92292e875d3aeb845e96e98435936a1fb0bf6db1c1d04091f5df80d75745bb22 SHA512 4ad358ad8a01fe6df697cb4dc19abee7ed9b37dce13022e2fc1b309a5adbb942c69fc4de401fbc16e51394d38482a98bf2f5ebcc0a64194e03bd714691ad96db diff --git a/lxqt-base/lxqt-session/lxqt-session-1.3.0.ebuild b/lxqt-base/lxqt-session/lxqt-session-1.3.0.ebuild new file mode 100644 index 000000000000..52baaa17be4b --- /dev/null +++ b/lxqt-base/lxqt-session/lxqt-session-1.3.0.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="LXQt Session Manager" +HOMEPAGE="https://lxqt-project.org/" + +MY_PV="$(ver_cut 1-2)" + +if [[ ${PV} = *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git" +else + SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" +fi + +IUSE="+udev" + +LICENSE="LGPL-2.1 LGPL-2.1+" +SLOT="0" + +BDEPEND=" + >=dev-qt/linguist-tools-5.15:5 + >=dev-util/lxqt-build-tools-0.13.0 +" +DEPEND=" + >=app-misc/qtxdg-tools-3.11.0 + >=dev-libs/libqtxdg-3.11.0 + >=dev-qt/qtcore-5.15:5 + >=dev-qt/qtdbus-5.15:5 + >=dev-qt/qtgui-5.15:5 + >=dev-qt/qtwidgets-5.15:5 + >=dev-qt/qtx11extras-5.15:5 + kde-frameworks/kwindowsystem:5[X] + =lxqt-base/liblxqt-${MY_PV}*:= + sys-process/procps:= + x11-libs/libX11 + x11-misc/xdg-user-dirs + udev? ( virtual/libudev:= ) +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + -DWITH_LIBUDEV=$(usex udev) + ) + cmake_src_configure +} + +src_install() { + cmake_src_install + doman lxqt-config-session/man/*.1 lxqt-session/man/*.1 + + newenvd - 91lxqt-config-dir <<- _EOF_ + XDG_CONFIG_DIRS='${EPREFIX}/usr/share' + _EOF_ +} diff --git a/lxqt-base/lxqt-sudo/Manifest b/lxqt-base/lxqt-sudo/Manifest index eee342cb9cf8..2b0cb4014761 100644 --- a/lxqt-base/lxqt-sudo/Manifest +++ b/lxqt-base/lxqt-sudo/Manifest @@ -1 +1,2 @@ DIST lxqt-sudo-1.2.0.tar.xz 37312 BLAKE2B 716fc26f17e920563d7f8ac73e69f5598f7c4a70e57dc7a80b1f702e543725f85421c81264ac0a28dd1040008da99fb72746a01142166a77d94ccd9f747fc566 SHA512 4b2d91e4f6d364c583ec4db893469628000369b08438f4ea26428621b929f26770c8f8b4b756acd865b404cb2a5e6921161527ff133394a90f0592226bfe3ea8 +DIST lxqt-sudo-1.3.0.tar.xz 37796 BLAKE2B 43f551182bbf52fdc8380c7fb6d2b729fac983e7c7fe4834e7981cf7da950e9f8cfcd67dc5a3a4fddb690d3c9e09ef33f8cc269e928ed7ae8bd92084d09512bc SHA512 43ee7a0a1322258591259bf248651bd0ca5f438a38e8ac11c5b0edc3fa132b5b269a023a648f707a5844640ff30835155d3830955285608d6c157f72fe23debd diff --git a/lxqt-base/lxqt-sudo/lxqt-sudo-1.3.0.ebuild b/lxqt-base/lxqt-sudo/lxqt-sudo-1.3.0.ebuild new file mode 100644 index 000000000000..93e63e6f442b --- /dev/null +++ b/lxqt-base/lxqt-sudo/lxqt-sudo-1.3.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="LXQt GUI frontend for sudo" +HOMEPAGE="https://lxqt-project.org/" + +if [[ ${PV} = *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git" +else + SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~riscv ~x86" +fi + +LICENSE="LGPL-2.1 LGPL-2.1+" +SLOT="0" + +BDEPEND=">=dev-util/lxqt-build-tools-0.13.0" +DEPEND=" + app-admin/sudo + >=dev-qt/qtgui-5.15:5 + >=dev-qt/qtcore-5.15:5 + >=dev-qt/qtwidgets-5.15:5 + ~lxqt-base/liblxqt-${PV}:= +" +RDEPEND="${DEPEND}" diff --git a/mail-mta/Manifest.gz b/mail-mta/Manifest.gz index 90f54fcdd0f8..2092a14100b4 100644 Binary files a/mail-mta/Manifest.gz and b/mail-mta/Manifest.gz differ diff --git a/mail-mta/postfix/Manifest b/mail-mta/postfix/Manifest index 5d17f8c3f0a4..c06521ec17e9 100644 --- a/mail-mta/postfix/Manifest +++ b/mail-mta/postfix/Manifest @@ -1,3 +1,3 @@ DIST postfix-3.7.4.tar.gz 4833834 BLAKE2B edb716ef4576d339189f11b535a62f3c6f8f28613723d916f13cdd2d37228aa8768dacdb9d8616c83f0ded3a3c801c45747375ea6cfa505b668a7163c4637128 SHA512 972738291b960c90fe83861d55b1288900416167adb353418956e69bcc709a6daf84fbfde11d573eebba030654d27abc8d55f90661a2b880ccfb3a334064c236 -DIST postfix-3.8.0-RC1.tar.gz 4856059 BLAKE2B 9059099d2abfa1dd7e17ebfef07a96eaac36fde3c406e85ef219cba6ce39d8abd5ca9a955d8eaec4f8a8db0497adba975fb48a4c900476b2d2333993c8880b4d SHA512 70e11dd99c21c9ab86b02fea123011c936fc4ad360fc934dda9037ea4a65bba52044fba4b6287dcebcd07c07734164e7fdb34f974df980ee2f16911f2ba47da5 -DIST postfix-3.9-20230412.tar.gz 4826826 BLAKE2B 7a2f40de42ee0d5203d9b81de7eda5b4ca7fe4d1229042ef8d794222f72b720201d265dc527513fac45406fe4aa6bbe3483f8794b6e85afc9cd40355a43c92d1 SHA512 6f965cd03042c674743c129f7482ccc7ff96195952d324997a7871539d8789bdb1433a9a6a30ac3fb7c9689a9a61935bc9460952f272dcc5f39188b176c26ed9 +DIST postfix-3.8.0.tar.gz 4851893 BLAKE2B 3ef0c0c83eed3263c890143ae962674dfbfa01f589f1b503a01d57497e4732171aa58468357276f29a9454c577573e8442095c2db25005324754dbd305875297 SHA512 a66956b0cc5eb6ad5ee926348b584ba5640586784aec794a84c40472faecb6313d46537c9f5696edfd8fda070591925a0cfaedc014e15bb3496195e5fb9ee4bd +DIST postfix-3.9-20230416.tar.gz 4823390 BLAKE2B 5289aacfee4c7b4db34e520b2831ee7b700767eacc28396d14c17e6c7a1b213b51cb2731aa853f2a3a521f654d5a38f83c70cd21221ea71be484fa205b644e57 SHA512 40f3811cb59b843e767dcac163df0c1a6162e826deb162bf5ac35344ab5f40cd6333ec0d96e0f472ceed3800d5cd5f3429ea61749f4a66bd7e3091d9564ba9a3 diff --git a/mail-mta/postfix/postfix-3.8.0_rc1.ebuild b/mail-mta/postfix/postfix-3.8.0.ebuild similarity index 100% rename from mail-mta/postfix/postfix-3.8.0_rc1.ebuild rename to mail-mta/postfix/postfix-3.8.0.ebuild diff --git a/mail-mta/postfix/postfix-3.9_pre20230412.ebuild b/mail-mta/postfix/postfix-3.9_pre20230416.ebuild similarity index 100% rename from mail-mta/postfix/postfix-3.9_pre20230412.ebuild rename to mail-mta/postfix/postfix-3.9_pre20230416.ebuild diff --git a/media-fonts/Manifest.gz b/media-fonts/Manifest.gz index f41570589770..d62b7edb7971 100644 Binary files a/media-fonts/Manifest.gz and b/media-fonts/Manifest.gz differ diff --git a/media-fonts/noto/Manifest b/media-fonts/noto/Manifest index d3d040c7cb06..f5a0c5e4d7be 100644 --- a/media-fonts/noto/Manifest +++ b/media-fonts/noto/Manifest @@ -1,2 +1,3 @@ DIST noto-20201226.tar.gz 903613276 BLAKE2B b6ae0357a854b775ca43768609775624370d2f13ae65d05e699105cfacff4bb919ca19f757d4f2fbfde2d24fdfe6c5d6d3b5993a071b0d081948ef8ed6c5eb76 SHA512 240ae214729388e7000a4e12a1fc81b0b562ca6f3fcb4fcdef66a27c1b193825fbf2d0fd4cc8fbae4cd17f57e21fd1589150cb02b7b618d670742692b748f9ff DIST noto-20230201.tar.gz 1006343445 BLAKE2B 42d8c4777751f28d03ef45335e75f8c7b267f80a83dbddd9d6939a8e43f194bea95691d2d9e9977244a2e33fc9b29967db7fb1211c8ec1ca4a1a6232ed740ba6 SHA512 3884c89659823fa25d95c48edb89856068d506eec36645e2f0e06f7465d3feac28b68c71d584ed513c7ad1e1d2b322a6be5576ebf15963fe10c92d25461e2fa3 +DIST noto-20230331.tar.gz 1020818875 BLAKE2B 82df27ba94a15ba16fb7c47168ffd9684e030f478c91b98c7c99b97f9d0179f2124ffd68e662dab3edd1643ce032c35e4197d6f8c4f206a621a53b894b0c19a3 SHA512 e839a942e358b37acc47f57f9046a74b2370938b02de686d3dc89532d7ec0a664945f5010bada332466478b7b0d3b4866ce17ac568300ccee2bc27ee9da9e838 diff --git a/media-fonts/noto/noto-20230201.ebuild b/media-fonts/noto/noto-20230201.ebuild index 4dcad07f1e0e..e16cfa51b6f6 100644 --- a/media-fonts/noto/noto-20230201.ebuild +++ b/media-fonts/noto/noto-20230201.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/notofonts/notofonts.github.io/archive/${COMMIT}.tar. LICENSE="OFL-1.1" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="~alpha amd64 arm arm64 ~loong ~mips ~ppc ppc64 ~riscv sparc x86" # Extra allows to optionally reduce disk usage even returning to tofu # issue as described in https://www.google.com/get/noto/ IUSE="cjk +extra" diff --git a/media-fonts/noto/noto-20230331.ebuild b/media-fonts/noto/noto-20230331.ebuild new file mode 100644 index 000000000000..87adb51bb31d --- /dev/null +++ b/media-fonts/noto/noto-20230331.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit font + +DESCRIPTION="Google's font family that aims to support all the world's languages" +HOMEPAGE="https://www.google.com/get/noto/ https://github.com/notofonts/notofonts.github.io" + +COMMIT="021feeb29f58d54a45449c89f53d17b5bfa9fd56" +SRC_URI="https://github.com/notofonts/notofonts.github.io/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" + +LICENSE="OFL-1.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" +# Extra allows to optionally reduce disk usage even returning to tofu +# issue as described in https://www.google.com/get/noto/ +IUSE="cjk +extra" + +RDEPEND="cjk? ( media-fonts/noto-cjk )" +DEPEND="" + +RESTRICT="binchecks strip" + +S="${WORKDIR}/notofonts.github.io-${COMMIT}" + +FONT_SUFFIX="ttf" +FONT_CONF=( + # From ArchLinux + "${FILESDIR}/66-noto-serif.conf" + "${FILESDIR}/66-noto-mono.conf" + "${FILESDIR}/66-noto-sans.conf" +) + +src_install() { + mkdir install-hinted || die + mv fonts/*/hinted/ttf/*.tt[fc] install-hinted/. || die + + FONT_S="${S}/install-hinted/" font_src_install + + # Allow to drop some fonts optionally for people that want to save + # disk space. Following ArchLinux options. + use extra || rm -rf "${ED}"/usr/share/fonts/noto/Noto*{Condensed,SemiBold,Extra}*.tt[f,c] +} diff --git a/media-gfx/Manifest.gz b/media-gfx/Manifest.gz index fdd737b117c9..938537ccc9ec 100644 Binary files a/media-gfx/Manifest.gz and b/media-gfx/Manifest.gz differ diff --git a/media-gfx/lximage-qt/Manifest b/media-gfx/lximage-qt/Manifest index fd2ac9af3eba..eb603c253ce3 100644 --- a/media-gfx/lximage-qt/Manifest +++ b/media-gfx/lximage-qt/Manifest @@ -1 +1,2 @@ DIST lximage-qt-1.2.0.tar.xz 837692 BLAKE2B a51ad797882d2725e488226954672df1d6a175237ba5d0f21930af135c92afb46648ba3965f5e65c026eceb324a1e109a08b8f9921dff27d3f6685d35e898da7 SHA512 aa7cbc9f9e2e0ea1ea0cda446887002e285a17b54adb0bd87def1fabc9ad9dd5d25c5c1db56785e67f4767c2da8d8db9b4e73a440c676f80d7094434357b86e1 +DIST lximage-qt-1.3.0.tar.xz 838632 BLAKE2B eceee2fcdd6eae2360c8c7d27417d4e165520155050dae6c0fadfa22184634372582ac52c6233924b54b9d94e814967eb0abdd8ee3e7c719cdfde85840b51400 SHA512 c3fc8e24f78a9cd65736ba1af07b7fd5ba241eab233a595f7b05982d64a0a7a88d81c60eafea632779faa44f76cdb3bb501d2dc3b3758e3f6256fe2da10c37ac diff --git a/media-gfx/lximage-qt/lximage-qt-1.3.0.ebuild b/media-gfx/lximage-qt/lximage-qt-1.3.0.ebuild new file mode 100644 index 000000000000..28536ab0b803 --- /dev/null +++ b/media-gfx/lximage-qt/lximage-qt-1.3.0.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_PV="$(ver_cut 1-2)" + +inherit cmake xdg-utils + +DESCRIPTION="Qt Image Viewer" +HOMEPAGE="https://lxqt-project.org/" + +if [[ ${PV} = *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git" +else + SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" +fi + +LICENSE="GPL-2 GPL-2+" +SLOT="0" + +BDEPEND=" + >=dev-qt/linguist-tools-5.15:5 + >=dev-util/lxqt-build-tools-0.13.0 + virtual/pkgconfig +" +DEPEND=" + dev-libs/glib:2 + >=dev-qt/qtcore-5.15:5 + >=dev-qt/qtdbus-5.15:5 + >=dev-qt/qtgui-5.15:5 + >=dev-qt/qtnetwork-5.15:5 + >=dev-qt/qtprintsupport-5.15:5 + >=dev-qt/qtsvg-5.15:5 + >=dev-qt/qtwidgets-5.15:5 + >=dev-qt/qtx11extras-5.15:5 + media-libs/libexif + =x11-libs/libfm-qt-${MY_PV}*:= + x11-libs/libX11 + x11-libs/libXfixes +" +RDEPEND="${DEPEND}" + +pkg_postinst() { + xdg_desktop_database_update + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_icon_cache_update +} diff --git a/media-libs/Manifest.gz b/media-libs/Manifest.gz index 97468471a529..6f7f22592b3a 100644 Binary files a/media-libs/Manifest.gz and b/media-libs/Manifest.gz differ diff --git a/media-libs/libass/libass-0.17.1.ebuild b/media-libs/libass/libass-0.17.1.ebuild index 2edae7ac0760..507e23173a87 100644 --- a/media-libs/libass/libass-0.17.1.ebuild +++ b/media-libs/libass/libass-0.17.1.ebuild @@ -13,7 +13,7 @@ SRC_URI+=" verify-sig? ( https://github.com/libass/libass/releases/download/${PV LICENSE="ISC" SLOT="0/9" # subslot = libass soname version -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris" IUSE="+fontconfig test" RESTRICT="!test? ( test )" diff --git a/media-libs/libplacebo/Manifest b/media-libs/libplacebo/Manifest index a5f8d00dd52e..3e23696e8296 100644 --- a/media-libs/libplacebo/Manifest +++ b/media-libs/libplacebo/Manifest @@ -1,5 +1,4 @@ DIST libplacebo-glad-2.0.1.tar.gz 581028 BLAKE2B 9c1a6dfdec44b9d55af4f410172958d5630408cebbbc86d17e73d0aa042b2d9765b9be7875a21ec4870f5efde589b8112a8d9ed785b0e9847c38a7b85ff1b5c4 SHA512 c924728695d524090894a0eb81fa8aa531ffc8ba8b3f02069ad31432854becb849025fc4b800f4cef4e267b3123fa6e1b7bba38d6aea99e691578fb4432ff262 DIST libplacebo-glad-2.0.4.tar.gz 599932 BLAKE2B 788d2b70222fd09eea02515bdf3cbc147540631bf35fe39f12aa21fdbabf3d229f4234a430217dfaf3363934b8be12dd6a19871049a7b117deb8260ec69f8c67 SHA512 328d0dbe33e69f846d1c54226c6675694404f41e53c4762e6013c7bfe76b0700f0b28f4117a2018a09c9c23ccb6ad94d7b20882fefc2513941a4515686c9b9e7 DIST libplacebo-v5.229.2.tar.gz 673795 BLAKE2B d828cf97713a9d46c983da111c5400487d02e9c3d8ec874de67d9f9d753508e7dc941cfdcdd024e78ea7e08e0f3d6a71b82f92e3478ed9d8a8cadbc86462b236 SHA512 56723bb3df4229ecaa61189080f108ac7c953b435b9969f7fe85835eeaca88ee8ec90ef9dfdd5e99e92d4cccea5b8e24c676d3b318ab8e22ead09c003b3c6165 -DIST libplacebo-v5.264.0.tar.gz 725109 BLAKE2B 0d2670df216f5e5dcc69a102b6bd7327195d538f683989360452a2bfa7ee8a673353b192b64d636a0cbdcd0caf7792099174c4c8cd63b3f163d7014f43efb6f2 SHA512 60583f97e719c9a164a3c62ca79f6ab24d2a5cd6e2e13b98a0e1eb59fe8ed9903b78cac642889566aa94b718937461413901f8509aacf9a6bfdb1d456a1bce53 DIST libplacebo-v5.264.1.tar.gz 725394 BLAKE2B 421de50ef5e2270e3ba32dd85d92d816a374257442b535face6cb8501d565652aae530b86a7d717c9352c6a82ca665ff7d91c2d9768365780cbbe4f48d1d3276 SHA512 305f43b71f078f4113def43c444df667dfbdd2a6a34d3b457b15da0b3499ca97ec9a8acbd151d58c8e1a593ace3d8aa61067b32556c6bae451efbb217d60a731 diff --git a/media-libs/libplacebo/libplacebo-5.264.0.ebuild b/media-libs/libplacebo/libplacebo-5.264.0.ebuild deleted file mode 100644 index 2759a11085c5..000000000000 --- a/media-libs/libplacebo/libplacebo-5.264.0.ebuild +++ /dev/null @@ -1,96 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit meson-multilib python-any-r1 - -if [[ ${PV} == 9999 ]]; then - EGIT_REPO_URI="https://code.videolan.org/videolan/libplacebo.git" - inherit git-r3 -else - GLAD_PV=2.0.4 - SRC_URI=" - https://code.videolan.org/videolan/libplacebo/-/archive/v${PV}/libplacebo-v${PV}.tar.gz - opengl? ( https://github.com/Dav1dde/glad/archive/refs/tags/v${GLAD_PV}.tar.gz -> ${PN}-glad-${GLAD_PV}.tar.gz )" - S="${WORKDIR}/${PN}-v${PV}" - KEYWORDS="~amd64 ~ppc64 ~x86" -fi - -DESCRIPTION="Reusable library for GPU-accelerated image processing primitives" -HOMEPAGE="https://code.videolan.org/videolan/libplacebo/" - -LICENSE="LGPL-2.1+ opengl? ( MIT )" -SLOT="0/$(ver_cut 2 ${PV}.9999)" # soname -IUSE="glslang lcms llvm-libunwind +opengl +shaderc test unwind +vulkan" -RESTRICT="!test? ( test )" -REQUIRED_USE="vulkan? ( || ( glslang shaderc ) )" - -# libglvnd is used with dlopen() through glad (inc. egl/gles) -RDEPEND=" - lcms? ( media-libs/lcms:2[${MULTILIB_USEDEP}] ) - opengl? ( media-libs/libglvnd[${MULTILIB_USEDEP}] ) - shaderc? ( media-libs/shaderc[${MULTILIB_USEDEP}] ) - !shaderc? ( glslang? ( dev-util/glslang:=[${MULTILIB_USEDEP}] ) ) - unwind? ( - llvm-libunwind? ( sys-libs/llvm-libunwind[${MULTILIB_USEDEP}] ) - !llvm-libunwind? ( sys-libs/libunwind:=[${MULTILIB_USEDEP}] ) - ) - vulkan? ( media-libs/vulkan-loader[${MULTILIB_USEDEP}] )" -# vulkan-headers is required even with USE=-vulkan (bug #882065) -DEPEND=" - ${RDEPEND} - dev-util/vulkan-headers" -BDEPEND=" - $(python_gen_any_dep 'dev-python/jinja[${PYTHON_USEDEP}]') - virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}"/${PN}-5.229.1-llvm-libunwind.patch - "${FILESDIR}"/${PN}-5.229.1-python-executable.patch -) - -python_check_deps() { - python_has_version "dev-python/jinja[${PYTHON_USEDEP}]" -} - -src_unpack() { - if [[ ${PV} == 9999 ]]; then - local EGIT_SUBMODULES=( $(usev opengl 3rdparty/glad) ) - git-r3_src_unpack - else - default - if use opengl; then - rmdir "${S}"/3rdparty/glad || die - mv glad-${GLAD_PV} "${S}"/3rdparty/glad || die - fi - fi -} - -src_prepare() { - default - - # typically auto-skipped, but may assume usable opengl/vulkan then hang - sed -i "/tests += 'opengl_surfaceless.c'/d" src/opengl/meson.build || die - sed -i "/tests += 'vulkan.c'/d" src/vulkan/meson.build || die -} - -multilib_src_configure() { - local emesonargs=( - -Ddemos=false #851927 - $(meson_use test tests) - $(meson_feature lcms) - -Dlibdovi=disabled # TODO: package libdovi, ask if you need this - $(meson_feature opengl) - $(meson_feature opengl gl-proc-addr) - $(meson_feature shaderc) - $(usex shaderc -Dglslang=disabled $(meson_feature glslang)) - $(meson_feature unwind) - $(meson_feature vulkan) - $(meson_feature vulkan vk-proc-addr) - -Dvulkan-registry="${ESYSROOT}"/usr/share/vulkan/registry/vk.xml - ) - - meson_src_configure -} diff --git a/media-libs/libplacebo/libplacebo-5.264.1.ebuild b/media-libs/libplacebo/libplacebo-5.264.1.ebuild index 2759a11085c5..22760fcd60de 100644 --- a/media-libs/libplacebo/libplacebo-5.264.1.ebuild +++ b/media-libs/libplacebo/libplacebo-5.264.1.ebuild @@ -15,7 +15,7 @@ else https://code.videolan.org/videolan/libplacebo/-/archive/v${PV}/libplacebo-v${PV}.tar.gz opengl? ( https://github.com/Dav1dde/glad/archive/refs/tags/v${GLAD_PV}.tar.gz -> ${PN}-glad-${GLAD_PV}.tar.gz )" S="${WORKDIR}/${PN}-v${PV}" - KEYWORDS="~amd64 ~ppc64 ~x86" + KEYWORDS="amd64 ppc64 x86" fi DESCRIPTION="Reusable library for GPU-accelerated image processing primitives" diff --git a/media-libs/libtgvoip/Manifest b/media-libs/libtgvoip/Manifest index b7f4482363e7..578e0da87ddb 100644 --- a/media-libs/libtgvoip/Manifest +++ b/media-libs/libtgvoip/Manifest @@ -1,2 +1 @@ -DIST libtgvoip-2.4.4_p20220503.tar.gz 1098061 BLAKE2B 5389a3783fa5179d10a18ef0282ab65d1526c829852095718384c2ba476ebfb1ee1f997f71b47424ef60a826055bc63d0d2dde7980de98c978860d72717ffefb SHA512 68f1e5b46df3b974d39333949e586ed00243044ff4bcac31937cba7eced6266fdacfd6ff3c6453f7dfa64ec82dd3aeafa251411dc85de0aae26b2cd0d8a79013 DIST libtgvoip-2.4.4_p20221208.tar.gz 1098020 BLAKE2B 6f1eae38e4396ca3b88ab4337176a6076d5f9008b2a865cd286265a9b73d83d44c2cc6828b65dcb580a897a19badeab502395e2128a15c276ae796ac1ab0da68 SHA512 62243629890b1c13f1dbbffae4f82964a0fe23d2071852730674ccbef31126c6e205cfa526f07ba1549ef8eae31e371fb4335ce5f95fd649560bee2b3b530e64 diff --git a/media-libs/libtgvoip/libtgvoip-2.4.4_p20220503.ebuild b/media-libs/libtgvoip/libtgvoip-2.4.4_p20220503.ebuild deleted file mode 100644 index cd6d55c01ef8..000000000000 --- a/media-libs/libtgvoip/libtgvoip-2.4.4_p20220503.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 2020-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit flag-o-matic autotools - -DESCRIPTION="VoIP library for Telegram clients" -HOMEPAGE="https://github.com/telegramdesktop/libtgvoip" - -LIBTGVOIP_COMMIT="78a8e22bedb0d06004da8bafeba88b7474cb89a4" -SRC_URI="https://github.com/telegramdesktop/libtgvoip/archive/${LIBTGVOIP_COMMIT}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${PN}-${LIBTGVOIP_COMMIT}" - -LICENSE="Unlicense" -SLOT="0" -KEYWORDS="amd64 ~arm64 ~ppc64 ~riscv" -IUSE="+dsp +alsa pulseaudio" - -DEPEND=" - dev-libs/openssl:= - media-libs/opus - alsa? ( media-libs/alsa-lib ) - dsp? ( media-libs/tg_owt:= ) - pulseaudio? ( media-sound/pulseaudio ) -" -RDEPEND="${DEPEND}" -BDEPEND="virtual/pkgconfig" -REQUIRED_USE=" - || ( alsa pulseaudio ) -" - -src_prepare() { - # Will be controlled by us - sed -i -e '/^CFLAGS += -DTGVOIP_NO_DSP/d' Makefile.am || die - # https://bugs.gentoo.org/717210 - echo 'libtgvoip_la_LIBTOOLFLAGS = --tag=CXX' >> Makefile.am || die - default - eautoreconf -} - -src_configure() { - # Not using the CMake build despite being the preferred one, because - # it's lacking relevant configure options. - local myconf=( - --disable-dsp # WebRTC is linked from tg_owt - $(use_with alsa) - $(use_with pulseaudio pulse) - ) - if use dsp; then - append-cppflags "-I${ESYSROOT}/usr/include/tg_owt" - append-cppflags "-I${ESYSROOT}/usr/include/tg_owt/third_party/abseil-cpp" - append-libs '-ltg_owt' - else - append-cppflags '-DTGVOIP_NO_DSP' - fi - econf "${myconf[@]}" -} - -src_install() { - default - find "${D}" -name '*.la' -delete || die -} diff --git a/media-libs/libva/libva-2.18.0.ebuild b/media-libs/libva/libva-2.18.0-r1.ebuild similarity index 89% rename from media-libs/libva/libva-2.18.0.ebuild rename to media-libs/libva/libva-2.18.0-r1.ebuild index ef0203c92e12..4f264beeabed 100644 --- a/media-libs/libva/libva-2.18.0.ebuild +++ b/media-libs/libva/libva-2.18.0-r1.ebuild @@ -19,8 +19,7 @@ fi LICENSE="MIT" SLOT="0/$(ver_cut 1)" -IUSE="opengl wayland X" -REQUIRED_USE="opengl? ( X )" +IUSE="wayland X" RDEPEND=" >=x11-libs/libdrm-2.4.60[${MULTILIB_USEDEP}] @@ -28,7 +27,6 @@ RDEPEND=" >=dev-libs/wayland-1.11[${MULTILIB_USEDEP}] ) X? ( - >=virtual/opengl-7.0-r1[${MULTILIB_USEDEP}] >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}] >=x11-libs/libXext-1.3.2[${MULTILIB_USEDEP}] >=x11-libs/libXfixes-5.0.1[${MULTILIB_USEDEP}] @@ -42,11 +40,9 @@ BDEPEND=" " MULTILIB_WRAPPED_HEADERS=( - /usr/include/va/va_backend_glx.h /usr/include/va/va_x11.h /usr/include/va/va_dri2.h /usr/include/va/va_dricommon.h - /usr/include/va/va_glx.h ) multilib_src_configure() { @@ -54,7 +50,7 @@ multilib_src_configure() { -Ddriverdir="${EPREFIX}/usr/$(get_libdir)/va/drivers" -Ddisable_drm=false -Dwith_x11=$(usex X) - -Dwith_glx=$(usex X) + -Dwith_glx=no -Dwith_wayland=$(usex wayland) -Denable_docs=false ) diff --git a/media-libs/libva/libva-9999.ebuild b/media-libs/libva/libva-9999.ebuild index ef0203c92e12..4f264beeabed 100644 --- a/media-libs/libva/libva-9999.ebuild +++ b/media-libs/libva/libva-9999.ebuild @@ -19,8 +19,7 @@ fi LICENSE="MIT" SLOT="0/$(ver_cut 1)" -IUSE="opengl wayland X" -REQUIRED_USE="opengl? ( X )" +IUSE="wayland X" RDEPEND=" >=x11-libs/libdrm-2.4.60[${MULTILIB_USEDEP}] @@ -28,7 +27,6 @@ RDEPEND=" >=dev-libs/wayland-1.11[${MULTILIB_USEDEP}] ) X? ( - >=virtual/opengl-7.0-r1[${MULTILIB_USEDEP}] >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}] >=x11-libs/libXext-1.3.2[${MULTILIB_USEDEP}] >=x11-libs/libXfixes-5.0.1[${MULTILIB_USEDEP}] @@ -42,11 +40,9 @@ BDEPEND=" " MULTILIB_WRAPPED_HEADERS=( - /usr/include/va/va_backend_glx.h /usr/include/va/va_x11.h /usr/include/va/va_dri2.h /usr/include/va/va_dricommon.h - /usr/include/va/va_glx.h ) multilib_src_configure() { @@ -54,7 +50,7 @@ multilib_src_configure() { -Ddriverdir="${EPREFIX}/usr/$(get_libdir)/va/drivers" -Ddisable_drm=false -Dwith_x11=$(usex X) - -Dwith_glx=$(usex X) + -Dwith_glx=no -Dwith_wayland=$(usex wayland) -Denable_docs=false ) diff --git a/media-libs/libwmf/Manifest b/media-libs/libwmf/Manifest index 2c2c1bd12f62..765c69762970 100644 --- a/media-libs/libwmf/Manifest +++ b/media-libs/libwmf/Manifest @@ -1 +1,2 @@ +DIST libwmf-0.2.13.tar.gz 3044235 BLAKE2B 0cfbc94d6e7d52c5ecf09b277cf536f56ec54d3b53845e80afdfe4aa3b397562bffd198fb51726d210f21e3e9e16650f85e9188f4e5303b5c4c8b917ef882040 SHA512 f45a936c9bc98fc1a5f2b0808b497119e4dcd3c132615fdddb7583e5719c7d1d7f85c16ebf313cad453e5b7ae3508bf6b80c4ed2b42322b7dec295d8f4eb86ce DIST libwmf-0.2.8.4.tar.gz 2169375 BLAKE2B d86de4483201a07639779e024752d5c00a3dbc7399be353879b828850b74612651bbcf1851f322d62352259b73647038790580a9a4aeb43b7aeb4c1affedcabe SHA512 d98df8e76a52245487b13e5ab3d2fbba9d246f97ee04a7344c0e5861bb2d0f990fc6d662dbd849ce621768b06eaebd4270fb34bec4ee004334a98b14ba6044a5 diff --git a/media-libs/libwmf/libwmf-0.2.13-r1.ebuild b/media-libs/libwmf/libwmf-0.2.13-r1.ebuild new file mode 100644 index 000000000000..5c0afaef42ab --- /dev/null +++ b/media-libs/libwmf/libwmf-0.2.13-r1.ebuild @@ -0,0 +1,93 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools gnome2-utils + +DESCRIPTION="A library for reading vector images in Microsoft's Windows Metafile Format (WMF)" +HOMEPAGE="https://github.com/caolanm/libwmf http://wvware.sourceforge.net/" +SRC_URI="https://github.com/caolanm/libwmf/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" +IUSE="debug doc expat X" + +RDEPEND=" + app-text/ghostscript-gpl + media-fonts/urw-fonts + media-libs/freetype:2= + media-libs/libpng:= + media-libs/libjpeg-turbo + sys-libs/zlib:= + x11-libs/gdk-pixbuf:2 + expat? ( dev-libs/expat ) + !expat? ( dev-libs/libxml2:2= ) + X? ( + x11-libs/libX11 + x11-libs/libXt + x11-libs/libXpm + ) +" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +DOCS=( AUTHORS BUILDING ChangeLog CREDITS INSTALL NEWS README TODO ) + +PATCHES=( + "${FILESDIR}"/${PN}-0.2.8.4-build.patch + "${FILESDIR}"/${PN}-0.2.8.4-libpng-1.5.patch + "${FILESDIR}"/${PN}-0.2.8.4-pngfix.patch +) + +src_prepare() { + default + + eautoreconf +} + +src_configure() { + # Support for GD is disabled, since it's never linked, even, when enabled + # See https://bugs.gentoo.org/268161 + local myeconfargs=( + --disable-gd + --disable-static + $(use_enable debug) + $(use_with expat) + $(use_with !expat libxml2) + $(use_with X x) + --with-docdir="${EPREFIX}"/usr/share/doc/${PF} + --with-fontdir="${EPREFIX}"/usr/share/fonts/urw-fonts + --with-freetype + --with-gsfontdir="${EPREFIX}"/usr/share/fonts/urw-fonts + --with-gsfontmap="${EPREFIX}"/usr/share/ghostscript/9.21/Resource/Init/Fontmap + --with-jpeg + --with-layers + --with-png + --with-sys-gd + --with-zlib + ) + + econf "${myeconfargs[@]}" +} + +src_install() { + # address parallel build issue, bug 677566 + MAKEOPTS=-j1 + + default + find "${D}" -name '*.la' -delete || die +} + +pkg_preinst() { + gnome2_gdk_pixbuf_savelist +} + +pkg_postinst() { + gnome2_gdk_pixbuf_update +} + +pkg_postrm() { + gnome2_gdk_pixbuf_update +} diff --git a/media-libs/libwmf/metadata.xml b/media-libs/libwmf/metadata.xml index eac3ad7e3d51..ff96f25bf534 100644 --- a/media-libs/libwmf/metadata.xml +++ b/media-libs/libwmf/metadata.xml @@ -5,5 +5,6 @@ https://sourceforge.net/p/wvware/bugs/ wvware + caolanm/libwmf diff --git a/media-libs/opencollada/files/opencollada-1.6.68-gcc13.patch b/media-libs/opencollada/files/opencollada-1.6.68-gcc13.patch new file mode 100644 index 000000000000..e12771ca97a4 --- /dev/null +++ b/media-libs/opencollada/files/opencollada-1.6.68-gcc13.patch @@ -0,0 +1,35 @@ +https://bugs.gentoo.org/899750 +https://github.com/KhronosGroup/OpenCOLLADA/pull/656 + +From 84c8c9a02b4e5fe40465034563cb36527e865dac Mon Sep 17 00:00:00 2001 +From: Sergei Trofimovich +Date: Mon, 11 Jul 2022 21:33:11 +0100 +Subject: [PATCH] DAEValidator: fix gcc-13 build + +On gcc-13 c++ headers don't include implicitly any more. +This exposed build failure as: + + /build/source/DAEValidator/library/src/XmlDoc.cpp: In member function 'virtual void opencollada::XmlDoc::readFile(const std::string&)': + /build/source/DAEValidator/library/src/XmlDoc.cpp:59:17: error: 'uint32_t' was not declared in this scope + 59 | uint32_t signature = *reinterpret_cast(content.data()); + | ^~~~~~~~ +--- a/DAEValidator/library/src/DaeValidator.cpp ++++ b/DAEValidator/library/src/DaeValidator.cpp +@@ -4,6 +4,7 @@ + #include "Strings.h" + #include "StringUtil.h" + #include ++#include + #include "no_warning_iomanip" + #include "no_warning_iostream" + #include +--- a/DAEValidator/library/src/XmlDoc.cpp ++++ b/DAEValidator/library/src/XmlDoc.cpp +@@ -1,5 +1,6 @@ + #include "Macros.h" + ++#include + #if IS_GNUC_AND_GNUC_VERSION_LT(5,1,1) + #include + #endif + diff --git a/media-libs/opencollada/files/opencollada-1.6.68-werror.patch b/media-libs/opencollada/files/opencollada-1.6.68-werror.patch new file mode 100644 index 000000000000..3a490d326ddc --- /dev/null +++ b/media-libs/opencollada/files/opencollada-1.6.68-werror.patch @@ -0,0 +1,11 @@ +--- a/DAEValidator/CMakeLists.txt ++++ b/DAEValidator/CMakeLists.txt +@@ -100,7 +100,7 @@ if (WIN32) + # C4820: 'bytes' bytes padding added after construct 'member_name' + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /MP /Wall /WX /wd4505 /wd4514 /wd4592 /wd4710 /wd4711 /wd4820") + else () +- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall -Werror") ++ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall") + endif () + + add_custom_command( diff --git a/media-libs/opencollada/opencollada-1.6.68.ebuild b/media-libs/opencollada/opencollada-1.6.68.ebuild index 49f53f567c18..d11bbc826b9f 100644 --- a/media-libs/opencollada/opencollada-1.6.68.ebuild +++ b/media-libs/opencollada/opencollada-1.6.68.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -33,6 +33,8 @@ PATCHES=( "${FILESDIR}/${P}-fix-null-conversion.patch" "${FILESDIR}/${P}-cmake-fixes.patch" "${FILESDIR}/${PN}-1.6.63-pcre-fix.patch" + "${FILESDIR}/${PN}-1.6.68-gcc13.patch" + "${FILESDIR}/${PN}-1.6.68-werror.patch" ) src_prepare() { diff --git a/media-libs/tg_owt/Manifest b/media-libs/tg_owt/Manifest index ef6eaa354cc6..888e31f0a89e 100644 --- a/media-libs/tg_owt/Manifest +++ b/media-libs/tg_owt/Manifest @@ -1,4 +1,2 @@ DIST libyuv-00950840d1c9bcbb3eb6ebc5aac5793e71166c8b.tar.bz2 426626 BLAKE2B efae062f124e3711bab9db232e5f956f09683d6743f54407bf89eeda1bb6ffbc9b82fc250bd709f06b94c28bc8bbb239a28262a002e7b7a2044f31c1432304bb SHA512 bfe2ad76c911986727d0c8b6ee85028fea382fad1eaebbff77a116f848388417719acaea11506936e8160d8dfa46f27a9a3d544b3db356e4c58aa81f493a6912 -DIST libyuv-ad890067f661dc747a975bc55ba3767fe30d4452.tar.gz 473845 BLAKE2B 664be51c166440e6b03fa98f65d907efc446800804058a5ea7fdf944e12cb1237a1487e83fbe9a2f1ce4c73521234e43632f921ad0333507737d81e1cb23ce8f SHA512 f97529b80a786e2e92443caabebd6d85a42641e10c3d2940b0f69bedf3b8a96c69c3247abddd059c4ddd6f78107ab7214222a4267a559fc2086c8edf5ea1afbc -DIST tg_owt-0_pre20220507.tar.gz 15799740 BLAKE2B f12f3ecdfb0c7cfdae12af4734ddf22da4d95fd991b8a8ba17515f9d5c22a2f12b81967c0af15ac150c99129701c50c9384ea0e0240bf2366e176c833b14f7db SHA512 6902c65a1be0bcf300f08c274109ed53cdf92b7aff35915045c3989899fc2584cce3fe9df0e8ac29e708fcc575453fe5a6affaea85787f9c4fcc3bcde3b85711 DIST tg_owt-0_pre20230105.tar.gz 13822416 BLAKE2B 05004dafaefd748d836f3508d3800bcb15d0bc9894b83340746e85763bff4b77d3dd1fb732eeaf86324b9afbec69be49b172ae7f70d959a7a65ce01b64fb6205 SHA512 70b4ada620cf19acf981abcefcbac1609fe04c51deef0332e288d59c4e7efe98625817c641b92967b4f37217f94e49aa0fc296fcfbb214c08cb63030b1427f54 diff --git a/media-libs/tg_owt/files/tg_owt-0_pre20220209-gcc-12-cstdint.patch b/media-libs/tg_owt/files/tg_owt-0_pre20220209-gcc-12-cstdint.patch deleted file mode 100644 index 9feea500f164..000000000000 --- a/media-libs/tg_owt/files/tg_owt-0_pre20220209-gcc-12-cstdint.patch +++ /dev/null @@ -1,44 +0,0 @@ -https://bugs.gentoo.org/840526 -https://github.com/desktop-app/tg_owt/pull/101 - -From 86d2bcd7afb8706663d29e30f65863de5a626142 Mon Sep 17 00:00:00 2001 -From: Xiretza -Date: Sun, 15 May 2022 12:47:41 +0200 -Subject: [PATCH] fix(h265_pps_parser): fix missing cstdint include - ---- a/src/common_video/h265/h265_pps_parser.h -+++ b/src/common_video/h265/h265_pps_parser.h -@@ -12,6 +12,7 @@ - #define COMMON_VIDEO_H265_PPS_PARSER_H_ - - #include "absl/types/optional.h" -+#include - - namespace rtc { - class BitBuffer; - -From c358917ff8deac2015586356113dae75d076d1e3 Mon Sep 17 00:00:00 2001 -From: peeweep -Date: Mon, 27 Jun 2022 15:07:04 +0000 -Subject: [PATCH] fix(module_common_types_public): fix missing cstdint include - -Signed-off-by: peeweep ---- - src/modules/include/module_common_types_public.h | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/src/modules/include/module_common_types_public.h b/src/modules/include/module_common_types_public.h -index 345e45ce..8338a514 100644 ---- a/src/modules/include/module_common_types_public.h -+++ b/src/modules/include/module_common_types_public.h -@@ -11,6 +11,7 @@ - #ifndef MODULES_INCLUDE_MODULE_COMMON_TYPES_PUBLIC_H_ - #define MODULES_INCLUDE_MODULE_COMMON_TYPES_PUBLIC_H_ - -+#include - #include - - #include "absl/types/optional.h" --- -2.35.1 - diff --git a/media-libs/tg_owt/files/tg_owt-0_pre20220507-allow-disabling-X11.patch b/media-libs/tg_owt/files/tg_owt-0_pre20220507-allow-disabling-X11.patch deleted file mode 100644 index 71b587f471bb..000000000000 --- a/media-libs/tg_owt/files/tg_owt-0_pre20220507-allow-disabling-X11.patch +++ /dev/null @@ -1,117 +0,0 @@ -Add -DTG_OWT_USE_X11 - -Allows disabling X11 desktop capturing independently of pipewire support, for -the few people that run wayland without any X11 support whatsoever. - -This setup is untested, but supported by the GNI build system, see: -* src/modules/desktop_capture/BUILD.gn (option rtc_use_x11_extensions) - -Toggling the WEBRTC_USE_X11 define also affects some files under -src/modules/audio_device, but that falls under "X11 support", regardless... - ---- tg_owt-10d5f4bf77333ef6b43516f90d2ce13273255f41.orig/CMakeLists.txt -+++ tg_owt-10d5f4bf77333ef6b43516f90d2ce13273255f41/CMakeLists.txt -@@ -21,11 +21,13 @@ - - option(BUILD_SHARED_LIBS "Builds shared libraries instead of static." OFF) - option(TG_OWT_USE_PROTOBUF "Use protobuf to generate additional headers. Useful for packaged build." ${BUILD_SHARED_LIBS}) -+option(TG_OWT_USE_X11 "Use X11 for desktop capture on non-Apple Unix." ON) - option(TG_OWT_USE_PIPEWIRE "Use pipewire for desktop capture on non-Apple Unix." ON) - option(TG_OWT_DLOPEN_PIPEWIRE "dlopen pipewire 0.3 for desktop capture on non-Apple Unix." ${not_packaged_build}) - option(TG_OWT_BUILD_AUDIO_BACKENDS "Build webrtc audio backends." OFF) - - if (NOT UNIX OR APPLE) -+ set(TG_OWT_USE_X11 OFF) - set(TG_OWT_USE_PIPEWIRE OFF) - endif() - -@@ -97,6 +99,10 @@ - add_library(tg_owt) - init_target(tg_owt) - -+if (TG_OWT_USE_X11) -+ link_x11(tg_owt) -+endif() -+ - if (TG_OWT_USE_PIPEWIRE) - if (TG_OWT_DLOPEN_PIPEWIRE) - include(cmake/generate_stubs.cmake) -@@ -189,10 +195,6 @@ - include(cmake/libwebrtcbuild.cmake) - target_link_libraries(tg_owt PUBLIC tg_owt::libwebrtcbuild) - --if (UNIX AND NOT APPLE) -- link_x11(tg_owt) --endif() -- - function(add_sublibrary postfix) - add_library(tg_owt_${postfix} OBJECT) - init_feature_target(tg_owt_${postfix} ${postfix}) -@@ -2370,6 +2372,39 @@ - ) - endif() - -+if (NOT TG_OWT_USE_X11) -+ remove_target_sources(tg_owt ${webrtc_loc} -+ # src/modules/desktop_capture/BUILD.gn (rtc_use_x11_extensions) -+ modules/desktop_capture/linux/x11/mouse_cursor_monitor_x11.cc -+ modules/desktop_capture/linux/x11/mouse_cursor_monitor_x11.h -+ modules/desktop_capture/linux/x11/screen_capturer_x11.cc -+ modules/desktop_capture/linux/x11/screen_capturer_x11.h -+ modules/desktop_capture/linux/x11/shared_x_display.cc -+ modules/desktop_capture/linux/x11/shared_x_display.h -+ modules/desktop_capture/linux/x11/window_capturer_x11.cc -+ modules/desktop_capture/linux/x11/window_capturer_x11.h -+ modules/desktop_capture/linux/x11/window_finder_x11.cc -+ modules/desktop_capture/linux/x11/window_finder_x11.h -+ modules/desktop_capture/linux/x11/window_list_utils.cc -+ modules/desktop_capture/linux/x11/window_list_utils.h -+ modules/desktop_capture/linux/x11/x_atom_cache.cc -+ modules/desktop_capture/linux/x11/x_atom_cache.h -+ modules/desktop_capture/linux/x11/x_error_trap.cc -+ modules/desktop_capture/linux/x11/x_error_trap.h -+ modules/desktop_capture/linux/x11/x_server_pixel_buffer.cc -+ modules/desktop_capture/linux/x11/x_server_pixel_buffer.h -+ modules/desktop_capture/linux/x11/x_window_property.cc -+ modules/desktop_capture/linux/x11/x_window_property.h -+ -+ # screen_drawer_linux.cc depends on x11, rest are revdeps -+ modules/desktop_capture/screen_drawer.cc -+ modules/desktop_capture/screen_drawer.h -+ modules/desktop_capture/screen_drawer_linux.cc -+ modules/desktop_capture/screen_drawer_lock_posix.cc -+ modules/desktop_capture/screen_drawer_lock_posix.h -+ ) -+endif() -+ - if (NOT TG_OWT_USE_PIPEWIRE) - remove_target_sources(tg_owt ${webrtc_loc} - modules/desktop_capture/linux/wayland/base_capturer_pipewire.cc ---- tg_owt-10d5f4bf77333ef6b43516f90d2ce13273255f41.orig/cmake/libwebrtcbuild.cmake -+++ tg_owt-10d5f4bf77333ef6b43516f90d2ce13273255f41/cmake/libwebrtcbuild.cmake -@@ -29,6 +29,13 @@ - BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0 - ) - -+if (TG_OWT_USE_X11) -+ target_compile_definitions(libwebrtcbuild -+ INTERFACE -+ WEBRTC_USE_X11 -+ ) -+endif() -+ - if (TG_OWT_USE_PIPEWIRE) - target_compile_definitions(libwebrtcbuild - INTERFACE -@@ -65,11 +72,6 @@ - INTERFACE - WEBRTC_MAC - ) -- else() -- target_compile_definitions(libwebrtcbuild -- INTERFACE -- WEBRTC_USE_X11 -- ) - endif() - - if (CMAKE_SYSTEM_NAME STREQUAL "Linux") diff --git a/media-libs/tg_owt/files/tg_owt-0_pre20220507-unbundle-crc32c.patch b/media-libs/tg_owt/files/tg_owt-0_pre20220507-unbundle-crc32c.patch deleted file mode 100644 index 44283c24384c..000000000000 --- a/media-libs/tg_owt/files/tg_owt-0_pre20220507-unbundle-crc32c.patch +++ /dev/null @@ -1,72 +0,0 @@ -Use system's crc32c if found - ---- tg_owt-10d5f4bf77333ef6b43516f90d2ce13273255f41.orig/CMakeLists.txt -+++ tg_owt-10d5f4bf77333ef6b43516f90d2ce13273255f41/CMakeLists.txt -@@ -147,7 +147,6 @@ - - target_link_libraries(tg_owt - PRIVATE -- tg_owt::libcrc32c - tg_owt::libpffft - tg_owt::librnnoise - tg_owt::libsrtp -@@ -185,6 +184,7 @@ - link_libabsl(tg_owt) - link_libopenh264(tg_owt) - link_libvpx(tg_owt) -+link_crc32c(tg_owt) - - if (TG_OWT_BUILD_AUDIO_BACKENDS AND (UNIX AND NOT APPLE)) - link_libalsa(tg_owt) -@@ -2599,7 +2599,6 @@ - - set(export_targets - ${tg_owt_export} -- libcrc32c - libpffft - librnnoise - libsrtp -@@ -2617,6 +2616,9 @@ - if (NOT LIBOPENH264_FOUND) - list(APPEND export_targets libopenh264) - endif() -+if (NOT Crc32c_FOUND) -+ list(APPEND export_targets libcrc32c) -+endif() - - export( - TARGETS ${export_targets} ---- tg_owt-10d5f4bf77333ef6b43516f90d2ce13273255f41.orig/cmake/external.cmake -+++ tg_owt-10d5f4bf77333ef6b43516f90d2ce13273255f41/cmake/external.cmake -@@ -166,6 +166,20 @@ - endif() - endfunction() - -+# crc32c -+function(link_crc32c target_name) -+ if (TG_OWT_PACKAGED_BUILD) -+ find_package(Crc32c) -+ set(Crc32c_FOUND ${Crc32c_FOUND} PARENT_SCOPE) -+ if (Crc32c_FOUND) -+ target_link_libraries(${target_name} PRIVATE Crc32c::crc32c) -+ endif() -+ endif() -+ if (NOT Crc32c_FOUND) -+ target_link_libraries(${target_name} PRIVATE tg_owt::libcrc32c) -+ endif() -+endfunction() -+ - function(link_glib target_name) - find_package(PkgConfig REQUIRED) - pkg_check_modules(GLIB2 REQUIRED glib-2.0) ---- tg_owt-10d5f4bf77333ef6b43516f90d2ce13273255f41.orig/src/net/dcsctp/packet/crc32c.cc -+++ tg_owt-10d5f4bf77333ef6b43516f90d2ce13273255f41/src/net/dcsctp/packet/crc32c.cc -@@ -11,7 +11,7 @@ - - #include - --#include "third_party/crc32c/src/include/crc32c/crc32c.h" -+#include "crc32c/crc32c.h" - - namespace dcsctp { - diff --git a/media-libs/tg_owt/files/tg_owt-0_pre20230105-gcc-13-cstdint.patch b/media-libs/tg_owt/files/tg_owt-0_pre20230105-gcc-13-cstdint.patch new file mode 100644 index 000000000000..f4ea2dec9555 --- /dev/null +++ b/media-libs/tg_owt/files/tg_owt-0_pre20230105-gcc-13-cstdint.patch @@ -0,0 +1,22 @@ +Fix cstdint include for gcc 13 + +--- tg_owt-5098730b9eb6173f0b52068fe2555b7c1015123a.orig/src/modules/audio_processing/transient/file_utils.h ++++ tg_owt-5098730b9eb6173f0b52068fe2555b7c1015123a/src/modules/audio_processing/transient/file_utils.h +@@ -11,6 +11,7 @@ + #ifndef MODULES_AUDIO_PROCESSING_TRANSIENT_FILE_UTILS_H_ + #define MODULES_AUDIO_PROCESSING_TRANSIENT_FILE_UTILS_H_ + ++#include + #include + + #include "rtc_base/system/file_wrapper.h" +--- tg_owt-5098730b9eb6173f0b52068fe2555b7c1015123a.orig/src/rtc_base/third_party/base64/base64.h ++++ tg_owt-5098730b9eb6173f0b52068fe2555b7c1015123a/src/rtc_base/third_party/base64/base64.h +@@ -12,6 +12,7 @@ + #ifndef RTC_BASE_THIRD_PARTY_BASE64_BASE64_H_ + #define RTC_BASE_THIRD_PARTY_BASE64_BASE64_H_ + ++#include + #include + #include + diff --git a/media-libs/tg_owt/tg_owt-0_pre20220507.ebuild b/media-libs/tg_owt/tg_owt-0_pre20220507.ebuild deleted file mode 100644 index aeaa01e382a6..000000000000 --- a/media-libs/tg_owt/tg_owt-0_pre20220507.ebuild +++ /dev/null @@ -1,121 +0,0 @@ -# Copyright 2020-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake flag-o-matic - -DESCRIPTION="WebRTC build for Telegram" -HOMEPAGE="https://github.com/desktop-app/tg_owt" - -TG_OWT_COMMIT="10d5f4bf77333ef6b43516f90d2ce13273255f41" -LIBYUV_COMMIT="ad890067f661dc747a975bc55ba3767fe30d4452" -SRC_URI="https://github.com/desktop-app/tg_owt/archive/${TG_OWT_COMMIT}.tar.gz -> ${P}.tar.gz - https://archive.org/download/libyuv-${LIBYUV_COMMIT}.tar/libyuv-${LIBYUV_COMMIT}.tar.gz" -S="${WORKDIR}/${PN}-${TG_OWT_COMMIT}" -# Fetch libyuv archive from: https://chromium.googlesource.com/libyuv/libyuv/+archive/${LIBYUV_COMMIT}.tar.gz - -LICENSE="BSD" -SLOT="0/${PV##*pre}" -KEYWORDS="amd64 ~arm64 ~ppc64 ~riscv" -IUSE="screencast +X" - -# This package's USE flags may change the ABI and require a rebuild of -# dependent pacakges. As such, one should make sure to depend on -# media-libs/tg_owt[x=,y=,z=] for any package that uses this. -# Furthermore, the -DNDEBUG preprocessor flag should be defined by any -# dependent package, failure to do so will change the ABI in the header files. - -# Bundled libs: -# - libyuv (no stable versioning, www-client/chromium and media-libs/libvpx bundle it) -# - libsrtp (project uses private APIs) -# - pffft (no stable versioning, patched) -DEPEND=" - >=dev-cpp/abseil-cpp-20211102.0:=[cxx17(+)] - dev-libs/openssl:= - dev-libs/protobuf:= - media-libs/libjpeg-turbo:= - >=media-libs/libvpx-1.10.0:= - media-libs/openh264:= - media-libs/opus - media-video/ffmpeg:= - dev-libs/crc32c - screencast? ( - dev-libs/glib:2 - media-video/pipewire:= - ) - X? ( - x11-libs/libX11 - x11-libs/libXcomposite - x11-libs/libXdamage - x11-libs/libXext - x11-libs/libXfixes - x11-libs/libXrender - x11-libs/libXrandr - x11-libs/libXtst - ) -" -RDEPEND="${DEPEND}" -BDEPEND="virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}/tg_owt-0_pre20220507-allow-disabling-X11.patch" - "${FILESDIR}/tg_owt-0_pre20220507-unbundle-crc32c.patch" - "${FILESDIR}/tg_owt-0_pre20220209-gcc-12-cstdint.patch" -) - -src_unpack() { - unpack "${P}.tar.gz" - cd "${S}/src/third_party/libyuv" || die - unpack "libyuv-${LIBYUV_COMMIT}.tar.gz" -} - -src_prepare() { - # libopenh264 has GENERATED files with yasm that aren't excluded by - # EXCLUDE_FROM_ALL, and I have no clue how to avoid this. - # These source files aren't used with system-openh264, anyway. - sed -i '/include(cmake\/libopenh264.cmake)/d' CMakeLists.txt || die - - # The sources for libcrc32c aren't available, avoid needing them - sed -i '/include(cmake\/libcrc32c.cmake)/d' CMakeLists.txt || die - - # "lol" said the scorpion, "lmao" - sed -i '/if (BUILD_SHARED_LIBS)/{n;n;s/WARNING/DEBUG/}' CMakeLists.txt || die - - cmake_src_prepare -} - -src_configure() { - # Defined by -DCMAKE_BUILD_TYPE=Release, avoids crashes - # See https://bugs.gentoo.org/754012 - # EAPI 8 still wipes this flag. - append-cppflags '-DNDEBUG' - - local mycmakeargs=( - -DTG_OWT_USE_X11=$(usex X) - -DTG_OWT_USE_PIPEWIRE=$(usex screencast) - ) - cmake_src_configure -} - -src_install() { - cmake_src_install - - # Save about 15MB of useless headers - rm -r "${ED}/usr/include/tg_owt/rtc_base/third_party" || die - rm -r "${ED}/usr/include/tg_owt/common_audio/third_party" || die - rm -r "${ED}/usr/include/tg_owt/modules/third_party" || die - rm -r "${ED}/usr/include/tg_owt/third_party" || die - - # Install a few headers anyway, as required by net-im/telegram-desktop... - local headers=( - third_party/libyuv/include - rtc_base/third_party/sigslot - rtc_base/third_party/base64 - ) - for dir in "${headers[@]}"; do - pushd "${S}/src/${dir}" > /dev/null || die - find -type f -name "*.h" -exec install -Dm644 '{}' "${ED}/usr/include/tg_owt/${dir}/{}" \; || die - popd > /dev/null || die - done -} diff --git a/media-libs/tg_owt/tg_owt-0_pre20230105.ebuild b/media-libs/tg_owt/tg_owt-0_pre20230105.ebuild index 2ae5b33250ff..33ea8cfeff34 100644 --- a/media-libs/tg_owt/tg_owt-0_pre20230105.ebuild +++ b/media-libs/tg_owt/tg_owt-0_pre20230105.ebuild @@ -64,6 +64,10 @@ DEPEND="${RDEPEND} " BDEPEND="virtual/pkgconfig" +PATCHES=( + "${FILESDIR}/tg_owt-0_pre20230105-gcc-13-cstdint.patch" +) + src_unpack() { unpack "${P}.tar.gz" unpack "libyuv-${LIBYUV_COMMIT}.tar.bz2" diff --git a/media-libs/vulkan-layers/vulkan-layers-1.3.243.ebuild b/media-libs/vulkan-layers/vulkan-layers-1.3.243.ebuild index d0c911a13792..1aa41c4269c0 100644 --- a/media-libs/vulkan-layers/vulkan-layers-1.3.243.ebuild +++ b/media-libs/vulkan-layers/vulkan-layers-1.3.243.ebuild @@ -13,7 +13,7 @@ if [[ ${PV} == *9999* ]]; then inherit git-r3 else SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/sdk-${PV}.0.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86" + KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv x86" S="${WORKDIR}"/${MY_PN}-sdk-${PV}.0 fi diff --git a/media-libs/vulkan-loader/vulkan-loader-1.3.243.ebuild b/media-libs/vulkan-loader/vulkan-loader-1.3.243.ebuild index a79a918b7b9b..9134cc68f453 100644 --- a/media-libs/vulkan-loader/vulkan-loader-1.3.243.ebuild +++ b/media-libs/vulkan-loader/vulkan-loader-1.3.243.ebuild @@ -12,7 +12,7 @@ if [[ ${PV} == *9999* ]]; then inherit git-r3 else SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/sdk-${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86" + KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv x86" S="${WORKDIR}"/${MY_PN}-sdk-${PV} fi diff --git a/media-libs/xine-lib/xine-lib-1.2.13-r1.ebuild b/media-libs/xine-lib/xine-lib-1.2.13-r2.ebuild similarity index 99% rename from media-libs/xine-lib/xine-lib-1.2.13-r1.ebuild rename to media-libs/xine-lib/xine-lib-1.2.13-r2.ebuild index ab82dbcb36f7..6ee408c8c782 100644 --- a/media-libs/xine-lib/xine-lib-1.2.13-r1.ebuild +++ b/media-libs/xine-lib/xine-lib-1.2.13-r2.ebuild @@ -81,7 +81,7 @@ RDEPEND=" media-libs/freetype:2 ) v4l? ( media-libs/libv4l ) - vaapi? ( media-libs/libva:=[opengl,X] ) + vaapi? ( media-libs/libva:=[X] ) vcd? ( >=media-video/vcdimager-0.7.23 dev-libs/libcdio:=[-minimal] diff --git a/media-libs/xine-lib/xine-lib-1.2.13.ebuild b/media-libs/xine-lib/xine-lib-1.2.13.ebuild deleted file mode 100644 index a7cce97ce1ac..000000000000 --- a/media-libs/xine-lib/xine-lib-1.2.13.ebuild +++ /dev/null @@ -1,233 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit flag-o-matic libtool multilib - -if [[ ${PV} == *9999* ]]; then - EHG_REPO_URI="http://hg.code.sf.net/p/xine/xine-lib-1.2" - inherit autotools mercurial - unset NLS_IUSE - NLS_DEPEND="sys-devel/gettext" - NLS_RDEPEND="virtual/libintl" -else - SRC_URI="mirror://sourceforge/xine/${P}.tar.xz" - KEYWORDS="~amd64 ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86" - S="${WORKDIR}"/${PN}-$(ver_cut 1-2) - - NLS_IUSE="nls" - NLS_DEPEND="nls? ( sys-devel/gettext )" - NLS_RDEPEND="nls? ( virtual/libintl )" -fi - -DESCRIPTION="Core libraries for Xine movie player" -HOMEPAGE="https://xine.sourceforge.net/" - -LICENSE="GPL-2" -SLOT="1" -IUSE="a52 aac aalib +alsa bluray cpu_flags_ppc_altivec +css dav1d dts dvb dxr3 fbcon flac gtk imagemagick jack jpeg libcaca mad +mmap mng modplug musepack nfs opengl oss pulseaudio samba sftp sdl speex theora truetype v4l vaapi vcd vdpau vdr vidix +vis vorbis vpx wavpack wayland +X xinerama +xv xvmc ${NLS_IUSE}" -REQUIRED_USE=" - vidix? ( || ( X fbcon ) ) - wayland? ( opengl ) - xv? ( X ) - xinerama? ( X ) -" - -RDEPEND=" - dev-libs/libxdg-basedir - media-libs/libdvdnav - media-video/ffmpeg:= - sys-libs/zlib:= - virtual/libiconv - a52? ( media-libs/a52dec ) - aac? ( media-libs/faad2 ) - aalib? ( media-libs/aalib ) - alsa? ( media-libs/alsa-lib ) - bluray? ( >=media-libs/libbluray-0.2.1:= ) - css? ( >=media-libs/libdvdcss-1.2.10 ) - dav1d? ( media-libs/dav1d:= ) - dts? ( media-libs/libdca ) - dxr3? ( media-libs/libfame ) - flac? ( media-libs/flac:= ) - gtk? ( x11-libs/gdk-pixbuf:2 ) - imagemagick? ( virtual/imagemagick-tools ) - jack? ( virtual/jack ) - jpeg? ( media-libs/libjpeg-turbo:= ) - libcaca? ( media-libs/libcaca ) - mad? ( media-libs/libmad ) - mng? ( media-libs/libmng:= ) - modplug? ( >=media-libs/libmodplug-0.8.8.1 ) - musepack? ( >=media-sound/musepack-tools-444 ) - nfs? ( net-fs/libnfs:= ) - opengl? ( - virtual/glu - virtual/opengl - ) - pulseaudio? ( media-libs/libpulse ) - samba? ( net-fs/samba ) - sftp? ( net-libs/libssh2 ) - sdl? ( media-libs/libsdl ) - speex? ( - media-libs/libogg - media-libs/speex - ) - theora? ( - media-libs/libogg - media-libs/libtheora - ) - truetype? ( - media-libs/fontconfig - media-libs/freetype:2 - ) - v4l? ( media-libs/libv4l ) - vaapi? ( media-libs/libva:=[opengl,X] ) - vcd? ( - >=media-video/vcdimager-0.7.23 - dev-libs/libcdio:=[-minimal] - ) - vdpau? ( x11-libs/libvdpau ) - vorbis? ( - media-libs/libogg - media-libs/libvorbis - ) - vpx? ( media-libs/libvpx:= ) - wavpack? ( media-sound/wavpack ) - wayland? ( dev-libs/wayland ) - X? ( - x11-libs/libX11 - x11-libs/libXext - x11-libs/libxcb:= - ) - xinerama? ( x11-libs/libXinerama ) - xv? ( x11-libs/libXv ) - xvmc? ( x11-libs/libXvMC ) -" -DEPEND=" - ${RDEPEND} - oss? ( virtual/os-headers ) - v4l? ( virtual/os-headers ) - X? ( - x11-base/xorg-proto - x11-libs/libXt - ) - xv? ( x11-base/xorg-proto ) - xvmc? ( x11-base/xorg-proto ) - xinerama? ( x11-base/xorg-proto ) -" -BDEPEND=" - app-arch/xz-utils - >=sys-devel/libtool-2.2.6b - virtual/pkgconfig -" - -src_prepare() { - default - - sed -i -e '/define VDR_ABS_FIFO_DIR/s|".*"|"/var/vdr/xine"|' src/vdr/input_vdr.c || die - - if [[ "${PV}" = *9999* ]] ; then - eautoreconf - else - elibtoolize - fi - - local x - for x in 0 1 2 3; do - sed -i -e "/^O${x}_CFLAGS=\"-O${x}\"/d" configure || die - done -} - -src_configure() { - [[ ${CHOST} == i?86-* ]] && append-flags -fomit-frame-pointer #422519 - - local win32dir #197236 - if has_multilib_profile; then - win32dir=/usr/$(ABI="x86" get_libdir)/win32 - else - win32dir=/usr/$(get_libdir)/win32 - fi - - local myconf=( - --disable-directfb - --disable-gnomevfs - --disable-optimizations - --disable-real-codecs - --disable-v4l - --disable-w32dll - --enable-avformat - --enable-ipv6 - --with-external-dvdnav - --with-real-codecs-path=/usr/$(get_libdir)/codecs - --with-w32-path=${win32dir} - --with-xv-path=/usr/$(get_libdir) - --without-esound - --without-fusionsound - # Added dav1d for now. Could support both? Does it need to be XOR? - --without-libaom - $(use_enable a52 a52dec) - $(use_enable aac faad) - $(use_enable aalib) - $(use_enable cpu_flags_ppc_altivec altivec) - $(use_enable bluray) - $(use_enable dts) - $(use_enable dvb) - $(use_enable dxr3) - $(use_enable fbcon fb) - $(use_enable gtk gdkpixbuf) - $(use_enable jpeg libjpeg) - $(use_enable mad) - $(use_enable mmap) - $(use_enable mng) - $(use_enable modplug) - $(use_enable musepack) - $(use_enable nfs) - $(use_enable opengl) - $(use_enable opengl glu) - $(use_enable oss) - $(use_enable samba) - $(use_enable sftp) - $(use_enable v4l libv4l) - $(use_enable v4l v4l2) - $(use_enable vaapi) - $(use_enable vdpau) - $(use_enable vis) - $(use_enable vidix) - $(use_enable xinerama) - $(use_enable xvmc) - $(use_enable vcd) - $(use_enable vdr) - $(use_enable vpx) - $(use_enable wayland) - $(use_with alsa) - $(use_with dav1d) - $(use_with flac libflac) - $(use_with imagemagick) - $(use_with jack) - $(use_with libcaca caca) - $(use_with pulseaudio) - $(use_with sdl) - $(use_with speex) - $(use_with theora) - $(use_with truetype fontconfig) - $(use_with truetype freetype) - $(use_with vorbis) - $(use_with wavpack) - $(use_with X x) - $(use_with X xcb) - ) - [[ ${PV} == *9999* ]] || myconf+=( $(use_enable nls) ) - - CONFIG_SHELL="${BROOT}"/bin/bash econf "${myconf[@]}" -} - -src_compile() { - # enable verbose building, bug #448140 - emake V=1 -} - -src_install() { - default - find "${D}" -name '*.la' -delete || die - rm "${ED}"/usr/share/doc/${PF}/COPYING || die -} diff --git a/media-libs/xine-lib/xine-lib-1.2.9999.ebuild b/media-libs/xine-lib/xine-lib-1.2.9999.ebuild index a7cce97ce1ac..1c9b1e49151b 100644 --- a/media-libs/xine-lib/xine-lib-1.2.9999.ebuild +++ b/media-libs/xine-lib/xine-lib-1.2.9999.ebuild @@ -81,7 +81,7 @@ RDEPEND=" media-libs/freetype:2 ) v4l? ( media-libs/libv4l ) - vaapi? ( media-libs/libva:=[opengl,X] ) + vaapi? ( media-libs/libva:=[X] ) vcd? ( >=media-video/vcdimager-0.7.23 dev-libs/libcdio:=[-minimal] diff --git a/media-sound/Manifest.gz b/media-sound/Manifest.gz index 05c61e70907c..1407ea048825 100644 Binary files a/media-sound/Manifest.gz and b/media-sound/Manifest.gz differ diff --git a/media-sound/pavucontrol-qt/Manifest b/media-sound/pavucontrol-qt/Manifest index 8f03c10ac606..394a18556bfb 100644 --- a/media-sound/pavucontrol-qt/Manifest +++ b/media-sound/pavucontrol-qt/Manifest @@ -1,2 +1,3 @@ DIST pavucontrol-qt-1.0.0.tar.xz 110092 BLAKE2B 82d95fb649422d5d9921b8d1b7759367689d884e7bf134c47a7254f2bdf9c0eaf31fc4f96cbc105112b52c5619f31f13a1816545b7d619f4b358fc185c4d1652 SHA512 10e03572287a468b2c8062098edab1e5783a6b02ec3629ff0d65f87a8dbe2e490752d9edfdba1f0886165302ec9da615467344ae6b7fa97afde63491e193df89 DIST pavucontrol-qt-1.2.0.tar.xz 113024 BLAKE2B 3a18ea2a9c8d60d9042b43b4ebca92d6102ce1d5076168bb7dc23613f24d604d20e239bdefd15133988708b6be9b9070b480c2cfdf79a2467b65c17dd9aa8f25 SHA512 c13a04e87aa9aec8ac8261259c0eda1d7f31df5f1e6f5c8ca782a56bc3e1d6f1d9236875c68adfd620fa0b1d3430f1a470d83158c8d82ccd8155ba71d7e8ab6e +DIST pavucontrol-qt-1.3.0.tar.xz 107612 BLAKE2B 1b3453d3622247adfbc69cc76cc267567bd7d6d8779a7b46b116d204cd29852acf06359f5a258e3d964bc4564ce8b490a527ae61fa6357793410887ac3616403 SHA512 64f954b103b6ffbb97a81a23489799a1fff71810f15f755b92e814a03d8bbe6351ba2a1c8179d60777cbbe60e5ee40cf0e04167cf1467a5b27c9b02142f7cb8c diff --git a/media-sound/pavucontrol-qt/pavucontrol-qt-1.3.0.ebuild b/media-sound/pavucontrol-qt/pavucontrol-qt-1.3.0.ebuild new file mode 100644 index 000000000000..427e9295dfc6 --- /dev/null +++ b/media-sound/pavucontrol-qt/pavucontrol-qt-1.3.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="Qt GUI Pulseaudio Mixer" +HOMEPAGE="https://lxqt-project.org/" + +if [[ ${PV} = *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git" +else + SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~riscv ~x86" +fi + +LICENSE="GPL-2 GPL-2+" +SLOT="0" + +BDEPEND=" + >=dev-qt/linguist-tools-5.15:5 + >=dev-util/lxqt-build-tools-0.13.0 + virtual/pkgconfig +" +DEPEND=" + dev-libs/glib:2 + >=dev-qt/qtgui-5.15:5 + >=dev-qt/qtcore-5.15:5 + >=dev-qt/qtwidgets-5.15:5 + media-sound/pulseaudio[glib] +" +RDEPEND="${DEPEND}" diff --git a/media-sound/rhythmbox/Manifest b/media-sound/rhythmbox/Manifest index 463e83756094..04e7fdc976fc 100644 --- a/media-sound/rhythmbox/Manifest +++ b/media-sound/rhythmbox/Manifest @@ -1 +1,2 @@ DIST rhythmbox-3.4.6.tar.xz 3535224 BLAKE2B 5e24facd810e72296ea541f8131b2ac364de0b38b0fd08a1fe6223a333e619cd08a3959fbbc6fbbd36a39990c7cc871decaefc316ce4910460aa6b446b3cb4c0 SHA512 d48818a6f299b3da8ae78bf13e41d702244d83a473586008b53f9c4cc504495ac2570c520c65efaf9e75408363b0256121d12680940c673d2977c7d177ef1fb3 +DIST rhythmbox-3.4.7.tar.xz 3673444 BLAKE2B a9186d7c23f281ff0a0d4a2188061473e9bab39078f816051e385319afeb1a8825e124e608fc50422f1bd27adae569d75fb6c53af23c7d51086dcf01b962d652 SHA512 58de6e51d046920857ba0905043f4863ef443d5eca28cdf93c1a25e3053322664eb1f894c102d5629f8261c507626e215c097ee166f13a3e7cd82fb35c891cb4 diff --git a/media-sound/rhythmbox/rhythmbox-3.4.7.ebuild b/media-sound/rhythmbox/rhythmbox-3.4.7.ebuild new file mode 100644 index 000000000000..eecda8b51b10 --- /dev/null +++ b/media-sound/rhythmbox/rhythmbox-3.4.7.ebuild @@ -0,0 +1,137 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_REQ_USE="xml(+)" + +inherit gnome.org gnome2-utils python-single-r1 meson virtualx xdg + +DESCRIPTION="Music management and playback software for GNOME" +HOMEPAGE="https://wiki.gnome.org/Apps/Rhythmbox" + +LICENSE="GPL-2" +SLOT="0" + +IUSE="cdr daap dbus gnome-keyring gtk-doc ipod libnotify lirc mtp +python test +udev upnp-av" +RESTRICT="!test? ( test )" +REQUIRED_USE=" + ipod? ( udev ) + mtp? ( udev ) + dbus? ( python ) + python? ( ${PYTHON_REQUIRED_USE} ) +" + +KEYWORDS="~amd64" + +DEPEND=" + x11-libs/cairo + >=x11-libs/gdk-pixbuf-2.18:2 + >=dev-libs/glib-2.66.0:2 + >=dev-libs/gobject-introspection-0.10:= + >=media-libs/gstreamer-1.4.0:1.0[introspection] + >=media-libs/gst-plugins-base-1.4.0:1.0[introspection] + >=x11-libs/gtk+-3.20.0:3[introspection] + dev-libs/json-glib + >=dev-libs/libpeas-0.7.3[gtk] + >=net-libs/libsoup-3.0.7:3.0 + >=dev-libs/libxml2-2.7.8:2 + x11-libs/pango + >=sys-libs/tdb-1.2.6 + >=dev-libs/totem-pl-parser-3.2:= + + cdr? ( >=app-cdr/brasero-2.91.90 ) + daap? ( + >=net-libs/libdmapsharing-3.9.11:4.0= + >=media-plugins/gst-plugins-soup-1.4:1.0 + ) + gnome-keyring? ( >=app-crypt/libsecret-0.18 ) + libnotify? ( >=x11-libs/libnotify-0.7.0 ) + lirc? ( app-misc/lirc ) + python? ( + ${PYTHON_DEPS} + $(python_gen_cond_dep ' + >=dev-python/pygobject-3.0:3[${PYTHON_USEDEP}] + ') + ) + udev? ( + dev-libs/libgudev:= + ipod? ( >=media-libs/libgpod-0.7.92[udev] ) + mtp? ( >=media-libs/libmtp-0.3 ) + ) +" +RDEPEND="${DEPEND} + media-plugins/gst-plugins-soup:1.0 + media-plugins/gst-plugins-libmms:1.0 + || ( + media-plugins/gst-plugins-cdparanoia:1.0 + media-plugins/gst-plugins-cdio:1.0 + ) + media-plugins/gst-plugins-meta:1.0 + media-plugins/gst-plugins-taglib:1.0 + x11-themes/adwaita-icon-theme + python? ( + >=dev-libs/libpeas-0.7.3[python,${PYTHON_SINGLE_USEDEP}] + net-libs/libsoup:3.0[introspection] + x11-libs/gdk-pixbuf:2[introspection] + x11-libs/gtk+:3[introspection] + x11-libs/pango[introspection] + + dbus? ( sys-apps/dbus ) + gnome-keyring? ( >=app-crypt/libsecret-0.18[introspection] ) + ) + upnp-av? ( + >=media-libs/grilo-0.3.15-r1:0.3 + >=media-plugins/grilo-plugins-0.3.16:0.3[upnp-av] + ) +" +BDEPEND=" + gtk-doc? ( dev-util/gtk-doc ) + >=dev-util/intltool-0.35 + dev-util/itstool + virtual/pkgconfig + test? ( dev-libs/check ) +" + +pkg_setup() { + use python && python-single-r1_pkg_setup +} + +src_configure() { + local emesonargs=( + $(meson_feature cdr brasero) + $(meson_feature daap) + -Dfm_radio=enabled + $(meson_feature upnp-av grilo) + $(meson_feature udev gudev) + $(meson_feature ipod) + $(meson_feature libnotify) + $(meson_feature gnome-keyring libsecret) + $(meson_feature lirc) + $(meson_feature mtp) + $(meson_feature python plugins_python) + -Dplugins_vala=disabled + -Dsample-plugins=false + + -Dhelp=true + $(meson_use gtk-doc gtk_doc) + $(meson_feature test tests) + ) + meson_src_configure +} + +src_test() { + unset SESSION_MANAGER + "${BROOT}${GLIB_COMPILE_SCHEMAS}" --allow-any-name "${S}/data" || die + GSETTINGS_SCHEMA_DIR="${S}/data" virtx meson_src_test +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} diff --git a/media-tv/Manifest.gz b/media-tv/Manifest.gz index 27a71f8a163c..dd8fa1834cec 100644 Binary files a/media-tv/Manifest.gz and b/media-tv/Manifest.gz differ diff --git a/media-tv/kodi/kodi-19.4-r3.ebuild b/media-tv/kodi/kodi-19.4-r3.ebuild deleted file mode 100644 index 7f010fb5fdd6..000000000000 --- a/media-tv/kodi/kodi-19.4-r3.ebuild +++ /dev/null @@ -1,370 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_REQ_USE="sqlite,ssl" -LIBDVDCSS_VERSION="1.4.2-Leia-Beta-5" -LIBDVDREAD_VERSION="6.0.0-Leia-Alpha-3" -LIBDVDNAV_VERSION="6.0.0-Leia-Alpha-3" -FFMPEG_VERSION="4.3.2" -CODENAME="Matrix" -FFMPEG_KODI_VERSION="19.1" -PYTHON_COMPAT=( python3_{9,10} ) -SRC_URI="https://github.com/xbmc/libdvdcss/archive/${LIBDVDCSS_VERSION}.tar.gz -> libdvdcss-${LIBDVDCSS_VERSION}.tar.gz - https://github.com/xbmc/libdvdread/archive/${LIBDVDREAD_VERSION}.tar.gz -> libdvdread-${LIBDVDREAD_VERSION}.tar.gz - https://github.com/xbmc/libdvdnav/archive/${LIBDVDNAV_VERSION}.tar.gz -> libdvdnav-${LIBDVDNAV_VERSION}.tar.gz - !system-ffmpeg? ( https://github.com/xbmc/FFmpeg/archive/${FFMPEG_VERSION}-${CODENAME}-${FFMPEG_KODI_VERSION}.tar.gz -> ffmpeg-${PN}-${FFMPEG_VERSION}-${CODENAME}-${FFMPEG_KODI_VERSION}.tar.gz )" -if [[ ${PV} == *9999 ]] ; then - EGIT_REPO_URI="https://github.com/xbmc/xbmc.git" - EGIT_BRANCH="Matrix" - inherit git-r3 -else - MY_PV=${PV/_p/_r} - MY_PV=${MY_PV/_alpha/a} - MY_PV=${MY_PV/_beta/b} - MY_PV=${MY_PV/_rc/RC} - MY_PV="${MY_PV}-${CODENAME}" - MY_P="${PN}-${MY_PV}" - SRC_URI+=" https://github.com/xbmc/xbmc/archive/${MY_PV}.tar.gz -> ${MY_P}.tar.gz" - KEYWORDS="amd64 ~arm arm64 x86" - S=${WORKDIR}/xbmc-${MY_PV} -fi - -inherit autotools cmake desktop libtool linux-info pax-utils python-single-r1 xdg - -PATCHES=( - "${FILESDIR}/${P}-dav1d-1.0.0.patch" -) - -DESCRIPTION="A free and open source media-player and entertainment hub" -HOMEPAGE="https://kodi.tv/ https://kodi.wiki/" - -LICENSE="GPL-2+" -SLOT="0" -# use flag is called libusb so that it doesn't fool people in thinking that -# it is _required_ for USB support. Otherwise they'll disable udev and -# that's going to be worse. -IUSE="airplay alsa bluetooth bluray caps cec +css dav1d dbus eventclients gbm gles lcms libusb lirc mariadb mysql nfs +optical power-control pulseaudio raspberry-pi samba +system-ffmpeg test udf udev udisks upnp upower vaapi vdpau wayland webserver +X +xslt zeroconf" -IUSE="${IUSE} cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_sse4_1 cpu_flags_x86_sse4_2 cpu_flags_x86_avx cpu_flags_x86_avx2 cpu_flags_arm_neon" -REQUIRED_USE=" - ${PYTHON_REQUIRED_USE} - || ( gbm wayland X ) - ?? ( mariadb mysql ) - bluray? ( udf ) - udev? ( !libusb ) - udisks? ( dbus ) - upower? ( dbus ) - power-control? ( dbus ) - vdpau? ( - X - !gles - !gbm - ) - zeroconf? ( dbus ) -" -RESTRICT="!test? ( test )" - -COMMON_DEPEND=" - >=dev-libs/lzo-2.04 - >=dev-libs/flatbuffers-1.12.0:= - >=media-libs/libjpeg-turbo-2.0.4:= - >=media-libs/libpng-1.6.26:0= -" -COMMON_TARGET_DEPEND="${PYTHON_DEPS} - airplay? ( - >=app-pda/libplist-2.0.0 - net-libs/shairplay - ) - alsa? ( >=media-libs/alsa-lib-1.1.4.1 ) - bluetooth? ( net-wireless/bluez ) - bluray? ( >=media-libs/libbluray-1.1.2 ) - caps? ( sys-libs/libcap ) - dbus? ( sys-apps/dbus ) - dev-db/sqlite - =dev-libs/fribidi-1.0.5 - cec? ( >=dev-libs/libcec-4.0[raspberry-pi?] ) - dev-libs/libpcre[cxx] - >=dev-libs/spdlog-1.5.0:= - dev-libs/tinyxml[stl] - $(python_gen_cond_dep ' - dev-python/pillow[${PYTHON_USEDEP}] - dev-python/pycryptodome[${PYTHON_USEDEP}] - ') - >=dev-libs/libcdio-2.1.0[cxx] - >=dev-libs/libfmt-6.1.2 - dev-libs/libfstrcmp - gbm? ( - >=dev-libs/libinput-1.10.5 - media-libs/mesa[gbm(+)] - x11-libs/libxkbcommon - ) - gles? ( - !raspberry-pi? ( media-libs/mesa[gles2] ) - ) - lcms? ( media-libs/lcms:2 ) - libusb? ( virtual/libusb:1 ) - virtual/ttf-fonts - media-fonts/roboto - >=media-libs/freetype-2.10.1 - >=media-libs/libass-0.13.4 - !raspberry-pi? ( media-libs/mesa[egl(+)] ) - >=media-libs/taglib-1.11.1 - system-ffmpeg? ( - >=media-video/ffmpeg-${FFMPEG_VERSION}:=[dav1d?,encode,postproc] - =media-video/ffmpeg-4*[openssl] - ) - !system-ffmpeg? ( - app-arch/bzip2 - dav1d? ( media-libs/dav1d:= ) - ) - mysql? ( dev-db/mysql-connector-c:= ) - mariadb? ( dev-db/mariadb-connector-c:= ) - >=net-misc/curl-7.68.0[http2] - nfs? ( >=net-fs/libnfs-2.0.0:= ) - !gles? ( media-libs/glu ) - >=dev-libs/openssl-1.1.1k:0= - raspberry-pi? ( - || ( media-libs/raspberrypi-userland media-libs/raspberrypi-userland-bin media-libs/mesa[egl(+),gles2,video_cards_vc4] ) - ) - pulseaudio? ( media-sound/pulseaudio ) - samba? ( >=net-fs/samba-3.4.6[smbclient(+)] ) - >=sys-libs/zlib-1.2.11 - udf? ( >=dev-libs/libudfread-1.0.0 ) - udev? ( virtual/udev ) - vaapi? ( - media-libs/libva:= - !gles? ( media-libs/libva[opengl] ) - system-ffmpeg? ( media-video/ffmpeg[vaapi] ) - wayland? ( media-libs/libva[wayland] ) - X? ( media-libs/libva[X] ) - ) - virtual/libiconv - vdpau? ( - || ( >=x11-libs/libvdpau-1.1 >=x11-drivers/nvidia-drivers-180.51 ) - system-ffmpeg? ( media-video/ffmpeg[vdpau] ) - ) - wayland? ( - >=dev-cpp/waylandpp-0.2.3:= - media-libs/mesa[wayland] - >=dev-libs/wayland-protocols-1.7 - >=x11-libs/libxkbcommon-0.4.1 - ) - webserver? ( >=net-libs/libmicrohttpd-0.9.55[messages(+)] ) - X? ( - media-libs/mesa[X] - !gles? ( media-libs/libglvnd[X] ) - x11-libs/libX11 - x11-libs/libXrandr - x11-libs/libXrender - system-ffmpeg? ( media-video/ffmpeg[X] ) - ) - x11-libs/libdrm - xslt? ( - dev-libs/libxslt - >=dev-libs/libxml2-2.9.4 - ) - zeroconf? ( net-dns/avahi[dbus] ) -" -RDEPEND="${COMMON_DEPEND} ${COMMON_TARGET_DEPEND} - lirc? ( app-misc/lirc ) - power-control? ( || ( sys-apps/systemd sys-auth/elogind ) ) - udisks? ( sys-fs/udisks:2 ) - upower? ( sys-power/upower ) -" -DEPEND="${COMMON_DEPEND} ${COMMON_TARGET_DEPEND} - dev-libs/rapidjson - test? ( >=dev-cpp/gtest-1.10.0 ) -" -BDEPEND="${COMMON_DEPEND} - dev-lang/swig - dev-util/cmake - media-libs/giflib - >=dev-libs/flatbuffers-1.11.0 - >=media-libs/libjpeg-turbo-2.0.4:= - >=media-libs/libpng-1.6.26:0= - virtual/pkgconfig - virtual/jre -" - -CONFIG_CHECK="~IP_MULTICAST" -ERROR_IP_MULTICAST=" -In some cases Kodi needs to access multicast addresses. -Please consider enabling IP_MULTICAST under Networking options. -" - -pkg_setup() { - check_extra_config - python-single-r1_pkg_setup -} - -src_unpack() { - if [[ ${PV} == *9999 ]] ; then - git-r3_src_unpack - else - default - fi -} - -src_prepare() { - # https://bugs.gentoo.org/885419 - if has_version ">=media-libs/mesa-22.3.0"; then - PATCHES+=( "${FILESDIR}/${P}-fix-mesa-22.3.0-build.patch" ) - fi - - cmake_src_prepare - - # avoid long delays when powerkit isn't running #348580 - sed -i \ - -e '/dbus_connection_send_with_reply_and_block/s:-1:3000:' \ - xbmc/platform/linux/*.cpp || die - - # Prepare tools and libs witch are configured with autotools during compile time - AUTOTOOLS_DIRS=( - "${S}"/tools/depends/native/TexturePacker/src - "${S}"/tools/depends/native/JsonSchemaBuilder/src - ) - - local d - for d in "${AUTOTOOLS_DIRS[@]}" ; do - pushd ${d} >/dev/null || die - AT_NOELIBTOOLIZE="yes" AT_TOPLEVEL_EAUTORECONF="yes" eautoreconf - popd >/dev/null || die - done - elibtoolize - - # Prevent autoreconf rerun - sed -e 's/autoreconf -vif/echo "autoreconf already done in src_prepare()"/' -i \ - "${S}"/tools/depends/native/TexturePacker/src/autogen.sh \ - "${S}"/tools/depends/native/JsonSchemaBuilder/src/autogen.sh \ - || die -} - -src_configure() { - local platform=() - use gbm && platform+=( gbm ) - use wayland && platform+=( wayland ) - use X && platform+=( x11 ) - local core_platform_name="${platform[@]}" - local mycmakeargs=( - -DENABLE_SSE=$(usex cpu_flags_x86_sse) - -DENABLE_SSE2=$(usex cpu_flags_x86_sse2) - -DENABLE_SSE3=$(usex cpu_flags_x86_sse3) - -DENABLE_SSE4_1=$(usex cpu_flags_x86_sse4_1) - -DENABLE_SSE4_2=$(usex cpu_flags_x86_sse4_2) - -DENABLE_AVX=$(usex cpu_flags_x86_avx) - -DENABLE_AVX2=$(usex cpu_flags_x86_avx2) - -DENABLE_NEON=$(usex cpu_flags_arm_neon) - -Ddocdir="${EPREFIX}/usr/share/doc/${PF}" - -DVERBOSE=ON - -DENABLE_LDGOLD=OFF # https://bugs.gentoo.org/show_bug.cgi?id=606124 - -DENABLE_ALSA=$(usex alsa) - -DENABLE_AIRTUNES=$(usex airplay) - -DENABLE_AVAHI=$(usex zeroconf) - -DENABLE_BLUETOOTH=$(usex bluetooth) - -DENABLE_BLURAY=$(usex bluray) - -DENABLE_CCACHE=OFF - -DENABLE_CLANGFORMAT=OFF - -DENABLE_CLANGTIDY=OFF - -DENABLE_CPPCHECK=OFF - -DENABLE_ISO9660PP=$(usex optical) - -DENABLE_CEC=$(usex cec) - -DENABLE_DBUS=$(usex dbus) - -DENABLE_DVDCSS=$(usex css) - -DENABLE_EVENTCLIENTS=ON # alway enable to have 'kodi-send' and filter extra staff in 'src_install()' - -DENABLE_INTERNAL_CROSSGUID=OFF - -DENABLE_INTERNAL_RapidJSON=OFF - -DENABLE_INTERNAL_FMT=OFF - -DENABLE_INTERNAL_FFMPEG="$(usex !system-ffmpeg)" - -DENABLE_INTERNAL_FSTRCMP=OFF - -DENABLE_INTERNAL_FLATBUFFERS=OFF - -DENABLE_INTERNAL_DAV1D=OFF - -DENABLE_INTERNAL_GTEST=OFF - -DENABLE_INTERNAL_UDFREAD=OFF - -DENABLE_INTERNAL_SPDLOG=OFF - -DENABLE_CAP=$(usex caps) - -DENABLE_LCMS2=$(usex lcms) - -DENABLE_LIRCCLIENT=$(usex lirc) - -DENABLE_MARIADBCLIENT=$(usex mariadb) - -DENABLE_MDNS=OFF # used only on Android - -DENABLE_MICROHTTPD=$(usex webserver) - -DENABLE_MYSQLCLIENT=$(usex mysql) - -DENABLE_NFS=$(usex nfs) - -DENABLE_OPENGLES=$(usex gles) - -DENABLE_OPENGL=$(usex !gles) - -DENABLE_OPTICAL=$(usex optical) - -DENABLE_PLIST=$(usex airplay) - -DENABLE_PULSEAUDIO=$(usex pulseaudio) - -DENABLE_SMBCLIENT=$(usex samba) - -DENABLE_SNDIO=OFF - -DENABLE_TESTING=$(usex test) - -DENABLE_UDEV=$(usex udev) - -DENABLE_UDFREAD=$(usex udf) - -DENABLE_UPNP=$(usex upnp) - -DENABLE_VAAPI=$(usex vaapi) - -DENABLE_VDPAU=$(usex vdpau) - -DENABLE_XSLT=$(usex xslt) - -Dlibdvdread_URL="${DISTDIR}/libdvdread-${LIBDVDREAD_VERSION}.tar.gz" - -Dlibdvdnav_URL="${DISTDIR}/libdvdnav-${LIBDVDNAV_VERSION}.tar.gz" - -Dlibdvdcss_URL="${DISTDIR}/libdvdcss-${LIBDVDCSS_VERSION}.tar.gz" - -DPYTHON_INCLUDE_DIR="$(python_get_includedir)" - -DPYTHON_LIBRARY="$(python_get_library_path)" - -DAPP_RENDER_SYSTEM="$(usex gles gles gl)" - -DCORE_PLATFORM_NAME="${core_platform_name}" - ) - - use !udev && mycmakeargs+=( -DENABLE_LIBUSB=$(usex libusb) ) - - use X && use !gles && mycmakeargs+=( -DENABLE_GLX=ON ) - - if use system-ffmpeg; then - mycmakeargs+=( -DWITH_FFMPEG="yes" ) - else - mycmakeargs+=( -DFFMPEG_URL="${DISTDIR}/ffmpeg-${PN}-${FFMPEG_VERSION}-${CODENAME}-${FFMPEG_KODI_VERSION}.tar.gz" ) - fi - - if ! echo "${CFLAGS}" | grep -Fwqe '-DNDEBUG' - && ! echo "${CFLAGS}" | grep -Fwqe '-D_DEBUG' - ; then - CFLAGS+=' -DNDEBUG' # Kodi requires one of the 'NDEBUG' or '_DEBUG' defines - CXXFLAGS+=' -DNDEBUG' - fi - - cmake_src_configure -} - -src_compile() { - cmake_src_compile all -} - -src_test() { - local myctestargs=( - # Known failing, unreliable test - # bug #743938 - -E "(TestCPUInfo.GetCPUFrequency)" - ) - - # see https://github.com/xbmc/xbmc/issues/17860#issuecomment-630120213 - KODI_HOME="${BUILD_DIR}" cmake_build check -} - -src_install() { - cmake_src_install - - pax-mark Em "${ED}"/usr/$(get_libdir)/${PN}/${PN}.bin - - newicon media/icon48x48.png kodi.png - - rm "${ED}"/usr/share/kodi/addons/skin.estuary/fonts/Roboto-Thin.ttf || die - dosym ../../../../fonts/roboto/Roboto-Thin.ttf \ - usr/share/kodi/addons/skin.estuary/fonts/Roboto-Thin.ttf - - if use !eventclients ; then - rm -f "${ED}"/usr/bin/kodi-ps3remote || die - rm -f "${D}"$(python_get_sitedir)/kodi/ps3_remote.py || die - rm -rf "${D}"$(python_get_sitedir)/kodi/ps3 || die - rm -rf "${D}"$(python_get_sitedir)/kodi/bt || die - rm -rf "${ED}"/usr/share/doc/${PF}/kodi-eventclients-dev || die - fi - - python_optimize "${D}$(python_get_sitedir)" -} diff --git a/media-tv/mythtv/files/mythtv-32.0-python-version.patch b/media-tv/mythtv/files/mythtv-32.0-python-version.patch new file mode 100644 index 000000000000..8f86cdda3764 --- /dev/null +++ b/media-tv/mythtv/files/mythtv-32.0-python-version.patch @@ -0,0 +1,25 @@ +https://bugs.gentoo.org/891189 +https://github.com/MythTV/mythtv/issues/711 +https://github.com/MythTV/mythtv/commit/23e158cbd9357e0d31834dff9c45022758671255 + +From 23e158cbd9357e0d31834dff9c45022758671255 Mon Sep 17 00:00:00 2001 +From: David Hampton +Date: Sun, 5 Jun 2022 00:43:38 -0400 +Subject: [PATCH] Fix "XX.0.-1 is an invalid version" warning in python + bindings. + +(cherry picked from commit 0f8e58b20a4246d46a77406fcf3c5368fbabaf8b) + +Fixes #711. +--- a/bindings/python/setup.cfg ++++ b/bindings/python/setup.cfg +@@ -2,7 +2,7 @@ + + [metadata] + name = MythTV +-version = 32.0.-1 ++version = 32.0 + description = MythTV Python bindings. + long_description = Provides canned database and protocol access to the MythTV database, mythproto, mythxml, services_api and frontend remote control. + url = https://mythtv.org + diff --git a/media-tv/mythtv/mythtv-31.0_p20210731-r2.ebuild b/media-tv/mythtv/mythtv-31.0_p20210731-r3.ebuild similarity index 99% rename from media-tv/mythtv/mythtv-31.0_p20210731-r2.ebuild rename to media-tv/mythtv/mythtv-31.0_p20210731-r3.ebuild index b528fb7056b2..1065b21829e0 100644 --- a/media-tv/mythtv/mythtv-31.0_p20210731-r2.ebuild +++ b/media-tv/mythtv/mythtv-31.0_p20210731-r3.ebuild @@ -92,7 +92,7 @@ RDEPEND=" opengl? ( dev-qt/qtopengl:5 ) pulseaudio? ( media-sound/pulseaudio ) systemd? ( sys-apps/systemd:= ) - vaapi? ( media-libs/libva:=[opengl] ) + vaapi? ( media-libs/libva:= ) vdpau? ( x11-libs/libvdpau ) vpx? ( media-libs/libvpx:= ) x264? ( media-libs/x264:= ) diff --git a/media-tv/mythtv/mythtv-32.0-r2.ebuild b/media-tv/mythtv/mythtv-32.0-r4.ebuild similarity index 98% rename from media-tv/mythtv/mythtv-32.0-r2.ebuild rename to media-tv/mythtv/mythtv-32.0-r4.ebuild index 5af8488a91e0..ce9af87d74fa 100644 --- a/media-tv/mythtv/mythtv-32.0-r2.ebuild +++ b/media-tv/mythtv/mythtv-32.0-r4.ebuild @@ -85,7 +85,7 @@ RDEPEND=" opengl? ( dev-qt/qtopengl:5 ) pulseaudio? ( media-sound/pulseaudio ) systemd? ( sys-apps/systemd:= ) - vaapi? ( media-libs/libva:=[opengl] ) + vaapi? ( media-libs/libva:= ) vdpau? ( x11-libs/libvdpau ) vpx? ( media-libs/libvpx:= ) x264? ( media-libs/x264:= ) @@ -151,6 +151,7 @@ python_check_deps() { } PATCHES=( + "${FILESDIR}"/${PN}-32.0-python-version.patch ) DISABLE_AUTOFORMATTING="yes" @@ -158,7 +159,7 @@ DOC_CONTENTS=" Support for metadata lookup changes is added. User configuration required. Details at: https://www.mythtv.org/wiki/Metadata_Lookup_Changes_March_2021 -Suppport for Python 2.7 is removed. +Support for Python 2.7 is removed. If a MYSQL server is installed, a mythtv MySQL user and mythconverg database is created if it does not already exist. @@ -284,6 +285,7 @@ src_configure() { $(use_enable vaapi) $(use_enable vdpau) $(use_enable opengl) + $(use_enable opengl egl) $(use_enable libass) ) diff --git a/media-tv/plex-media-server/files/plexmediaserver b/media-tv/plex-media-server/files/plexmediaserver deleted file mode 100644 index d1981dc1c6f4..000000000000 --- a/media-tv/plex-media-server/files/plexmediaserver +++ /dev/null @@ -1,2 +0,0 @@ -export PLEX_MEDIA_SERVER_MAX_PLUGIN_PROCS=4 -export PLEX_MEDIA_SERVER_MAX_STACK_SIZE=3000 diff --git a/media-tv/plex-media-server/files/start_pms b/media-tv/plex-media-server/files/start_pms deleted file mode 100644 index e00ba5620267..000000000000 --- a/media-tv/plex-media-server/files/start_pms +++ /dev/null @@ -1,51 +0,0 @@ -#!/bin/sh -# -# Plex Media Server - Manual start script. -# - -# Set Crash Reporting identification variables -export PLEX_MEDIA_SERVER_INFO_VENDOR="$(grep ^NAME= /etc/os-release|awk -F= '{print $2}'|tr -d \" )" -export PLEX_MEDIA_SERVER_INFO_DEVICE="PC" -export PLEX_MEDIA_SERVER_INFO_MODEL="$(uname -m)" -GENTOO_PROFILE="`readlink /etc/portage/make.profile`" -export PLEX_MEDIA_SERVER_INFO_PLATFORM_VERSION="${GENTOO_PROFILE#.*/profiles/}" - -# Change these parameters in /etc/default/plexmediaserver -export PLEX_MEDIA_SERVER_USER=plex -export PLEX_MEDIA_SERVER_MAX_PLUGIN_PROCS=6 -export PLEX_MEDIA_SERVER_HOME=/usr/lib/plexmediaserver -export PLEX_MEDIA_SERVER_MAX_STACK_SIZE=3000 -export LD_LIBRARY_PATH="${PLEX_MEDIA_SERVER_HOME}" -export PLEX_MEDIA_SERVER_TMPDIR=/tmp -export PLEX_MEDIA_SERVER_APPLICATION_SUPPORT_DIR="${HOME}/Library/Application Support" - -if [ -f /etc/default/locale ]; then - export LANG="$(cat /etc/default/locale|awk -F '=' '/LANG=/{print $2}'|sed 's/"//g')" - export LC_ALL="$LANG" -fi - -test -f /etc/default/plexmediaserver && . /etc/default/plexmediaserver - -# Silently support PLEX_USER if provided as override -if [ "$PLEX_USER" != "" ]; then - export PLEX_MEDIA_SERVER_USER="$PLEX_USER" -fi - -# Create AppSuppDir if not present -if [ ! -d "$PLEX_MEDIA_SERVER_APPLICATION_SUPPORT_DIR" ]; then - mkdir -p "$PLEX_MEDIA_SERVER_APPLICATION_SUPPORT_DIR" - if [ ! $? -eq 0 ]; then - echo "ERROR: Couldn't create $PLEX_MEDIA_SERVER_APPLICATION_SUPPORT_DIR " - exit 1 - fi -fi - -export LD_LIBRARY_PATH="${PLEX_MEDIA_SERVER_HOME}/lib":"${PLEX_MEDIA_SERVER_HOME}" -export TMPDIR="${PLEX_MEDIA_SERVER_TMPDIR}" - -ulimit -s $PLEX_MEDIA_SERVER_MAX_STACK_SIZE - -# Add sleep - for those who launch with this script -sleep 3 - -(cd /usr/lib/plexmediaserver; ./Plex\ Media\ Server) diff --git a/media-video/Manifest.gz b/media-video/Manifest.gz index 430fdab7c312..919337ac6e00 100644 Binary files a/media-video/Manifest.gz and b/media-video/Manifest.gz differ diff --git a/media-video/cheese/Manifest b/media-video/cheese/Manifest index 1cee1c50a243..7095b5972333 100644 --- a/media-video/cheese/Manifest +++ b/media-video/cheese/Manifest @@ -1,2 +1,3 @@ DIST cheese-43.0.tar.xz 1095328 BLAKE2B 728cf913336f09ae073508d6bf18f7bb0cf4bb0e16ad5d6acd5fb77b75577303b1a2d8820b280a31c15ebdcbf231205881440105c390a0f16681dc5274a74446 SHA512 07ed087490b4024ecbc097c1a62e24fdc0c5c8acac23ba3ed246104655a8b1786faee5caa5e59cfa7b725527b5aedc587b0f99a2b43100497f866966818e345e +DIST cheese-44.0.1.tar.xz 1096012 BLAKE2B 53723346eb917002b3a05edfa7bad4f83f4754f321bad6bd6a275aa48786fcf5b7ce78159b226621fcf36d21abd4b07e18f64aa17214e69ba3414b0cb254ff58 SHA512 27154db0b19a7c2f70ced4f750570b1ce0af6d8d18450d57c5a85d83f06ea041247c549e6fc73ecfb531df8a789d6f8527878e004b4c35077ef2b14badf4907a DIST cheese-44.0.tar.xz 1095980 BLAKE2B d7c5e50c8e7a5d84a2b7a2e8a1074094f4e89585e54e82a58ed8dec94e7b175d13e8dbacf739e8d4cc64fa9cd7d9f848bc0757406d0ac2290a0b910d237c1d22 SHA512 eb0a4bac724370b9347a513c84d47339882d2a42baf912f9b23bc4ae36c2ccb52a6045a6f09ed4eb1c50a04471368edffbd2ce4ef59701d82f8ae2eb40810658 diff --git a/media-video/cheese/cheese-44.0.1.ebuild b/media-video/cheese/cheese-44.0.1.ebuild new file mode 100644 index 000000000000..4b21283de386 --- /dev/null +++ b/media-video/cheese/cheese-44.0.1.ebuild @@ -0,0 +1,100 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome.org gnome2-utils meson vala virtualx xdg + +DESCRIPTION="A cheesy program to take pictures and videos from your webcam" +HOMEPAGE="https://wiki.gnome.org/Apps/Cheese" + +LICENSE="GPL-2+" +SLOT="0/8" # subslot = libcheese soname version +KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="gtk-doc +introspection test" +RESTRICT="!test? ( test )" + +DEPEND=" + >=media-libs/clutter-1.13.2:1.0[introspection?] + media-libs/clutter-gst:3.0 + >=media-libs/clutter-gtk-0.91.8:1.0 + x11-libs/gdk-pixbuf:2[jpeg,introspection?] + >=dev-libs/glib-2.39.90:2 + >=gnome-base/gnome-desktop-2.91.6:3= + >=media-libs/gstreamer-1.4:1.0[introspection?] + >=media-libs/gst-plugins-base-1.4:1.0[ogg,pango,theora,vorbis] + >=media-libs/gst-plugins-bad-1.4:1.0 + >=x11-libs/gtk+-3.13.4:3 + >=media-libs/libcanberra-0.26[gtk3] + x11-libs/libX11 + sys-apps/dbus + media-video/gnome-video-effects + introspection? ( >=dev-libs/gobject-introspection-1.56:= ) + + media-libs/cogl:1.0=[introspection?] + +" +RDEPEND="${DEPEND} + >=media-libs/gst-plugins-good-1.4:1.0 + + >=media-plugins/gst-plugins-jpeg-1.4:1.0 + || ( + >=media-plugins/gst-plugins-v4l2-1.4:1.0 + media-video/pipewire[gstreamer,v4l] + ) + >=media-plugins/gst-plugins-vpx-1.4:1.0 +" + +BDEPEND=" + gtk-doc? ( dev-util/gtk-doc ) + dev-libs/libxslt + app-text/docbook-xml-dtd:4.3 + dev-util/itstool + dev-libs/appstream-glib + dev-libs/libxml2:2 + dev-util/glib-utils + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig + x11-base/xorg-proto + test? ( x11-libs/libXtst ) + $(vala_depend) +" + +PATCHES=( + "${FILESDIR}"/${PN}-43.0-buildfix.patch +) + +src_prepare() { + default + vala_setup + xdg_environment_reset +} + +src_configure() { + local emesonargs=( + $(meson_use gtk-doc gtk_doc) + $(meson_use introspection) + $(meson_use test tests) + -Dman=true + ) + + meson_src_configure + + # Hack: version.xml is not generated if gtk-doc is not enabled + echo ${PV} > docs/reference/version.xml +} + +src_test() { + gnome2_environment_reset # Avoid dconf that looks at XDG_DATA_DIRS, which can sandbox fail if flatpak is installed + virtx meson_src_test +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} diff --git a/media-video/pipewire/files/0.3.69/0001-context-improve-state-calculations.patch b/media-video/pipewire/files/0.3.69/0001-context-improve-state-calculations.patch new file mode 100644 index 000000000000..29469205cf48 --- /dev/null +++ b/media-video/pipewire/files/0.3.69/0001-context-improve-state-calculations.patch @@ -0,0 +1,59 @@ +https://gitlab.freedesktop.org/pipewire/pipewire/-/commit/a275e825c75c93775baaeb17479e38d035d9b79a + +From a275e825c75c93775baaeb17479e38d035d9b79a Mon Sep 17 00:00:00 2001 +From: Wim Taymans +Date: Fri, 14 Apr 2023 12:01:03 +0200 +Subject: [PATCH] context: improve state calculations + +Always make peers of non-passive links runnable, even if we already +visited the peer node. This makes non-passive links between drivers set the +drivers to runnable. (midi-bridge, source to sink). It also makes nodes +collected from the (link-)group runnable when they are linked together. + +To calculate the runnable state of the other nodes, only start from +non-driver runnable nodes (like we already did when following links). + +This makes a link from echo-cancel-source to echo-cancel-sink activate +the echo-canceler chain instead of staying idle. +--- a/src/pipewire/context.c ++++ b/src/pipewire/context.c +@@ -788,9 +788,6 @@ static inline int run_nodes(struct pw_context *context, struct pw_impl_node *nod + struct pw_impl_port *p; + struct pw_impl_link *l; + +- if (!node->runnable) +- return 0; +- + pw_log_debug("node %p: '%s'", node, node->name); + + spa_list_for_each(p, &node->input_ports, link) { +@@ -885,7 +882,7 @@ static int collect_nodes(struct pw_context *context, struct pw_impl_node *node, + + pw_impl_link_prepare(l); + +- if (!l->prepared || (t != n && t->visited)) ++ if (!l->prepared) + continue; + + if (!l->passive) +@@ -906,7 +903,7 @@ static int collect_nodes(struct pw_context *context, struct pw_impl_node *node, + + pw_impl_link_prepare(l); + +- if (!l->prepared || (t != n && t->visited)) ++ if (!l->prepared) + continue; + + if (!l->passive) +@@ -936,7 +933,8 @@ static int collect_nodes(struct pw_context *context, struct pw_impl_node *node, + pw_log_debug(" next node %p: '%s' runnable:%u", n, n->name, n->runnable); + } + spa_list_for_each(n, collect, sort_link) +- run_nodes(context, n, collect); ++ if (!n->driver && n->runnable) ++ run_nodes(context, n, collect); + + return 0; + } +-- +GitLab diff --git a/media-video/pipewire/files/0.3.69/0002-revert-alsa-mixer-control-element.patch b/media-video/pipewire/files/0.3.69/0002-revert-alsa-mixer-control-element.patch new file mode 100644 index 000000000000..1076ad101d0f --- /dev/null +++ b/media-video/pipewire/files/0.3.69/0002-revert-alsa-mixer-control-element.patch @@ -0,0 +1,38 @@ +https://gitlab.freedesktop.org/pipewire/pipewire/-/commit/916f1cdfbfdc414d83031aef941a9909d1e603bd + +From 916f1cdfbfdc414d83031aef941a9909d1e603bd Mon Sep 17 00:00:00 2001 +From: Wim Taymans +Date: Fri, 14 Apr 2023 16:32:18 +0200 +Subject: [PATCH] Revert "alsa-mixer: allow to re-attach the mixer control + element" + +This reverts commit b554fc20e9ff97064721c89eb15b1b45870584e5. +--- a/spa/plugins/alsa/acp/alsa-util.c ++++ b/spa/plugins/alsa/acp/alsa-util.c +@@ -1648,20 +1648,12 @@ static int mixer_class_event(snd_mixer_class_t *class, unsigned int mask, + } else if (mask & SND_CTL_EVENT_MASK_ADD) { + snd_ctl_elem_iface_t iface = snd_hctl_elem_get_interface(helem); + if (iface == SND_CTL_ELEM_IFACE_CARD || iface == SND_CTL_ELEM_IFACE_PCM) { +- snd_mixer_t *mixer = snd_mixer_class_get_mixer(class); +- snd_ctl_elem_iface_t iface = snd_hctl_elem_get_interface(helem); +- const char *name = snd_hctl_elem_get_name(helem); +- const int index = snd_hctl_elem_get_index(helem); +- const int device = snd_hctl_elem_get_device(helem); + snd_mixer_elem_t *new_melem; + +- new_melem = pa_alsa_mixer_find(mixer, iface, name, index, device); +- if (!new_melem) { +- /* Put the hctl pointer as our private data - it will be useful for callbacks */ +- if ((err = snd_mixer_elem_new(&new_melem, SND_MIXER_ELEM_PULSEAUDIO, 0, helem, NULL)) < 0) { +- pa_log_warn("snd_mixer_elem_new failed: %s", pa_alsa_strerror(err)); +- return 0; +- } ++ /* Put the hctl pointer as our private data - it will be useful for callbacks */ ++ if ((err = snd_mixer_elem_new(&new_melem, SND_MIXER_ELEM_PULSEAUDIO, 0, helem, NULL)) < 0) { ++ pa_log_warn("snd_mixer_elem_new failed: %s", pa_alsa_strerror(err)); ++ return 0; + } + + if ((err = snd_mixer_elem_attach(new_melem, helem)) < 0) { +-- +GitLab diff --git a/media-video/pipewire/files/0.3.69/0003-filter-chain-biquads.patch b/media-video/pipewire/files/0.3.69/0003-filter-chain-biquads.patch new file mode 100644 index 000000000000..f01362604f51 --- /dev/null +++ b/media-video/pipewire/files/0.3.69/0003-filter-chain-biquads.patch @@ -0,0 +1,21 @@ +https://gitlab.freedesktop.org/pipewire/pipewire/-/commit/381be87e379996c502786883f90a19ac49e84c10 + +From 381be87e379996c502786883f90a19ac49e84c10 Mon Sep 17 00:00:00 2001 +From: Wim Taymans +Date: Sun, 16 Apr 2023 18:38:52 +0200 +Subject: [PATCH] filter-chain: config is only required for bq_raw + +Fixes #3161 +--- a/src/modules/module-filter-chain/builtin_plugin.c ++++ b/src/modules/module-filter-chain/builtin_plugin.c +@@ -287,6 +287,8 @@ static void *bq_instantiate(const struct fc_descriptor * Descriptor, + impl->rate = SampleRate; + impl->b0 = impl->a0 = 1.0f; + impl->type = bq_type_from_name(Descriptor->name); ++ if (impl->type != BQ_NONE) ++ return impl; + + if (config == NULL) + goto error; +-- +GitLab diff --git a/media-video/pipewire/pipewire-0.3.69.ebuild b/media-video/pipewire/pipewire-0.3.69-r1.ebuild similarity index 100% rename from media-video/pipewire/pipewire-0.3.69.ebuild rename to media-video/pipewire/pipewire-0.3.69-r1.ebuild diff --git a/metadata/Manifest.gz b/metadata/Manifest.gz index dcf897dd7be8..403ca778e063 100644 Binary files a/metadata/Manifest.gz and b/metadata/Manifest.gz differ diff --git a/metadata/dtd/timestamp.chk b/metadata/dtd/timestamp.chk index 413fb97d34b3..f89790580ce7 100644 --- a/metadata/dtd/timestamp.chk +++ b/metadata/dtd/timestamp.chk @@ -1 +1 @@ -Sun, 16 Apr 2023 17:39:45 +0000 +Tue, 18 Apr 2023 11:39:51 +0000 diff --git a/metadata/glsa/timestamp.chk b/metadata/glsa/timestamp.chk index 413fb97d34b3..f89790580ce7 100644 --- a/metadata/glsa/timestamp.chk +++ b/metadata/glsa/timestamp.chk @@ -1 +1 @@ -Sun, 16 Apr 2023 17:39:45 +0000 +Tue, 18 Apr 2023 11:39:51 +0000 diff --git a/metadata/md5-cache/Manifest.gz b/metadata/md5-cache/Manifest.gz index 920da6a130e4..16197aa14a81 100644 Binary files a/metadata/md5-cache/Manifest.gz and b/metadata/md5-cache/Manifest.gz differ diff --git a/metadata/md5-cache/app-accessibility/Manifest.gz b/metadata/md5-cache/app-accessibility/Manifest.gz index a9913a411f68..44c85bc7af27 100644 Binary files a/metadata/md5-cache/app-accessibility/Manifest.gz and b/metadata/md5-cache/app-accessibility/Manifest.gz differ diff --git a/metadata/md5-cache/app-accessibility/emacspeak-56.0-r1 b/metadata/md5-cache/app-accessibility/emacspeak-56.0-r1 index 7298a99243e9..d13d27413e35 100644 --- a/metadata/md5-cache/app-accessibility/emacspeak-56.0-r1 +++ b/metadata/md5-cache/app-accessibility/emacspeak-56.0-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-26.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=dev-lang/tcl:= espeak? ( app-accessibility/espeak-ng ) DESCRIPTION=The emacspeak audio desktop EAPI=8 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ GPL-3+ RDEPEND=dev-lang/tcl:= espeak? ( app-accessibility/espeak-ng ) >=dev-tcltk/tclx-8.4 >=app-editors/emacs-26.1:* SLOT=0 SRC_URI=https://github.com/tvraman/emacspeak/releases/download/56.0/emacspeak-56.0.tar.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=f6d4bb899dbbb6eff1dfe0b89b4ece37 diff --git a/metadata/md5-cache/app-accessibility/emacspeak-9999 b/metadata/md5-cache/app-accessibility/emacspeak-9999 index 6bea73b9ad62..f981cc562497 100644 --- a/metadata/md5-cache/app-accessibility/emacspeak-9999 +++ b/metadata/md5-cache/app-accessibility/emacspeak-9999 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-26.1:* >=dev-vcs/git-1.8.2.1[curl] -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=dev-lang/tcl:= espeak? ( app-accessibility/espeak-ng ) DESCRIPTION=The emacspeak audio desktop EAPI=8 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ GPL-3+ PROPERTIES=live RDEPEND=dev-lang/tcl:= espeak? ( app-accessibility/espeak-ng ) >=dev-tcltk/tclx-8.4 >=app-editors/emacs-26.1:* SLOT=0 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 git-r3 27e13c09a4c7e4c78ac812f74727e676 multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 git-r3 27e13c09a4c7e4c78ac812f74727e676 multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=37df216b31876ed15cfd7fb77b5b8311 diff --git a/metadata/md5-cache/app-accessibility/speechd-el-2.11 b/metadata/md5-cache/app-accessibility/speechd-el-2.11 index 3c7baa7a5dc1..4b3823d6238b 100644 --- a/metadata/md5-cache/app-accessibility/speechd-el-2.11 +++ b/metadata/md5-cache/app-accessibility/speechd-el-2.11 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs speech support EAPI=8 HOMEPAGE=https://www.freebsoft.org/speechd-el https://github.com/brailcom/speechd-el @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-accessibility/speech-dispatcher-0.7 >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/brailcom/speechd-el/archive/speechd-el-2.11.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=9d8a3eb4d695effd3b503150ec040f6f diff --git a/metadata/md5-cache/app-accessibility/speechd-el-2.8 b/metadata/md5-cache/app-accessibility/speechd-el-2.8 index ce5f6bb04b29..907bc81b7848 100644 --- a/metadata/md5-cache/app-accessibility/speechd-el-2.8 +++ b/metadata/md5-cache/app-accessibility/speechd-el-2.8 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs speech support EAPI=7 HOMEPAGE=https://www.freebsoft.org/speechd-el @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=>=app-accessibility/speech-dispatcher-0.7 >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://www.freebsoft.org/pub/projects/speechd-el/speechd-el-2.8.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=fc2e4778154e1931e1c01597b9b65c78 diff --git a/metadata/md5-cache/app-admin/Manifest.gz b/metadata/md5-cache/app-admin/Manifest.gz index ebe21c71e513..b01dafd2d405 100644 Binary files a/metadata/md5-cache/app-admin/Manifest.gz and b/metadata/md5-cache/app-admin/Manifest.gz differ diff --git a/metadata/md5-cache/app-admin/awscli-1.27.115 b/metadata/md5-cache/app-admin/awscli-1.27.115 new file mode 100644 index 000000000000..ce184270421a --- /dev/null +++ b/metadata/md5-cache/app-admin/awscli-1.27.115 @@ -0,0 +1,16 @@ +BDEPEND=test? ( dev-python/pytest-forked[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest-xdist[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( >=dev-python/botocore-1.29.115[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/colorama[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/docutils[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/rsa[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/s3transfer-0.6.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pyyaml[python_targets_python3_10(-)?,python_targets_python3_11(-)?] !app-admin/awscli-bin >=dev-python/pytest-7.2.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.2.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/wheel-0.38.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Universal Command Line Environment for AWS +EAPI=8 +HOMEPAGE=https://github.com/aws/aws-cli/ https://pypi.org/project/awscli/ +INHERIT=bash-completion-r1 distutils-r1 multiprocessing +IUSE=test python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/botocore-1.29.115[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/colorama[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/docutils[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/rsa[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/s3transfer-0.6.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pyyaml[python_targets_python3_10(-)?,python_targets_python3_11(-)?] !app-admin/awscli-bin python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/aws/aws-cli/archive/1.27.115.tar.gz -> aws-cli-1.27.115.gh.tar.gz +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=49e74325243b7907e30dd121cb06f7f4 diff --git a/metadata/md5-cache/app-admin/cli53-0.8.18 b/metadata/md5-cache/app-admin/cli53-0.8.18 index 8fb019b807da..6caba3e4b4df 100644 --- a/metadata/md5-cache/app-admin/cli53-0.8.18 +++ b/metadata/md5-cache/app-admin/cli53-0.8.18 @@ -10,5 +10,5 @@ LICENSE=MIT BSD BSD-2 Apache-2.0 RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/barnybug/cli53/archive/refs/tags/0.8.18.tar.gz -> cli53-0.8.18.tar.gz https://dev.gentoo.org/~williamh/dist/cli53-0.8.18-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=b7e19ac90147e22fcac0e1d6b708d71f diff --git a/metadata/md5-cache/app-admin/clog-1.3.0-r1 b/metadata/md5-cache/app-admin/clog-1.3.0-r1 index fd4764ac1483..0f5832dcc0cd 100644 --- a/metadata/md5-cache/app-admin/clog-1.3.0-r1 +++ b/metadata/md5-cache/app-admin/clog-1.3.0-r1 @@ -10,4 +10,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://gothenburgbitfactory.org/download/clog-1.3.0.tar.gz _eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=7fb2c812ce8fa47a5ffb96fcbc9e3c86 +_md5_=c0bc91921ebce233626661c5b88f0e29 diff --git a/metadata/md5-cache/app-admin/consul-1.14.3 b/metadata/md5-cache/app-admin/consul-1.14.3 index 61203e2b3060..c5bff5272dff 100644 --- a/metadata/md5-cache/app-admin/consul-1.14.3 +++ b/metadata/md5-cache/app-admin/consul-1.14.3 @@ -11,5 +11,5 @@ RDEPEND=acct-group/consul acct-user/consul RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/zmedico/consul/archive/v1.14.3-vendor.tar.gz -> consul-1.14.3-vendor.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=e7cdd57afb4e02e16e975e485ecb10cf diff --git a/metadata/md5-cache/app-admin/consul-1.15.2 b/metadata/md5-cache/app-admin/consul-1.15.2 new file mode 100644 index 000000000000..83c682bd3e6f --- /dev/null +++ b/metadata/md5-cache/app-admin/consul-1.15.2 @@ -0,0 +1,15 @@ +BDEPEND=dev-go/gox >=dev-lang/go-1.18 app-arch/unzip virtual/pkgconfig +DEFINED_PHASES=compile install prepare unpack +DEPEND=acct-group/consul acct-user/consul +DESCRIPTION=A tool for service discovery, monitoring and configuration +EAPI=8 +HOMEPAGE=https://www.consul.io +INHERIT=go-module systemd +KEYWORDS=~amd64 ~arm64 ~x86 +LICENSE=MPL-2.0 Apache-2.0 BSD BSD-2 CC0-1.0 ISC MIT +RDEPEND=acct-group/consul acct-user/consul +RESTRICT=test strip +SLOT=0 +SRC_URI=https://github.com/zmedico/consul/archive/v1.15.2-vendor.tar.gz -> consul-1.15.2-vendor.tar.gz +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=57684dfcc52e0ba50ecfb025273c15f4 diff --git a/metadata/md5-cache/app-admin/consul-replicate-0.4.0_p20211027 b/metadata/md5-cache/app-admin/consul-replicate-0.4.0_p20211027 index 6119c88ed1f6..5a9161712b62 100644 --- a/metadata/md5-cache/app-admin/consul-replicate-0.4.0_p20211027 +++ b/metadata/md5-cache/app-admin/consul-replicate-0.4.0_p20211027 @@ -9,5 +9,5 @@ LICENSE=MPL-2.0 Apache-2.0 BSD BSD-2 ISC MIT RESTRICT=strip SLOT=0 SRC_URI=https://github.com/hashicorp/consul-replicate/archive/aceb253db329a6aefb48ac58dfc231e6947f73b2.tar.gz -> consul-replicate-0.4.0_p20211027.tar.gz https://dev.gentoo.org/~zmedico/dist/consul-replicate-0.4.0_p20211027-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=053ce92cb86c611326af0b68add8ce7e diff --git a/metadata/md5-cache/app-admin/consul-template-0.29.0 b/metadata/md5-cache/app-admin/consul-template-0.29.0 index e8d983f9a98a..0efc296ae7d2 100644 --- a/metadata/md5-cache/app-admin/consul-template-0.29.0 +++ b/metadata/md5-cache/app-admin/consul-template-0.29.0 @@ -11,5 +11,5 @@ RDEPEND=acct-group/consul-template acct-user/consul-template RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/hashicorp/consul-template/archive/refs/tags/v0.29.0.tar.gz -> consul-template-0.29.0.tar.gz https://dev.gentoo.org/~zmedico/dist/consul-template-0.29.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=9765149f446d9b92f64855290893a3fb diff --git a/metadata/md5-cache/app-admin/consul-template-0.29.1 b/metadata/md5-cache/app-admin/consul-template-0.29.1 index c27f2f9685bc..e5b12962422f 100644 --- a/metadata/md5-cache/app-admin/consul-template-0.29.1 +++ b/metadata/md5-cache/app-admin/consul-template-0.29.1 @@ -11,5 +11,5 @@ RDEPEND=acct-group/consul-template acct-user/consul-template RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/hashicorp/consul-template/archive/refs/tags/v0.29.1.tar.gz -> consul-template-0.29.1.tar.gz https://dev.gentoo.org/~zmedico/dist/consul-template-0.29.1-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=9765149f446d9b92f64855290893a3fb diff --git a/metadata/md5-cache/app-admin/consul-template-0.29.4 b/metadata/md5-cache/app-admin/consul-template-0.29.4 index d4f375f35ecb..56e47fde0002 100644 --- a/metadata/md5-cache/app-admin/consul-template-0.29.4 +++ b/metadata/md5-cache/app-admin/consul-template-0.29.4 @@ -11,5 +11,5 @@ RDEPEND=acct-group/consul-template acct-user/consul-template RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/hashicorp/consul-template/archive/refs/tags/v0.29.4.tar.gz -> consul-template-0.29.4.tar.gz https://dev.gentoo.org/~zmedico/dist/consul-template-0.29.4-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=9765149f446d9b92f64855290893a3fb diff --git a/metadata/md5-cache/app-admin/consul-template-0.29.5 b/metadata/md5-cache/app-admin/consul-template-0.29.5 index c2d9c7d2b234..daae6fb5e8bc 100644 --- a/metadata/md5-cache/app-admin/consul-template-0.29.5 +++ b/metadata/md5-cache/app-admin/consul-template-0.29.5 @@ -11,5 +11,5 @@ RDEPEND=acct-group/consul-template acct-user/consul-template RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/hashicorp/consul-template/archive/refs/tags/v0.29.5.tar.gz -> consul-template-0.29.5.tar.gz https://dev.gentoo.org/~zmedico/dist/consul-template-0.29.4-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=f30b4b2e22de6c0340cdf6a83183b3ac diff --git a/metadata/md5-cache/app-admin/cronlocker-0.5.0 b/metadata/md5-cache/app-admin/cronlocker-0.5.0 index 78434dbb8fb2..4ee6482d2468 100644 --- a/metadata/md5-cache/app-admin/cronlocker-0.5.0 +++ b/metadata/md5-cache/app-admin/cronlocker-0.5.0 @@ -9,5 +9,5 @@ LICENSE=MIT MPL-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/Barzahlen/cronlocker/archive/v0.5.0.tar.gz -> cronlocker-0.5.0.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=db9e5e2b0b2c9434fa640950093a04a2 diff --git a/metadata/md5-cache/app-admin/docker-bench-0.5.0 b/metadata/md5-cache/app-admin/docker-bench-0.5.0 index f669e76887d0..2cd9670c2427 100644 --- a/metadata/md5-cache/app-admin/docker-bench-0.5.0 +++ b/metadata/md5-cache/app-admin/docker-bench-0.5.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD BSD-2 MIT MPL-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/aquasecurity/docker-bench/archive/v0.5.0.tar.gz -> docker-bench-0.5.0.tar.gz https://dev.gentoo.org/~williamh/dist/docker-bench-0.5.0-vendor.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=702f88235b2a4ebb7a31e8eb5aa5235d diff --git a/metadata/md5-cache/app-admin/doctl-1.78.0 b/metadata/md5-cache/app-admin/doctl-1.78.0 index 4dfe2f1d616e..3ed66e4f219c 100644 --- a/metadata/md5-cache/app-admin/doctl-1.78.0 +++ b/metadata/md5-cache/app-admin/doctl-1.78.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 MIT BSD BSD-2 ISC MPL-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/digitalocean/doctl/archive/v1.78.0.tar.gz -> doctl-1.78.0.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff edo c0eb9cbe6b0bd01fcb4918f12598a4d3 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff edo c0eb9cbe6b0bd01fcb4918f12598a4d3 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=47a110a5e543c71cb9aaf19a076e09fc diff --git a/metadata/md5-cache/app-admin/doctl-1.79.0 b/metadata/md5-cache/app-admin/doctl-1.79.0 index 1e1eacc345ae..177c2e859ebc 100644 --- a/metadata/md5-cache/app-admin/doctl-1.79.0 +++ b/metadata/md5-cache/app-admin/doctl-1.79.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 MIT BSD BSD-2 ISC MPL-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/digitalocean/doctl/archive/v1.79.0.tar.gz -> doctl-1.79.0.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff edo c0eb9cbe6b0bd01fcb4918f12598a4d3 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff edo c0eb9cbe6b0bd01fcb4918f12598a4d3 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=47a110a5e543c71cb9aaf19a076e09fc diff --git a/metadata/md5-cache/app-admin/doctl-9999 b/metadata/md5-cache/app-admin/doctl-9999 index af9353c736fb..52e813c05b2f 100644 --- a/metadata/md5-cache/app-admin/doctl-9999 +++ b/metadata/md5-cache/app-admin/doctl-9999 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 MIT BSD BSD-2 ISC MPL-2.0 PROPERTIES=live RESTRICT=strip SLOT=0 -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff edo c0eb9cbe6b0bd01fcb4918f12598a4d3 git-r3 27e13c09a4c7e4c78ac812f74727e676 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff edo c0eb9cbe6b0bd01fcb4918f12598a4d3 git-r3 27e13c09a4c7e4c78ac812f74727e676 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=faa4a03a579dda5bc882577f59381fdd diff --git a/metadata/md5-cache/app-admin/filebeat-7.17.3 b/metadata/md5-cache/app-admin/filebeat-7.17.3 index 76a3d30e41a5..d6114ce8f9a3 100644 --- a/metadata/md5-cache/app-admin/filebeat-7.17.3 +++ b/metadata/md5-cache/app-admin/filebeat-7.17.3 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD-2 MIT RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/elastic/beats/archive/v7.17.3.tar.gz -> filebeat-7.17.3.tar.gz https://media.githubusercontent.com/media/hydrapolic/gentoo-dist/master/filebeat/filebeat-7.17.3-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=5c537c42b991b072f5dff1ad72b1ce51 diff --git a/metadata/md5-cache/app-admin/filebeat-7.17.5 b/metadata/md5-cache/app-admin/filebeat-7.17.5 index 764eba667539..9d25bf4c0e20 100644 --- a/metadata/md5-cache/app-admin/filebeat-7.17.5 +++ b/metadata/md5-cache/app-admin/filebeat-7.17.5 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD-2 MIT RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/elastic/beats/archive/v7.17.5.tar.gz -> filebeat-7.17.5.tar.gz https://media.githubusercontent.com/media/hydrapolic/gentoo-dist/master/filebeat/filebeat-7.17.5-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=a854ac4bdf572d0901623858735cc9ed diff --git a/metadata/md5-cache/app-admin/git-credential-gopass-1.15.4 b/metadata/md5-cache/app-admin/git-credential-gopass-1.15.4 index 0875f06f782c..42b5bd245730 100644 --- a/metadata/md5-cache/app-admin/git-credential-gopass-1.15.4 +++ b/metadata/md5-cache/app-admin/git-credential-gopass-1.15.4 @@ -11,5 +11,5 @@ RDEPEND=dev-vcs/git >=app-crypt/gnupg-2 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/gopasspw/git-credential-gopass/archive/v1.15.4.tar.gz -> git-credential-gopass-1.15.4.tar.gz https://dev.gentoo.org/~ajak/distfiles/app-admin/git-credential-gopass/git-credential-gopass-1.15.4-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=6be9d4aa1419665b78001f58d9ea137b diff --git a/metadata/md5-cache/app-admin/git-credential-gopass-1.15.3 b/metadata/md5-cache/app-admin/git-credential-gopass-1.15.5 similarity index 71% rename from metadata/md5-cache/app-admin/git-credential-gopass-1.15.3 rename to metadata/md5-cache/app-admin/git-credential-gopass-1.15.5 index cb94e4b4a218..97dd5908dff3 100644 --- a/metadata/md5-cache/app-admin/git-credential-gopass-1.15.3 +++ b/metadata/md5-cache/app-admin/git-credential-gopass-1.15.5 @@ -5,11 +5,11 @@ DESCRIPTION=Gopass git-credentials helper EAPI=8 HOMEPAGE=https://github.com/gopasspw/git-credential-gopass INHERIT=go-module -KEYWORDS=amd64 ~ppc64 ~x86 +KEYWORDS=~amd64 ~ppc64 ~x86 LICENSE=MIT Apache-2.0 BSD MPL-2.0 BSD-2 RDEPEND=dev-vcs/git >=app-crypt/gnupg-2 RESTRICT=strip SLOT=0 -SRC_URI=https://github.com/gopasspw/git-credential-gopass/archive/v1.15.3.tar.gz -> git-credential-gopass-1.15.3.tar.gz https://dev.gentoo.org/~ajak/distfiles/app-admin/git-credential-gopass/git-credential-gopass-1.15.3-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=6be9d4aa1419665b78001f58d9ea137b +SRC_URI=https://github.com/gopasspw/git-credential-gopass/archive/v1.15.5.tar.gz -> git-credential-gopass-1.15.5.tar.gz https://dev.gentoo.org/~ajak/distfiles/app-admin/git-credential-gopass/git-credential-gopass-1.15.5-deps.tar.xz +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=34b024fa6183dbcb4bef7ab2d026d27e diff --git a/metadata/md5-cache/app-admin/gopass-1.15.4 b/metadata/md5-cache/app-admin/gopass-1.15.4 index 363fa9a38794..85c7041017e5 100644 --- a/metadata/md5-cache/app-admin/gopass-1.15.4 +++ b/metadata/md5-cache/app-admin/gopass-1.15.4 @@ -5,11 +5,11 @@ DESCRIPTION=a simple but powerful password manager for the terminal EAPI=8 HOMEPAGE=https://www.gopass.pw/ INHERIT=go-module optfeature -KEYWORDS=~amd64 ~ppc64 ~riscv ~x86 +KEYWORDS=amd64 ~ppc64 ~riscv ~x86 LICENSE=MIT Apache-2.0 BSD MPL-2.0 BSD-2 RDEPEND=dev-vcs/git >=app-crypt/gnupg-2 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/gopasspw/gopass/archive/v1.15.4.tar.gz -> gopass-1.15.4.tar.gz https://dev.gentoo.org/~ajak/distfiles/app-admin/gopass/gopass-1.15.4-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=8160e387af18dc6ee1048ab15d16ca22 +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=e0ce52ba211d549be6094c97453e6dc9 diff --git a/metadata/md5-cache/app-admin/gopass-1.15.3 b/metadata/md5-cache/app-admin/gopass-1.15.5 similarity index 62% rename from metadata/md5-cache/app-admin/gopass-1.15.3 rename to metadata/md5-cache/app-admin/gopass-1.15.5 index 0f102ba5f45d..ba597d62627b 100644 --- a/metadata/md5-cache/app-admin/gopass-1.15.3 +++ b/metadata/md5-cache/app-admin/gopass-1.15.5 @@ -5,11 +5,11 @@ DESCRIPTION=a simple but powerful password manager for the terminal EAPI=8 HOMEPAGE=https://www.gopass.pw/ INHERIT=go-module optfeature -KEYWORDS=amd64 ~ppc64 ~riscv ~x86 +KEYWORDS=~amd64 ~ppc64 ~riscv ~x86 LICENSE=MIT Apache-2.0 BSD MPL-2.0 BSD-2 RDEPEND=dev-vcs/git >=app-crypt/gnupg-2 RESTRICT=strip SLOT=0 -SRC_URI=https://github.com/gopasspw/gopass/archive/v1.15.3.tar.gz -> gopass-1.15.3.tar.gz https://dev.gentoo.org/~ajak/distfiles/app-admin/gopass/gopass-1.15.3-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=e0ce52ba211d549be6094c97453e6dc9 +SRC_URI=https://github.com/gopasspw/gopass/archive/v1.15.5.tar.gz -> gopass-1.15.5.tar.gz https://dev.gentoo.org/~ajak/distfiles/app-admin/gopass/gopass-1.15.5-deps.tar.xz +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=8160e387af18dc6ee1048ab15d16ca22 diff --git a/metadata/md5-cache/app-admin/gopass-hibp-1.15.4 b/metadata/md5-cache/app-admin/gopass-hibp-1.15.4 index 6f05bf82d925..75f0550da348 100644 --- a/metadata/md5-cache/app-admin/gopass-hibp-1.15.4 +++ b/metadata/md5-cache/app-admin/gopass-hibp-1.15.4 @@ -11,5 +11,5 @@ RDEPEND=dev-vcs/git >=app-crypt/gnupg-2 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/gopasspw/gopass-hibp/archive/v1.15.4.tar.gz -> gopass-hibp-1.15.4.tar.gz https://dev.gentoo.org/~ajak/distfiles/app-admin/gopass-hibp/gopass-hibp-1.15.4-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=9c35c9436bbdb5b80c041a32d10c789c diff --git a/metadata/md5-cache/app-admin/gopass-hibp-1.15.3 b/metadata/md5-cache/app-admin/gopass-hibp-1.15.5 similarity index 57% rename from metadata/md5-cache/app-admin/gopass-hibp-1.15.3 rename to metadata/md5-cache/app-admin/gopass-hibp-1.15.5 index 8671391561d4..b1fae736f3b0 100644 --- a/metadata/md5-cache/app-admin/gopass-hibp-1.15.3 +++ b/metadata/md5-cache/app-admin/gopass-hibp-1.15.5 @@ -5,11 +5,11 @@ DESCRIPTION=Gopass haveibeenpwnd.com integration EAPI=8 HOMEPAGE=https://github.com/gopasspw/gopass-hibp INHERIT=go-module -KEYWORDS=amd64 ~ppc64 ~x86 +KEYWORDS=~amd64 ~ppc64 ~x86 LICENSE=MIT Apache-2.0 BSD MPL-2.0 BSD-2 RDEPEND=dev-vcs/git >=app-crypt/gnupg-2 RESTRICT=strip SLOT=0 -SRC_URI=https://github.com/gopasspw/gopass-hibp/archive/v1.15.3.tar.gz -> gopass-hibp-1.15.3.tar.gz https://dev.gentoo.org/~ajak/distfiles/app-admin/gopass-hibp/gopass-hibp-1.15.3-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=9c35c9436bbdb5b80c041a32d10c789c +SRC_URI=https://github.com/gopasspw/gopass-hibp/archive/v1.15.5.tar.gz -> gopass-hibp-1.15.5.tar.gz https://dev.gentoo.org/~ajak/distfiles/app-admin/gopass-hibp/gopass-hibp-1.15.5-deps.tar.xz +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=b71e2b013f29ac20159a1261d748aeb4 diff --git a/metadata/md5-cache/app-admin/gopass-jsonapi-1.15.4 b/metadata/md5-cache/app-admin/gopass-jsonapi-1.15.4 index 3c7555980e0d..00d37e5d8f8e 100644 --- a/metadata/md5-cache/app-admin/gopass-jsonapi-1.15.4 +++ b/metadata/md5-cache/app-admin/gopass-jsonapi-1.15.4 @@ -11,5 +11,5 @@ RDEPEND=dev-vcs/git >=app-crypt/gnupg-2 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/gopasspw/gopass-jsonapi/archive/v1.15.4.tar.gz -> gopass-jsonapi-1.15.4.tar.gz https://dev.gentoo.org/~ajak/distfiles/app-admin/gopass-jsonapi/gopass-jsonapi-1.15.4-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=3c4103b89b6b5fce1ad4d15b98a3870d diff --git a/metadata/md5-cache/app-admin/gopass-jsonapi-1.15.3 b/metadata/md5-cache/app-admin/gopass-jsonapi-1.15.5 similarity index 66% rename from metadata/md5-cache/app-admin/gopass-jsonapi-1.15.3 rename to metadata/md5-cache/app-admin/gopass-jsonapi-1.15.5 index a4353e05f1d5..e7f66a92c971 100644 --- a/metadata/md5-cache/app-admin/gopass-jsonapi-1.15.3 +++ b/metadata/md5-cache/app-admin/gopass-jsonapi-1.15.5 @@ -5,11 +5,11 @@ DESCRIPTION=Gopass Browser Bindings EAPI=8 HOMEPAGE=https://github.com/gopasspw/gopass-jsonapi INHERIT=go-module -KEYWORDS=amd64 ~ppc64 ~x86 +KEYWORDS=~amd64 ~ppc64 ~x86 LICENSE=MIT Apache-2.0 BSD MPL-2.0 BSD-2 RDEPEND=dev-vcs/git >=app-crypt/gnupg-2 RESTRICT=strip SLOT=0 -SRC_URI=https://github.com/gopasspw/gopass-jsonapi/archive/v1.15.3.tar.gz -> gopass-jsonapi-1.15.3.tar.gz https://dev.gentoo.org/~ajak/distfiles/app-admin/gopass-jsonapi/gopass-jsonapi-1.15.3-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=3c4103b89b6b5fce1ad4d15b98a3870d +SRC_URI=https://github.com/gopasspw/gopass-jsonapi/archive/v1.15.5.tar.gz -> gopass-jsonapi-1.15.5.tar.gz https://dev.gentoo.org/~ajak/distfiles/app-admin/gopass-jsonapi/gopass-jsonapi-1.15.5-deps.tar.xz +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=5db17f76c7d307a18bdb5d150603e32a diff --git a/metadata/md5-cache/app-admin/gopass-summon-provider-1.15.4 b/metadata/md5-cache/app-admin/gopass-summon-provider-1.15.4 index 58bdba86dabc..3b6d9c715db1 100644 --- a/metadata/md5-cache/app-admin/gopass-summon-provider-1.15.4 +++ b/metadata/md5-cache/app-admin/gopass-summon-provider-1.15.4 @@ -11,5 +11,5 @@ RDEPEND=dev-vcs/git >=app-crypt/gnupg-2 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/gopasspw/gopass-summon-provider/archive/v1.15.4.tar.gz -> gopass-summon-provider-1.15.4.tar.gz https://dev.gentoo.org/~ajak/distfiles/app-admin/gopass-summon-provider/gopass-summon-provider-1.15.4-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=1eed963d4a0a3bcdc75d84601d50d5e2 diff --git a/metadata/md5-cache/app-admin/gopass-summon-provider-1.15.3 b/metadata/md5-cache/app-admin/gopass-summon-provider-1.15.5 similarity index 70% rename from metadata/md5-cache/app-admin/gopass-summon-provider-1.15.3 rename to metadata/md5-cache/app-admin/gopass-summon-provider-1.15.5 index 173c5d9f909a..0f7a38b286fc 100644 --- a/metadata/md5-cache/app-admin/gopass-summon-provider-1.15.3 +++ b/metadata/md5-cache/app-admin/gopass-summon-provider-1.15.5 @@ -5,11 +5,11 @@ DESCRIPTION=Gopass Summon Provider EAPI=8 HOMEPAGE=https://github.com/gopasspw/gopass-summon-provider INHERIT=go-module -KEYWORDS=amd64 ~ppc64 ~x86 +KEYWORDS=~amd64 ~ppc64 ~x86 LICENSE=MIT Apache-2.0 BSD MPL-2.0 BSD-2 RDEPEND=dev-vcs/git >=app-crypt/gnupg-2 RESTRICT=strip SLOT=0 -SRC_URI=https://github.com/gopasspw/gopass-summon-provider/archive/v1.15.3.tar.gz -> gopass-summon-provider-1.15.3.tar.gz https://dev.gentoo.org/~ajak/distfiles/app-admin/gopass-summon-provider/gopass-summon-provider-1.15.3-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=1eed963d4a0a3bcdc75d84601d50d5e2 +SRC_URI=https://github.com/gopasspw/gopass-summon-provider/archive/v1.15.5.tar.gz -> gopass-summon-provider-1.15.5.tar.gz https://dev.gentoo.org/~ajak/distfiles/app-admin/gopass-summon-provider/gopass-summon-provider-1.15.5-deps.tar.xz +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=d0bd8d9aa1ba9e616c27ed7f35a2f5e1 diff --git a/metadata/md5-cache/app-admin/helm-3.11.2 b/metadata/md5-cache/app-admin/helm-3.11.2 index 83242cd61d2b..ab9335ebcee6 100644 --- a/metadata/md5-cache/app-admin/helm-3.11.2 +++ b/metadata/md5-cache/app-admin/helm-3.11.2 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD BSD-2 CC-BY-4.0 CC-BY-SA-4.0 ISC MIT ZLIB RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/helm/helm/archive/v3.11.2.tar.gz -> k8s-helm-3.11.2.tar.gz https://dev.gentoo.org/~williamh/dist/helm-3.11.2-deps.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=ed9932ba1ffa5915e5e9bcb956a7e9f4 diff --git a/metadata/md5-cache/app-admin/kube-bench-0.6.8 b/metadata/md5-cache/app-admin/kube-bench-0.6.8 index 0868b5316e9f..2dc73b548d31 100644 --- a/metadata/md5-cache/app-admin/kube-bench-0.6.8 +++ b/metadata/md5-cache/app-admin/kube-bench-0.6.8 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 MIT MPL-2.0 BSD BSD-2 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/aquasecurity/kube-bench/archive/v0.6.8.tar.gz -> kube-bench-0.6.8.tar.gz https://dev.gentoo.org/~williamh/dist/kube-bench-0.6.8-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=9906b362bfe47d7c57a9c38c1a07ee08 diff --git a/metadata/md5-cache/app-admin/kubectx-0.9.4 b/metadata/md5-cache/app-admin/kubectx-0.9.4 index 419f0048c148..8e50479dab4f 100644 --- a/metadata/md5-cache/app-admin/kubectx-0.9.4 +++ b/metadata/md5-cache/app-admin/kubectx-0.9.4 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/ahmetb/kubectx/archive/v0.9.4.tar.gz -> kubectx-0.9.4.tar.gz https://dev.gentoo.org/~williamh/dist/kubectx-0.9.4-deps.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=d5248d14223385436f5f02abb4a82f21 diff --git a/metadata/md5-cache/app-admin/mtail-3.0.0_rc36 b/metadata/md5-cache/app-admin/mtail-3.0.0_rc36 index fcb7e06082f5..a0b271cd63e8 100644 --- a/metadata/md5-cache/app-admin/mtail-3.0.0_rc36 +++ b/metadata/md5-cache/app-admin/mtail-3.0.0_rc36 @@ -11,5 +11,5 @@ RDEPEND=!app-misc/mtail RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/google/mtail/archive/v3.0.0-rc36.tar.gz -> mtail-3.0.0_rc36.tar.gz https://dev.gentoo.org/~zmedico/dist/mtail-3.0.0_rc36-tidy.patch.xz https://dev.gentoo.org/~zmedico/dist/mtail-3.0.0_rc36-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=3770350d24e1f50ffca125029470e199 diff --git a/metadata/md5-cache/app-admin/pass-1.7.3-r2 b/metadata/md5-cache/app-admin/pass-1.7.3-r2 index 6a99c308645d..36e70d8b57a8 100644 --- a/metadata/md5-cache/app-admin/pass-1.7.3-r2 +++ b/metadata/md5-cache/app-admin/pass-1.7.3-r2 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=app-crypt/gnupg media-gfx/qrencode[png(+)] >=app-text/tree-1.7.0 git? ( dev-vcs/git ) X? ( x11-misc/xclip ) elibc_Darwin? ( app-misc/getopt ) dmenu? ( x11-misc/dmenu x11-misc/xdotool ) emacs? ( >=app-editors/emacs-23.1:* >=app-emacs/f-0.11.0 >=app-emacs/s-1.9.0 >=app-emacs/with-editor-2.5.11 ) SLOT=0 SRC_URI=https://git.zx2c4.com/password-store/snapshot/password-store-1.7.3.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common 1d6e8d43be4713f04a441f721d890d48 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common dcd21c5d379fc2217e95f529504c5fe0 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=3ad28e282427f6e932901d902a49b2fb diff --git a/metadata/md5-cache/app-admin/pass-1.7.4-r2 b/metadata/md5-cache/app-admin/pass-1.7.4-r2 index 81db700f4e6d..1be1c1622b9c 100644 --- a/metadata/md5-cache/app-admin/pass-1.7.4-r2 +++ b/metadata/md5-cache/app-admin/pass-1.7.4-r2 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=app-crypt/gnupg media-gfx/qrencode[png(+)] >=app-text/tree-1.7.0 git? ( dev-vcs/git ) wayland? ( gui-apps/wl-clipboard ) X? ( x11-misc/xclip ) elibc_Darwin? ( app-misc/getopt ) dmenu? ( x11-misc/dmenu x11-misc/xdotool ) emacs? ( >=app-editors/emacs-23.1:* >=app-emacs/f-0.11.0 >=app-emacs/s-1.9.0 >=app-emacs/with-editor-2.5.11 ) SLOT=0 SRC_URI=https://git.zx2c4.com/password-store/snapshot/password-store-1.7.4.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common 1d6e8d43be4713f04a441f721d890d48 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common dcd21c5d379fc2217e95f529504c5fe0 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=b1e987779430273da2bf7b08d22b6f13 diff --git a/metadata/md5-cache/app-admin/pass-9999 b/metadata/md5-cache/app-admin/pass-9999 index 0c4b1f48eb80..953ebe5151bf 100644 --- a/metadata/md5-cache/app-admin/pass-9999 +++ b/metadata/md5-cache/app-admin/pass-9999 @@ -9,5 +9,5 @@ LICENSE=GPL-2 PROPERTIES=live RDEPEND=app-crypt/gnupg media-gfx/qrencode[png(+)] >=app-text/tree-1.7.0 git? ( dev-vcs/git ) wayland? ( gui-apps/wl-clipboard ) X? ( x11-misc/xclip ) elibc_Darwin? ( app-misc/getopt ) dmenu? ( x11-misc/dmenu x11-misc/xdotool ) emacs? ( >=app-editors/emacs-23.1:* >=app-emacs/f-0.11.0 >=app-emacs/s-1.9.0 >=app-emacs/with-editor-2.5.11 ) SLOT=0 -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common 1d6e8d43be4713f04a441f721d890d48 git-r3 27e13c09a4c7e4c78ac812f74727e676 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common dcd21c5d379fc2217e95f529504c5fe0 git-r3 27e13c09a4c7e4c78ac812f74727e676 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=acef344c400a66c032cfc242a020bda5 diff --git a/metadata/md5-cache/app-admin/rsyslog-8.2212.0-r1 b/metadata/md5-cache/app-admin/rsyslog-8.2212.0-r1 deleted file mode 100644 index 89a1333f8fe3..000000000000 --- a/metadata/md5-cache/app-admin/rsyslog-8.2212.0-r1 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=>=sys-devel/autoconf-archive-2015.02.24 sys-apps/lsb-release virtual/pkgconfig test? ( jemalloc? ( =dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 virtual/pkgconfig -DEFINED_PHASES=compile config configure install postinst prepare setup test unpack -DEPEND=>=dev-libs/libfastjson-0.99.8:= >=dev-libs/libestr-0.1.9 >=sys-libs/zlib-1.2.5 curl? ( >=net-misc/curl-7.35.0 ) dbi? ( >=dev-db/libdbi-0.8.3 ) elasticsearch? ( >=net-misc/curl-7.35.0 ) gcrypt? ( >=dev-libs/libgcrypt-1.5.3:= ) imhttp? ( dev-libs/apr-util www-servers/civetweb virtual/libcrypt:= ) impcap? ( net-libs/libpcap ) jemalloc? ( >=dev-libs/jemalloc-3.3.1:= ) kafka? ( >=dev-libs/librdkafka-0.9.0.99:= ) kerberos? ( virtual/krb5 ) kubernetes? ( >=net-misc/curl-7.35.0 ) mdblookup? ( dev-libs/libmaxminddb:= ) mongodb? ( >=dev-libs/mongo-c-driver-1.1.10:= ) mysql? ( dev-db/mysql-connector-c:= ) normalize? ( >=dev-libs/liblognorm-2.0.3:= ) clickhouse? ( >=net-misc/curl-7.35.0 ) omhttpfs? ( >=net-misc/curl-7.35.0 ) omudpspoof? ( >=net-libs/libnet-1.1.6 ) postgres? ( >=dev-db/postgresql-8.4.20:= ) rabbitmq? ( >=net-libs/rabbitmq-c-0.3.0:= ) redis? ( >=dev-libs/hiredis-0.11.0:= dev-libs/libevent[threads(+)] ) relp? ( >=dev-libs/librelp-1.2.17:= ) rfc3195? ( >=dev-libs/liblogging-1.0.1:=[rfc3195] ) rfc5424hmac? ( >=dev-libs/openssl-0.9.8y:0= ) snmp? ( >=net-analyzer/net-snmp-5.7.2 ) ssl? ( gnutls? ( >=net-libs/gnutls-2.12.23:0= ) openssl? ( dev-libs/openssl:0= ) ) systemd? ( >=sys-apps/systemd-234 ) uuid? ( sys-apps/util-linux:0= ) xxhash? ( dev-libs/xxhash:= ) zeromq? ( >=net-libs/czmq-4:=[drafts] ) elibc_musl? ( sys-libs/queue-standalone ) -DESCRIPTION=An enhanced multi-threaded syslogd with database support and more -EAPI=8 -HOMEPAGE=https://www.rsyslog.com/ -INHERIT=autotools linux-info python-any-r1 systemd -IUSE=clickhouse curl dbi debug doc elasticsearch +gcrypt gnutls imhttp impcap jemalloc kafka kerberos kubernetes mdblookup mongodb mysql normalize omhttp omhttpfs omudpspoof +openssl postgres rabbitmq redis relp rfc3195 rfc5424hmac snmp +ssl systemd test usertools +uuid xxhash zeromq -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc64 ~riscv ~sparc ~x86 -LICENSE=GPL-3 LGPL-3 Apache-2.0 -RDEPEND=>=dev-libs/libfastjson-0.99.8:= >=dev-libs/libestr-0.1.9 >=sys-libs/zlib-1.2.5 curl? ( >=net-misc/curl-7.35.0 ) dbi? ( >=dev-db/libdbi-0.8.3 ) elasticsearch? ( >=net-misc/curl-7.35.0 ) gcrypt? ( >=dev-libs/libgcrypt-1.5.3:= ) imhttp? ( dev-libs/apr-util www-servers/civetweb virtual/libcrypt:= ) impcap? ( net-libs/libpcap ) jemalloc? ( >=dev-libs/jemalloc-3.3.1:= ) kafka? ( >=dev-libs/librdkafka-0.9.0.99:= ) kerberos? ( virtual/krb5 ) kubernetes? ( >=net-misc/curl-7.35.0 ) mdblookup? ( dev-libs/libmaxminddb:= ) mongodb? ( >=dev-libs/mongo-c-driver-1.1.10:= ) mysql? ( dev-db/mysql-connector-c:= ) normalize? ( >=dev-libs/liblognorm-2.0.3:= ) clickhouse? ( >=net-misc/curl-7.35.0 ) omhttpfs? ( >=net-misc/curl-7.35.0 ) omudpspoof? ( >=net-libs/libnet-1.1.6 ) postgres? ( >=dev-db/postgresql-8.4.20:= ) rabbitmq? ( >=net-libs/rabbitmq-c-0.3.0:= ) redis? ( >=dev-libs/hiredis-0.11.0:= dev-libs/libevent[threads(+)] ) relp? ( >=dev-libs/librelp-1.2.17:= ) rfc3195? ( >=dev-libs/liblogging-1.0.1:=[rfc3195] ) rfc5424hmac? ( >=dev-libs/openssl-0.9.8y:0= ) snmp? ( >=net-analyzer/net-snmp-5.7.2 ) ssl? ( gnutls? ( >=net-libs/gnutls-2.12.23:0= ) openssl? ( dev-libs/openssl:0= ) ) systemd? ( >=sys-apps/systemd-234 ) uuid? ( sys-apps/util-linux:0= ) xxhash? ( dev-libs/xxhash:= ) zeromq? ( >=net-libs/czmq-4:=[drafts] ) -REQUIRED_USE=kubernetes? ( normalize ) ssl? ( || ( gnutls openssl ) ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://www.rsyslog.com/files/download/rsyslog/rsyslog-8.2212.0.tar.gz doc? ( https://www.rsyslog.com/files/download/rsyslog/rsyslog-doc-8.2212.0.tar.gz ) -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=374fe18711fb36b65fa63e9b2934a5bf diff --git a/metadata/md5-cache/app-admin/serf-0.10.0 b/metadata/md5-cache/app-admin/serf-0.10.0 index 86698bc4d567..5a251516c0cf 100644 --- a/metadata/md5-cache/app-admin/serf-0.10.0 +++ b/metadata/md5-cache/app-admin/serf-0.10.0 @@ -10,5 +10,5 @@ RDEPEND=acct-user/serf acct-group/serf RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/hashicorp/serf/archive/v0.10.0.tar.gz -> serf-0.10.0.tar.gz https://dev.gentoo.org/~zmedico/dist/serf-0.10.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=1c8da28ac6c65e3fde56fa067b281416 diff --git a/metadata/md5-cache/app-admin/serf-0.10.1 b/metadata/md5-cache/app-admin/serf-0.10.1 index 18ef72a9f2b5..9abfc2728b4b 100644 --- a/metadata/md5-cache/app-admin/serf-0.10.1 +++ b/metadata/md5-cache/app-admin/serf-0.10.1 @@ -10,5 +10,5 @@ RDEPEND=acct-user/serf acct-group/serf RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/hashicorp/serf/archive/v0.10.1.tar.gz -> serf-0.10.1.tar.gz https://dev.gentoo.org/~zmedico/dist/serf-0.10.1-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=1c8da28ac6c65e3fde56fa067b281416 diff --git a/metadata/md5-cache/app-admin/serf-0.9.8 b/metadata/md5-cache/app-admin/serf-0.9.8 index 8553b4973d19..6959fef8e08c 100644 --- a/metadata/md5-cache/app-admin/serf-0.9.8 +++ b/metadata/md5-cache/app-admin/serf-0.9.8 @@ -10,5 +10,5 @@ RDEPEND=acct-user/serf acct-group/serf RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/hashicorp/serf/archive/v0.9.8.tar.gz -> serf-0.9.8.tar.gz https://dev.gentoo.org/~zmedico/dist/serf-0.9.8-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=1c8da28ac6c65e3fde56fa067b281416 diff --git a/metadata/md5-cache/app-admin/syslog-ng-4.0.1 b/metadata/md5-cache/app-admin/syslog-ng-4.0.1 index f36ca63d5fd7..cf77ef7dac8b 100644 --- a/metadata/md5-cache/app-admin/syslog-ng-4.0.1 +++ b/metadata/md5-cache/app-admin/syslog-ng-4.0.1 @@ -6,7 +6,7 @@ EAPI=8 HOMEPAGE=https://www.syslog-ng.com/products/open-source-log-management/ INHERIT=autotools python-single-r1 systemd IUSE=amqp caps dbi geoip2 http ipv6 json kafka mongodb pacct python redis smtp snmp test spoof-source systemd tcpd python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +KEYWORDS=~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 LICENSE=GPL-2+ LGPL-2.1+ RDEPEND=>=dev-libs/glib-2.10.1:2 >=dev-libs/ivykis-0.42.4 >=dev-libs/libpcre-6.1:= !dev-libs/eventlog amqp? ( >=net-libs/rabbitmq-c-0.8.0:=[ssl] ) caps? ( sys-libs/libcap ) dbi? ( >=dev-db/libdbi-0.9.0 ) geoip2? ( dev-libs/libmaxminddb:= ) http? ( net-misc/curl ) json? ( >=dev-libs/json-c-0.9:= ) kafka? ( >=dev-libs/librdkafka-1.0.0:= ) mongodb? ( >=dev-libs/mongo-c-driver-1.2.0 ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) redis? ( >=dev-libs/hiredis-0.11.0:= ) smtp? ( net-libs/libesmtp:= ) snmp? ( net-analyzer/net-snmp:0= ) spoof-source? ( net-libs/libnet:1.1= ) systemd? ( sys-apps/systemd:= ) tcpd? ( >=sys-apps/tcp-wrappers-7.6 ) dev-libs/openssl:0= REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) test? ( python ) @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/balabit/syslog-ng/releases/download/syslog-ng-4.0.1/syslog-ng-4.0.1.tar.gz _eclasses_=autotools f0d3196128225dee3220e65f3371bc7a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=c365e276c55158caac0dcb0191b720bc +_md5_=0ddd9292f361443c09fd2d8c1fd2ac7c diff --git a/metadata/md5-cache/app-admin/syslog-ng-4.1.1 b/metadata/md5-cache/app-admin/syslog-ng-4.1.1 new file mode 100644 index 000000000000..c936712f7515 --- /dev/null +++ b/metadata/md5-cache/app-admin/syslog-ng-4.1.1 @@ -0,0 +1,17 @@ +BDEPEND=>=sys-devel/bison-3.7.6 sys-devel/flex virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 virtual/pkgconfig +DEFINED_PHASES=configure install postinst prepare setup +DEPEND=>=dev-libs/glib-2.10.1:2 >=dev-libs/ivykis-0.42.4 >=dev-libs/libpcre-6.1:= !dev-libs/eventlog amqp? ( >=net-libs/rabbitmq-c-0.8.0:=[ssl] ) caps? ( sys-libs/libcap ) dbi? ( >=dev-db/libdbi-0.9.0 ) geoip2? ( dev-libs/libmaxminddb:= ) http? ( net-misc/curl ) json? ( >=dev-libs/json-c-0.9:= ) kafka? ( >=dev-libs/librdkafka-1.0.0:= ) mongodb? ( >=dev-libs/mongo-c-driver-1.2.0 ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) redis? ( >=dev-libs/hiredis-0.11.0:= ) smtp? ( net-libs/libesmtp:= ) snmp? ( net-analyzer/net-snmp:0= ) spoof-source? ( net-libs/libnet:1.1= ) systemd? ( sys-apps/systemd:= ) tcpd? ( >=sys-apps/tcp-wrappers-7.6 ) dev-libs/openssl:0= test? ( dev-libs/criterion ) +DESCRIPTION=syslog replacement with advanced filtering features +EAPI=8 +HOMEPAGE=https://www.syslog-ng.com/products/open-source-log-management/ +INHERIT=autotools python-single-r1 systemd +IUSE=amqp caps dbi geoip2 http ipv6 json kafka mongodb pacct python redis smtp snmp test spoof-source systemd tcpd python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=GPL-2+ LGPL-2.1+ +RDEPEND=>=dev-libs/glib-2.10.1:2 >=dev-libs/ivykis-0.42.4 >=dev-libs/libpcre-6.1:= !dev-libs/eventlog amqp? ( >=net-libs/rabbitmq-c-0.8.0:=[ssl] ) caps? ( sys-libs/libcap ) dbi? ( >=dev-db/libdbi-0.9.0 ) geoip2? ( dev-libs/libmaxminddb:= ) http? ( net-misc/curl ) json? ( >=dev-libs/json-c-0.9:= ) kafka? ( >=dev-libs/librdkafka-1.0.0:= ) mongodb? ( >=dev-libs/mongo-c-driver-1.2.0 ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) redis? ( >=dev-libs/hiredis-0.11.0:= ) smtp? ( net-libs/libesmtp:= ) snmp? ( net-analyzer/net-snmp:0= ) spoof-source? ( net-libs/libnet:1.1= ) systemd? ( sys-apps/systemd:= ) tcpd? ( >=sys-apps/tcp-wrappers-7.6 ) dev-libs/openssl:0= +REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) test? ( python ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/balabit/syslog-ng/releases/download/syslog-ng-4.1.1/syslog-ng-4.1.1.tar.gz +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=c365e276c55158caac0dcb0191b720bc diff --git a/metadata/md5-cache/app-admin/terraform-1.3.9 b/metadata/md5-cache/app-admin/terraform-1.3.9 index 034104e1cbc9..ae96ec863117 100644 --- a/metadata/md5-cache/app-admin/terraform-1.3.9 +++ b/metadata/md5-cache/app-admin/terraform-1.3.9 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD BSD-2 MPL-2.0 MIT ISC RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/hashicorp/terraform/archive/v1.3.9.tar.gz -> terraform-1.3.9.tar.gz https://dev.gentoo.org/~williamh/dist/terraform-1.3.9-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=d924bda7735274552382ecedfd63e83b diff --git a/metadata/md5-cache/app-admin/terraform-1.4.2 b/metadata/md5-cache/app-admin/terraform-1.4.2 index f1197f62f26f..e6408e8a3e9d 100644 --- a/metadata/md5-cache/app-admin/terraform-1.4.2 +++ b/metadata/md5-cache/app-admin/terraform-1.4.2 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD BSD-2 MPL-2.0 MIT ISC RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/hashicorp/terraform/archive/v1.4.2.tar.gz -> terraform-1.4.2.tar.gz https://dev.gentoo.org/~williamh/dist/terraform-1.4.2-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=90ec2ba8f289980076d8f7ee89743429 diff --git a/metadata/md5-cache/app-admin/vault-1.10.7 b/metadata/md5-cache/app-admin/vault-1.10.7 index ccfced503e46..aa17c8587306 100644 --- a/metadata/md5-cache/app-admin/vault-1.10.7 +++ b/metadata/md5-cache/app-admin/vault-1.10.7 @@ -12,5 +12,5 @@ RDEPEND=acct-group/vault acct-user/vault filecaps? ( sys-libs/libcap ) RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/zmedico/vault/archive/refs/tags/v1.10.7-vendor.tar.gz -> vault-1.10.7-vendor.tar.gz webui? ( https://dev.gentoo.org/~zmedico/dist/vault-1.10.7-webui.tar.xz ) -_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=6a09b04fa5de4252b438885e567a2125 diff --git a/metadata/md5-cache/app-admin/vault-1.10.8 b/metadata/md5-cache/app-admin/vault-1.10.8 index 45827e30d7df..8e12df55ada8 100644 --- a/metadata/md5-cache/app-admin/vault-1.10.8 +++ b/metadata/md5-cache/app-admin/vault-1.10.8 @@ -12,5 +12,5 @@ RDEPEND=acct-group/vault acct-user/vault filecaps? ( sys-libs/libcap ) RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/zmedico/vault/archive/refs/tags/v1.10.8-vendor.tar.gz -> vault-1.10.8-vendor.tar.gz webui? ( https://dev.gentoo.org/~zmedico/dist/vault-1.10.8-webui.tar.xz ) -_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=6a09b04fa5de4252b438885e567a2125 diff --git a/metadata/md5-cache/app-admin/vault-1.11.4 b/metadata/md5-cache/app-admin/vault-1.11.4 index 5195f932d61c..a64502f0892c 100644 --- a/metadata/md5-cache/app-admin/vault-1.11.4 +++ b/metadata/md5-cache/app-admin/vault-1.11.4 @@ -12,5 +12,5 @@ RDEPEND=acct-group/vault acct-user/vault filecaps? ( sys-libs/libcap ) RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/zmedico/vault/archive/refs/tags/v1.11.4-vendor.tar.gz -> vault-1.11.4-vendor.tar.gz webui? ( https://dev.gentoo.org/~zmedico/dist/vault-1.11.4-webui.tar.xz ) -_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=668064f193327672401ce5ffdb8b7054 diff --git a/metadata/md5-cache/app-admin/vault-1.11.5 b/metadata/md5-cache/app-admin/vault-1.11.5 index 0224efb59f98..6a7724f6127a 100644 --- a/metadata/md5-cache/app-admin/vault-1.11.5 +++ b/metadata/md5-cache/app-admin/vault-1.11.5 @@ -12,5 +12,5 @@ RDEPEND=acct-group/vault acct-user/vault filecaps? ( sys-libs/libcap ) RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/zmedico/vault/archive/refs/tags/v1.11.5-vendor.tar.gz -> vault-1.11.5-vendor.tar.gz webui? ( https://dev.gentoo.org/~zmedico/dist/vault-1.11.5-webui.tar.xz ) -_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=668064f193327672401ce5ffdb8b7054 diff --git a/metadata/md5-cache/app-admin/vault-1.11.9 b/metadata/md5-cache/app-admin/vault-1.11.9 index 3619ef71b4aa..5582dd5e2724 100644 --- a/metadata/md5-cache/app-admin/vault-1.11.9 +++ b/metadata/md5-cache/app-admin/vault-1.11.9 @@ -13,5 +13,5 @@ RDEPEND=acct-group/vault acct-user/vault RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/zmedico/vault/archive/refs/tags/v1.11.9-vendor.tar.gz -> vault-1.11.9-vendor.tar.gz webui? ( https://dev.gentoo.org/~zmedico/dist/vault-1.11.9-webui.tar.xz ) -_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=0c0b3ed4f30a54ab4ad56ba6e30f7f11 diff --git a/metadata/md5-cache/app-admin/vault-1.12.0 b/metadata/md5-cache/app-admin/vault-1.12.0 index e04d09b983d1..55b669a253eb 100644 --- a/metadata/md5-cache/app-admin/vault-1.12.0 +++ b/metadata/md5-cache/app-admin/vault-1.12.0 @@ -12,5 +12,5 @@ RDEPEND=acct-group/vault acct-user/vault filecaps? ( sys-libs/libcap ) RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/zmedico/vault/archive/refs/tags/v1.12.0-vendor.tar.gz -> vault-1.12.0-vendor.tar.gz webui? ( https://dev.gentoo.org/~zmedico/dist/vault-1.12.0-webui.tar.xz ) -_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=adf0c136ca9689cfe758a170b1a9e3e6 diff --git a/metadata/md5-cache/app-admin/vault-1.12.1 b/metadata/md5-cache/app-admin/vault-1.12.1 index 8cea04dcce31..778d8d21abed 100644 --- a/metadata/md5-cache/app-admin/vault-1.12.1 +++ b/metadata/md5-cache/app-admin/vault-1.12.1 @@ -12,5 +12,5 @@ RDEPEND=acct-group/vault acct-user/vault filecaps? ( sys-libs/libcap ) RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/zmedico/vault/archive/refs/tags/v1.12.1-vendor.tar.gz -> vault-1.12.1-vendor.tar.gz webui? ( https://dev.gentoo.org/~zmedico/dist/vault-1.12.1-webui.tar.xz ) -_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=adf0c136ca9689cfe758a170b1a9e3e6 diff --git a/metadata/md5-cache/app-admin/vault-1.12.2 b/metadata/md5-cache/app-admin/vault-1.12.2 index e99b8f8f9d62..221827b8cd67 100644 --- a/metadata/md5-cache/app-admin/vault-1.12.2 +++ b/metadata/md5-cache/app-admin/vault-1.12.2 @@ -12,5 +12,5 @@ RDEPEND=acct-group/vault acct-user/vault filecaps? ( sys-libs/libcap ) RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/zmedico/vault/archive/refs/tags/v1.12.2-vendor.tar.gz -> vault-1.12.2-vendor.tar.gz webui? ( https://dev.gentoo.org/~zmedico/dist/vault-1.12.2-webui.tar.xz ) -_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=adf0c136ca9689cfe758a170b1a9e3e6 diff --git a/metadata/md5-cache/app-admin/vault-1.12.5 b/metadata/md5-cache/app-admin/vault-1.12.5 index f37b93576e91..79ad93ee6efe 100644 --- a/metadata/md5-cache/app-admin/vault-1.12.5 +++ b/metadata/md5-cache/app-admin/vault-1.12.5 @@ -13,5 +13,5 @@ RDEPEND=acct-group/vault acct-user/vault RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/zmedico/vault/archive/refs/tags/v1.12.5-vendor.tar.gz -> vault-1.12.5-vendor.tar.gz webui? ( https://dev.gentoo.org/~zmedico/dist/vault-1.12.5-webui.tar.xz ) -_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=0bedb94d47d5ec1848cc4806c4721c1c diff --git a/metadata/md5-cache/app-arch/Manifest.gz b/metadata/md5-cache/app-arch/Manifest.gz index c029a8cff2a0..10c14b03d025 100644 Binary files a/metadata/md5-cache/app-arch/Manifest.gz and b/metadata/md5-cache/app-arch/Manifest.gz differ diff --git a/metadata/md5-cache/app-arch/lxqt-archiver-0.8.0 b/metadata/md5-cache/app-arch/lxqt-archiver-0.8.0 new file mode 100644 index 000000000000..71d295e91433 --- /dev/null +++ b/metadata/md5-cache/app-arch/lxqt-archiver-0.8.0 @@ -0,0 +1,14 @@ +BDEPEND=>=dev-qt/linguist-tools-5.15:5 >=dev-util/lxqt-build-tools-0.13.0 >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install postinst postrm prepare test +DEPEND=dev-libs/glib:2 dev-libs/json-glib >=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 >=x11-libs/libfm-qt-1.3:= +DESCRIPTION=Qt GUI File Archiver +EAPI=8 +HOMEPAGE=https://lxqt-project.org/ +INHERIT=cmake xdg-utils +KEYWORDS=~amd64 ~loong ~riscv ~x86 +LICENSE=GPL-2 GPL-2+ +RDEPEND=dev-libs/glib:2 dev-libs/json-glib >=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 >=x11-libs/libfm-qt-1.3:= +SLOT=0 +SRC_URI=https://github.com/lxqt/lxqt-archiver/releases/download/0.8.0/lxqt-archiver-0.8.0.tar.xz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=2c3eb9adcd94a7c48b9018d5362a8993 diff --git a/metadata/md5-cache/app-backup/Manifest.gz b/metadata/md5-cache/app-backup/Manifest.gz index a34b8a07637e..3eda6d5b6895 100644 Binary files a/metadata/md5-cache/app-backup/Manifest.gz and b/metadata/md5-cache/app-backup/Manifest.gz differ diff --git a/metadata/md5-cache/app-backup/consul-backinator-1.6.6 b/metadata/md5-cache/app-backup/consul-backinator-1.6.6 index a2b96afbc236..0e34ab963e05 100644 --- a/metadata/md5-cache/app-backup/consul-backinator-1.6.6 +++ b/metadata/md5-cache/app-backup/consul-backinator-1.6.6 @@ -9,5 +9,5 @@ LICENSE=MPL-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/myENA/consul-backinator/archive/v1.6.6.tar.gz -> consul-backinator-1.6.6.tar.gz https://dev.gentoo.org/~williamh/dist/consul-backinator-1.6.6-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=85bfa6279924e7d29bb4926bc619343d diff --git a/metadata/md5-cache/app-backup/restic-0.13.1 b/metadata/md5-cache/app-backup/restic-0.13.1 index dceaf7cadea3..f22828d09362 100644 --- a/metadata/md5-cache/app-backup/restic-0.13.1 +++ b/metadata/md5-cache/app-backup/restic-0.13.1 @@ -11,5 +11,5 @@ RDEPEND=sys-fs/fuse:0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/restic/restic/archive/v0.13.1.tar.gz -> restic-0.13.1.tar.gz https://dev.gentoo.org/~williamh/dist/restic-0.13.1-deps.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=1244e76bf65fef73fd6d14755f18fa3f diff --git a/metadata/md5-cache/app-backup/restic-0.14.0 b/metadata/md5-cache/app-backup/restic-0.14.0 index 061ed4657f31..e2b8588ced4a 100644 --- a/metadata/md5-cache/app-backup/restic-0.14.0 +++ b/metadata/md5-cache/app-backup/restic-0.14.0 @@ -11,5 +11,5 @@ RDEPEND=sys-fs/fuse:0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/restic/restic/archive/v0.14.0.tar.gz -> restic-0.14.0.tar.gz https://dev.gentoo.org/~williamh/dist/restic-0.14.0-deps.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=af1286e7a857c8d69276ea626e510ea2 diff --git a/metadata/md5-cache/app-backup/restic-0.15.1 b/metadata/md5-cache/app-backup/restic-0.15.1 index fd9e5f98b5d3..4a97ab74f649 100644 --- a/metadata/md5-cache/app-backup/restic-0.15.1 +++ b/metadata/md5-cache/app-backup/restic-0.15.1 @@ -11,5 +11,5 @@ RDEPEND=sys-fs/fuse:0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/restic/restic/archive/v0.15.1.tar.gz -> restic-0.15.1.tar.gz https://dev.gentoo.org/~williamh/dist/restic-0.15.1-deps.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=9b3163145b71028cdb5f6d4acd136096 diff --git a/metadata/md5-cache/app-benchmarks/Manifest.gz b/metadata/md5-cache/app-benchmarks/Manifest.gz index 03bc55570339..a149bc9bc449 100644 Binary files a/metadata/md5-cache/app-benchmarks/Manifest.gz and b/metadata/md5-cache/app-benchmarks/Manifest.gz differ diff --git a/metadata/md5-cache/app-benchmarks/hey-0.1.2 b/metadata/md5-cache/app-benchmarks/hey-0.1.2 index efc54325bd54..c8c62007d968 100644 --- a/metadata/md5-cache/app-benchmarks/hey-0.1.2 +++ b/metadata/md5-cache/app-benchmarks/hey-0.1.2 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD RESTRICT=test SLOT=0 SRC_URI=https://github.com/rakyll/hey/archive/v0.1.2.tar.gz -> hey-0.1.2.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=f8fdea5beae0d8216f7878fbbfcbe81a diff --git a/metadata/md5-cache/app-containers/Manifest.gz b/metadata/md5-cache/app-containers/Manifest.gz index adccf36c2050..2be50d5ce99d 100644 Binary files a/metadata/md5-cache/app-containers/Manifest.gz and b/metadata/md5-cache/app-containers/Manifest.gz differ diff --git a/metadata/md5-cache/app-containers/buildah-1.27.1 b/metadata/md5-cache/app-containers/buildah-1.27.1 index e9cb95830800..ef44a49b395f 100644 --- a/metadata/md5-cache/app-containers/buildah-1.27.1 +++ b/metadata/md5-cache/app-containers/buildah-1.27.1 @@ -12,5 +12,5 @@ RDEPEND=app-crypt/gpgme:= app-containers/skopeo dev-libs/libgpg-error:= dev-libs RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/containers/buildah/archive/v1.27.1.tar.gz -> buildah-1.27.1.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=370a4af3f0127f2a5312640da64383e7 diff --git a/metadata/md5-cache/app-containers/buildah-1.28.0 b/metadata/md5-cache/app-containers/buildah-1.28.0 index 8919a1792703..2bd09fcb26a0 100644 --- a/metadata/md5-cache/app-containers/buildah-1.28.0 +++ b/metadata/md5-cache/app-containers/buildah-1.28.0 @@ -12,5 +12,5 @@ RDEPEND=app-crypt/gpgme:= app-containers/skopeo dev-libs/libgpg-error:= dev-libs RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/containers/buildah/archive/v1.28.0.tar.gz -> buildah-1.28.0.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=e29d1d0d669fe8775651641a440a74ed diff --git a/metadata/md5-cache/app-containers/buildah-1.28.1 b/metadata/md5-cache/app-containers/buildah-1.28.1 index 34f479221598..37327fdcfd82 100644 --- a/metadata/md5-cache/app-containers/buildah-1.28.1 +++ b/metadata/md5-cache/app-containers/buildah-1.28.1 @@ -12,5 +12,5 @@ RDEPEND=app-crypt/gpgme:= app-containers/skopeo dev-libs/libgpg-error:= dev-libs RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/containers/buildah/archive/v1.28.1.tar.gz -> buildah-1.28.1.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=64e64efc51fa5cf5fe3f5d0838c1b611 diff --git a/metadata/md5-cache/app-containers/buildah-1.29.1 b/metadata/md5-cache/app-containers/buildah-1.29.1 index c4517b364ddf..788703ae1358 100644 --- a/metadata/md5-cache/app-containers/buildah-1.29.1 +++ b/metadata/md5-cache/app-containers/buildah-1.29.1 @@ -12,5 +12,5 @@ RDEPEND=app-crypt/gpgme:= app-containers/skopeo dev-libs/libgpg-error:= dev-libs RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/containers/buildah/archive/v1.29.1.tar.gz -> buildah-1.29.1.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=878de390b5ecafa815bd447a1d8c6399 diff --git a/metadata/md5-cache/app-containers/cadvisor-0.36.0 b/metadata/md5-cache/app-containers/cadvisor-0.36.0 index 50ffa53bb2b8..4265175de8bf 100644 --- a/metadata/md5-cache/app-containers/cadvisor-0.36.0 +++ b/metadata/md5-cache/app-containers/cadvisor-0.36.0 @@ -11,5 +11,5 @@ RDEPEND=acct-group/cadvisor acct-user/cadvisor RESTRICT=strip SLOT=0 SRC_URI=https://github.com/google/cadvisor/archive/v0.36.0.tar.gz -> cadvisor-0.36.0.tar.gz https://dev.gentoo.org/~williamh/dist/cadvisor-0.36.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=f88f5d380d17f2cd8b7e1d025288acb7 diff --git a/metadata/md5-cache/app-containers/cni-plugins-0.9.1 b/metadata/md5-cache/app-containers/cni-plugins-0.9.1 index e816954a08cd..af24b25f13bd 100644 --- a/metadata/md5-cache/app-containers/cni-plugins-0.9.1 +++ b/metadata/md5-cache/app-containers/cni-plugins-0.9.1 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/containernetworking/plugins/archive/v0.9.1.tar.gz -> cni-plugins-0.9.1.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=ab5c6f3e079f4e5c1e4d1ebda71938e1 diff --git a/metadata/md5-cache/app-containers/cni-plugins-1.1.1 b/metadata/md5-cache/app-containers/cni-plugins-1.1.1 index 1c996d6d0cd0..9537bfbfec73 100644 --- a/metadata/md5-cache/app-containers/cni-plugins-1.1.1 +++ b/metadata/md5-cache/app-containers/cni-plugins-1.1.1 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/containernetworking/plugins/archive/v1.1.1.tar.gz -> cni-plugins-1.1.1.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=2d3c3f96d66ffd014004400c0ee5ae25 diff --git a/metadata/md5-cache/app-containers/cni-plugins-1.1.1-r1 b/metadata/md5-cache/app-containers/cni-plugins-1.1.1-r1 index 17c657191b75..00c7e4c99b74 100644 --- a/metadata/md5-cache/app-containers/cni-plugins-1.1.1-r1 +++ b/metadata/md5-cache/app-containers/cni-plugins-1.1.1-r1 @@ -11,5 +11,5 @@ RDEPEND=net-firewall/iptables RESTRICT=strip SLOT=0 SRC_URI=https://github.com/containernetworking/plugins/archive/v1.1.1.tar.gz -> cni-plugins-1.1.1.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=54e62717192dbd8ca2527e4dca02959a diff --git a/metadata/md5-cache/app-containers/cni-plugins-1.2.0 b/metadata/md5-cache/app-containers/cni-plugins-1.2.0 index 8e3fd3094073..d01a4c47f1f8 100644 --- a/metadata/md5-cache/app-containers/cni-plugins-1.2.0 +++ b/metadata/md5-cache/app-containers/cni-plugins-1.2.0 @@ -11,5 +11,5 @@ RDEPEND=net-firewall/iptables RESTRICT=strip SLOT=0 SRC_URI=https://github.com/containernetworking/plugins/archive/v1.2.0.tar.gz -> cni-plugins-1.2.0.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=72c3b8d602788d5654e70a322146bab4 diff --git a/metadata/md5-cache/app-containers/containerd-1.6.19 b/metadata/md5-cache/app-containers/containerd-1.6.19 index 362bf38f4c63..f2b93ca9ac68 100644 --- a/metadata/md5-cache/app-containers/containerd-1.6.19 +++ b/metadata/md5-cache/app-containers/containerd-1.6.19 @@ -12,5 +12,5 @@ RDEPEND=btrfs? ( sys-fs/btrfs-progs ) seccomp? ( sys-libs/libseccomp ) ~app-cont RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/containerd/containerd/archive/v1.6.19.tar.gz -> containerd-1.6.19.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=d77aabb8d788aaa291993317a056f6ba diff --git a/metadata/md5-cache/app-containers/containers-storage-1.41.0 b/metadata/md5-cache/app-containers/containers-storage-1.41.0 index a9329a2db629..6540e805b76d 100644 --- a/metadata/md5-cache/app-containers/containers-storage-1.41.0 +++ b/metadata/md5-cache/app-containers/containers-storage-1.41.0 @@ -12,5 +12,5 @@ RDEPEND=btrfs? ( sys-fs/btrfs-progs ) device-mapper? ( sys-fs/lvm2:= ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/containers/storage/archive/v1.41.0.tar.gz -> containers-storage-1.41.0.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=124aeacf6c2a751fc208c20252955da5 diff --git a/metadata/md5-cache/app-containers/containers-storage-1.42.0 b/metadata/md5-cache/app-containers/containers-storage-1.42.0 index 13168de27f31..8a47fb58a302 100644 --- a/metadata/md5-cache/app-containers/containers-storage-1.42.0 +++ b/metadata/md5-cache/app-containers/containers-storage-1.42.0 @@ -12,5 +12,5 @@ RDEPEND=btrfs? ( sys-fs/btrfs-progs ) device-mapper? ( sys-fs/lvm2:= ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/containers/storage/archive/v1.42.0.tar.gz -> containers-storage-1.42.0.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=124aeacf6c2a751fc208c20252955da5 diff --git a/metadata/md5-cache/app-containers/cosign-2.0.0 b/metadata/md5-cache/app-containers/cosign-2.0.0 index 6ea1348c7d77..2152c92846d7 100644 --- a/metadata/md5-cache/app-containers/cosign-2.0.0 +++ b/metadata/md5-cache/app-containers/cosign-2.0.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/sigstore/cosign/archive/v2.0.0.tar.gz -> cosign-2.0.0.tar.gz https://dev.gentoo.org/~williamh/dist/cosign-2.0.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=cf34af4108da98df77a12f1eaf528908 diff --git a/metadata/md5-cache/app-containers/cosign-2.0.1 b/metadata/md5-cache/app-containers/cosign-2.0.1 index 67dc99d2e761..cd493d323cf1 100644 --- a/metadata/md5-cache/app-containers/cosign-2.0.1 +++ b/metadata/md5-cache/app-containers/cosign-2.0.1 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/sigstore/cosign/archive/v2.0.1.tar.gz -> cosign-2.0.1.tar.gz https://dev.gentoo.org/~williamh/dist/cosign-2.0.1-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=9e404f53f5fe11721eaadfff60d51206 diff --git a/metadata/md5-cache/app-containers/cri-o-1.26.0 b/metadata/md5-cache/app-containers/cri-o-1.26.0 index 36b158ca3cf2..8d4bf9ef1a46 100644 --- a/metadata/md5-cache/app-containers/cri-o-1.26.0 +++ b/metadata/md5-cache/app-containers/cri-o-1.26.0 @@ -12,5 +12,5 @@ RDEPEND=app-crypt/gpgme:= app-containers/conmon app-containers/runc dev-libs/gli RESTRICT=strip SLOT=0 SRC_URI=https://github.com/cri-o/cri-o/archive/v1.26.0.tar.gz -> cri-o-1.26.0.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=83dbffed1b6f0a3a95baa1a957784bfb diff --git a/metadata/md5-cache/app-containers/cri-tools-1.23.0 b/metadata/md5-cache/app-containers/cri-tools-1.23.0 index 8a2c273ecb95..7d3ad826c1cd 100644 --- a/metadata/md5-cache/app-containers/cri-tools-1.23.0 +++ b/metadata/md5-cache/app-containers/cri-tools-1.23.0 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0 RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes-sigs/cri-tools/archive/v1.23.0.tar.gz -> cri-tools-1.23.0.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=aa0b23d1b390c0d624ed4956cec3dcf5 diff --git a/metadata/md5-cache/app-containers/cri-tools-1.24.0 b/metadata/md5-cache/app-containers/cri-tools-1.24.0 index 3410c1b7fbd0..4d8f83755644 100644 --- a/metadata/md5-cache/app-containers/cri-tools-1.24.0 +++ b/metadata/md5-cache/app-containers/cri-tools-1.24.0 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0 RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes-sigs/cri-tools/archive/v1.24.0.tar.gz -> cri-tools-1.24.0.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=eea2c55375f9a680bcc9b5630e58cd9c diff --git a/metadata/md5-cache/app-containers/cri-tools-1.24.1 b/metadata/md5-cache/app-containers/cri-tools-1.24.1 index 45bd456cfab2..7c4acca4cc2c 100644 --- a/metadata/md5-cache/app-containers/cri-tools-1.24.1 +++ b/metadata/md5-cache/app-containers/cri-tools-1.24.1 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0 RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes-sigs/cri-tools/archive/v1.24.1.tar.gz -> cri-tools-1.24.1.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=4c840d1da58ffe26d5db9fb0c0cd68d5 diff --git a/metadata/md5-cache/app-containers/cri-tools-1.24.2 b/metadata/md5-cache/app-containers/cri-tools-1.24.2 index de5c0c5cee75..401d7685833b 100644 --- a/metadata/md5-cache/app-containers/cri-tools-1.24.2 +++ b/metadata/md5-cache/app-containers/cri-tools-1.24.2 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0 RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes-sigs/cri-tools/archive/v1.24.2.tar.gz -> cri-tools-1.24.2.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=4c840d1da58ffe26d5db9fb0c0cd68d5 diff --git a/metadata/md5-cache/app-containers/cri-tools-1.25.0 b/metadata/md5-cache/app-containers/cri-tools-1.25.0 index 254fff95d8c5..e8a314b36f30 100644 --- a/metadata/md5-cache/app-containers/cri-tools-1.25.0 +++ b/metadata/md5-cache/app-containers/cri-tools-1.25.0 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0 RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes-sigs/cri-tools/archive/v1.25.0.tar.gz -> cri-tools-1.25.0.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=76bbd291da38ab1a05e98189bb16e934 diff --git a/metadata/md5-cache/app-containers/distrobuilder-2.0 b/metadata/md5-cache/app-containers/distrobuilder-2.0 index 46e15183178a..8ca9cc1f270b 100644 --- a/metadata/md5-cache/app-containers/distrobuilder-2.0 +++ b/metadata/md5-cache/app-containers/distrobuilder-2.0 @@ -10,5 +10,5 @@ RDEPEND=dev-util/debootstrap app-crypt/gnupg sys-fs/squashfs-tools dev-vcs/git n RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/lxc/distrobuilder/archive/distrobuilder-2.0.tar.gz https://dev.gentoo.org/~williamh/dist/distrobuilder-2.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=87c1ba9f85b03b38361191a4a9615783 diff --git a/metadata/md5-cache/app-containers/docker-buildx-0.10.2 b/metadata/md5-cache/app-containers/docker-buildx-0.10.2 index cc8fdd444ad3..47352b34d3ae 100644 --- a/metadata/md5-cache/app-containers/docker-buildx-0.10.2 +++ b/metadata/md5-cache/app-containers/docker-buildx-0.10.2 @@ -12,5 +12,5 @@ RDEPEND=app-containers/docker RESTRICT=!test? ( test ) strip SLOT=0 SRC_URI=https://github.com/docker/buildx/archive/refs/tags/v0.10.2.tar.gz -> docker-buildx-0.10.2.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=5e53561615a2bdc4fdf5318009b784a3 diff --git a/metadata/md5-cache/app-containers/docker-buildx-0.10.4 b/metadata/md5-cache/app-containers/docker-buildx-0.10.4 index bab9040b5564..d877b4a13a3a 100644 --- a/metadata/md5-cache/app-containers/docker-buildx-0.10.4 +++ b/metadata/md5-cache/app-containers/docker-buildx-0.10.4 @@ -12,5 +12,5 @@ RDEPEND=app-containers/docker RESTRICT=!test? ( test ) strip SLOT=0 SRC_URI=https://github.com/docker/buildx/archive/refs/tags/v0.10.4.tar.gz -> docker-buildx-0.10.4.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=17282f2eac04709311798cd14d921bc8 diff --git a/metadata/md5-cache/app-containers/docker-buildx-0.10.4-r1 b/metadata/md5-cache/app-containers/docker-buildx-0.10.4-r1 index c1f558d1176b..cdcad468ac30 100644 --- a/metadata/md5-cache/app-containers/docker-buildx-0.10.4-r1 +++ b/metadata/md5-cache/app-containers/docker-buildx-0.10.4-r1 @@ -11,5 +11,5 @@ RDEPEND=app-containers/docker-cli RESTRICT=!test? ( test ) strip SLOT=0 SRC_URI=https://github.com/docker/buildx/archive/refs/tags/v0.10.4.tar.gz -> docker-buildx-0.10.4.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=4b6212f319fe86e4bedab604655fafeb diff --git a/metadata/md5-cache/app-containers/docker-buildx-9999 b/metadata/md5-cache/app-containers/docker-buildx-9999 index 3c5e6c3a5f4a..fc9b91cea39e 100644 --- a/metadata/md5-cache/app-containers/docker-buildx-9999 +++ b/metadata/md5-cache/app-containers/docker-buildx-9999 @@ -10,5 +10,5 @@ PROPERTIES=live RDEPEND=app-containers/docker-cli RESTRICT=!test? ( test ) strip SLOT=0 -_eclasses_=git-r3 27e13c09a4c7e4c78ac812f74727e676 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=git-r3 27e13c09a4c7e4c78ac812f74727e676 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=3e278711e37dbe25ad47e80c896e92c0 diff --git a/metadata/md5-cache/app-containers/docker-compose-2.17.2 b/metadata/md5-cache/app-containers/docker-compose-2.17.2 index 2af0838f6d1e..60f6f3f6c765 100644 --- a/metadata/md5-cache/app-containers/docker-compose-2.17.2 +++ b/metadata/md5-cache/app-containers/docker-compose-2.17.2 @@ -10,5 +10,5 @@ RDEPEND=>=app-containers/docker-cli-23.0.0 RESTRICT=test strip SLOT=2 SRC_URI=https://github.com/docker/compose/archive/v2.17.2.tar.gz -> docker-compose-2.17.2.tar.gz https://dev.gentoo.org/~williamh/dist/docker-compose-2.17.2-deps.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=99d29bea361a3eb9722edaef8a3f9db5 diff --git a/metadata/md5-cache/app-containers/docker-swarm-1.2.9 b/metadata/md5-cache/app-containers/docker-swarm-1.2.9 index d7460f8e122c..e2fe88ca2f1e 100644 --- a/metadata/md5-cache/app-containers/docker-swarm-1.2.9 +++ b/metadata/md5-cache/app-containers/docker-swarm-1.2.9 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 CC-BY-SA-4.0 BSD BSD-2 ISC MIT MPL-2.0 WTFPL-2 RESTRICT=test SLOT=0 SRC_URI=https://github.com/docker/classicswarm/archive/v1.2.9.tar.gz -> docker-swarm-1.2.9.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=cd9ed1e454cbcfc5a67849729d14b4af diff --git a/metadata/md5-cache/app-containers/flannel-0.17.0 b/metadata/md5-cache/app-containers/flannel-0.17.0 index 2af943bd3a88..7ec7618cc067 100644 --- a/metadata/md5-cache/app-containers/flannel-0.17.0 +++ b/metadata/md5-cache/app-containers/flannel-0.17.0 @@ -11,5 +11,5 @@ RDEPEND=virtual/tmpfiles RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/flannel-io/flannel/archive/refs/tags/v0.17.0.tar.gz -> flannel-0.17.0.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=f028856793212738e63ab42c5452c717 diff --git a/metadata/md5-cache/app-containers/flannel-0.20.0 b/metadata/md5-cache/app-containers/flannel-0.20.0 index a7c0da5ef039..97a170de05eb 100644 --- a/metadata/md5-cache/app-containers/flannel-0.20.0 +++ b/metadata/md5-cache/app-containers/flannel-0.20.0 @@ -11,5 +11,5 @@ RDEPEND=virtual/tmpfiles RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/flannel-io/flannel/archive/refs/tags/v0.20.0.tar.gz -> flannel-0.20.0.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=f028856793212738e63ab42c5452c717 diff --git a/metadata/md5-cache/app-containers/grype-0.59.1 b/metadata/md5-cache/app-containers/grype-0.59.1 index b7594fdc760c..738441fd409e 100644 --- a/metadata/md5-cache/app-containers/grype-0.59.1 +++ b/metadata/md5-cache/app-containers/grype-0.59.1 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/anchore/grype/archive/v0.59.1.tar.gz -> grype-0.59.1.tar.gz https://dev.gentoo.org/~williamh/dist/grype-0.59.1-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=c44b78ed0c619b3c3465640c950f31eb diff --git a/metadata/md5-cache/app-containers/grype-0.61.0 b/metadata/md5-cache/app-containers/grype-0.61.0 index 61b77e0e8f98..4af19f3d0c1b 100644 --- a/metadata/md5-cache/app-containers/grype-0.61.0 +++ b/metadata/md5-cache/app-containers/grype-0.61.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/anchore/grype/archive/v0.61.0.tar.gz -> grype-0.61.0.tar.gz https://dev.gentoo.org/~williamh/dist/grype-0.61.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=be966291b00ca5cf3e7dcb639b7565d1 diff --git a/metadata/md5-cache/app-containers/img-0.5.11 b/metadata/md5-cache/app-containers/img-0.5.11 index c5d6565c4f75..398d5462d75a 100644 --- a/metadata/md5-cache/app-containers/img-0.5.11 +++ b/metadata/md5-cache/app-containers/img-0.5.11 @@ -12,5 +12,5 @@ RDEPEND=seccomp? ( sys-libs/libseccomp ) app-containers/runc RESTRICT=strip SLOT=0 SRC_URI=https://github.com/genuinetools/img/archive/v0.5.11.tar.gz -> img-0.5.11.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=ef63c4bdb14fad7d9ca0843e5418fcdb diff --git a/metadata/md5-cache/app-containers/k3d-5.4.2 b/metadata/md5-cache/app-containers/k3d-5.4.2 index 5b81433bd9a5..0fbf4666768f 100644 --- a/metadata/md5-cache/app-containers/k3d-5.4.2 +++ b/metadata/md5-cache/app-containers/k3d-5.4.2 @@ -10,5 +10,5 @@ LICENSE=MIT Apache-2.0 BSD BSD-2 MPL-2.0 ISC RESTRICT=strip SLOT=0 SRC_URI=https://github.com/rancher/k3d/archive/refs/tags/v5.4.2.tar.gz -> k3d-5.4.2.tar.gz https://dev.gentoo.org/~zmedico/dist/k3d-5.4.2-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=f6882592907f48d86f675cfc88c79d0a diff --git a/metadata/md5-cache/app-containers/k3d-5.4.4 b/metadata/md5-cache/app-containers/k3d-5.4.4 index 0ce1bf2c852e..ae1d6e080d25 100644 --- a/metadata/md5-cache/app-containers/k3d-5.4.4 +++ b/metadata/md5-cache/app-containers/k3d-5.4.4 @@ -10,5 +10,5 @@ LICENSE=MIT Apache-2.0 BSD BSD-2 MPL-2.0 ISC RESTRICT=strip SLOT=0 SRC_URI=https://github.com/rancher/k3d/archive/refs/tags/v5.4.4.tar.gz -> k3d-5.4.4.tar.gz https://dev.gentoo.org/~zmedico/dist/k3d-5.4.4-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=4328a73b0ad3b64e668ce2a15693b4ac diff --git a/metadata/md5-cache/app-containers/k3d-5.4.6 b/metadata/md5-cache/app-containers/k3d-5.4.6 index 3443b1bc7117..f7a820dea439 100644 --- a/metadata/md5-cache/app-containers/k3d-5.4.6 +++ b/metadata/md5-cache/app-containers/k3d-5.4.6 @@ -10,5 +10,5 @@ LICENSE=MIT Apache-2.0 BSD BSD-2 MPL-2.0 ISC RESTRICT=strip SLOT=0 SRC_URI=https://github.com/rancher/k3d/archive/refs/tags/v5.4.6.tar.gz -> k3d-5.4.6.tar.gz https://dev.gentoo.org/~zmedico/dist/k3d-5.4.6-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=42dc75be8965ebe1a478f68a2418020d diff --git a/metadata/md5-cache/app-containers/kompose-1.26.1 b/metadata/md5-cache/app-containers/kompose-1.26.1 index 3134dab92792..54d1381793d0 100644 --- a/metadata/md5-cache/app-containers/kompose-1.26.1 +++ b/metadata/md5-cache/app-containers/kompose-1.26.1 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kompose/archive/v1.26.1.tar.gz -> kompose-1.26.1.tar.gz https://dev.gentoo.org/~williamh/dist/kompose-1.26.1-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=a705336d1cce32d95c98937d7cc99c97 diff --git a/metadata/md5-cache/app-containers/lxd-4.0.9-r3 b/metadata/md5-cache/app-containers/lxd-4.0.9-r3 index c6c6624cf879..be45ebf34b8b 100644 --- a/metadata/md5-cache/app-containers/lxd-4.0.9-r3 +++ b/metadata/md5-cache/app-containers/lxd-4.0.9-r3 @@ -12,5 +12,5 @@ RDEPEND=acct-group/lxd app-arch/xz-utils >=app-containers/lxc-3.0.0[apparmor?,se RESTRICT=test SLOT=0 SRC_URI=https://linuxcontainers.org/downloads/lxd/lxd-4.0.9.tar.gz verify-sig? ( https://linuxcontainers.org/downloads/lxd/lxd-4.0.9.tar.gz.asc ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e verify-sig ed3712fa46ee0fdc2dbbad539e20ff26 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e verify-sig ed3712fa46ee0fdc2dbbad539e20ff26 _md5_=ca5cc5eccddfeb5d7ed15afddfe4b6fc diff --git a/metadata/md5-cache/app-containers/lxd-5.0.2-r2 b/metadata/md5-cache/app-containers/lxd-5.0.2-r2 index 72ed66b6403b..4290630e3068 100644 --- a/metadata/md5-cache/app-containers/lxd-5.0.2-r2 +++ b/metadata/md5-cache/app-containers/lxd-5.0.2-r2 @@ -12,5 +12,5 @@ RDEPEND=acct-group/lxd app-arch/xz-utils >=app-containers/lxc-5.0.0:=[apparmor?, RESTRICT=test strip SLOT=0 SRC_URI=https://linuxcontainers.org/downloads/lxd/lxd-5.0.2.tar.gz verify-sig? ( https://linuxcontainers.org/downloads/lxd/lxd-5.0.2.tar.gz.asc ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e verify-sig ed3712fa46ee0fdc2dbbad539e20ff26 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e verify-sig ed3712fa46ee0fdc2dbbad539e20ff26 _md5_=ed68b295ecba9cba5158232ba119b06e diff --git a/metadata/md5-cache/app-containers/nerdctl-0.22.2 b/metadata/md5-cache/app-containers/nerdctl-0.22.2 index f8f4e68f6629..919234c184a2 100644 --- a/metadata/md5-cache/app-containers/nerdctl-0.22.2 +++ b/metadata/md5-cache/app-containers/nerdctl-0.22.2 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD BSD-2 ISC MIT RESTRICT=strip SLOT=0 SRC_URI=https://github.com/zmedico/nerdctl/archive/refs/tags/v0.22.2-vendor.tar.gz -> nerdctl-0.22.2-vendor.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=76aa226c7ff84d69f99a3ae2dfcdcadd diff --git a/metadata/md5-cache/app-containers/nerdctl-0.23.0 b/metadata/md5-cache/app-containers/nerdctl-0.23.0 index 005c54f3eed8..66293f854f9c 100644 --- a/metadata/md5-cache/app-containers/nerdctl-0.23.0 +++ b/metadata/md5-cache/app-containers/nerdctl-0.23.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD BSD-2 ISC MIT RESTRICT=strip SLOT=0 SRC_URI=https://github.com/zmedico/nerdctl/archive/refs/tags/v0.23.0-vendor.tar.gz -> nerdctl-0.23.0-vendor.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=7572bbfbd1c91295f656e705f80158fd diff --git a/metadata/md5-cache/app-containers/nerdctl-1.0.0 b/metadata/md5-cache/app-containers/nerdctl-1.0.0 index 062a0cadebfc..fdf040a74703 100644 --- a/metadata/md5-cache/app-containers/nerdctl-1.0.0 +++ b/metadata/md5-cache/app-containers/nerdctl-1.0.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD BSD-2 ISC MIT RESTRICT=strip SLOT=0 SRC_URI=https://github.com/zmedico/nerdctl/archive/refs/tags/v1.0.0-vendor.tar.gz -> nerdctl-1.0.0-vendor.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=1b0d0b8f65c6e2ef0280745b28d40e1a diff --git a/metadata/md5-cache/app-containers/nerdctl-1.1.0 b/metadata/md5-cache/app-containers/nerdctl-1.1.0 index 54cff787fd87..113435ad3ce6 100644 --- a/metadata/md5-cache/app-containers/nerdctl-1.1.0 +++ b/metadata/md5-cache/app-containers/nerdctl-1.1.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD BSD-2 ISC MIT RESTRICT=strip SLOT=0 SRC_URI=https://github.com/zmedico/nerdctl/archive/refs/tags/v1.1.0-vendor.tar.gz -> nerdctl-1.1.0-vendor.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=fcf589dfd455dac52b6a259253b529d0 diff --git a/metadata/md5-cache/app-containers/podman-4.3.1 b/metadata/md5-cache/app-containers/podman-4.3.1 index 1062d7a2e947..4b0459d9b83c 100644 --- a/metadata/md5-cache/app-containers/podman-4.3.1 +++ b/metadata/md5-cache/app-containers/podman-4.3.1 @@ -12,5 +12,5 @@ RDEPEND=app-crypt/gpgme:= >=app-containers/conmon-2.0.0 cgroup-hybrid? ( >=app-c RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/containers/podman/archive/v4.3.1.tar.gz -> podman-4.3.1.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=7d98dd3526faed9f88c5b1aabf23a716 diff --git a/metadata/md5-cache/app-containers/podman-4.4.1-r1 b/metadata/md5-cache/app-containers/podman-4.4.1-r1 index 9ddf5bf57677..6d5de5717340 100644 --- a/metadata/md5-cache/app-containers/podman-4.4.1-r1 +++ b/metadata/md5-cache/app-containers/podman-4.4.1-r1 @@ -12,5 +12,5 @@ RDEPEND=app-crypt/gpgme:= >=app-containers/conmon-2.0.0 cgroup-hybrid? ( >=app-c RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/containers/podman/archive/v4.4.1.tar.gz -> podman-4.4.1.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=3b3eed5192bede4439d5093c79f5dcb1 diff --git a/metadata/md5-cache/app-containers/reg-0.16.1-r1 b/metadata/md5-cache/app-containers/reg-0.16.1-r1 index a36baf12d8db..c63c6fb4013d 100644 --- a/metadata/md5-cache/app-containers/reg-0.16.1-r1 +++ b/metadata/md5-cache/app-containers/reg-0.16.1-r1 @@ -11,5 +11,5 @@ RDEPEND=acct-group/reg acct-user/reg RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/genuinetools/reg/archive/4203e559f331009df04a3ca47820989c6c43e138.tar.gz -> reg-0.16.1.tar.gz https://dev.gentoo.org/~williamh/dist/reg-0.16.1-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=c19be8c8045295bc2a39db8c9ec8727e diff --git a/metadata/md5-cache/app-containers/runc-1.1.4 b/metadata/md5-cache/app-containers/runc-1.1.4 index 10d34717f279..a6bea76af4d5 100644 --- a/metadata/md5-cache/app-containers/runc-1.1.4 +++ b/metadata/md5-cache/app-containers/runc-1.1.4 @@ -12,5 +12,5 @@ RDEPEND=seccomp? ( sys-libs/libseccomp ) !app-emulation/docker-runc apparmor? ( RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/opencontainers/runc/archive/v1.1.4.tar.gz -> runc-1.1.4.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=ddc7bff18be6e7cc530324551dd6c2a4 diff --git a/metadata/md5-cache/app-containers/skopeo-1.10.0-r1 b/metadata/md5-cache/app-containers/skopeo-1.10.0-r1 index 00ce8cdfb844..76e31d148140 100644 --- a/metadata/md5-cache/app-containers/skopeo-1.10.0-r1 +++ b/metadata/md5-cache/app-containers/skopeo-1.10.0-r1 @@ -12,5 +12,5 @@ RDEPEND=>=app-crypt/gpgme-1.5.5:= >=dev-libs/libassuan-2.4.3:= dev-libs/libgpg-e RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/containers/skopeo/archive/v1.10.0.tar.gz -> skopeo-1.10.0.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=f0a85a29954bf5ad03d81b6fbac574a0 diff --git a/metadata/md5-cache/app-containers/skopeo-1.11.1 b/metadata/md5-cache/app-containers/skopeo-1.11.1 index 6581486df794..5c6c77c2ce59 100644 --- a/metadata/md5-cache/app-containers/skopeo-1.11.1 +++ b/metadata/md5-cache/app-containers/skopeo-1.11.1 @@ -12,5 +12,5 @@ RDEPEND=>=app-crypt/gpgme-1.5.5:= >=dev-libs/libassuan-2.4.3:= dev-libs/libgpg-e RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/containers/skopeo/archive/v1.11.1.tar.gz -> skopeo-1.11.1.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=cec4af792d34fe69303566c026291691 diff --git a/metadata/md5-cache/app-containers/skopeo-1.5.1 b/metadata/md5-cache/app-containers/skopeo-1.5.1 index d585086b6ce8..2fa08a95794c 100644 --- a/metadata/md5-cache/app-containers/skopeo-1.5.1 +++ b/metadata/md5-cache/app-containers/skopeo-1.5.1 @@ -12,5 +12,5 @@ RDEPEND=>=app-crypt/gpgme-1.5.5:= >=dev-libs/libassuan-2.4.3:= dev-libs/libgpg-e RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/containers/skopeo/archive/v1.5.1.tar.gz -> skopeo-1.5.1.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=6b3d947d7f590d7ba820aee2bac699aa diff --git a/metadata/md5-cache/app-containers/snapd-2.57.6 b/metadata/md5-cache/app-containers/snapd-2.57.6 index 90aa6fbfe33b..7f6e7598cdef 100644 --- a/metadata/md5-cache/app-containers/snapd-2.57.6 +++ b/metadata/md5-cache/app-containers/snapd-2.57.6 @@ -14,5 +14,5 @@ REQUIRED_USE=!forced-devmode? ( apparmor ) systemd RESTRICT=strip SLOT=0 SRC_URI=https://github.com/snapcore/snapd/releases/download/2.57.6/snapd_2.57.6.vendor.tar.xz -> snapd-2.57.6.tar.xz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 go-module f9700c7efec1fd4955363169e9930c1c libtool 9d3a9a889a6fa62ae794f817c156491b linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 go-module 9c75e51a48520b2f01471c1f91762882 libtool 9d3a9a889a6fa62ae794f817c156491b linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=4890ef91805a8a226b2aab1d3054ea58 diff --git a/metadata/md5-cache/app-containers/snapd-2.58 b/metadata/md5-cache/app-containers/snapd-2.58 index 8ddc8cee4bbb..1206b715e301 100644 --- a/metadata/md5-cache/app-containers/snapd-2.58 +++ b/metadata/md5-cache/app-containers/snapd-2.58 @@ -14,5 +14,5 @@ REQUIRED_USE=!forced-devmode? ( apparmor ) systemd RESTRICT=strip SLOT=0 SRC_URI=https://github.com/snapcore/snapd/releases/download/2.58/snapd_2.58.vendor.tar.xz -> snapd-2.58.tar.xz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 go-module f9700c7efec1fd4955363169e9930c1c libtool 9d3a9a889a6fa62ae794f817c156491b linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 go-module 9c75e51a48520b2f01471c1f91762882 libtool 9d3a9a889a6fa62ae794f817c156491b linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=d1d34bb9783a1a1b8f2f688dfc9445d1 diff --git a/metadata/md5-cache/app-containers/syft-0.75.0 b/metadata/md5-cache/app-containers/syft-0.75.0 index 4a42fe97fbea..0d0c803ad7a4 100644 --- a/metadata/md5-cache/app-containers/syft-0.75.0 +++ b/metadata/md5-cache/app-containers/syft-0.75.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/anchore/syft/archive/v0.75.0.tar.gz -> syft-0.75.0.tar.gz https://dev.gentoo.org/~williamh/dist/syft-0.75.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=b6f4ec480f0757076b3b12b64cf90248 diff --git a/metadata/md5-cache/app-containers/syft-0.76.0 b/metadata/md5-cache/app-containers/syft-0.76.0 index 8c8f33d92268..5c518e30538b 100644 --- a/metadata/md5-cache/app-containers/syft-0.76.0 +++ b/metadata/md5-cache/app-containers/syft-0.76.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/anchore/syft/archive/v0.76.0.tar.gz -> syft-0.76.0.tar.gz https://dev.gentoo.org/~williamh/dist/syft-0.76.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=0def23f10c4cee52e9934102e316b438 diff --git a/metadata/md5-cache/app-containers/umoci-0.4.6 b/metadata/md5-cache/app-containers/umoci-0.4.6 index 67811f6cb3e7..23030b4ba0aa 100644 --- a/metadata/md5-cache/app-containers/umoci-0.4.6 +++ b/metadata/md5-cache/app-containers/umoci-0.4.6 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/opencontainers/umoci/archive/v0.4.6.tar.gz -> umoci-0.4.6.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=d956394d8f3a2438e67c06720a1c7f31 diff --git a/metadata/md5-cache/app-crypt/Manifest.gz b/metadata/md5-cache/app-crypt/Manifest.gz index b7c8fca8712b..cb399cfa1829 100644 Binary files a/metadata/md5-cache/app-crypt/Manifest.gz and b/metadata/md5-cache/app-crypt/Manifest.gz differ diff --git a/metadata/md5-cache/app-crypt/acme-2.3.0 b/metadata/md5-cache/app-crypt/acme-2.3.0 deleted file mode 100644 index eef2354bea91..000000000000 --- a/metadata/md5-cache/app-crypt/acme-2.3.0 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( dev-python/pytest[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest-xdist[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/typing-extensions[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) doc? ( || ( ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-python/sphinx-5.3.0[python_targets_python3_11(-)] dev-python/sphinx-rtd-theme[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 >=dev-python/sphinx-5.3.0[python_targets_python3_10(-)] dev-python/sphinx-rtd-theme[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 >=dev-python/sphinx-5.3.0[python_targets_python3_9(-)] dev-python/sphinx-rtd-theme[python_targets_python3_9(-)] ) ) ) test? ( dev-python/chardet[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/cryptography-2.5.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/josepy-1.13.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pyopenssl-17.5.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pyrfc3339[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytz-2019.3[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/requests-2.20.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/requests-toolbelt-0.3.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/wheel-0.38.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=An implementation of the ACME protocol -EAPI=8 -HOMEPAGE=https://github.com/certbot/certbot https://letsencrypt.org/ -INHERIT=distutils-r1 -IUSE=doc test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=amd64 ~arm ~arm64 ~ppc64 ~riscv x86 -LICENSE=Apache-2.0 -RDEPEND=dev-python/chardet[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/cryptography-2.5.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/josepy-1.13.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pyopenssl-17.5.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pyrfc3339[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytz-2019.3[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/requests-2.20.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/requests-toolbelt-0.3.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/certbot/certbot/archive/v2.3.0.tar.gz -> certbot-2.3.0.gh.tar.gz -_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=4bba643f16246e49b27e92f52786aabb diff --git a/metadata/md5-cache/app-crypt/age-1.0.0 b/metadata/md5-cache/app-crypt/age-1.0.0 index d4b464db70c6..a1cf4ee30a94 100644 --- a/metadata/md5-cache/app-crypt/age-1.0.0 +++ b/metadata/md5-cache/app-crypt/age-1.0.0 @@ -9,5 +9,5 @@ LICENSE=BSD RESTRICT=strip SLOT=0 SRC_URI=https://github.com/FiloSottile/age/archive/v1.0.0.tar.gz -> age-1.0.0.tar.gz https://dev.gentoo.org/~williamh/dist/age-1.0.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=9aefd0fed84c33a9b65802531b3a1159 diff --git a/metadata/md5-cache/app-crypt/age-1.1.1 b/metadata/md5-cache/app-crypt/age-1.1.1 index 7b03c3a8f00e..a44b9fa9d80b 100644 --- a/metadata/md5-cache/app-crypt/age-1.1.1 +++ b/metadata/md5-cache/app-crypt/age-1.1.1 @@ -9,5 +9,5 @@ LICENSE=BSD RESTRICT=strip SLOT=0 SRC_URI=https://github.com/FiloSottile/age/archive/v1.1.1.tar.gz -> age-1.1.1.tar.gz https://dev.gentoo.org/~graaff/age/age-1.1.1-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=9f8a4ed25ac0410e670b3954d8bda059 diff --git a/metadata/md5-cache/app-crypt/certbot-2.3.0 b/metadata/md5-cache/app-crypt/certbot-2.3.0 deleted file mode 100644 index 9d772af66c55..000000000000 --- a/metadata/md5-cache/app-crypt/certbot-2.3.0 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( dev-python/pytest[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest-cov[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest-xdist[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/typing-extensions[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) doc? ( || ( ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-python/sphinx-5.3.0[python_targets_python3_11(-)] dev-python/sphinx-rtd-theme[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 >=dev-python/sphinx-5.3.0[python_targets_python3_10(-)] dev-python/sphinx-rtd-theme[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 >=dev-python/sphinx-5.3.0[python_targets_python3_9(-)] dev-python/sphinx-rtd-theme[python_targets_python3_9(-)] ) ) ) test? ( >=app-crypt/acme-2.3.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/ConfigArgParse-0.9.3[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/configobj-5.0.6[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/cryptography-2.5.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/distro-1.0.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/josepy-1.13.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/parsedatetime-2.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pyrfc3339[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytz-2019.3[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] selinux? ( sec-policy/selinux-certbot ) >=dev-python/pytest-7.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/wheel-0.38.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Let’s Encrypt client to automate deployment of X.509 certificates -EAPI=8 -HOMEPAGE=https://github.com/certbot/certbot https://letsencrypt.org/ -INHERIT=distutils-r1 -IUSE=selinux doc test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=amd64 ~arm ~arm64 ~ppc64 ~riscv x86 -LICENSE=Apache-2.0 -RDEPEND=>=app-crypt/acme-2.3.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/ConfigArgParse-0.9.3[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/configobj-5.0.6[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/cryptography-2.5.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/distro-1.0.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/josepy-1.13.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/parsedatetime-2.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pyrfc3339[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytz-2019.3[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] selinux? ( sec-policy/selinux-certbot ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/certbot/certbot/archive/v2.3.0.tar.gz -> certbot-2.3.0.gh.tar.gz -_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=581489de7af674d4da2041afa4be0785 diff --git a/metadata/md5-cache/app-crypt/certbot-apache-2.3.0 b/metadata/md5-cache/app-crypt/certbot-apache-2.3.0 deleted file mode 100644 index 01c7f22a5387..000000000000 --- a/metadata/md5-cache/app-crypt/certbot-apache-2.3.0 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( dev-python/pytest[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( >=app-crypt/acme-2.3.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=app-crypt/certbot-2.3.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/python-augeas[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/wheel-0.38.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Apache plugin for Certbot (Let’s Encrypt client) -EAPI=8 -HOMEPAGE=https://github.com/certbot/certbot https://letsencrypt.org/ -INHERIT=distutils-r1 -IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=amd64 ~arm64 x86 -LICENSE=Apache-2.0 -RDEPEND=>=app-crypt/acme-2.3.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=app-crypt/certbot-2.3.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/python-augeas[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/certbot/certbot/archive/v2.3.0.tar.gz -> certbot-2.3.0.gh.tar.gz -_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=21542bd1e7f5078c1bddd85e5463e2d9 diff --git a/metadata/md5-cache/app-crypt/certbot-nginx-2.3.0 b/metadata/md5-cache/app-crypt/certbot-nginx-2.3.0 deleted file mode 100644 index e63ea7accd4c..000000000000 --- a/metadata/md5-cache/app-crypt/certbot-nginx-2.3.0 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( dev-python/pytest[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( >=app-crypt/acme-2.3.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=app-crypt/certbot-2.3.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pyopenssl-17.5.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pyparsing-2.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/wheel-0.38.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Nginx plugin for Certbot (Let’s Encrypt client) -EAPI=8 -HOMEPAGE=https://github.com/certbot/certbot https://letsencrypt.org/ -INHERIT=distutils-r1 -IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=amd64 ~arm ~arm64 ~ppc64 ~riscv x86 -LICENSE=Apache-2.0 -RDEPEND=>=app-crypt/acme-2.3.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=app-crypt/certbot-2.3.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pyopenssl-17.5.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pyparsing-2.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/certbot/certbot/archive/v2.3.0.tar.gz -> certbot-2.3.0.gh.tar.gz -_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=de749fe266395ab260e85f7e8aeae633 diff --git a/metadata/md5-cache/app-crypt/cfssl-1.4.1 b/metadata/md5-cache/app-crypt/cfssl-1.4.1 index f1bdf74f452a..6567d24ea094 100644 --- a/metadata/md5-cache/app-crypt/cfssl-1.4.1 +++ b/metadata/md5-cache/app-crypt/cfssl-1.4.1 @@ -11,5 +11,5 @@ RDEPEND=!!dev-lang/mono RESTRICT=strip SLOT=0 SRC_URI=https://github.com/cloudflare/cfssl/archive/v1.4.1.tar.gz -> cfssl-1.4.1.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=62c47e123a27616e7d09bbe118ad2d35 diff --git a/metadata/md5-cache/app-crypt/cfssl-1.6.0 b/metadata/md5-cache/app-crypt/cfssl-1.6.0 index a525870ffaeb..d14d21a29866 100644 --- a/metadata/md5-cache/app-crypt/cfssl-1.6.0 +++ b/metadata/md5-cache/app-crypt/cfssl-1.6.0 @@ -11,5 +11,5 @@ RDEPEND=!!dev-lang/mono RESTRICT=strip SLOT=0 SRC_URI=https://github.com/cloudflare/cfssl/archive/v1.6.0.tar.gz -> cfssl-1.6.0.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=b17111976a6b62cbda217890ed522a76 diff --git a/metadata/md5-cache/app-crypt/gnupg-2.2.41 b/metadata/md5-cache/app-crypt/gnupg-2.2.41 index a3e5208e583f..9eb575b4d990 100644 --- a/metadata/md5-cache/app-crypt/gnupg-2.2.41 +++ b/metadata/md5-cache/app-crypt/gnupg-2.2.41 @@ -1,6 +1,6 @@ BDEPEND=virtual/pkgconfig doc? ( sys-apps/texinfo ) nls? ( sys-devel/gettext ) verify-sig? ( sec-keys/openpgp-keys-gnupg ) virtual/pkgconfig verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=>=dev-libs/libassuan-2.5.0 >=dev-libs/libgcrypt-1.8.0:= >=dev-libs/libgpg-error-1.29 >=dev-libs/libksba-1.3.5 >=dev-libs/npth-1.2 >=net-misc/curl-7.10 sys-libs/zlib bzip2? ( app-arch/bzip2 ) ldap? ( net-nds/openldap:= ) readline? ( sys-libs/readline:= ) smartcard? ( usb? ( virtual/libusb:1 ) ) ssl? ( >=net-libs/gnutls-3.0:= ) tofu? ( >=dev-db/sqlite-3.7 ) +DEPEND=>=dev-libs/libassuan-2.5.0 >=dev-libs/libgcrypt-1.8.0:= >=dev-libs/libgpg-error-1.38 >=dev-libs/libksba-1.3.5 >=dev-libs/npth-1.2 >=net-misc/curl-7.10 sys-libs/zlib bzip2? ( app-arch/bzip2 ) ldap? ( net-nds/openldap:= ) readline? ( sys-libs/readline:= ) smartcard? ( usb? ( virtual/libusb:1 ) ) ssl? ( >=net-libs/gnutls-3.0:= ) tofu? ( >=dev-db/sqlite-3.7 ) DESCRIPTION=The GNU Privacy Guard, a GPL OpenPGP implementation EAPI=8 HOMEPAGE=https://gnupg.org/ @@ -8,9 +8,9 @@ INHERIT=flag-o-matic out-of-source multiprocessing systemd toolchain-funcs verif IUSE=bzip2 doc ldap nls readline selinux +smartcard ssl test tofu tools usb user-socket wks-server 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 LICENSE=GPL-3+ -RDEPEND=>=dev-libs/libassuan-2.5.0 >=dev-libs/libgcrypt-1.8.0:= >=dev-libs/libgpg-error-1.29 >=dev-libs/libksba-1.3.5 >=dev-libs/npth-1.2 >=net-misc/curl-7.10 sys-libs/zlib bzip2? ( app-arch/bzip2 ) ldap? ( net-nds/openldap:= ) readline? ( sys-libs/readline:= ) smartcard? ( usb? ( virtual/libusb:1 ) ) ssl? ( >=net-libs/gnutls-3.0:= ) tofu? ( >=dev-db/sqlite-3.7 ) app-crypt/pinentry nls? ( virtual/libintl ) selinux? ( sec-policy/selinux-gpg ) wks-server? ( virtual/mta ) +RDEPEND=>=dev-libs/libassuan-2.5.0 >=dev-libs/libgcrypt-1.8.0:= >=dev-libs/libgpg-error-1.38 >=dev-libs/libksba-1.3.5 >=dev-libs/npth-1.2 >=net-misc/curl-7.10 sys-libs/zlib bzip2? ( app-arch/bzip2 ) ldap? ( net-nds/openldap:= ) readline? ( sys-libs/readline:= ) smartcard? ( usb? ( virtual/libusb:1 ) ) ssl? ( >=net-libs/gnutls-3.0:= ) tofu? ( >=dev-db/sqlite-3.7 ) app-crypt/pinentry nls? ( virtual/libintl ) selinux? ( sec-policy/selinux-gpg ) wks-server? ( virtual/mta ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://gnupg/gnupg/gnupg-2.2.41.tar.bz2 verify-sig? ( mirror://gnupg/gnupg/gnupg-2.2.41.tar.bz2.sig ) _eclasses_=flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 out-of-source 15ce2b6ae214f3abe70892ce1e517abd systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e verify-sig ed3712fa46ee0fdc2dbbad539e20ff26 -_md5_=2476cc927601547ba759f06ae2a86ae9 +_md5_=970035db9a41428876f3773f5e02c4de diff --git a/metadata/md5-cache/app-crypt/kbfs-6.0.2 b/metadata/md5-cache/app-crypt/kbfs-6.0.2 index dafbdefb9984..545b1784f527 100644 --- a/metadata/md5-cache/app-crypt/kbfs-6.0.2 +++ b/metadata/md5-cache/app-crypt/kbfs-6.0.2 @@ -10,5 +10,5 @@ RDEPEND=app-crypt/gnupg sys-fs/fuse:0= RESTRICT=strip SLOT=0 SRC_URI=https://github.com/keybase/client/archive/v6.0.2.tar.gz -> kbfs-6.0.2.tar.gz https://dev.gentoo.org/~nicolasbock/kbfs-6.0.2-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=7086893cfec607c91dd3abedb43941e4 diff --git a/metadata/md5-cache/app-crypt/kbfs-9999 b/metadata/md5-cache/app-crypt/kbfs-9999 index a159f14d1010..13303ea465ad 100644 --- a/metadata/md5-cache/app-crypt/kbfs-9999 +++ b/metadata/md5-cache/app-crypt/kbfs-9999 @@ -9,5 +9,5 @@ PROPERTIES=live RDEPEND=app-crypt/gnupg sys-fs/fuse:0= RESTRICT=strip SLOT=0 -_eclasses_=git-r3 27e13c09a4c7e4c78ac812f74727e676 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=git-r3 27e13c09a4c7e4c78ac812f74727e676 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=7086893cfec607c91dd3abedb43941e4 diff --git a/metadata/md5-cache/app-crypt/keybase-6.0.2 b/metadata/md5-cache/app-crypt/keybase-6.0.2 index 135ceb93ebb8..cbd1fc18e62b 100644 --- a/metadata/md5-cache/app-crypt/keybase-6.0.2 +++ b/metadata/md5-cache/app-crypt/keybase-6.0.2 @@ -11,5 +11,5 @@ RDEPEND=app-crypt/gnupg fuse? ( ~app-crypt/kbfs-6.0.2 ) RESTRICT=strip SLOT=0 SRC_URI=https://github.com/keybase/client/archive/v6.0.2.tar.gz -> keybase-6.0.2.tar.gz https://dev.gentoo.org/~nicolasbock/keybase-6.0.2-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=cb27f35502d1cb641a9a46a50e1e2f04 diff --git a/metadata/md5-cache/app-crypt/keybase-9999 b/metadata/md5-cache/app-crypt/keybase-9999 index 66b727468255..945824ba903b 100644 --- a/metadata/md5-cache/app-crypt/keybase-9999 +++ b/metadata/md5-cache/app-crypt/keybase-9999 @@ -10,5 +10,5 @@ PROPERTIES=live RDEPEND=app-crypt/gnupg fuse? ( ~app-crypt/kbfs-9999 ) RESTRICT=strip SLOT=0 -_eclasses_=git-r3 27e13c09a4c7e4c78ac812f74727e676 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=git-r3 27e13c09a4c7e4c78ac812f74727e676 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=cb27f35502d1cb641a9a46a50e1e2f04 diff --git a/metadata/md5-cache/app-crypt/sbctl-0.10 b/metadata/md5-cache/app-crypt/sbctl-0.10 index c6bc60a692de..e7c47233a291 100644 --- a/metadata/md5-cache/app-crypt/sbctl-0.10 +++ b/metadata/md5-cache/app-crypt/sbctl-0.10 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 BSD BSD-2 MIT RESTRICT=strip SLOT=0 SRC_URI=https://github.com/Foxboron/sbctl/releases/download/0.10/sbctl-0.10.tar.gz https://dev.gentoo.org/~ajak/distfiles/app-crypt/sbctl/sbctl-0.10-deps.tar.xz verify-sig? ( https://github.com/Foxboron/sbctl/releases/download/0.10/sbctl-0.10.tar.gz.sig ) -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e verify-sig ed3712fa46ee0fdc2dbbad539e20ff26 +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e verify-sig ed3712fa46ee0fdc2dbbad539e20ff26 _md5_=51773c1a048b2ab636df9048fafaeb56 diff --git a/metadata/md5-cache/app-crypt/sbctl-0.11 b/metadata/md5-cache/app-crypt/sbctl-0.11 index 3881c8e7bc33..3ecc2a0cf936 100644 --- a/metadata/md5-cache/app-crypt/sbctl-0.11 +++ b/metadata/md5-cache/app-crypt/sbctl-0.11 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 BSD BSD-2 MIT RESTRICT=strip SLOT=0 SRC_URI=https://github.com/Foxboron/sbctl/releases/download/0.11/sbctl-0.11.tar.gz https://dev.gentoo.org/~ajak/distfiles/app-crypt/sbctl/sbctl-0.11-deps.tar.xz verify-sig? ( https://github.com/Foxboron/sbctl/releases/download/0.11/sbctl-0.11.tar.gz.sig ) -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e verify-sig ed3712fa46ee0fdc2dbbad539e20ff26 +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e verify-sig ed3712fa46ee0fdc2dbbad539e20ff26 _md5_=8ccb8db740e4e82eaec839550564bd86 diff --git a/metadata/md5-cache/app-crypt/yubihsm-connector-3.0.4 b/metadata/md5-cache/app-crypt/yubihsm-connector-3.0.4 index ca926641b360..ac1420993c09 100644 --- a/metadata/md5-cache/app-crypt/yubihsm-connector-3.0.4 +++ b/metadata/md5-cache/app-crypt/yubihsm-connector-3.0.4 @@ -10,5 +10,5 @@ RDEPEND=virtual/libusb:1 virtual/udev acct-user/yubihsm-connector acct-group/yub RESTRICT=test strip SLOT=0 SRC_URI=https://developers.yubico.com/yubihsm-connector/Releases/yubihsm-connector-3.0.4.tar.gz https://dev.gentoo.org/~zx2c4/distfiles/yubihsm-connector-3.0.4-vendor.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e udev eec0bbab06977f1cfc5597269c1fa152 +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e udev eec0bbab06977f1cfc5597269c1fa152 _md5_=32ee1c8dfd9fc22e864fc3294eb789d3 diff --git a/metadata/md5-cache/app-doc/Manifest.gz b/metadata/md5-cache/app-doc/Manifest.gz index 3a2e43fe4fbb..8b5d1047944a 100644 Binary files a/metadata/md5-cache/app-doc/Manifest.gz and b/metadata/md5-cache/app-doc/Manifest.gz differ diff --git a/metadata/md5-cache/app-doc/casting-spels-emacs-19-r3 b/metadata/md5-cache/app-doc/casting-spels-emacs-19-r3 index 5845aa25f28f..7d5602ee02cf 100644 --- a/metadata/md5-cache/app-doc/casting-spels-emacs-19-r3 +++ b/metadata/md5-cache/app-doc/casting-spels-emacs-19-r3 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ FDL-1.2 RDEPEND=>=app-editors/emacs-23.1:* SLOT=0 SRC_URI=https://casting-spels-emacs.googlecode.com/files/casting-spels-emacs-v19.zip -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=ead8e6a1d585bf12fca4ecd5796d9d1a diff --git a/metadata/md5-cache/app-doc/eclass-manpages-20230222 b/metadata/md5-cache/app-doc/eclass-manpages-20230417 similarity index 91% rename from metadata/md5-cache/app-doc/eclass-manpages-20230222 rename to metadata/md5-cache/app-doc/eclass-manpages-20230417 index c8d8c3264643..e6b70d13164e 100644 --- a/metadata/md5-cache/app-doc/eclass-manpages-20230222 +++ b/metadata/md5-cache/app-doc/eclass-manpages-20230417 @@ -6,5 +6,5 @@ HOMEPAGE=https://github.com/projg2/eclass-to-manpage KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris LICENSE=GPL-2 SLOT=0 -SRC_URI=https://dev.gentoo.org/~sam/distfiles/app-doc/eclass-manpages/eclass-manpages-20230222.tar.xz +SRC_URI=https://dev.gentoo.org/~sam/distfiles/app-doc/eclass-manpages/eclass-manpages-20230417.tar.xz _md5_=febb1e6a382a091074322e04bf359a95 diff --git a/metadata/md5-cache/app-editors/Manifest.gz b/metadata/md5-cache/app-editors/Manifest.gz index acbabcca0785..6ded9c94603a 100644 Binary files a/metadata/md5-cache/app-editors/Manifest.gz and b/metadata/md5-cache/app-editors/Manifest.gz differ diff --git a/metadata/md5-cache/app-editors/emacs-25.3-r15 b/metadata/md5-cache/app-editors/emacs-25.3-r15 index bc1eb2a9a8c1..a0bcf8c62836 100644 --- a/metadata/md5-cache/app-editors/emacs-25.3-r15 +++ b/metadata/md5-cache/app-editors/emacs-25.3-r15 @@ -12,5 +12,5 @@ LICENSE=GPL-3+ FDL-1.3+ BSD HPND MIT W3C unicode PSF-2 RDEPEND=acct-group/mail app-emacs/emacs-common[games?,gui(-)?] net-libs/liblockfile sys-libs/ncurses:0= acl? ( virtual/acl ) alsa? ( media-libs/alsa-lib ) dbus? ( sys-apps/dbus ) games? ( acct-group/gamestat ) gpm? ( sys-libs/gpm ) !inotify? ( gfile? ( >=dev-libs/glib-2.28.6 ) ) kerberos? ( virtual/krb5 ) libxml2? ( >=dev-libs/libxml2-2.2.0 ) selinux? ( sys-libs/libselinux ) ssl? ( net-libs/gnutls:0= ) 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 gsettings? ( >=dev-libs/glib-2.28.6 ) gif? ( media-libs/giflib:0= ) jpeg? ( media-libs/libjpeg-turbo:0= ) png? ( >=media-libs/libpng-1.4:0= ) svg? ( >=gnome-base/librsvg-2.0 ) tiff? ( media-libs/tiff:= ) 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[X] ) m17n-lib? ( >=dev-libs/libotf-0.9.4 >=dev-libs/m17n-lib-1.5.1 ) ) gtk? ( x11-libs/gtk+:3 ) !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-eselect/eselect-emacs SLOT=25 SRC_URI=mirror://gnu/emacs/emacs-25.3.tar.xz https://dev.gentoo.org/~ulm/emacs/emacs-25.3-patches-4.tar.xz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=9dafdda465ad59f85a2125c3bf2c0b2a diff --git a/metadata/md5-cache/app-editors/emacs-25.3-r16 b/metadata/md5-cache/app-editors/emacs-25.3-r16 index acb7a44fe480..a6db29984380 100644 --- a/metadata/md5-cache/app-editors/emacs-25.3-r16 +++ b/metadata/md5-cache/app-editors/emacs-25.3-r16 @@ -12,5 +12,5 @@ LICENSE=GPL-3+ FDL-1.3+ BSD HPND MIT W3C unicode PSF-2 RDEPEND=acct-group/mail app-emacs/emacs-common[games?,gui(-)?] net-libs/liblockfile sys-libs/ncurses:0= acl? ( virtual/acl ) alsa? ( media-libs/alsa-lib ) dbus? ( sys-apps/dbus ) games? ( acct-group/gamestat ) gpm? ( sys-libs/gpm ) !inotify? ( gfile? ( >=dev-libs/glib-2.28.6 ) ) kerberos? ( virtual/krb5 ) libxml2? ( >=dev-libs/libxml2-2.2.0 ) selinux? ( sys-libs/libselinux ) ssl? ( net-libs/gnutls:0= ) 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 gsettings? ( >=dev-libs/glib-2.28.6 ) gif? ( media-libs/giflib:0= ) jpeg? ( media-libs/libjpeg-turbo:0= ) png? ( >=media-libs/libpng-1.4:0= ) svg? ( >=gnome-base/librsvg-2.0 ) tiff? ( media-libs/tiff:= ) 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[X] ) m17n-lib? ( >=dev-libs/libotf-0.9.4 >=dev-libs/m17n-lib-1.5.1 ) ) gtk? ( x11-libs/gtk+:3 ) !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-eselect/eselect-emacs SLOT=25 SRC_URI=mirror://gnu/emacs/emacs-25.3.tar.xz https://dev.gentoo.org/~ulm/emacs/emacs-25.3-patches-5.tar.xz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=a818d295ba742470832b0195cec55d56 diff --git a/metadata/md5-cache/app-editors/emacs-25.3-r18 b/metadata/md5-cache/app-editors/emacs-25.3-r18 index e020d0c5e4d5..1bdcc0a029d8 100644 --- a/metadata/md5-cache/app-editors/emacs-25.3-r18 +++ b/metadata/md5-cache/app-editors/emacs-25.3-r18 @@ -12,5 +12,5 @@ LICENSE=GPL-3+ FDL-1.3+ BSD HPND MIT W3C unicode PSF-2 RDEPEND=acct-group/mail app-emacs/emacs-common[games?,gui(-)?] net-libs/liblockfile sys-libs/ncurses:0= acl? ( virtual/acl ) alsa? ( media-libs/alsa-lib ) dbus? ( sys-apps/dbus ) games? ( acct-group/gamestat ) gpm? ( sys-libs/gpm ) !inotify? ( gfile? ( >=dev-libs/glib-2.28.6 ) ) kerberos? ( virtual/krb5 ) libxml2? ( >=dev-libs/libxml2-2.2.0 ) selinux? ( sys-libs/libselinux ) ssl? ( net-libs/gnutls:0= ) 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 gsettings? ( >=dev-libs/glib-2.28.6 ) gif? ( media-libs/giflib:0= ) jpeg? ( media-libs/libjpeg-turbo:0= ) png? ( >=media-libs/libpng-1.4:0= ) svg? ( >=gnome-base/librsvg-2.0 ) tiff? ( media-libs/tiff:= ) 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[X] ) m17n-lib? ( >=dev-libs/libotf-0.9.4 >=dev-libs/m17n-lib-1.5.1 ) ) gtk? ( x11-libs/gtk+:3 ) !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-eselect/eselect-emacs SLOT=25 SRC_URI=mirror://gnu/emacs/emacs-25.3.tar.xz https://dev.gentoo.org/~ulm/emacs/emacs-25.3-patches-5.tar.xz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=709cbb6e304e752baff7014149c72e60 diff --git a/metadata/md5-cache/app-editors/emacs-26.3-r11 b/metadata/md5-cache/app-editors/emacs-26.3-r11 index f38e43dcf67e..d1ae12aba1a3 100644 --- a/metadata/md5-cache/app-editors/emacs-26.3-r11 +++ b/metadata/md5-cache/app-editors/emacs-26.3-r11 @@ -12,5 +12,5 @@ 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 ) gpm? ( sys-libs/gpm ) !inotify? ( gfile? ( >=dev-libs/glib-2.28.6 ) ) 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 gsettings? ( >=dev-libs/glib-2.28.6 ) gif? ( media-libs/giflib:0= ) jpeg? ( media-libs/libjpeg-turbo:0= ) png? ( >=media-libs/libpng-1.4:0= ) svg? ( >=gnome-base/librsvg-2.0 ) tiff? ( media-libs/tiff:= ) 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[X] ) 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-eselect/eselect-emacs SLOT=26 SRC_URI=mirror://gnu/emacs/emacs-26.3.tar.xz https://dev.gentoo.org/~ulm/emacs/emacs-26.3-patches-3.tar.xz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=3864a0ea76b7d2c3fbe2890b18c4cd6b diff --git a/metadata/md5-cache/app-editors/emacs-26.3-r13 b/metadata/md5-cache/app-editors/emacs-26.3-r13 index 39800cc2e77f..44a4673c3101 100644 --- a/metadata/md5-cache/app-editors/emacs-26.3-r13 +++ b/metadata/md5-cache/app-editors/emacs-26.3-r13 @@ -12,5 +12,5 @@ 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 ) gpm? ( sys-libs/gpm ) !inotify? ( gfile? ( >=dev-libs/glib-2.28.6 ) ) 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 gsettings? ( >=dev-libs/glib-2.28.6 ) gif? ( media-libs/giflib:0= ) jpeg? ( media-libs/libjpeg-turbo:0= ) png? ( >=media-libs/libpng-1.4:0= ) svg? ( >=gnome-base/librsvg-2.0 ) tiff? ( media-libs/tiff:= ) 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[X] ) 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.1= 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-eselect/eselect-emacs SLOT=26 SRC_URI=mirror://gnu/emacs/emacs-26.3.tar.xz https://dev.gentoo.org/~ulm/emacs/emacs-26.3-patches-5.tar.xz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=43ff5a5f71bcd7e48085596f39db3c06 diff --git a/metadata/md5-cache/app-editors/emacs-26.3-r15 b/metadata/md5-cache/app-editors/emacs-26.3-r15 index c97cfc836e5b..b1405322497c 100644 --- a/metadata/md5-cache/app-editors/emacs-26.3-r15 +++ b/metadata/md5-cache/app-editors/emacs-26.3-r15 @@ -12,5 +12,5 @@ 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 ) gpm? ( sys-libs/gpm ) !inotify? ( gfile? ( >=dev-libs/glib-2.28.6 ) ) 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 gsettings? ( >=dev-libs/glib-2.28.6 ) gif? ( media-libs/giflib:0= ) jpeg? ( media-libs/libjpeg-turbo:0= ) png? ( >=media-libs/libpng-1.4:0= ) svg? ( >=gnome-base/librsvg-2.0 ) tiff? ( media-libs/tiff:= ) 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[X] ) 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.1= 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-eselect/eselect-emacs SLOT=26 SRC_URI=mirror://gnu/emacs/emacs-26.3.tar.xz https://dev.gentoo.org/~ulm/emacs/emacs-26.3-patches-5.tar.xz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=5da3b8a1372d22a43afdbc505d47715c diff --git a/metadata/md5-cache/app-editors/emacs-27.2-r11 b/metadata/md5-cache/app-editors/emacs-27.2-r11 index dfcb7145a036..cf13f521dc20 100644 --- a/metadata/md5-cache/app-editors/emacs-27.2-r11 +++ b/metadata/md5-cache/app-editors/emacs-27.2-r11 @@ -13,5 +13,5 @@ RDEPEND=app-emacs/emacs-common[games?,gui(-)?] sys-libs/ncurses:0= acl? ( virtua RESTRICT=test SLOT=27 SRC_URI=mirror://gnu/emacs/emacs-27.2.tar.xz https://dev.gentoo.org/~ulm/emacs/emacs-27.2-patches-6.tar.xz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=26b1d94365462a4a133374264e135522 diff --git a/metadata/md5-cache/app-editors/emacs-27.2-r13 b/metadata/md5-cache/app-editors/emacs-27.2-r13 index 368a3f2696d1..8206e77bd202 100644 --- a/metadata/md5-cache/app-editors/emacs-27.2-r13 +++ b/metadata/md5-cache/app-editors/emacs-27.2-r13 @@ -13,5 +13,5 @@ RDEPEND=app-emacs/emacs-common[games?,gui(-)?] sys-libs/ncurses:0= acl? ( virtua RESTRICT=test SLOT=27 SRC_URI=mirror://gnu/emacs/emacs-27.2.tar.xz https://dev.gentoo.org/~ulm/emacs/emacs-27.2-patches-6.tar.xz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=082c30c108044b18b9d9a2aa0cc6371b diff --git a/metadata/md5-cache/app-editors/emacs-27.2-r9 b/metadata/md5-cache/app-editors/emacs-27.2-r9 index 206010ac6599..1f6549a043a6 100644 --- a/metadata/md5-cache/app-editors/emacs-27.2-r9 +++ b/metadata/md5-cache/app-editors/emacs-27.2-r9 @@ -13,5 +13,5 @@ RDEPEND=app-emacs/emacs-common[games?,gui(-)?] sys-libs/ncurses:0= acl? ( virtua RESTRICT=test SLOT=27 SRC_URI=mirror://gnu/emacs/emacs-27.2.tar.xz https://dev.gentoo.org/~ulm/emacs/emacs-27.2-patches-4.tar.xz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=59de4452d5c0608d89f0a66306a00030 diff --git a/metadata/md5-cache/app-editors/emacs-28.2-r4 b/metadata/md5-cache/app-editors/emacs-28.2-r4 index 24ca91fd663c..10f45bd5889c 100644 --- a/metadata/md5-cache/app-editors/emacs-28.2-r4 +++ b/metadata/md5-cache/app-editors/emacs-28.2-r4 @@ -12,5 +12,5 @@ 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 ) ) jit? ( sys-devel/gcc:=[jit(-)] sys-libs/zlib ) 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 gsettings? ( >=dev-libs/glib-2.28.6 ) gif? ( media-libs/giflib:0= ) jpeg? ( media-libs/libjpeg-turbo:0= ) png? ( >=media-libs/libpng-1.4:0= ) svg? ( >=gnome-base/librsvg-2.0 ) tiff? ( media-libs/tiff:= ) 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[X] ) 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-eselect/eselect-emacs SLOT=28 SRC_URI=mirror://gnu/emacs/emacs-28.2.tar.xz https://dev.gentoo.org/~ulm/emacs/emacs-28.2-patches-1.tar.xz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=5dd5fd2955bca9bd94ee146bac8a2753 diff --git a/metadata/md5-cache/app-editors/emacs-28.2-r6 b/metadata/md5-cache/app-editors/emacs-28.2-r6 index b38f922a19a9..7e9b0ae84536 100644 --- a/metadata/md5-cache/app-editors/emacs-28.2-r6 +++ b/metadata/md5-cache/app-editors/emacs-28.2-r6 @@ -12,5 +12,5 @@ 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 ) ) jit? ( sys-devel/gcc:=[jit(-)] sys-libs/zlib ) 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 gsettings? ( >=dev-libs/glib-2.28.6 ) gif? ( media-libs/giflib:0= ) jpeg? ( media-libs/libjpeg-turbo:0= ) png? ( >=media-libs/libpng-1.4:0= ) svg? ( >=gnome-base/librsvg-2.0 ) tiff? ( media-libs/tiff:= ) 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[X] ) 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.1= 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-eselect/eselect-emacs SLOT=28 SRC_URI=mirror://gnu/emacs/emacs-28.2.tar.xz https://dev.gentoo.org/~ulm/emacs/emacs-28.2-patches-3.tar.xz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=40466f1e72c08081a99b5c98859ee0b2 diff --git a/metadata/md5-cache/app-editors/emacs-28.2-r8 b/metadata/md5-cache/app-editors/emacs-28.2-r8 index d42a9bdd1dcd..6d69953111a2 100644 --- a/metadata/md5-cache/app-editors/emacs-28.2-r8 +++ b/metadata/md5-cache/app-editors/emacs-28.2-r8 @@ -12,5 +12,5 @@ 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 ) ) jit? ( sys-devel/gcc:=[jit(-)] sys-libs/zlib ) 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 gsettings? ( >=dev-libs/glib-2.28.6 ) gif? ( media-libs/giflib:0= ) jpeg? ( media-libs/libjpeg-turbo:0= ) png? ( >=media-libs/libpng-1.4:0= ) svg? ( >=gnome-base/librsvg-2.0 ) tiff? ( media-libs/tiff:= ) 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[X] ) 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.1= 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-eselect/eselect-emacs SLOT=28 SRC_URI=mirror://gnu/emacs/emacs-28.2.tar.xz https://dev.gentoo.org/~ulm/emacs/emacs-28.2-patches-3.tar.xz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=463cd57c25f989a483bcab847d4b8971 diff --git a/metadata/md5-cache/app-editors/emacs-28.3_rc1-r2 b/metadata/md5-cache/app-editors/emacs-28.3_rc1-r2 index 6b25366a8fe6..90569d23c6ba 100644 --- a/metadata/md5-cache/app-editors/emacs-28.3_rc1-r2 +++ b/metadata/md5-cache/app-editors/emacs-28.3_rc1-r2 @@ -12,5 +12,5 @@ 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 ) ) jit? ( sys-devel/gcc:=[jit(-)] sys-libs/zlib ) 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 gsettings? ( >=dev-libs/glib-2.28.6 ) gif? ( media-libs/giflib:0= ) jpeg? ( media-libs/libjpeg-turbo:0= ) png? ( >=media-libs/libpng-1.4:0= ) svg? ( >=gnome-base/librsvg-2.0 ) tiff? ( media-libs/tiff:= ) 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[X] ) 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.1= 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-eselect/eselect-emacs SLOT=28 SRC_URI=https://alpha.gnu.org/gnu/emacs/pretest/emacs-28.3-rc1.tar.xz https://dev.gentoo.org/~ulm/emacs/emacs-28.2-patches-2.tar.xz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=a14e0b69e37c80e2d8cd3da7d20d072d diff --git a/metadata/md5-cache/app-editors/emacs-29.0.90 b/metadata/md5-cache/app-editors/emacs-29.0.90 index 84bcfc51ee9e..6a61fb2f6487 100644 --- a/metadata/md5-cache/app-editors/emacs-29.0.90 +++ b/metadata/md5-cache/app-editors/emacs-29.0.90 @@ -12,5 +12,5 @@ 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 ) ) jit? ( sys-devel/gcc:=[jit(-)] sys-libs/zlib ) 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 ) sqlite? ( dev-db/sqlite:3 ) ssl? ( net-libs/gnutls:0= ) systemd? ( sys-apps/systemd ) tree-sitter? ( dev-libs/tree-sitter ) zlib? ( sys-libs/zlib ) gui? ( gif? ( media-libs/giflib:0= ) jpeg? ( media-libs/libjpeg-turbo:0= ) png? ( >=media-libs/libpng-1.4:0= ) svg? ( >=gnome-base/librsvg-2.0 ) tiff? ( media-libs/tiff:= ) webp? ( media-libs/libwebp:0= ) imagemagick? ( >=media-gfx/imagemagick-6.6.2:0= ) !aqua? ( gsettings? ( >=dev-libs/glib-2.28.6 ) gtk? ( !X? ( media-libs/fontconfig media-libs/freetype >=x11-libs/cairo-1.12.18 x11-libs/gtk+:3 harfbuzz? ( media-libs/harfbuzz:0= ) m17n-lib? ( >=dev-libs/libotf-0.9.4 >=dev-libs/m17n-lib-1.5.1 ) xwidgets? ( net-libs/webkit-gtk:4.1= ) ) ) !gtk? ( 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 xpm? ( x11-libs/libXpm ) xft? ( media-libs/fontconfig media-libs/freetype x11-libs/libXft x11-libs/libXrender cairo? ( >=x11-libs/cairo-1.12.18[X] ) 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.1= 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 ) ) ) ) ) X? ( 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 xpm? ( x11-libs/libXpm ) xft? ( media-libs/fontconfig media-libs/freetype x11-libs/libXft x11-libs/libXrender cairo? ( >=x11-libs/cairo-1.12.18[X] ) 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.1= 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-eselect/eselect-emacs SLOT=29-vcs SRC_URI=https://alpha.gnu.org/gnu/emacs/pretest/emacs-29.0.90.tar.xz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=d5a9251c682145b6eb69afea4c3db969 diff --git a/metadata/md5-cache/app-editors/emacs-29.0.9999-r1 b/metadata/md5-cache/app-editors/emacs-29.0.9999-r1 index ddd0a5ba6495..b6ce5ad1ce39 100644 --- a/metadata/md5-cache/app-editors/emacs-29.0.9999-r1 +++ b/metadata/md5-cache/app-editors/emacs-29.0.9999-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-3+ FDL-1.3+ BSD HPND MIT W3C unicode PSF-2 PROPERTIES=live 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 ) ) jit? ( sys-devel/gcc:=[jit(-)] sys-libs/zlib ) 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 ) sqlite? ( dev-db/sqlite:3 ) ssl? ( net-libs/gnutls:0= ) systemd? ( sys-apps/systemd ) tree-sitter? ( dev-libs/tree-sitter ) zlib? ( sys-libs/zlib ) gui? ( gif? ( media-libs/giflib:0= ) jpeg? ( media-libs/libjpeg-turbo:0= ) png? ( >=media-libs/libpng-1.4:0= ) svg? ( >=gnome-base/librsvg-2.0 ) tiff? ( media-libs/tiff:= ) webp? ( media-libs/libwebp:0= ) imagemagick? ( >=media-gfx/imagemagick-6.6.2:0= ) !aqua? ( gsettings? ( >=dev-libs/glib-2.28.6 ) gtk? ( !X? ( media-libs/fontconfig media-libs/freetype >=x11-libs/cairo-1.12.18 x11-libs/gtk+:3 harfbuzz? ( media-libs/harfbuzz:0= ) m17n-lib? ( >=dev-libs/libotf-0.9.4 >=dev-libs/m17n-lib-1.5.1 ) xwidgets? ( net-libs/webkit-gtk:4.1= ) ) ) !gtk? ( 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 xpm? ( x11-libs/libXpm ) xft? ( media-libs/fontconfig media-libs/freetype x11-libs/libXft x11-libs/libXrender cairo? ( >=x11-libs/cairo-1.12.18[X] ) 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.1= 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 ) ) ) ) ) X? ( 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 xpm? ( x11-libs/libXpm ) xft? ( media-libs/fontconfig media-libs/freetype x11-libs/libXft x11-libs/libXrender cairo? ( >=x11-libs/cairo-1.12.18[X] ) 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.1= 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-eselect/eselect-emacs SLOT=29-vcs -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 git-r3 27e13c09a4c7e4c78ac812f74727e676 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 git-r3 27e13c09a4c7e4c78ac812f74727e676 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=d5a9251c682145b6eb69afea4c3db969 diff --git a/metadata/md5-cache/app-editors/emacs-30.0.9999 b/metadata/md5-cache/app-editors/emacs-30.0.9999 index 130514db7f2c..1bf28db9f1dc 100644 --- a/metadata/md5-cache/app-editors/emacs-30.0.9999 +++ b/metadata/md5-cache/app-editors/emacs-30.0.9999 @@ -11,5 +11,5 @@ LICENSE=GPL-3+ FDL-1.3+ BSD HPND MIT W3C unicode PSF-2 PROPERTIES=live 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 ) ) jit? ( sys-devel/gcc:=[jit(-)] sys-libs/zlib ) 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 ) sqlite? ( dev-db/sqlite:3 ) ssl? ( net-libs/gnutls:0= ) systemd? ( sys-apps/systemd ) tree-sitter? ( dev-libs/tree-sitter ) zlib? ( sys-libs/zlib ) gui? ( gif? ( media-libs/giflib:0= ) jpeg? ( media-libs/libjpeg-turbo:0= ) png? ( >=media-libs/libpng-1.4:0= ) svg? ( >=gnome-base/librsvg-2.0 ) tiff? ( media-libs/tiff:= ) webp? ( media-libs/libwebp:0= ) imagemagick? ( >=media-gfx/imagemagick-6.6.2:0= ) !aqua? ( gsettings? ( >=dev-libs/glib-2.28.6 ) gtk? ( !X? ( media-libs/fontconfig media-libs/freetype >=x11-libs/cairo-1.12.18 x11-libs/gtk+:3 harfbuzz? ( media-libs/harfbuzz:0= ) m17n-lib? ( >=dev-libs/libotf-0.9.4 >=dev-libs/m17n-lib-1.5.1 ) xwidgets? ( net-libs/webkit-gtk:4.1= ) ) ) !gtk? ( 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 xpm? ( x11-libs/libXpm ) xft? ( media-libs/fontconfig media-libs/freetype x11-libs/libXft x11-libs/libXrender cairo? ( >=x11-libs/cairo-1.12.18[X] ) 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.1= 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 ) ) ) ) ) X? ( 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 xpm? ( x11-libs/libXpm ) xft? ( media-libs/fontconfig media-libs/freetype x11-libs/libXft x11-libs/libXrender cairo? ( >=x11-libs/cairo-1.12.18[X] ) 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.1= 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-eselect/eselect-emacs SLOT=30-vcs -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 git-r3 27e13c09a4c7e4c78ac812f74727e676 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 git-r3 27e13c09a4c7e4c78ac812f74727e676 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=48391c217d333a9dd3f6f81392775efa diff --git a/metadata/md5-cache/app-editors/ghostwriter-23.03.90 b/metadata/md5-cache/app-editors/ghostwriter-23.03.90 new file mode 100644 index 000000000000..44d337840142 --- /dev/null +++ b/metadata/md5-cache/app-editors/ghostwriter-23.03.90 @@ -0,0 +1,17 @@ +BDEPEND=>=dev-qt/linguist-tools-5.15.5:5 virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 handbook? ( >=kde-frameworks/kdoctools-5.104.0:5 ) dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-5.104.0:5 +DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack +DEPEND=app-text/hunspell:= >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwebchannel-5.15.5:5 >=dev-qt/qtwebengine-5.15.5:5[widgets] >=dev-qt/qtwidgets-5.15.5:5 virtual/opengl >=dev-qt/qtconcurrent-5.15.5:5 dev-qt/qtcore:5 +DESCRIPTION=Cross-platform, aesthetic, distraction-free markdown editor +EAPI=8 +HOMEPAGE=https://ghostwriter.kde.org/ +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=ecm gear.kde.org +IUSE=debug +handbook +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3+ +RDEPEND=app-text/hunspell:= >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwebchannel-5.15.5:5 >=dev-qt/qtwebengine-5.15.5:5[widgets] >=dev-qt/qtwidgets-5.15.5:5 virtual/opengl || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 +RESTRICT=mirror +SLOT=0 +SRC_URI=mirror://kde/unstable/release-service/23.03.90/src/ghostwriter-23.03.90.tar.xz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c ecm 15862358f80ef4da6fd9d7dde64e9148 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc60243572471279b11120514b85b558 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e virtualx 817571665ee28575da44ee08135089e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=67901893e8f265e8610c0844f187c76e diff --git a/metadata/md5-cache/app-editors/micro-2.0.10 b/metadata/md5-cache/app-editors/micro-2.0.10 index 503cb399e809..5252b73ff065 100644 --- a/metadata/md5-cache/app-editors/micro-2.0.10 +++ b/metadata/md5-cache/app-editors/micro-2.0.10 @@ -10,5 +10,5 @@ LICENSE=MIT Apache-2.0 BSD MPL-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/zyedidia/micro/archive/v2.0.10.tar.gz -> micro-2.0.10.tar.gz mirror://goproxy//github.com/blang/semver/@v/v3.5.1+incompatible.zip -> github.com%2Fblang%2Fsemver%2F@v%2Fv3.5.1+incompatible.zip mirror://goproxy//github.com/blang/semver/@v/v3.5.1+incompatible.mod -> github.com%2Fblang%2Fsemver%2F@v%2Fv3.5.1+incompatible.mod mirror://goproxy//github.com/chzyer/logex/@v/v1.1.10.mod -> github.com%2Fchzyer%2Flogex%2F@v%2Fv1.1.10.mod mirror://goproxy//github.com/chzyer/readline/@v/v0.0.0-20180603132655-2972be24d48e.mod -> github.com%2Fchzyer%2Freadline%2F@v%2Fv0.0.0-20180603132655-2972be24d48e.mod mirror://goproxy//github.com/chzyer/test/@v/v0.0.0-20180213035817-a1ea475d72b1.mod -> github.com%2Fchzyer%2Ftest%2F@v%2Fv0.0.0-20180213035817-a1ea475d72b1.mod mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.0.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.1.zip -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.1.zip mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.1.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/dustin/go-humanize/@v/v1.0.0.zip -> github.com%2Fdustin%2Fgo-humanize%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/dustin/go-humanize/@v/v1.0.0.mod -> github.com%2Fdustin%2Fgo-humanize%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/gdamore/encoding/@v/v1.0.0.zip -> github.com%2Fgdamore%2Fencoding%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/gdamore/encoding/@v/v1.0.0.mod -> github.com%2Fgdamore%2Fencoding%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/go-errors/errors/@v/v1.0.1.zip -> github.com%2Fgo-errors%2Ferrors%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/go-errors/errors/@v/v1.0.1.mod -> github.com%2Fgo-errors%2Ferrors%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/kr/pretty/@v/v0.1.0.zip -> github.com%2Fkr%2Fpretty%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/kr/pretty/@v/v0.1.0.mod -> github.com%2Fkr%2Fpretty%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/kr/pty/@v/v1.1.1.mod -> github.com%2Fkr%2Fpty%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/kr/text/@v/v0.1.0.zip -> github.com%2Fkr%2Ftext%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/kr/text/@v/v0.1.0.mod -> github.com%2Fkr%2Ftext%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/lucasb-eyer/go-colorful/@v/v1.0.3.zip -> github.com%2Flucasb-eyer%2Fgo-colorful%2F@v%2Fv1.0.3.zip mirror://goproxy//github.com/lucasb-eyer/go-colorful/@v/v1.0.3.mod -> github.com%2Flucasb-eyer%2Fgo-colorful%2F@v%2Fv1.0.3.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.11.zip -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.11.zip mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.11.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.11.mod mirror://goproxy//github.com/mitchellh/go-homedir/@v/v1.1.0.zip -> github.com%2Fmitchellh%2Fgo-homedir%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/mitchellh/go-homedir/@v/v1.1.0.mod -> github.com%2Fmitchellh%2Fgo-homedir%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/pmezard/go-difflib/@v/v1.0.0.zip -> github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/pmezard/go-difflib/@v/v1.0.0.mod -> github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/rivo/uniseg/@v/v0.1.0.zip -> github.com%2Frivo%2Funiseg%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/rivo/uniseg/@v/v0.1.0.mod -> github.com%2Frivo%2Funiseg%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/robertkrimen/otto/@v/v0.0.0-20191219234010-c382bd3c16ff.zip -> github.com%2Frobertkrimen%2Fotto%2F@v%2Fv0.0.0-20191219234010-c382bd3c16ff.zip mirror://goproxy//github.com/robertkrimen/otto/@v/v0.0.0-20191219234010-c382bd3c16ff.mod -> github.com%2Frobertkrimen%2Fotto%2F@v%2Fv0.0.0-20191219234010-c382bd3c16ff.mod mirror://goproxy//github.com/sergi/go-diff/@v/v1.1.0.zip -> github.com%2Fsergi%2Fgo-diff%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/sergi/go-diff/@v/v1.1.0.mod -> github.com%2Fsergi%2Fgo-diff%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/stretchr/objx/@v/v0.1.0.mod -> github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.4.0.zip -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.4.0.zip mirror://goproxy//github.com/stretchr/testify/@v/v1.4.0.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/xo/terminfo/@v/v0.0.0-20200218205459-454e5b68f9e8.zip -> github.com%2Fxo%2Fterminfo%2F@v%2Fv0.0.0-20200218205459-454e5b68f9e8.zip mirror://goproxy//github.com/xo/terminfo/@v/v0.0.0-20200218205459-454e5b68f9e8.mod -> github.com%2Fxo%2Fterminfo%2F@v%2Fv0.0.0-20200218205459-454e5b68f9e8.mod mirror://goproxy//github.com/yuin/gopher-lua/@v/v0.0.0-20190206043414-8bfc7677f583.mod -> github.com%2Fyuin%2Fgopher-lua%2F@v%2Fv0.0.0-20190206043414-8bfc7677f583.mod mirror://goproxy//github.com/yuin/gopher-lua/@v/v0.0.0-20191220021717-ab39c6098bdb.zip -> github.com%2Fyuin%2Fgopher-lua%2F@v%2Fv0.0.0-20191220021717-ab39c6098bdb.zip mirror://goproxy//github.com/yuin/gopher-lua/@v/v0.0.0-20191220021717-ab39c6098bdb.mod -> github.com%2Fyuin%2Fgopher-lua%2F@v%2Fv0.0.0-20191220021717-ab39c6098bdb.mod mirror://goproxy//github.com/zyedidia/clipboard/@v/v1.0.3.zip -> github.com%2Fzyedidia%2Fclipboard%2F@v%2Fv1.0.3.zip mirror://goproxy//github.com/zyedidia/clipboard/@v/v1.0.3.mod -> github.com%2Fzyedidia%2Fclipboard%2F@v%2Fv1.0.3.mod mirror://goproxy//github.com/zyedidia/glob/@v/v0.0.0-20170209203856-dd4023a66dc3.zip -> github.com%2Fzyedidia%2Fglob%2F@v%2Fv0.0.0-20170209203856-dd4023a66dc3.zip mirror://goproxy//github.com/zyedidia/glob/@v/v0.0.0-20170209203856-dd4023a66dc3.mod -> github.com%2Fzyedidia%2Fglob%2F@v%2Fv0.0.0-20170209203856-dd4023a66dc3.mod mirror://goproxy//github.com/zyedidia/go-runewidth/@v/v0.0.12.zip -> github.com%2Fzyedidia%2Fgo-runewidth%2F@v%2Fv0.0.12.zip mirror://goproxy//github.com/zyedidia/go-runewidth/@v/v0.0.12.mod -> github.com%2Fzyedidia%2Fgo-runewidth%2F@v%2Fv0.0.12.mod mirror://goproxy//github.com/zyedidia/go-shellquote/@v/v0.0.0-20200613203517-eccd813c0655.zip -> github.com%2Fzyedidia%2Fgo-shellquote%2F@v%2Fv0.0.0-20200613203517-eccd813c0655.zip mirror://goproxy//github.com/zyedidia/go-shellquote/@v/v0.0.0-20200613203517-eccd813c0655.mod -> github.com%2Fzyedidia%2Fgo-shellquote%2F@v%2Fv0.0.0-20200613203517-eccd813c0655.mod mirror://goproxy//github.com/zyedidia/highlight/@v/v0.0.0-20170330143449-201131ce5cf5.zip -> github.com%2Fzyedidia%2Fhighlight%2F@v%2Fv0.0.0-20170330143449-201131ce5cf5.zip mirror://goproxy//github.com/zyedidia/highlight/@v/v0.0.0-20170330143449-201131ce5cf5.mod -> github.com%2Fzyedidia%2Fhighlight%2F@v%2Fv0.0.0-20170330143449-201131ce5cf5.mod mirror://goproxy//github.com/zyedidia/json5/@v/v0.0.0-20200102012142-2da050b1a98d.zip -> github.com%2Fzyedidia%2Fjson5%2F@v%2Fv0.0.0-20200102012142-2da050b1a98d.zip mirror://goproxy//github.com/zyedidia/json5/@v/v0.0.0-20200102012142-2da050b1a98d.mod -> github.com%2Fzyedidia%2Fjson5%2F@v%2Fv0.0.0-20200102012142-2da050b1a98d.mod mirror://goproxy//github.com/zyedidia/poller/@v/v1.0.1.zip -> github.com%2Fzyedidia%2Fpoller%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/zyedidia/poller/@v/v1.0.1.mod -> github.com%2Fzyedidia%2Fpoller%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/zyedidia/pty/@v/v1.1.15.zip -> github.com%2Fzyedidia%2Fpty%2F@v%2Fv1.1.15.zip mirror://goproxy//github.com/zyedidia/pty/@v/v1.1.15.mod -> github.com%2Fzyedidia%2Fpty%2F@v%2Fv1.1.15.mod mirror://goproxy//github.com/zyedidia/tcell/v2/@v/v2.0.8.zip -> github.com%2Fzyedidia%2Ftcell%2Fv2%2F@v%2Fv2.0.8.zip mirror://goproxy//github.com/zyedidia/tcell/v2/@v/v2.0.8.mod -> github.com%2Fzyedidia%2Ftcell%2Fv2%2F@v%2Fv2.0.8.mod mirror://goproxy//github.com/zyedidia/terminal/@v/v0.0.0-20180726154117-533c623e2415.zip -> github.com%2Fzyedidia%2Fterminal%2F@v%2Fv0.0.0-20180726154117-533c623e2415.zip mirror://goproxy//github.com/zyedidia/terminal/@v/v0.0.0-20180726154117-533c623e2415.mod -> github.com%2Fzyedidia%2Fterminal%2F@v%2Fv0.0.0-20180726154117-533c623e2415.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190204203706-41f3e6584952.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190204203706-41f3e6584952.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190626150813-e07cf5db2756.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190626150813-e07cf5db2756.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191026070338-33540a1f6037.zip -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191026070338-33540a1f6037.zip mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191026070338-33540a1f6037.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191026070338-33540a1f6037.mod mirror://goproxy//golang.org/x/text/@v/v0.3.0.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.0.mod mirror://goproxy//golang.org/x/text/@v/v0.3.2.zip -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.2.zip mirror://goproxy//golang.org/x/text/@v/v0.3.2.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.2.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20180917221912-90fa682c2a6e.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20180917221912-90fa682c2a6e.mod mirror://goproxy//gopkg.in/check.v1/@v/v0.0.0-20161208181325-20d25e280405.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv0.0.0-20161208181325-20d25e280405.mod mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20190902080502-41f04d3bba15.zip -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20190902080502-41f04d3bba15.zip mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20190902080502-41f04d3bba15.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20190902080502-41f04d3bba15.mod mirror://goproxy//gopkg.in/sourcemap.v1/@v/v1.0.5.zip -> gopkg.in%2Fsourcemap.v1%2F@v%2Fv1.0.5.zip mirror://goproxy//gopkg.in/sourcemap.v1/@v/v1.0.5.mod -> gopkg.in%2Fsourcemap.v1%2F@v%2Fv1.0.5.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.2.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.2.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.4.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.4.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.7.zip -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.7.zip mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.7.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.7.mod mirror://goproxy//layeh.com/gopher-luar/@v/v1.0.7.zip -> layeh.com%2Fgopher-luar%2F@v%2Fv1.0.7.zip mirror://goproxy//layeh.com/gopher-luar/@v/v1.0.7.mod -> layeh.com%2Fgopher-luar%2F@v%2Fv1.0.7.mod -_eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=b8dc857cb1ef4658d33dc04f5c71c00d diff --git a/metadata/md5-cache/app-editors/micro-2.0.9 b/metadata/md5-cache/app-editors/micro-2.0.9 index b21c89473a85..d6585566370f 100644 --- a/metadata/md5-cache/app-editors/micro-2.0.9 +++ b/metadata/md5-cache/app-editors/micro-2.0.9 @@ -9,5 +9,5 @@ LICENSE=MIT Apache-2.0 BSD MPL-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/zyedidia/micro/archive/v2.0.9.tar.gz -> micro-2.0.9.tar.gz mirror://goproxy//github.com/blang/semver/@v/v3.5.1+incompatible.zip -> github.com%2Fblang%2Fsemver%2F@v%2Fv3.5.1+incompatible.zip mirror://goproxy//github.com/blang/semver/@v/v3.5.1+incompatible.mod -> github.com%2Fblang%2Fsemver%2F@v%2Fv3.5.1+incompatible.mod mirror://goproxy//github.com/chzyer/logex/@v/v1.1.10.mod -> github.com%2Fchzyer%2Flogex%2F@v%2Fv1.1.10.mod mirror://goproxy//github.com/chzyer/readline/@v/v0.0.0-20180603132655-2972be24d48e.mod -> github.com%2Fchzyer%2Freadline%2F@v%2Fv0.0.0-20180603132655-2972be24d48e.mod mirror://goproxy//github.com/chzyer/test/@v/v0.0.0-20180213035817-a1ea475d72b1.mod -> github.com%2Fchzyer%2Ftest%2F@v%2Fv0.0.0-20180213035817-a1ea475d72b1.mod mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.0.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.1.zip -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.1.zip mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.1.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/dustin/go-humanize/@v/v1.0.0.zip -> github.com%2Fdustin%2Fgo-humanize%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/dustin/go-humanize/@v/v1.0.0.mod -> github.com%2Fdustin%2Fgo-humanize%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/gdamore/encoding/@v/v1.0.0.zip -> github.com%2Fgdamore%2Fencoding%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/gdamore/encoding/@v/v1.0.0.mod -> github.com%2Fgdamore%2Fencoding%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/go-errors/errors/@v/v1.0.1.zip -> github.com%2Fgo-errors%2Ferrors%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/go-errors/errors/@v/v1.0.1.mod -> github.com%2Fgo-errors%2Ferrors%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/kr/pretty/@v/v0.1.0.zip -> github.com%2Fkr%2Fpretty%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/kr/pretty/@v/v0.1.0.mod -> github.com%2Fkr%2Fpretty%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/kr/pty/@v/v1.1.1.mod -> github.com%2Fkr%2Fpty%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/kr/text/@v/v0.1.0.zip -> github.com%2Fkr%2Ftext%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/kr/text/@v/v0.1.0.mod -> github.com%2Fkr%2Ftext%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/lucasb-eyer/go-colorful/@v/v1.0.3.zip -> github.com%2Flucasb-eyer%2Fgo-colorful%2F@v%2Fv1.0.3.zip mirror://goproxy//github.com/lucasb-eyer/go-colorful/@v/v1.0.3.mod -> github.com%2Flucasb-eyer%2Fgo-colorful%2F@v%2Fv1.0.3.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.11.zip -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.11.zip mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.11.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.11.mod mirror://goproxy//github.com/mitchellh/go-homedir/@v/v1.1.0.zip -> github.com%2Fmitchellh%2Fgo-homedir%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/mitchellh/go-homedir/@v/v1.1.0.mod -> github.com%2Fmitchellh%2Fgo-homedir%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/p-e-w/go-runewidth/@v/v0.0.10-0.20200613030200-3e1705c5c059.zip -> github.com%2Fp-e-w%2Fgo-runewidth%2F@v%2Fv0.0.10-0.20200613030200-3e1705c5c059.zip mirror://goproxy//github.com/p-e-w/go-runewidth/@v/v0.0.10-0.20200613030200-3e1705c5c059.mod -> github.com%2Fp-e-w%2Fgo-runewidth%2F@v%2Fv0.0.10-0.20200613030200-3e1705c5c059.mod mirror://goproxy//github.com/pmezard/go-difflib/@v/v1.0.0.zip -> github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/pmezard/go-difflib/@v/v1.0.0.mod -> github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/rivo/uniseg/@v/v0.1.0.zip -> github.com%2Frivo%2Funiseg%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/rivo/uniseg/@v/v0.1.0.mod -> github.com%2Frivo%2Funiseg%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/robertkrimen/otto/@v/v0.0.0-20191219234010-c382bd3c16ff.zip -> github.com%2Frobertkrimen%2Fotto%2F@v%2Fv0.0.0-20191219234010-c382bd3c16ff.zip mirror://goproxy//github.com/robertkrimen/otto/@v/v0.0.0-20191219234010-c382bd3c16ff.mod -> github.com%2Frobertkrimen%2Fotto%2F@v%2Fv0.0.0-20191219234010-c382bd3c16ff.mod mirror://goproxy//github.com/sergi/go-diff/@v/v1.1.0.zip -> github.com%2Fsergi%2Fgo-diff%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/sergi/go-diff/@v/v1.1.0.mod -> github.com%2Fsergi%2Fgo-diff%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/stretchr/objx/@v/v0.1.0.zip -> github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.1.0.zip mirror://goproxy//github.com/stretchr/objx/@v/v0.1.0.mod -> github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.4.0.zip -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.4.0.zip mirror://goproxy//github.com/stretchr/testify/@v/v1.4.0.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/xo/terminfo/@v/v0.0.0-20200218205459-454e5b68f9e8.zip -> github.com%2Fxo%2Fterminfo%2F@v%2Fv0.0.0-20200218205459-454e5b68f9e8.zip mirror://goproxy//github.com/xo/terminfo/@v/v0.0.0-20200218205459-454e5b68f9e8.mod -> github.com%2Fxo%2Fterminfo%2F@v%2Fv0.0.0-20200218205459-454e5b68f9e8.mod mirror://goproxy//github.com/yuin/gopher-lua/@v/v0.0.0-20190206043414-8bfc7677f583.mod -> github.com%2Fyuin%2Fgopher-lua%2F@v%2Fv0.0.0-20190206043414-8bfc7677f583.mod mirror://goproxy//github.com/yuin/gopher-lua/@v/v0.0.0-20191220021717-ab39c6098bdb.zip -> github.com%2Fyuin%2Fgopher-lua%2F@v%2Fv0.0.0-20191220021717-ab39c6098bdb.zip mirror://goproxy//github.com/yuin/gopher-lua/@v/v0.0.0-20191220021717-ab39c6098bdb.mod -> github.com%2Fyuin%2Fgopher-lua%2F@v%2Fv0.0.0-20191220021717-ab39c6098bdb.mod mirror://goproxy//github.com/zyedidia/clipboard/@v/v1.0.3.zip -> github.com%2Fzyedidia%2Fclipboard%2F@v%2Fv1.0.3.zip mirror://goproxy//github.com/zyedidia/clipboard/@v/v1.0.3.mod -> github.com%2Fzyedidia%2Fclipboard%2F@v%2Fv1.0.3.mod mirror://goproxy//github.com/zyedidia/glob/@v/v0.0.0-20170209203856-dd4023a66dc3.zip -> github.com%2Fzyedidia%2Fglob%2F@v%2Fv0.0.0-20170209203856-dd4023a66dc3.zip mirror://goproxy//github.com/zyedidia/glob/@v/v0.0.0-20170209203856-dd4023a66dc3.mod -> github.com%2Fzyedidia%2Fglob%2F@v%2Fv0.0.0-20170209203856-dd4023a66dc3.mod mirror://goproxy//github.com/zyedidia/go-runewidth/@v/v0.0.12.zip -> github.com%2Fzyedidia%2Fgo-runewidth%2F@v%2Fv0.0.12.zip mirror://goproxy//github.com/zyedidia/go-runewidth/@v/v0.0.12.mod -> github.com%2Fzyedidia%2Fgo-runewidth%2F@v%2Fv0.0.12.mod mirror://goproxy//github.com/zyedidia/go-shellquote/@v/v0.0.0-20200613203517-eccd813c0655.zip -> github.com%2Fzyedidia%2Fgo-shellquote%2F@v%2Fv0.0.0-20200613203517-eccd813c0655.zip mirror://goproxy//github.com/zyedidia/go-shellquote/@v/v0.0.0-20200613203517-eccd813c0655.mod -> github.com%2Fzyedidia%2Fgo-shellquote%2F@v%2Fv0.0.0-20200613203517-eccd813c0655.mod mirror://goproxy//github.com/zyedidia/highlight/@v/v0.0.0-20170330143449-201131ce5cf5.zip -> github.com%2Fzyedidia%2Fhighlight%2F@v%2Fv0.0.0-20170330143449-201131ce5cf5.zip mirror://goproxy//github.com/zyedidia/highlight/@v/v0.0.0-20170330143449-201131ce5cf5.mod -> github.com%2Fzyedidia%2Fhighlight%2F@v%2Fv0.0.0-20170330143449-201131ce5cf5.mod mirror://goproxy//github.com/zyedidia/json5/@v/v0.0.0-20200102012142-2da050b1a98d.zip -> github.com%2Fzyedidia%2Fjson5%2F@v%2Fv0.0.0-20200102012142-2da050b1a98d.zip mirror://goproxy//github.com/zyedidia/json5/@v/v0.0.0-20200102012142-2da050b1a98d.mod -> github.com%2Fzyedidia%2Fjson5%2F@v%2Fv0.0.0-20200102012142-2da050b1a98d.mod mirror://goproxy//github.com/zyedidia/poller/@v/v1.0.1.zip -> github.com%2Fzyedidia%2Fpoller%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/zyedidia/poller/@v/v1.0.1.mod -> github.com%2Fzyedidia%2Fpoller%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/zyedidia/pty/@v/v2.0.0+incompatible.zip -> github.com%2Fzyedidia%2Fpty%2F@v%2Fv2.0.0+incompatible.zip mirror://goproxy//github.com/zyedidia/pty/@v/v2.0.0+incompatible.mod -> github.com%2Fzyedidia%2Fpty%2F@v%2Fv2.0.0+incompatible.mod mirror://goproxy//github.com/zyedidia/tcell/v2/@v/v2.0.6.zip -> github.com%2Fzyedidia%2Ftcell%2Fv2%2F@v%2Fv2.0.6.zip mirror://goproxy//github.com/zyedidia/tcell/v2/@v/v2.0.6.mod -> github.com%2Fzyedidia%2Ftcell%2Fv2%2F@v%2Fv2.0.6.mod mirror://goproxy//github.com/zyedidia/tcell/v2/@v/v2.0.7.zip -> github.com%2Fzyedidia%2Ftcell%2Fv2%2F@v%2Fv2.0.7.zip mirror://goproxy//github.com/zyedidia/tcell/v2/@v/v2.0.7.mod -> github.com%2Fzyedidia%2Ftcell%2Fv2%2F@v%2Fv2.0.7.mod mirror://goproxy//github.com/zyedidia/tcell/v2/@v/v2.0.8.zip -> github.com%2Fzyedidia%2Ftcell%2Fv2%2F@v%2Fv2.0.8.zip mirror://goproxy//github.com/zyedidia/tcell/v2/@v/v2.0.8.mod -> github.com%2Fzyedidia%2Ftcell%2Fv2%2F@v%2Fv2.0.8.mod mirror://goproxy//github.com/zyedidia/terminal/@v/v0.0.0-20180726154117-533c623e2415.zip -> github.com%2Fzyedidia%2Fterminal%2F@v%2Fv0.0.0-20180726154117-533c623e2415.zip mirror://goproxy//github.com/zyedidia/terminal/@v/v0.0.0-20180726154117-533c623e2415.mod -> github.com%2Fzyedidia%2Fterminal%2F@v%2Fv0.0.0-20180726154117-533c623e2415.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190204203706-41f3e6584952.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190204203706-41f3e6584952.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190626150813-e07cf5db2756.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190626150813-e07cf5db2756.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191026070338-33540a1f6037.zip -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191026070338-33540a1f6037.zip mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191026070338-33540a1f6037.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191026070338-33540a1f6037.mod mirror://goproxy//golang.org/x/text/@v/v0.3.0.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.0.mod mirror://goproxy//golang.org/x/text/@v/v0.3.2.zip -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.2.zip mirror://goproxy//golang.org/x/text/@v/v0.3.2.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.2.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20180917221912-90fa682c2a6e.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20180917221912-90fa682c2a6e.mod mirror://goproxy//gopkg.in/check.v1/@v/v0.0.0-20161208181325-20d25e280405.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv0.0.0-20161208181325-20d25e280405.mod mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20190902080502-41f04d3bba15.zip -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20190902080502-41f04d3bba15.zip mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20190902080502-41f04d3bba15.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20190902080502-41f04d3bba15.mod mirror://goproxy//gopkg.in/sourcemap.v1/@v/v1.0.5.zip -> gopkg.in%2Fsourcemap.v1%2F@v%2Fv1.0.5.zip mirror://goproxy//gopkg.in/sourcemap.v1/@v/v1.0.5.mod -> gopkg.in%2Fsourcemap.v1%2F@v%2Fv1.0.5.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.2.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.2.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.4.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.4.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.7.zip -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.7.zip mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.7.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.7.mod mirror://goproxy//layeh.com/gopher-luar/@v/v1.0.7.zip -> layeh.com%2Fgopher-luar%2F@v%2Fv1.0.7.zip mirror://goproxy//layeh.com/gopher-luar/@v/v1.0.7.mod -> layeh.com%2Fgopher-luar%2F@v%2Fv1.0.7.mod -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=a19d74ffb9df63e1184a851a69bffa75 diff --git a/metadata/md5-cache/app-emacs/Manifest.gz b/metadata/md5-cache/app-emacs/Manifest.gz index e91308dd9e80..0776ce11d758 100644 Binary files a/metadata/md5-cache/app-emacs/Manifest.gz and b/metadata/md5-cache/app-emacs/Manifest.gz differ diff --git a/metadata/md5-cache/app-emacs/a-1.0.0 b/metadata/md5-cache/app-emacs/a-1.0.0 index f308eeca8916..55d937f4765b 100644 --- a/metadata/md5-cache/app-emacs/a-1.0.0 +++ b/metadata/md5-cache/app-emacs/a-1.0.0 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/plexus/a.el/archive/v1.0.0.tar.gz -> a.el-1.0.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 -_md5_=c47af6082693810ee91bd3afa78e6c03 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 +_md5_=ff424b292cbab4a448b5602b10cdfed1 diff --git a/metadata/md5-cache/app-emacs/ace-window-0.10.0 b/metadata/md5-cache/app-emacs/ace-window-0.10.0 index 678050b0290e..4bd1bed0a862 100644 --- a/metadata/md5-cache/app-emacs/ace-window-0.10.0 +++ b/metadata/md5-cache/app-emacs/ace-window-0.10.0 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/avy >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Quickly switch windows in Emacs EAPI=8 HOMEPAGE=https://github.com/abo-abo/ace-window/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/avy >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/abo-abo/ace-window/archive/0.10.0.tar.gz -> ace-window-0.10.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=2a6e954ca4cf1f38b82c1b5df2970ef5 diff --git a/metadata/md5-cache/app-emacs/actionscript-mode-7.2.2_p20180527 b/metadata/md5-cache/app-emacs/actionscript-mode-7.2.2_p20180527 index 20d80b64a475..5b46bfc530fe 100644 --- a/metadata/md5-cache/app-emacs/actionscript-mode-7.2.2_p20180527 +++ b/metadata/md5-cache/app-emacs/actionscript-mode-7.2.2_p20180527 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A major mode for GNU Emacs for editing Actionscript 3 files EAPI=7 HOMEPAGE=https://github.com/austinhaas/actionscript-mode @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/austinhaas/actionscript-mode/archive/65abd58e198458a8e46748c5962c41d80d60c4ea.tar.gz -> actionscript-mode-7.2.2_p20180527.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=e6ea45c8f98d76fd35975669c93e9def diff --git a/metadata/md5-cache/app-emacs/adaptive-wrap-0.7 b/metadata/md5-cache/app-emacs/adaptive-wrap-0.7 index e4b9d1ea33e9..6c27eecd7ce4 100644 --- a/metadata/md5-cache/app-emacs/adaptive-wrap-0.7 +++ b/metadata/md5-cache/app-emacs/adaptive-wrap-0.7 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Smart line-wrapping with wrap-prefix EAPI=7 HOMEPAGE=https://elpa.gnu.org/packages/adaptive-wrap.html @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/adaptive-wrap-0.7.el.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=f597d4059056b3b15e37a2853edafef6 diff --git a/metadata/md5-cache/app-emacs/adaptive-wrap-0.8 b/metadata/md5-cache/app-emacs/adaptive-wrap-0.8 index 93ecf2bc7627..19aab78e109a 100644 --- a/metadata/md5-cache/app-emacs/adaptive-wrap-0.8 +++ b/metadata/md5-cache/app-emacs/adaptive-wrap-0.8 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Smart line-wrapping with wrap-prefix EAPI=8 HOMEPAGE=https://elpa.gnu.org/packages/adaptive-wrap.html @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/adaptive-wrap-0.8.el.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=45bf25014460f42a7d9fd2e25ebcd22c diff --git a/metadata/md5-cache/app-emacs/all-the-icons-5.0.0-r1 b/metadata/md5-cache/app-emacs/all-the-icons-5.0.0-r1 index 99b9aa8cc9c7..983f2d1f7551 100644 --- a/metadata/md5-cache/app-emacs/all-the-icons-5.0.0-r1 +++ b/metadata/md5-cache/app-emacs/all-the-icons-5.0.0-r1 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/domtronn/all-the-icons.el/archive/5.0.0.tar.gz -> all-the-icons-5.0.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 font aa113a3df9cd0a9693a1c1ee7c34a6eb readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 font aa113a3df9cd0a9693a1c1ee7c34a6eb readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=219c4c4b08c742b8af8d70a0a811e269 diff --git a/metadata/md5-cache/app-emacs/all-the-icons-5.0.0_p20220325-r1 b/metadata/md5-cache/app-emacs/all-the-icons-5.0.0_p20220325-r1 index cbd5bc68978b..4e604ef29f49 100644 --- a/metadata/md5-cache/app-emacs/all-the-icons-5.0.0_p20220325-r1 +++ b/metadata/md5-cache/app-emacs/all-the-icons-5.0.0_p20220325-r1 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/domtronn/all-the-icons.el/archive/65c496d3d1d1298345beb9845840067bffb2ffd8.tar.gz -> all-the-icons-5.0.0_p20220325.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 font aa113a3df9cd0a9693a1c1ee7c34a6eb readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 font aa113a3df9cd0a9693a1c1ee7c34a6eb readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=acd762bdd5cec3c833a40494e52af896 diff --git a/metadata/md5-cache/app-emacs/all-the-icons-5.0.0_p20230316 b/metadata/md5-cache/app-emacs/all-the-icons-5.0.0_p20230316 index fe3a94c0fe50..49761be8ff6f 100644 --- a/metadata/md5-cache/app-emacs/all-the-icons-5.0.0_p20230316 +++ b/metadata/md5-cache/app-emacs/all-the-icons-5.0.0_p20230316 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/domtronn/all-the-icons.el/archive/d922aff57ac8308d3ed067f9151cc76d342855f2.tar.gz -> all-the-icons-5.0.0_p20230316.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 font aa113a3df9cd0a9693a1c1ee7c34a6eb readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 font aa113a3df9cd0a9693a1c1ee7c34a6eb readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=871dc19a66badb7b210bb0d3019e577a diff --git a/metadata/md5-cache/app-emacs/all-the-icons-dired-2.0 b/metadata/md5-cache/app-emacs/all-the-icons-dired-2.0 index 401cbc7b9f4e..eb8785191111 100644 --- a/metadata/md5-cache/app-emacs/all-the-icons-dired-2.0 +++ b/metadata/md5-cache/app-emacs/all-the-icons-dired-2.0 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/all-the-icons >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Display all-the-icons icon for each file in Emacs' dired buffer EAPI=8 HOMEPAGE=https://github.com/wyuenho/all-the-icons-dired/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/all-the-icons >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/wyuenho/all-the-icons-dired/archive/2.0.tar.gz -> all-the-icons-dired-2.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=ab53745d470b9ed1e02305fe51d74ef0 diff --git a/metadata/md5-cache/app-emacs/all-the-icons-ibuffer-1.3.0 b/metadata/md5-cache/app-emacs/all-the-icons-ibuffer-1.3.0 index 0790491813b5..bb38c1591fb0 100644 --- a/metadata/md5-cache/app-emacs/all-the-icons-ibuffer-1.3.0 +++ b/metadata/md5-cache/app-emacs/all-the-icons-ibuffer-1.3.0 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/all-the-icons >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Display all-the-icons icons for all buffers in Emacs' ibuffer EAPI=8 HOMEPAGE=https://github.com/seagle0128/all-the-icons-ibuffer/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/all-the-icons >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/seagle0128/all-the-icons-ibuffer/archive/v1.3.0.tar.gz -> all-the-icons-ibuffer-1.3.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=d7ff764a28df4df4dc1a0afbc0596347 diff --git a/metadata/md5-cache/app-emacs/all-the-icons-ivy-rich-1.7.1 b/metadata/md5-cache/app-emacs/all-the-icons-ivy-rich-1.7.1 index 567a8f995754..4cf661120748 100644 --- a/metadata/md5-cache/app-emacs/all-the-icons-ivy-rich-1.7.1 +++ b/metadata/md5-cache/app-emacs/all-the-icons-ivy-rich-1.7.1 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/all-the-icons app-emacs/ivy-rich >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Display icons for ivy buffers in Emacs EAPI=8 HOMEPAGE=https://github.com/seagle0128/all-the-icons-ivy-rich/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/all-the-icons app-emacs/ivy-rich >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/seagle0128/all-the-icons-ivy-rich/archive/v1.7.1.tar.gz -> all-the-icons-ivy-rich-1.7.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=1abcecefea133ea7b444564f5eeb1d13 diff --git a/metadata/md5-cache/app-emacs/all-the-icons-ivy-rich-1.8.0 b/metadata/md5-cache/app-emacs/all-the-icons-ivy-rich-1.8.0 index abd7727b4697..a269da652990 100644 --- a/metadata/md5-cache/app-emacs/all-the-icons-ivy-rich-1.8.0 +++ b/metadata/md5-cache/app-emacs/all-the-icons-ivy-rich-1.8.0 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/all-the-icons app-emacs/ivy-rich >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Display icons for ivy buffers in Emacs EAPI=8 HOMEPAGE=https://github.com/seagle0128/all-the-icons-ivy-rich/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/all-the-icons app-emacs/ivy-rich >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/seagle0128/all-the-icons-ivy-rich/archive/v1.8.0.tar.gz -> all-the-icons-ivy-rich-1.8.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=b684ac6e383c09e65b9cb8c54e9c42b0 diff --git a/metadata/md5-cache/app-emacs/all-the-icons-ivy-rich-1.9.0 b/metadata/md5-cache/app-emacs/all-the-icons-ivy-rich-1.9.0 index f5f8e9a45504..26a42eec9a35 100644 --- a/metadata/md5-cache/app-emacs/all-the-icons-ivy-rich-1.9.0 +++ b/metadata/md5-cache/app-emacs/all-the-icons-ivy-rich-1.9.0 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/all-the-icons app-emacs/ivy-rich >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Display icons for ivy buffers in Emacs EAPI=8 HOMEPAGE=https://github.com/seagle0128/all-the-icons-ivy-rich/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/all-the-icons app-emacs/ivy-rich >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/seagle0128/all-the-icons-ivy-rich/archive/v1.9.0.tar.gz -> all-the-icons-ivy-rich-1.9.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=1abcecefea133ea7b444564f5eeb1d13 diff --git a/metadata/md5-cache/app-emacs/amx-3.4 b/metadata/md5-cache/app-emacs/amx-3.4 index 2428f3fbd3e0..f5a8a2101c2a 100644 --- a/metadata/md5-cache/app-emacs/amx-3.4 +++ b/metadata/md5-cache/app-emacs/amx-3.4 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/s app-emacs/ivy >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Alternative M-x interface for GNU Emacs EAPI=8 HOMEPAGE=https://github.com/DarwinAwardWinner/amx/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/s app-emacs/ivy >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/DarwinAwardWinner/amx/archive/v3.4.tar.gz -> amx-3.4.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=d8eab450bb1832de24fd81e038f1c5a2 diff --git a/metadata/md5-cache/app-emacs/analog-1.9.99 b/metadata/md5-cache/app-emacs/analog-1.9.99 index d2ae82ef5050..efc256a92f2d 100644 --- a/metadata/md5-cache/app-emacs/analog-1.9.99 +++ b/metadata/md5-cache/app-emacs/analog-1.9.99 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Monitor lists of files or command output EAPI=7 HOMEPAGE=https://web.archive.org/web/20150919120435/http://mph-emacs-pkgs.alioth.debian.org/AnalogEl.html @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gentoo/analog-1.9.99.el.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=922905ad92a1fb4d4a4bef6c2b782c52 diff --git a/metadata/md5-cache/app-emacs/anaphora-1.0.4 b/metadata/md5-cache/app-emacs/anaphora-1.0.4 index 28c16b35b1f7..dda6968a8012 100644 --- a/metadata/md5-cache/app-emacs/anaphora-1.0.4 +++ b/metadata/md5-cache/app-emacs/anaphora-1.0.4 @@ -9,5 +9,5 @@ LICENSE=public-domain RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/rolandwalker/anaphora/archive/v1.0.4.tar.gz -> anaphora-1.0.4.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=fdb68840d25f085d76e9770763b860d3 diff --git a/metadata/md5-cache/app-emacs/ansi-0.4.1_p20211104 b/metadata/md5-cache/app-emacs/ansi-0.4.1_p20211104 index a08b7e300228..13e509a0dbbf 100644 --- a/metadata/md5-cache/app-emacs/ansi-0.4.1_p20211104 +++ b/metadata/md5-cache/app-emacs/ansi-0.4.1_p20211104 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/rejeep/ansi.el/archive/2367fba7b3b2340364a30cd6de7f3eb6bb9898a3.tar.gz -> ansi-0.4.1_p20211104.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=4ab7697737bf7ab6169d65154cabea0c diff --git a/metadata/md5-cache/app-emacs/apache-mode-2.2.0 b/metadata/md5-cache/app-emacs/apache-mode-2.2.0 index 888ef8cb109f..5376e92fac36 100644 --- a/metadata/md5-cache/app-emacs/apache-mode-2.2.0 +++ b/metadata/md5-cache/app-emacs/apache-mode-2.2.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Major mode for editing Apache configuration files EAPI=7 HOMEPAGE=https://github.com/emacs-php/apache-mode @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/emacs-php/apache-mode/archive/2.2.0.tar.gz -> apache-mode-2.2.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=9014031c259b08e4280c27eddfc7ae53 diff --git a/metadata/md5-cache/app-emacs/apel-10.8_p20190407 b/metadata/md5-cache/app-emacs/apel-10.8_p20190407 index 553badfbcfae..f17e46404fb4 100644 --- a/metadata/md5-cache/app-emacs/apel-10.8_p20190407 +++ b/metadata/md5-cache/app-emacs/apel-10.8_p20190407 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A Portable Emacs Library is a library for making portable Emacs Lisp programs EAPI=7 HOMEPAGE=https://github.com/wanderlust/apel @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/wanderlust/apel/archive/d146ddbf8818e81d3577d5eee7825d377bec0c73.tar.gz -> apel-10.8_p20190407.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=e292fa96a4d01a2eb7dd47d70b69b474 diff --git a/metadata/md5-cache/app-emacs/apel-10.8_p20201106 b/metadata/md5-cache/app-emacs/apel-10.8_p20201106 index 7686fd5f94a2..79c44987cdb9 100644 --- a/metadata/md5-cache/app-emacs/apel-10.8_p20201106 +++ b/metadata/md5-cache/app-emacs/apel-10.8_p20201106 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A Portable Emacs Library is a library for making portable Emacs Lisp programs EAPI=8 HOMEPAGE=https://github.com/wanderlust/apel @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/wanderlust/apel/archive/4e3269b6e702db2dba48cf560563ac883e81e3bf.tar.gz -> apel-10.8_p20201106.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=ecdb401bca334a166fff66f680e36f02 diff --git a/metadata/md5-cache/app-emacs/apheleia-3.0 b/metadata/md5-cache/app-emacs/apheleia-3.0 index e1a7d2d29639..bb7ff0815a39 100644 --- a/metadata/md5-cache/app-emacs/apheleia-3.0 +++ b/metadata/md5-cache/app-emacs/apheleia-3.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-26:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Reformat GNU Emacs buffers stably without moving point EAPI=8 HOMEPAGE=https://github.com/radian-software/apheleia/ @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=>=app-editors/emacs-26:* SLOT=0 SRC_URI=https://github.com/radian-software/apheleia/archive/v3.0.tar.gz -> apheleia-3.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=cfbda78e4bc3945e2943aea85326578e diff --git a/metadata/md5-cache/app-emacs/apheleia-3.1 b/metadata/md5-cache/app-emacs/apheleia-3.1 index 36107b14afdc..4dfc25c9e3b9 100644 --- a/metadata/md5-cache/app-emacs/apheleia-3.1 +++ b/metadata/md5-cache/app-emacs/apheleia-3.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-26:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Reformat GNU Emacs buffers stably without moving point EAPI=8 HOMEPAGE=https://github.com/radian-software/apheleia/ @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=>=app-editors/emacs-26:* SLOT=0 SRC_URI=https://github.com/radian-software/apheleia/archive/v3.1.tar.gz -> apheleia-3.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=cfbda78e4bc3945e2943aea85326578e diff --git a/metadata/md5-cache/app-emacs/apheleia-3.2 b/metadata/md5-cache/app-emacs/apheleia-3.2 index f0bb4b4f1a36..8a79c83047e3 100644 --- a/metadata/md5-cache/app-emacs/apheleia-3.2 +++ b/metadata/md5-cache/app-emacs/apheleia-3.2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-26:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Reformat GNU Emacs buffers stably without moving point EAPI=8 HOMEPAGE=https://github.com/radian-software/apheleia/ @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=>=app-editors/emacs-26:* SLOT=0 SRC_URI=https://github.com/radian-software/apheleia/archive/v3.2.tar.gz -> apheleia-3.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=8724b5019e0c47ebf4bbb770899fb59b diff --git a/metadata/md5-cache/app-emacs/assess-0.6 b/metadata/md5-cache/app-emacs/assess-0.6 index e545461f8925..984bc57e5d42 100644 --- a/metadata/md5-cache/app-emacs/assess-0.6 +++ b/metadata/md5-cache/app-emacs/assess-0.6 @@ -11,5 +11,5 @@ RDEPEND=app-emacs/m-buffer >=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/phillord/assess/archive/v0.6.tar.gz -> assess-0.6.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=74b63b5eea118918c3fb0c1b35adea85 diff --git a/metadata/md5-cache/app-emacs/async-1.9.3 b/metadata/md5-cache/app-emacs/async-1.9.3 index 93bd5b95f415..972e68a1cad0 100644 --- a/metadata/md5-cache/app-emacs/async-1.9.3 +++ b/metadata/md5-cache/app-emacs/async-1.9.3 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Simple library for asynchronous processing in Emacs EAPI=7 HOMEPAGE=https://github.com/jwiegley/emacs-async @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/jwiegley/emacs-async/archive/v1.9.3.tar.gz -> emacs-async-1.9.3.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=81b51f3b0a83969bc87a3854638d43c7 diff --git a/metadata/md5-cache/app-emacs/async-1.9.4 b/metadata/md5-cache/app-emacs/async-1.9.4 index bb363c0107d7..db56bce72707 100644 --- a/metadata/md5-cache/app-emacs/async-1.9.4 +++ b/metadata/md5-cache/app-emacs/async-1.9.4 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Simple library for asynchronous processing in Emacs EAPI=8 HOMEPAGE=https://github.com/jwiegley/emacs-async @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/jwiegley/emacs-async/archive/v1.9.4.tar.gz -> emacs-async-1.9.4.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=4dc8d2033e65790a9711fc583975db36 diff --git a/metadata/md5-cache/app-emacs/async-1.9.7 b/metadata/md5-cache/app-emacs/async-1.9.7 index 6c8cea8c655a..8955ed75c545 100644 --- a/metadata/md5-cache/app-emacs/async-1.9.7 +++ b/metadata/md5-cache/app-emacs/async-1.9.7 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Simple library for asynchronous processing in Emacs EAPI=8 HOMEPAGE=https://github.com/jwiegley/emacs-async @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/jwiegley/emacs-async/archive/v1.9.7.tar.gz -> emacs-async-1.9.7.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=4dc8d2033e65790a9711fc583975db36 diff --git a/metadata/md5-cache/app-emacs/atomic-chrome-2.0.0-r1 b/metadata/md5-cache/app-emacs/atomic-chrome-2.0.0-r1 index e959fb2b33e3..0546ece130a2 100644 --- a/metadata/md5-cache/app-emacs/atomic-chrome-2.0.0-r1 +++ b/metadata/md5-cache/app-emacs/atomic-chrome-2.0.0-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=app-emacs/websocket DESCRIPTION=Edit text area on Chrome with Emacs using Atomic Chrome EAPI=8 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=app-emacs/websocket >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/alpha22jp/atomic-chrome/archive/v2.0.0.tar.gz -> atomic-chrome-2.0.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=aee08cf7ecfb6141a3b39e4cc2488429 diff --git a/metadata/md5-cache/app-emacs/auctex-12.3 b/metadata/md5-cache/app-emacs/auctex-12.3 index 52074caa3e74..c020bc02df08 100644 --- a/metadata/md5-cache/app-emacs/auctex-12.3 +++ b/metadata/md5-cache/app-emacs/auctex-12.3 @@ -1,5 +1,5 @@ BDEPEND=virtual/latex-base preview-latex? ( app-text/dvipng app-text/ghostscript-gpl ) >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Extensible package for writing and formatting TeX files in Emacs EAPI=7 HOMEPAGE=https://www.gnu.org/software/auctex/ @@ -10,5 +10,5 @@ LICENSE=GPL-3+ FDL-1.3+ RDEPEND=virtual/latex-base preview-latex? ( app-text/dvipng app-text/ghostscript-gpl ) >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gnu/auctex/auctex-12.3.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=d424e2e44dd54aefea282623dca6408f diff --git a/metadata/md5-cache/app-emacs/auctex-13.1 b/metadata/md5-cache/app-emacs/auctex-13.1 index 902612caee94..e17005461a03 100644 --- a/metadata/md5-cache/app-emacs/auctex-13.1 +++ b/metadata/md5-cache/app-emacs/auctex-13.1 @@ -1,5 +1,5 @@ BDEPEND=virtual/latex-base preview-latex? ( app-text/dvipng app-text/ghostscript-gpl ) >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Extensible package for writing and formatting TeX files in Emacs EAPI=8 HOMEPAGE=https://www.gnu.org/software/auctex/ @@ -10,5 +10,5 @@ LICENSE=GPL-3+ FDL-1.3+ RDEPEND=virtual/latex-base preview-latex? ( app-text/dvipng app-text/ghostscript-gpl ) >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gnu/auctex/auctex-13.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=f68d4fcc9949218335614f15e8a0a9ae diff --git a/metadata/md5-cache/app-emacs/auto-complete-1.5.1-r2 b/metadata/md5-cache/app-emacs/auto-complete-1.5.1-r2 index 41d12ffdc9a3..90109be8a9c1 100644 --- a/metadata/md5-cache/app-emacs/auto-complete-1.5.1-r2 +++ b/metadata/md5-cache/app-emacs/auto-complete-1.5.1-r2 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/popup doc? ( virtual/pandoc ) >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Auto-complete package EAPI=7 HOMEPAGE=https://github.com/auto-complete/auto-complete/ @@ -11,5 +11,5 @@ RDEPEND=app-emacs/popup >=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/auto-complete/auto-complete/archive/v1.5.1.tar.gz -> auto-complete-1.5.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=a7e84bff665586b3aa1e4a83b057b1fc diff --git a/metadata/md5-cache/app-emacs/autoconf-mode-2.69-r1 b/metadata/md5-cache/app-emacs/autoconf-mode-2.69-r1 index 8cc1aa4c6863..e7e31cf9ac2b 100644 --- a/metadata/md5-cache/app-emacs/autoconf-mode-2.69-r1 +++ b/metadata/md5-cache/app-emacs/autoconf-mode-2.69-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs major modes for editing autoconf and autotest input EAPI=7 HOMEPAGE=https://www.gnu.org/software/autoconf/autoconf.html @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gnu/autoconf/autoconf-2.69.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=ad661555b84484f70d01c300de8683e8 diff --git a/metadata/md5-cache/app-emacs/autoconf-mode-2.71 b/metadata/md5-cache/app-emacs/autoconf-mode-2.71 index a06910af33f1..fcbba3e29aaf 100644 --- a/metadata/md5-cache/app-emacs/autoconf-mode-2.71 +++ b/metadata/md5-cache/app-emacs/autoconf-mode-2.71 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs major modes for editing autoconf and autotest input EAPI=8 HOMEPAGE=https://www.gnu.org/software/autoconf/autoconf.html @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gnu/autoconf/autoconf-2.71.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=53b045dba4bd324cd04824917c24dec9 diff --git a/metadata/md5-cache/app-emacs/avy-0.5.0 b/metadata/md5-cache/app-emacs/avy-0.5.0 index 60a0a9cc82f0..25f3958e90f7 100644 --- a/metadata/md5-cache/app-emacs/avy-0.5.0 +++ b/metadata/md5-cache/app-emacs/avy-0.5.0 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/abo-abo/avy/archive/refs/tags/0.5.0.tar.gz -> avy-0.5.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=a6172e6b7fed353b32689a67b27b76a8 diff --git a/metadata/md5-cache/app-emacs/basic-toolkit-0.7 b/metadata/md5-cache/app-emacs/basic-toolkit-0.7 index befe89816f68..d8a545a08593 100644 --- a/metadata/md5-cache/app-emacs/basic-toolkit-0.7 +++ b/metadata/md5-cache/app-emacs/basic-toolkit-0.7 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/windows app-emacs/cycle-buffer app-emacs/css-sort-buffer >=app-editors/emacs-26:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Basic edit toolkit EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/basic-toolkit.el @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/windows app-emacs/cycle-buffer app-emacs/css-sort-buffer >=app-editors/emacs-26:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/basic-toolkit-0.7.el.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=4d5de200e57a6627868ee77effd9530a diff --git a/metadata/md5-cache/app-emacs/bbdb-3.1.2-r2 b/metadata/md5-cache/app-emacs/bbdb-3.1.2-r2 index a9b0f0103f58..8da68a9e152d 100644 --- a/metadata/md5-cache/app-emacs/bbdb-3.1.2-r2 +++ b/metadata/md5-cache/app-emacs/bbdb-3.1.2-r2 @@ -1,5 +1,5 @@ BDEPEND=vm? ( app-emacs/vm ) >=app-editors/emacs-25.3:* sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=The Insidious Big Brother Database EAPI=7 HOMEPAGE=https://savannah.nongnu.org/projects/bbdb/ @@ -11,5 +11,5 @@ RDEPEND=vm? ( app-emacs/vm ) tex? ( virtual/tex-base ) >=app-editors/emacs-25.3: RESTRICT=test SLOT=0 SRC_URI=http://download.savannah.gnu.org/releases/bbdb/bbdb-3.1.2.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=34f40f4aa226d6c2cbef933a1eba7cdf diff --git a/metadata/md5-cache/app-emacs/bbdb-3.2.2a-r1 b/metadata/md5-cache/app-emacs/bbdb-3.2.2a-r1 index bd96272b3b52..2ea1a99c280e 100644 --- a/metadata/md5-cache/app-emacs/bbdb-3.2.2a-r1 +++ b/metadata/md5-cache/app-emacs/bbdb-3.2.2a-r1 @@ -1,5 +1,5 @@ BDEPEND=sys-apps/texinfo doc? ( virtual/texi2dvi ) >=app-editors/emacs-25.3:* sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=vm? ( app-emacs/vm ) wanderlust? ( app-emacs/wanderlust ) DESCRIPTION=The Insidious Big Brother Database EAPI=8 @@ -13,5 +13,5 @@ RDEPEND=vm? ( app-emacs/vm ) wanderlust? ( app-emacs/wanderlust ) >=app-editors/ RESTRICT=test SLOT=0 SRC_URI=https://git.savannah.nongnu.org/cgit/bbdb.git/snapshot/bbdb-3.2.2a.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=0759540cfe9b3c60194949860ace6f28 diff --git a/metadata/md5-cache/app-emacs/bbdb-3.2.2b b/metadata/md5-cache/app-emacs/bbdb-3.2.2b index 7daace2789cd..7cdeb5fa1791 100644 --- a/metadata/md5-cache/app-emacs/bbdb-3.2.2b +++ b/metadata/md5-cache/app-emacs/bbdb-3.2.2b @@ -1,5 +1,5 @@ BDEPEND=sys-apps/texinfo doc? ( virtual/texi2dvi ) >=app-editors/emacs-25.3:* sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=vm? ( app-emacs/vm ) wanderlust? ( app-emacs/wanderlust ) DESCRIPTION=The Insidious Big Brother Database EAPI=8 @@ -13,5 +13,5 @@ RDEPEND=vm? ( app-emacs/vm ) wanderlust? ( app-emacs/wanderlust ) >=app-editors/ RESTRICT=test SLOT=0 SRC_URI=https://git.savannah.nongnu.org/cgit/bbdb.git/snapshot/bbdb-3.2.2b.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=770657fff4da1e79aa2d945ef49e3459 diff --git a/metadata/md5-cache/app-emacs/biblio-0.2_p20210418-r1 b/metadata/md5-cache/app-emacs/biblio-0.2_p20210418-r1 index 20acc9ebc1ce..90a8ffafac08 100644 --- a/metadata/md5-cache/app-emacs/biblio-0.2_p20210418-r1 +++ b/metadata/md5-cache/app-emacs/biblio-0.2_p20210418-r1 @@ -11,5 +11,5 @@ RDEPEND=app-emacs/dash >=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/cpitclaudel/biblio.el/archive/517ec18f00f91b61481214b178f7ae0b8fbc499b.tar.gz -> biblio-0.2_p20210418.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=36dff14e98cee316a337f6a33ee6986c diff --git a/metadata/md5-cache/app-emacs/biblio-0.3 b/metadata/md5-cache/app-emacs/biblio-0.3 index 86d7ca43e4b5..57f1f99fb05b 100644 --- a/metadata/md5-cache/app-emacs/biblio-0.3 +++ b/metadata/md5-cache/app-emacs/biblio-0.3 @@ -11,5 +11,5 @@ RDEPEND=app-emacs/dash >=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/cpitclaudel/biblio.el/archive/0.3.tar.gz -> biblio-0.3.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=768c6112e99676d3715c65d3ce3f309d diff --git a/metadata/md5-cache/app-emacs/binclock-1.11 b/metadata/md5-cache/app-emacs/binclock-1.11 index a503b26e8ef8..2eeee3379a05 100644 --- a/metadata/md5-cache/app-emacs/binclock-1.11 +++ b/metadata/md5-cache/app-emacs/binclock-1.11 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Display the current time using a binary clock EAPI=7 HOMEPAGE=http://www.davep.org/emacs/ @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/davep/binclock.el/archive/v1.11.tar.gz -> binclock-1.11.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=a3c3e964327bebdfd0a8740363237d8b diff --git a/metadata/md5-cache/app-emacs/bind-chord-2.4.1-r1 b/metadata/md5-cache/app-emacs/bind-chord-2.4.1-r1 index d00a22a5eef5..285ea4f21c6d 100644 --- a/metadata/md5-cache/app-emacs/bind-chord-2.4.1-r1 +++ b/metadata/md5-cache/app-emacs/bind-chord-2.4.1-r1 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/bind-key app-emacs/key-chord >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Key-chord binding helper for use-package-chords EAPI=8 HOMEPAGE=https://github.com/jwiegley/use-package/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/bind-key app-emacs/key-chord >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/jwiegley/use-package/archive/2.4.1.tar.gz -> use-package-2.4.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=a1c5ee264df84bb659986544a32086ac diff --git a/metadata/md5-cache/app-emacs/bind-chord-2.4.4 b/metadata/md5-cache/app-emacs/bind-chord-2.4.4 index 0afad4899a14..236e6a32e788 100644 --- a/metadata/md5-cache/app-emacs/bind-chord-2.4.4 +++ b/metadata/md5-cache/app-emacs/bind-chord-2.4.4 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/bind-key app-emacs/key-chord >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Key-chord binding helper for use-package-chords EAPI=8 HOMEPAGE=https://github.com/jwiegley/use-package/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/bind-key app-emacs/key-chord >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/jwiegley/use-package/archive/2.4.4.tar.gz -> use-package-2.4.4.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=8c4db63d96eaa00b608a9360a6f169b7 diff --git a/metadata/md5-cache/app-emacs/bind-key-2.4.1-r1 b/metadata/md5-cache/app-emacs/bind-key-2.4.1-r1 index 17e5162af310..5da78d25216a 100644 --- a/metadata/md5-cache/app-emacs/bind-key-2.4.1-r1 +++ b/metadata/md5-cache/app-emacs/bind-key-2.4.1-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Simple way to manage personal keybindings EAPI=8 HOMEPAGE=https://github.com/jwiegley/use-package/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/jwiegley/use-package/archive/2.4.1.tar.gz -> use-package-2.4.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=3eb345e14087e6306639ec0a68501cb4 diff --git a/metadata/md5-cache/app-emacs/bind-key-2.4.4 b/metadata/md5-cache/app-emacs/bind-key-2.4.4 index 31dd7f3dcb49..a43bd05cce12 100644 --- a/metadata/md5-cache/app-emacs/bind-key-2.4.4 +++ b/metadata/md5-cache/app-emacs/bind-key-2.4.4 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Simple way to manage personal keybindings EAPI=8 HOMEPAGE=https://github.com/jwiegley/use-package/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/jwiegley/use-package/archive/2.4.4.tar.gz -> use-package-2.4.4.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=18609cb63b2b5ce3575fd67e322bc133 diff --git a/metadata/md5-cache/app-emacs/bison-mode-0.3-r1 b/metadata/md5-cache/app-emacs/bison-mode-0.3-r1 index 26fb3e3cb04a..e113a0ad8da8 100644 --- a/metadata/md5-cache/app-emacs/bison-mode-0.3-r1 +++ b/metadata/md5-cache/app-emacs/bison-mode-0.3-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs major mode for Bison, Yacc and Lex grammars EAPI=8 HOMEPAGE=https://github.com/Wilfred/bison-mode @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~nicolasbock/bison-mode-0.3.tar.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=f756d4d69e51974ab5246635b532bbd2 diff --git a/metadata/md5-cache/app-emacs/blogmax-20170321 b/metadata/md5-cache/app-emacs/blogmax-20170321 index 2c7dcbf70f71..c4de824305f7 100644 --- a/metadata/md5-cache/app-emacs/blogmax-20170321 +++ b/metadata/md5-cache/app-emacs/blogmax-20170321 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Blogging in Emacs EAPI=7 HOMEPAGE=https://billstclair.com/blogmax/index.html @@ -9,5 +9,5 @@ LICENSE=GPL-1+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/blogmax-20170321.tar.xz -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=075344a425db39cf3b846fd1641cc561 diff --git a/metadata/md5-cache/app-emacs/bm-201905 b/metadata/md5-cache/app-emacs/bm-201905 index 2705a4ff88b7..45b000a156ed 100644 --- a/metadata/md5-cache/app-emacs/bm-201905 +++ b/metadata/md5-cache/app-emacs/bm-201905 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Visible bookmarks in buffer EAPI=7 HOMEPAGE=http://joodland.github.io/bm/ https://www.emacswiki.org/emacs/VisibleBookmarks @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/joodland/bm/archive/201905.tar.gz -> bm-201905.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=541265409ff659bffce3fc87a3de926f diff --git a/metadata/md5-cache/app-emacs/bnf-mode-0.4.5 b/metadata/md5-cache/app-emacs/bnf-mode-0.4.5 index cb97ecd5650e..5b2486809512 100644 --- a/metadata/md5-cache/app-emacs/bnf-mode-0.4.5 +++ b/metadata/md5-cache/app-emacs/bnf-mode-0.4.5 @@ -1,4 +1,4 @@ -BDEPEND=test? ( app-emacs/buttercup app-emacs/undercover ) >=app-editors/emacs-25.3:* +BDEPEND=test? ( app-emacs/undercover ) test? ( app-emacs/buttercup ) >=app-editors/emacs-25.3:* DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=GNU Emacs major mode for editing BNF grammars EAPI=8 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/sergeyklay/bnf-mode/archive/0.4.5.tar.gz -> bnf-mode-0.4.5.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 -_md5_=52c8711aae51e5713a642c0bb880dc8e +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 +_md5_=acd8cd367de0417a68d72be6d8870317 diff --git a/metadata/md5-cache/app-emacs/bnf-mode-0.4.5_pre20220102 b/metadata/md5-cache/app-emacs/bnf-mode-0.4.5_pre20220102 index f0c80abe7ad9..9d7527bce234 100644 --- a/metadata/md5-cache/app-emacs/bnf-mode-0.4.5_pre20220102 +++ b/metadata/md5-cache/app-emacs/bnf-mode-0.4.5_pre20220102 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/sergeyklay/bnf-mode/archive/d9329dd90e5d4f629295e85898362d9682047898.tar.gz -> bnf-mode-0.4.5_pre20220102.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=29a167989910726f8db1d5e9cfe813fe diff --git a/metadata/md5-cache/app-emacs/bongo-1.1 b/metadata/md5-cache/app-emacs/bongo-1.1 index acbc969597cf..93696412f5a5 100644 --- a/metadata/md5-cache/app-emacs/bongo-1.1 +++ b/metadata/md5-cache/app-emacs/bongo-1.1 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/volume sys-apps/texinfo >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Buffer-oriented media player for Emacs EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/Bongo @@ -10,5 +10,5 @@ LICENSE=GPL-2+ FDL-1.2+ RDEPEND=app-emacs/volume >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/dbrock/bongo/archive/1.1.tar.gz -> bongo-1.1.tar.gz mplayer? ( mirror://gentoo/bongo-mplayer-20070204.tar.bz2 ) -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=71c654d9d1d75d8b68daa86b08e67684 diff --git a/metadata/md5-cache/app-emacs/boogie-friends-0.1_p20210703 b/metadata/md5-cache/app-emacs/boogie-friends-0.1_p20210703 index c1844c12e859..5455d48a60de 100644 --- a/metadata/md5-cache/app-emacs/boogie-friends-0.1_p20210703 +++ b/metadata/md5-cache/app-emacs/boogie-friends-0.1_p20210703 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/company-mode app-emacs/dash app-emacs/flycheck app-emacs/yasnippet >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs tools for interacting with Boogie, Dafny and Z3 (SMT2) EAPI=8 HOMEPAGE=https://github.com/boogie-org/boogie-friends/ @@ -10,5 +10,5 @@ RDEPEND=app-emacs/company-mode app-emacs/dash app-emacs/flycheck app-emacs/yasni RESTRICT=test SLOT=0 SRC_URI=https://github.com/boogie-org/boogie-friends/archive/1e3b6a8aee9fa7c113468838c5b647080caf3703.tar.gz -> boogie-friends-0.1_p20210703.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=fed35c0f6145bda61d708f4fe27235a4 diff --git a/metadata/md5-cache/app-emacs/boogie-friends-0.1_p20220922 b/metadata/md5-cache/app-emacs/boogie-friends-0.1_p20220922 index f37367734d8e..ff9d60a58268 100644 --- a/metadata/md5-cache/app-emacs/boogie-friends-0.1_p20220922 +++ b/metadata/md5-cache/app-emacs/boogie-friends-0.1_p20220922 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/company-mode app-emacs/dash app-emacs/flycheck app-emacs/yasnippet >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs tools for interacting with Boogie, Dafny and Z3 (SMT2) EAPI=8 HOMEPAGE=https://github.com/boogie-org/boogie-friends/ @@ -10,5 +10,5 @@ RDEPEND=app-emacs/company-mode app-emacs/dash app-emacs/flycheck app-emacs/yasni RESTRICT=test SLOT=0 SRC_URI=https://github.com/boogie-org/boogie-friends/archive/8d1bafab5dffc3c63324b5306503943e67497ddc.tar.gz -> boogie-friends-0.1_p20220922.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=1572c37ac7cf7495d47025eb2d4896b3 diff --git a/metadata/md5-cache/app-emacs/boxquote-2.1 b/metadata/md5-cache/app-emacs/boxquote-2.1 index 4c2bf1336fd8..3b688da7ef7f 100644 --- a/metadata/md5-cache/app-emacs/boxquote-2.1 +++ b/metadata/md5-cache/app-emacs/boxquote-2.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Quote text with a semi-box EAPI=7 HOMEPAGE=http://www.davep.org/emacs/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/davep/boxquote.el/archive/v2.1.tar.gz -> boxquote-2.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=0979523451600bffd9967675c43ff5d5 diff --git a/metadata/md5-cache/app-emacs/boxquote-2.2 b/metadata/md5-cache/app-emacs/boxquote-2.2 index 675ccdebfa43..3e307b638356 100644 --- a/metadata/md5-cache/app-emacs/boxquote-2.2 +++ b/metadata/md5-cache/app-emacs/boxquote-2.2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Quote text with a semi-box EAPI=8 HOMEPAGE=http://www.davep.org/emacs/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/davep/boxquote.el/archive/v2.2.tar.gz -> boxquote-2.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=74dfd2f5183b5eb4a58a07e1bc28928a diff --git a/metadata/md5-cache/app-emacs/boxquote-2.3 b/metadata/md5-cache/app-emacs/boxquote-2.3 index 5317d6f85b1f..49c5f5bf0e04 100644 --- a/metadata/md5-cache/app-emacs/boxquote-2.3 +++ b/metadata/md5-cache/app-emacs/boxquote-2.3 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Quote text with a semi-box EAPI=8 HOMEPAGE=http://www.davep.org/emacs/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/davep/boxquote.el/archive/v2.3.tar.gz -> boxquote-2.3.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=8da56de05664c5971a3d0c7975103cea diff --git a/metadata/md5-cache/app-emacs/browse-kill-ring-2.0.0 b/metadata/md5-cache/app-emacs/browse-kill-ring-2.0.0 index 811b3f8a208b..32dfc66b3824 100644 --- a/metadata/md5-cache/app-emacs/browse-kill-ring-2.0.0 +++ b/metadata/md5-cache/app-emacs/browse-kill-ring-2.0.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=An improved interface to kill-ring EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/BrowseKillRing https://github.com/browse-kill-ring/browse-kill-ring @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/browse-kill-ring/browse-kill-ring/archive/2.0.0.tar.gz -> browse-kill-ring-2.0.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=e8cce377e266a6ecc29a5ea15aa18920 diff --git a/metadata/md5-cache/app-emacs/bubblet-0.74-r1 b/metadata/md5-cache/app-emacs/bubblet-0.74-r1 index b1c789419de0..4a5e0e10c306 100644 --- a/metadata/md5-cache/app-emacs/bubblet-0.74-r1 +++ b/metadata/md5-cache/app-emacs/bubblet-0.74-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A bubble-popping game EAPI=7 HOMEPAGE=https://web.archive.org/web/20051217154122/www.gelatinous.com/pld/bubblet.html @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gentoo/bubblet-0.74.tar.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=078dc742e0b2b96682d4b5fc1a532f15 diff --git a/metadata/md5-cache/app-emacs/buffer-extension-0.1-r1 b/metadata/md5-cache/app-emacs/buffer-extension-0.1-r1 index 8dcab3b764fe..f31b8d002e01 100644 --- a/metadata/md5-cache/app-emacs/buffer-extension-0.1-r1 +++ b/metadata/md5-cache/app-emacs/buffer-extension-0.1-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=app-emacs/basic-toolkit DESCRIPTION=Some enhanced functions for buffer manipulate EAPI=8 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/basic-toolkit >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/gavv/distfiles/raw/master/buffer-extension-0.1.el.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=3bc360b585abc8ff360297cd97d5b2b1 diff --git a/metadata/md5-cache/app-emacs/bui-1.2.1_p20210108 b/metadata/md5-cache/app-emacs/bui-1.2.1_p20210108 index 8e5babb81aad..f0051ec8374f 100644 --- a/metadata/md5-cache/app-emacs/bui-1.2.1_p20210108 +++ b/metadata/md5-cache/app-emacs/bui-1.2.1_p20210108 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/dash >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Buffer interface library for Emacs EAPI=8 HOMEPAGE=https://github.com/alezost/bui.el/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/dash >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/alezost/bui.el/archive/f3a137628e112a91910fd33c0cff0948fa58d470.tar.gz -> bui-1.2.1_p20210108.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=47f733351dea1d0c9825d6fbc7d1bee1 diff --git a/metadata/md5-cache/app-emacs/buttercup-1.26 b/metadata/md5-cache/app-emacs/buttercup-1.26 index e24b25f66724..e86994bbafab 100644 --- a/metadata/md5-cache/app-emacs/buttercup-1.26 +++ b/metadata/md5-cache/app-emacs/buttercup-1.26 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/jorgenschaefer/emacs-buttercup/archive/v1.26.tar.gz -> buttercup-1.26.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=8eaccc6c1d963679ade46c8deaf2fee5 diff --git a/metadata/md5-cache/app-emacs/buttercup-1.28 b/metadata/md5-cache/app-emacs/buttercup-1.28 index e27597ac1b5b..9eb1343962b6 100644 --- a/metadata/md5-cache/app-emacs/buttercup-1.28 +++ b/metadata/md5-cache/app-emacs/buttercup-1.28 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/jorgenschaefer/emacs-buttercup/archive/v1.28.tar.gz -> buttercup-1.28.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=8eaccc6c1d963679ade46c8deaf2fee5 diff --git a/metadata/md5-cache/app-emacs/buttercup-1.29 b/metadata/md5-cache/app-emacs/buttercup-1.29 index 0adc1aaa6f03..78723df96caa 100644 --- a/metadata/md5-cache/app-emacs/buttercup-1.29 +++ b/metadata/md5-cache/app-emacs/buttercup-1.29 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/jorgenschaefer/emacs-buttercup/archive/v1.29.tar.gz -> buttercup-1.29.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=8eaccc6c1d963679ade46c8deaf2fee5 diff --git a/metadata/md5-cache/app-emacs/buttercup-1.30 b/metadata/md5-cache/app-emacs/buttercup-1.30 index 3b5a308b498d..d9eb57aace74 100644 --- a/metadata/md5-cache/app-emacs/buttercup-1.30 +++ b/metadata/md5-cache/app-emacs/buttercup-1.30 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/jorgenschaefer/emacs-buttercup/archive/v1.30.tar.gz -> buttercup-1.30.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=e3d40975b770949ddeb46687d0605f1d diff --git a/metadata/md5-cache/app-emacs/calfw-1.6 b/metadata/md5-cache/app-emacs/calfw-1.6 index e9c903aa6578..84f381543892 100644 --- a/metadata/md5-cache/app-emacs/calfw-1.6 +++ b/metadata/md5-cache/app-emacs/calfw-1.6 @@ -1,5 +1,5 @@ BDEPEND=howm? ( app-emacs/howm ) >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A calendar framework for Emacs EAPI=7 HOMEPAGE=https://github.com/kiwanami/emacs-calfw @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=howm? ( app-emacs/howm ) >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/kiwanami/emacs-calfw/archive/v1.6.tar.gz -> calfw-1.6.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=39c928de96cdb0ec10e4c0aa9b786aa2 diff --git a/metadata/md5-cache/app-emacs/cask-0.8.8 b/metadata/md5-cache/app-emacs/cask-0.8.8 index 6170e11cfeb3..0e9c98e1f429 100644 --- a/metadata/md5-cache/app-emacs/cask-0.8.8 +++ b/metadata/md5-cache/app-emacs/cask-0.8.8 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/ansi app-emacs/commander app-emacs/epl app-emacs/f app-emacs/package-build app-emacs/s app-emacs/shut-up >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Project management for Emacs package development EAPI=8 HOMEPAGE=https://github.com/cask/cask/ @@ -10,5 +10,5 @@ RDEPEND=app-emacs/ansi app-emacs/commander app-emacs/epl app-emacs/f app-emacs/p RESTRICT=test SLOT=0 SRC_URI=https://github.com/cask/cask/archive/v0.8.8.tar.gz -> cask-0.8.8.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=e385efe8161595770e0739bf88904158 diff --git a/metadata/md5-cache/app-emacs/cask-mode-0.1 b/metadata/md5-cache/app-emacs/cask-mode-0.1 index 18fe25d29aab..bfd42b2f4956 100644 --- a/metadata/md5-cache/app-emacs/cask-mode-0.1 +++ b/metadata/md5-cache/app-emacs/cask-mode-0.1 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Wilfred/cask-mode/archive/0.1.tar.gz -> cask-mode-0.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=8337923bb9935f06018b4054e147e823 diff --git a/metadata/md5-cache/app-emacs/centaur-tabs-3.2 b/metadata/md5-cache/app-emacs/centaur-tabs-3.2 index 1908ff4c5c0d..4d2b24cd422b 100644 --- a/metadata/md5-cache/app-emacs/centaur-tabs-3.2 +++ b/metadata/md5-cache/app-emacs/centaur-tabs-3.2 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/powerline >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Customizable tabs plugin for GNU Emacs EAPI=8 HOMEPAGE=https://github.com/ema2159/centaur-tabs/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=app-emacs/powerline >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/ema2159/centaur-tabs/archive/3.2.tar.gz -> centaur-tabs-3.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=5bdee8d1663adf7077cc543fd4f64c0e diff --git a/metadata/md5-cache/app-emacs/cfrs-1.6.0-r1 b/metadata/md5-cache/app-emacs/cfrs-1.6.0-r1 index 2e0db36f8055..86e11777544c 100644 --- a/metadata/md5-cache/app-emacs/cfrs-1.6.0-r1 +++ b/metadata/md5-cache/app-emacs/cfrs-1.6.0-r1 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/dash app-emacs/posframe app-emacs/s >=app-editors/emacs-26.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Child Frame Read String, alternative to read-string EAPI=8 HOMEPAGE=https://github.com/Alexander-Miller/cfrs/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/dash app-emacs/posframe app-emacs/s >=app-editors/emacs-26.1:* SLOT=0 SRC_URI=https://github.com/Alexander-Miller/cfrs/archive/1.6.0.tar.gz -> cfrs-1.6.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=88b9cef276da380354ce81d37b3b05d4 diff --git a/metadata/md5-cache/app-emacs/chess-2.0.4 b/metadata/md5-cache/app-emacs/chess-2.0.4 index 731146e648fd..ed15cb9e0888 100644 --- a/metadata/md5-cache/app-emacs/chess-2.0.4 +++ b/metadata/md5-cache/app-emacs/chess-2.0.4 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A chess client and library for Emacs EAPI=7 HOMEPAGE=https://elpa.gnu.org/packages/chess.html https://www.emacswiki.org/emacs/ChessMode @@ -9,5 +9,5 @@ LICENSE=GPL-3+ FDL-1.3+ RDEPEND=|| ( games-board/stockfish games-board/fruit games-board/gnuchess games-board/phalanx games-board/sjeng games-board/crafty ) >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/chess-2.0.4.tar.xz mirror://gentoo/emacs-chess-sounds-2.0.tar.bz2 mirror://gentoo/emacs-chess-pieces-2.0.tar.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=f2f5468c3daf0bc6d610a52fbc7081f8 diff --git a/metadata/md5-cache/app-emacs/chess-2.0.5 b/metadata/md5-cache/app-emacs/chess-2.0.5 index 186935475b18..574ab0bb2ee1 100644 --- a/metadata/md5-cache/app-emacs/chess-2.0.5 +++ b/metadata/md5-cache/app-emacs/chess-2.0.5 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A chess client and library for Emacs EAPI=7 HOMEPAGE=https://elpa.gnu.org/packages/chess.html https://www.emacswiki.org/emacs/ChessMode @@ -9,5 +9,5 @@ LICENSE=GPL-3+ FDL-1.3+ RDEPEND=|| ( games-board/stockfish games-board/fruit games-board/gnuchess games-board/phalanx games-board/sjeng games-board/crafty ) >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/chess-2.0.5.tar.xz https://dev.gentoo.org/~ulm/distfiles/emacs-chess-sounds-2.0.tar.bz2 https://dev.gentoo.org/~ulm/distfiles/emacs-chess-pieces-2.0.tar.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=b58b9b806ea0f98444770fe6e0de8bd3 diff --git a/metadata/md5-cache/app-emacs/cider-1.5.0 b/metadata/md5-cache/app-emacs/cider-1.5.0 index 1e72df59062b..1ea2b1b59859 100644 --- a/metadata/md5-cache/app-emacs/cider-1.5.0 +++ b/metadata/md5-cache/app-emacs/cider-1.5.0 @@ -11,5 +11,5 @@ RDEPEND=app-emacs/clojure-mode app-emacs/parseedn app-emacs/queue app-emacs/sesm RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/clojure-emacs/cider/archive/v1.5.0.tar.gz -> cider-1.5.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 _md5_=43a086579f7c1d75b418de2db98c48e6 diff --git a/metadata/md5-cache/app-emacs/cider-1.6.0 b/metadata/md5-cache/app-emacs/cider-1.6.0 index 9c3e1f42ac9f..91127a41a910 100644 --- a/metadata/md5-cache/app-emacs/cider-1.6.0 +++ b/metadata/md5-cache/app-emacs/cider-1.6.0 @@ -11,5 +11,5 @@ RDEPEND=app-emacs/clojure-mode app-emacs/parseedn app-emacs/queue app-emacs/sesm RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/clojure-emacs/cider/archive/v1.6.0.tar.gz -> cider-1.6.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 _md5_=eea924a67cb8ece5354880323024193d diff --git a/metadata/md5-cache/app-emacs/cider-1.7.0 b/metadata/md5-cache/app-emacs/cider-1.7.0 index 7c15b2454142..90009679ce0d 100644 --- a/metadata/md5-cache/app-emacs/cider-1.7.0 +++ b/metadata/md5-cache/app-emacs/cider-1.7.0 @@ -11,5 +11,5 @@ RDEPEND=app-emacs/clojure-mode app-emacs/parseedn app-emacs/queue app-emacs/sesm RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/clojure-emacs/cider/archive/v1.7.0.tar.gz -> cider-1.7.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 _md5_=ff59d2b3804aead9ab7c1b22aad64f57 diff --git a/metadata/md5-cache/app-emacs/circe-2.11 b/metadata/md5-cache/app-emacs/circe-2.11 index ae3a66b3721b..f55e31b53dfc 100644 --- a/metadata/md5-cache/app-emacs/circe-2.11 +++ b/metadata/md5-cache/app-emacs/circe-2.11 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A great IRC client for Emacs EAPI=7 HOMEPAGE=https://github.com/jorgenschaefer/circe https://www.emacswiki.org/emacs/Circe @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/jorgenschaefer/circe/archive/v2.11.tar.gz -> circe-2.11.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=f675fd3437d6dc0ac9b3f2e137db7aac diff --git a/metadata/md5-cache/app-emacs/circe-2.12 b/metadata/md5-cache/app-emacs/circe-2.12 index 83ef8f9a47ce..42fec18bc96a 100644 --- a/metadata/md5-cache/app-emacs/circe-2.12 +++ b/metadata/md5-cache/app-emacs/circe-2.12 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/jorgenschaefer/circe/archive/v2.12.tar.gz -> circe-2.12.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=d4f0a36d2ce129af8b9526a86e1e09e8 diff --git a/metadata/md5-cache/app-emacs/citar-1.1 b/metadata/md5-cache/app-emacs/citar-1.1 index d3fd77b6aac5..a5c2010e6415 100644 --- a/metadata/md5-cache/app-emacs/citar-1.1 +++ b/metadata/md5-cache/app-emacs/citar-1.1 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/citeproc-el app-emacs/parsebib >=app-editors/emacs-27.1:* SLOT=0 SRC_URI=https://github.com/emacs-citar/citar/archive/v1.1.tar.gz -> citar-1.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=fca572a3418d6d685f8cb2dfccd15ead diff --git a/metadata/md5-cache/app-emacs/citar-1.2.0 b/metadata/md5-cache/app-emacs/citar-1.2.0 index f346b14a04b2..824adffa6a4e 100644 --- a/metadata/md5-cache/app-emacs/citar-1.2.0 +++ b/metadata/md5-cache/app-emacs/citar-1.2.0 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/citeproc-el app-emacs/parsebib >=app-editors/emacs-27.1:* SLOT=0 SRC_URI=https://github.com/emacs-citar/citar/archive/v1.2.0.tar.gz -> citar-1.2.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=82fee0ea12c18b1763419245aa1e38e8 diff --git a/metadata/md5-cache/app-emacs/citar-1.3.1 b/metadata/md5-cache/app-emacs/citar-1.3.1 index e089f45f2715..b1d5c5fbbd02 100644 --- a/metadata/md5-cache/app-emacs/citar-1.3.1 +++ b/metadata/md5-cache/app-emacs/citar-1.3.1 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/citeproc-el app-emacs/parsebib >=app-editors/emacs-27.1:* SLOT=0 SRC_URI=https://github.com/emacs-citar/citar/archive/v1.3.1.tar.gz -> citar-1.3.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=7cf2bc7d2561794d4f5deb6fc45c327f diff --git a/metadata/md5-cache/app-emacs/citeproc-el-0.9.1 b/metadata/md5-cache/app-emacs/citeproc-el-0.9.1 index ce422799ac8d..c77676a618da 100644 --- a/metadata/md5-cache/app-emacs/citeproc-el-0.9.1 +++ b/metadata/md5-cache/app-emacs/citeproc-el-0.9.1 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-26:*[libxml2] app-emacs/dash app-emacs/f app-emacs/p RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/andras-simonyi/citeproc-el/archive/0.9.1.tar.gz -> citeproc-el-0.9.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=97d03043107578c98c258906effcee53 diff --git a/metadata/md5-cache/app-emacs/citeproc-el-0.9.2 b/metadata/md5-cache/app-emacs/citeproc-el-0.9.2 index 986533e0556e..dd101c6568fd 100644 --- a/metadata/md5-cache/app-emacs/citeproc-el-0.9.2 +++ b/metadata/md5-cache/app-emacs/citeproc-el-0.9.2 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-26:*[libxml2] app-emacs/dash app-emacs/f app-emacs/p RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/andras-simonyi/citeproc-el/archive/0.9.2.tar.gz -> citeproc-el-0.9.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=97d03043107578c98c258906effcee53 diff --git a/metadata/md5-cache/app-emacs/citeproc-el-0.9.3 b/metadata/md5-cache/app-emacs/citeproc-el-0.9.3 index 02258508d714..80b00f02bc7f 100644 --- a/metadata/md5-cache/app-emacs/citeproc-el-0.9.3 +++ b/metadata/md5-cache/app-emacs/citeproc-el-0.9.3 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-26:*[libxml2] app-emacs/dash app-emacs/f app-emacs/p RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/andras-simonyi/citeproc-el/archive/0.9.3.tar.gz -> citeproc-el-0.9.3.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=36436cb3f60a1d7639e6984f0c192a4b diff --git a/metadata/md5-cache/app-emacs/cldoc-1.16 b/metadata/md5-cache/app-emacs/cldoc-1.16 index 08e73d90ce4e..443ad14e5781 100644 --- a/metadata/md5-cache/app-emacs/cldoc-1.16 +++ b/metadata/md5-cache/app-emacs/cldoc-1.16 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Show Common Lisp operators and variables information in echo area EAPI=7 HOMEPAGE=http://homepage1.nifty.com/bmonkey/lisp/index-en.html @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=app-emacs/slime >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/cldoc-1.16.el.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=fb64bcd1b5d2c3eb48e6d2edf5b35153 diff --git a/metadata/md5-cache/app-emacs/clojure-mode-5.15.0 b/metadata/md5-cache/app-emacs/clojure-mode-5.15.0 index 188cbdd755ba..3da4948a181e 100644 --- a/metadata/md5-cache/app-emacs/clojure-mode-5.15.0 +++ b/metadata/md5-cache/app-emacs/clojure-mode-5.15.0 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/clojure-emacs/clojure-mode/archive/v5.15.0.tar.gz -> clojure-mode-5.15.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=ef94998d0292a6edb7a89a8e00084ed6 diff --git a/metadata/md5-cache/app-emacs/clojure-mode-5.15.1 b/metadata/md5-cache/app-emacs/clojure-mode-5.15.1 index 38a632b7ea14..e3fca328b326 100644 --- a/metadata/md5-cache/app-emacs/clojure-mode-5.15.1 +++ b/metadata/md5-cache/app-emacs/clojure-mode-5.15.1 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/clojure-emacs/clojure-mode/archive/v5.15.1.tar.gz -> clojure-mode-5.15.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=ef94998d0292a6edb7a89a8e00084ed6 diff --git a/metadata/md5-cache/app-emacs/clojure-mode-5.16.0 b/metadata/md5-cache/app-emacs/clojure-mode-5.16.0 index f532dd73d71c..bc2bb0681ac4 100644 --- a/metadata/md5-cache/app-emacs/clojure-mode-5.16.0 +++ b/metadata/md5-cache/app-emacs/clojure-mode-5.16.0 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/clojure-emacs/clojure-mode/archive/v5.16.0.tar.gz -> clojure-mode-5.16.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=49599101b904762d043c312c7fe30440 diff --git a/metadata/md5-cache/app-emacs/cmake-font-lock-0.1.12 b/metadata/md5-cache/app-emacs/cmake-font-lock-0.1.12 index ef57476ec78c..ed4933e1c0a8 100644 --- a/metadata/md5-cache/app-emacs/cmake-font-lock-0.1.12 +++ b/metadata/md5-cache/app-emacs/cmake-font-lock-0.1.12 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-26:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=dev-util/cmake[emacs] DESCRIPTION=Advanced, type aware, highlight support for CMake EAPI=8 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=dev-util/cmake[emacs] >=app-editors/emacs-26:* SLOT=0 SRC_URI=https://github.com/Lindydancer/cmake-font-lock/archive/0d6111b36a66013aa9b452e664c93308df3b07e1.tar.gz -> cmake-font-lock-0.1.12.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=e4607d6aeb9d9679923af6fe92eaf8d6 diff --git a/metadata/md5-cache/app-emacs/cmake-font-lock-0.1.13 b/metadata/md5-cache/app-emacs/cmake-font-lock-0.1.13 index 2a18a9b9bfec..458db6952f34 100644 --- a/metadata/md5-cache/app-emacs/cmake-font-lock-0.1.13 +++ b/metadata/md5-cache/app-emacs/cmake-font-lock-0.1.13 @@ -1,5 +1,5 @@ BDEPEND=dev-util/cmake[emacs] >=app-editors/emacs-26:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Advanced, type aware, highlight support for CMake EAPI=8 HOMEPAGE=https://github.com/Lindydancer/cmake-font-lock @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=dev-util/cmake[emacs] >=app-editors/emacs-26:* SLOT=0 SRC_URI=https://github.com/Lindydancer/cmake-font-lock/archive/0.1.13.tar.gz -> cmake-font-lock-0.1.13.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=a5c647f088c68405cf2cbff6c8d104df diff --git a/metadata/md5-cache/app-emacs/color-browser-0.3-r1 b/metadata/md5-cache/app-emacs/color-browser-0.3-r1 index 48cfc106e320..a45c93521fe5 100644 --- a/metadata/md5-cache/app-emacs/color-browser-0.3-r1 +++ b/metadata/md5-cache/app-emacs/color-browser-0.3-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=app-emacs/color-theme DESCRIPTION=A utility for designing Emacs color themes EAPI=7 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=app-emacs/color-theme >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gentoo/color-browser-0.3.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=9198d4b279ec0d292d206c17f78a72ff diff --git a/metadata/md5-cache/app-emacs/color-moccur-2.73 b/metadata/md5-cache/app-emacs/color-moccur-2.73 index e35ce938bb84..877ad524efbc 100644 --- a/metadata/md5-cache/app-emacs/color-moccur-2.73 +++ b/metadata/md5-cache/app-emacs/color-moccur-2.73 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Major mode for color moccur EAPI=7 HOMEPAGE=http://www.bookshelf.jp/ https://www.emacswiki.org/emacs/SearchBuffers @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/color-moccur-2.73.el.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=980d0fa568d60aecff6c43b4954e5d10 diff --git a/metadata/md5-cache/app-emacs/color-theme-6.6.0-r2 b/metadata/md5-cache/app-emacs/color-theme-6.6.0-r2 index 650e60dad8b9..e14cfa0b4b0f 100644 --- a/metadata/md5-cache/app-emacs/color-theme-6.6.0-r2 +++ b/metadata/md5-cache/app-emacs/color-theme-6.6.0-r2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Install color themes (includes many themes) EAPI=7 HOMEPAGE=http://www.nongnu.org/color-theme/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=http://download.savannah.gnu.org/releases-noredirect/color-theme/color-theme-6.6.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=bf5452351632191d7c2d8894eefe72bc diff --git a/metadata/md5-cache/app-emacs/commander-0.7.0-r1 b/metadata/md5-cache/app-emacs/commander-0.7.0-r1 index b2ff95399c4d..4dface4c8f16 100644 --- a/metadata/md5-cache/app-emacs/commander-0.7.0-r1 +++ b/metadata/md5-cache/app-emacs/commander-0.7.0-r1 @@ -11,5 +11,5 @@ RDEPEND=app-emacs/dash app-emacs/f app-emacs/s >=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/rejeep/commander.el/archive/v0.7.0.tar.gz -> commander-0.7.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=404fe1c8223335980ec9e4322ce5a9ab diff --git a/metadata/md5-cache/app-emacs/commenter-0.5.2 b/metadata/md5-cache/app-emacs/commenter-0.5.2 index 18abcc7769d7..2b3ac16a38d4 100644 --- a/metadata/md5-cache/app-emacs/commenter-0.5.2 +++ b/metadata/md5-cache/app-emacs/commenter-0.5.2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Set both single and multi line comment variables in Emacs Lisp EAPI=8 HOMEPAGE=https://github.com/yuutayamada/commenter/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/yuutayamada/commenter/archive/v0.5.2.tar.gz -> commenter-0.5.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=6d001bc0a9041bd407d608e1a9e4fab7 diff --git a/metadata/md5-cache/app-emacs/company-coq-1.0.1_p20210708-r1 b/metadata/md5-cache/app-emacs/company-coq-1.0.1_p20210708-r1 index 2bd06b862681..b3f9a5738601 100644 --- a/metadata/md5-cache/app-emacs/company-coq-1.0.1_p20210708-r1 +++ b/metadata/md5-cache/app-emacs/company-coq-1.0.1_p20210708-r1 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/company-math app-emacs/company-mode app-emacs/dash app-emacs/yasnippet >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Collection of extensions for Proof General's Coq mode EAPI=8 HOMEPAGE=https://github.com/cpitclaudel/company-coq/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/company-math app-emacs/company-mode app-emacs/dash app-emacs/yasnippet app-emacs/proofgeneral >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/cpitclaudel/company-coq/archive/382db93374380e5db56f02934ee32bbe39159019.tar.gz -> company-coq-1.0.1_p20210708.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=65b31f3c675498b322cd397e5e58c44e diff --git a/metadata/md5-cache/app-emacs/company-coq-1.0.1_p20220314 b/metadata/md5-cache/app-emacs/company-coq-1.0.1_p20220314 index 01362e986190..0931aec91da8 100644 --- a/metadata/md5-cache/app-emacs/company-coq-1.0.1_p20220314 +++ b/metadata/md5-cache/app-emacs/company-coq-1.0.1_p20220314 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/company-math app-emacs/company-mode app-emacs/dash app-emacs/yasnippet >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Collection of extensions for Proof General's Coq mode EAPI=8 HOMEPAGE=https://github.com/cpitclaudel/company-coq/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/company-math app-emacs/company-mode app-emacs/dash app-emacs/yasnippet app-emacs/proofgeneral >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/cpitclaudel/company-coq/archive/a6e349e0131f676a885bd14c908fd26054b2df42.tar.gz -> company-coq-1.0.1_p20220314.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=30c428c6b11ad3b697fe5672f92deedf diff --git a/metadata/md5-cache/app-emacs/company-ebuild-0.1.2 b/metadata/md5-cache/app-emacs/company-ebuild-0.1.2 index d6384883f081..774f5dc50814 100644 --- a/metadata/md5-cache/app-emacs/company-ebuild-0.1.2 +++ b/metadata/md5-cache/app-emacs/company-ebuild-0.1.2 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/company-mode app-emacs/ebuild-mode >=app-editors/emacs-26.2:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Company backend for editing Ebuild files EAPI=8 HOMEPAGE=https://gitweb.gentoo.org/proj/company-ebuild.git @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=app-emacs/company-mode app-emacs/ebuild-mode >=app-editors/emacs-26.2:* SLOT=0 SRC_URI=https://gitweb.gentoo.org/proj/company-ebuild.git/snapshot/company-ebuild-0.1.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=bf98785cc0f46df1c1c719b64a2533e0 diff --git a/metadata/md5-cache/app-emacs/company-ebuild-0.1.3 b/metadata/md5-cache/app-emacs/company-ebuild-0.1.3 index 2367ad4f9d27..48be09394ef2 100644 --- a/metadata/md5-cache/app-emacs/company-ebuild-0.1.3 +++ b/metadata/md5-cache/app-emacs/company-ebuild-0.1.3 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/company-mode app-emacs/ebuild-mode >=app-editors/emacs-26.2:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Company backend for editing Ebuild files EAPI=8 HOMEPAGE=https://gitweb.gentoo.org/proj/company-ebuild.git @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=app-emacs/company-mode app-emacs/ebuild-mode >=app-editors/emacs-26.2:* SLOT=0 SRC_URI=https://gitweb.gentoo.org/proj/company-ebuild.git/snapshot/company-ebuild-0.1.3.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=bf98785cc0f46df1c1c719b64a2533e0 diff --git a/metadata/md5-cache/app-emacs/company-ebuild-9999 b/metadata/md5-cache/app-emacs/company-ebuild-9999 index 43f910718763..d9eee122c84e 100644 --- a/metadata/md5-cache/app-emacs/company-ebuild-9999 +++ b/metadata/md5-cache/app-emacs/company-ebuild-9999 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/company-mode app-emacs/ebuild-mode >=app-editors/emacs-26.2:* >=dev-vcs/git-1.8.2.1[curl] -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Company backend for editing Ebuild files EAPI=8 HOMEPAGE=https://gitweb.gentoo.org/proj/company-ebuild.git @@ -8,5 +8,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=app-emacs/company-mode app-emacs/ebuild-mode >=app-editors/emacs-26.2:* SLOT=0 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 git-r3 27e13c09a4c7e4c78ac812f74727e676 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 git-r3 27e13c09a4c7e4c78ac812f74727e676 _md5_=2d12f1b18d7c0b432b8f593d3179cbb3 diff --git a/metadata/md5-cache/app-emacs/company-math-1.5 b/metadata/md5-cache/app-emacs/company-math-1.5 index a31c1f64943b..bf2f7230d421 100644 --- a/metadata/md5-cache/app-emacs/company-math-1.5 +++ b/metadata/md5-cache/app-emacs/company-math-1.5 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/company-mode app-emacs/math-symbol-lists >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Completion back-ends for for math unicode symbols and latex tags EAPI=8 HOMEPAGE=https://github.com/vspinu/company-math/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/company-mode app-emacs/math-symbol-lists >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/vspinu/company-math/archive/v1.5.tar.gz -> company-math-1.5.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=84b40958b2ebfe18b71c31098d6c2bab diff --git a/metadata/md5-cache/app-emacs/company-math-1.5.1 b/metadata/md5-cache/app-emacs/company-math-1.5.1 index fec5b5eaf0d6..8132ffded596 100644 --- a/metadata/md5-cache/app-emacs/company-math-1.5.1 +++ b/metadata/md5-cache/app-emacs/company-math-1.5.1 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/company-mode app-emacs/math-symbol-lists >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Completion back-ends for for math unicode symbols and latex tags EAPI=8 HOMEPAGE=https://github.com/vspinu/company-math/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/company-mode app-emacs/math-symbol-lists >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/vspinu/company-math/archive/v1.5.1.tar.gz -> company-math-1.5.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=84b40958b2ebfe18b71c31098d6c2bab diff --git a/metadata/md5-cache/app-emacs/company-mode-0.9.10 b/metadata/md5-cache/app-emacs/company-mode-0.9.10 index 8b92fa02f2a0..b264a472601a 100644 --- a/metadata/md5-cache/app-emacs/company-mode-0.9.10 +++ b/metadata/md5-cache/app-emacs/company-mode-0.9.10 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=In-buffer completion front-end EAPI=7 HOMEPAGE=https://company-mode.github.io/ @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/company-mode/company-mode/archive/0.9.10.tar.gz -> company-mode-0.9.10.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=7af47fd642b6f3c90e1b7430d7b4703e diff --git a/metadata/md5-cache/app-emacs/company-mode-0.9.13 b/metadata/md5-cache/app-emacs/company-mode-0.9.13 index b3e218616375..ee602d038ed5 100644 --- a/metadata/md5-cache/app-emacs/company-mode-0.9.13 +++ b/metadata/md5-cache/app-emacs/company-mode-0.9.13 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=In-buffer completion front-end EAPI=7 HOMEPAGE=https://company-mode.github.io/ @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/company-mode/company-mode/archive/0.9.13.tar.gz -> company-mode-0.9.13.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=7af47fd642b6f3c90e1b7430d7b4703e diff --git a/metadata/md5-cache/app-emacs/company-mode-0.9.13_p20220720 b/metadata/md5-cache/app-emacs/company-mode-0.9.13_p20220720 index bf01c3428ed4..d8f365c41fa8 100644 --- a/metadata/md5-cache/app-emacs/company-mode-0.9.13_p20220720 +++ b/metadata/md5-cache/app-emacs/company-mode-0.9.13_p20220720 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/company-mode/company-mode/archive/16ffeba5ef96c4c8e0cd39860b5402e25e304601.tar.gz -> company-mode-0.9.13_p20220720.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=375ad0f24ac51162301170234cd4322e diff --git a/metadata/md5-cache/app-emacs/company-mode-0.9.13_p20230306 b/metadata/md5-cache/app-emacs/company-mode-0.9.13_p20230306 index 97d7e8cf36bb..8bcaa01ab9ba 100644 --- a/metadata/md5-cache/app-emacs/company-mode-0.9.13_p20230306 +++ b/metadata/md5-cache/app-emacs/company-mode-0.9.13_p20230306 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/company-mode/company-mode/archive/b3b9fa37ef9fd02471779130a0b53d87fa726ac1.tar.gz -> company-mode-0.9.13_p20230306.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=2600ea39582a355cda2ae9a8f373e6d2 diff --git a/metadata/md5-cache/app-emacs/company-quickhelp-2.3.0 b/metadata/md5-cache/app-emacs/company-quickhelp-2.3.0 index 69955fdbfc4e..8fb190d90ffb 100644 --- a/metadata/md5-cache/app-emacs/company-quickhelp-2.3.0 +++ b/metadata/md5-cache/app-emacs/company-quickhelp-2.3.0 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/company-mode app-emacs/pos-tip >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Company documentation popups for completion candidates EAPI=8 HOMEPAGE=https://github.com/company-mode/company-quickhelp/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/company-mode app-emacs/pos-tip >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/company-mode/company-quickhelp/archive/2.3.0.tar.gz -> company-quickhelp-2.3.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=1a8c7dbb47f5b2bc286fd99ae2e6f290 diff --git a/metadata/md5-cache/app-emacs/compat-28.1.2.2 b/metadata/md5-cache/app-emacs/compat-28.1.2.2 index 40814a7541b6..58898e96704e 100644 --- a/metadata/md5-cache/app-emacs/compat-28.1.2.2 +++ b/metadata/md5-cache/app-emacs/compat-28.1.2.2 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://git.sr.ht/~pkal/compat/archive/28.1.2.2.tar.gz -> compat-28.1.2.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=4bb07907d7726412dd3a95c46b4b36c0 diff --git a/metadata/md5-cache/app-emacs/compat-29.1.1.0 b/metadata/md5-cache/app-emacs/compat-29.1.1.0 index d9e9ed4fdf82..5b025d5eb189 100644 --- a/metadata/md5-cache/app-emacs/compat-29.1.1.0 +++ b/metadata/md5-cache/app-emacs/compat-29.1.1.0 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/emacs-compat/compat/archive/29.1.1.0.tar.gz -> compat-29.1.1.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=b139ed4a3bea3855e73b9f7952bc3aa0 diff --git a/metadata/md5-cache/app-emacs/compat-29.1.3.3 b/metadata/md5-cache/app-emacs/compat-29.1.3.3 index 478aa5c9b425..b63318b38a37 100644 --- a/metadata/md5-cache/app-emacs/compat-29.1.3.3 +++ b/metadata/md5-cache/app-emacs/compat-29.1.3.3 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/emacs-compat/compat/archive/29.1.3.3.tar.gz -> compat-29.1.3.3.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=b139ed4a3bea3855e73b9f7952bc3aa0 diff --git a/metadata/md5-cache/app-emacs/compat-29.1.4.0 b/metadata/md5-cache/app-emacs/compat-29.1.4.0 index fd048b2cf959..ce4cad03e342 100644 --- a/metadata/md5-cache/app-emacs/compat-29.1.4.0 +++ b/metadata/md5-cache/app-emacs/compat-29.1.4.0 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/emacs-compat/compat/archive/29.1.4.0.tar.gz -> compat-29.1.4.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=73a83d165f829e3b2aec48cc5097600e diff --git a/metadata/md5-cache/app-emacs/compat-29.1.4.1 b/metadata/md5-cache/app-emacs/compat-29.1.4.1 index 9b8663c2fa19..8216fbdd959e 100644 --- a/metadata/md5-cache/app-emacs/compat-29.1.4.1 +++ b/metadata/md5-cache/app-emacs/compat-29.1.4.1 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/emacs-compat/compat/archive/29.1.4.1.tar.gz -> compat-29.1.4.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=d4cc974dc11e52cb86a77da7d978a419 diff --git a/metadata/md5-cache/app-emacs/consult-0.31 b/metadata/md5-cache/app-emacs/consult-0.31 index 6f22ffed36d8..4f60bdff52ec 100644 --- a/metadata/md5-cache/app-emacs/consult-0.31 +++ b/metadata/md5-cache/app-emacs/consult-0.31 @@ -1,5 +1,5 @@ BDEPEND=>=app-emacs/compat-28.1 >=app-editors/emacs-27:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Consulting complete-read EAPI=8 HOMEPAGE=https://github.com/minad/consult @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-emacs/compat-28.1 >=app-editors/emacs-27:* SLOT=0 SRC_URI=https://github.com/minad/consult/archive/refs/tags/0.31.tar.gz -> consult-0.31.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=903ae67f05b32b462a5f1546e212b83c diff --git a/metadata/md5-cache/app-emacs/consult-0.32 b/metadata/md5-cache/app-emacs/consult-0.32 index 3e85de598fea..ff3a51600a35 100644 --- a/metadata/md5-cache/app-emacs/consult-0.32 +++ b/metadata/md5-cache/app-emacs/consult-0.32 @@ -1,5 +1,5 @@ BDEPEND=>=app-emacs/compat-28.1 >=app-editors/emacs-27:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Consulting complete-read EAPI=8 HOMEPAGE=https://github.com/minad/consult @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-emacs/compat-28.1 >=app-editors/emacs-27:* SLOT=0 SRC_URI=https://github.com/minad/consult/archive/refs/tags/0.32.tar.gz -> consult-0.32.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=903ae67f05b32b462a5f1546e212b83c diff --git a/metadata/md5-cache/app-emacs/consult-0.33 b/metadata/md5-cache/app-emacs/consult-0.33 index bdf75fc65ab4..b3cea47e214f 100644 --- a/metadata/md5-cache/app-emacs/consult-0.33 +++ b/metadata/md5-cache/app-emacs/consult-0.33 @@ -1,5 +1,5 @@ BDEPEND=>=app-emacs/compat-28.1 >=app-editors/emacs-27:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Consulting complete-read EAPI=8 HOMEPAGE=https://github.com/minad/consult @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-emacs/compat-28.1 >=app-editors/emacs-27:* SLOT=0 SRC_URI=https://github.com/minad/consult/archive/refs/tags/0.33.tar.gz -> consult-0.33.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=903ae67f05b32b462a5f1546e212b83c diff --git a/metadata/md5-cache/app-emacs/consult-flycheck-0.8-r1 b/metadata/md5-cache/app-emacs/consult-flycheck-0.8-r1 index 171eb96fe419..2ce4afeff359 100644 --- a/metadata/md5-cache/app-emacs/consult-flycheck-0.8-r1 +++ b/metadata/md5-cache/app-emacs/consult-flycheck-0.8-r1 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/consult app-emacs/flycheck >=app-editors/emacs-26:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Consult integration for Flycheck EAPI=8 HOMEPAGE=https://github.com/minad/consult-flycheck @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/consult app-emacs/flycheck >=app-editors/emacs-26:* SLOT=0 SRC_URI=https://github.com/minad/consult-flycheck/archive/refs/tags/0.8.tar.gz -> consult-flycheck-0.8.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=33db8826e1a789f158bcfc9eaf21600a diff --git a/metadata/md5-cache/app-emacs/consult-flycheck-0.9-r2 b/metadata/md5-cache/app-emacs/consult-flycheck-0.9-r2 index 8abc95fc332a..084abadb0948 100644 --- a/metadata/md5-cache/app-emacs/consult-flycheck-0.9-r2 +++ b/metadata/md5-cache/app-emacs/consult-flycheck-0.9-r2 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/consult app-emacs/flycheck >=app-editors/emacs-27.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Consult integration for Flycheck EAPI=8 HOMEPAGE=https://github.com/minad/consult-flycheck @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/consult app-emacs/flycheck >=app-editors/emacs-27.1:* SLOT=0 SRC_URI=https://github.com/minad/consult-flycheck/archive/refs/tags/0.9.tar.gz -> consult-flycheck-0.9.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=6c362a78cf22410f7185925a99aa70fc diff --git a/metadata/md5-cache/app-emacs/corfu-0.34 b/metadata/md5-cache/app-emacs/corfu-0.34 index 27af83185a44..303a77e02d59 100644 --- a/metadata/md5-cache/app-emacs/corfu-0.34 +++ b/metadata/md5-cache/app-emacs/corfu-0.34 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-27.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Completion Overlay Region FUnction EAPI=8 HOMEPAGE=https://github.com/minad/corfu @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-27.1:* SLOT=0 SRC_URI=https://github.com/minad/corfu/archive/refs/tags/0.34.tar.gz -> corfu-0.34.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=3f22940e280e7b8f4220299fb0cc70b6 diff --git a/metadata/md5-cache/app-emacs/corfu-0.35 b/metadata/md5-cache/app-emacs/corfu-0.35 index 11d76070a03e..b878183956ff 100644 --- a/metadata/md5-cache/app-emacs/corfu-0.35 +++ b/metadata/md5-cache/app-emacs/corfu-0.35 @@ -1,5 +1,5 @@ BDEPEND=>=app-emacs/compat-29.1.3.4 >=app-editors/emacs-27.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Completion Overlay Region FUnction EAPI=8 HOMEPAGE=https://github.com/minad/corfu/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-emacs/compat-29.1.3.4 >=app-editors/emacs-27.1:* SLOT=0 SRC_URI=https://github.com/minad/corfu/archive/0.35.tar.gz -> corfu-0.35.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=8256ac9a12661742c97a80e1e8231765 diff --git a/metadata/md5-cache/app-emacs/corfu-0.36 b/metadata/md5-cache/app-emacs/corfu-0.36 index cc5cb0217093..839730ce062d 100644 --- a/metadata/md5-cache/app-emacs/corfu-0.36 +++ b/metadata/md5-cache/app-emacs/corfu-0.36 @@ -1,5 +1,5 @@ BDEPEND=>=app-emacs/compat-29.1.3.4 >=app-editors/emacs-27.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Completion Overlay Region FUnction EAPI=8 HOMEPAGE=https://github.com/minad/corfu/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-emacs/compat-29.1.3.4 >=app-editors/emacs-27.1:* SLOT=0 SRC_URI=https://github.com/minad/corfu/archive/0.36.tar.gz -> corfu-0.36.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=8256ac9a12661742c97a80e1e8231765 diff --git a/metadata/md5-cache/app-emacs/counsel-0.13.4 b/metadata/md5-cache/app-emacs/counsel-0.13.4 index b285d9ee35be..277d656159fb 100644 --- a/metadata/md5-cache/app-emacs/counsel-0.13.4 +++ b/metadata/md5-cache/app-emacs/counsel-0.13.4 @@ -1,5 +1,5 @@ BDEPEND=>=app-emacs/ivy-0.13.4 >=app-emacs/swiper-0.13.4 >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Versions of common Emacs commands customized to make the best use of ivy EAPI=8 HOMEPAGE=https://github.com/abo-abo/swiper/ @@ -10,5 +10,5 @@ RDEPEND=>=app-emacs/ivy-0.13.4 >=app-emacs/swiper-0.13.4 >=app-editors/emacs-25. RESTRICT=test SLOT=0 SRC_URI=https://github.com/abo-abo/swiper/archive/0.13.4.tar.gz -> swiper-0.13.4.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=bb46d60d52a4a93293ee76ef130d5ac6 diff --git a/metadata/md5-cache/app-emacs/counsel-0.14.0 b/metadata/md5-cache/app-emacs/counsel-0.14.0 index 32e391219aae..4389c0e66dc5 100644 --- a/metadata/md5-cache/app-emacs/counsel-0.14.0 +++ b/metadata/md5-cache/app-emacs/counsel-0.14.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-emacs/ivy-0.14.0 >=app-emacs/swiper-0.14.0 >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Versions of common Emacs commands customized to make the best use of ivy EAPI=8 HOMEPAGE=https://github.com/abo-abo/swiper/ @@ -10,5 +10,5 @@ RDEPEND=>=app-emacs/ivy-0.14.0 >=app-emacs/swiper-0.14.0 >=app-editors/emacs-25. RESTRICT=test SLOT=0 SRC_URI=https://github.com/abo-abo/swiper/archive/0.14.0.tar.gz -> swiper-0.14.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=826655c76d29b186f29b044b053c43df diff --git a/metadata/md5-cache/app-emacs/crontab-mode-1.20 b/metadata/md5-cache/app-emacs/crontab-mode-1.20 index 4e8a44518d28..80f5a8a7bdf7 100644 --- a/metadata/md5-cache/app-emacs/crontab-mode-1.20 +++ b/metadata/md5-cache/app-emacs/crontab-mode-1.20 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Mode for editing crontab files EAPI=7 HOMEPAGE=http://www.mahalito.net/~harley/elisp/ @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gentoo/crontab-mode-1.20.tar.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=de782acfe893333788d350de966286ad diff --git a/metadata/md5-cache/app-emacs/crux-0.4.0 b/metadata/md5-cache/app-emacs/crux-0.4.0 index 3ec3c9f96636..f85c554026e0 100644 --- a/metadata/md5-cache/app-emacs/crux-0.4.0 +++ b/metadata/md5-cache/app-emacs/crux-0.4.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Collection of Ridiculously Useful eXtensions for GNU Emacs EAPI=8 HOMEPAGE=https://github.com/bbatsov/crux/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/bbatsov/crux/archive/v0.4.0.tar.gz -> crux-0.4.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=de74de0c9e5725247d2576c0d18eb1ff diff --git a/metadata/md5-cache/app-emacs/crypt++-2.92 b/metadata/md5-cache/app-emacs/crypt++-2.92 index 5803968230fc..fd8e49a090ef 100644 --- a/metadata/md5-cache/app-emacs/crypt++-2.92 +++ b/metadata/md5-cache/app-emacs/crypt++-2.92 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Handle all sorts of compressed and encrypted files EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/CryptPlusPlus @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://debian/pool/main/c/crypt++el/crypt++el_2.92.orig.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=81d8a12dff8369cfdf4807cb29d500b9 diff --git a/metadata/md5-cache/app-emacs/crypt++-2.94_pre20080430 b/metadata/md5-cache/app-emacs/crypt++-2.94_pre20080430 index 1cbaf798cf91..9093076d2efb 100644 --- a/metadata/md5-cache/app-emacs/crypt++-2.94_pre20080430 +++ b/metadata/md5-cache/app-emacs/crypt++-2.94_pre20080430 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Handle all sorts of compressed and encrypted files EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/CryptPlusPlus @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/crypt++-2.94_pre20080430.el.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=7f68bc5bce64fbd16468f002c060cd69 diff --git a/metadata/md5-cache/app-emacs/csharp-mode-0.9.2 b/metadata/md5-cache/app-emacs/csharp-mode-0.9.2 index 1f8cbfd55ad6..4388c6fdb579 100644 --- a/metadata/md5-cache/app-emacs/csharp-mode-0.9.2 +++ b/metadata/md5-cache/app-emacs/csharp-mode-0.9.2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A derived Emacs mode implementing most of the C# rules EAPI=7 HOMEPAGE=https://github.com/josteink/csharp-mode @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/josteink/csharp-mode/archive/v0.9.2.tar.gz -> csharp-mode-0.9.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=41c54c7b6d88080fef94c04dbbbd1c89 diff --git a/metadata/md5-cache/app-emacs/csharp-mode-1.1.1-r1 b/metadata/md5-cache/app-emacs/csharp-mode-1.1.1-r1 index f2858d75fdd5..3dfe02bcd81c 100644 --- a/metadata/md5-cache/app-emacs/csharp-mode-1.1.1-r1 +++ b/metadata/md5-cache/app-emacs/csharp-mode-1.1.1-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A derived Emacs mode implementing most of the C# rules EAPI=8 HOMEPAGE=https://github.com/emacs-csharp/csharp-mode @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/emacs-csharp/csharp-mode/archive/refs/tags/1.1.1.tar.gz -> csharp-mode-1.1.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=cbdf6076560450b57ea8b08626176c47 diff --git a/metadata/md5-cache/app-emacs/csharp-mode-2.0.0 b/metadata/md5-cache/app-emacs/csharp-mode-2.0.0 index c1a0af265aaf..c5be035d2c5d 100644 --- a/metadata/md5-cache/app-emacs/csharp-mode-2.0.0 +++ b/metadata/md5-cache/app-emacs/csharp-mode-2.0.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A derived Emacs mode implementing most of the C# rules EAPI=8 HOMEPAGE=https://github.com/emacs-csharp/csharp-mode @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/emacs-csharp/csharp-mode/archive/refs/tags/2.0.0.tar.gz -> csharp-mode-2.0.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=dac83ee94e0216ed408cbbe2220d4c28 diff --git a/metadata/md5-cache/app-emacs/css-mode-0.11-r2 b/metadata/md5-cache/app-emacs/css-mode-0.11-r2 index c31401764daf..9288feba866e 100644 --- a/metadata/md5-cache/app-emacs/css-mode-0.11-r2 +++ b/metadata/md5-cache/app-emacs/css-mode-0.11-r2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A major mode for editing Cascading Style Sheets (CSS) EAPI=7 HOMEPAGE=https://www.garshol.priv.no/download/software/css-mode/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gentoo/css-mode-0.11.tar.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=96f2db1982cb5f28afd4312739e17287 diff --git a/metadata/md5-cache/app-emacs/css-sort-buffer-0.2 b/metadata/md5-cache/app-emacs/css-sort-buffer-0.2 index dd3e24ee4f22..7631e1e1b074 100644 --- a/metadata/md5-cache/app-emacs/css-sort-buffer-0.2 +++ b/metadata/md5-cache/app-emacs/css-sort-buffer-0.2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Sort CSS buffer EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/css-sort-buffer.el @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/css-sort-buffer-0.2.el.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=93df5e2ff021985f8304f2f0efb5d616 diff --git a/metadata/md5-cache/app-emacs/csv-mode-1.18 b/metadata/md5-cache/app-emacs/csv-mode-1.18 index 6edbb38f6dc3..3de9a4c95fc9 100644 --- a/metadata/md5-cache/app-emacs/csv-mode-1.18 +++ b/metadata/md5-cache/app-emacs/csv-mode-1.18 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A major mode for editing comma-separated value files EAPI=8 HOMEPAGE=https://elpa.gnu.org/packages/csv-mode.html https://www.emacswiki.org/emacs/CsvMode @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/csv-mode-1.18.el.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=cafb19e875b7e97f2914867338ee362d diff --git a/metadata/md5-cache/app-emacs/csv-mode-1.20 b/metadata/md5-cache/app-emacs/csv-mode-1.20 index 95805e2413b2..789ed732d62d 100644 --- a/metadata/md5-cache/app-emacs/csv-mode-1.20 +++ b/metadata/md5-cache/app-emacs/csv-mode-1.20 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A major mode for editing comma-separated value files EAPI=8 HOMEPAGE=https://elpa.gnu.org/packages/csv-mode.html https://www.emacswiki.org/emacs/CsvMode @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/csv-mode-1.20.el.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=cafb19e875b7e97f2914867338ee362d diff --git a/metadata/md5-cache/app-emacs/csv-mode-1.22 b/metadata/md5-cache/app-emacs/csv-mode-1.22 index 02c0e2ff7f36..4e565becec51 100644 --- a/metadata/md5-cache/app-emacs/csv-mode-1.22 +++ b/metadata/md5-cache/app-emacs/csv-mode-1.22 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-27.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~xgqt/distfiles/repackaged/csv-mode-1.22.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=c31cc93f10c65f2435c94b35597a5789 diff --git a/metadata/md5-cache/app-emacs/ctable-0.1.3 b/metadata/md5-cache/app-emacs/ctable-0.1.3 index 2cba2f7708d8..149e455dcb3c 100644 --- a/metadata/md5-cache/app-emacs/ctable-0.1.3 +++ b/metadata/md5-cache/app-emacs/ctable-0.1.3 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Table Component for Emacs Lisp EAPI=8 HOMEPAGE=https://github.com/kiwanami/emacs-ctable/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/kiwanami/emacs-ctable/archive/04dbcddeba1da1f39e885bc0d36240ff37d829e9.tar.gz -> ctable-0.1.3.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=03b62adec75da9fd313de332d9971a4c diff --git a/metadata/md5-cache/app-emacs/cycle-buffer-2.16-r1 b/metadata/md5-cache/app-emacs/cycle-buffer-2.16-r1 index 5f5409ab60c7..916b85c26927 100644 --- a/metadata/md5-cache/app-emacs/cycle-buffer-2.16-r1 +++ b/metadata/md5-cache/app-emacs/cycle-buffer-2.16-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Select buffer by cycling through EAPI=8 HOMEPAGE=https://www.emacswiki.org/emacs/cycle-buffer.el @@ -9,5 +9,5 @@ LICENSE=public-domain RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/gavv/distfiles/raw/master/cycle-buffer-2.16.el.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=7e69fb6e2d0ef2e5d911f6006ed31cab diff --git a/metadata/md5-cache/app-emacs/d-mode-2.0.10 b/metadata/md5-cache/app-emacs/d-mode-2.0.10 index 9d872d984c66..9584d2e6d7df 100644 --- a/metadata/md5-cache/app-emacs/d-mode-2.0.10 +++ b/metadata/md5-cache/app-emacs/d-mode-2.0.10 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs major mode for editing D code EAPI=7 HOMEPAGE=https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode https://www.emacswiki.org/emacs/DMode @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode/archive/2.0.10.tar.gz -> d-mode-2.0.10.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=1ce20f9973ed6636c74609c0b60f2fbb diff --git a/metadata/md5-cache/app-emacs/d-mode-2.0.11 b/metadata/md5-cache/app-emacs/d-mode-2.0.11 index ec401a217c20..31f0d73795f5 100644 --- a/metadata/md5-cache/app-emacs/d-mode-2.0.11 +++ b/metadata/md5-cache/app-emacs/d-mode-2.0.11 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs major mode for editing D code EAPI=8 HOMEPAGE=https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode https://www.emacswiki.org/emacs/DMode @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode/archive/2.0.11.tar.gz -> d-mode-2.0.11.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=ceca08e13c711654e8e42f684595f9fe diff --git a/metadata/md5-cache/app-emacs/d-mode-2.0.12 b/metadata/md5-cache/app-emacs/d-mode-2.0.12 index aecbc96917d8..6c9e873f79b5 100644 --- a/metadata/md5-cache/app-emacs/d-mode-2.0.12 +++ b/metadata/md5-cache/app-emacs/d-mode-2.0.12 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode/archive/2.0.12.tar.gz -> d-mode-2.0.12.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=903fc6c08f0a7be29250d9ff2be7ac05 diff --git a/metadata/md5-cache/app-emacs/dap-mode-0.7 b/metadata/md5-cache/app-emacs/dap-mode-0.7 index d8c8ee7a3f64..61893ef99983 100644 --- a/metadata/md5-cache/app-emacs/dap-mode-0.7 +++ b/metadata/md5-cache/app-emacs/dap-mode-0.7 @@ -11,5 +11,5 @@ RDEPEND=app-emacs/bui app-emacs/dash app-emacs/f app-emacs/ht app-emacs/lsp-mode RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/emacs-lsp/dap-mode/archive/0.7.tar.gz -> dap-mode-0.7.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=026a2c3dd575a10f4675803a5b5d5226 diff --git a/metadata/md5-cache/app-emacs/dash-2.16.0 b/metadata/md5-cache/app-emacs/dash-2.16.0 index d29b6d2f3764..406b38baf7ff 100644 --- a/metadata/md5-cache/app-emacs/dash-2.16.0 +++ b/metadata/md5-cache/app-emacs/dash-2.16.0 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/magnars/dash.el/archive/2.16.0.tar.gz -> dash-2.16.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=458cece7a89bda772136ecc61d30aedb diff --git a/metadata/md5-cache/app-emacs/dash-2.17.0 b/metadata/md5-cache/app-emacs/dash-2.17.0 index 9280705dfebc..5d40206c6768 100644 --- a/metadata/md5-cache/app-emacs/dash-2.17.0 +++ b/metadata/md5-cache/app-emacs/dash-2.17.0 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/magnars/dash.el/archive/2.17.0.tar.gz -> dash-2.17.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=51060b3b02c2aa75f2835128c6baceec diff --git a/metadata/md5-cache/app-emacs/dash-2.18.1 b/metadata/md5-cache/app-emacs/dash-2.18.1 index 20340ac5ac92..1ff039157178 100644 --- a/metadata/md5-cache/app-emacs/dash-2.18.1 +++ b/metadata/md5-cache/app-emacs/dash-2.18.1 @@ -1,5 +1,5 @@ BDEPEND=sys-apps/texinfo >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A modern list library for Emacs EAPI=7 HOMEPAGE=https://github.com/magnars/dash.el @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/magnars/dash.el/archive/2.18.1.tar.gz -> dash-2.18.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=4134404663bef3ce47778ca4e699de9a diff --git a/metadata/md5-cache/app-emacs/dash-2.19.0 b/metadata/md5-cache/app-emacs/dash-2.19.0 index 64508e909d3e..b8d9c5b84d0f 100644 --- a/metadata/md5-cache/app-emacs/dash-2.19.0 +++ b/metadata/md5-cache/app-emacs/dash-2.19.0 @@ -1,5 +1,5 @@ BDEPEND=sys-apps/texinfo >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A modern list library for Emacs EAPI=8 HOMEPAGE=https://github.com/magnars/dash.el @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/magnars/dash.el/archive/2.19.0.tar.gz -> dash-2.19.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=1739ee2204801795d2803b8cfe844936 diff --git a/metadata/md5-cache/app-emacs/dash-2.19.1 b/metadata/md5-cache/app-emacs/dash-2.19.1 index 048275fc796b..0bc483bb1292 100644 --- a/metadata/md5-cache/app-emacs/dash-2.19.1 +++ b/metadata/md5-cache/app-emacs/dash-2.19.1 @@ -1,5 +1,5 @@ BDEPEND=sys-apps/texinfo >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A modern list library for Emacs EAPI=8 HOMEPAGE=https://github.com/magnars/dash.el @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/magnars/dash.el/archive/2.19.1.tar.gz -> dash-2.19.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=4bc121e998d339a8f5ec087cdae0f5b2 diff --git a/metadata/md5-cache/app-emacs/dashboard-1.8.0_pre20220406 b/metadata/md5-cache/app-emacs/dashboard-1.8.0_pre20220406 index c86a3a890126..f59806749c4d 100644 --- a/metadata/md5-cache/app-emacs/dashboard-1.8.0_pre20220406 +++ b/metadata/md5-cache/app-emacs/dashboard-1.8.0_pre20220406 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-26.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Extensible Emacs dashboard, with sections like bookmarks, agenda and more EAPI=8 HOMEPAGE=https://github.com/emacs-dashboard/emacs-dashboard/ @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-26.1:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/emacs-dashboard/emacs-dashboard/archive/69f98f5a89451c0881d0abb34ad57dd71616006a.tar.gz -> dashboard-1.8.0_pre20220406.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=0a946dcf078ad757555cfdde155d65f6 diff --git a/metadata/md5-cache/app-emacs/dashboard-1.8.0_pre20220809 b/metadata/md5-cache/app-emacs/dashboard-1.8.0_pre20220809 index 584cbe3e0765..4c100290aa60 100644 --- a/metadata/md5-cache/app-emacs/dashboard-1.8.0_pre20220809 +++ b/metadata/md5-cache/app-emacs/dashboard-1.8.0_pre20220809 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-26.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Extensible Emacs dashboard, with sections like bookmarks, agenda and more EAPI=8 HOMEPAGE=https://github.com/emacs-dashboard/emacs-dashboard/ @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-26.1:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/emacs-dashboard/emacs-dashboard/archive/49e5603cac7d028bfc4c679161a20ca40327956c.tar.gz -> dashboard-1.8.0_pre20220809.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=3abb473cd1e8bf42a064812f928b4623 diff --git a/metadata/md5-cache/app-emacs/dashboard-1.8.0_pre20230401 b/metadata/md5-cache/app-emacs/dashboard-1.8.0_pre20230401 index 1aa13811ef50..e1c56aa91d62 100644 --- a/metadata/md5-cache/app-emacs/dashboard-1.8.0_pre20230401 +++ b/metadata/md5-cache/app-emacs/dashboard-1.8.0_pre20230401 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-26.1:* SLOT=0 SRC_URI=https://github.com/emacs-dashboard/emacs-dashboard/archive/0f970d298931f9de7b511086728af140bf44a642.tar.gz -> dashboard-1.8.0_pre20230401.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=837d16f4805ddcdb2fca8ef6472e8498 diff --git a/metadata/md5-cache/app-emacs/ddskk-17.1 b/metadata/md5-cache/app-emacs/ddskk-17.1 index dde425a24300..a7db61babdeb 100644 --- a/metadata/md5-cache/app-emacs/ddskk-17.1 +++ b/metadata/md5-cache/app-emacs/ddskk-17.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=One Japanese input methods on Emacs EAPI=7 HOMEPAGE=http://openlab.ring.gr.jp/skk/ @@ -11,5 +11,5 @@ RDEPEND=|| ( app-i18n/skk-jisyo virtual/skkserv ) ruby? ( || ( ( dev-lang/ruby:3 RESTRICT=test SLOT=0 SRC_URI=https://github.com/skk-dev/ddskk/archive/ddskk-17.1_Neppu.tar.gz -> ddskk-17.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 ruby-single 291cec9036393ebb5b11a4199edce193 ruby-utils 2412b1152083f1e866ae6df229d51d30 vcs-snapshot eab6d8533446763c2e9777d8bbd1594e +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 ruby-single 291cec9036393ebb5b11a4199edce193 ruby-utils 2412b1152083f1e866ae6df229d51d30 vcs-snapshot eab6d8533446763c2e9777d8bbd1594e _md5_=572fa3bc0e6182cbabbe9930f00ec6bd diff --git a/metadata/md5-cache/app-emacs/ddskk-17.1-r1 b/metadata/md5-cache/app-emacs/ddskk-17.1-r1 index 0b9510161996..317652caa013 100644 --- a/metadata/md5-cache/app-emacs/ddskk-17.1-r1 +++ b/metadata/md5-cache/app-emacs/ddskk-17.1-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=One Japanese input methods on Emacs EAPI=8 HOMEPAGE=http://openlab.ring.gr.jp/skk/ @@ -11,5 +11,5 @@ RDEPEND=|| ( app-i18n/skk-jisyo virtual/skkserv ) ruby? ( || ( ( dev-lang/ruby:3 RESTRICT=test SLOT=0 SRC_URI=https://github.com/skk-dev/ddskk/archive/ddskk-17.1_Neppu.tar.gz -> ddskk-17.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 ruby-single 291cec9036393ebb5b11a4199edce193 ruby-utils 2412b1152083f1e866ae6df229d51d30 vcs-snapshot eab6d8533446763c2e9777d8bbd1594e +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 ruby-single 291cec9036393ebb5b11a4199edce193 ruby-utils 2412b1152083f1e866ae6df229d51d30 vcs-snapshot eab6d8533446763c2e9777d8bbd1594e _md5_=11e215e4061fa30f35c0c9d54c4cdf74 diff --git a/metadata/md5-cache/app-emacs/deferred-0.5.1 b/metadata/md5-cache/app-emacs/deferred-0.5.1 index 5fe6cfe221e7..bff4ba858bba 100644 --- a/metadata/md5-cache/app-emacs/deferred-0.5.1 +++ b/metadata/md5-cache/app-emacs/deferred-0.5.1 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/kiwanami/emacs-deferred/archive/v0.5.1.tar.gz -> deferred-0.5.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=a1c5d6058c5c2f8920e6572acdf73496 diff --git a/metadata/md5-cache/app-emacs/deft-08_p20210707 b/metadata/md5-cache/app-emacs/deft-08_p20210707 index 023a1fa04462..72520184a2f4 100644 --- a/metadata/md5-cache/app-emacs/deft-08_p20210707 +++ b/metadata/md5-cache/app-emacs/deft-08_p20210707 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Quickly browse, filter and edit directories of plain text notes EAPI=8 HOMEPAGE=https://github.com/jrblevin/deft/ @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/jrblevin/deft/archive/28be94d89bff2e1c7edef7244d7c5ba0636b1296.tar.gz -> deft-08_p20210707.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=bec2186ad00710ec1557e4c241d7fd06 diff --git a/metadata/md5-cache/app-emacs/demap-1.4.0 b/metadata/md5-cache/app-emacs/demap-1.4.0 index db38e651b7d3..8f7274deefe4 100644 --- a/metadata/md5-cache/app-emacs/demap-1.4.0 +++ b/metadata/md5-cache/app-emacs/demap-1.4.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Detachable minimap for Emacs EAPI=8 HOMEPAGE=https://gitlab.com/sawyerjgardner/demap.el/ @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://gitlab.com/sawyerjgardner/demap.el/-/archive/v1.4.0/demap.el-v1.4.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=b0bb08bb5bed305f182192dd9ce6c07b diff --git a/metadata/md5-cache/app-emacs/desktop+-0.2-r2 b/metadata/md5-cache/app-emacs/desktop+-0.2-r2 index 8370e6bdd1c6..ee394c409420 100644 --- a/metadata/md5-cache/app-emacs/desktop+-0.2-r2 +++ b/metadata/md5-cache/app-emacs/desktop+-0.2-r2 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/dash app-emacs/f >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=desktop+ extends standard desktop module EAPI=7 HOMEPAGE=https://github.com/ffevotte/desktop-plus @@ -10,5 +10,5 @@ RDEPEND=app-emacs/dash app-emacs/f >=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/ffevotte/desktop-plus/archive/v0.2.tar.gz -> desktop+-0.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=098794d4cd6c17343c24ddd702f19e63 diff --git a/metadata/md5-cache/app-emacs/develock-0.47 b/metadata/md5-cache/app-emacs/develock-0.47 index c606d49188f4..faecdc10c7ff 100644 --- a/metadata/md5-cache/app-emacs/develock-0.47 +++ b/metadata/md5-cache/app-emacs/develock-0.47 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=An Emacs minor mode for highlighting broken formatting rules EAPI=7 HOMEPAGE=https://www.jpl.org/ftp/pub/elisp/ https://www.emacswiki.org/emacs/DevelockMode @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/develock-0.47.el.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=25f6146ad67bb6e1a6b95e860bae5925 diff --git a/metadata/md5-cache/app-emacs/df-mode-20050509-r1 b/metadata/md5-cache/app-emacs/df-mode-20050509-r1 index da7107d476d2..687b62151a7a 100644 --- a/metadata/md5-cache/app-emacs/df-mode-20050509-r1 +++ b/metadata/md5-cache/app-emacs/df-mode-20050509-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Minor mode to show space left on devices in the mode line EAPI=7 HOMEPAGE=https://web.archive.org/web/20061001221337/http://www.coli.uni-saarland.de/~fouvry/software.html https://www.emacswiki.org/emacs/DfMode @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gentoo/df-mode-20050509.el.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=9d0cfa22df387422eb3c3b3c23065f41 diff --git a/metadata/md5-cache/app-emacs/dictionary-1.10 b/metadata/md5-cache/app-emacs/dictionary-1.10 index 348ed2b52b89..320089205bec 100644 --- a/metadata/md5-cache/app-emacs/dictionary-1.10 +++ b/metadata/md5-cache/app-emacs/dictionary-1.10 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs package for talking to a dictionary server EAPI=7 HOMEPAGE=https://www.myrkr.in-berlin.de/dictionary/index.html @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://www.myrkr.in-berlin.de/dictionary/dictionary-1.10.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=14506c1dbe66f42bd3aa4b67e4f8dd79 diff --git a/metadata/md5-cache/app-emacs/dictionary-1.11 b/metadata/md5-cache/app-emacs/dictionary-1.11 index cde93e7705f1..dedb64bc328b 100644 --- a/metadata/md5-cache/app-emacs/dictionary-1.11 +++ b/metadata/md5-cache/app-emacs/dictionary-1.11 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs package for talking to a dictionary server EAPI=8 HOMEPAGE=https://www.myrkr.in-berlin.de/dictionary/index.html @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/myrkr/dictionary-el/archive/refs/tags/v1.11.tar.gz -> dictionary-1.11.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=2def75f9f58b87ea2be0997879bd21fd diff --git a/metadata/md5-cache/app-emacs/diff-hl-1.9.0 b/metadata/md5-cache/app-emacs/diff-hl-1.9.0 index 66f21fcbaace..094f807e2042 100644 --- a/metadata/md5-cache/app-emacs/diff-hl-1.9.0 +++ b/metadata/md5-cache/app-emacs/diff-hl-1.9.0 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/dgutov/diff-hl/archive/37b00f3bad841e131d69442a89cbebc3041d996b.tar.gz -> diff-hl-1.9.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=1ad52ded3408a4bb8eec79e806dd58e0 diff --git a/metadata/md5-cache/app-emacs/diff-hl-1.9.1 b/metadata/md5-cache/app-emacs/diff-hl-1.9.1 index 2582780cbf71..ff1dbb915def 100644 --- a/metadata/md5-cache/app-emacs/diff-hl-1.9.1 +++ b/metadata/md5-cache/app-emacs/diff-hl-1.9.1 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/dgutov/diff-hl/archive/8f2e4eb345f0639c8fc41e3f7576f77ba6987655.tar.gz -> diff-hl-1.9.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=074b2a6442dee4e21fab979f6cf462e1 diff --git a/metadata/md5-cache/app-emacs/diff-hl-1.9.2 b/metadata/md5-cache/app-emacs/diff-hl-1.9.2 index fde22872f780..a614429170e9 100644 --- a/metadata/md5-cache/app-emacs/diff-hl-1.9.2 +++ b/metadata/md5-cache/app-emacs/diff-hl-1.9.2 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/dgutov/diff-hl/archive/1.9.2.tar.gz -> diff-hl-1.9.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=01841b0267375634faf9b15c2236e1ad diff --git a/metadata/md5-cache/app-emacs/diminish-0.46_pre20220128 b/metadata/md5-cache/app-emacs/diminish-0.46_pre20220128 index 2bcb9f67662d..f0fa6b474868 100644 --- a/metadata/md5-cache/app-emacs/diminish-0.46_pre20220128 +++ b/metadata/md5-cache/app-emacs/diminish-0.46_pre20220128 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Hiding or abbreviation of the mode line displays (lighters) EAPI=8 HOMEPAGE=https://github.com/myrjola/diminish.el/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/myrjola/diminish.el/archive/6b7e837b0cf0129e9d7d6abae48093cf599bb9e8.tar.gz -> diminish-0.46_pre20220128.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=5256f2f1aa9cb933f8bd9a8ee7c63aa1 diff --git a/metadata/md5-cache/app-emacs/dircolors-1.0-r2 b/metadata/md5-cache/app-emacs/dircolors-1.0-r2 index 953f37758b1a..5016b92c6361 100644 --- a/metadata/md5-cache/app-emacs/dircolors-1.0-r2 +++ b/metadata/md5-cache/app-emacs/dircolors-1.0-r2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Provide the same facility of ls --color inside Emacs EAPI=7 HOMEPAGE=http://lfs.irisa.fr/~pad/rawaccess.query/hacks/dircolors.el @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gentoo/dircolors-1.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=5083b45b333e3746b6f47e734b1c24d9 diff --git a/metadata/md5-cache/app-emacs/dired-sort-menu-1.26 b/metadata/md5-cache/app-emacs/dired-sort-menu-1.26 index 43dee9b96bb6..3720b9dd6502 100644 --- a/metadata/md5-cache/app-emacs/dired-sort-menu-1.26 +++ b/metadata/md5-cache/app-emacs/dired-sort-menu-1.26 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Sort entries in Dired mode EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/DiredSortMenu @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gentoo/dired-sort-menu-1.26.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=ba155b4528c27a3edb8c3198a928e938 diff --git a/metadata/md5-cache/app-emacs/distel-4.1.1 b/metadata/md5-cache/app-emacs/distel-4.1.1 index 1b9166e37034..6e11e759d37b 100644 --- a/metadata/md5-cache/app-emacs/distel-4.1.1 +++ b/metadata/md5-cache/app-emacs/distel-4.1.1 @@ -1,5 +1,5 @@ BDEPEND=>=dev-lang/erlang-11.2.5[emacs] >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Distributed Emacs Lisp for Erlang EAPI=7 HOMEPAGE=https://massemanet.github.io/distel/ https://www.emacswiki.org/emacs/DistributedEmacsLisp @@ -10,5 +10,5 @@ LICENSE=BSD MIT RDEPEND=>=dev-lang/erlang-11.2.5[emacs] >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/massemanet/distel/archive/4.1.1.tar.gz -> distel-4.1.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=8bbad2669cec464d5be5b9ed3114bc73 diff --git a/metadata/md5-cache/app-emacs/docker-2.2.0_p20221012 b/metadata/md5-cache/app-emacs/docker-2.2.0_p20221012 index c77c37d055ca..f11ab51b95e5 100644 --- a/metadata/md5-cache/app-emacs/docker-2.2.0_p20221012 +++ b/metadata/md5-cache/app-emacs/docker-2.2.0_p20221012 @@ -1,5 +1,5 @@ BDEPEND=>=app-emacs/transient-0.3.7_p20220918 app-emacs/dash app-emacs/docker-tramp app-emacs/emacs-aio app-emacs/s app-emacs/tablist >=app-editors/emacs-26.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs integration for Docker EAPI=8 HOMEPAGE=https://github.com/Silex/docker.el/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-emacs/transient-0.3.7_p20220918 app-emacs/dash app-emacs/docker-tramp app-emacs/emacs-aio app-emacs/s app-emacs/tablist >=app-editors/emacs-26.1:* SLOT=0 SRC_URI=https://github.com/Silex/docker.el/archive/3173403a2d51a2af36f7fdb0b7d2bec9e202e772.tar.gz -> docker.el-2.2.0_p20221012.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=5d49bab16dcafcffb88baf12e5482c4a diff --git a/metadata/md5-cache/app-emacs/docker-tramp-0.1.1 b/metadata/md5-cache/app-emacs/docker-tramp-0.1.1 index 638dd839e31b..5658ba10c5e9 100644 --- a/metadata/md5-cache/app-emacs/docker-tramp-0.1.1 +++ b/metadata/md5-cache/app-emacs/docker-tramp-0.1.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs TRAMP integration for docker containers EAPI=8 HOMEPAGE=https://github.com/emacs-pe/docker-tramp.el/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/emacs-pe/docker-tramp.el/archive/v0.1.1.tar.gz -> docker-tramp-0.1.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=17b007bb629c007e4b328d94a6acb4d4 diff --git a/metadata/md5-cache/app-emacs/dockerfile-mode-1.6-r1 b/metadata/md5-cache/app-emacs/dockerfile-mode-1.6-r1 index c131000700f7..5c5b7f311c34 100644 --- a/metadata/md5-cache/app-emacs/dockerfile-mode-1.6-r1 +++ b/metadata/md5-cache/app-emacs/dockerfile-mode-1.6-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=GNU Emacs mode for handling Dockerfiles EAPI=8 HOMEPAGE=https://github.com/spotify/dockerfile-mode/ @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/spotify/dockerfile-mode/archive/v1.6.tar.gz -> dockerfile-mode-1.6.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=d33bb0e417f21238cf54cb07bdc125fe diff --git a/metadata/md5-cache/app-emacs/dockerfile-mode-1.7-r1 b/metadata/md5-cache/app-emacs/dockerfile-mode-1.7-r1 index 436bbee839dd..8fa23a7f976d 100644 --- a/metadata/md5-cache/app-emacs/dockerfile-mode-1.7-r1 +++ b/metadata/md5-cache/app-emacs/dockerfile-mode-1.7-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=GNU Emacs mode for handling Dockerfiles EAPI=8 HOMEPAGE=https://github.com/spotify/dockerfile-mode/ @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/spotify/dockerfile-mode/archive/v1.7.tar.gz -> dockerfile-mode-1.7.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=d33bb0e417f21238cf54cb07bdc125fe diff --git a/metadata/md5-cache/app-emacs/dockerfile-mode-1.8-r1 b/metadata/md5-cache/app-emacs/dockerfile-mode-1.8-r1 index a4796dcfe40e..5e92839d0db4 100644 --- a/metadata/md5-cache/app-emacs/dockerfile-mode-1.8-r1 +++ b/metadata/md5-cache/app-emacs/dockerfile-mode-1.8-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=GNU Emacs mode for handling Dockerfiles EAPI=8 HOMEPAGE=https://github.com/spotify/dockerfile-mode/ @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/spotify/dockerfile-mode/archive/v1.8.tar.gz -> dockerfile-mode-1.8.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=d33bb0e417f21238cf54cb07bdc125fe diff --git a/metadata/md5-cache/app-emacs/doctest-mode-0.4 b/metadata/md5-cache/app-emacs/doctest-mode-0.4 index f816801da945..c449112cb8c5 100644 --- a/metadata/md5-cache/app-emacs/doctest-mode-0.4 +++ b/metadata/md5-cache/app-emacs/doctest-mode-0.4 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=An Emacs major mode for editing Python source EAPI=7 HOMEPAGE=http://ed.loper.org/projects/doctestmode/ @@ -9,5 +9,5 @@ LICENSE=HPND RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=http://python-mode.svn.sourceforge.net/viewvc/*checkout*/python-mode/trunk/python-mode/doctest-mode.el?revision=460 -> doctest-mode.el -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=812a49f35f41eba94928569f822e3e49 diff --git a/metadata/md5-cache/app-emacs/doom-modeline-3.3.2 b/metadata/md5-cache/app-emacs/doom-modeline-3.3.2 index bcac3821f8d9..98b4baf6f456 100644 --- a/metadata/md5-cache/app-emacs/doom-modeline-3.3.2 +++ b/metadata/md5-cache/app-emacs/doom-modeline-3.3.2 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/all-the-icons app-emacs/compat app-emacs/shrink-path >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/seagle0128/doom-modeline/archive/v3.3.2.tar.gz -> doom-modeline-3.3.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 -_md5_=1487567264586c737d891ff929226620 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 +_md5_=9501fd19bbdb9a4adf38a4ea4e7fbcf3 diff --git a/metadata/md5-cache/app-emacs/doom-themes-2.1.6_p20220505 b/metadata/md5-cache/app-emacs/doom-themes-2.1.6_p20220505 index 3bd0825281e5..d900f4409871 100644 --- a/metadata/md5-cache/app-emacs/doom-themes-2.1.6_p20220505 +++ b/metadata/md5-cache/app-emacs/doom-themes-2.1.6_p20220505 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/doomemacs/themes/archive/e9bdd137116fa2037ed60037b8421cf68c64888d.tar.gz -> doom-themes-2.1.6_p20220505.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=e7c40554ecddc9a71927aea5e377f5ba diff --git a/metadata/md5-cache/app-emacs/doom-themes-2.3.0 b/metadata/md5-cache/app-emacs/doom-themes-2.3.0 index 14611bb14125..9dbb9de833bf 100644 --- a/metadata/md5-cache/app-emacs/doom-themes-2.3.0 +++ b/metadata/md5-cache/app-emacs/doom-themes-2.3.0 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/doomemacs/themes/archive/v2.3.0.tar.gz -> doom-themes-2.3.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=e2e359e818f03bb03a86e265311d554f diff --git a/metadata/md5-cache/app-emacs/doxymacs-1.8.0-r4 b/metadata/md5-cache/app-emacs/doxymacs-1.8.0-r4 index 149f1b220978..1917129a4e59 100644 --- a/metadata/md5-cache/app-emacs/doxymacs-1.8.0-r4 +++ b/metadata/md5-cache/app-emacs/doxymacs-1.8.0-r4 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=>=dev-libs/libxml2-2.6.13 DESCRIPTION=Doxygen editing minor mode EAPI=7 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-libs/libxml2-2.6.13 >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://sourceforge/doxymacs/doxymacs-1.8.0.tar.gz -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=e0255f9454f782e31e26e29bb993044b diff --git a/metadata/md5-cache/app-emacs/dropdown-list-20120329 b/metadata/md5-cache/app-emacs/dropdown-list-20120329 index b87d597eee7c..ed0e6c2d2942 100644 --- a/metadata/md5-cache/app-emacs/dropdown-list-20120329 +++ b/metadata/md5-cache/app-emacs/dropdown-list-20120329 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Drop-down menu interface EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/dropdown-list.el @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/dropdown-list-20120329.el.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=96ec52ab3306c474bae9d1e0a225c5f4 diff --git a/metadata/md5-cache/app-emacs/dts-mode-0.1.0_pre20161103 b/metadata/md5-cache/app-emacs/dts-mode-0.1.0_pre20161103 index edbe46f13008..b1839d3e293a 100644 --- a/metadata/md5-cache/app-emacs/dts-mode-0.1.0_pre20161103 +++ b/metadata/md5-cache/app-emacs/dts-mode-0.1.0_pre20161103 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs major mode for devicetree sources EAPI=7 HOMEPAGE=https://github.com/bgamari/dts-mode @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/bgamari/dts-mode/archive/9ee0854446dcc6c53d2b8d2941051768dba50344.tar.gz -> dts-mode-0.1.0_pre20161103.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=e8b695cc744fac577ee31bc10b1aff7b diff --git a/metadata/md5-cache/app-emacs/dts-mode-0.1.1 b/metadata/md5-cache/app-emacs/dts-mode-0.1.1 index 190ecdfdaa53..f62491721aac 100644 --- a/metadata/md5-cache/app-emacs/dts-mode-0.1.1 +++ b/metadata/md5-cache/app-emacs/dts-mode-0.1.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs major mode for devicetree sources EAPI=7 HOMEPAGE=https://github.com/bgamari/dts-mode https://elpa.gnu.org/packages/dts-mode.html @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/dts-mode-0.1.1.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=e62d304eb7f72482075b538ccb5d6d1a diff --git a/metadata/md5-cache/app-emacs/dts-mode-1.0 b/metadata/md5-cache/app-emacs/dts-mode-1.0 index 863b816efff1..b9af0fcbd535 100644 --- a/metadata/md5-cache/app-emacs/dts-mode-1.0 +++ b/metadata/md5-cache/app-emacs/dts-mode-1.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs major mode for devicetree sources EAPI=8 HOMEPAGE=https://github.com/bgamari/dts-mode https://elpa.gnu.org/packages/dts-mode.html @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://elpa.gnu.org/packages/dts-mode-1.0.tar -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=d480fafa9b3c8296ffe97488f8fe59e3 diff --git a/metadata/md5-cache/app-emacs/dune-format-0.1 b/metadata/md5-cache/app-emacs/dune-format-0.1 index a8bd35d058bd..d6d4fe9e402d 100644 --- a/metadata/md5-cache/app-emacs/dune-format-0.1 +++ b/metadata/md5-cache/app-emacs/dune-format-0.1 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/reformatter >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Reformat OCaml's dune files automatically EAPI=8 HOMEPAGE=https://github.com/purcell/emacs-dune-format/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/reformatter dev-ml/dune >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/purcell/emacs-dune-format/archive/0.1.tar.gz -> dune-format-0.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=2243bff98adcebacd0fca96c8f9c7a1a diff --git a/metadata/md5-cache/app-emacs/dwarf-mode-2.39-r1 b/metadata/md5-cache/app-emacs/dwarf-mode-2.39-r1 index 50fa98a0c3b9..54e7e20b382e 100644 --- a/metadata/md5-cache/app-emacs/dwarf-mode-2.39-r1 +++ b/metadata/md5-cache/app-emacs/dwarf-mode-2.39-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs mode to browse DWARF information EAPI=8 HOMEPAGE=https://sourceware.org/binutils/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=!sys-devel/binutils[emacs(-)] >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gnu/binutils/binutils-2.39.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=964c6b5cb208e380d2676c76fa799489 diff --git a/metadata/md5-cache/app-emacs/dwarf-mode-2.40 b/metadata/md5-cache/app-emacs/dwarf-mode-2.40 index 1d11e430834a..93c46c940848 100644 --- a/metadata/md5-cache/app-emacs/dwarf-mode-2.40 +++ b/metadata/md5-cache/app-emacs/dwarf-mode-2.40 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs mode to browse DWARF information EAPI=8 HOMEPAGE=https://sourceware.org/binutils/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=!sys-devel/binutils[emacs(-)] >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gnu/binutils/binutils-2.40.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=21a0c502abdd91129291ea8f9a254635 diff --git a/metadata/md5-cache/app-emacs/ebib-2.38 b/metadata/md5-cache/app-emacs/ebib-2.38 index 45085d764d62..8b0f7bf270d9 100644 --- a/metadata/md5-cache/app-emacs/ebib-2.38 +++ b/metadata/md5-cache/app-emacs/ebib-2.38 @@ -11,5 +11,5 @@ RDEPEND=app-emacs/parsebib >=app-editors/emacs-26.1:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/joostkremers/ebib/archive/2.38.tar.gz -> ebib-2.38.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=62295e9969c0872a831b0b2264eb78ec diff --git a/metadata/md5-cache/app-emacs/ebib-2.38.1 b/metadata/md5-cache/app-emacs/ebib-2.38.1 index a7a79fffc11c..9ba0bae0394a 100644 --- a/metadata/md5-cache/app-emacs/ebib-2.38.1 +++ b/metadata/md5-cache/app-emacs/ebib-2.38.1 @@ -11,5 +11,5 @@ RDEPEND=app-emacs/parsebib >=app-editors/emacs-26.1:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/joostkremers/ebib/archive/0e243a78f435038dda31953c5b48cbddf2a89e27.tar.gz -> ebib-2.38.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=deb797e743ad6db04b4553753c4eb1d6 diff --git a/metadata/md5-cache/app-emacs/ebib-2.39.3 b/metadata/md5-cache/app-emacs/ebib-2.39.3 index b92452f31ea8..e9a304898305 100644 --- a/metadata/md5-cache/app-emacs/ebib-2.39.3 +++ b/metadata/md5-cache/app-emacs/ebib-2.39.3 @@ -11,5 +11,5 @@ RDEPEND=app-emacs/parsebib >=app-editors/emacs-26.1:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/joostkremers/ebib/archive/2.39.3.tar.gz -> ebib-2.39.3.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=62295e9969c0872a831b0b2264eb78ec diff --git a/metadata/md5-cache/app-emacs/ebuild-mode-1.60 b/metadata/md5-cache/app-emacs/ebuild-mode-1.60 index 4377e8dfb81f..5612d050fe1d 100644 --- a/metadata/md5-cache/app-emacs/ebuild-mode-1.60 +++ b/metadata/md5-cache/app-emacs/ebuild-mode-1.60 @@ -1,5 +1,5 @@ BDEPEND=sys-apps/texinfo >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs modes for editing ebuilds and other Gentoo specific files EAPI=8 HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Emacs @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/emacs/ebuild-mode-1.60.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=5c886e4c5080ca675a64ca991ae17dad diff --git a/metadata/md5-cache/app-emacs/ebuild-mode-1.61 b/metadata/md5-cache/app-emacs/ebuild-mode-1.61 index 63c1fe0ecfe4..1afe82007a9c 100644 --- a/metadata/md5-cache/app-emacs/ebuild-mode-1.61 +++ b/metadata/md5-cache/app-emacs/ebuild-mode-1.61 @@ -1,5 +1,5 @@ BDEPEND=sys-apps/texinfo >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs modes for editing ebuilds and other Gentoo specific files EAPI=8 HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Emacs @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/emacs/ebuild-mode-1.61.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 _md5_=ffda2f5f9d531c9c75c68513905f2efa diff --git a/metadata/md5-cache/app-emacs/ebuild-mode-1.62 b/metadata/md5-cache/app-emacs/ebuild-mode-1.62 index ccec423c7184..9b7ee65b2e1e 100644 --- a/metadata/md5-cache/app-emacs/ebuild-mode-1.62 +++ b/metadata/md5-cache/app-emacs/ebuild-mode-1.62 @@ -1,5 +1,5 @@ BDEPEND=sys-apps/texinfo >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs modes for editing ebuilds and other Gentoo specific files EAPI=8 HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Emacs @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/emacs/ebuild-mode-1.62.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 _md5_=ffda2f5f9d531c9c75c68513905f2efa diff --git a/metadata/md5-cache/app-emacs/ebuild-mode-1.63 b/metadata/md5-cache/app-emacs/ebuild-mode-1.63 index 1990401b5c96..b649ece13194 100644 --- a/metadata/md5-cache/app-emacs/ebuild-mode-1.63 +++ b/metadata/md5-cache/app-emacs/ebuild-mode-1.63 @@ -1,5 +1,5 @@ BDEPEND=sys-apps/texinfo >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs modes for editing ebuilds and other Gentoo specific files EAPI=8 HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Emacs @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/emacs/ebuild-mode-1.63.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 _md5_=7ca750a6cba17c8cad610afa6b6179e4 diff --git a/metadata/md5-cache/app-emacs/ebuild-run-mode-20210713 b/metadata/md5-cache/app-emacs/ebuild-run-mode-20210713 index d48c446a5ec9..adb54c112e06 100644 --- a/metadata/md5-cache/app-emacs/ebuild-run-mode-20210713 +++ b/metadata/md5-cache/app-emacs/ebuild-run-mode-20210713 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Major mode for Emacs buffers where ebuild commands run EAPI=8 HOMEPAGE=https://gitlab.com/akater/emacs-ebuild-run-mode @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-emacs/ebuild-mode-1.53 >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://gitlab.com/akater/emacs-ebuild-run-mode/-/archive/v20210713/emacs-ebuild-run-mode-v20210713.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=280bc0ba66178b5c111f462a1a94eb46 diff --git a/metadata/md5-cache/app-emacs/ebuild-run-mode-20221116 b/metadata/md5-cache/app-emacs/ebuild-run-mode-20221116 index bfb0fee76a06..a9345d990615 100644 --- a/metadata/md5-cache/app-emacs/ebuild-run-mode-20221116 +++ b/metadata/md5-cache/app-emacs/ebuild-run-mode-20221116 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Major mode for Emacs buffers where ebuild commands run EAPI=8 HOMEPAGE=https://gitlab.com/akater/emacs-ebuild-run-mode @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-emacs/ebuild-mode-1.53 >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://gitlab.com/akater/emacs-ebuild-run-mode/-/archive/v20221116/emacs-ebuild-run-mode-v20221116.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=280bc0ba66178b5c111f462a1a94eb46 diff --git a/metadata/md5-cache/app-emacs/ecb-2.50_pre20170728 b/metadata/md5-cache/app-emacs/ecb-2.50_pre20170728 index e5844243594b..4a493cc7e534 100644 --- a/metadata/md5-cache/app-emacs/ecb-2.50_pre20170728 +++ b/metadata/md5-cache/app-emacs/ecb-2.50_pre20170728 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Source code browser for Emacs EAPI=7 HOMEPAGE=http://ecb.sourceforge.net/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/ecb-2.50_pre20170728.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=aca7824ff1468519c38785d386d983f3 diff --git a/metadata/md5-cache/app-emacs/ecukes-0.6.18-r1 b/metadata/md5-cache/app-emacs/ecukes-0.6.18-r1 index 484d272e2f27..088a88f0ea1d 100644 --- a/metadata/md5-cache/app-emacs/ecukes-0.6.18-r1 +++ b/metadata/md5-cache/app-emacs/ecukes-0.6.18-r1 @@ -11,5 +11,5 @@ RDEPEND=app-emacs/ansi app-emacs/commander app-emacs/dash app-emacs/espuds app-e RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/ecukes/ecukes/archive/v0.6.18.tar.gz -> ecukes-0.6.18.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=43b406857d40b9465eeab32513233c49 diff --git a/metadata/md5-cache/app-emacs/edb-1.34 b/metadata/md5-cache/app-emacs/edb-1.34 index 512500663bed..c4dc1d66dee7 100644 --- a/metadata/md5-cache/app-emacs/edb-1.34 +++ b/metadata/md5-cache/app-emacs/edb-1.34 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=EDB, The Emacs Database EAPI=8 HOMEPAGE=https://www.gnuvola.org/software/edb/ https://www.emacswiki.org/emacs/EmacsDataBase @@ -9,5 +9,5 @@ LICENSE=GPL-3+ Texinfo-manual RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://www.gnuvola.org/software/edb/edb-1.34.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=576cef1a8bfee130598b47695b809722 diff --git a/metadata/md5-cache/app-emacs/edit-list-0.3 b/metadata/md5-cache/app-emacs/edit-list-0.3 index b8355752c9d4..3fc541bcc584 100644 --- a/metadata/md5-cache/app-emacs/edit-list-0.3 +++ b/metadata/md5-cache/app-emacs/edit-list-0.3 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Edit a single list EAPI=7 HOMEPAGE=https://mwolson.org/projects/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/edit-list-0.3.el.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=027e0de24fa4258414e07822717aa374 diff --git a/metadata/md5-cache/app-emacs/edit-server-1.15 b/metadata/md5-cache/app-emacs/edit-server-1.15 index 45382e8c0557..27ce726de181 100644 --- a/metadata/md5-cache/app-emacs/edit-server-1.15 +++ b/metadata/md5-cache/app-emacs/edit-server-1.15 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Service edit requests from a web browser for editing of textareas EAPI=7 HOMEPAGE=https://github.com/stsquad/emacs_chrome @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/stsquad/emacs_chrome/archive/v1.15.tar.gz -> emacs_chrome-1.15.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=c4ba721291f40f8820688ec4f7d711c4 diff --git a/metadata/md5-cache/app-emacs/edit-server-1.16 b/metadata/md5-cache/app-emacs/edit-server-1.16 index f56658115fcd..6e2c0c59162b 100644 --- a/metadata/md5-cache/app-emacs/edit-server-1.16 +++ b/metadata/md5-cache/app-emacs/edit-server-1.16 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Service edit requests from a web browser for editing of textareas EAPI=8 HOMEPAGE=https://github.com/stsquad/emacs_chrome @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/stsquad/emacs_chrome/archive/v1.16.tar.gz -> emacs_chrome-1.16.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=3b6c814941b66e20c044e183526e9560 diff --git a/metadata/md5-cache/app-emacs/editorconfig-emacs-0.7.8-r3 b/metadata/md5-cache/app-emacs/editorconfig-emacs-0.7.8-r3 index 5592617f2843..1914c5920113 100644 --- a/metadata/md5-cache/app-emacs/editorconfig-emacs-0.7.8-r3 +++ b/metadata/md5-cache/app-emacs/editorconfig-emacs-0.7.8-r3 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=EditorConfig plugin for emacs EAPI=7 HOMEPAGE=https://github.com/editorconfig/editorconfig-emacs @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/editorconfig/editorconfig-emacs/archive/v0.7.8.tar.gz -> editorconfig-emacs-0.7.8.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=b78a78b6812195c340c981b9cd77464a diff --git a/metadata/md5-cache/app-emacs/editorconfig-emacs-0.8.2-r2 b/metadata/md5-cache/app-emacs/editorconfig-emacs-0.8.2-r2 index 5bf3e1af5a4a..5eb5e7bebd6c 100644 --- a/metadata/md5-cache/app-emacs/editorconfig-emacs-0.8.2-r2 +++ b/metadata/md5-cache/app-emacs/editorconfig-emacs-0.8.2-r2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=EditorConfig plugin for emacs EAPI=8 HOMEPAGE=https://github.com/editorconfig/editorconfig-emacs @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/editorconfig/editorconfig-emacs/archive/v0.8.2.tar.gz -> editorconfig-emacs-0.8.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=9d6c06891a317064d83c9b98025cebc0 diff --git a/metadata/md5-cache/app-emacs/editorconfig-emacs-0.9.0 b/metadata/md5-cache/app-emacs/editorconfig-emacs-0.9.0 index 0b00ee4645fd..5eabcef4d54a 100644 --- a/metadata/md5-cache/app-emacs/editorconfig-emacs-0.9.0 +++ b/metadata/md5-cache/app-emacs/editorconfig-emacs-0.9.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=EditorConfig plugin for emacs EAPI=8 HOMEPAGE=https://github.com/editorconfig/editorconfig-emacs @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/editorconfig/editorconfig-emacs/archive/v0.9.0.tar.gz -> editorconfig-emacs-0.9.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=d50134f7705d4eb1346ecbaafe621639 diff --git a/metadata/md5-cache/app-emacs/editorconfig-emacs-0.9.1 b/metadata/md5-cache/app-emacs/editorconfig-emacs-0.9.1 index 8a83cef146bb..05fbe14c3085 100644 --- a/metadata/md5-cache/app-emacs/editorconfig-emacs-0.9.1 +++ b/metadata/md5-cache/app-emacs/editorconfig-emacs-0.9.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=EditorConfig plugin for emacs EAPI=8 HOMEPAGE=https://github.com/editorconfig/editorconfig-emacs @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/editorconfig/editorconfig-emacs/archive/v0.9.1.tar.gz -> editorconfig-emacs-0.9.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=ecf5ec0523a01fd58f41410298397aa6 diff --git a/metadata/md5-cache/app-emacs/eglot-1.11 b/metadata/md5-cache/app-emacs/eglot-1.11 index 49f187ac8f3e..6b3c9d0872cd 100644 --- a/metadata/md5-cache/app-emacs/eglot-1.11 +++ b/metadata/md5-cache/app-emacs/eglot-1.11 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/external-completion >=app-editors/emacs-26.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A minimal Emacs LSP client EAPI=8 HOMEPAGE=https://github.com/joaotavora/eglot/ https://elpa.gnu.org/packages/eglot.html @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=app-emacs/external-completion >=app-editors/emacs-26.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~xgqt/distfiles/repackaged/eglot-1.11.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=66d6a1db9745abe986013dab95ca845a diff --git a/metadata/md5-cache/app-emacs/eglot-1.13 b/metadata/md5-cache/app-emacs/eglot-1.13 index 0557cd8c819b..e0cd33dc7542 100644 --- a/metadata/md5-cache/app-emacs/eglot-1.13 +++ b/metadata/md5-cache/app-emacs/eglot-1.13 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/external-completion >=app-editors/emacs-26.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A minimal Emacs LSP client EAPI=8 HOMEPAGE=https://github.com/joaotavora/eglot/ https://elpa.gnu.org/packages/eglot.html @@ -10,5 +10,5 @@ RDEPEND=app-emacs/external-completion >=app-editors/emacs-26.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/joaotavora/eglot/archive/563d01ab6d4a2f92f38bf92e9702014191031343.tar.gz -> eglot-1.13.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=7f1e0d425cb2edca7f8a5eb192778d6b diff --git a/metadata/md5-cache/app-emacs/eglot-1.9 b/metadata/md5-cache/app-emacs/eglot-1.9 index 80385b566c58..23cbdd4ac563 100644 --- a/metadata/md5-cache/app-emacs/eglot-1.9 +++ b/metadata/md5-cache/app-emacs/eglot-1.9 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-26.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A minimal Emacs LSP client EAPI=8 HOMEPAGE=https://github.com/joaotavora/eglot @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-26.1:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/joaotavora/eglot/archive/refs/tags/1.9.tar.gz -> eglot-1.9.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=509f0b8a786b2ad9fefd782b70ec9514 diff --git a/metadata/md5-cache/app-emacs/el-mock-1.25.1 b/metadata/md5-cache/app-emacs/el-mock-1.25.1 index a4b1100f7ff7..7f8f93881316 100644 --- a/metadata/md5-cache/app-emacs/el-mock-1.25.1 +++ b/metadata/md5-cache/app-emacs/el-mock-1.25.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Mocking library for Emacs EAPI=8 HOMEPAGE=https://github.com/rejeep/el-mock.el/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/rejeep/el-mock.el/archive/v1.25.1.tar.gz -> el-mock-1.25.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=a96e2e3fb2de0b7d46ac58ab418b83f3 diff --git a/metadata/md5-cache/app-emacs/eldev-1.2.2 b/metadata/md5-cache/app-emacs/eldev-1.2.2 index 0a01bc205dd9..5b434d8d3918 100644 --- a/metadata/md5-cache/app-emacs/eldev-1.2.2 +++ b/metadata/md5-cache/app-emacs/eldev-1.2.2 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/doublep/eldev/archive/1.2.2.tar.gz -> eldev-1.2.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=be91ab36c497a2b33690858159bf310d diff --git a/metadata/md5-cache/app-emacs/eldev-1.3 b/metadata/md5-cache/app-emacs/eldev-1.3 index 1a3bf4c0df9c..62e6e9b073f8 100644 --- a/metadata/md5-cache/app-emacs/eldev-1.3 +++ b/metadata/md5-cache/app-emacs/eldev-1.3 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/doublep/eldev/archive/1.3.tar.gz -> eldev-1.3.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=be91ab36c497a2b33690858159bf310d diff --git a/metadata/md5-cache/app-emacs/eldev-1.3.1 b/metadata/md5-cache/app-emacs/eldev-1.3.1 index 2be4fad1e96a..c234309259a9 100644 --- a/metadata/md5-cache/app-emacs/eldev-1.3.1 +++ b/metadata/md5-cache/app-emacs/eldev-1.3.1 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/doublep/eldev/archive/1.3.1.tar.gz -> eldev-1.3.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=be91ab36c497a2b33690858159bf310d diff --git a/metadata/md5-cache/app-emacs/elfeed-3.4.1_p20210822 b/metadata/md5-cache/app-emacs/elfeed-3.4.1_p20210822 index 263d9fd79c9c..d53afb2fcb11 100644 --- a/metadata/md5-cache/app-emacs/elfeed-3.4.1_p20210822 +++ b/metadata/md5-cache/app-emacs/elfeed-3.4.1_p20210822 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs web feeds client EAPI=8 HOMEPAGE=https://github.com/skeeto/elfeed/ @@ -9,5 +9,5 @@ LICENSE=Unlicense RDEPEND=net-misc/curl[ssl] >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/skeeto/elfeed/archive/162d7d545ed41c27967d108c04aa31f5a61c8e16.tar.gz -> elfeed-3.4.1_p20210822.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=a72ef6e776a7bf760a2bc342de0e8845 diff --git a/metadata/md5-cache/app-emacs/elixir-mode-2.3.2_p20220314 b/metadata/md5-cache/app-emacs/elixir-mode-2.3.2_p20220314 index 7646654884c2..f2d4ba836c3e 100644 --- a/metadata/md5-cache/app-emacs/elixir-mode-2.3.2_p20220314 +++ b/metadata/md5-cache/app-emacs/elixir-mode-2.3.2_p20220314 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/elixir-editors/emacs-elixir/archive/e0d0466d83ec80ddb412bb1473908a21baad1ec3.tar.gz -> elixir-mode-2.3.2_p20220314.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=5b504aa74ab0c87113911f8e31e36fd6 diff --git a/metadata/md5-cache/app-emacs/elpher-3.4.2 b/metadata/md5-cache/app-emacs/elpher-3.4.2 index 2c910b3b101f..fa44291f6a00 100644 --- a/metadata/md5-cache/app-emacs/elpher-3.4.2 +++ b/metadata/md5-cache/app-emacs/elpher-3.4.2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-27.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Practical and friendly Gopher and Gemini client for GNU Emacs EAPI=8 HOMEPAGE=https://thelambdalab.xyz/elpher/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-27.1:* SLOT=0 SRC_URI=https://thelambdalab.xyz/gitweb/index.cgi?p=elpher.git;a=snapshot;h=f117f2f;sf=tgz -> elpher-3.4.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=5f8a8bf44c64e5596958e41f9db8e5a8 diff --git a/metadata/md5-cache/app-emacs/elpher-3.4.3 b/metadata/md5-cache/app-emacs/elpher-3.4.3 index 374c9f2225b3..672f4817030b 100644 --- a/metadata/md5-cache/app-emacs/elpher-3.4.3 +++ b/metadata/md5-cache/app-emacs/elpher-3.4.3 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-27.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Practical and friendly Gopher and Gemini client for GNU Emacs EAPI=8 HOMEPAGE=https://thelambdalab.xyz/elpher/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-27.1:* SLOT=0 SRC_URI=https://thelambdalab.xyz/gitweb/index.cgi?p=elpher.git;a=snapshot;h=2f66d41;sf=tgz -> elpher-3.4.3.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=4313c375a631ab3a282e57a695683bf6 diff --git a/metadata/md5-cache/app-emacs/elpher-9999 b/metadata/md5-cache/app-emacs/elpher-9999 index 648f5af9e136..f358750d9ff3 100644 --- a/metadata/md5-cache/app-emacs/elpher-9999 +++ b/metadata/md5-cache/app-emacs/elpher-9999 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-27.1:* >=dev-vcs/git-1.8.2.1[curl] -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Practical and friendly Gopher and Gemini client for GNU Emacs EAPI=8 HOMEPAGE=https://thelambdalab.xyz/elpher/ @@ -8,5 +8,5 @@ LICENSE=GPL-3+ PROPERTIES=live RDEPEND=>=app-editors/emacs-27.1:* SLOT=0 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 git-r3 27e13c09a4c7e4c78ac812f74727e676 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 git-r3 27e13c09a4c7e4c78ac812f74727e676 _md5_=5f8a8bf44c64e5596958e41f9db8e5a8 diff --git a/metadata/md5-cache/app-emacs/elpy-1.35.0_p20220321 b/metadata/md5-cache/app-emacs/elpy-1.35.0_p20220321 index b4c86c85b6ab..94db614608f3 100644 --- a/metadata/md5-cache/app-emacs/elpy-1.35.0_p20220321 +++ b/metadata/md5-cache/app-emacs/elpy-1.35.0_p20220321 @@ -12,5 +12,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/jorgenschaefer/elpy/archive/1746e7009000b7635c0ea6f1559018143aa61642.tar.gz -> elpy-1.35.0_p20220321.tar.gz -_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=d7b2ab4750777fce98668f8ea3eeef6d diff --git a/metadata/md5-cache/app-emacs/elpy-1.35.0_p20220627 b/metadata/md5-cache/app-emacs/elpy-1.35.0_p20220627 index 99145c88c09c..65fab93b9d1c 100644 --- a/metadata/md5-cache/app-emacs/elpy-1.35.0_p20220627 +++ b/metadata/md5-cache/app-emacs/elpy-1.35.0_p20220627 @@ -12,5 +12,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/jorgenschaefer/elpy/archive/de31d30003c515c25ff7bfd3a361c70c298f78bb.tar.gz -> elpy-1.35.0_p20220627.tar.gz -_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=29f7a504a1a6b906350335ea228af6ef diff --git a/metadata/md5-cache/app-emacs/elscreen-20180321 b/metadata/md5-cache/app-emacs/elscreen-20180321 index 3a162ed21b5e..0acac5f9020c 100644 --- a/metadata/md5-cache/app-emacs/elscreen-20180321 +++ b/metadata/md5-cache/app-emacs/elscreen-20180321 @@ -1,5 +1,5 @@ BDEPEND=wanderlust? ( app-emacs/wanderlust ) >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Frame configuration management for GNU Emacs modelled after GNU Screen EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/EmacsLispScreen https://github.com/knu/elscreen @@ -10,5 +10,5 @@ LICENSE=GPL-2+ GPL-3+ RDEPEND=wanderlust? ( app-emacs/wanderlust ) >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/knu/elscreen/archive/20180321.tar.gz -> elscreen-20180321.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=762284baff9387cb5cc2ccad2a046618 diff --git a/metadata/md5-cache/app-emacs/emacs-aio-1.0_p20200610 b/metadata/md5-cache/app-emacs/emacs-aio-1.0_p20200610 index 63daafd5d09f..7b9cee230358 100644 --- a/metadata/md5-cache/app-emacs/emacs-aio-1.0_p20200610 +++ b/metadata/md5-cache/app-emacs/emacs-aio-1.0_p20200610 @@ -9,5 +9,5 @@ LICENSE=Unlicense RDEPEND=>=app-editors/emacs-26.1:* SLOT=0 SRC_URI=https://github.com/skeeto/emacs-aio/archive/da93523e235529fa97d6f251319d9e1d6fc24a41.tar.gz -> emacs-aio-1.0_p20200610.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=4f87f871a2aa518ebc91c7f6da7c97f1 diff --git a/metadata/md5-cache/app-emacs/emacs-ansilove-1.0.1 b/metadata/md5-cache/app-emacs/emacs-ansilove-1.0.1 index a0add8dc66f4..a6c063438a66 100644 --- a/metadata/md5-cache/app-emacs/emacs-ansilove-1.0.1 +++ b/metadata/md5-cache/app-emacs/emacs-ansilove-1.0.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-26.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Display buffers as PNG images using ansilove in GNU Emacs EAPI=8 HOMEPAGE=https://gitlab.com/xgqt/emacs-ansilove/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-26.1[imagemagick] media-gfx/ansilove media-gfx/imagemagick[png] >=app-editors/emacs-26.1:* SLOT=0 SRC_URI=https://gitlab.com/xgqt/emacs-ansilove/-/archive/1.0.1/emacs-ansilove-1.0.1.tar.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=8fcf5c98601152fd6d2f7747ad78efc8 diff --git a/metadata/md5-cache/app-emacs/emacs-ansilove-2.0.0 b/metadata/md5-cache/app-emacs/emacs-ansilove-2.0.0 index 58c32ed4fe7b..bbaa586eca7b 100644 --- a/metadata/md5-cache/app-emacs/emacs-ansilove-2.0.0 +++ b/metadata/md5-cache/app-emacs/emacs-ansilove-2.0.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-26.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Display buffers as PNG images using ansilove in GNU Emacs EAPI=8 HOMEPAGE=https://gitlab.com/xgqt/emacs-ansilove/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-26.1[imagemagick] media-gfx/ansilove media-gfx/imagemagick[png] >=app-editors/emacs-26.1:* SLOT=0 SRC_URI=https://gitlab.com/xgqt/emacs-ansilove/-/archive/2.0.0/emacs-ansilove-2.0.0.tar.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=f70c66f8b6cc475eb3dda89c785590c2 diff --git a/metadata/md5-cache/app-emacs/emacs-ansilove-9999 b/metadata/md5-cache/app-emacs/emacs-ansilove-9999 index 800f9ed66499..dd9be91108a8 100644 --- a/metadata/md5-cache/app-emacs/emacs-ansilove-9999 +++ b/metadata/md5-cache/app-emacs/emacs-ansilove-9999 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-26.1:* >=dev-vcs/git-1.8.2.1[curl] -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Display buffers as PNG images using ansilove in GNU Emacs EAPI=8 HOMEPAGE=https://gitlab.com/xgqt/emacs-ansilove/ @@ -8,5 +8,5 @@ LICENSE=GPL-3+ PROPERTIES=live RDEPEND=>=app-editors/emacs-26.1[imagemagick] media-gfx/ansilove media-gfx/imagemagick[png] >=app-editors/emacs-26.1:* SLOT=0 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 git-r3 27e13c09a4c7e4c78ac812f74727e676 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 git-r3 27e13c09a4c7e4c78ac812f74727e676 _md5_=8fcf5c98601152fd6d2f7747ad78efc8 diff --git a/metadata/md5-cache/app-emacs/emacs-bazel-mode-0_p20220707 b/metadata/md5-cache/app-emacs/emacs-bazel-mode-0_p20220707 index e76d63d383cd..3ba739f796f6 100644 --- a/metadata/md5-cache/app-emacs/emacs-bazel-mode-0_p20220707 +++ b/metadata/md5-cache/app-emacs/emacs-bazel-mode-0_p20220707 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=>=app-editors/emacs-27.1:* SLOT=0 SRC_URI=https://github.com/bazelbuild/emacs-bazel-mode/archive/8f7875998f233d248097006df224a33873bbc4f2.tar.gz -> emacs-bazel-mode-0_p20220707.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=61b362343a366d79fc4f6735d7d542fd diff --git a/metadata/md5-cache/app-emacs/emacs-ccls-0_pre20220510-r1 b/metadata/md5-cache/app-emacs/emacs-ccls-0_pre20220510-r1 index 8103d632c53e..1c2c0f975fda 100644 --- a/metadata/md5-cache/app-emacs/emacs-ccls-0_pre20220510-r1 +++ b/metadata/md5-cache/app-emacs/emacs-ccls-0_pre20220510-r1 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/dash app-emacs/lsp-mode >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs client for ccls, a C/C++ language server EAPI=8 HOMEPAGE=https://github.com/emacs-lsp/emacs-ccls @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=app-emacs/dash app-emacs/lsp-mode >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/emacs-lsp/emacs-ccls/archive/ae74a39303457a5e6976dd1c6816cde97d357a0d.tar.gz -> emacs-ccls-0_pre20220510.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=7ea60b838014f64390e82594a3848845 diff --git a/metadata/md5-cache/app-emacs/emacs-ccls-0_pre20230311 b/metadata/md5-cache/app-emacs/emacs-ccls-0_pre20230311 index 5df2aa62efe9..30040f505262 100644 --- a/metadata/md5-cache/app-emacs/emacs-ccls-0_pre20230311 +++ b/metadata/md5-cache/app-emacs/emacs-ccls-0_pre20230311 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/dash app-emacs/lsp-mode >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs client for ccls, a C/C++ language server EAPI=8 HOMEPAGE=https://github.com/emacs-lsp/emacs-ccls @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=app-emacs/dash app-emacs/lsp-mode >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/emacs-lsp/emacs-ccls/archive/bf7efbbbfeb4540822c5deca3be5d71c4232f62f.tar.gz -> emacs-ccls-0_pre20230311.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=30ce7dd0a128fbd6e125c47aabb3f1df diff --git a/metadata/md5-cache/app-emacs/emacs-common-1.8 b/metadata/md5-cache/app-emacs/emacs-common-1.8 index d8c6e3012c2c..141bf0226f4b 100644 --- a/metadata/md5-cache/app-emacs/emacs-common-1.8 +++ b/metadata/md5-cache/app-emacs/emacs-common-1.8 @@ -11,5 +11,5 @@ PDEPEND=>=app-editors/emacs-23.1:* RDEPEND=games? ( acct-group/gamestat ) SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/emacs/emacs-common-1.8.tar.xz -_eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=bcdfcf34ed1dbaa972cd8421f2121a60 diff --git a/metadata/md5-cache/app-emacs/emacs-crystal-mode-0.1.0_p20221008 b/metadata/md5-cache/app-emacs/emacs-crystal-mode-0.1.0_p20221008 index 5a654d4e7f1e..2dc55e1f4ca9 100644 --- a/metadata/md5-cache/app-emacs/emacs-crystal-mode-0.1.0_p20221008 +++ b/metadata/md5-cache/app-emacs/emacs-crystal-mode-0.1.0_p20221008 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/flycheck >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=GNU Emacs major mode for editing Crystal programming language files EAPI=8 HOMEPAGE=https://github.com/crystal-lang-tools/emacs-crystal-mode/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/flycheck >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/crystal-lang-tools/emacs-crystal-mode/archive/9bfb9f0f566e937cc6a2f2913d1b56978b81dc99.tar.gz -> emacs-crystal-mode-0.1.0_p20221008.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=4fc937b06bf7396137c6c8da77c65bc0 diff --git a/metadata/md5-cache/app-emacs/emacs-daemon-0.22-r1 b/metadata/md5-cache/app-emacs/emacs-daemon-0.22-r1 index 36dff0d5ff59..9c0a50c89fe7 100644 --- a/metadata/md5-cache/app-emacs/emacs-daemon-0.22-r1 +++ b/metadata/md5-cache/app-emacs/emacs-daemon-0.22-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Gentoo support for Emacs running as a server in the background EAPI=8 HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Emacs @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/emacs/emacs-daemon-0.22.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=17826ceace360bb9a24ab4e2aa742fa5 diff --git a/metadata/md5-cache/app-emacs/emacs-ebuild-snippets-2.0.2 b/metadata/md5-cache/app-emacs/emacs-ebuild-snippets-2.0.2 index 4ffecce742ec..be891b5e7203 100644 --- a/metadata/md5-cache/app-emacs/emacs-ebuild-snippets-2.0.2 +++ b/metadata/md5-cache/app-emacs/emacs-ebuild-snippets-2.0.2 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/ebuild-mode app-emacs/yasnippet >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Yasnippets for editing ebuilds and eclasses EAPI=8 HOMEPAGE=https://gitweb.gentoo.org/proj/emacs-ebuild-snippets.git @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=app-emacs/ebuild-mode app-emacs/yasnippet >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://gitlab.com/xgqt/emacs-ebuild-snippets/-/archive/2.0.2/emacs-ebuild-snippets-2.0.2.tar.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=3ebf56ffba8ebef076282d55750920ea diff --git a/metadata/md5-cache/app-emacs/emacs-ebuild-snippets-2.0.4 b/metadata/md5-cache/app-emacs/emacs-ebuild-snippets-2.0.4 index 712d827a9a57..89b4a28ebd03 100644 --- a/metadata/md5-cache/app-emacs/emacs-ebuild-snippets-2.0.4 +++ b/metadata/md5-cache/app-emacs/emacs-ebuild-snippets-2.0.4 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/ebuild-mode app-emacs/yasnippet >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Yasnippets for editing ebuilds and eclasses EAPI=8 HOMEPAGE=https://gitweb.gentoo.org/proj/emacs-ebuild-snippets.git @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=app-emacs/ebuild-mode app-emacs/yasnippet >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://gitlab.com/xgqt/emacs-ebuild-snippets/-/archive/2.0.4/emacs-ebuild-snippets-2.0.4.tar.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=3ebf56ffba8ebef076282d55750920ea diff --git a/metadata/md5-cache/app-emacs/emacs-ebuild-snippets-9999 b/metadata/md5-cache/app-emacs/emacs-ebuild-snippets-9999 index 25994b7da2f9..79b488ff92c2 100644 --- a/metadata/md5-cache/app-emacs/emacs-ebuild-snippets-9999 +++ b/metadata/md5-cache/app-emacs/emacs-ebuild-snippets-9999 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/ebuild-mode app-emacs/yasnippet >=app-editors/emacs-25.3:* >=dev-vcs/git-1.8.2.1[curl] -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Yasnippets for editing ebuilds and eclasses EAPI=8 HOMEPAGE=https://gitweb.gentoo.org/proj/emacs-ebuild-snippets.git @@ -8,5 +8,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=app-emacs/ebuild-mode app-emacs/yasnippet >=app-editors/emacs-25.3:* SLOT=0 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 git-r3 27e13c09a4c7e4c78ac812f74727e676 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 git-r3 27e13c09a4c7e4c78ac812f74727e676 _md5_=358937662032b193bc5f900110f4d2e3 diff --git a/metadata/md5-cache/app-emacs/emacs-eix-0.0.0 b/metadata/md5-cache/app-emacs/emacs-eix-0.0.0 index 2dc01025a420..7cff854d224d 100644 --- a/metadata/md5-cache/app-emacs/emacs-eix-0.0.0 +++ b/metadata/md5-cache/app-emacs/emacs-eix-0.0.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Eix integration for GNU Emacs EAPI=8 HOMEPAGE=https://gitweb.gentoo.org/proj/emacs-eix.git @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://gitweb.gentoo.org/proj/emacs-eix.git/snapshot/emacs-eix-0.0.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=73ef1653f8be76c5c2cc7aefa4227760 diff --git a/metadata/md5-cache/app-emacs/emacs-eix-9999 b/metadata/md5-cache/app-emacs/emacs-eix-9999 index a5d5e4ea7348..a2f446b0369c 100644 --- a/metadata/md5-cache/app-emacs/emacs-eix-9999 +++ b/metadata/md5-cache/app-emacs/emacs-eix-9999 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* >=dev-vcs/git-1.8.2.1[curl] -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Eix integration for GNU Emacs EAPI=8 HOMEPAGE=https://gitweb.gentoo.org/proj/emacs-eix.git @@ -8,5 +8,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 git-r3 27e13c09a4c7e4c78ac812f74727e676 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 git-r3 27e13c09a4c7e4c78ac812f74727e676 _md5_=c3cadd6584090230ee5e5b7b89c9b0d3 diff --git a/metadata/md5-cache/app-emacs/emacs-el-fetch-3.2.1 b/metadata/md5-cache/app-emacs/emacs-el-fetch-3.2.1 index 3773a2f4428c..3644c2f47d52 100644 --- a/metadata/md5-cache/app-emacs/emacs-el-fetch-3.2.1 +++ b/metadata/md5-cache/app-emacs/emacs-el-fetch-3.2.1 @@ -1,5 +1,5 @@ BDEPEND=test? ( app-emacs/buttercup ) >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Show system information in Neofetch-like style inside Emacs EAPI=8 HOMEPAGE=https://gitlab.com/xgqt/emacs-el-fetch/ @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://gitlab.com/xgqt/emacs-el-fetch/-/archive/3.2.1/emacs-el-fetch-3.2.1.tar.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=710179a792cb32c01d5a4443c51bdde5 diff --git a/metadata/md5-cache/app-emacs/emacs-el-fetch-3.3.0 b/metadata/md5-cache/app-emacs/emacs-el-fetch-3.3.0 index b19daaaf468f..2cfec16ec4da 100644 --- a/metadata/md5-cache/app-emacs/emacs-el-fetch-3.3.0 +++ b/metadata/md5-cache/app-emacs/emacs-el-fetch-3.3.0 @@ -1,5 +1,5 @@ BDEPEND=test? ( app-emacs/buttercup ) >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Show system information in Neofetch-like style inside Emacs EAPI=8 HOMEPAGE=https://gitlab.com/xgqt/emacs-el-fetch/ @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://gitlab.com/xgqt/emacs-el-fetch/-/archive/3.3.0/emacs-el-fetch-3.3.0.tar.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=710179a792cb32c01d5a4443c51bdde5 diff --git a/metadata/md5-cache/app-emacs/emacs-el-fetch-9999 b/metadata/md5-cache/app-emacs/emacs-el-fetch-9999 index 50d1ffda5fc6..1d26960b0199 100644 --- a/metadata/md5-cache/app-emacs/emacs-el-fetch-9999 +++ b/metadata/md5-cache/app-emacs/emacs-el-fetch-9999 @@ -1,5 +1,5 @@ BDEPEND=test? ( app-emacs/buttercup ) >=app-editors/emacs-25.3:* >=dev-vcs/git-1.8.2.1[curl] -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Show system information in Neofetch-like style inside Emacs EAPI=8 HOMEPAGE=https://gitlab.com/xgqt/emacs-el-fetch/ @@ -10,5 +10,5 @@ PROPERTIES=live RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 git-r3 27e13c09a4c7e4c78ac812f74727e676 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 git-r3 27e13c09a4c7e4c78ac812f74727e676 _md5_=90069e92e5b0d32d71a62d4088095cdf diff --git a/metadata/md5-cache/app-emacs/emacs-ipython-notebook-0.17.0_p20220419-r1 b/metadata/md5-cache/app-emacs/emacs-ipython-notebook-0.17.0_p20220419-r1 index c1c0e60d18cb..cf4375a9105b 100644 --- a/metadata/md5-cache/app-emacs/emacs-ipython-notebook-0.17.0_p20220419-r1 +++ b/metadata/md5-cache/app-emacs/emacs-ipython-notebook-0.17.0_p20220419-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/millejoh/emacs-ipython-notebook/archive/388c8f753cfb99b4f82acbdff26bbe27189d2299.tar.gz -> emacs-ipython-notebook-0.17.0_p20220419.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=d2db0d5b3121c4c3fcc338121fcedc7c diff --git a/metadata/md5-cache/app-emacs/emacs-jabber-0.8.92 b/metadata/md5-cache/app-emacs/emacs-jabber-0.8.92 index c8547d256595..425ae488cd1f 100644 --- a/metadata/md5-cache/app-emacs/emacs-jabber-0.8.92 +++ b/metadata/md5-cache/app-emacs/emacs-jabber-0.8.92 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=app-emacs/hexrgb sys-apps/texinfo DESCRIPTION=A Jabber client for Emacs EAPI=7 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=app-emacs/hexrgb >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://sourceforge/emacs-jabber/emacs-jabber-0.8.92.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=3ef0cf4391335a763bd4598f730de298 diff --git a/metadata/md5-cache/app-emacs/emacs-openrc-0.0.0 b/metadata/md5-cache/app-emacs/emacs-openrc-0.0.0 index 432770686a73..5eae1005d91b 100644 --- a/metadata/md5-cache/app-emacs/emacs-openrc-0.0.0 +++ b/metadata/md5-cache/app-emacs/emacs-openrc-0.0.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=OpenRC integration for GNU Emacs EAPI=8 HOMEPAGE=https://gitweb.gentoo.org/proj/emacs-openrc.git @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://gitweb.gentoo.org/proj/emacs-openrc.git/snapshot/emacs-openrc-0.0.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=f06949fd38719f019b57ec4087d55b35 diff --git a/metadata/md5-cache/app-emacs/emacs-openrc-1.0.0 b/metadata/md5-cache/app-emacs/emacs-openrc-1.0.0 index a30e2af12728..f4171f7cbf0e 100644 --- a/metadata/md5-cache/app-emacs/emacs-openrc-1.0.0 +++ b/metadata/md5-cache/app-emacs/emacs-openrc-1.0.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=OpenRC integration for GNU Emacs EAPI=8 HOMEPAGE=https://gitweb.gentoo.org/proj/emacs-openrc.git @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://gitweb.gentoo.org/proj/emacs-openrc.git/snapshot/emacs-openrc-1.0.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=f06949fd38719f019b57ec4087d55b35 diff --git a/metadata/md5-cache/app-emacs/emacs-openrc-9999 b/metadata/md5-cache/app-emacs/emacs-openrc-9999 index 5c760fce70e0..9c54bf10e3e5 100644 --- a/metadata/md5-cache/app-emacs/emacs-openrc-9999 +++ b/metadata/md5-cache/app-emacs/emacs-openrc-9999 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* >=dev-vcs/git-1.8.2.1[curl] -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=OpenRC integration for GNU Emacs EAPI=8 HOMEPAGE=https://gitweb.gentoo.org/proj/emacs-openrc.git @@ -8,5 +8,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 git-r3 27e13c09a4c7e4c78ac812f74727e676 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 git-r3 27e13c09a4c7e4c78ac812f74727e676 _md5_=1668a37f21c081bec4d0dd45c73e0727 diff --git a/metadata/md5-cache/app-emacs/emacs-w3m-1.4.632_pre20181112 b/metadata/md5-cache/app-emacs/emacs-w3m-1.4.632_pre20181112 index 6f2bd70b3fd1..1f3667233b91 100644 --- a/metadata/md5-cache/app-emacs/emacs-w3m-1.4.632_pre20181112 +++ b/metadata/md5-cache/app-emacs/emacs-w3m-1.4.632_pre20181112 @@ -1,5 +1,5 @@ BDEPEND=virtual/w3m >=app-editors/emacs-25.3:* sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=emacs-w3m is an interface program of w3m on Emacs EAPI=7 HOMEPAGE=http://emacs-w3m.namazu.org/ @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=virtual/w3m >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/emacs-w3m-1.4.632_pre20181112.tar.xz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=bb29eb789e50daec73b475684b35cdbb diff --git a/metadata/md5-cache/app-emacs/emacs-websearch-2.0.1 b/metadata/md5-cache/app-emacs/emacs-websearch-2.0.1 index fb2c14bb742b..cb28c76fa218 100644 --- a/metadata/md5-cache/app-emacs/emacs-websearch-2.0.1 +++ b/metadata/md5-cache/app-emacs/emacs-websearch-2.0.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Query search engines from Emacs EAPI=8 HOMEPAGE=https://gitlab.com/xgqt/emacs-websearch/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://gitlab.com/xgqt/emacs-websearch/-/archive/2.0.1/emacs-websearch-2.0.1.tar.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=9c5302f285c60778d4ced0b45d8821e2 diff --git a/metadata/md5-cache/app-emacs/emacs-websearch-2.1.0 b/metadata/md5-cache/app-emacs/emacs-websearch-2.1.0 index 6c2204ec9547..fb6c0ce9125a 100644 --- a/metadata/md5-cache/app-emacs/emacs-websearch-2.1.0 +++ b/metadata/md5-cache/app-emacs/emacs-websearch-2.1.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Query search engines from Emacs EAPI=8 HOMEPAGE=https://gitlab.com/xgqt/emacs-websearch/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://gitlab.com/xgqt/emacs-websearch/-/archive/2.1.0/emacs-websearch-2.1.0.tar.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=9c5302f285c60778d4ced0b45d8821e2 diff --git a/metadata/md5-cache/app-emacs/emacs-websearch-9999 b/metadata/md5-cache/app-emacs/emacs-websearch-9999 index 2d8947b93c87..3c73b30fbe6c 100644 --- a/metadata/md5-cache/app-emacs/emacs-websearch-9999 +++ b/metadata/md5-cache/app-emacs/emacs-websearch-9999 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* >=dev-vcs/git-1.8.2.1[curl] -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Query search engines from Emacs EAPI=8 HOMEPAGE=https://gitlab.com/xgqt/emacs-websearch/ @@ -8,5 +8,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 git-r3 27e13c09a4c7e4c78ac812f74727e676 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 git-r3 27e13c09a4c7e4c78ac812f74727e676 _md5_=9c5302f285c60778d4ced0b45d8821e2 diff --git a/metadata/md5-cache/app-emacs/emacs-wget-0.5.0-r1 b/metadata/md5-cache/app-emacs/emacs-wget-0.5.0-r1 index e5e05c73e3fe..2bd610027189 100644 --- a/metadata/md5-cache/app-emacs/emacs-wget-0.5.0-r1 +++ b/metadata/md5-cache/app-emacs/emacs-wget-0.5.0-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Wget interface for Emacs EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/EmacsWget @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=>=net-misc/wget-1.8.2 >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=http://pop-club.hp.infoseek.co.jp/emacs/emacs-wget/emacs-wget-0.5.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=f99c7d791d70edd27f142a4429e75895 diff --git a/metadata/md5-cache/app-emacs/emhacks-20070920-r2 b/metadata/md5-cache/app-emacs/emhacks-20070920-r2 index e82ea1c078c6..e2ef4cd043ba 100644 --- a/metadata/md5-cache/app-emacs/emhacks-20070920-r2 +++ b/metadata/md5-cache/app-emacs/emhacks-20070920-r2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Useful Emacs Lisp libraries, including gdiff, jjar, jmaker, swbuff, and tabbar EAPI=8 HOMEPAGE=http://emhacks.sourceforge.net/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/emhacks-20070920.tar.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=369f70234db717a37e9e8c9148693a01 diff --git a/metadata/md5-cache/app-emacs/emms-12 b/metadata/md5-cache/app-emacs/emms-12 index d0f1a1d80172..847fb8fc72ac 100644 --- a/metadata/md5-cache/app-emacs/emms-12 +++ b/metadata/md5-cache/app-emacs/emms-12 @@ -1,5 +1,5 @@ BDEPEND=media-libs/taglib >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=The Emacs Multimedia System EAPI=8 HOMEPAGE=https://www.gnu.org/software/emms/ https://www.emacswiki.org/emacs/EMMS @@ -9,5 +9,5 @@ LICENSE=GPL-3+ FDL-1.1+ RDEPEND=media-libs/taglib >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://git.savannah.gnu.org/cgit/emms.git/snapshot/emms-12.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=b7aca6580b9a763ea03f0448ef097e0a diff --git a/metadata/md5-cache/app-emacs/emms-13 b/metadata/md5-cache/app-emacs/emms-13 index ec12cbf01fbc..dc3bcd8b9085 100644 --- a/metadata/md5-cache/app-emacs/emms-13 +++ b/metadata/md5-cache/app-emacs/emms-13 @@ -1,5 +1,5 @@ BDEPEND=media-libs/taglib >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=The Emacs Multimedia System EAPI=8 HOMEPAGE=https://www.gnu.org/software/emms/ https://www.emacswiki.org/emacs/EMMS @@ -9,5 +9,5 @@ LICENSE=GPL-3+ FDL-1.1+ RDEPEND=media-libs/taglib >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://git.savannah.gnu.org/cgit/emms.git/snapshot/emms-13.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=6924db76dad1a9ce3a4ea2bfe33b995a diff --git a/metadata/md5-cache/app-emacs/emms-14 b/metadata/md5-cache/app-emacs/emms-14 index df24c57783d5..aecdea8d1bd8 100644 --- a/metadata/md5-cache/app-emacs/emms-14 +++ b/metadata/md5-cache/app-emacs/emms-14 @@ -1,5 +1,5 @@ BDEPEND=media-libs/taglib >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=The Emacs Multimedia System EAPI=8 HOMEPAGE=https://www.gnu.org/software/emms/ https://www.emacswiki.org/emacs/EMMS @@ -9,5 +9,5 @@ LICENSE=GPL-3+ FDL-1.1+ RDEPEND=media-libs/taglib >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://git.savannah.gnu.org/cgit/emms.git/snapshot/emms-14.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=6924db76dad1a9ce3a4ea2bfe33b995a diff --git a/metadata/md5-cache/app-emacs/emojify-1.2 b/metadata/md5-cache/app-emacs/emojify-1.2 index ff226f3b8072..e11528687946 100644 --- a/metadata/md5-cache/app-emacs/emojify-1.2 +++ b/metadata/md5-cache/app-emacs/emojify-1.2 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/ht >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Display emojis in Emacs, like :smile: or plain ASCII ones like :) EAPI=8 HOMEPAGE=https://github.com/iqbalansari/emacs-emojify/ @@ -10,5 +10,5 @@ RDEPEND=app-emacs/ht >=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/iqbalansari/emacs-emojify/archive/v1.2.tar.gz -> emojify-1.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=7c7d72a2380d985c878079a715688dd1 diff --git a/metadata/md5-cache/app-emacs/emojify-1.2_p20210309 b/metadata/md5-cache/app-emacs/emojify-1.2_p20210309 index f8d2f5fa71c7..aa48bc194110 100644 --- a/metadata/md5-cache/app-emacs/emojify-1.2_p20210309 +++ b/metadata/md5-cache/app-emacs/emojify-1.2_p20210309 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/ht >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Display emojis in Emacs, like :smile: or plain ASCII ones like :) EAPI=8 HOMEPAGE=https://github.com/iqbalansari/emacs-emojify/ @@ -10,5 +10,5 @@ RDEPEND=app-emacs/ht >=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/iqbalansari/emacs-emojify/archive/1b726412f19896abf5e4857d4c32220e33400b55.tar.gz -> emojify-1.2_p20210309.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=328972b2bea897174fb64cc26679e783 diff --git a/metadata/md5-cache/app-emacs/engrave-faces-0.3.1 b/metadata/md5-cache/app-emacs/engrave-faces-0.3.1 index 3b51a4925572..1dd19421d78c 100644 --- a/metadata/md5-cache/app-emacs/engrave-faces-0.3.1 +++ b/metadata/md5-cache/app-emacs/engrave-faces-0.3.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-27.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Convert font-lock faces to other formats EAPI=8 HOMEPAGE=https://github.com/tecosaur/engrave-faces/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-27.1:* SLOT=0 SRC_URI=https://github.com/tecosaur/engrave-faces/archive/v0.3.1.tar.gz -> engrave-faces-0.3.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=2c0cfab4abf89915d1d8ce67b4d4ab5f diff --git a/metadata/md5-cache/app-emacs/epc-0.1.1 b/metadata/md5-cache/app-emacs/epc-0.1.1 index ecc91d5f60c8..e909b7e92d91 100644 --- a/metadata/md5-cache/app-emacs/epc-0.1.1 +++ b/metadata/md5-cache/app-emacs/epc-0.1.1 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/ctable app-emacs/deferred >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/kiwanami/emacs-epc/archive/0.1.1.tar.gz -> epc-0.1.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=f0bd276fb98ef0e6ab2b363c3043ea9d diff --git a/metadata/md5-cache/app-emacs/epl-0.9-r2 b/metadata/md5-cache/app-emacs/epl-0.9-r2 index 40e26f809221..5a168e620332 100644 --- a/metadata/md5-cache/app-emacs/epl-0.9-r2 +++ b/metadata/md5-cache/app-emacs/epl-0.9-r2 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/cask/epl/archive/refs/tags/0.9.tar.gz -> epl-0.9.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=d4b46ea4e6452919cf7256cbd30101b9 diff --git a/metadata/md5-cache/app-emacs/erobot-2.1.0-r1 b/metadata/md5-cache/app-emacs/erobot-2.1.0-r1 index 72c409009b24..8d2bde462626 100644 --- a/metadata/md5-cache/app-emacs/erobot-2.1.0-r1 +++ b/metadata/md5-cache/app-emacs/erobot-2.1.0-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Battle-bots for Emacs! EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/EmacsRobots @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gentoo/erobot-2.1.0.tar.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=d32cf1551c3d22302002a54690e6b724 diff --git a/metadata/md5-cache/app-emacs/ert-async-0.1.2_p20200105 b/metadata/md5-cache/app-emacs/ert-async-0.1.2_p20200105 index 0b91e3bb2566..ca6912c4c7ed 100644 --- a/metadata/md5-cache/app-emacs/ert-async-0.1.2_p20200105 +++ b/metadata/md5-cache/app-emacs/ert-async-0.1.2_p20200105 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Async support for ERT EAPI=8 HOMEPAGE=https://github.com/rejeep/ert-async.el/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/rejeep/ert-async.el/archive/948cf2faa10e085bda3739034ca5ea1912893433.tar.gz -> ert-async-0.1.2_p20200105.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=cc587e3adc896ea48aade2698f45a5ae diff --git a/metadata/md5-cache/app-emacs/ert-runner-0.8.0 b/metadata/md5-cache/app-emacs/ert-runner-0.8.0 index af5ee258de99..5d2246d7081c 100644 --- a/metadata/md5-cache/app-emacs/ert-runner-0.8.0 +++ b/metadata/md5-cache/app-emacs/ert-runner-0.8.0 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/ansi app-emacs/commander app-emacs/dash app-emacs/f app-emacs/dash app-emacs/shut-up >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Opinionated Emacs Ert testing workflow EAPI=8 HOMEPAGE=https://github.com/rejeep/ert-runner.el/ @@ -10,5 +10,5 @@ RDEPEND=app-emacs/ansi app-emacs/commander app-emacs/dash app-emacs/f app-emacs/ RESTRICT=test SLOT=0 SRC_URI=https://github.com/rejeep/ert-runner.el/archive/v0.8.0.tar.gz -> ert-runner-0.8.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=566e46a8514115e2b35598107f75d31f diff --git a/metadata/md5-cache/app-emacs/eselect-mode-1.4.17 b/metadata/md5-cache/app-emacs/eselect-mode-1.4.17 index df14eea10846..fcfb5d4b1543 100644 --- a/metadata/md5-cache/app-emacs/eselect-mode-1.4.17 +++ b/metadata/md5-cache/app-emacs/eselect-mode-1.4.17 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs major mode for editing eselect files EAPI=7 HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Eselect @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/eselect/eselect-1.4.17.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=647d36372c77c6acefd9602215e0f7a2 diff --git a/metadata/md5-cache/app-emacs/eselect-mode-9999 b/metadata/md5-cache/app-emacs/eselect-mode-9999 index aff6033b6775..6a6cccb67972 100644 --- a/metadata/md5-cache/app-emacs/eselect-mode-9999 +++ b/metadata/md5-cache/app-emacs/eselect-mode-9999 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* >=dev-vcs/git-1.8.2.1[curl] -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs major mode for editing eselect files EAPI=7 HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Eselect @@ -8,5 +8,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 git-r3 27e13c09a4c7e4c78ac812f74727e676 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 git-r3 27e13c09a4c7e4c78ac812f74727e676 _md5_=e3d3c03f5ad385a9a46cf8471acaee5c diff --git a/metadata/md5-cache/app-emacs/espuds-0.3.3_p20171111 b/metadata/md5-cache/app-emacs/espuds-0.3.3_p20171111 index ddc04ab68396..9c91b612b224 100644 --- a/metadata/md5-cache/app-emacs/espuds-0.3.3_p20171111 +++ b/metadata/md5-cache/app-emacs/espuds-0.3.3_p20171111 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/dash app-emacs/f app-emacs/s >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Common step definitions for Emacs Ecukes EAPI=8 HOMEPAGE=https://github.com/ecukes/espuds/ @@ -10,5 +10,5 @@ RDEPEND=app-emacs/dash app-emacs/f app-emacs/s >=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/ecukes/espuds/archive/78fc53feaf77a98d63894cd410faee2a18107b00.tar.gz -> espuds-0.3.3_p20171111.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=9822a389a543e77fc0bb93ef666e1cac diff --git a/metadata/md5-cache/app-emacs/ess-18.10.2-r1 b/metadata/md5-cache/app-emacs/ess-18.10.2-r1 index 54af2ed9a0a6..f3fbb7a41de7 100644 --- a/metadata/md5-cache/app-emacs/ess-18.10.2-r1 +++ b/metadata/md5-cache/app-emacs/ess-18.10.2-r1 @@ -1,5 +1,5 @@ BDEPEND=app-text/texi2html virtual/latex-base >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs Speaks Statistics EAPI=7 HOMEPAGE=https://ess.r-project.org/ @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://ess.r-project.org/downloads/ess/ess-18.10.2.tgz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=8ee4f9d8b0cc490384a1a0726d64a433 diff --git a/metadata/md5-cache/app-emacs/esup-0.7.1_p20220203 b/metadata/md5-cache/app-emacs/esup-0.7.1_p20220203 index 83038d89e98f..14a414a93dc8 100644 --- a/metadata/md5-cache/app-emacs/esup-0.7.1_p20220203 +++ b/metadata/md5-cache/app-emacs/esup-0.7.1_p20220203 @@ -11,5 +11,5 @@ RDEPEND=app-emacs/s >=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/jschaf/esup/archive/4b49c8d599d4cc0fbf994e9e54a9c78e5ab62a5f.tar.gz -> esup-0.7.1_p20220203.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=4ffa9b1694bbdde9ae165d5806f37379 diff --git a/metadata/md5-cache/app-emacs/evil-1.14.0 b/metadata/md5-cache/app-emacs/evil-1.14.0 index 8d94405070cc..4c88ebaa174a 100644 --- a/metadata/md5-cache/app-emacs/evil-1.14.0 +++ b/metadata/md5-cache/app-emacs/evil-1.14.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-emacs/undo-tree-0.6.3 sys-apps/texinfo >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Extensible vi layer for Emacs EAPI=7 HOMEPAGE=https://github.com/emacs-evil/evil @@ -10,5 +10,5 @@ RDEPEND=>=app-emacs/undo-tree-0.6.3 >=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/emacs-evil/evil/archive/1.14.0.tar.gz -> evil-1.14.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=50b8e1d32b3f2d831bc8aed12898d21a diff --git a/metadata/md5-cache/app-emacs/evil-1.14.2 b/metadata/md5-cache/app-emacs/evil-1.14.2 index bd7f0dd68efb..89a702642604 100644 --- a/metadata/md5-cache/app-emacs/evil-1.14.2 +++ b/metadata/md5-cache/app-emacs/evil-1.14.2 @@ -1,5 +1,5 @@ BDEPEND=>=app-emacs/undo-tree-0.6.3 sys-apps/texinfo >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Extensible vi layer for Emacs EAPI=7 HOMEPAGE=https://github.com/emacs-evil/evil @@ -10,5 +10,5 @@ RDEPEND=>=app-emacs/undo-tree-0.6.3 >=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/emacs-evil/evil/archive/1.14.2.tar.gz -> evil-1.14.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=abc1c5b9945fcc856db1bb71e4405a77 diff --git a/metadata/md5-cache/app-emacs/exec-path-from-shell-1.12 b/metadata/md5-cache/app-emacs/exec-path-from-shell-1.12 index ce497fc31256..6cf1639a9041 100644 --- a/metadata/md5-cache/app-emacs/exec-path-from-shell-1.12 +++ b/metadata/md5-cache/app-emacs/exec-path-from-shell-1.12 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Ensure environment variables inside Emacs are the same as in shell EAPI=8 HOMEPAGE=https://github.com/purcell/exec-path-from-shell/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/purcell/exec-path-from-shell/archive/1.12.tar.gz -> exec-path-from-shell-1.12.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=d70898bcef4d987a3e0b97db5d77c4b1 diff --git a/metadata/md5-cache/app-emacs/exheres-mode-1.10 b/metadata/md5-cache/app-emacs/exheres-mode-1.10 index 87965811f2b2..8cd6718278c7 100644 --- a/metadata/md5-cache/app-emacs/exheres-mode-1.10 +++ b/metadata/md5-cache/app-emacs/exheres-mode-1.10 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Major mode for editing files in exheres format EAPI=8 HOMEPAGE=https://www.exherbo.org/ https://gitlab.exherbo.org/exherbo-misc/exheres-mode/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.exherbo.org/distfiles/exheres-mode/exheres-mode-1.10.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=e0e014cf0b70b39afe80c8c0df9f8c4a diff --git a/metadata/md5-cache/app-emacs/expand-region-0.11.0-r1 b/metadata/md5-cache/app-emacs/expand-region-0.11.0-r1 index 984656b694c9..fb37ccc82ec2 100644 --- a/metadata/md5-cache/app-emacs/expand-region-0.11.0-r1 +++ b/metadata/md5-cache/app-emacs/expand-region-0.11.0-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs extension to increase selected region by semantic units EAPI=7 HOMEPAGE=https://github.com/magnars/expand-region.el @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/magnars/expand-region.el/archive/0.11.0.tar.gz -> expand-region-0.11.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=4177c3f6403c66872818d877654d51b6 diff --git a/metadata/md5-cache/app-emacs/external-completion-0.1 b/metadata/md5-cache/app-emacs/external-completion-0.1 index 241bdce326a6..99d7472db118 100644 --- a/metadata/md5-cache/app-emacs/external-completion-0.1 +++ b/metadata/md5-cache/app-emacs/external-completion-0.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-26.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Let external tools control completion style in GNU Emacs EAPI=8 HOMEPAGE=https://elpa.gnu.org/packages/external-completion.html @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-26.1:* SLOT=0 SRC_URI=https://dev.gentoo.org/~xgqt/distfiles/repackaged/external-completion-0.1.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=dd9902ae4ff3f0746b84eb33d314e64c diff --git a/metadata/md5-cache/app-emacs/exwm-0.26 b/metadata/md5-cache/app-emacs/exwm-0.26 index b2ba5961e9af..985dc7e828ea 100644 --- a/metadata/md5-cache/app-emacs/exwm-0.26 +++ b/metadata/md5-cache/app-emacs/exwm-0.26 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/xelb >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs X Window Manager EAPI=8 HOMEPAGE=https://github.com/ch11ng/exwm/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/xelb >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/ch11ng/exwm/archive/0.26.tar.gz -> exwm-0.26.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=a598f956f8378f6b326dde09587d1e93 diff --git a/metadata/md5-cache/app-emacs/exwm-0.27 b/metadata/md5-cache/app-emacs/exwm-0.27 index 060ad0225619..d9c14849fb8f 100644 --- a/metadata/md5-cache/app-emacs/exwm-0.27 +++ b/metadata/md5-cache/app-emacs/exwm-0.27 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/xelb >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs X Window Manager EAPI=8 HOMEPAGE=https://github.com/ch11ng/exwm/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/xelb x11-apps/xrandr >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/ch11ng/exwm/archive/0.27.tar.gz -> exwm-0.27.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=c600cf40883332cd9deb6d0be23a942d diff --git a/metadata/md5-cache/app-emacs/f-0.20.0-r1 b/metadata/md5-cache/app-emacs/f-0.20.0-r1 index 1ddfa0cf00c2..0e1887df0a8b 100644 --- a/metadata/md5-cache/app-emacs/f-0.20.0-r1 +++ b/metadata/md5-cache/app-emacs/f-0.20.0-r1 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/dash app-emacs/s >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Modern API for working with files and directories in Emacs EAPI=8 HOMEPAGE=https://github.com/rejeep/f.el/ @@ -10,5 +10,5 @@ RDEPEND=app-emacs/dash app-emacs/s >=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/rejeep/f.el/archive/v0.20.0.tar.gz -> f-0.20.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=0b1d0a161e8d06d26d34703ed0cb4325 diff --git a/metadata/md5-cache/app-emacs/fennel-mode-0.4.1-r1 b/metadata/md5-cache/app-emacs/fennel-mode-0.4.1-r1 index 6e69d1a76b76..5aef5143e295 100644 --- a/metadata/md5-cache/app-emacs/fennel-mode-0.4.1-r1 +++ b/metadata/md5-cache/app-emacs/fennel-mode-0.4.1-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-26.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs support for the Fennel programming language EAPI=8 HOMEPAGE=https://git.sr.ht/~technomancy/fennel-mode/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-26.1:* SLOT=0 SRC_URI=https://gitlab.com/technomancy/fennel-mode/-/archive/0.4.1/fennel-mode-0.4.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=78ff3de6f79e5459d5226dc045cef988 diff --git a/metadata/md5-cache/app-emacs/fennel-mode-0.5.0 b/metadata/md5-cache/app-emacs/fennel-mode-0.5.0 index d1d32526b32e..0d7ccba478bb 100644 --- a/metadata/md5-cache/app-emacs/fennel-mode-0.5.0 +++ b/metadata/md5-cache/app-emacs/fennel-mode-0.5.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-26.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs support for the Fennel programming language EAPI=8 HOMEPAGE=https://git.sr.ht/~technomancy/fennel-mode/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-26.1:* SLOT=0 SRC_URI=https://git.sr.ht/~technomancy/fennel-mode/archive/b3c52964eda7c0267f6e3f0ad6c690c3a1e89da1.tar.gz -> fennel-mode-0.5.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=3c345d679d0947b8d7965987c6cd94a0 diff --git a/metadata/md5-cache/app-emacs/fff-20050517 b/metadata/md5-cache/app-emacs/fff-20050517 index f9b27115c732..ef4602e18510 100644 --- a/metadata/md5-cache/app-emacs/fff-20050517 +++ b/metadata/md5-cache/app-emacs/fff-20050517 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Fast file finder for Emacs EAPI=7 HOMEPAGE=http://www.splode.com/~friedman/software/emacs-lisp/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=sys-apps/mlocate >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gentoo/fff-20050517.tar.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=1f2c072727cbe6a2ef352f5435a97880 diff --git a/metadata/md5-cache/app-emacs/filladapt-2.12-r2 b/metadata/md5-cache/app-emacs/filladapt-2.12-r2 index 5fd20a851c8b..203a53c6b456 100644 --- a/metadata/md5-cache/app-emacs/filladapt-2.12-r2 +++ b/metadata/md5-cache/app-emacs/filladapt-2.12-r2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Filladapt enhances the behavior of Emacs' fill functions EAPI=7 HOMEPAGE=http://www.wonderworks.com/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gentoo/filladapt-2.12.el.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=4d7ab429da39013ba96d143e6dd2739f diff --git a/metadata/md5-cache/app-emacs/filladapt-2.12.2 b/metadata/md5-cache/app-emacs/filladapt-2.12.2 index 2cd0e8303ce9..108b34a28d0d 100644 --- a/metadata/md5-cache/app-emacs/filladapt-2.12.2 +++ b/metadata/md5-cache/app-emacs/filladapt-2.12.2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Filladapt enhances the behavior of Emacs' fill functions EAPI=8 HOMEPAGE=http://www.wonderworks.com/ https://elpa.gnu.org/packages/filladapt.html @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/filladapt-2.12.2.el.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=2e9d4164823168f18a3f1add06466304 diff --git a/metadata/md5-cache/app-emacs/flashcard-2.3.3 b/metadata/md5-cache/app-emacs/flashcard-2.3.3 index cf52176d6fa2..0571cd3b927b 100644 --- a/metadata/md5-cache/app-emacs/flashcard-2.3.3 +++ b/metadata/md5-cache/app-emacs/flashcard-2.3.3 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=An Emacs Lisp package for drilling on questions and answers EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/FlashCard @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gentoo/flashcard-2.3.3.tar.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=81f03c744ab65161f1f33fa89ac493ea diff --git a/metadata/md5-cache/app-emacs/flim-1.14.9_p20190526 b/metadata/md5-cache/app-emacs/flim-1.14.9_p20190526 index d21ffe80d70d..fcbc92ad8b25 100644 --- a/metadata/md5-cache/app-emacs/flim-1.14.9_p20190526 +++ b/metadata/md5-cache/app-emacs/flim-1.14.9_p20190526 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=>=app-emacs/apel-10.8 DESCRIPTION=A library to provide basic features about message representation or encoding EAPI=7 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-emacs/apel-10.8 !app-emacs/limit >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/wanderlust/flim/archive/e4bd54fd7d335215b54f7ef27ed974c8cd68d472.tar.gz -> flim-1.14.9_p20190526.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=ab46a9f2a6f2c3df86e85a352697a42b diff --git a/metadata/md5-cache/app-emacs/flim-1.14.9_p20210529 b/metadata/md5-cache/app-emacs/flim-1.14.9_p20210529 index 6c9be6750d20..6d8dd8c3b2b5 100644 --- a/metadata/md5-cache/app-emacs/flim-1.14.9_p20210529 +++ b/metadata/md5-cache/app-emacs/flim-1.14.9_p20210529 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=>=app-emacs/apel-10.8 DESCRIPTION=A library to provide basic features about message representation or encoding EAPI=8 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-emacs/apel-10.8 >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/wanderlust/flim/archive/02735dede6603987e8309a76d0bc7a9ff9a5a227.tar.gz -> flim-1.14.9_p20210529.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=4b04e625d22bb6023ce9eae0f4454f00 diff --git a/metadata/md5-cache/app-emacs/flycheck-32_p20220328-r1 b/metadata/md5-cache/app-emacs/flycheck-32_p20220328-r1 index 0599c819b107..4b5cfa262b40 100644 --- a/metadata/md5-cache/app-emacs/flycheck-32_p20220328-r1 +++ b/metadata/md5-cache/app-emacs/flycheck-32_p20220328-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Modern on-the-fly syntax checking extension for GNU Emacs EAPI=8 HOMEPAGE=https://www.flycheck.org/ https://github.com/flycheck/flycheck/ @@ -10,5 +10,5 @@ RDEPEND=>=app-emacs/dash-2.12.1 >=app-emacs/pkg-info-0.4 >=app-editors/emacs-25. RESTRICT=test SLOT=0 SRC_URI=https://github.com/flycheck/flycheck/archive/3b5b4248074f016922c2674789d4a242528cf4c7.tar.gz -> flycheck-32_p20220328.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=601153bbc894081145c77c203b605966 diff --git a/metadata/md5-cache/app-emacs/flycheck-32_p20230305 b/metadata/md5-cache/app-emacs/flycheck-32_p20230305 index a586dbc495fa..3c748a03dcd2 100644 --- a/metadata/md5-cache/app-emacs/flycheck-32_p20230305 +++ b/metadata/md5-cache/app-emacs/flycheck-32_p20230305 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Modern on-the-fly syntax checking extension for GNU Emacs EAPI=8 HOMEPAGE=https://www.flycheck.org/ https://github.com/flycheck/flycheck/ @@ -10,5 +10,5 @@ RDEPEND=>=app-emacs/dash-2.12.1 >=app-emacs/pkg-info-0.4 >=app-editors/emacs-25. RESTRICT=test SLOT=0 SRC_URI=https://github.com/flycheck/flycheck/archive/5f2ef177cb21ae8b73714575802beef04abd0f5e.tar.gz -> flycheck-32_p20230305.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=2803af19050c4e43eeb8d29880625713 diff --git a/metadata/md5-cache/app-emacs/flycheck-32_p20230305-r1 b/metadata/md5-cache/app-emacs/flycheck-32_p20230305-r1 index f843bd4627b4..809bc9ec1bb3 100644 --- a/metadata/md5-cache/app-emacs/flycheck-32_p20230305-r1 +++ b/metadata/md5-cache/app-emacs/flycheck-32_p20230305-r1 @@ -11,5 +11,5 @@ RDEPEND=>=app-emacs/dash-2.12.1 >=app-emacs/pkg-info-0.4 >=app-editors/emacs-25. RESTRICT=!test? ( test ) test SLOT=0 SRC_URI=https://github.com/flycheck/flycheck/archive/5f2ef177cb21ae8b73714575802beef04abd0f5e.tar.gz -> flycheck-32_p20230305.tar.gz -_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=c8061b6c2888a8fd63fe33bfedddc84a diff --git a/metadata/md5-cache/app-emacs/flycheck-clang-tidy-0.3.0_p20201116 b/metadata/md5-cache/app-emacs/flycheck-clang-tidy-0.3.0_p20201116 index 290fc284c4f0..16520cddf3ca 100644 --- a/metadata/md5-cache/app-emacs/flycheck-clang-tidy-0.3.0_p20201116 +++ b/metadata/md5-cache/app-emacs/flycheck-clang-tidy-0.3.0_p20201116 @@ -1,5 +1,5 @@ BDEPEND=>=app-emacs/flycheck-0.30 >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Flycheck syntax checker using clang-tidy EAPI=8 HOMEPAGE=https://github.com/ch1bo/flycheck-clang-tidy @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=>=app-emacs/flycheck-0.30 >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/ch1bo/flycheck-clang-tidy/archive/f9ae7306bd6ca08b689b36c1e8f6f6b91d61db5f.tar.gz -> flycheck-clang-tidy-0.3.0_p20201116.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=77e08018c6cc3aef1e813c7f360f45d4 diff --git a/metadata/md5-cache/app-emacs/flycheck-guile-0.4 b/metadata/md5-cache/app-emacs/flycheck-guile-0.4 index 78120ff55e84..4855d428dbaf 100644 --- a/metadata/md5-cache/app-emacs/flycheck-guile-0.4 +++ b/metadata/md5-cache/app-emacs/flycheck-guile-0.4 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/flycheck app-emacs/geiser-guile >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Flycheck checker for the GNU Guile Scheme implementation EAPI=8 HOMEPAGE=https://github.com/flatwhatson/flycheck-guile/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/flycheck app-emacs/geiser-guile >=dev-scheme/guile-2.0.0 >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/flatwhatson/flycheck-guile/archive/0.4.tar.gz -> flycheck-guile-0.4.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=2d121730492dbdb0199d268a983a9c80 diff --git a/metadata/md5-cache/app-emacs/flycheck-guile-0.5 b/metadata/md5-cache/app-emacs/flycheck-guile-0.5 index cd907ab7cf94..b984788fd148 100644 --- a/metadata/md5-cache/app-emacs/flycheck-guile-0.5 +++ b/metadata/md5-cache/app-emacs/flycheck-guile-0.5 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/flycheck app-emacs/geiser-guile >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Flycheck checker for the GNU Guile Scheme implementation EAPI=8 HOMEPAGE=https://github.com/flatwhatson/flycheck-guile/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/flycheck app-emacs/geiser-guile >=dev-scheme/guile-2.0.0 >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/flatwhatson/flycheck-guile/archive/0.5.tar.gz -> flycheck-guile-0.5.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=b43aab0469935ac6a58326fb51efa60d diff --git a/metadata/md5-cache/app-emacs/flycheck-inline-0_pre20200808 b/metadata/md5-cache/app-emacs/flycheck-inline-0_pre20200808 index 9d08ec8773ee..38414ba11748 100644 --- a/metadata/md5-cache/app-emacs/flycheck-inline-0_pre20200808 +++ b/metadata/md5-cache/app-emacs/flycheck-inline-0_pre20200808 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=app-emacs/flycheck DESCRIPTION=Display Flycheck errors inline EAPI=8 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/flycheck >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/flycheck/flycheck-inline/archive/8e00b4c5951a9515a450a14aefe92e9f6ddcfbde.tar.gz -> flycheck-inline-0_pre20200808.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=e45532950d4037d91613a89560e0d645 diff --git a/metadata/md5-cache/app-emacs/flycheck-nimsuggest-0.8.1_p20171027-r1 b/metadata/md5-cache/app-emacs/flycheck-nimsuggest-0.8.1_p20171027-r1 index dfa95b1deb57..5ff568d4f75c 100644 --- a/metadata/md5-cache/app-emacs/flycheck-nimsuggest-0.8.1_p20171027-r1 +++ b/metadata/md5-cache/app-emacs/flycheck-nimsuggest-0.8.1_p20171027-r1 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/flycheck >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs Flycheck backend for Nim language using nimsuggest EAPI=8 HOMEPAGE=https://github.com/yuutayamada/flycheck-nimsuggest/ @@ -10,5 +10,5 @@ PDEPEND=app-emacs/nim-mode RDEPEND=app-emacs/flycheck dev-lang/nim >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/yuutayamada/flycheck-nimsuggest/archive/dc9a5de1cb3ee05db5794d824610959a1f603bc9.tar.gz -> flycheck-nimsuggest-0.8.1_p20171027.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=9e49e3a619437b3d159a8d50e9279831 diff --git a/metadata/md5-cache/app-emacs/flycheck-package-0.14 b/metadata/md5-cache/app-emacs/flycheck-package-0.14 index 906cfaf2ad47..8716fb040e65 100644 --- a/metadata/md5-cache/app-emacs/flycheck-package-0.14 +++ b/metadata/md5-cache/app-emacs/flycheck-package-0.14 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/flycheck app-emacs/package-lint >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Flycheck checker for Emacs Lisp package metadata EAPI=8 HOMEPAGE=https://github.com/purcell/flycheck-package/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/flycheck app-emacs/package-lint >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/purcell/flycheck-package/archive/0.14.tar.gz -> flycheck-package-0.14.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=33cd5d991f46deb1567d021e98f30704 diff --git a/metadata/md5-cache/app-emacs/folding-2019.0524.1621 b/metadata/md5-cache/app-emacs/folding-2019.0524.1621 index 634a47babbbb..00c68a8e886f 100644 --- a/metadata/md5-cache/app-emacs/folding-2019.0524.1621 +++ b/metadata/md5-cache/app-emacs/folding-2019.0524.1621 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A folding-editor-like Emacs minor mode EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/FoldingMode @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/jaalto/project-emacs--folding-mode/archive/a1361aa154b27bd4db2e1cfe6c3b81b4fc1fdc9a.tar.gz -> folding-2019.0524.1621.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=5bfed2527b21ef3c903362f80c4906ec diff --git a/metadata/md5-cache/app-emacs/fsharp-mode-1.10_p20211229 b/metadata/md5-cache/app-emacs/fsharp-mode-1.10_p20211229 index eabb248c49cd..d301486853e5 100644 --- a/metadata/md5-cache/app-emacs/fsharp-mode-1.10_p20211229 +++ b/metadata/md5-cache/app-emacs/fsharp-mode-1.10_p20211229 @@ -11,5 +11,5 @@ RDEPEND=app-emacs/s >=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/fsharp/emacs-fsharp-mode/archive/b3aa4c53fc9e98648b25ad036e657632ae2fe192.tar.gz -> fsharp-mode-1.10_p20211229.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=369057043be10f979d0a4261d2036d27 diff --git a/metadata/md5-cache/app-emacs/fsharp-mode-2.0 b/metadata/md5-cache/app-emacs/fsharp-mode-2.0 index 9595830946b2..38e24281208a 100644 --- a/metadata/md5-cache/app-emacs/fsharp-mode-2.0 +++ b/metadata/md5-cache/app-emacs/fsharp-mode-2.0 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/fsharp/emacs-fsharp-mode/archive/2.0.tar.gz -> fsharp-mode-2.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 -_md5_=153973a8e4e38d97397b72099c88a720 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 +_md5_=b47198021a1e916d006f619407a0d777 diff --git a/metadata/md5-cache/app-emacs/geiser-0.28 b/metadata/md5-cache/app-emacs/geiser-0.28 index ef1cb17762cc..db6c25b42123 100644 --- a/metadata/md5-cache/app-emacs/geiser-0.28 +++ b/metadata/md5-cache/app-emacs/geiser-0.28 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/transient app-text/texi2html sys-apps/texinfo >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Generic interaction mode between Emacs and different Scheme implementations EAPI=8 HOMEPAGE=https://gitlab.com/emacs-geiser/geiser/ @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=app-emacs/transient >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://gitlab.com/emacs-geiser/geiser/-/archive/0.28/geiser-0.28.tar.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=59b63b40365b47f2adf6ff02d10ef318 diff --git a/metadata/md5-cache/app-emacs/geiser-0.28.1 b/metadata/md5-cache/app-emacs/geiser-0.28.1 index 36dd090167cd..a03cacf632d1 100644 --- a/metadata/md5-cache/app-emacs/geiser-0.28.1 +++ b/metadata/md5-cache/app-emacs/geiser-0.28.1 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/transient app-text/texi2html sys-apps/texinfo >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Generic interaction mode between Emacs and different Scheme implementations EAPI=8 HOMEPAGE=https://gitlab.com/emacs-geiser/geiser/ @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=app-emacs/transient >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://gitlab.com/emacs-geiser/geiser/-/archive/0.28.1/geiser-0.28.1.tar.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=292e5ff42ef495272da6c1fbe143932b diff --git a/metadata/md5-cache/app-emacs/geiser-0.28.2 b/metadata/md5-cache/app-emacs/geiser-0.28.2 index 6acbddc5bf6e..ed612e3aa5de 100644 --- a/metadata/md5-cache/app-emacs/geiser-0.28.2 +++ b/metadata/md5-cache/app-emacs/geiser-0.28.2 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/transient app-text/texi2html sys-apps/texinfo >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Generic interaction mode between Emacs and different Scheme implementations EAPI=8 HOMEPAGE=https://gitlab.com/emacs-geiser/geiser/ @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=app-emacs/transient >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://gitlab.com/emacs-geiser/geiser/-/archive/0.28.2/geiser-0.28.2.tar.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=292e5ff42ef495272da6c1fbe143932b diff --git a/metadata/md5-cache/app-emacs/geiser-chez-0.17 b/metadata/md5-cache/app-emacs/geiser-chez-0.17 index 7e6cf99cf8ef..76cf30a2a5eb 100644 --- a/metadata/md5-cache/app-emacs/geiser-chez-0.17 +++ b/metadata/md5-cache/app-emacs/geiser-chez-0.17 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/geiser >=app-editors/emacs-26.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Chez Scheme's implementation of the Geiser protocols EAPI=8 HOMEPAGE=https://gitlab.com/emacs-geiser/chez/ @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=app-emacs/geiser dev-scheme/chez >=app-editors/emacs-26.1:* SLOT=0 SRC_URI=https://gitlab.com/emacs-geiser/chez/-/archive/0.17/chez-0.17.tar.gz -> geiser-chez-0.17.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=ea373b1d83b26cec012cce1fd8b66a81 diff --git a/metadata/md5-cache/app-emacs/geiser-chez-0.18 b/metadata/md5-cache/app-emacs/geiser-chez-0.18 index c1c92ef06cad..7e50c7dcbfa8 100644 --- a/metadata/md5-cache/app-emacs/geiser-chez-0.18 +++ b/metadata/md5-cache/app-emacs/geiser-chez-0.18 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/geiser >=app-editors/emacs-26.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Chez Scheme's implementation of the Geiser protocols EAPI=8 HOMEPAGE=https://gitlab.com/emacs-geiser/chez/ @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=app-emacs/geiser dev-scheme/chez >=app-editors/emacs-26.1:* SLOT=0 SRC_URI=https://gitlab.com/emacs-geiser/chez/-/archive/0.18/chez-0.18.tar.bz2 -> geiser-chez-0.18.tar.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=14c15a7445d6484c3b1ac62caa09c4b2 diff --git a/metadata/md5-cache/app-emacs/geiser-chicken-0.17 b/metadata/md5-cache/app-emacs/geiser-chicken-0.17 index 8829f9f6a988..0a18f2eae48c 100644 --- a/metadata/md5-cache/app-emacs/geiser-chicken-0.17 +++ b/metadata/md5-cache/app-emacs/geiser-chicken-0.17 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/geiser >=app-editors/emacs-26.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Chicken Scheme's implementation of the Geiser protocols EAPI=8 HOMEPAGE=https://gitlab.com/emacs-geiser/chicken/ @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=app-emacs/geiser dev-scheme/chicken >=app-editors/emacs-26.1:* SLOT=0 SRC_URI=https://gitlab.com/emacs-geiser/chicken/-/archive/0.17/chicken-0.17.tar.gz -> geiser-chicken-0.17.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=feaa1c317b76fe4d9f4afe6cd519527c diff --git a/metadata/md5-cache/app-emacs/geiser-gambit-0.18.1 b/metadata/md5-cache/app-emacs/geiser-gambit-0.18.1 index 74e75e7d70ff..0679784051e1 100644 --- a/metadata/md5-cache/app-emacs/geiser-gambit-0.18.1 +++ b/metadata/md5-cache/app-emacs/geiser-gambit-0.18.1 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/geiser >=app-editors/emacs-26.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Gambit Scheme's implementation of the Geiser protocols EAPI=8 HOMEPAGE=https://gitlab.com/emacs-geiser/gambit/ @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=app-emacs/geiser >=dev-scheme/gambit-4.9.4 >=app-editors/emacs-26.1:* SLOT=0 SRC_URI=https://gitlab.com/emacs-geiser/gambit/-/archive/0.18.1/gambit-0.18.1.tar.gz -> geiser-gambit-0.18.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=b80f67f4987523ac17c4c6e62b47c28c diff --git a/metadata/md5-cache/app-emacs/geiser-guile-0.26.1 b/metadata/md5-cache/app-emacs/geiser-guile-0.26.1 index 573d1e9f7ae0..40cd13704121 100644 --- a/metadata/md5-cache/app-emacs/geiser-guile-0.26.1 +++ b/metadata/md5-cache/app-emacs/geiser-guile-0.26.1 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/geiser >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Guile's implementation of the Geiser protocols EAPI=8 HOMEPAGE=https://gitlab.com/emacs-geiser/guile/ @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=app-emacs/geiser dev-scheme/guile >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://gitlab.com/emacs-geiser/guile/-/archive/0.26.1/guile-0.26.1.tar.gz -> geiser-guile-0.26.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=b47ff8541c1f76ae9cb8162a865fea64 diff --git a/metadata/md5-cache/app-emacs/geiser-guile-0.28.0 b/metadata/md5-cache/app-emacs/geiser-guile-0.28.0 index f94da4405866..60ff8bff8a37 100644 --- a/metadata/md5-cache/app-emacs/geiser-guile-0.28.0 +++ b/metadata/md5-cache/app-emacs/geiser-guile-0.28.0 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/geiser >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Guile's implementation of the Geiser protocols EAPI=8 HOMEPAGE=https://gitlab.com/emacs-geiser/guile/ @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=app-emacs/geiser dev-scheme/guile >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://gitlab.com/emacs-geiser/guile/-/archive/0.28.0/guile-0.28.0.tar.gz -> geiser-guile-0.28.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=b47ff8541c1f76ae9cb8162a865fea64 diff --git a/metadata/md5-cache/app-emacs/geiser-guile-0.28.1 b/metadata/md5-cache/app-emacs/geiser-guile-0.28.1 index 11bef0ba46d7..a5c196e9c277 100644 --- a/metadata/md5-cache/app-emacs/geiser-guile-0.28.1 +++ b/metadata/md5-cache/app-emacs/geiser-guile-0.28.1 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/geiser >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Guile's implementation of the Geiser protocols EAPI=8 HOMEPAGE=https://gitlab.com/emacs-geiser/guile/ @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=app-emacs/geiser dev-scheme/guile >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://gitlab.com/emacs-geiser/guile/-/archive/0.28.1/guile-0.28.1.tar.bz2 -> geiser-guile-0.28.1.tar.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=0280eb2503b414b98fda6e90d0a6ab7c diff --git a/metadata/md5-cache/app-emacs/geiser-mit-0.15 b/metadata/md5-cache/app-emacs/geiser-mit-0.15 index 6f0d29bb9515..93ac7a552ac4 100644 --- a/metadata/md5-cache/app-emacs/geiser-mit-0.15 +++ b/metadata/md5-cache/app-emacs/geiser-mit-0.15 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/geiser dev-scheme/mit-scheme >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=MIT/GNU Scheme's implementation of the Geiser protocols EAPI=8 HOMEPAGE=https://gitlab.com/emacs-geiser/mit/ @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=app-emacs/geiser dev-scheme/mit-scheme >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://gitlab.com/emacs-geiser/mit/-/archive/0.15/mit-0.15.tar.gz -> geiser-mit-0.15.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=10ed71b5eefedf93e32855c13974dcd8 diff --git a/metadata/md5-cache/app-emacs/ghub-3.5.4 b/metadata/md5-cache/app-emacs/ghub-3.5.4 index 69966ff554b8..0d9b6d895634 100644 --- a/metadata/md5-cache/app-emacs/ghub-3.5.4 +++ b/metadata/md5-cache/app-emacs/ghub-3.5.4 @@ -1,5 +1,5 @@ BDEPEND=>=app-emacs/treepy-0.1.1 sys-apps/texinfo >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Minuscule client library for the Git forge APIs EAPI=8 HOMEPAGE=https://magit.vc/manual/ghub @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-emacs/treepy-0.1.1 >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/magit/ghub/archive/v3.5.4.tar.gz -> ghub-3.5.4.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=bb28dca3ec61117eb28e92a593ed47ba diff --git a/metadata/md5-cache/app-emacs/ghub-3.5.6 b/metadata/md5-cache/app-emacs/ghub-3.5.6 index f39453e994d4..38cf41bad0e9 100644 --- a/metadata/md5-cache/app-emacs/ghub-3.5.6 +++ b/metadata/md5-cache/app-emacs/ghub-3.5.6 @@ -1,5 +1,5 @@ BDEPEND=>=app-emacs/treepy-0.1.1 sys-apps/texinfo >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Minuscule client library for the Git forge APIs EAPI=8 HOMEPAGE=https://magit.vc/manual/ghub @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-emacs/treepy-0.1.1 >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/magit/ghub/archive/v3.5.6.tar.gz -> ghub-3.5.6.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=04d7a523709ec00cb7d75290721fbc94 diff --git a/metadata/md5-cache/app-emacs/git-modes-1.4.0 b/metadata/md5-cache/app-emacs/git-modes-1.4.0 index 08d3640f26cf..efba6ce43666 100644 --- a/metadata/md5-cache/app-emacs/git-modes-1.4.0 +++ b/metadata/md5-cache/app-emacs/git-modes-1.4.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs major modes for editing Git configuration files EAPI=8 HOMEPAGE=https://github.com/magit/git-modes/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/magit/git-modes/archive/1.4.0.tar.gz -> git-modes-1.4.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=6852d914672f188671111aad9f818f8f diff --git a/metadata/md5-cache/app-emacs/gnuplot-mode-0.8.0 b/metadata/md5-cache/app-emacs/gnuplot-mode-0.8.0 index bc3300fdd5af..e47257e9d5fe 100644 --- a/metadata/md5-cache/app-emacs/gnuplot-mode-0.8.0 +++ b/metadata/md5-cache/app-emacs/gnuplot-mode-0.8.0 @@ -1,5 +1,5 @@ BDEPEND=doc? ( virtual/latex-base ) >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Gnuplot mode for Emacs EAPI=7 HOMEPAGE=https://github.com/emacsorphanage/gnuplot @@ -10,5 +10,5 @@ LICENSE=GPL-3+ gnuplot RDEPEND=sci-visualization/gnuplot[-emacs(-)] >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/emacsorphanage/gnuplot/archive/refs/tags/0.8.0.tar.gz -> gnuplot-mode-0.8.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=a24744531a8c153496eae7d9cc6459ec diff --git a/metadata/md5-cache/app-emacs/gnuserv-3.12.8-r5 b/metadata/md5-cache/app-emacs/gnuserv-3.12.8-r5 index 71f5a9a37460..a730465ba3dc 100644 --- a/metadata/md5-cache/app-emacs/gnuserv-3.12.8-r5 +++ b/metadata/md5-cache/app-emacs/gnuserv-3.12.8-r5 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=>=app-eselect/eselect-emacs-1.15 X? ( x11-libs/libXau ) X? ( x11-base/xorg-proto ) DESCRIPTION=Attach to an already running Emacs EAPI=7 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-eselect/eselect-emacs-1.15 X? ( x11-libs/libXau ) >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://web.archive.org/web/20150908031821/http://martin.meltin.net/sites/martin.meltin.net/files/hacks/gnuserv-3.12.8.tar.gz -_eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=557793878b3ae88060488483737e695b diff --git a/metadata/md5-cache/app-emacs/go-mode-1.6.0 b/metadata/md5-cache/app-emacs/go-mode-1.6.0 index 376ee93fcc71..03c499a2a3c7 100644 --- a/metadata/md5-cache/app-emacs/go-mode-1.6.0 +++ b/metadata/md5-cache/app-emacs/go-mode-1.6.0 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=app-editors/emacs-26:* SLOT=0 SRC_URI=https://dev.gentoo.org/~matthew/distfiles/go-mode-1.6.0.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=00a67e2f20d40584f735c095bf8b9957 diff --git a/metadata/md5-cache/app-emacs/google-c-style-20140929 b/metadata/md5-cache/app-emacs/google-c-style-20140929 index 688661e3b84d..f3359b45f4e3 100644 --- a/metadata/md5-cache/app-emacs/google-c-style-20140929 +++ b/metadata/md5-cache/app-emacs/google-c-style-20140929 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Provides the google C/C++ coding style EAPI=7 HOMEPAGE=https://github.com/google/styleguide @@ -9,5 +9,5 @@ LICENSE=|| ( GPL-1+ Artistic ) RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/google-c-style-20140929.el.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=10e1327d7989e968aa4cbf0e692fb9b2 diff --git a/metadata/md5-cache/app-emacs/graphql-0.1.1 b/metadata/md5-cache/app-emacs/graphql-0.1.1 index c2a368025c51..18d1bda1653b 100644 --- a/metadata/md5-cache/app-emacs/graphql-0.1.1 +++ b/metadata/md5-cache/app-emacs/graphql-0.1.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=GraphQL utilities EAPI=7 HOMEPAGE=https://github.com/vermiculus/graphql.el @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/vermiculus/graphql.el/archive/0.1.1.tar.gz -> graphql-0.1.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=2920f0303b1385577de837ac65c4072f diff --git a/metadata/md5-cache/app-emacs/graphql-0.1.2 b/metadata/md5-cache/app-emacs/graphql-0.1.2 index 7d8cd1d46171..14d15ff3cc19 100644 --- a/metadata/md5-cache/app-emacs/graphql-0.1.2 +++ b/metadata/md5-cache/app-emacs/graphql-0.1.2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=GraphQL utilities EAPI=8 HOMEPAGE=https://github.com/vermiculus/graphql.el/ @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/vermiculus/graphql.el/archive/67237f284f2dfb94f3cfba672ff64a37e1cb860f.tar.gz -> graphql-0.1.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=8b50f256e539d787aec1bfb8319a4660 diff --git a/metadata/md5-cache/app-emacs/graphviz-dot-mode-0.4 b/metadata/md5-cache/app-emacs/graphviz-dot-mode-0.4 index 3f674c36b545..30e3e2e6cec2 100644 --- a/metadata/md5-cache/app-emacs/graphviz-dot-mode-0.4 +++ b/metadata/md5-cache/app-emacs/graphviz-dot-mode-0.4 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs mode for editing and previewing Graphviz dot graphs EAPI=7 HOMEPAGE=http://users.skynet.be/ppareit/projects/graphviz-dot-mode/graphviz-dot-mode.html https://github.com/ppareit/graphviz-dot-mode http://www.graphviz.org/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/ppareit/graphviz-dot-mode/archive/v0.4.tar.gz -> graphviz-dot-mode-0.4.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=7b0fcfa9a7f0aa959a9ee262ecc7a306 diff --git a/metadata/md5-cache/app-emacs/graphviz-dot-mode-0.4.20181118 b/metadata/md5-cache/app-emacs/graphviz-dot-mode-0.4.20181118 index 28958b646c04..a1b4979a2d07 100644 --- a/metadata/md5-cache/app-emacs/graphviz-dot-mode-0.4.20181118 +++ b/metadata/md5-cache/app-emacs/graphviz-dot-mode-0.4.20181118 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs mode for editing and previewing Graphviz dot graphs EAPI=7 HOMEPAGE=http://users.skynet.be/ppareit/projects/graphviz-dot-mode/graphviz-dot-mode.html https://github.com/ppareit/graphviz-dot-mode https://www.graphviz.org/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/ppareit/graphviz-dot-mode/archive/243de72e09ddd5cdc4863613af8b749827a5e1cd.tar.gz -> graphviz-dot-mode-0.4.20181118.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=9c0190d653c5ef147a1e76149558a263 diff --git a/metadata/md5-cache/app-emacs/groovy-emacs-modes-2.1 b/metadata/md5-cache/app-emacs/groovy-emacs-modes-2.1 index 881808b91d20..e432a20d74aa 100644 --- a/metadata/md5-cache/app-emacs/groovy-emacs-modes-2.1 +++ b/metadata/md5-cache/app-emacs/groovy-emacs-modes-2.1 @@ -11,5 +11,5 @@ RDEPEND=app-emacs/s app-emacs/dash >=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Groovy-Emacs-Modes/groovy-emacs-modes/archive/2.1.tar.gz -> groovy-emacs-modes-2.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=25a087acdf3b90c4165a477d5cee53fd diff --git a/metadata/md5-cache/app-emacs/h4x0r-0.13-r1 b/metadata/md5-cache/app-emacs/h4x0r-0.13-r1 index c393cc4531ea..f1f19ce87e1c 100644 --- a/metadata/md5-cache/app-emacs/h4x0r-0.13-r1 +++ b/metadata/md5-cache/app-emacs/h4x0r-0.13-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Aid in writing like a script kiddie does EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/EliteSpeech @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gentoo/h4x0r-0.13.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=830a4e8cc567efec467d7205993cecbc diff --git a/metadata/md5-cache/app-emacs/haskell-mode-17.2 b/metadata/md5-cache/app-emacs/haskell-mode-17.2 index 4dbfe1164413..7bb10fb13622 100644 --- a/metadata/md5-cache/app-emacs/haskell-mode-17.2 +++ b/metadata/md5-cache/app-emacs/haskell-mode-17.2 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ FDL-1.2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/haskell/haskell-mode/archive/17.2.tar.gz -> haskell-mode-17.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=33070aef27f1091b6aa4d9dcd99d5748 diff --git a/metadata/md5-cache/app-emacs/haxe-mode-0.3.3 b/metadata/md5-cache/app-emacs/haxe-mode-0.3.3 index a023f6dd105a..172622de2a96 100644 --- a/metadata/md5-cache/app-emacs/haxe-mode-0.3.3 +++ b/metadata/md5-cache/app-emacs/haxe-mode-0.3.3 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Major mode for editing Haxe files EAPI=8 HOMEPAGE=https://github.com/emacsorphanage/haxe-mode/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/emacsorphanage/haxe-mode/archive/0.3.3.tar.gz -> haxe-mode-0.3.3.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=58864161772735bd678f18cf4bf8cb75 diff --git a/metadata/md5-cache/app-emacs/helm-3.8.5 b/metadata/md5-cache/app-emacs/helm-3.8.5 index e2ee9d310171..79f80c5d8d73 100644 --- a/metadata/md5-cache/app-emacs/helm-3.8.5 +++ b/metadata/md5-cache/app-emacs/helm-3.8.5 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/async app-emacs/popup >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs incremental completion and selection narrowing framework EAPI=8 HOMEPAGE=https://emacs-helm.github.io/helm/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/async app-emacs/popup >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/emacs-helm/helm/archive/v3.8.5.tar.gz -> helm-3.8.5.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=95075992688a41a1d16a800f1b1ebe68 diff --git a/metadata/md5-cache/app-emacs/helm-3.8.6 b/metadata/md5-cache/app-emacs/helm-3.8.6 index 9df630007b85..04f871f5d4d7 100644 --- a/metadata/md5-cache/app-emacs/helm-3.8.6 +++ b/metadata/md5-cache/app-emacs/helm-3.8.6 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/async app-emacs/popup >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs incremental completion and selection narrowing framework EAPI=8 HOMEPAGE=https://emacs-helm.github.io/helm/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/async app-emacs/popup >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/emacs-helm/helm/archive/v3.8.6.tar.gz -> helm-3.8.6.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=95075992688a41a1d16a800f1b1ebe68 diff --git a/metadata/md5-cache/app-emacs/helm-3.8.7 b/metadata/md5-cache/app-emacs/helm-3.8.7 index 4887e405ef31..d66db7458e67 100644 --- a/metadata/md5-cache/app-emacs/helm-3.8.7 +++ b/metadata/md5-cache/app-emacs/helm-3.8.7 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/async app-emacs/popup >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs incremental completion and selection narrowing framework EAPI=8 HOMEPAGE=https://emacs-helm.github.io/helm/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/async app-emacs/popup >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/emacs-helm/helm/archive/v3.8.7.tar.gz -> helm-3.8.7.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=9999545c33495d7fdb4f11a42a27ec9a diff --git a/metadata/md5-cache/app-emacs/helm-3.8.8 b/metadata/md5-cache/app-emacs/helm-3.8.8 index b8f5c8ab75d0..c41245ee218b 100644 --- a/metadata/md5-cache/app-emacs/helm-3.8.8 +++ b/metadata/md5-cache/app-emacs/helm-3.8.8 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/async app-emacs/popup >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs incremental completion and selection narrowing framework EAPI=8 HOMEPAGE=https://emacs-helm.github.io/helm/ https://github.com/emacs-helm/helm/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/async app-emacs/popup >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/emacs-helm/helm/archive/v3.8.8.tar.gz -> helm-3.8.8.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=6106090f9dc001a13731bab8b05a7240 diff --git a/metadata/md5-cache/app-emacs/helm-3.9.0 b/metadata/md5-cache/app-emacs/helm-3.9.0 index 7188ffd1929f..7e74f34412ba 100644 --- a/metadata/md5-cache/app-emacs/helm-3.9.0 +++ b/metadata/md5-cache/app-emacs/helm-3.9.0 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/async app-emacs/popup >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs incremental completion and selection narrowing framework EAPI=8 HOMEPAGE=https://emacs-helm.github.io/helm/ https://github.com/emacs-helm/helm/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/async app-emacs/popup >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/emacs-helm/helm/archive/v3.9.0.tar.gz -> helm-3.9.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=8c0c38e8e89e16943d207e41732ec39a diff --git a/metadata/md5-cache/app-emacs/helm-system-packages-1.10.1 b/metadata/md5-cache/app-emacs/helm-system-packages-1.10.1 index 8d0c84ccba3f..8b51321d9be3 100644 --- a/metadata/md5-cache/app-emacs/helm-system-packages-1.10.1 +++ b/metadata/md5-cache/app-emacs/helm-system-packages-1.10.1 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/helm >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A Helm interface to the package manager of your operating system EAPI=7 HOMEPAGE=https://github.com/emacs-helm/helm-system-packages @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/helm >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/emacs-helm/helm-system-packages/archive/v1.10.1.tar.gz -> helm-system-packages-1.10.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=6f546d7e5e02da8bd885b0f6d354c7fe diff --git a/metadata/md5-cache/app-emacs/helm-system-packages-1.10.2 b/metadata/md5-cache/app-emacs/helm-system-packages-1.10.2 index 41cfe79103a3..5fd3a815cd36 100644 --- a/metadata/md5-cache/app-emacs/helm-system-packages-1.10.2 +++ b/metadata/md5-cache/app-emacs/helm-system-packages-1.10.2 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/helm >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A Helm interface to the package manager of your operating system EAPI=8 HOMEPAGE=https://github.com/emacs-helm/helm-system-packages @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/helm >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/emacs-helm/helm-system-packages/archive/v1.10.2.tar.gz -> helm-system-packages-1.10.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=51471f578d40f6fb2e410fad6f9c8cb7 diff --git a/metadata/md5-cache/app-emacs/hexrgb-0_p1019 b/metadata/md5-cache/app-emacs/hexrgb-0_p1019 index c589f4dc6421..d74c2d89fa82 100644 --- a/metadata/md5-cache/app-emacs/hexrgb-0_p1019 +++ b/metadata/md5-cache/app-emacs/hexrgb-0_p1019 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Functions to manipulate colors, including RGB hex strings EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/hexrgb.el @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/hexrgb-0_p1019.el.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=18e63a7ffc3d28dc8bfa50a432aeb73c diff --git a/metadata/md5-cache/app-emacs/highlight-indentation-0.7.0_p20210221 b/metadata/md5-cache/app-emacs/highlight-indentation-0.7.0_p20210221 index b120994e7fa6..a35395a3d3bd 100644 --- a/metadata/md5-cache/app-emacs/highlight-indentation-0.7.0_p20210221 +++ b/metadata/md5-cache/app-emacs/highlight-indentation-0.7.0_p20210221 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Minor modes to highlight indentation guides in Emacs EAPI=8 HOMEPAGE=https://github.com/antonj/Highlight-Indentation-for-Emacs/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/antonj/Highlight-Indentation-for-Emacs/archive/d88db4248882da2d4316e76ed673b4ac1fa99ce3.tar.gz -> highlight-indentation-0.7.0_p20210221.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=c63ef9e17d7c8324943b7638d822fa78 diff --git a/metadata/md5-cache/app-emacs/highline-7.2.2 b/metadata/md5-cache/app-emacs/highline-7.2.2 index 29eb600d3811..588de27370dd 100644 --- a/metadata/md5-cache/app-emacs/highline-7.2.2 +++ b/metadata/md5-cache/app-emacs/highline-7.2.2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Minor mode to highlight current line in buffer EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/HighlineMode @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/highline-7.2.2.el.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=c63463b7b8e6ffdb5d9a7814345b0f89 diff --git a/metadata/md5-cache/app-emacs/hl-todo-3.4.1 b/metadata/md5-cache/app-emacs/hl-todo-3.4.1 index 26512c23dc94..ed74de7f6ac2 100644 --- a/metadata/md5-cache/app-emacs/hl-todo-3.4.1 +++ b/metadata/md5-cache/app-emacs/hl-todo-3.4.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Highlight TODO and similar keywords in comments and strings EAPI=8 HOMEPAGE=https://github.com/tarsius/hl-todo @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/tarsius/hl-todo/archive/refs/tags/v3.4.1.tar.gz -> hl-todo-3.4.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=965b0fffe908855ef8f6f690d9a5b8ef diff --git a/metadata/md5-cache/app-emacs/hl-todo-3.4.2 b/metadata/md5-cache/app-emacs/hl-todo-3.4.2 index 43e8e9ac0b21..c4a0b66d43a3 100644 --- a/metadata/md5-cache/app-emacs/hl-todo-3.4.2 +++ b/metadata/md5-cache/app-emacs/hl-todo-3.4.2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Highlight TODO and similar keywords in comments and strings EAPI=8 HOMEPAGE=https://github.com/tarsius/hl-todo @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/tarsius/hl-todo/archive/refs/tags/v3.4.2.tar.gz -> hl-todo-3.4.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=fe17613d43f69432c745dbecca43c13a diff --git a/metadata/md5-cache/app-emacs/howm-1.4.5 b/metadata/md5-cache/app-emacs/howm-1.4.5 index 115d52eb6821..f83e93c4f0f9 100644 --- a/metadata/md5-cache/app-emacs/howm-1.4.5 +++ b/metadata/md5-cache/app-emacs/howm-1.4.5 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Note-taking tool on Emacs EAPI=7 HOMEPAGE=https://howm.sourceforge.jp/ @@ -9,5 +9,5 @@ LICENSE=GPL-1+ GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=http://howm.sourceforge.jp/a/howm-1.4.5.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=62be48057c4c7105d16dadd69c26a138 diff --git a/metadata/md5-cache/app-emacs/howm-1.4.8 b/metadata/md5-cache/app-emacs/howm-1.4.8 index ecab23543f1d..e28dc88d4b9a 100644 --- a/metadata/md5-cache/app-emacs/howm-1.4.8 +++ b/metadata/md5-cache/app-emacs/howm-1.4.8 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Note-taking tool on Emacs EAPI=8 HOMEPAGE=https://howm.sourceforge.jp/ @@ -9,5 +9,5 @@ LICENSE=GPL-1+ GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=http://howm.sourceforge.jp/a/howm-1.4.8.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=982826936504c37589d6b380fff5d381 diff --git a/metadata/md5-cache/app-emacs/ht-2.3 b/metadata/md5-cache/app-emacs/ht-2.3 index 9e492b985b05..9cdc0c7c7e14 100644 --- a/metadata/md5-cache/app-emacs/ht-2.3 +++ b/metadata/md5-cache/app-emacs/ht-2.3 @@ -11,5 +11,5 @@ RDEPEND=>=app-emacs/dash-2.12.0 >=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Wilfred/ht.el/archive/2.3.tar.gz -> ht-2.3.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=d8045a6e3c7e8ba7a36f7e9be19ec7a5 diff --git a/metadata/md5-cache/app-emacs/htmlize-1.55 b/metadata/md5-cache/app-emacs/htmlize-1.55 index 3814505b119a..d74716cb584a 100644 --- a/metadata/md5-cache/app-emacs/htmlize-1.55 +++ b/metadata/md5-cache/app-emacs/htmlize-1.55 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=HTML-ize font-lock buffers in Emacs EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/Htmlize https://github.com/hniksic/emacs-htmlize @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/hniksic/emacs-htmlize/archive/release/1.55.tar.gz -> htmlize-1.55.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=579775b743a32685d3eb2ddcb2b96c23 diff --git a/metadata/md5-cache/app-emacs/htmlize-1.56 b/metadata/md5-cache/app-emacs/htmlize-1.56 index ae147228828f..39ee531eafe4 100644 --- a/metadata/md5-cache/app-emacs/htmlize-1.56 +++ b/metadata/md5-cache/app-emacs/htmlize-1.56 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=HTML-ize font-lock buffers in Emacs EAPI=8 HOMEPAGE=https://www.emacswiki.org/emacs/Htmlize https://github.com/hniksic/emacs-htmlize @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/hniksic/emacs-htmlize/archive/release/1.56.tar.gz -> htmlize-1.56.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=242160f7eda1eaa3bc0b0397fdf72ee0 diff --git a/metadata/md5-cache/app-emacs/httpd-1.1 b/metadata/md5-cache/app-emacs/httpd-1.1 index ebf2f912a90a..da72508be9a2 100644 --- a/metadata/md5-cache/app-emacs/httpd-1.1 +++ b/metadata/md5-cache/app-emacs/httpd-1.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A HTTP server embedded in the Emacs EAPI=7 HOMEPAGE=http://www.chez.com/emarsden/downloads/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gentoo/httpd-1.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=d911d2d0190f6f5eddaf43f438cb6d0f diff --git a/metadata/md5-cache/app-emacs/hydra-0.15.0 b/metadata/md5-cache/app-emacs/hydra-0.15.0 index 0952a810660f..d09bc98ccc6b 100644 --- a/metadata/md5-cache/app-emacs/hydra-0.15.0 +++ b/metadata/md5-cache/app-emacs/hydra-0.15.0 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/lv >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/abo-abo/hydra/archive/0.15.0.tar.gz -> hydra-0.15.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=1a3f2ff2de660c55c177b284b31588ff diff --git a/metadata/md5-cache/app-emacs/icicles-2018.02.13.23733 b/metadata/md5-cache/app-emacs/icicles-2018.02.13.23733 index 9487b4337986..0129be0b2da4 100644 --- a/metadata/md5-cache/app-emacs/icicles-2018.02.13.23733 +++ b/metadata/md5-cache/app-emacs/icicles-2018.02.13.23733 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Minibuffer input completion and cycling EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/Icicles @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/icicles-2018.02.13.23733.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=2d73a2a1b120177c8ca359abc399f902 diff --git a/metadata/md5-cache/app-emacs/icicles-2018.10.15.23738 b/metadata/md5-cache/app-emacs/icicles-2018.10.15.23738 index 84a01d701058..c79861a138f1 100644 --- a/metadata/md5-cache/app-emacs/icicles-2018.10.15.23738 +++ b/metadata/md5-cache/app-emacs/icicles-2018.10.15.23738 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Minibuffer input completion and cycling EAPI=8 HOMEPAGE=https://www.emacswiki.org/emacs/Icicles @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/emacsmirror/icicles/archive/9e9c37d2a54771c635d00d1fe171cef5eab4d95d.tar.gz -> icicles-2018.10.15.23738.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=0f785180c8c44a1bcc7095156c07c1b8 diff --git a/metadata/md5-cache/app-emacs/igrep-2.113 b/metadata/md5-cache/app-emacs/igrep-2.113 index fc20265d7d39..01eba3ca1e85 100644 --- a/metadata/md5-cache/app-emacs/igrep-2.113 +++ b/metadata/md5-cache/app-emacs/igrep-2.113 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=An improved interface to "grep" and "find" EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/GrepMode @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gentoo/igrep-2.113.tar.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=af5bb823f1db18171030d95d7bd2570d diff --git a/metadata/md5-cache/app-emacs/inf-clojure-3.1.0 b/metadata/md5-cache/app-emacs/inf-clojure-3.1.0 index a2a63a946bea..9038dffd3568 100644 --- a/metadata/md5-cache/app-emacs/inf-clojure-3.1.0 +++ b/metadata/md5-cache/app-emacs/inf-clojure-3.1.0 @@ -11,5 +11,5 @@ RDEPEND=app-emacs/clojure-mode >=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/clojure-emacs/inf-clojure/archive/v3.1.0.tar.gz -> inf-clojure-3.1.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=996235640079fae09b47ff1e53e06074 diff --git a/metadata/md5-cache/app-emacs/inf-clojure-3.2.0 b/metadata/md5-cache/app-emacs/inf-clojure-3.2.0 index 3c6df6f8b44b..d704321b16d9 100644 --- a/metadata/md5-cache/app-emacs/inf-clojure-3.2.0 +++ b/metadata/md5-cache/app-emacs/inf-clojure-3.2.0 @@ -11,5 +11,5 @@ RDEPEND=app-emacs/clojure-mode >=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/clojure-emacs/inf-clojure/archive/v3.2.0.tar.gz -> inf-clojure-3.2.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=996235640079fae09b47ff1e53e06074 diff --git a/metadata/md5-cache/app-emacs/inf-clojure-3.2.1 b/metadata/md5-cache/app-emacs/inf-clojure-3.2.1 index 06b8dd15e56a..a01a70cac761 100644 --- a/metadata/md5-cache/app-emacs/inf-clojure-3.2.1 +++ b/metadata/md5-cache/app-emacs/inf-clojure-3.2.1 @@ -11,5 +11,5 @@ RDEPEND=app-emacs/clojure-mode >=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/clojure-emacs/inf-clojure/archive/v3.2.1.tar.gz -> inf-clojure-3.2.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=996235640079fae09b47ff1e53e06074 diff --git a/metadata/md5-cache/app-emacs/inform-mode-1.6.2 b/metadata/md5-cache/app-emacs/inform-mode-1.6.2 index b7be16f7906a..9cfcb655183d 100644 --- a/metadata/md5-cache/app-emacs/inform-mode-1.6.2 +++ b/metadata/md5-cache/app-emacs/inform-mode-1.6.2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A major mode for editing Inform programs EAPI=7 HOMEPAGE=https://www.rupert-lane.org/inform-mode/ https://www.emacswiki.org/emacs/InformMode @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=http://rupert-lane.org/inform-mode/releases/inform-mode-1.6.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=028ef9627de61306d9d99b64f27fefe6 diff --git a/metadata/md5-cache/app-emacs/initsplit-1.8_pre20160919 b/metadata/md5-cache/app-emacs/initsplit-1.8_pre20160919 index a83d6abd31f5..a76e29fe5111 100644 --- a/metadata/md5-cache/app-emacs/initsplit-1.8_pre20160919 +++ b/metadata/md5-cache/app-emacs/initsplit-1.8_pre20160919 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Split customizations into different files EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/InitSplit @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/dabrahams/initsplit/archive/c941d436eb2b10b01c76a582c5a2b23fb30751aa.tar.gz -> initsplit-1.8_pre20160919.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=9bd99c5892d24e3013e6b9ebc7d8f86a diff --git a/metadata/md5-cache/app-emacs/ivy-0.13.4 b/metadata/md5-cache/app-emacs/ivy-0.13.4 index a5b0b3f927fa..d7b0b027ee21 100644 --- a/metadata/md5-cache/app-emacs/ivy-0.13.4 +++ b/metadata/md5-cache/app-emacs/ivy-0.13.4 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/abo-abo/swiper/archive/0.13.4.tar.gz -> swiper-0.13.4.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=044b9939ca0691576b33f23a2c27d2d3 diff --git a/metadata/md5-cache/app-emacs/ivy-0.14.0 b/metadata/md5-cache/app-emacs/ivy-0.14.0 index 222102d636cf..519511ae508a 100644 --- a/metadata/md5-cache/app-emacs/ivy-0.14.0 +++ b/metadata/md5-cache/app-emacs/ivy-0.14.0 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/abo-abo/swiper/archive/0.14.0.tar.gz -> swiper-0.14.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=7588a83d7079f7dbae0ab4a8a5d0f7cb diff --git a/metadata/md5-cache/app-emacs/ivy-rich-0.1.6_p20210409 b/metadata/md5-cache/app-emacs/ivy-rich-0.1.6_p20210409 index 55077d05e745..f2956fa4ec80 100644 --- a/metadata/md5-cache/app-emacs/ivy-rich-0.1.6_p20210409 +++ b/metadata/md5-cache/app-emacs/ivy-rich-0.1.6_p20210409 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/ivy >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=More friendly interface for ivy EAPI=8 HOMEPAGE=https://github.com/Yevgnen/ivy-rich/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/ivy >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/Yevgnen/ivy-rich/archive/600b8183ed0be8668dcc548cc2c8cb94b001363b.tar.gz -> ivy-rich-0.1.6_p20210409.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=9a3e50df9c62720b639e9c4b067f3b3c diff --git a/metadata/md5-cache/app-emacs/jam-mode-0.3 b/metadata/md5-cache/app-emacs/jam-mode-0.3 index b51b0c2820fa..998fafaeae53 100644 --- a/metadata/md5-cache/app-emacs/jam-mode-0.3 +++ b/metadata/md5-cache/app-emacs/jam-mode-0.3 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=An Emacs major mode for editing Jam files EAPI=7 HOMEPAGE=https://web.archive.org/web/20100211015821/http://www.tenfoot.org.uk/index.html @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/jam-mode-0.3.el.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=a0facb6928de9a7bc9a0e704bd21f26c diff --git a/metadata/md5-cache/app-emacs/jasmin-1.2-r2 b/metadata/md5-cache/app-emacs/jasmin-1.2-r2 index e0c10625891d..e19062b41e8c 100644 --- a/metadata/md5-cache/app-emacs/jasmin-1.2-r2 +++ b/metadata/md5-cache/app-emacs/jasmin-1.2-r2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=An Emacs major mode for editing Jasmin Java bytecode assembler files EAPI=7 HOMEPAGE=https://www.neilvandyke.org/jasmin-emacs/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gentoo/jasmin-1.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=99a55fd8e15c19a56138e33f98866d94 diff --git a/metadata/md5-cache/app-emacs/jinx-0.6 b/metadata/md5-cache/app-emacs/jinx-0.6 new file mode 100644 index 000000000000..5ad1b94bd93a --- /dev/null +++ b/metadata/md5-cache/app-emacs/jinx-0.6 @@ -0,0 +1,14 @@ +BDEPEND=virtual/pkgconfig >=app-editors/emacs-27.1:* +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack +DEPEND=app-text/enchant:2 >=app-emacs/compat-29.1.4.0 +DESCRIPTION=Enchanted Spell Checker for GNU Emacs +EAPI=8 +HOMEPAGE=https://github.com/minad/jinx +INHERIT=edo elisp toolchain-funcs +KEYWORDS=~amd64 +LICENSE=GPL-3+ +RDEPEND=app-text/enchant:2 >=app-emacs/compat-29.1.4.0 >=app-editors/emacs-27.1:* +SLOT=0 +SRC_URI=https://dev.gentoo.org/~arsen/jinx-0.6.tar.xz +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=77e556f7448d6beb9a779e6f78effb85 diff --git a/metadata/md5-cache/app-emacs/jq-mode-0.5.0_p20220610 b/metadata/md5-cache/app-emacs/jq-mode-0.5.0_p20220610 index 167a82b8c676..77b04af7592c 100644 --- a/metadata/md5-cache/app-emacs/jq-mode-0.5.0_p20220610 +++ b/metadata/md5-cache/app-emacs/jq-mode-0.5.0_p20220610 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs major mode for editing jq queries EAPI=8 HOMEPAGE=https://github.com/ljos/jq-mode/ @@ -10,5 +10,5 @@ RDEPEND=app-misc/jq >=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/ljos/jq-mode/archive/071c1c29bac30351ad338136f2b625e5601365cd.tar.gz -> jq-mode-0.5.0_p20220610.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=1d09d38ba82a0942c308c4a89b0dec6b diff --git a/metadata/md5-cache/app-emacs/js-comint-1.2.0 b/metadata/md5-cache/app-emacs/js-comint-1.2.0 index 1906abf2639c..ee222a5a4e76 100644 --- a/metadata/md5-cache/app-emacs/js-comint-1.2.0 +++ b/metadata/md5-cache/app-emacs/js-comint-1.2.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Run a JavaScript interpreter in an Emacs inferior process window EAPI=8 HOMEPAGE=https://github.com/redguardtoo/js-comint/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/redguardtoo/js-comint/archive/1.2.0.tar.gz -> js-comint-1.2.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=b4831cb40db8fe173ef7140d18d778fe diff --git a/metadata/md5-cache/app-emacs/js2-mode-20220710 b/metadata/md5-cache/app-emacs/js2-mode-20220710 index c659318a6643..21471e2e6ff6 100644 --- a/metadata/md5-cache/app-emacs/js2-mode-20220710 +++ b/metadata/md5-cache/app-emacs/js2-mode-20220710 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/mooz/js2-mode/archive/20220710.tar.gz -> js2-mode-20220710.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=2eecfa18fb62970f8cc9b623ceaf5009 diff --git a/metadata/md5-cache/app-emacs/js2-mode-20230408 b/metadata/md5-cache/app-emacs/js2-mode-20230408 index dcb7933122d6..6463a96c805e 100644 --- a/metadata/md5-cache/app-emacs/js2-mode-20230408 +++ b/metadata/md5-cache/app-emacs/js2-mode-20230408 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/mooz/js2-mode/archive/20230408.tar.gz -> js2-mode-20230408.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=2eecfa18fb62970f8cc9b623ceaf5009 diff --git a/metadata/md5-cache/app-emacs/julia-mode-0.4_p20211023 b/metadata/md5-cache/app-emacs/julia-mode-0.4_p20211023 index 5eb57026e370..8d633ee2aeb3 100644 --- a/metadata/md5-cache/app-emacs/julia-mode-0.4_p20211023 +++ b/metadata/md5-cache/app-emacs/julia-mode-0.4_p20211023 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/JuliaEditorSupport/julia-emacs/archive/47f43f7d839019cac3ba6559d93b29487ca118cb.tar.gz -> julia-mode-0.4_p20211023.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=c7e06a1450b4f45fecbbbb75099b30d4 diff --git a/metadata/md5-cache/app-emacs/julia-repl-1.3.0_p20220225 b/metadata/md5-cache/app-emacs/julia-repl-1.3.0_p20220225 index 6b13008855c7..0b32eb12bf7e 100644 --- a/metadata/md5-cache/app-emacs/julia-repl-1.3.0_p20220225 +++ b/metadata/md5-cache/app-emacs/julia-repl-1.3.0_p20220225 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=app-emacs/s app-emacs/julia-mode >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/tpapp/julia-repl/archive/6c1d63511fb2b3b3f2e342eff6a375d78be6c12c.tar.gz -> julia-repl-1.3.0_p20220225.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 _md5_=5f6ea7904e6854a36d7c3935be52839c diff --git a/metadata/md5-cache/app-emacs/key-chord-0.6_p20201222 b/metadata/md5-cache/app-emacs/key-chord-0.6_p20201222 index cc3895e60dbe..09cbacf6a532 100644 --- a/metadata/md5-cache/app-emacs/key-chord-0.6_p20201222 +++ b/metadata/md5-cache/app-emacs/key-chord-0.6_p20201222 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Map pairs of simultaneously pressed keys to commands EAPI=8 HOMEPAGE=https://github.com/emacsorphanage/key-chord/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/emacsorphanage/key-chord/archive/7f7fd7c5bd2b996fa054779357e1566f7989e07d.tar.gz -> key-chord-0.6_p20201222.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=cd552c9d7719648a42e4b5f2c7b710ad diff --git a/metadata/md5-cache/app-emacs/keywiz-1.4 b/metadata/md5-cache/app-emacs/keywiz-1.4 index 5e6d467c37b0..1a15336334b5 100644 --- a/metadata/md5-cache/app-emacs/keywiz-1.4 +++ b/metadata/md5-cache/app-emacs/keywiz-1.4 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs key sequence quiz EAPI=7 HOMEPAGE=http://www.phys.au.dk/~harder/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gentoo/keywiz-1.4.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=8c7e9326fd6af3c423f7bf2ebc18288a diff --git a/metadata/md5-cache/app-emacs/lean-mode-20211220-r1 b/metadata/md5-cache/app-emacs/lean-mode-20211220-r1 index ab59c4bb3223..7dc64be776c5 100644 --- a/metadata/md5-cache/app-emacs/lean-mode-20211220-r1 +++ b/metadata/md5-cache/app-emacs/lean-mode-20211220-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-emacs/dash-2.18.1 >=app-emacs/f-0.19.0 >=app-emacs/flycheck-32 >=app-emacs/s-1.10.0 >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs mode for the Lean 3 theorem prover EAPI=8 HOMEPAGE=https://github.com/leanprover/lean-mode/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-emacs/dash-2.18.1 >=app-emacs/f-0.19.0 >=app-emacs/flycheck-32 >=app-emacs/s-1.10.0 sci-mathematics/lean:0/3 >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/leanprover/lean-mode/archive/a4205749d20a09871f0951c34f919d4ee5fbdb55.tar.gz -> lean-mode-20211220.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=d15e052aec396f11c1fb2944605b245f diff --git a/metadata/md5-cache/app-emacs/lean-mode-20220124-r1 b/metadata/md5-cache/app-emacs/lean-mode-20220124-r1 index cbedc013d6f0..0f4bf93c7dc3 100644 --- a/metadata/md5-cache/app-emacs/lean-mode-20220124-r1 +++ b/metadata/md5-cache/app-emacs/lean-mode-20220124-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-emacs/dash-2.18.1 >=app-emacs/f-0.19.0 >=app-emacs/flycheck-32 >=app-emacs/s-1.10.0 >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs mode for the Lean 3 theorem prover EAPI=8 HOMEPAGE=https://github.com/leanprover/lean-mode/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-emacs/dash-2.18.1 >=app-emacs/f-0.19.0 >=app-emacs/flycheck-32 >=app-emacs/s-1.10.0 sci-mathematics/lean:0/3 >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/leanprover/lean-mode/archive/c1c68cc946eb31b6ba8faefdceffce1f77ca52df.tar.gz -> lean-mode-20220124.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=2c14f7523a45f99c15c9929223494f44 diff --git a/metadata/md5-cache/app-emacs/lean-mode-20220501 b/metadata/md5-cache/app-emacs/lean-mode-20220501 index 1f740f9c608d..62cedb91f9a2 100644 --- a/metadata/md5-cache/app-emacs/lean-mode-20220501 +++ b/metadata/md5-cache/app-emacs/lean-mode-20220501 @@ -1,5 +1,5 @@ BDEPEND=>=app-emacs/dash-2.18.1 >=app-emacs/f-0.19.0 >=app-emacs/flycheck-32 >=app-emacs/s-1.10.0 >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs mode for the Lean 3 theorem prover EAPI=8 HOMEPAGE=https://github.com/leanprover/lean-mode/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-emacs/dash-2.18.1 >=app-emacs/f-0.19.0 >=app-emacs/flycheck-32 >=app-emacs/s-1.10.0 sci-mathematics/lean:0/3 >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/leanprover/lean-mode/archive/362bc6fa3efb1874c525ed6b4b6f24f76af22596.tar.gz -> lean-mode-20220501.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=03036336e98c79562b8592b3eaf78029 diff --git a/metadata/md5-cache/app-emacs/ledger-mode-4.0.0 b/metadata/md5-cache/app-emacs/ledger-mode-4.0.0 index ab95d711692c..55478daaab62 100644 --- a/metadata/md5-cache/app-emacs/ledger-mode-4.0.0 +++ b/metadata/md5-cache/app-emacs/ledger-mode-4.0.0 @@ -1,5 +1,5 @@ BDEPEND=sys-apps/texinfo >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=An Emacs major mode for editing ledger files EAPI=8 HOMEPAGE=https://github.com/ledger/ledger-mode @@ -9,5 +9,5 @@ LICENSE=GPL-2+ BSD RDEPEND=!=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/ledger/ledger-mode/archive/v4.0.0.tar.gz -> ledger-mode-4.0.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=37629b5802c494fb0f8195bf6c1dbe07 diff --git a/metadata/md5-cache/app-emacs/libegit2-0.0.20200515-r1 b/metadata/md5-cache/app-emacs/libegit2-0.0.20200515-r1 index fd1bebba3011..08a1e17e6759 100644 --- a/metadata/md5-cache/app-emacs/libegit2-0.0.20200515-r1 +++ b/metadata/md5-cache/app-emacs/libegit2-0.0.20200515-r1 @@ -11,5 +11,5 @@ RDEPEND=>=dev-libs/libgit2-1.0.0:= >=app-editors/emacs-26:*[dynamic-loading] >=a RESTRICT=test SLOT=0 SRC_URI=https://github.com/magit/libegit2/archive/0ef8b13aef011a98b7da756e4f1ce3bb18e4d55a.tar.gz -> libegit2-0.0.20200515.tar.gz -_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c edos2unix 33e347e171066657f91f8b0c72ec8773 elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c edos2unix 33e347e171066657f91f8b0c72ec8773 elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=d25c4656c1c766092e648447df71eea3 diff --git a/metadata/md5-cache/app-emacs/libegit2-0.0.20230129 b/metadata/md5-cache/app-emacs/libegit2-0.0.20230129 index d9523dbc5292..1e45a90fe9c6 100644 --- a/metadata/md5-cache/app-emacs/libegit2-0.0.20230129 +++ b/metadata/md5-cache/app-emacs/libegit2-0.0.20230129 @@ -11,5 +11,5 @@ RDEPEND=>=dev-libs/libgit2-1.0.0:= >=app-editors/emacs-26:*[dynamic-loading] >=a RESTRICT=test SLOT=0 SRC_URI=https://github.com/magit/libegit2/archive/ab1a53a6a0120872e42582fc980e779d47de6d0e.tar.gz -> libegit2-0.0.20230129.tar.gz -_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=b7fdc20fd21d8f2f900a7562c2876d96 diff --git a/metadata/md5-cache/app-emacs/load-relative-1.3.1 b/metadata/md5-cache/app-emacs/load-relative-1.3.1 index e2c2fca27574..1a0bcfdca247 100644 --- a/metadata/md5-cache/app-emacs/load-relative-1.3.1 +++ b/metadata/md5-cache/app-emacs/load-relative-1.3.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Relative loads for Emacs Lisp files EAPI=8 HOMEPAGE=https://github.com/rocky/emacs-load-relative/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/rocky/emacs-load-relative/archive/1.3.1.tar.gz -> load-relative-1.3.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=00890b43f0f0fb9f26847e5f46c274f1 diff --git a/metadata/md5-cache/app-emacs/load-relative-1.3.2 b/metadata/md5-cache/app-emacs/load-relative-1.3.2 index bc455ac066b3..5a0423659b5b 100644 --- a/metadata/md5-cache/app-emacs/load-relative-1.3.2 +++ b/metadata/md5-cache/app-emacs/load-relative-1.3.2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Relative loads for Emacs Lisp files EAPI=8 HOMEPAGE=https://github.com/rocky/emacs-load-relative/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/rocky/emacs-load-relative/archive/1.3.2.tar.gz -> load-relative-1.3.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=8b5b134b9c9747dcf813e7af1316d448 diff --git a/metadata/md5-cache/app-emacs/lookup-1.99.96_pre20180209 b/metadata/md5-cache/app-emacs/lookup-1.99.96_pre20180209 index 41404ff39e6e..56fee6383d6c 100644 --- a/metadata/md5-cache/app-emacs/lookup-1.99.96_pre20180209 +++ b/metadata/md5-cache/app-emacs/lookup-1.99.96_pre20180209 @@ -1,5 +1,5 @@ BDEPEND=sys-apps/texinfo sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=An interface to search CD-ROM books and network dictionaries EAPI=7 HOMEPAGE=https://lookup2.github.io/lookup2/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/lookup2/lookup2/archive/c4f4986aac6c339e03b9e56a5dfc7c8f5c0bb5e0.tar.gz -> lookup-1.99.96_pre20180209.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=c43429b01f078f24a86c9009de00d3f9 diff --git a/metadata/md5-cache/app-emacs/lsp-java-3.1 b/metadata/md5-cache/app-emacs/lsp-java-3.1 index 68a1f27fac73..6e3bdf0b5995 100644 --- a/metadata/md5-cache/app-emacs/lsp-java-3.1 +++ b/metadata/md5-cache/app-emacs/lsp-java-3.1 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/dap-mode app-emacs/dash app-emacs/f app-emacs/ht app-emacs/lsp-mode app-emacs/markdown-mode app-emacs/request app-emacs/treemacs >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs Java IDE using Eclipse JDT Language Server EAPI=8 HOMEPAGE=https://emacs-lsp.github.io/lsp-java/ @@ -10,5 +10,5 @@ RDEPEND=app-emacs/dap-mode app-emacs/dash app-emacs/f app-emacs/ht app-emacs/lsp RESTRICT=test SLOT=0 SRC_URI=https://github.com/emacs-lsp/lsp-java/archive/3.1.tar.gz -> lsp-java-3.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=ad485dfa15e1c96539fe9126249af281 diff --git a/metadata/md5-cache/app-emacs/lsp-mode-8.0.0-r1 b/metadata/md5-cache/app-emacs/lsp-mode-8.0.0-r1 index d4c85e09ded5..66aedcc6f203 100644 --- a/metadata/md5-cache/app-emacs/lsp-mode-8.0.0-r1 +++ b/metadata/md5-cache/app-emacs/lsp-mode-8.0.0-r1 @@ -11,5 +11,5 @@ RDEPEND=>=app-emacs/dash-2.18.0 >=app-emacs/f-0.20.0 app-emacs/ht app-emacs/lv a RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/emacs-lsp/lsp-mode/archive/8.0.0.tar.gz -> lsp-mode-8.0.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=974954b8f203d012ba94c298dd21adf0 diff --git a/metadata/md5-cache/app-emacs/lsp-mode-8.0.0_p20220620 b/metadata/md5-cache/app-emacs/lsp-mode-8.0.0_p20220620 index e2c270f2ab59..af5021666a0f 100644 --- a/metadata/md5-cache/app-emacs/lsp-mode-8.0.0_p20220620 +++ b/metadata/md5-cache/app-emacs/lsp-mode-8.0.0_p20220620 @@ -1,4 +1,4 @@ -BDEPEND=>=app-emacs/dash-2.18.0 >=app-emacs/f-0.20.0 app-emacs/ht app-emacs/lv app-emacs/markdown-mode app-emacs/spinner test? ( app-emacs/deferred app-emacs/ecukes app-emacs/el-mock app-emacs/ert-runner app-emacs/espuds app-emacs/flycheck app-emacs/undercover ) >=app-editors/emacs-26.1:* +BDEPEND=>=app-emacs/dash-2.18.0 >=app-emacs/f-0.20.0 app-emacs/ht app-emacs/lv app-emacs/markdown-mode app-emacs/spinner test? ( app-emacs/deferred app-emacs/ecukes app-emacs/el-mock app-emacs/espuds app-emacs/flycheck app-emacs/undercover ) test? ( app-emacs/ert-runner ) >=app-editors/emacs-26.1:* DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs client/library for the Language Server Protocol EAPI=8 @@ -11,5 +11,5 @@ RDEPEND=>=app-emacs/dash-2.18.0 >=app-emacs/f-0.20.0 app-emacs/ht app-emacs/lv a RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/emacs-lsp/lsp-mode/archive/9957623d93b13fabaca8ba35b85da8fcceaeef69.tar.gz -> lsp-mode-8.0.0_p20220620.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 -_md5_=b6a1a0168e1d991448152314d908c4ac +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 +_md5_=4716c65a1fd16dd883c874bdd004a2c6 diff --git a/metadata/md5-cache/app-emacs/lsp-treemacs-0.4 b/metadata/md5-cache/app-emacs/lsp-treemacs-0.4 index 3987c8e0b17d..2391bd88d791 100644 --- a/metadata/md5-cache/app-emacs/lsp-treemacs-0.4 +++ b/metadata/md5-cache/app-emacs/lsp-treemacs-0.4 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/dash app-emacs/f app-emacs/ht app-emacs/lsp-mode app-emacs/treemacs >=app-editors/emacs-26.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Integration between lsp-mode and treemacs EAPI=8 HOMEPAGE=https://github.com/emacs-lsp/lsp-treemacs/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/dash app-emacs/f app-emacs/ht app-emacs/lsp-mode app-emacs/treemacs >=app-editors/emacs-26.1:* SLOT=0 SRC_URI=https://github.com/emacs-lsp/lsp-treemacs/archive/0.4.tar.gz -> lsp-treemacs-0.4.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=8bf5f10b42b413d0a3544911c1c17320 diff --git a/metadata/md5-cache/app-emacs/lsp-ui-8.0.0 b/metadata/md5-cache/app-emacs/lsp-ui-8.0.0 index f20ea53cb982..a31b06b13560 100644 --- a/metadata/md5-cache/app-emacs/lsp-ui-8.0.0 +++ b/metadata/md5-cache/app-emacs/lsp-ui-8.0.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-26.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=>=app-emacs/dash-2.18.0 app-emacs/flycheck >=app-emacs/lsp-mode-6.0 >=app-emacs/markdown-mode-2.3 DESCRIPTION=UI modules for lsp-mode EAPI=8 @@ -11,5 +11,5 @@ RDEPEND=>=app-emacs/dash-2.18.0 app-emacs/flycheck >=app-emacs/lsp-mode-6.0 >=ap RESTRICT=test SLOT=0 SRC_URI=https://github.com/emacs-lsp/lsp-ui/archive/8.0.0.tar.gz -> lsp-ui-8.0.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=dbd33199d6571199c5062e9086cbe88b diff --git a/metadata/md5-cache/app-emacs/lsp-ui-8.0.1 b/metadata/md5-cache/app-emacs/lsp-ui-8.0.1 index efa4d83cfee0..d66d45541477 100644 --- a/metadata/md5-cache/app-emacs/lsp-ui-8.0.1 +++ b/metadata/md5-cache/app-emacs/lsp-ui-8.0.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-26.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=>=app-emacs/dash-2.18.0 app-emacs/flycheck >=app-emacs/lsp-mode-6.0 >=app-emacs/markdown-mode-2.3 DESCRIPTION=UI modules for lsp-mode EAPI=8 @@ -11,5 +11,5 @@ RDEPEND=>=app-emacs/dash-2.18.0 app-emacs/flycheck >=app-emacs/lsp-mode-6.0 >=ap RESTRICT=test SLOT=0 SRC_URI=https://github.com/emacs-lsp/lsp-ui/archive/8.0.1.tar.gz -> lsp-ui-8.0.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=0e53f84d9193312dc5f4cabaabb59de2 diff --git a/metadata/md5-cache/app-emacs/lua-mode-20201010 b/metadata/md5-cache/app-emacs/lua-mode-20201010 index b1bf0fcc104a..72f8b6872b01 100644 --- a/metadata/md5-cache/app-emacs/lua-mode-20201010 +++ b/metadata/md5-cache/app-emacs/lua-mode-20201010 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=An Emacs major mode for editing Lua scripts EAPI=7 HOMEPAGE=http://lua-users.org/wiki/LuaEditorSupport http://immerrr.github.io/lua-mode/ @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/immerrr/lua-mode/archive/v20201010.tar.gz -> lua-mode-20201010.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=33bc4db09a035892401f8a6a5b2f073b diff --git a/metadata/md5-cache/app-emacs/lua-mode-20210802 b/metadata/md5-cache/app-emacs/lua-mode-20210802 index 8198dde8686e..568bd93a16d3 100644 --- a/metadata/md5-cache/app-emacs/lua-mode-20210802 +++ b/metadata/md5-cache/app-emacs/lua-mode-20210802 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=An Emacs major mode for editing Lua scripts EAPI=8 HOMEPAGE=http://lua-users.org/wiki/LuaEditorSupport http://immerrr.github.io/lua-mode/ @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/immerrr/lua-mode/archive/v20210802.tar.gz -> lua-mode-20210802.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=6a69fbed60a1e4e45ea87e1650d3a879 diff --git a/metadata/md5-cache/app-emacs/lv-0.15.0 b/metadata/md5-cache/app-emacs/lv-0.15.0 index 3bddec43a9a0..8e388884d9c5 100644 --- a/metadata/md5-cache/app-emacs/lv-0.15.0 +++ b/metadata/md5-cache/app-emacs/lv-0.15.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Other echo area EAPI=8 HOMEPAGE=https://github.com/abo-abo/hydra @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/abo-abo/hydra/archive/0.15.0.tar.gz -> lv-0.15.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=f5a17147266c496da915e98b9b95ab5a diff --git a/metadata/md5-cache/app-emacs/lyskom-elisp-client-0.48_p20180410 b/metadata/md5-cache/app-emacs/lyskom-elisp-client-0.48_p20180410 index dc9dc02906ee..4c700b208523 100644 --- a/metadata/md5-cache/app-emacs/lyskom-elisp-client-0.48_p20180410 +++ b/metadata/md5-cache/app-emacs/lyskom-elisp-client-0.48_p20180410 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Elisp client for the LysKOM conference system EAPI=7 HOMEPAGE=http://www.lysator.liu.se/lyskom/klienter/emacslisp/index.en.html @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/lyskom-elisp-client-0.48_p20180410.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=97854fe50c3d057a2498b86c1ada7c20 diff --git a/metadata/md5-cache/app-emacs/lyskom-elisp-client-0.48_p20200226 b/metadata/md5-cache/app-emacs/lyskom-elisp-client-0.48_p20200226 index 6a34cd93005c..6cc32c1f35f0 100644 --- a/metadata/md5-cache/app-emacs/lyskom-elisp-client-0.48_p20200226 +++ b/metadata/md5-cache/app-emacs/lyskom-elisp-client-0.48_p20200226 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Elisp client for the LysKOM conference system EAPI=7 HOMEPAGE=http://www.lysator.liu.se/lyskom/klienter/emacslisp/index.en.html @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/lyskom-elisp-client-0.48_p20200226.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=b15870b18fbaed430a25e9ea31a7a9c1 diff --git a/metadata/md5-cache/app-emacs/m-buffer-0.15 b/metadata/md5-cache/app-emacs/m-buffer-0.15 index 194382ad1a9c..b5d7d012022c 100644 --- a/metadata/md5-cache/app-emacs/m-buffer-0.15 +++ b/metadata/md5-cache/app-emacs/m-buffer-0.15 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/phillord/m-buffer-el/archive/v0.15.tar.gz -> m-buffer-0.15.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=599f11687569ff04ca16037f5e8e1511 diff --git a/metadata/md5-cache/app-emacs/macrostep-0.9 b/metadata/md5-cache/app-emacs/macrostep-0.9 index 729b1166285a..33ec092be70e 100644 --- a/metadata/md5-cache/app-emacs/macrostep-0.9 +++ b/metadata/md5-cache/app-emacs/macrostep-0.9 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/joddie/macrostep/archive/0.9.tar.gz -> macrostep-0.9.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=bb70dd929915114fb8efbda6aecaeab2 diff --git a/metadata/md5-cache/app-emacs/macrostep-0.9.1 b/metadata/md5-cache/app-emacs/macrostep-0.9.1 index 943191ab7eb7..3dd30b80529f 100644 --- a/metadata/md5-cache/app-emacs/macrostep-0.9.1 +++ b/metadata/md5-cache/app-emacs/macrostep-0.9.1 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/emacsorphanage/macrostep/archive/0.9.1.tar.gz -> macrostep-0.9.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=57331a664afa5fc932a82b431edca93c diff --git a/metadata/md5-cache/app-emacs/macrostep-geiser-0.2.0_p20210717 b/metadata/md5-cache/app-emacs/macrostep-geiser-0.2.0_p20210717 index 0a72cec52be4..4094ccb41e75 100644 --- a/metadata/md5-cache/app-emacs/macrostep-geiser-0.2.0_p20210717 +++ b/metadata/md5-cache/app-emacs/macrostep-geiser-0.2.0_p20210717 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/geiser app-emacs/macrostep >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs macrostep back-end powered by geiser EAPI=8 HOMEPAGE=https://github.com/nbfalcon/macrostep-geiser/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/geiser app-emacs/macrostep >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/nbfalcon/macrostep-geiser/archive/f6a2d5bb96ade4f23df557649af87ebd0cc45125.tar.gz -> macrostep-geiser-0.2.0_p20210717.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=713eb83cf75d1122089ec4cd8de751aa diff --git a/metadata/md5-cache/app-emacs/magit-3.2.0 b/metadata/md5-cache/app-emacs/magit-3.2.0 index d77ca7cb2970..20bead7dc6f6 100644 --- a/metadata/md5-cache/app-emacs/magit-3.2.0 +++ b/metadata/md5-cache/app-emacs/magit-3.2.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=>=app-emacs/dash-2.18.1 app-emacs/libegit2 >=app-emacs/transient-0.3.6 >=app-emacs/with-editor-3.0.4 sys-apps/texinfo DESCRIPTION=A Git porcelain inside Emacs EAPI=8 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-emacs/dash-2.18.1 app-emacs/libegit2 >=app-emacs/transient-0.3.6 >=app-emacs/with-editor-3.0.4 >=dev-vcs/git-2.0.0 >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/magit/magit/archive/v3.2.0.tar.gz -> magit-3.2.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=45226509399b12e21f9c3076ce9c209b diff --git a/metadata/md5-cache/app-emacs/magit-3.3.0 b/metadata/md5-cache/app-emacs/magit-3.3.0 index 98abce4bc43d..917d9a028e43 100644 --- a/metadata/md5-cache/app-emacs/magit-3.3.0 +++ b/metadata/md5-cache/app-emacs/magit-3.3.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=>=app-emacs/dash-2.19.1 app-emacs/libegit2 >=app-emacs/transient-0.3.6 >=app-emacs/with-editor-3.0.5 sys-apps/texinfo DESCRIPTION=A Git porcelain inside Emacs EAPI=8 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-emacs/dash-2.19.1 app-emacs/libegit2 >=app-emacs/transient-0.3.6 >=app-emacs/with-editor-3.0.5 >=dev-vcs/git-2.0.0 >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/magit/magit/archive/v3.3.0.tar.gz -> magit-3.3.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=71b924184edf7423146fa80b2c7b27e5 diff --git a/metadata/md5-cache/app-emacs/magit-popup-2.13.0 b/metadata/md5-cache/app-emacs/magit-popup-2.13.0 index 0dea014bc24b..598e2fc52ce7 100644 --- a/metadata/md5-cache/app-emacs/magit-popup-2.13.0 +++ b/metadata/md5-cache/app-emacs/magit-popup-2.13.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=>=app-emacs/dash-2.13.0 sys-apps/texinfo DESCRIPTION=Define prefix-infix-suffix command combos EAPI=7 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=!!=app-emacs/dash-2.13.0 >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/magit/magit-popup/archive/v2.13.0.tar.gz -> magit-popup-2.13.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=0cdbd0820cd123e3c9f24a589d373f1a diff --git a/metadata/md5-cache/app-emacs/magit-popup-2.13.2 b/metadata/md5-cache/app-emacs/magit-popup-2.13.2 index 725bb5de3ac1..c839b42d2bf0 100644 --- a/metadata/md5-cache/app-emacs/magit-popup-2.13.2 +++ b/metadata/md5-cache/app-emacs/magit-popup-2.13.2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=>=app-emacs/dash-2.13.0 sys-apps/texinfo DESCRIPTION=Define prefix-infix-suffix command combos EAPI=7 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=!!=app-emacs/dash-2.13.0 >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/magit/magit-popup/archive/v2.13.2.tar.gz -> magit-popup-2.13.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=ab805c5e7e3c5269efe14b62c4333fe4 diff --git a/metadata/md5-cache/app-emacs/magit-popup-2.13.3 b/metadata/md5-cache/app-emacs/magit-popup-2.13.3 index af867cce7ed4..f810b931db17 100644 --- a/metadata/md5-cache/app-emacs/magit-popup-2.13.3 +++ b/metadata/md5-cache/app-emacs/magit-popup-2.13.3 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=>=app-emacs/dash-2.13.0 sys-apps/texinfo DESCRIPTION=Define prefix-infix-suffix command combos EAPI=7 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=!!=app-emacs/dash-2.13.0 >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/magit/magit-popup/archive/v2.13.3.tar.gz -> magit-popup-2.13.3.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=0cdbd0820cd123e3c9f24a589d373f1a diff --git a/metadata/md5-cache/app-emacs/mailcrypt-3.5.9-r3 b/metadata/md5-cache/app-emacs/mailcrypt-3.5.9-r3 index fa6fa065e659..d650afe37b05 100644 --- a/metadata/md5-cache/app-emacs/mailcrypt-3.5.9-r3 +++ b/metadata/md5-cache/app-emacs/mailcrypt-3.5.9-r3 @@ -1,5 +1,5 @@ BDEPEND=sys-apps/texinfo >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Provides a simple interface to public key cryptography with OpenPGP EAPI=8 HOMEPAGE=http://mailcrypt.sourceforge.net/ @@ -10,5 +10,5 @@ RDEPEND=app-crypt/gnupg >=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/mailcrypt/mailcrypt-3.5.9.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=686f9fa4bdf240b5fb7b89368ae2a3a2 diff --git a/metadata/md5-cache/app-emacs/marginalia-1.0-r1 b/metadata/md5-cache/app-emacs/marginalia-1.0-r1 index aa6feb6b4555..b0f1fa8d7494 100644 --- a/metadata/md5-cache/app-emacs/marginalia-1.0-r1 +++ b/metadata/md5-cache/app-emacs/marginalia-1.0-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-27.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Marginalia in the minibuffer EAPI=8 HOMEPAGE=https://github.com/minad/marginalia @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-27.1:* SLOT=0 SRC_URI=https://github.com/minad/marginalia/archive/refs/tags/1.0.tar.gz -> marginalia-1.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=be7f98b4ccd44fa51ebc88e6772ff3c3 diff --git a/metadata/md5-cache/app-emacs/marginalia-1.1 b/metadata/md5-cache/app-emacs/marginalia-1.1 index c7e6b5dd693b..03821cc8105e 100644 --- a/metadata/md5-cache/app-emacs/marginalia-1.1 +++ b/metadata/md5-cache/app-emacs/marginalia-1.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-emacs/compat-29.1.3.0 >=app-editors/emacs-27.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Marginalia in the minibuffer EAPI=8 HOMEPAGE=https://github.com/minad/marginalia @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-emacs/compat-29.1.3.0 >=app-editors/emacs-27.1:* SLOT=0 SRC_URI=https://github.com/minad/marginalia/archive/refs/tags/1.1.tar.gz -> marginalia-1.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=f1c49df37aeddc0e87dc12a036f66565 diff --git a/metadata/md5-cache/app-emacs/markdown-mode-2.4-r1 b/metadata/md5-cache/app-emacs/markdown-mode-2.4-r1 index 2f74b32e530b..9837a3a3ff7f 100644 --- a/metadata/md5-cache/app-emacs/markdown-mode-2.4-r1 +++ b/metadata/md5-cache/app-emacs/markdown-mode-2.4-r1 @@ -1,5 +1,5 @@ BDEPEND=test? ( virtual/pandoc ) >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Major mode for editing Markdown-formatted text files EAPI=7 HOMEPAGE=https://jblevins.org/projects/markdown-mode/ @@ -11,5 +11,5 @@ RDEPEND=|| ( dev-python/markdown2 dev-python/markdown virtual/pandoc ) >=app-edi RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/jrblevin/markdown-mode/archive/v2.4.tar.gz -> markdown-mode-2.4.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=7e006871cde6f727b9d2ca5404b8f229 diff --git a/metadata/md5-cache/app-emacs/markdown-mode-2.5-r1 b/metadata/md5-cache/app-emacs/markdown-mode-2.5-r1 index 75298ed4f08d..56a199ede907 100644 --- a/metadata/md5-cache/app-emacs/markdown-mode-2.5-r1 +++ b/metadata/md5-cache/app-emacs/markdown-mode-2.5-r1 @@ -1,5 +1,5 @@ BDEPEND=test? ( virtual/pandoc || ( app-text/aspell[l10n_en] app-text/hunspell[l10n_en] ) ) >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Major mode for editing Markdown-formatted text files EAPI=8 HOMEPAGE=https://jblevins.org/projects/markdown-mode/ @@ -11,5 +11,5 @@ RDEPEND=|| ( dev-python/markdown2 dev-python/markdown virtual/pandoc ) >=app-edi RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/jrblevin/markdown-mode/archive/v2.5.tar.gz -> markdown-mode-2.5.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=476b3876841e45e4af47384b4007358e diff --git a/metadata/md5-cache/app-emacs/mastodon-1.0.0 b/metadata/md5-cache/app-emacs/mastodon-1.0.0 index c91ec3e6dc3e..298d2f55b510 100644 --- a/metadata/md5-cache/app-emacs/mastodon-1.0.0 +++ b/metadata/md5-cache/app-emacs/mastodon-1.0.0 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/request >=app-editors/emacs-27.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs client for Mastodon, federated microblogging social network EAPI=8 HOMEPAGE=https://codeberg.org/martianh/mastodon.el/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/request >=app-editors/emacs-27.1:* SLOT=0 SRC_URI=https://codeberg.org/martianh/mastodon.el/archive/1.0.0.tar.gz -> mastodon-1.0.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=49262fd39368ac5dd6eca944a0e974e7 diff --git a/metadata/md5-cache/app-emacs/math-symbol-lists-1.3 b/metadata/md5-cache/app-emacs/math-symbol-lists-1.3 index 53c4ee2534bc..5d9d71bb472a 100644 --- a/metadata/md5-cache/app-emacs/math-symbol-lists-1.3 +++ b/metadata/md5-cache/app-emacs/math-symbol-lists-1.3 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Lists of Unicode mathematical symbols and latex commands EAPI=8 HOMEPAGE=https://github.com/vspinu/math-symbol-lists/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/vspinu/math-symbol-lists/archive/v1.3.tar.gz -> math-symbol-lists-1.3.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=0e30c7155c8874cf0ea067bd84ce71b4 diff --git a/metadata/md5-cache/app-emacs/matlab-3.3.6_pre20191010-r1 b/metadata/md5-cache/app-emacs/matlab-3.3.6_pre20191010-r1 index 1781b3e5f71b..797fce27ea98 100644 --- a/metadata/md5-cache/app-emacs/matlab-3.3.6_pre20191010-r1 +++ b/metadata/md5-cache/app-emacs/matlab-3.3.6_pre20191010-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Major modes for MATLAB .m and .tlc files EAPI=7 HOMEPAGE=http://matlab-emacs.sourceforge.net/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/matlab-3.3.6_pre20191010.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=225702323d3fcdd936ee74eb9bf45622 diff --git a/metadata/md5-cache/app-emacs/mediawiki-2.2.9-r1 b/metadata/md5-cache/app-emacs/mediawiki-2.2.9-r1 index 1494d60dc123..25d438f1169f 100644 --- a/metadata/md5-cache/app-emacs/mediawiki-2.2.9-r1 +++ b/metadata/md5-cache/app-emacs/mediawiki-2.2.9-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=MediaWiki client for Emacs EAPI=7 HOMEPAGE=https://github.com/hexmode/mediawiki-el @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/hexmode/mediawiki-el/archive/2.2.9.tar.gz -> mediawiki-2.2.9.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=46a2f5056f47c4217b4f197fe05133f8 diff --git a/metadata/md5-cache/app-emacs/mediawiki-2.3.1 b/metadata/md5-cache/app-emacs/mediawiki-2.3.1 index 7f49b1f033f0..2e3b7ff8b05c 100644 --- a/metadata/md5-cache/app-emacs/mediawiki-2.3.1 +++ b/metadata/md5-cache/app-emacs/mediawiki-2.3.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=MediaWiki client for Emacs EAPI=8 HOMEPAGE=https://github.com/hexmode/mediawiki-el @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/hexmode/mediawiki-el/archive/2.3.1.tar.gz -> mediawiki-2.3.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=ee8159500fdf672b023f08aeb8edc783 diff --git a/metadata/md5-cache/app-emacs/meson-mode-0.3 b/metadata/md5-cache/app-emacs/meson-mode-0.3 index 0cdcfe049c10..ea1400a88789 100644 --- a/metadata/md5-cache/app-emacs/meson-mode-0.3 +++ b/metadata/md5-cache/app-emacs/meson-mode-0.3 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-26.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A GNU Emacs major mode for Meson build-system files EAPI=7 HOMEPAGE=https://github.com/wentasah/meson-mode @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-26.1:* SLOT=0 SRC_URI=https://github.com/wentasah/meson-mode/archive/v0.3.tar.gz -> meson-mode-0.3.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=3e867d52c1972a00b0a4a1458d294ca2 diff --git a/metadata/md5-cache/app-emacs/metamath-mode-0_p20221005 b/metadata/md5-cache/app-emacs/metamath-mode-0_p20221005 index 4590ca472696..833dad02e8d8 100644 --- a/metadata/md5-cache/app-emacs/metamath-mode-0_p20221005 +++ b/metadata/md5-cache/app-emacs/metamath-mode-0_p20221005 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Major GNU Emacs mode for metamath files EAPI=8 HOMEPAGE=https://github.com/samrushing/metamath-mode/ @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/samrushing/metamath-mode/archive/85bd63b88378e9f2dee2f7d5585ec6610bf098a6.tar.gz -> metamath-mode-0_p20221005.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=e7719868e48aa10b8e21027de267618c diff --git a/metadata/md5-cache/app-emacs/mew-6.8 b/metadata/md5-cache/app-emacs/mew-6.8 index d36fcf85a55a..a5082cd3de91 100644 --- a/metadata/md5-cache/app-emacs/mew-6.8 +++ b/metadata/md5-cache/app-emacs/mew-6.8 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=sys-libs/zlib DESCRIPTION=Great MIME mail reader for Emacs/XEmacs EAPI=7 @@ -12,5 +12,5 @@ RDEPEND=sys-libs/zlib ssl? ( net-misc/stunnel ) >=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://www.mew.org/Release/mew-6.8.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=1b8df4b09f277e43a7c9d8ee1623053f diff --git a/metadata/md5-cache/app-emacs/mew-6.8_p20230203 b/metadata/md5-cache/app-emacs/mew-6.8_p20230203 index 9bfb531223f2..3ded8d204021 100644 --- a/metadata/md5-cache/app-emacs/mew-6.8_p20230203 +++ b/metadata/md5-cache/app-emacs/mew-6.8_p20230203 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=sys-libs/zlib DESCRIPTION=Great MIME mail reader for Emacs/XEmacs EAPI=8 @@ -12,5 +12,5 @@ RDEPEND=sys-libs/zlib ssl? ( net-misc/stunnel ) >=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/kazu-yamamoto/Mew/archive/f96266240586898ea44256f6b24743a50e1113cb.tar.gz -> mew-6.8_p20230203.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=12f4b8562233bc40ca9a5ca3c8d577a0 diff --git a/metadata/md5-cache/app-emacs/mic-paren-3.13 b/metadata/md5-cache/app-emacs/mic-paren-3.13 index ae31bb2667c2..9fc77de51e3f 100644 --- a/metadata/md5-cache/app-emacs/mic-paren-3.13 +++ b/metadata/md5-cache/app-emacs/mic-paren-3.13 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Advanced highlighting of matching parentheses EAPI=7 HOMEPAGE=https://www.gnuvola.org/software/j/mic-paren/ https://www.emacswiki.org/emacs/MicParen @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/mic-paren-3.13.el.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=e1519b2765a9160347b1a02d9b3183b3 diff --git a/metadata/md5-cache/app-emacs/mic-paren-3.15 b/metadata/md5-cache/app-emacs/mic-paren-3.15 index 5efcae8fc535..0998f7a1d381 100644 --- a/metadata/md5-cache/app-emacs/mic-paren-3.15 +++ b/metadata/md5-cache/app-emacs/mic-paren-3.15 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Advanced highlighting of matching parentheses EAPI=7 HOMEPAGE=https://www.gnuvola.org/software/j/mic-paren/ https://www.emacswiki.org/emacs/MicParen @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/mic-paren-3.15.el.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=9ee791152bc6c21a60d11de0c10d1863 diff --git a/metadata/md5-cache/app-emacs/mldonkey-0.0.4b-r2 b/metadata/md5-cache/app-emacs/mldonkey-0.0.4b-r2 index c5c2ba28c6b3..0cba6e6dde6a 100644 --- a/metadata/md5-cache/app-emacs/mldonkey-0.0.4b-r2 +++ b/metadata/md5-cache/app-emacs/mldonkey-0.0.4b-r2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=An Emacs Lisp interface to the MLDonkey core EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/MlDonkey http://web.archive.org/web/20070107165326/www.physik.fu-berlin.de/~dhansen/mldonkey/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=http://www.physik.fu-berlin.de/%7Edhansen/mldonkey/files/mldonkey-el-0.0.4b.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=f58cfa15ef884640381e9a4c3b586859 diff --git a/metadata/md5-cache/app-emacs/mmm-mode-0.5.7 b/metadata/md5-cache/app-emacs/mmm-mode-0.5.7 index 611b27a9d932..530793223961 100644 --- a/metadata/md5-cache/app-emacs/mmm-mode-0.5.7 +++ b/metadata/md5-cache/app-emacs/mmm-mode-0.5.7 @@ -1,5 +1,5 @@ BDEPEND=sys-apps/texinfo >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Enables the user to edit different parts of a file in different major modes EAPI=7 HOMEPAGE=http://mmm-mode.sourceforge.net/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ Texinfo-manual RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/purcell/mmm-mode/archive/0.5.7.tar.gz -> mmm-mode-0.5.7.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=c1273665a04e2ca2496d4b4ed3d17237 diff --git a/metadata/md5-cache/app-emacs/mmm-mode-0.5.8 b/metadata/md5-cache/app-emacs/mmm-mode-0.5.8 index 39e4b6d806c8..c58b6f03bca0 100644 --- a/metadata/md5-cache/app-emacs/mmm-mode-0.5.8 +++ b/metadata/md5-cache/app-emacs/mmm-mode-0.5.8 @@ -1,5 +1,5 @@ BDEPEND=sys-apps/texinfo >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Enables the user to edit different parts of a file in different major modes EAPI=8 HOMEPAGE=http://mmm-mode.sourceforge.net/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ Texinfo-manual RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/purcell/mmm-mode/archive/0.5.8.tar.gz -> mmm-mode-0.5.8.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=ad1983a490d1d825bda33cc14fe51d4a diff --git a/metadata/md5-cache/app-emacs/mmm-mode-0.5.9 b/metadata/md5-cache/app-emacs/mmm-mode-0.5.9 index 69b42f840891..77de777d4455 100644 --- a/metadata/md5-cache/app-emacs/mmm-mode-0.5.9 +++ b/metadata/md5-cache/app-emacs/mmm-mode-0.5.9 @@ -1,5 +1,5 @@ BDEPEND=sys-apps/texinfo >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Enables the user to edit different parts of a file in different major modes EAPI=8 HOMEPAGE=http://mmm-mode.sourceforge.net/ https://github.com/dgutov/mmm-mode/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ Texinfo-manual RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/dgutov/mmm-mode/archive/0.5.9.tar.gz -> mmm-mode-0.5.9.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=ed4ccdfeaea5f3108ec45b9ab5509303 diff --git a/metadata/md5-cache/app-emacs/moccur-edit-2.16 b/metadata/md5-cache/app-emacs/moccur-edit-2.16 index 0bcfe16cd6b5..e94ca3a083ab 100644 --- a/metadata/md5-cache/app-emacs/moccur-edit-2.16 +++ b/metadata/md5-cache/app-emacs/moccur-edit-2.16 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=app-emacs/color-moccur DESCRIPTION=An improved interface to color-moccur for editing EAPI=7 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/color-moccur >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/moccur-edit-2.16.el.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=220e17a2ac4484621fe20637aa03d633 diff --git a/metadata/md5-cache/app-emacs/mocker-0.5.0 b/metadata/md5-cache/app-emacs/mocker-0.5.0 index ef5fe644aa61..2f803d956732 100644 --- a/metadata/md5-cache/app-emacs/mocker-0.5.0 +++ b/metadata/md5-cache/app-emacs/mocker-0.5.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/sigma/mocker.el/archive/v0.5.0.tar.gz -> mocker-0.5.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=cd9f04073439506548a7923e35615c5e diff --git a/metadata/md5-cache/app-emacs/mpg123-el-1.61 b/metadata/md5-cache/app-emacs/mpg123-el-1.61 index fbfe38daaef3..c2a964411113 100644 --- a/metadata/md5-cache/app-emacs/mpg123-el-1.61 +++ b/metadata/md5-cache/app-emacs/mpg123-el-1.61 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs front-end to mpg123 audio player and OggVorbis audio player EAPI=7 HOMEPAGE=http://www.gentei.org/~yuuji/software/mpg123el/ @@ -9,5 +9,5 @@ LICENSE=mpg123-el RDEPEND=media-sound/mpg123 media-sound/alsa-utils >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/mpg123-el-1.61.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=a13c78da71249b574ff1c1d456d87668 diff --git a/metadata/md5-cache/app-emacs/mu-cite-8.1_p202011031127 b/metadata/md5-cache/app-emacs/mu-cite-8.1_p202011031127 index c49cc4d67cb0..0365170a431c 100644 --- a/metadata/md5-cache/app-emacs/mu-cite-8.1_p202011031127 +++ b/metadata/md5-cache/app-emacs/mu-cite-8.1_p202011031127 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/apel app-emacs/flim bbdb? ( app-emacs/bbdb ) >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Message citation utilities for emacsen EAPI=8 HOMEPAGE=https://www.jpl.org/elips/mu/ @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=app-emacs/apel app-emacs/flim bbdb? ( app-emacs/bbdb ) >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://www.jpl.org/elips/mu/snapshots/mu-cite-202011031127.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=b745309ad62ed6d3693dab1fef19f4e0 diff --git a/metadata/md5-cache/app-emacs/multi-term-1.4 b/metadata/md5-cache/app-emacs/multi-term-1.4 index 3aae301aa48a..ea79010aa0b6 100644 --- a/metadata/md5-cache/app-emacs/multi-term-1.4 +++ b/metadata/md5-cache/app-emacs/multi-term-1.4 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Manage multiple terminal buffers in Emacs EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/MultiTerm @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~mjo/distfiles/multi-term-1.4.el.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=e0636cae5b688bed903cf4e016f717c1 diff --git a/metadata/md5-cache/app-emacs/multiple-cursors-1.4.0 b/metadata/md5-cache/app-emacs/multiple-cursors-1.4.0 index ff4d5b0053de..06fcdc24671c 100644 --- a/metadata/md5-cache/app-emacs/multiple-cursors-1.4.0 +++ b/metadata/md5-cache/app-emacs/multiple-cursors-1.4.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Multiple cursors for Emacs EAPI=7 HOMEPAGE=https://github.com/magnars/multiple-cursors.el @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/magnars/multiple-cursors.el/archive/1.4.0.tar.gz -> multiple-cursors-1.4.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=19934ddda2983416e762476782a23ddd diff --git a/metadata/md5-cache/app-emacs/muse-3.20-r1 b/metadata/md5-cache/app-emacs/muse-3.20-r1 index 63a5336d559a..5d7c9e1500e4 100644 --- a/metadata/md5-cache/app-emacs/muse-3.20-r1 +++ b/metadata/md5-cache/app-emacs/muse-3.20-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=An authoring and publishing environment for Emacs EAPI=7 HOMEPAGE=https://www.gnu.org/software/emacs-muse/ @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/alexott/muse/archive/v3.20.tar.gz -> muse-3.20.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=a5bc15f35110be375d19b1f58ba9679f diff --git a/metadata/md5-cache/app-emacs/nagios-mode-0.4 b/metadata/md5-cache/app-emacs/nagios-mode-0.4 index 06c30828381b..7dfed0aae5b4 100644 --- a/metadata/md5-cache/app-emacs/nagios-mode-0.4 +++ b/metadata/md5-cache/app-emacs/nagios-mode-0.4 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Major mode for editing Nagios configuration files EAPI=8 HOMEPAGE=http://michael.orlitzky.com/code/nagios-mode.xhtml @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=http://michael.orlitzky.com/code/releases/nagios-mode-0.4.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=1c2b47e35f21cb13fbbb7977b48174b9 diff --git a/metadata/md5-cache/app-emacs/navi2ch-1.8.4-r2 b/metadata/md5-cache/app-emacs/navi2ch-1.8.4-r2 index ea033b812865..e26a4778deea 100644 --- a/metadata/md5-cache/app-emacs/navi2ch-1.8.4-r2 +++ b/metadata/md5-cache/app-emacs/navi2ch-1.8.4-r2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A navigator for the Japanese textboard 2ch EAPI=8 HOMEPAGE=http://navi2ch.sourceforge.net/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://sourceforge/navi2ch/navi2ch-1.8.4.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=c4fb513353d88cec883962702218766b diff --git a/metadata/md5-cache/app-emacs/nginx-mode-1.1.9 b/metadata/md5-cache/app-emacs/nginx-mode-1.1.9 index ea04c1783f4e..ff90e5ce3c0b 100644 --- a/metadata/md5-cache/app-emacs/nginx-mode-1.1.9 +++ b/metadata/md5-cache/app-emacs/nginx-mode-1.1.9 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs editing mode for Nginx config files EAPI=8 HOMEPAGE=http://github.com/ajc/nginx-mode @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/ajc/nginx-mode/archive/v1.1.9.tar.gz -> nginx-mode-1.1.9.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=2050e5b55587b3de545c90b69fceecbd diff --git a/metadata/md5-cache/app-emacs/nim-mode-0.4.2_p20211102 b/metadata/md5-cache/app-emacs/nim-mode-0.4.2_p20211102 index dd112968c919..a3352da13af3 100644 --- a/metadata/md5-cache/app-emacs/nim-mode-0.4.2_p20211102 +++ b/metadata/md5-cache/app-emacs/nim-mode-0.4.2_p20211102 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/commenter app-emacs/epc >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs major mode for the Nim programming language support EAPI=8 HOMEPAGE=https://github.com/nim-lang/nim-mode/ @@ -11,5 +11,5 @@ RDEPEND=app-emacs/commenter app-emacs/epc >=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/nim-lang/nim-mode/archive/744e076f0bea1c5ddc49f92397d9aa98ffa7eff8.tar.gz -> nim-mode-0.4.2_p20211102.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=5cff4e0172a492750e14a04d5c03e034 diff --git a/metadata/md5-cache/app-emacs/noflet-0.0.15_p20141102-r1 b/metadata/md5-cache/app-emacs/noflet-0.0.15_p20141102-r1 index a83de5234cef..7c2b3d7fedf6 100644 --- a/metadata/md5-cache/app-emacs/noflet-0.0.15_p20141102-r1 +++ b/metadata/md5-cache/app-emacs/noflet-0.0.15_p20141102-r1 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/dash >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Dynamic, local advice for Emacs-Lisp code EAPI=8 HOMEPAGE=https://github.com/nicferrier/emacs-noflet/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/dash >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/nicferrier/emacs-noflet/archive/7ae84dc3257637af7334101456dafe1759c6b68a.tar.gz -> noflet-0.0.15_p20141102.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=58336117128e92928630004d71959d06 diff --git a/metadata/md5-cache/app-emacs/nxml-docbook5-schemas-5.0 b/metadata/md5-cache/app-emacs/nxml-docbook5-schemas-5.0 index a129746e416d..f97cd8397e32 100644 --- a/metadata/md5-cache/app-emacs/nxml-docbook5-schemas-5.0 +++ b/metadata/md5-cache/app-emacs/nxml-docbook5-schemas-5.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Add support for DocBook 5 schemas to NXML EAPI=7 HOMEPAGE=https://docbook.org/schemas/5x.html @@ -9,5 +9,5 @@ LICENSE=HPND RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://docbook.org/xml/5.0/rng/docbookxi.rnc -> docbookxi-5.0.rnc -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=719e1af9bd0b431db9e5af672913bd04 diff --git a/metadata/md5-cache/app-emacs/nxml-docbook5-schemas-5.1 b/metadata/md5-cache/app-emacs/nxml-docbook5-schemas-5.1 index b9878cbc9664..1645d6301b90 100644 --- a/metadata/md5-cache/app-emacs/nxml-docbook5-schemas-5.1 +++ b/metadata/md5-cache/app-emacs/nxml-docbook5-schemas-5.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Add support for DocBook 5 schemas to NXML EAPI=7 HOMEPAGE=https://docbook.org/schemas/5x.html @@ -9,5 +9,5 @@ LICENSE=HPND RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://docbook.org/xml/5.1/rng/docbookxi.rnc -> docbookxi-5.1.rnc -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=719e1af9bd0b431db9e5af672913bd04 diff --git a/metadata/md5-cache/app-emacs/nxml-gentoo-schemas-20230227 b/metadata/md5-cache/app-emacs/nxml-gentoo-schemas-20230227 index fb1b9304a814..59d7247a3700 100644 --- a/metadata/md5-cache/app-emacs/nxml-gentoo-schemas-20230227 +++ b/metadata/md5-cache/app-emacs/nxml-gentoo-schemas-20230227 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Extension for nxml-mode with Gentoo-specific schemas EAPI=8 HOMEPAGE=https://gitweb.gentoo.org/proj/nxml-gentoo-schemas.git/ @@ -9,5 +9,5 @@ LICENSE=MIT GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/nxml-gentoo-schemas-20230227.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=a3f30c86a59bb0fb4f11b01698a647ad diff --git a/metadata/md5-cache/app-emacs/nxml-libvirt-schemas-8.8.0 b/metadata/md5-cache/app-emacs/nxml-libvirt-schemas-8.8.0 index a12acf4c2dca..bcd6c148fdf1 100644 --- a/metadata/md5-cache/app-emacs/nxml-libvirt-schemas-8.8.0 +++ b/metadata/md5-cache/app-emacs/nxml-libvirt-schemas-8.8.0 @@ -1,5 +1,5 @@ BDEPEND=app-text/trang >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Extension for nxml-mode with libvirt schemas EAPI=8 HOMEPAGE=https://www.libvirt.org/ @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://libvirt.org/sources/libvirt-8.8.0.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=aa7cd9be6e6d36734a6f11ff2451dd98 diff --git a/metadata/md5-cache/app-emacs/nxml-libvirt-schemas-8.9.0 b/metadata/md5-cache/app-emacs/nxml-libvirt-schemas-8.9.0 index 3eb3a7cb9fa6..d2a5ef284747 100644 --- a/metadata/md5-cache/app-emacs/nxml-libvirt-schemas-8.9.0 +++ b/metadata/md5-cache/app-emacs/nxml-libvirt-schemas-8.9.0 @@ -1,5 +1,5 @@ BDEPEND=app-text/trang >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Extension for nxml-mode with libvirt schemas EAPI=8 HOMEPAGE=https://www.libvirt.org/ @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://libvirt.org/sources/libvirt-8.9.0.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=aa7cd9be6e6d36734a6f11ff2451dd98 diff --git a/metadata/md5-cache/app-emacs/nxml-libvirt-schemas-9.2.0 b/metadata/md5-cache/app-emacs/nxml-libvirt-schemas-9.2.0 index 4b8512ade017..27bcda4f8f3a 100644 --- a/metadata/md5-cache/app-emacs/nxml-libvirt-schemas-9.2.0 +++ b/metadata/md5-cache/app-emacs/nxml-libvirt-schemas-9.2.0 @@ -1,5 +1,5 @@ BDEPEND=app-text/trang >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Extension for nxml-mode with libvirt schemas EAPI=8 HOMEPAGE=https://www.libvirt.org/ @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://libvirt.org/sources/libvirt-9.2.0.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=aa7cd9be6e6d36734a6f11ff2451dd98 diff --git a/metadata/md5-cache/app-emacs/nxml-svg-schemas-1.1.20081123-r1 b/metadata/md5-cache/app-emacs/nxml-svg-schemas-1.1.20081123-r1 index 8940f339dfe8..16f40cbab95a 100644 --- a/metadata/md5-cache/app-emacs/nxml-svg-schemas-1.1.20081123-r1 +++ b/metadata/md5-cache/app-emacs/nxml-svg-schemas-1.1.20081123-r1 @@ -1,5 +1,5 @@ BDEPEND=app-arch/unzip app-text/trang >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Extension for nxml-mode with SVG 1.1 schemas EAPI=7 HOMEPAGE=http://www.w3.org/TR/SVG11/ @@ -9,5 +9,5 @@ LICENSE=HPND RDEPEND=>=app-editors/emacs-25.3:* SLOT=1.1 SRC_URI=http://www.flameeyes.eu/gentoo-distfiles/w3c-svg-rng-1.1.20081123.zip -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=2e3df112cfd4dc76d9f68f3497d6898d diff --git a/metadata/md5-cache/app-emacs/ocaml-mode-4.05.0 b/metadata/md5-cache/app-emacs/ocaml-mode-4.05.0 index 47378d7894ac..7b0dd9651b91 100644 --- a/metadata/md5-cache/app-emacs/ocaml-mode-4.05.0 +++ b/metadata/md5-cache/app-emacs/ocaml-mode-4.05.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs mode for OCaml EAPI=7 HOMEPAGE=https://ocaml.org/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/ocaml/ocaml/archive/4.05.0.tar.gz -> ocaml-4.05.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=5dc5484ec85c2e7a2daed9966d2a6822 diff --git a/metadata/md5-cache/app-emacs/orderless-0.7 b/metadata/md5-cache/app-emacs/orderless-0.7 index bdb8c96b2a12..ad7588e51213 100644 --- a/metadata/md5-cache/app-emacs/orderless-0.7 +++ b/metadata/md5-cache/app-emacs/orderless-0.7 @@ -1,5 +1,5 @@ BDEPEND=sys-apps/texinfo >=app-editors/emacs-26:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Completion style that matches multiple regexps in any order EAPI=8 HOMEPAGE=https://github.com/oantolin/orderless @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-26:* SLOT=0 SRC_URI=https://github.com/oantolin/orderless/archive/refs/tags/0.7.tar.gz -> orderless-0.7.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=ab6bf7e60647c90c379d055a27b318fd diff --git a/metadata/md5-cache/app-emacs/orderless-0.8 b/metadata/md5-cache/app-emacs/orderless-0.8 index ab6fc92bfe52..a8686a860d9f 100644 --- a/metadata/md5-cache/app-emacs/orderless-0.8 +++ b/metadata/md5-cache/app-emacs/orderless-0.8 @@ -1,5 +1,5 @@ BDEPEND=sys-apps/texinfo >=app-editors/emacs-26:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Completion style that matches multiple regexps in any order EAPI=8 HOMEPAGE=https://github.com/oantolin/orderless @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-26:* SLOT=0 SRC_URI=https://github.com/oantolin/orderless/archive/refs/tags/0.8.tar.gz -> orderless-0.8.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=ab6bf7e60647c90c379d055a27b318fd diff --git a/metadata/md5-cache/app-emacs/orderless-1.0 b/metadata/md5-cache/app-emacs/orderless-1.0 index 11a00dde571d..ee834e11c25c 100644 --- a/metadata/md5-cache/app-emacs/orderless-1.0 +++ b/metadata/md5-cache/app-emacs/orderless-1.0 @@ -1,5 +1,5 @@ BDEPEND=sys-apps/texinfo >=app-editors/emacs-26:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Completion style that matches multiple regexps in any order EAPI=8 HOMEPAGE=https://github.com/oantolin/orderless @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-26:* SLOT=0 SRC_URI=https://github.com/oantolin/orderless/archive/refs/tags/1.0.tar.gz -> orderless-1.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=ab6bf7e60647c90c379d055a27b318fd diff --git a/metadata/md5-cache/app-emacs/org-appear-0.3.0 b/metadata/md5-cache/app-emacs/org-appear-0.3.0 index 571d6c0584bd..64ba0ae9c8a6 100644 --- a/metadata/md5-cache/app-emacs/org-appear-0.3.0 +++ b/metadata/md5-cache/app-emacs/org-appear-0.3.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Toggle Org mode element visibility upon entering and leaving EAPI=8 HOMEPAGE=https://github.com/awth13/org-appear/ @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/awth13/org-appear/archive/0.3.0.tar.gz -> org-appear-0.3.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=3315e6dbb5f9387b0e964f7fedd8df3f diff --git a/metadata/md5-cache/app-emacs/org-contrib-0.3 b/metadata/md5-cache/app-emacs/org-contrib-0.3 index bb1ebb95c052..8f9a6c607f9b 100644 --- a/metadata/md5-cache/app-emacs/org-contrib-0.3 +++ b/metadata/md5-cache/app-emacs/org-contrib-0.3 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Contributed packages to Org EAPI=8 HOMEPAGE=https://www.orgmode.org/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-emacs/org-mode-9.5 >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://git.sr.ht/~bzg/org-contrib/archive/release_0.3.tar.gz -> org-contrib-0.3.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=57a7b4a6e1e82aa942761249da0bb075 diff --git a/metadata/md5-cache/app-emacs/org-contrib-0.4 b/metadata/md5-cache/app-emacs/org-contrib-0.4 index 6cc2160cccaa..ec4345809150 100644 --- a/metadata/md5-cache/app-emacs/org-contrib-0.4 +++ b/metadata/md5-cache/app-emacs/org-contrib-0.4 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Contributed packages to Org EAPI=8 HOMEPAGE=https://www.orgmode.org/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-emacs/org-mode-9.5 >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://git.sr.ht/~bzg/org-contrib/archive/release_0.4.tar.gz -> org-contrib-0.4.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=57a7b4a6e1e82aa942761249da0bb075 diff --git a/metadata/md5-cache/app-emacs/org-contrib-0.4.1 b/metadata/md5-cache/app-emacs/org-contrib-0.4.1 index 5e93d98ebbf9..9d3f8f4660d3 100644 --- a/metadata/md5-cache/app-emacs/org-contrib-0.4.1 +++ b/metadata/md5-cache/app-emacs/org-contrib-0.4.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Contributed packages to Org EAPI=8 HOMEPAGE=https://www.orgmode.org/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-emacs/org-mode-9.5 >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://git.sr.ht/~bzg/org-contrib/archive/release_0.4.1.tar.gz -> org-contrib-0.4.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=57a7b4a6e1e82aa942761249da0bb075 diff --git a/metadata/md5-cache/app-emacs/org-mode-9.4.6 b/metadata/md5-cache/app-emacs/org-mode-9.4.6 index 98c7ec2a8a0e..c11e28f9a363 100644 --- a/metadata/md5-cache/app-emacs/org-mode-9.4.6 +++ b/metadata/md5-cache/app-emacs/org-mode-9.4.6 @@ -1,5 +1,5 @@ BDEPEND=doc? ( virtual/texi2dvi ) >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=An Emacs mode for notes and project planning EAPI=8 HOMEPAGE=https://www.orgmode.org/ @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://orgmode.org/org-9.4.6.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=b7b784da80f466d982e380f14797b73f diff --git a/metadata/md5-cache/app-emacs/org-mode-9.5.5 b/metadata/md5-cache/app-emacs/org-mode-9.5.5 index be1443d4c356..d23f1beb30af 100644 --- a/metadata/md5-cache/app-emacs/org-mode-9.5.5 +++ b/metadata/md5-cache/app-emacs/org-mode-9.5.5 @@ -1,5 +1,5 @@ BDEPEND=doc? ( virtual/texi2dvi ) >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=An Emacs mode for notes and project planning EAPI=8 HOMEPAGE=https://www.orgmode.org/ @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://git.savannah.gnu.org/cgit/emacs/org-mode.git/snapshot/org-mode-release_9.5.5.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=e663e7ffdfe01b18fc45b9f28f2df65a diff --git a/metadata/md5-cache/app-emacs/org-mode-9.6.1 b/metadata/md5-cache/app-emacs/org-mode-9.6.1 index 6552dd0c4702..9201f6c1f16e 100644 --- a/metadata/md5-cache/app-emacs/org-mode-9.6.1 +++ b/metadata/md5-cache/app-emacs/org-mode-9.6.1 @@ -1,5 +1,5 @@ BDEPEND=doc? ( virtual/texi2dvi ) >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=An Emacs mode for notes and project planning EAPI=8 HOMEPAGE=https://www.orgmode.org/ @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://git.savannah.gnu.org/cgit/emacs/org-mode.git/snapshot/org-mode-release_9.6.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=cd8c0a45af44cb1dfb5dc5d90caeeea8 diff --git a/metadata/md5-cache/app-emacs/org-mode-9.6.2 b/metadata/md5-cache/app-emacs/org-mode-9.6.2 index 8cbebec6b3af..1a3a7ade0cc7 100644 --- a/metadata/md5-cache/app-emacs/org-mode-9.6.2 +++ b/metadata/md5-cache/app-emacs/org-mode-9.6.2 @@ -1,5 +1,5 @@ BDEPEND=doc? ( virtual/texi2dvi ) >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=An Emacs mode for notes and project planning EAPI=8 HOMEPAGE=https://www.orgmode.org/ @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://git.savannah.gnu.org/cgit/emacs/org-mode.git/snapshot/org-mode-release_9.6.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=567831454e98525b3087c46320283b5f diff --git a/metadata/md5-cache/app-emacs/org-mode-9.6.3 b/metadata/md5-cache/app-emacs/org-mode-9.6.3 index 6a2989727dc1..40c30e837d88 100644 --- a/metadata/md5-cache/app-emacs/org-mode-9.6.3 +++ b/metadata/md5-cache/app-emacs/org-mode-9.6.3 @@ -1,5 +1,5 @@ BDEPEND=doc? ( virtual/texi2dvi ) >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=An Emacs mode for notes and project planning EAPI=8 HOMEPAGE=https://www.orgmode.org/ @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://git.savannah.gnu.org/cgit/emacs/org-mode.git/snapshot/org-mode-release_9.6.3.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=567831454e98525b3087c46320283b5f diff --git a/metadata/md5-cache/app-emacs/org-mode-9999 b/metadata/md5-cache/app-emacs/org-mode-9999 index 0ecc254d28c6..0197c60d93f5 100644 --- a/metadata/md5-cache/app-emacs/org-mode-9999 +++ b/metadata/md5-cache/app-emacs/org-mode-9999 @@ -1,5 +1,5 @@ BDEPEND=doc? ( virtual/texi2dvi ) >=app-editors/emacs-25.3:* >=dev-vcs/git-1.8.2.1[curl] -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=An Emacs mode for notes and project planning EAPI=8 HOMEPAGE=https://www.orgmode.org/ @@ -10,5 +10,5 @@ PROPERTIES=live RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 git-r3 27e13c09a4c7e4c78ac812f74727e676 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 git-r3 27e13c09a4c7e4c78ac812f74727e676 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=861490b905680e198bf51b28f8b7e4f8 diff --git a/metadata/md5-cache/app-emacs/org-modern-0.7 b/metadata/md5-cache/app-emacs/org-modern-0.7 index 91c22007df4a..30ebb363b65d 100644 --- a/metadata/md5-cache/app-emacs/org-modern-0.7 +++ b/metadata/md5-cache/app-emacs/org-modern-0.7 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Modern style for your GNU Emacs Org buffers EAPI=8 HOMEPAGE=https://github.com/minad/org-modern/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/minad/org-modern/archive/0.7.tar.gz -> org-modern-0.7.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=91ddb819f32a82585b4465943677d726 diff --git a/metadata/md5-cache/app-emacs/org-modern-0.8 b/metadata/md5-cache/app-emacs/org-modern-0.8 index ec11130fc28d..a0326cf87f6a 100644 --- a/metadata/md5-cache/app-emacs/org-modern-0.8 +++ b/metadata/md5-cache/app-emacs/org-modern-0.8 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Modern style for your GNU Emacs Org buffers EAPI=8 HOMEPAGE=https://github.com/minad/org-modern/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/minad/org-modern/archive/0.8.tar.gz -> org-modern-0.8.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=91ddb819f32a82585b4465943677d726 diff --git a/metadata/md5-cache/app-emacs/org-modern-0.9-r1 b/metadata/md5-cache/app-emacs/org-modern-0.9-r1 index 81a930f1807e..68ce97de7ac1 100644 --- a/metadata/md5-cache/app-emacs/org-modern-0.9-r1 +++ b/metadata/md5-cache/app-emacs/org-modern-0.9-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-emacs/compat-29.1.4.0 >=app-editors/emacs-27.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Modern style for your GNU Emacs Org buffers EAPI=8 HOMEPAGE=https://github.com/minad/org-modern/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-emacs/compat-29.1.4.0 >=app-editors/emacs-27.1:* SLOT=0 SRC_URI=https://github.com/minad/org-modern/archive/0.9.tar.gz -> org-modern-0.9.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=0015fd4e2ffcea4d2395e8e518daeca5 diff --git a/metadata/md5-cache/app-emacs/org-static-blog-1.5.0 b/metadata/md5-cache/app-emacs/org-static-blog-1.5.0 index f310660526f1..ac55f9211c4b 100644 --- a/metadata/md5-cache/app-emacs/org-static-blog-1.5.0 +++ b/metadata/md5-cache/app-emacs/org-static-blog-1.5.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Static site generator using Emacs's org-mode EAPI=8 HOMEPAGE=https://github.com/bastibe/org-static-blog/ @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/bastibe/org-static-blog/archive/1.5.0.tar.gz -> org-static-blog-1.5.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=e7034e81c5eb0f6b6dfa6c02b2bb5405 diff --git a/metadata/md5-cache/app-emacs/org-static-blog-1.6.0 b/metadata/md5-cache/app-emacs/org-static-blog-1.6.0 index 5a772e97a013..20089bde2779 100644 --- a/metadata/md5-cache/app-emacs/org-static-blog-1.6.0 +++ b/metadata/md5-cache/app-emacs/org-static-blog-1.6.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Static site generator using Emacs's org-mode EAPI=8 HOMEPAGE=https://github.com/bastibe/org-static-blog/ @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/bastibe/org-static-blog/archive/1.6.0.tar.gz -> org-static-blog-1.6.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=e7034e81c5eb0f6b6dfa6c02b2bb5405 diff --git a/metadata/md5-cache/app-emacs/org-superstar-mode-1.5.0 b/metadata/md5-cache/app-emacs/org-superstar-mode-1.5.0 index ebe44e719fd8..637b9a8e16ae 100644 --- a/metadata/md5-cache/app-emacs/org-superstar-mode-1.5.0 +++ b/metadata/md5-cache/app-emacs/org-superstar-mode-1.5.0 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-26.1:* SLOT=0 SRC_URI=https://github.com/integral-dw/org-superstar-mode/archive/v1.5.0.tar.gz -> org-superstar-mode-1.5.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=d2c10b39c551521910e253489e6af51e diff --git a/metadata/md5-cache/app-emacs/osm-0.10 b/metadata/md5-cache/app-emacs/osm-0.10 index 17493cd98942..df2b754081cb 100644 --- a/metadata/md5-cache/app-emacs/osm-0.10 +++ b/metadata/md5-cache/app-emacs/osm-0.10 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-27.1:*[jpeg,json,libxml2,png,svg] >=app-emacs/compat-29.1.3.4 >=app-editors/emacs-27.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=OpenStreetMap tile-based viewer for GNU Emacs EAPI=8 HOMEPAGE=https://github.com/minad/osm/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-27.1:*[jpeg,json,libxml2,png,svg] >=app-emacs/compat-29.1.3.4 net-misc/curl[ssl] >=app-editors/emacs-27.1:* SLOT=0 SRC_URI=https://github.com/minad/osm/archive/0.10.tar.gz -> osm-0.10.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=932332563a0fa2a77060803822de0edf diff --git a/metadata/md5-cache/app-emacs/osm-0.9 b/metadata/md5-cache/app-emacs/osm-0.9 index 18bf8d42e910..f6a346c4c21c 100644 --- a/metadata/md5-cache/app-emacs/osm-0.9 +++ b/metadata/md5-cache/app-emacs/osm-0.9 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-27.1:*[jpeg,json,libxml2,png,svg] >=app-editors/emacs-27.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=OpenStreetMap tile-based viewer for GNU Emacs EAPI=8 HOMEPAGE=https://github.com/minad/osm/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-27.1:*[jpeg,json,libxml2,png,svg] net-misc/curl[ssl] >=app-editors/emacs-27.1:* SLOT=0 SRC_URI=https://github.com/minad/osm/archive/0.9.tar.gz -> osm-0.9.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=ff65dd892126dc5eb4f05b1110ad03be diff --git a/metadata/md5-cache/app-emacs/outline-magic-0.9 b/metadata/md5-cache/app-emacs/outline-magic-0.9 index ea92be99e8a4..f6f532ceeb77 100644 --- a/metadata/md5-cache/app-emacs/outline-magic-0.9 +++ b/metadata/md5-cache/app-emacs/outline-magic-0.9 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Outline mode extensions for Emacs EAPI=7 HOMEPAGE=https://github.com/tj64/outline-magic https://www.emacswiki.org/emacs/OutlineMagic @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gentoo/outline-magic-0.9.el.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=76b66b3fec7336bc49333f0d36e9398e diff --git a/metadata/md5-cache/app-emacs/package-build-3.1 b/metadata/md5-cache/app-emacs/package-build-3.1 index 40e02073114a..04d2324c048e 100644 --- a/metadata/md5-cache/app-emacs/package-build-3.1 +++ b/metadata/md5-cache/app-emacs/package-build-3.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Tools for assembling a package archive EAPI=8 HOMEPAGE=https://github.com/melpa/package-build/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/melpa/package-build/archive/3.1.tar.gz -> package-build-3.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=0792bf35dec02998c716994b31088742 diff --git a/metadata/md5-cache/app-emacs/package-build-3.2 b/metadata/md5-cache/app-emacs/package-build-3.2 index 6840a2dc9671..c402027fc7cf 100644 --- a/metadata/md5-cache/app-emacs/package-build-3.2 +++ b/metadata/md5-cache/app-emacs/package-build-3.2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Tools for assembling a package archive EAPI=8 HOMEPAGE=https://github.com/melpa/package-build/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/melpa/package-build/archive/3.2.tar.gz -> package-build-3.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=0792bf35dec02998c716994b31088742 diff --git a/metadata/md5-cache/app-emacs/package-build-4.0.0 b/metadata/md5-cache/app-emacs/package-build-4.0.0 index 93c076c499cd..19914395433c 100644 --- a/metadata/md5-cache/app-emacs/package-build-4.0.0 +++ b/metadata/md5-cache/app-emacs/package-build-4.0.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Tools for assembling a package archive EAPI=8 HOMEPAGE=https://github.com/melpa/package-build/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/melpa/package-build/archive/4.0.0.tar.gz -> package-build-4.0.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=0792bf35dec02998c716994b31088742 diff --git a/metadata/md5-cache/app-emacs/package-lint-0.16-r1 b/metadata/md5-cache/app-emacs/package-lint-0.16-r1 index 217041204fd6..a92681e3c26f 100644 --- a/metadata/md5-cache/app-emacs/package-lint-0.16-r1 +++ b/metadata/md5-cache/app-emacs/package-lint-0.16-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-26.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Linting library for Emacs Lisp package metadata EAPI=8 HOMEPAGE=https://github.com/purcell/package-lint/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-26.1:* SLOT=0 SRC_URI=https://github.com/purcell/package-lint/archive/0.16.tar.gz -> package-lint-0.16.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=e0de31fa5a7ac7d9a6aa29998a070e78 diff --git a/metadata/md5-cache/app-emacs/package-lint-0.17 b/metadata/md5-cache/app-emacs/package-lint-0.17 index c1373c2b9176..e93f842fd951 100644 --- a/metadata/md5-cache/app-emacs/package-lint-0.17 +++ b/metadata/md5-cache/app-emacs/package-lint-0.17 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-26.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Linting library for Emacs Lisp package metadata EAPI=8 HOMEPAGE=https://github.com/purcell/package-lint/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-26.1:* SLOT=0 SRC_URI=https://github.com/purcell/package-lint/archive/0.17.tar.gz -> package-lint-0.17.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=e3b3c8c712669da6bc132f4739746544 diff --git a/metadata/md5-cache/app-emacs/pandoc-mode-2.32-r1 b/metadata/md5-cache/app-emacs/pandoc-mode-2.32-r1 index 7de88db9689c..04e30051627a 100644 --- a/metadata/md5-cache/app-emacs/pandoc-mode-2.32-r1 +++ b/metadata/md5-cache/app-emacs/pandoc-mode-2.32-r1 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/dash app-emacs/hydra >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=GNU Emacs minor mode for interacting with Pandoc EAPI=8 HOMEPAGE=https://joostkremers.github.io/pandoc-mode/ https://github.com/joostkremers/pandoc-mode/ @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=app-emacs/dash app-emacs/hydra virtual/pandoc >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/joostkremers/pandoc-mode/archive/2.32.tar.gz -> pandoc-mode-2.32.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=75d150622d247357543f4a8a9b61968e diff --git a/metadata/md5-cache/app-emacs/paredit-24 b/metadata/md5-cache/app-emacs/paredit-24 index edf52831af9d..7925d10d0123 100644 --- a/metadata/md5-cache/app-emacs/paredit-24 +++ b/metadata/md5-cache/app-emacs/paredit-24 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Minor mode for performing structured editing of S-expressions EAPI=7 HOMEPAGE=https://mumble.net/~campbell/emacs/ https://www.emacswiki.org/emacs/ParEdit @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/paredit-24.el.xz https://dev.gentoo.org/~ulm/distfiles/paredit-23.html.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=179c461c8c22baaa952b5bfcb8ca2adf diff --git a/metadata/md5-cache/app-emacs/paredit-25 b/metadata/md5-cache/app-emacs/paredit-25 index 374814d9de96..dd01344a628b 100644 --- a/metadata/md5-cache/app-emacs/paredit-25 +++ b/metadata/md5-cache/app-emacs/paredit-25 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~matthew/distfiles/paredit-25.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=0ca5769fc2c5618ea4c2c86491ca982b diff --git a/metadata/md5-cache/app-emacs/paredit-26 b/metadata/md5-cache/app-emacs/paredit-26 index 90ae804cebd7..e587bf3b29bf 100644 --- a/metadata/md5-cache/app-emacs/paredit-26 +++ b/metadata/md5-cache/app-emacs/paredit-26 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/emacsmirror/paredit/archive/v26.tar.gz -> paredit-26.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=cd5d233880a1b287290b6f4f1cc8aab0 diff --git a/metadata/md5-cache/app-emacs/pariemacs-3.14-r1 b/metadata/md5-cache/app-emacs/pariemacs-3.14-r1 index da48b582797a..19b529054ad4 100644 --- a/metadata/md5-cache/app-emacs/pariemacs-3.14-r1 +++ b/metadata/md5-cache/app-emacs/pariemacs-3.14-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=sci-mathematics/pari DESCRIPTION=sci-mathematics/pari emacs mode EAPI=8 @@ -10,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=sci-mathematics/pari >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=http://iml.univ-mrs.fr/~ramare/ServeurPerso/GP-PARI/latest-pari-distrib/pariemacs-3.14.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=7b1f0ccff9b213713b2b772c54cd1a98 diff --git a/metadata/md5-cache/app-emacs/parsebib-4.1 b/metadata/md5-cache/app-emacs/parsebib-4.1 index c95673b76eac..5c545e2bd843 100644 --- a/metadata/md5-cache/app-emacs/parsebib-4.1 +++ b/metadata/md5-cache/app-emacs/parsebib-4.1 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/joostkremers/parsebib/archive/4.1.tar.gz -> parsebib-4.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=17c8f44a54c6117b7d6097b7dba1dcb2 diff --git a/metadata/md5-cache/app-emacs/parsebib-4.2 b/metadata/md5-cache/app-emacs/parsebib-4.2 index ba90e8cec25f..1d93cf698c9e 100644 --- a/metadata/md5-cache/app-emacs/parsebib-4.2 +++ b/metadata/md5-cache/app-emacs/parsebib-4.2 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/joostkremers/parsebib/archive/4.2.tar.gz -> parsebib-4.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=17c8f44a54c6117b7d6097b7dba1dcb2 diff --git a/metadata/md5-cache/app-emacs/parsebib-4.3 b/metadata/md5-cache/app-emacs/parsebib-4.3 index d543321749ee..8732e1fbd05e 100644 --- a/metadata/md5-cache/app-emacs/parsebib-4.3 +++ b/metadata/md5-cache/app-emacs/parsebib-4.3 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/joostkremers/parsebib/archive/4.3.tar.gz -> parsebib-4.3.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=14cadde9e952f635703c1801ffc37327 diff --git a/metadata/md5-cache/app-emacs/parseclj-1.1.0 b/metadata/md5-cache/app-emacs/parseclj-1.1.0 index dc7ead1263da..ac99ef79781e 100644 --- a/metadata/md5-cache/app-emacs/parseclj-1.1.0 +++ b/metadata/md5-cache/app-emacs/parseclj-1.1.0 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/clojure-emacs/parseclj/archive/v1.1.0.tar.gz -> parseclj-1.1.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=beeac339a4ce6c4ba4050a606ac16b6e diff --git a/metadata/md5-cache/app-emacs/parseedn-1.1.0 b/metadata/md5-cache/app-emacs/parseedn-1.1.0 index 3fe1e5150cb2..c385cba3668f 100644 --- a/metadata/md5-cache/app-emacs/parseedn-1.1.0 +++ b/metadata/md5-cache/app-emacs/parseedn-1.1.0 @@ -11,5 +11,5 @@ RDEPEND=app-emacs/parseclj >=app-editors/emacs-26:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/clojure-emacs/parseedn/archive/v1.1.0.tar.gz -> parseedn-1.1.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=cdc670430aeaa39d4aba1482ebf43bda diff --git a/metadata/md5-cache/app-emacs/pdf-tools-1.0.0 b/metadata/md5-cache/app-emacs/pdf-tools-1.0.0 index a7cd199e7b3d..3b936b3028e3 100644 --- a/metadata/md5-cache/app-emacs/pdf-tools-1.0.0 +++ b/metadata/md5-cache/app-emacs/pdf-tools-1.0.0 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/tablist sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 >=app-editors/emacs-26.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=app-text/poppler:=[cairo,png] dev-libs/glib:2= media-libs/freetype:2= media-libs/harfbuzz:= media-libs/libpng:= x11-libs/cairo:= DESCRIPTION=Emacs Lisp support library for PDF documents EAPI=8 @@ -11,5 +11,5 @@ RDEPEND=app-text/poppler:=[cairo,png] dev-libs/glib:2= media-libs/freetype:2= me RESTRICT=test SLOT=0 SRC_URI=https://github.com/vedang/pdf-tools/archive/v1.0.0.tar.gz -> pdf-tools-1.0.0.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=0df010301aae50d64c970cb75f1a8cac diff --git a/metadata/md5-cache/app-emacs/pdf-tools-1.0.0_pre20220619 b/metadata/md5-cache/app-emacs/pdf-tools-1.0.0_pre20220619 index 5615137dc8b5..cc53cd613e2f 100644 --- a/metadata/md5-cache/app-emacs/pdf-tools-1.0.0_pre20220619 +++ b/metadata/md5-cache/app-emacs/pdf-tools-1.0.0_pre20220619 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/tablist sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=app-text/poppler:=[cairo,png] dev-libs/glib:2= media-libs/freetype:2= media-libs/harfbuzz:= media-libs/libpng:= x11-libs/cairo:= DESCRIPTION=Emacs Lisp support library for PDF documents EAPI=8 @@ -11,5 +11,5 @@ RDEPEND=app-text/poppler:=[cairo,png] dev-libs/glib:2= media-libs/freetype:2= me RESTRICT=test SLOT=0 SRC_URI=https://github.com/vedang/pdf-tools/archive/fe42da60ad68e806af1677210249caccd7b99451.tar.gz -> pdf-tools-1.0.0_pre20220619.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=b75b0b6bba429d06e976bbcf4a0d5a9d diff --git a/metadata/md5-cache/app-emacs/pfuture-1.10.3 b/metadata/md5-cache/app-emacs/pfuture-1.10.3 index f69f9890d603..59052da4577f 100644 --- a/metadata/md5-cache/app-emacs/pfuture-1.10.3 +++ b/metadata/md5-cache/app-emacs/pfuture-1.10.3 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Simple wrapper around asynchronous processes EAPI=8 HOMEPAGE=https://github.com/Alexander-Miller/pfuture/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/Alexander-Miller/pfuture/archive/1.10.3.tar.gz -> pfuture-1.10.3.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=f8e7dd889d39f703d1ff3a282be9f4dd diff --git a/metadata/md5-cache/app-emacs/php-mode-1.23.0 b/metadata/md5-cache/app-emacs/php-mode-1.23.0 index f89792e52432..6fd87d972b61 100644 --- a/metadata/md5-cache/app-emacs/php-mode-1.23.0 +++ b/metadata/md5-cache/app-emacs/php-mode-1.23.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=GNU Emacs major mode for editing PHP code EAPI=7 HOMEPAGE=https://github.com/ejmr/php-mode @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/ejmr/php-mode/archive/v1.23.0.tar.gz -> php-mode-1.23.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=be3476492d673b7489d6cadfb816504d diff --git a/metadata/md5-cache/app-emacs/php-mode-1.24.0 b/metadata/md5-cache/app-emacs/php-mode-1.24.0 index 6b4c85e197ad..bd49e6263b5d 100644 --- a/metadata/md5-cache/app-emacs/php-mode-1.24.0 +++ b/metadata/md5-cache/app-emacs/php-mode-1.24.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=GNU Emacs major mode for editing PHP code EAPI=8 HOMEPAGE=https://github.com/ejmr/php-mode @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/ejmr/php-mode/archive/v1.24.0.tar.gz -> php-mode-1.24.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=5addc52b6b11d57e4ce7deb82776bc7c diff --git a/metadata/md5-cache/app-emacs/php-mode-1.24.2 b/metadata/md5-cache/app-emacs/php-mode-1.24.2 index 05765bdd37d8..32ddb4b4bcf1 100644 --- a/metadata/md5-cache/app-emacs/php-mode-1.24.2 +++ b/metadata/md5-cache/app-emacs/php-mode-1.24.2 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/emacs-php/php-mode/archive/v1.24.2.tar.gz -> php-mode-1.24.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=76ca22e1bae00866f6955717177c95d3 diff --git a/metadata/md5-cache/app-emacs/php-mode-1.24.3 b/metadata/md5-cache/app-emacs/php-mode-1.24.3 index c4082ea43818..fced3e7616f5 100644 --- a/metadata/md5-cache/app-emacs/php-mode-1.24.3 +++ b/metadata/md5-cache/app-emacs/php-mode-1.24.3 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/emacs-php/php-mode/archive/v1.24.3.tar.gz -> php-mode-1.24.3.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 -_md5_=4d1bebb20eddc308adcc4a725bf6db19 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 +_md5_=5d8c8f914765ff1b6e70efa02b13265b diff --git a/metadata/md5-cache/app-emacs/pkg-info-0.6 b/metadata/md5-cache/app-emacs/pkg-info-0.6 index 5900ee47d404..84b6d4c435f1 100644 --- a/metadata/md5-cache/app-emacs/pkg-info-0.6 +++ b/metadata/md5-cache/app-emacs/pkg-info-0.6 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Provide information about Emacs packages EAPI=7 HOMEPAGE=https://github.com/emacsorphanage/pkg-info @@ -10,5 +10,5 @@ RDEPEND=>=app-emacs/epl-0.8 >=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/emacsorphanage/pkg-info/archive/refs/tags/0.6.tar.gz -> pkg-info-0.6.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=d7c7e638504e4f2c569a97c1d2413279 diff --git a/metadata/md5-cache/app-emacs/planner-3.42-r1 b/metadata/md5-cache/app-emacs/planner-3.42-r1 index 9d69bd7be333..089cbf0c159c 100644 --- a/metadata/md5-cache/app-emacs/planner-3.42-r1 +++ b/metadata/md5-cache/app-emacs/planner-3.42-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-emacs/muse-3.02.6a app-emacs/bbdb app-emacs/emacs-w3m sys-apps/texinfo >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Maintain a local Wiki using Emacs-friendly markup EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/PlannerMode @@ -11,5 +11,5 @@ RDEPEND=>=app-emacs/muse-3.02.6a app-emacs/bbdb app-emacs/emacs-w3m >=app-editor RESTRICT=test SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/planner-3.42.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=cddd455a6413785e32fd1056ec109509 diff --git a/metadata/md5-cache/app-emacs/po-mode-0.20.1 b/metadata/md5-cache/app-emacs/po-mode-0.20.1 index 9921e81f4f5e..1c6391e4ae8c 100644 --- a/metadata/md5-cache/app-emacs/po-mode-0.20.1 +++ b/metadata/md5-cache/app-emacs/po-mode-0.20.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Major mode for GNU gettext PO files EAPI=7 HOMEPAGE=https://www.gnu.org/software/gettext/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gnu/gettext/gettext-0.20.1.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=60c26640bd3ce8910af66ba624af0719 diff --git a/metadata/md5-cache/app-emacs/po-mode-0.21.1 b/metadata/md5-cache/app-emacs/po-mode-0.21.1 index 06b167cd5817..c755ee628944 100644 --- a/metadata/md5-cache/app-emacs/po-mode-0.21.1 +++ b/metadata/md5-cache/app-emacs/po-mode-0.21.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Major mode for GNU gettext PO files EAPI=7 HOMEPAGE=https://www.gnu.org/software/gettext/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gnu/gettext/gettext-0.21.1.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=71db6b32e8fc87a4ab8e157c75fc9038 diff --git a/metadata/md5-cache/app-emacs/poke-3.0 b/metadata/md5-cache/app-emacs/poke-3.0 index 7e22e7b9766a..0453b8ada9f6 100644 --- a/metadata/md5-cache/app-emacs/poke-3.0 +++ b/metadata/md5-cache/app-emacs/poke-3.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=app-emacs/poke-mode DESCRIPTION=Emacs meets GNU poke! EAPI=8 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/poke-mode >=dev-util/poke-3.0 >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~arsen/poke-3.0.tar.gz -> poke-3.0-el.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=0d5e032e12c35afbd82942f4cc6e189a diff --git a/metadata/md5-cache/app-emacs/poke-mode-3.0 b/metadata/md5-cache/app-emacs/poke-mode-3.0 index 03658c6ff5d7..398dcd3d4e17 100644 --- a/metadata/md5-cache/app-emacs/poke-mode-3.0 +++ b/metadata/md5-cache/app-emacs/poke-mode-3.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Major mode for editing Poke programs EAPI=8 HOMEPAGE=https://elpa.gnu.org/packages/poke-mode.html @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~arsen/poke-mode-3.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=5e1ac54c874fc1a1c13c2ae40d9dece7 diff --git a/metadata/md5-cache/app-emacs/polymode-0.2.2_p20220322 b/metadata/md5-cache/app-emacs/polymode-0.2.2_p20220322 index c6b55d7e1c0b..ac6b177d0cd2 100644 --- a/metadata/md5-cache/app-emacs/polymode-0.2.2_p20220322 +++ b/metadata/md5-cache/app-emacs/polymode-0.2.2_p20220322 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/polymode/polymode/archive/2094c92403fe395dfb2b8b2521da1012a966e9ab.tar.gz -> polymode-0.2.2_p20220322.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=76302548aa706a0ecaf493dd34b27aa0 diff --git a/metadata/md5-cache/app-emacs/popup-0.5.3 b/metadata/md5-cache/app-emacs/popup-0.5.3 index c00dcc3bcfa0..21ba853104b1 100644 --- a/metadata/md5-cache/app-emacs/popup-0.5.3 +++ b/metadata/md5-cache/app-emacs/popup-0.5.3 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Visual popup interface library for Emacs EAPI=7 HOMEPAGE=https://github.com/auto-complete/popup-el @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/auto-complete/popup-el/archive/v0.5.3.tar.gz -> popup-el-0.5.3.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=11a11ed473142833a48348ad547402dc diff --git a/metadata/md5-cache/app-emacs/popup-0.5.8 b/metadata/md5-cache/app-emacs/popup-0.5.8 index 13d914d28f67..caac05c1c724 100644 --- a/metadata/md5-cache/app-emacs/popup-0.5.8 +++ b/metadata/md5-cache/app-emacs/popup-0.5.8 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Visual popup interface library for Emacs EAPI=8 HOMEPAGE=https://github.com/auto-complete/popup-el @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/auto-complete/popup-el/archive/v0.5.8.tar.gz -> popup-el-0.5.8.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=bcd9aa94ab1510ae06f8fc66d90e51b9 diff --git a/metadata/md5-cache/app-emacs/popup-0.5.9 b/metadata/md5-cache/app-emacs/popup-0.5.9 index 6067e0a6bf62..6cc70ccb495e 100644 --- a/metadata/md5-cache/app-emacs/popup-0.5.9 +++ b/metadata/md5-cache/app-emacs/popup-0.5.9 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Visual popup interface library for Emacs EAPI=8 HOMEPAGE=https://github.com/auto-complete/popup-el/ @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/auto-complete/popup-el/archive/v0.5.9.tar.gz -> popup-el-0.5.9.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=a1bb7985bbf7ab2f1c05e1ada61cea28 diff --git a/metadata/md5-cache/app-emacs/popwin-1.0.0 b/metadata/md5-cache/app-emacs/popwin-1.0.0 index a516069f07d6..71a2a99a4ba3 100644 --- a/metadata/md5-cache/app-emacs/popwin-1.0.0 +++ b/metadata/md5-cache/app-emacs/popwin-1.0.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Popup window manager for Emacs EAPI=7 HOMEPAGE=https://github.com/m2ym/popwin-el @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/m2ym/popwin-el/archive/v1.0.0.tar.gz -> popwin-1.0.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=5c43cabeca2c46d5ddc270e090a292aa diff --git a/metadata/md5-cache/app-emacs/popwin-1.0.2 b/metadata/md5-cache/app-emacs/popwin-1.0.2 index ab76a386b29d..4e58a0ac2e8b 100644 --- a/metadata/md5-cache/app-emacs/popwin-1.0.2 +++ b/metadata/md5-cache/app-emacs/popwin-1.0.2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Popup window manager for Emacs EAPI=8 HOMEPAGE=https://github.com/emacsorphanage/popwin @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/emacsorphanage/popwin/archive/refs/tags/1.0.2.tar.gz -> popwin-1.0.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=dcf831307b12310245dfa45caafa3f36 diff --git a/metadata/md5-cache/app-emacs/pos-tip-0.4.6 b/metadata/md5-cache/app-emacs/pos-tip-0.4.6 index ed560e910a0f..69b7e9ef6b70 100644 --- a/metadata/md5-cache/app-emacs/pos-tip-0.4.6 +++ b/metadata/md5-cache/app-emacs/pos-tip-0.4.6 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Show tooltip at point EAPI=8 HOMEPAGE=https://github.com/pitkali/pos-tip/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/pitkali/pos-tip/archive/0.4.6.tar.gz -> pos-tip-0.4.6.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=3afe14b6758c177a01b7a1a99b3e06fd diff --git a/metadata/md5-cache/app-emacs/pos-tip-0.4.6_p20191227 b/metadata/md5-cache/app-emacs/pos-tip-0.4.6_p20191227 index a98693cb0c46..b8ca79b7e38f 100644 --- a/metadata/md5-cache/app-emacs/pos-tip-0.4.6_p20191227 +++ b/metadata/md5-cache/app-emacs/pos-tip-0.4.6_p20191227 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Show tooltip at point EAPI=8 HOMEPAGE=https://github.com/pitkali/pos-tip/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/pitkali/pos-tip/archive/179cc126b363f72ca12fab1e0dc462ce0ee79742.tar.gz -> pos-tip-0.4.6_p20191227.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=995b837be2a9aa64bb89767a5b27ad74 diff --git a/metadata/md5-cache/app-emacs/posframe-1.3.3 b/metadata/md5-cache/app-emacs/posframe-1.3.3 index 5f77a5852785..24d4697c967e 100644 --- a/metadata/md5-cache/app-emacs/posframe-1.3.3 +++ b/metadata/md5-cache/app-emacs/posframe-1.3.3 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-26.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Pop up a frame at point EAPI=8 HOMEPAGE=https://github.com/tumashu/posframe/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-26.1:* SLOT=0 SRC_URI=https://github.com/tumashu/posframe/archive/refs/tags/v1.3.3.tar.gz -> posframe-1.3.3.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=86ad7b9a5cf5b5ba2b6e318118b63922 diff --git a/metadata/md5-cache/app-emacs/posframe-1.4.0 b/metadata/md5-cache/app-emacs/posframe-1.4.0 index c9b4ac36aee7..9b78616e1849 100644 --- a/metadata/md5-cache/app-emacs/posframe-1.4.0 +++ b/metadata/md5-cache/app-emacs/posframe-1.4.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-26.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Pop up a frame at point EAPI=8 HOMEPAGE=https://github.com/tumashu/posframe/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-26.1:* SLOT=0 SRC_URI=https://github.com/tumashu/posframe/archive/refs/tags/v1.4.0.tar.gz -> posframe-1.4.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=86ad7b9a5cf5b5ba2b6e318118b63922 diff --git a/metadata/md5-cache/app-emacs/posframe-1.4.1 b/metadata/md5-cache/app-emacs/posframe-1.4.1 index 2f976dcb152d..70efa183a050 100644 --- a/metadata/md5-cache/app-emacs/posframe-1.4.1 +++ b/metadata/md5-cache/app-emacs/posframe-1.4.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-26.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Pop up a frame at point EAPI=8 HOMEPAGE=https://github.com/tumashu/posframe/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-26.1:* SLOT=0 SRC_URI=https://github.com/tumashu/posframe/archive/refs/tags/v1.4.1.tar.gz -> posframe-1.4.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=86ad7b9a5cf5b5ba2b6e318118b63922 diff --git a/metadata/md5-cache/app-emacs/pov-mode-3.3-r1 b/metadata/md5-cache/app-emacs/pov-mode-3.3-r1 index 93441332a48e..8892e69f2c4a 100644 --- a/metadata/md5-cache/app-emacs/pov-mode-3.3-r1 +++ b/metadata/md5-cache/app-emacs/pov-mode-3.3-r1 @@ -1,5 +1,5 @@ BDEPEND=sys-apps/texinfo >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Major mode for Povray scene files EAPI=7 HOMEPAGE=https://github.com/melmothx/pov-mode @@ -9,5 +9,5 @@ LICENSE=GPL-3+ FDL-1.2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/emacsmirror/pov-mode/archive/v3.3.tar.gz -> pov-mode-3.3.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=6706411cec44ff9cd9285b46de710bb9 diff --git a/metadata/md5-cache/app-emacs/powerline-2.5_p20221110 b/metadata/md5-cache/app-emacs/powerline-2.5_p20221110 index 72039316efbf..2813dacc01bd 100644 --- a/metadata/md5-cache/app-emacs/powerline-2.5_p20221110 +++ b/metadata/md5-cache/app-emacs/powerline-2.5_p20221110 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=GNU Emacs version of the Vim powerline EAPI=8 HOMEPAGE=https://github.com/milkypostman/powerline/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/milkypostman/powerline/archive/c35c35bdf5ce2d992882c1f06f0f078058870d4a.tar.gz -> powerline-2.5_p20221110.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=560a782bc069be3b69a72aae290f53ed diff --git a/metadata/md5-cache/app-emacs/powershell-0.3_pre20220402 b/metadata/md5-cache/app-emacs/powershell-0.3_pre20220402 index bd87a4572f09..110dd2c5526c 100644 --- a/metadata/md5-cache/app-emacs/powershell-0.3_pre20220402 +++ b/metadata/md5-cache/app-emacs/powershell-0.3_pre20220402 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=GNU Emacs mode for editing and running PowerShell code EAPI=8 HOMEPAGE=https://github.com/jschaf/powershell.el/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/jschaf/powershell.el/archive/77b27faf8a292f1dc9f54c872241dc53b6791bf1.tar.gz -> powershell-0.3_pre20220402.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=373247f1a5a5115b62e1734e523815eb diff --git a/metadata/md5-cache/app-emacs/powershell-0.3_pre20220805 b/metadata/md5-cache/app-emacs/powershell-0.3_pre20220805 index f9b2b163f9a3..85eca6fc3b09 100644 --- a/metadata/md5-cache/app-emacs/powershell-0.3_pre20220805 +++ b/metadata/md5-cache/app-emacs/powershell-0.3_pre20220805 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=GNU Emacs mode for editing and running PowerShell code EAPI=8 HOMEPAGE=https://github.com/jschaf/powershell.el/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/jschaf/powershell.el/archive/f2da15857e430206e215a3c65289b4058ae3c976.tar.gz -> powershell-0.3_pre20220805.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=48fcae3175b84de975896f02751e4e14 diff --git a/metadata/md5-cache/app-emacs/projectile-2.5.0-r1 b/metadata/md5-cache/app-emacs/projectile-2.5.0-r1 index f5abc60cc564..25dc59c5df06 100644 --- a/metadata/md5-cache/app-emacs/projectile-2.5.0-r1 +++ b/metadata/md5-cache/app-emacs/projectile-2.5.0-r1 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/bbatsov/projectile/archive/refs/tags/v2.5.0.tar.gz -> projectile-2.5.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=64cb276ca252518c404fd9f49a78f40f diff --git a/metadata/md5-cache/app-emacs/projectile-2.6.0 b/metadata/md5-cache/app-emacs/projectile-2.6.0 index 8b48e14151c6..9a31d3c625d2 100644 --- a/metadata/md5-cache/app-emacs/projectile-2.6.0 +++ b/metadata/md5-cache/app-emacs/projectile-2.6.0 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/bbatsov/projectile/archive/refs/tags/v2.6.0.tar.gz -> projectile-2.6.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=64cb276ca252518c404fd9f49a78f40f diff --git a/metadata/md5-cache/app-emacs/projectile-2.7.0 b/metadata/md5-cache/app-emacs/projectile-2.7.0 index b47e35bd984a..d7883ce536ba 100644 --- a/metadata/md5-cache/app-emacs/projectile-2.7.0 +++ b/metadata/md5-cache/app-emacs/projectile-2.7.0 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/bbatsov/projectile/archive/refs/tags/v2.7.0.tar.gz -> projectile-2.7.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=64cb276ca252518c404fd9f49a78f40f diff --git a/metadata/md5-cache/app-emacs/proofgeneral-4.4 b/metadata/md5-cache/app-emacs/proofgeneral-4.4 index a3a9d6d89bc6..4b13c39e6108 100644 --- a/metadata/md5-cache/app-emacs/proofgeneral-4.4 +++ b/metadata/md5-cache/app-emacs/proofgeneral-4.4 @@ -1,5 +1,5 @@ BDEPEND=>=app-emacs/mmm-mode-0.4.8-r2 >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A generic interface for proof assistants EAPI=7 HOMEPAGE=https://proofgeneral.github.io/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ GPL-2 GPL-3+ HPND CC-BY-SA-3.0 RDEPEND=>=app-emacs/mmm-mode-0.4.8-r2 >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/ProofGeneral/PG/archive/v4.4.tar.gz -> proofgeneral-4.4.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=57c64b4e5b7267dd222c582bca407b58 diff --git a/metadata/md5-cache/app-emacs/proofgeneral-4.5 b/metadata/md5-cache/app-emacs/proofgeneral-4.5 index d8e416e9c18c..adb539ae3ebd 100644 --- a/metadata/md5-cache/app-emacs/proofgeneral-4.5 +++ b/metadata/md5-cache/app-emacs/proofgeneral-4.5 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A generic interface for proof assistants EAPI=8 HOMEPAGE=https://proofgeneral.github.io/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ GPL-2 GPL-3+ HPND CC-BY-SA-3.0 RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/ProofGeneral/PG/archive/v4.5.tar.gz -> proofgeneral-4.5.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=163db2ff177f74b072feb52927d10fa2 diff --git a/metadata/md5-cache/app-emacs/proofgeneral-4.5_pre20220228 b/metadata/md5-cache/app-emacs/proofgeneral-4.5_pre20220228 index 98a4f977e624..869591a6bcc1 100644 --- a/metadata/md5-cache/app-emacs/proofgeneral-4.5_pre20220228 +++ b/metadata/md5-cache/app-emacs/proofgeneral-4.5_pre20220228 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A generic interface for proof assistants EAPI=8 HOMEPAGE=https://proofgeneral.github.io/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ GPL-2 GPL-3+ HPND CC-BY-SA-3.0 RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/ProofGeneral/PG/archive/fe8b9fccb3690178be7fc455202c941c4c674ac3.tar.gz -> proofgeneral-4.5_pre20220228.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=2cca68af1e4880be3be16daf2403859d diff --git a/metadata/md5-cache/app-emacs/protbuf-1.7-r1 b/metadata/md5-cache/app-emacs/protbuf-1.7-r1 index f6bd4cfb053e..6c803a836f3d 100644 --- a/metadata/md5-cache/app-emacs/protbuf-1.7-r1 +++ b/metadata/md5-cache/app-emacs/protbuf-1.7-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Protect Emacs buffers from accidental killing EAPI=7 HOMEPAGE=http://www.splode.com/~friedman/software/emacs-lisp/ https://www.emacswiki.org/emacs/ProtectingBuffers @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gentoo/protbuf-1.7.tar.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=bfe0b38989c433c89989919a7cb5d016 diff --git a/metadata/md5-cache/app-emacs/psgml-1.4.1 b/metadata/md5-cache/app-emacs/psgml-1.4.1 index 3e7279322a9c..8ff9f6b019b6 100644 --- a/metadata/md5-cache/app-emacs/psgml-1.4.1 +++ b/metadata/md5-cache/app-emacs/psgml-1.4.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A GNU Emacs Major Mode for editing SGML and XML coded documents EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/PsgmlMode @@ -9,5 +9,5 @@ LICENSE=GPL-2+ Texinfo-manual RDEPEND=app-text/openjade >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/psgml-1.4.1.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=67138fb6db302c799196d2563d4fc2f5 diff --git a/metadata/md5-cache/app-emacs/puppet-mode-0.4 b/metadata/md5-cache/app-emacs/puppet-mode-0.4 index fb34879f8c3b..0f0f7330b874 100644 --- a/metadata/md5-cache/app-emacs/puppet-mode-0.4 +++ b/metadata/md5-cache/app-emacs/puppet-mode-0.4 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs major mode for editing Puppet manifests EAPI=7 HOMEPAGE=https://github.com/voxpupuli/puppet-mode @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/voxpupuli/puppet-mode/archive/0.4.tar.gz -> puppet-mode-0.4.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=e847600d325fa1070cc0f78da299af0d diff --git a/metadata/md5-cache/app-emacs/pymacs-0.26-r3 b/metadata/md5-cache/app-emacs/pymacs-0.26-r3 index a4e1142cc177..ae8d93b2e214 100644 --- a/metadata/md5-cache/app-emacs/pymacs-0.26-r3 +++ b/metadata/md5-cache/app-emacs/pymacs-0.26-r3 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* python_targets_python3_9? ( >=dev-lang/python REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) SLOT=0 SRC_URI=https://github.com/dgentry/Pymacs/archive/v0.26.tar.gz -> pymacs-0.26.tar.gz -_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=0f19adcf3cdb7f5858835ddbfe4747f7 diff --git a/metadata/md5-cache/app-emacs/python-mode-6.3.0 b/metadata/md5-cache/app-emacs/python-mode-6.3.0 index 080ae4517d9d..207b2488e1cf 100644 --- a/metadata/md5-cache/app-emacs/python-mode-6.3.0 +++ b/metadata/md5-cache/app-emacs/python-mode-6.3.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=An Emacs major mode for editing Python source EAPI=8 HOMEPAGE=https://gitlab.com/python-mode-devs/python-mode @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://gitlab.com/python-mode-devs/python-mode/-/archive/6.3.0/python-mode-6.3.0.tar.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=43e392ae710f27475ae074f69556bae2 diff --git a/metadata/md5-cache/app-emacs/pyvenv-1.21 b/metadata/md5-cache/app-emacs/pyvenv-1.21 index b559d26a5ef4..ce109947c261 100644 --- a/metadata/md5-cache/app-emacs/pyvenv-1.21 +++ b/metadata/md5-cache/app-emacs/pyvenv-1.21 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/jorgenschaefer/pyvenv/archive/v1.21.tar.gz -> pyvenv-1.21.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=668c7edae54687cf6869324e5b2c770e diff --git a/metadata/md5-cache/app-emacs/quack-0.48 b/metadata/md5-cache/app-emacs/quack-0.48 index abdc5ec62d26..7d810df2c9cd 100644 --- a/metadata/md5-cache/app-emacs/quack-0.48 +++ b/metadata/md5-cache/app-emacs/quack-0.48 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Enhances Emacs support for Scheme EAPI=7 HOMEPAGE=http://www.neilvandyke.org/quack/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/quack-0.48.el.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=6f686db065171041cf8bab133ce4c2d0 diff --git a/metadata/md5-cache/app-emacs/queue-0.2 b/metadata/md5-cache/app-emacs/queue-0.2 index e1bb332cab43..dab76521faa3 100644 --- a/metadata/md5-cache/app-emacs/queue-0.2 +++ b/metadata/md5-cache/app-emacs/queue-0.2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Queue data structure EAPI=8 HOMEPAGE=https://elpa.gnu.org/packages/queue.html @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~matthew/distfiles/queue-0.2.el.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=6ea345fc660297ddd037289568bcf084 diff --git a/metadata/md5-cache/app-emacs/quilt-el-0.66 b/metadata/md5-cache/app-emacs/quilt-el-0.66 index 35c3c9488820..297750a29bcb 100644 --- a/metadata/md5-cache/app-emacs/quilt-el-0.66 +++ b/metadata/md5-cache/app-emacs/quilt-el-0.66 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Quilt mode for Emacs EAPI=7 HOMEPAGE=https://savannah.nongnu.org/projects/quilt http://satoru-takeuchi.org/dev/quilt-el/ @@ -9,5 +9,5 @@ LICENSE=GPL-1+ RDEPEND=dev-util/quilt >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://nongnu/quilt/quilt-0.66.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=a8551252d8db374d478c9c753b390cd8 diff --git a/metadata/md5-cache/app-emacs/qwerty-1.1 b/metadata/md5-cache/app-emacs/qwerty-1.1 index a6acf08c5859..b5b31894f579 100644 --- a/metadata/md5-cache/app-emacs/qwerty-1.1 +++ b/metadata/md5-cache/app-emacs/qwerty-1.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Switch between QWERTY and DVORAK without changing the console keymap EAPI=7 HOMEPAGE=https://groups.google.com/group/gnu.emacs.sources/msg/eab31c752dfdd3a5 @@ -9,5 +9,5 @@ LICENSE=GPL-1+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gentoo/qwerty-1.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=97bc49dbcab0065ca9521eca2590a456 diff --git a/metadata/md5-cache/app-emacs/racket-mode-1_p20221122 b/metadata/md5-cache/app-emacs/racket-mode-1_p20221122 index 8e3e64d66e83..5745faf20a9f 100644 --- a/metadata/md5-cache/app-emacs/racket-mode-1_p20221122 +++ b/metadata/md5-cache/app-emacs/racket-mode-1_p20221122 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=dev-scheme/racket:=[-minimal] >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/greghendershott/racket-mode/archive/b07ffc1541c848a85d8c1afa807ed06cb8e81228.tar.gz -> racket-mode-1_p20221122.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=b8c918592782e93b6d20fbb30209afee diff --git a/metadata/md5-cache/app-emacs/racket-mode-1_p20221216 b/metadata/md5-cache/app-emacs/racket-mode-1_p20221216 index fd6d60a4884d..40db9dd37deb 100644 --- a/metadata/md5-cache/app-emacs/racket-mode-1_p20221216 +++ b/metadata/md5-cache/app-emacs/racket-mode-1_p20221216 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=dev-scheme/racket:=[-minimal] >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/greghendershott/racket-mode/archive/b2fdf248682364d2a9b8f7e97dd98ed02454d7bb.tar.gz -> racket-mode-1_p20221216.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=297979c5f348fd2595341957137809d7 diff --git a/metadata/md5-cache/app-emacs/racket-mode-1_p20230209 b/metadata/md5-cache/app-emacs/racket-mode-1_p20230209 index 1a1218153f4b..9c05b923252e 100644 --- a/metadata/md5-cache/app-emacs/racket-mode-1_p20230209 +++ b/metadata/md5-cache/app-emacs/racket-mode-1_p20230209 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=dev-scheme/racket:=[-minimal] >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/greghendershott/racket-mode/archive/947d9806ee27ef241643f978c7901fd1f9e10c98.tar.gz -> racket-mode-1_p20230209.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=7ec615d65404fa181a11fe5a5c368c3a diff --git a/metadata/md5-cache/app-emacs/rainbow-delimiters-2.1.5 b/metadata/md5-cache/app-emacs/rainbow-delimiters-2.1.5 index 89155f59fb61..83d78d4d1913 100644 --- a/metadata/md5-cache/app-emacs/rainbow-delimiters-2.1.5 +++ b/metadata/md5-cache/app-emacs/rainbow-delimiters-2.1.5 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/Fanael/rainbow-delimiters/archive/2.1.5.tar.gz -> rainbow-delimiters-2.1.5.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=ef661dcb7f8a1d5b49cd3388d360430f diff --git a/metadata/md5-cache/app-emacs/rainbow-mode-1.0.6 b/metadata/md5-cache/app-emacs/rainbow-mode-1.0.6 index c744c17c680d..712e7ff41385 100644 --- a/metadata/md5-cache/app-emacs/rainbow-mode-1.0.6 +++ b/metadata/md5-cache/app-emacs/rainbow-mode-1.0.6 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Colorize strings that represent colors inside Emacs buffers EAPI=8 HOMEPAGE=https://elpa.gnu.org/packages/rainbow-mode.html @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://elpa.gnu.org/packages/rainbow-mode-1.0.6.tar -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=c83d5af9d4e46fe4119dabae1e27f37c diff --git a/metadata/md5-cache/app-emacs/raku-mode-0.2.1_p20211121 b/metadata/md5-cache/app-emacs/raku-mode-0.2.1_p20211121 index 7168a1d817a5..6f7b52cb7f54 100644 --- a/metadata/md5-cache/app-emacs/raku-mode-0.2.1_p20211121 +++ b/metadata/md5-cache/app-emacs/raku-mode-0.2.1_p20211121 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Raku/raku-mode/archive/977b14a7c1295ebf2aad2f807d3f8e7c27aeb47f.tar.gz -> raku-mode-0.2.1_p20211121.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=dae5fae49f70a915f8d82d4002ea9ea2 diff --git a/metadata/md5-cache/app-emacs/reazon-0.4.1 b/metadata/md5-cache/app-emacs/reazon-0.4.1 index 15f50613dcb6..9142440115e9 100644 --- a/metadata/md5-cache/app-emacs/reazon-0.4.1 +++ b/metadata/md5-cache/app-emacs/reazon-0.4.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-26:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=GNU Emacs implementation of miniKanren, logic programming language EAPI=8 HOMEPAGE=https://github.com/nickdrozd/reazon/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-26:* SLOT=0 SRC_URI=https://github.com/nickdrozd/reazon/archive/0.4.1.tar.gz -> reazon-0.4.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=badaa444f66763747d51ae00a985e966 diff --git a/metadata/md5-cache/app-emacs/redo+-1.19 b/metadata/md5-cache/app-emacs/redo+-1.19 index 974cf1b12f74..dfa6d18b7c1a 100644 --- a/metadata/md5-cache/app-emacs/redo+-1.19 +++ b/metadata/md5-cache/app-emacs/redo+-1.19 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Redo/undo system for Emacs EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/RedoPlus https://www11.atwiki.jp/s-irie/pages/18.html @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/redo+-1.19.el.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=7377c748b7b3ee970e32b6198d7eb8e2 diff --git a/metadata/md5-cache/app-emacs/reformatter-0.6 b/metadata/md5-cache/app-emacs/reformatter-0.6 index d4f63f2447e9..58edfdf53e29 100644 --- a/metadata/md5-cache/app-emacs/reformatter-0.6 +++ b/metadata/md5-cache/app-emacs/reformatter-0.6 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Define commands which run reformatters on the Emacs buffers EAPI=8 HOMEPAGE=https://github.com/purcell/emacs-reformatter/ @@ -10,5 +10,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/purcell/emacs-reformatter/archive/0.6.tar.gz -> reformatter-0.6.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=5088d6551c0fa977204f7596af33bba2 diff --git a/metadata/md5-cache/app-emacs/regress-1.5.1 b/metadata/md5-cache/app-emacs/regress-1.5.1 index 924825a59b7e..75bf36dbe118 100644 --- a/metadata/md5-cache/app-emacs/regress-1.5.1 +++ b/metadata/md5-cache/app-emacs/regress-1.5.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Regression test harness for Emacs Lisp code EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/WikifiedEmacsLispList @@ -9,5 +9,5 @@ LICENSE=GPL-1+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gentoo/regress-1.5.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=454d8fdde3e3ea865f8e165779e9cf41 diff --git a/metadata/md5-cache/app-emacs/remember-2.0-r1 b/metadata/md5-cache/app-emacs/remember-2.0-r1 index e9c75aa70b5e..2b3ad9b924be 100644 --- a/metadata/md5-cache/app-emacs/remember-2.0-r1 +++ b/metadata/md5-cache/app-emacs/remember-2.0-r1 @@ -1,5 +1,5 @@ BDEPEND=bbdb? ( app-emacs/bbdb ) planner? ( app-emacs/planner ) sys-apps/texinfo >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Simplify writing short notes in emacs EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/RememberMode @@ -11,5 +11,5 @@ RDEPEND=bbdb? ( app-emacs/bbdb ) planner? ( app-emacs/planner ) >=app-editors/em RESTRICT=test SLOT=0 SRC_URI=https://github.com/jwiegley/remember/archive/v2.0.tar.gz -> remember-2.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=10210f879c00a3cbf893a8599cc7f0d0 diff --git a/metadata/md5-cache/app-emacs/request-0.3.2 b/metadata/md5-cache/app-emacs/request-0.3.2 index 37954bef587b..2379769933a7 100644 --- a/metadata/md5-cache/app-emacs/request-0.3.2 +++ b/metadata/md5-cache/app-emacs/request-0.3.2 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/deferred >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Compatible layer for URL request EAPI=8 HOMEPAGE=https://github.com/tkf/emacs-request/ @@ -10,5 +10,5 @@ RDEPEND=app-emacs/deferred >=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/tkf/emacs-request/archive/v0.3.2.tar.gz -> request-0.3.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=121b26a29055c7cb145c67fce50cf818 diff --git a/metadata/md5-cache/app-emacs/request-0.3.3_p20220318 b/metadata/md5-cache/app-emacs/request-0.3.3_p20220318 index 96f7b63c847f..101c4a695151 100644 --- a/metadata/md5-cache/app-emacs/request-0.3.3_p20220318 +++ b/metadata/md5-cache/app-emacs/request-0.3.3_p20220318 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/deferred >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Compatible layer for URL request EAPI=8 HOMEPAGE=https://github.com/tkf/emacs-request/ @@ -10,5 +10,5 @@ RDEPEND=app-emacs/deferred >=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/tkf/emacs-request/archive/c769cf33f2ac0a1a9798b508935c4b260e856ab5.tar.gz -> request-0.3.3_p20220318.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=22b52a23b272d06d576a751085793c11 diff --git a/metadata/md5-cache/app-emacs/rescript-mode-0.1.0_p20220613 b/metadata/md5-cache/app-emacs/rescript-mode-0.1.0_p20220613 index 804c72cde5ab..5537a790562a 100644 --- a/metadata/md5-cache/app-emacs/rescript-mode-0.1.0_p20220613 +++ b/metadata/md5-cache/app-emacs/rescript-mode-0.1.0_p20220613 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-26.1:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/jjlee/rescript-mode/archive/2aae2fbd4971dff965c758ec19688780ed7bff21.tar.gz -> rescript-mode-0.1.0_p20220613.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=49cf45725bd87dd843a0c7c3f7a1b89d diff --git a/metadata/md5-cache/app-emacs/restclient-0_p20220426 b/metadata/md5-cache/app-emacs/restclient-0_p20220426 index 4b7668ec7959..b8747e36d743 100644 --- a/metadata/md5-cache/app-emacs/restclient-0_p20220426 +++ b/metadata/md5-cache/app-emacs/restclient-0_p20220426 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/helm app-emacs/jq-mode >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=HTTP REST client tool for GNU Emacs EAPI=8 HOMEPAGE=https://github.com/pashky/restclient.el/ @@ -9,5 +9,5 @@ LICENSE=public-domain RDEPEND=app-emacs/helm app-emacs/jq-mode >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/pashky/restclient.el/archive/ae79e7dd283890072da69b8f48aeec1afd0d9442.tar.gz -> restclient-0_p20220426.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=d4208426bb6ac9acc44a80164db85aa7 diff --git a/metadata/md5-cache/app-emacs/revive-2.24 b/metadata/md5-cache/app-emacs/revive-2.24 index bd65bcc7cc9f..d2f9819f560d 100644 --- a/metadata/md5-cache/app-emacs/revive-2.24 +++ b/metadata/md5-cache/app-emacs/revive-2.24 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Resume Emacs EAPI=7 HOMEPAGE=https://www.gentei.org/~yuuji/software/ @@ -9,5 +9,5 @@ LICENSE=BSD-2 RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/revive-2.24.el.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=3dccdc46beff89c1ebb4d15ff43f7acc diff --git a/metadata/md5-cache/app-emacs/rfcview-0.13 b/metadata/md5-cache/app-emacs/rfcview-0.13 index 23ac6d0cb246..38f8b2737b47 100644 --- a/metadata/md5-cache/app-emacs/rfcview-0.13 +++ b/metadata/md5-cache/app-emacs/rfcview-0.13 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=An Emacs mode that reformats IETF RFCs for display EAPI=7 HOMEPAGE=http://www.loveshack.ukfsn.org/emacs/ https://www.emacswiki.org/emacs/RfcView @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/rfcview-0.13.el.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=7c30a40b350b44dcf6a33b05e6f95a21 diff --git a/metadata/md5-cache/app-emacs/rg-2.2.1 b/metadata/md5-cache/app-emacs/rg-2.2.1 index 21e0d38b0fbb..a1398d15ce56 100644 --- a/metadata/md5-cache/app-emacs/rg-2.2.1 +++ b/metadata/md5-cache/app-emacs/rg-2.2.1 @@ -11,5 +11,5 @@ RDEPEND=app-emacs/transient app-emacs/wgrep sys-apps/ripgrep >=app-editors/emacs RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/dajva/rg.el/archive/2.2.1.tar.gz -> rg-2.2.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=55d8f4905f25d8977f3c47924a7905db diff --git a/metadata/md5-cache/app-emacs/rg-2.3.0 b/metadata/md5-cache/app-emacs/rg-2.3.0 index 05b68d7d84b3..917327ab1532 100644 --- a/metadata/md5-cache/app-emacs/rg-2.3.0 +++ b/metadata/md5-cache/app-emacs/rg-2.3.0 @@ -11,5 +11,5 @@ RDEPEND=app-emacs/transient app-emacs/wgrep sys-apps/ripgrep >=app-editors/emacs RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/dajva/rg.el/archive/2.3.0.tar.gz -> rg-2.3.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=55d8f4905f25d8977f3c47924a7905db diff --git a/metadata/md5-cache/app-emacs/riece-9.0.0-r1 b/metadata/md5-cache/app-emacs/riece-9.0.0-r1 index 1510e3d8a920..5a0e49378867 100644 --- a/metadata/md5-cache/app-emacs/riece-9.0.0-r1 +++ b/metadata/md5-cache/app-emacs/riece-9.0.0-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A redesign of Liece IRC client EAPI=7 HOMEPAGE=https://www.nongnu.org/riece/ @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://download.savannah.gnu.org/releases/riece/riece-9.0.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=90e679b73e3471815a6c329c5003fdea diff --git a/metadata/md5-cache/app-emacs/rnc-mode-1.0.6 b/metadata/md5-cache/app-emacs/rnc-mode-1.0.6 index 11fc1c08fdaa..45af0becbc9b 100644 --- a/metadata/md5-cache/app-emacs/rnc-mode-1.0.6 +++ b/metadata/md5-cache/app-emacs/rnc-mode-1.0.6 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=An Emacs mode for editing Relax NG compact schema files EAPI=7 HOMEPAGE=https://github.com/TreeRex/rnc-mode https://www.emacswiki.org/emacs/RELAX_NG @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/TreeRex/rnc-mode/archive/1.0.6.tar.gz -> rnc-mode-1.0.6.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=a88ec621d79879fd7772914c6f6f2545 diff --git a/metadata/md5-cache/app-emacs/rpm-spec-mode-0.15 b/metadata/md5-cache/app-emacs/rpm-spec-mode-0.15 index 3bb78ce04011..d052d28f59fd 100644 --- a/metadata/md5-cache/app-emacs/rpm-spec-mode-0.15 +++ b/metadata/md5-cache/app-emacs/rpm-spec-mode-0.15 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs mode to ease editing of RPM spec files EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/RpmSpecMode @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/rpm-spec-mode-0.15.el.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=ca9805e05a6f18a6dd5e9730536696ab diff --git a/metadata/md5-cache/app-emacs/rpm-spec-mode-0.16 b/metadata/md5-cache/app-emacs/rpm-spec-mode-0.16 index 60b5868275c3..22d654fa88eb 100644 --- a/metadata/md5-cache/app-emacs/rpm-spec-mode-0.16 +++ b/metadata/md5-cache/app-emacs/rpm-spec-mode-0.16 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs mode to ease editing of RPM spec files EAPI=8 HOMEPAGE=https://www.emacswiki.org/emacs/RpmSpecMode https://github.com/stigbjorlykke/rpm-spec-mode/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/stigbjorlykke/rpm-spec-mode/archive/7d06d19a31e888b932da6c8202ff2c73f42703a1.tar.gz -> rpm-spec-mode-0.16.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=5901bd9496a6ca20411f308996bf893c diff --git a/metadata/md5-cache/app-emacs/ruby-mode-2.6.3 b/metadata/md5-cache/app-emacs/ruby-mode-2.6.3 index 50b77518083b..573a05c4de1f 100644 --- a/metadata/md5-cache/app-emacs/ruby-mode-2.6.3 +++ b/metadata/md5-cache/app-emacs/ruby-mode-2.6.3 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs major mode for editing Ruby code EAPI=7 HOMEPAGE=https://www.ruby-lang.org/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/ruby/elisp/archive/75bccbb384e6907df47ab69acdccb4536806c890.tar.gz -> ruby-mode-2.6.3.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=1e2f0380f0c5918ba2112f38598bb9cb diff --git a/metadata/md5-cache/app-emacs/ruby-mode-2.7.0 b/metadata/md5-cache/app-emacs/ruby-mode-2.7.0 index ff577722b12b..41b02d129fa5 100644 --- a/metadata/md5-cache/app-emacs/ruby-mode-2.7.0 +++ b/metadata/md5-cache/app-emacs/ruby-mode-2.7.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs major mode for editing Ruby code EAPI=7 HOMEPAGE=https://www.ruby-lang.org/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/ruby/elisp/archive/defe0b586b2a888706507a7bbcdf1201d924cc2d.tar.gz -> ruby-mode-2.7.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=0d7dc8966cd29dbaa8d8063947749ac5 diff --git a/metadata/md5-cache/app-emacs/ruby-mode-3.0.0 b/metadata/md5-cache/app-emacs/ruby-mode-3.0.0 index 070fb09356d2..8279aa2b1c89 100644 --- a/metadata/md5-cache/app-emacs/ruby-mode-3.0.0 +++ b/metadata/md5-cache/app-emacs/ruby-mode-3.0.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs major mode for editing Ruby code EAPI=7 HOMEPAGE=https://www.ruby-lang.org/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/ruby/elisp/archive/586b679b4ae9685a24003502249920e7721c6e24.tar.gz -> ruby-mode-3.0.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=6e9dc89ba856ee8a392a2dcd1faecb89 diff --git a/metadata/md5-cache/app-emacs/rudel-0.3.1 b/metadata/md5-cache/app-emacs/rudel-0.3.1 index d55ba08ad138..089c7ae29707 100644 --- a/metadata/md5-cache/app-emacs/rudel-0.3.1 +++ b/metadata/md5-cache/app-emacs/rudel-0.3.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Collaborative editing environment for GNU Emacs EAPI=7 HOMEPAGE=http://rudel.sourceforge.net/ https://www.emacswiki.org/emacs/Rudel @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/rudel-0.3.1.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=0c51cbab69272fd78fea6eb98925f59d diff --git a/metadata/md5-cache/app-emacs/rudel-0.3.2 b/metadata/md5-cache/app-emacs/rudel-0.3.2 index 41dc11cf9e15..63fd1603eba5 100644 --- a/metadata/md5-cache/app-emacs/rudel-0.3.2 +++ b/metadata/md5-cache/app-emacs/rudel-0.3.2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Collaborative editing environment for GNU Emacs EAPI=8 HOMEPAGE=http://rudel.sourceforge.net/ https://www.emacswiki.org/emacs/Rudel @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/rudel-0.3.2.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=5e5e67ecc6c7467a684a53e93ef70012 diff --git a/metadata/md5-cache/app-emacs/rust-mode-0.4.0 b/metadata/md5-cache/app-emacs/rust-mode-0.4.0 index 6769a710fbad..d4974fa04f05 100644 --- a/metadata/md5-cache/app-emacs/rust-mode-0.4.0 +++ b/metadata/md5-cache/app-emacs/rust-mode-0.4.0 @@ -9,5 +9,5 @@ LICENSE=|| ( MIT Apache-2.0 ) RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/rust-lang/rust-mode/archive/0.4.0.tar.gz -> rust-mode-0.4.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=5052a10a9b2e103ba6185e1238724ff2 diff --git a/metadata/md5-cache/app-emacs/rust-mode-1.0.4 b/metadata/md5-cache/app-emacs/rust-mode-1.0.4 index c83e722f26ab..b4407840d62b 100644 --- a/metadata/md5-cache/app-emacs/rust-mode-1.0.4 +++ b/metadata/md5-cache/app-emacs/rust-mode-1.0.4 @@ -9,5 +9,5 @@ LICENSE=|| ( MIT Apache-2.0 ) RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/rust-lang/rust-mode/archive/1.0.4.tar.gz -> rust-mode-1.0.4.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=c9a5a36483c11acbee5f127718e6eb76 diff --git a/metadata/md5-cache/app-emacs/rust-mode-1.0.5 b/metadata/md5-cache/app-emacs/rust-mode-1.0.5 index 812604b2a851..4cef51080f8e 100644 --- a/metadata/md5-cache/app-emacs/rust-mode-1.0.5 +++ b/metadata/md5-cache/app-emacs/rust-mode-1.0.5 @@ -9,5 +9,5 @@ LICENSE=|| ( MIT Apache-2.0 ) RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/rust-lang/rust-mode/archive/1.0.5.tar.gz -> rust-mode-1.0.5.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=c9a5a36483c11acbee5f127718e6eb76 diff --git a/metadata/md5-cache/app-emacs/s-1.12.0-r1 b/metadata/md5-cache/app-emacs/s-1.12.0-r1 index c9fe43dec4cc..4dbfb78b9d4e 100644 --- a/metadata/md5-cache/app-emacs/s-1.12.0-r1 +++ b/metadata/md5-cache/app-emacs/s-1.12.0-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/magnars/s.el/archive/1.12.0.tar.gz -> s-1.12.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=68b8bd7b317ad7b486b0b4c9c2056453 diff --git a/metadata/md5-cache/app-emacs/s-1.13.0 b/metadata/md5-cache/app-emacs/s-1.13.0 index 4c487e23b5c0..5046bdda195c 100644 --- a/metadata/md5-cache/app-emacs/s-1.13.0 +++ b/metadata/md5-cache/app-emacs/s-1.13.0 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/magnars/s.el/archive/1.13.0.tar.gz -> s-1.13.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=4317cee8f860238bf3ed90b6c8edb6d9 diff --git a/metadata/md5-cache/app-emacs/scala-mode-2.10.3 b/metadata/md5-cache/app-emacs/scala-mode-2.10.3 index 5405e193d669..46635abee429 100644 --- a/metadata/md5-cache/app-emacs/scala-mode-2.10.3 +++ b/metadata/md5-cache/app-emacs/scala-mode-2.10.3 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Scala mode for Emacs EAPI=7 HOMEPAGE=https://www.scala-lang.org/ @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-lang/scala >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://www.scala-lang.org/files/archive/scala-tool-support-2.10.3.tgz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=d23eb7d1b7832227d68b59e686e5484b diff --git a/metadata/md5-cache/app-emacs/scheme-complete-0.9.8 b/metadata/md5-cache/app-emacs/scheme-complete-0.9.8 index f9f8b25991e9..e48106fa802e 100644 --- a/metadata/md5-cache/app-emacs/scheme-complete-0.9.8 +++ b/metadata/md5-cache/app-emacs/scheme-complete-0.9.8 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Scheme tab-completion and word-completion for Emacs EAPI=7 HOMEPAGE=http://synthcode.com/ @@ -9,5 +9,5 @@ LICENSE=public-domain RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=http://synthcode.com/emacs/scheme-complete-0.9.8.el.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=691b40f044a1d8813808672c7efb1cda diff --git a/metadata/md5-cache/app-emacs/scheme-complete-0.9.9 b/metadata/md5-cache/app-emacs/scheme-complete-0.9.9 index fe0956b24f08..983ef76778de 100644 --- a/metadata/md5-cache/app-emacs/scheme-complete-0.9.9 +++ b/metadata/md5-cache/app-emacs/scheme-complete-0.9.9 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Scheme tab-completion and word-completion for Emacs EAPI=8 HOMEPAGE=http://synthcode.com/ @@ -9,5 +9,5 @@ LICENSE=public-domain RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=http://synthcode.com/emacs/scheme-complete-0.9.9.el.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=c491189402a0559461df5fc4b7345862 diff --git a/metadata/md5-cache/app-emacs/scim-bridge-el-0.8.2-r1 b/metadata/md5-cache/app-emacs/scim-bridge-el-0.8.2-r1 index 8f9608ca8068..1100bb187550 100644 --- a/metadata/md5-cache/app-emacs/scim-bridge-el-0.8.2-r1 +++ b/metadata/md5-cache/app-emacs/scim-bridge-el-0.8.2-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=a SCIM-Bridge client for Emacs EAPI=7 HOMEPAGE=https://launchpad.net/scim-bridge.el @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=app-i18n/scim >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://launchpad.net/scim-bridge.el/0.8/0.8.2/+download/scim-bridge-el-0.8.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=ec7289150fac0fb342c2ac2a2265461d diff --git a/metadata/md5-cache/app-emacs/scss-mode-0.5.0_p20180123-r1 b/metadata/md5-cache/app-emacs/scss-mode-0.5.0_p20180123-r1 index 3b5ebfd11fd8..7c680b50bd69 100644 --- a/metadata/md5-cache/app-emacs/scss-mode-0.5.0_p20180123-r1 +++ b/metadata/md5-cache/app-emacs/scss-mode-0.5.0_p20180123-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Major mode for editing SCSS files in Emacs EAPI=7 HOMEPAGE=https://github.com/antonj/scss-mode @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=dev-ruby/sass >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/antonj/scss-mode/archive/cf58dbec5394280503eb5502938f3b5445d1b53d.tar.gz -> scss-mode-0.5.0_p20180123.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=f21b6da45eb524b1fa5e5a33f95afd56 diff --git a/metadata/md5-cache/app-emacs/semi-1.14.7_p20190517 b/metadata/md5-cache/app-emacs/semi-1.14.7_p20190517 index f9eb0c66a7ec..5c8037d91506 100644 --- a/metadata/md5-cache/app-emacs/semi-1.14.7_p20190517 +++ b/metadata/md5-cache/app-emacs/semi-1.14.7_p20190517 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=>=app-emacs/apel-10.8 >=app-emacs/flim-1.14.9 DESCRIPTION=A library to provide MIME feature for GNU Emacs EAPI=7 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-emacs/apel-10.8 >=app-emacs/flim-1.14.9 >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/wanderlust/semi/archive/4cf114c95fb49ad75eb6916f678b45b04bad8122.tar.gz -> semi-1.14.7_p20190517.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=36cd2a8cd177d9cf2564e413b9f252f4 diff --git a/metadata/md5-cache/app-emacs/semi-1.14.7_p20210613 b/metadata/md5-cache/app-emacs/semi-1.14.7_p20210613 index 0c137bd34a49..ab216d4d382e 100644 --- a/metadata/md5-cache/app-emacs/semi-1.14.7_p20210613 +++ b/metadata/md5-cache/app-emacs/semi-1.14.7_p20210613 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=>=app-emacs/apel-10.8 >=app-emacs/flim-1.14.9 DESCRIPTION=A library to provide MIME feature for GNU Emacs EAPI=8 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-emacs/apel-10.8 >=app-emacs/flim-1.14.9 >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/wanderlust/semi/archive/509f6f0bc2f5d020c63e47d9ad89410dc20bcb6f.tar.gz -> semi-1.14.7_p20210613.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=db6e9c1df09f68e7049373ca30ef38b8 diff --git a/metadata/md5-cache/app-emacs/servant-0.3.0 b/metadata/md5-cache/app-emacs/servant-0.3.0 index b5571fcfd678..fc79cab8d02c 100644 --- a/metadata/md5-cache/app-emacs/servant-0.3.0 +++ b/metadata/md5-cache/app-emacs/servant-0.3.0 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/ansi app-emacs/commander app-emacs/dash app-emacs/epl app-emacs/f app-emacs/s app-emacs/shut-up app-emacs/web-server >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=ELPA server written in Emacs Lisp EAPI=8 HOMEPAGE=https://github.com/cask/servant/ @@ -10,5 +10,5 @@ RDEPEND=app-emacs/ansi app-emacs/commander app-emacs/dash app-emacs/epl app-emac RESTRICT=test SLOT=0 SRC_URI=https://github.com/cask/servant/archive/v0.3.0.tar.gz -> servant-0.3.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=41b67b8261a0c3dbb8ecc3683876dbf7 diff --git a/metadata/md5-cache/app-emacs/sesman-0.3.4 b/metadata/md5-cache/app-emacs/sesman-0.3.4 index 688d0042f41f..cdfdb99a55fd 100644 --- a/metadata/md5-cache/app-emacs/sesman-0.3.4 +++ b/metadata/md5-cache/app-emacs/sesman-0.3.4 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/vspinu/sesman/archive/v0.3.4.tar.gz -> sesman-0.3.4.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=ac085c60c01e65b2ba31f21141c57672 diff --git a/metadata/md5-cache/app-emacs/session-2.4b b/metadata/md5-cache/app-emacs/session-2.4b index 851fe5c3204b..19ee8b23f059 100644 --- a/metadata/md5-cache/app-emacs/session-2.4b +++ b/metadata/md5-cache/app-emacs/session-2.4b @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=When you start Emacs, Session restores various variables from your last session EAPI=7 HOMEPAGE=http://emacs-session.sourceforge.net/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://sourceforge/emacs-session/session-2.4b.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=ecc272b50db98a62134bc1c44d6d8b5e diff --git a/metadata/md5-cache/app-emacs/setnu-1.06 b/metadata/md5-cache/app-emacs/setnu-1.06 index 788a9107d559..9045956d8b71 100644 --- a/metadata/md5-cache/app-emacs/setnu-1.06 +++ b/metadata/md5-cache/app-emacs/setnu-1.06 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Display line numbers in Emacs buffers EAPI=7 HOMEPAGE=http://www.wonderworks.com/ https://www.emacswiki.org/emacs/LineNumbers @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gentoo/setnu-1.06.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=f855398be985c9e27b678668fc242604 diff --git a/metadata/md5-cache/app-emacs/setup-1.2.0 b/metadata/md5-cache/app-emacs/setup-1.2.0 index e9018d5d4bea..6bbf0718d697 100644 --- a/metadata/md5-cache/app-emacs/setup-1.2.0 +++ b/metadata/md5-cache/app-emacs/setup-1.2.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-26:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Macro to simplify repetitive configuration patterns EAPI=8 HOMEPAGE=https://git.sr.ht/~pkal/setup @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-26:* SLOT=0 SRC_URI=https://git.sr.ht/~pkal/setup/archive/4fc13e309ec1585a7e5033c394fa25a3078e39c5.tar.gz -> setup-1.2.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=020190de5f0b327197182290e9be9299 diff --git a/metadata/md5-cache/app-emacs/setup-1.3.0 b/metadata/md5-cache/app-emacs/setup-1.3.0 index fbd55da0e26e..4a0daeecbdb5 100644 --- a/metadata/md5-cache/app-emacs/setup-1.3.0 +++ b/metadata/md5-cache/app-emacs/setup-1.3.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-26:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Macro to simplify repetitive configuration patterns EAPI=8 HOMEPAGE=https://git.sr.ht/~pkal/setup @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-26:* SLOT=0 SRC_URI=https://git.sr.ht/~pkal/setup/archive/eece09d1151fd641f31d738b8c62742918993e95.tar.gz -> setup-1.3.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=6a537b8e55ee2b9b7398723d327ec257 diff --git a/metadata/md5-cache/app-emacs/setup-1.3.2 b/metadata/md5-cache/app-emacs/setup-1.3.2 index 0972bcdda0fa..d6e3162bc5ab 100644 --- a/metadata/md5-cache/app-emacs/setup-1.3.2 +++ b/metadata/md5-cache/app-emacs/setup-1.3.2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-26.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Macro to simplify repetitive configuration patterns EAPI=8 HOMEPAGE=https://git.sr.ht/~pkal/setup @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-26.1:* SLOT=0 SRC_URI=https://git.sr.ht/~pkal/setup/archive/28926bd11eef6118f4e169d10c1c36b8c4e545ae.tar.gz -> setup-1.3.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=e01c25cf87b5a0b26fb15f2f9e6198a0 diff --git a/metadata/md5-cache/app-emacs/shell-split-string-0.1 b/metadata/md5-cache/app-emacs/shell-split-string-0.1 index ad57a0dfcb84..9468af5d0342 100644 --- a/metadata/md5-cache/app-emacs/shell-split-string-0.1 +++ b/metadata/md5-cache/app-emacs/shell-split-string-0.1 @@ -9,5 +9,5 @@ LICENSE=Unlicense RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/10sr/shell-split-string-el/archive/v0.1.tar.gz -> shell-split-string-0.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=198b3b95852fa9a5022661c6d75977d2 diff --git a/metadata/md5-cache/app-emacs/shrink-path-0.3.1 b/metadata/md5-cache/app-emacs/shrink-path-0.3.1 index 8e2161bc40b7..1af99b4ef682 100644 --- a/metadata/md5-cache/app-emacs/shrink-path-0.3.1 +++ b/metadata/md5-cache/app-emacs/shrink-path-0.3.1 @@ -11,5 +11,5 @@ RDEPEND=app-emacs/s app-emacs/dash app-emacs/f >=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://gitlab.com/bennya/shrink-path.el/-/archive/v0.3.1/shrink-path.el-v0.3.1.tar.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=96c15b96c5b818318007718414870860 diff --git a/metadata/md5-cache/app-emacs/shut-up-0.3.3 b/metadata/md5-cache/app-emacs/shut-up-0.3.3 index f991a3ca2a82..33e9dbbcfa75 100644 --- a/metadata/md5-cache/app-emacs/shut-up-0.3.3 +++ b/metadata/md5-cache/app-emacs/shut-up-0.3.3 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/cask/shut-up/archive/v0.3.3.tar.gz -> shut-up-0.3.3.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=571c632399bb3e57ce6adfc180f2f980 diff --git a/metadata/md5-cache/app-emacs/slime-2.27 b/metadata/md5-cache/app-emacs/slime-2.27 index b28a560977ec..73a515a162cf 100644 --- a/metadata/md5-cache/app-emacs/slime-2.27 +++ b/metadata/md5-cache/app-emacs/slime-2.27 @@ -1,5 +1,5 @@ BDEPEND=>=sys-apps/texinfo-5.1 doc? ( virtual/texi2dvi ) >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=virtual/commonlisp dev-lisp/asdf DESCRIPTION=SLIME, the Superior Lisp Interaction Mode (Extended) EAPI=8 @@ -12,5 +12,5 @@ RDEPEND=virtual/commonlisp dev-lisp/asdf >=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/slime/slime/archive/v2.27.tar.gz -> slime-2.27.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=28dffc4209654ed257040f9a1fe1e86a diff --git a/metadata/md5-cache/app-emacs/slime-2.28 b/metadata/md5-cache/app-emacs/slime-2.28 index c1ad76fe1d0c..58c5ba371c83 100644 --- a/metadata/md5-cache/app-emacs/slime-2.28 +++ b/metadata/md5-cache/app-emacs/slime-2.28 @@ -1,5 +1,5 @@ BDEPEND=>=sys-apps/texinfo-5.1 doc? ( virtual/texi2dvi ) >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=virtual/commonlisp dev-lisp/asdf DESCRIPTION=SLIME, the Superior Lisp Interaction Mode (Extended) EAPI=8 @@ -12,5 +12,5 @@ RDEPEND=virtual/commonlisp dev-lisp/asdf >=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/slime/slime/archive/v2.28.tar.gz -> slime-2.28.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=84279aeaedc6000881238d4806ca12d0 diff --git a/metadata/md5-cache/app-emacs/sly-1.0.43 b/metadata/md5-cache/app-emacs/sly-1.0.43 index 6ebfb7b0e953..0bfcda2cca71 100644 --- a/metadata/md5-cache/app-emacs/sly-1.0.43 +++ b/metadata/md5-cache/app-emacs/sly-1.0.43 @@ -11,5 +11,5 @@ LICENSE=public-domain GPL-2+ GPL-3+ LLGPL-2.1 ZLIB xref? ( xref.lisp ) RDEPEND=dev-lisp/asdf dev-lisp/sbcl >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/joaotavora/sly/archive/1.0.43.tar.gz -> sly-1.0.43.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=b61e87bdc835825131078807de4d6549 diff --git a/metadata/md5-cache/app-emacs/sml-mode-6.10 b/metadata/md5-cache/app-emacs/sml-mode-6.10 index e0940429fca1..036fd2fe2efc 100644 --- a/metadata/md5-cache/app-emacs/sml-mode-6.10 +++ b/metadata/md5-cache/app-emacs/sml-mode-6.10 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs major mode for editing Standard ML EAPI=8 HOMEPAGE=https://elpa.gnu.org/packages/sml-mode.html http://www.iro.umontreal.ca/~monnier/elisp/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/sml-mode-6.10.el.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=7960e86559437ffebd1846d0fcae8621 diff --git a/metadata/md5-cache/app-emacs/sml-mode-6.11 b/metadata/md5-cache/app-emacs/sml-mode-6.11 index 2792b1285fdb..81e690e1b6d0 100644 --- a/metadata/md5-cache/app-emacs/sml-mode-6.11 +++ b/metadata/md5-cache/app-emacs/sml-mode-6.11 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs major mode for editing Standard ML EAPI=8 HOMEPAGE=http://www.iro.umontreal.ca/~monnier/elisp/ https://elpa.gnu.org/packages/sml-mode.html @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~xgqt/distfiles/repackaged/sml-mode-6.11.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=9086e1884b088a9bd121306d19548373 diff --git a/metadata/md5-cache/app-emacs/sml-mode-6.12 b/metadata/md5-cache/app-emacs/sml-mode-6.12 index 3296dafc0f4a..af017d14dacf 100644 --- a/metadata/md5-cache/app-emacs/sml-mode-6.12 +++ b/metadata/md5-cache/app-emacs/sml-mode-6.12 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs major mode for editing Standard ML EAPI=8 HOMEPAGE=http://www.iro.umontreal.ca/~monnier/elisp/ https://elpa.gnu.org/packages/sml-mode.html @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~xgqt/distfiles/repackaged/sml-mode-6.12.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=2605edb86fe182b1ccdc82f7bf92c5e3 diff --git a/metadata/md5-cache/app-emacs/sokoban-1.4.8 b/metadata/md5-cache/app-emacs/sokoban-1.4.8 index b5ab358ccbb3..6f4d39a941a8 100644 --- a/metadata/md5-cache/app-emacs/sokoban-1.4.8 +++ b/metadata/md5-cache/app-emacs/sokoban-1.4.8 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Implementation of Sokoban for Emacs EAPI=7 HOMEPAGE=https://elpa.gnu.org/packages/sokoban.html @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://elpa.gnu.org/packages/sokoban-1.4.8.tar -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=22eea890fdfa7f597bc1762942844d34 diff --git a/metadata/md5-cache/app-emacs/sokoban-1.4.9 b/metadata/md5-cache/app-emacs/sokoban-1.4.9 index 6b6bf37d9eed..cff6e9bef7c6 100644 --- a/metadata/md5-cache/app-emacs/sokoban-1.4.9 +++ b/metadata/md5-cache/app-emacs/sokoban-1.4.9 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Implementation of Sokoban for Emacs EAPI=8 HOMEPAGE=https://elpa.gnu.org/packages/sokoban.html @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://elpa.gnu.org/packages/sokoban-1.4.9.tar -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=b97c1abd51e717fb145f48af4c894950 diff --git a/metadata/md5-cache/app-emacs/spacemacs-theme-0.2 b/metadata/md5-cache/app-emacs/spacemacs-theme-0.2 index b7c943ef4a93..7eeef86862e9 100644 --- a/metadata/md5-cache/app-emacs/spacemacs-theme-0.2 +++ b/metadata/md5-cache/app-emacs/spacemacs-theme-0.2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs color theme that started as a theme for Spacemacs EAPI=8 HOMEPAGE=https://github.com/nashamri/spacemacs-theme/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/nashamri/spacemacs-theme/archive/0.2.tar.gz -> spacemacs-theme-0.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=d39eafb90d3962c116c81fa6134cf9f6 diff --git a/metadata/md5-cache/app-emacs/spacemacs-theme-0.3 b/metadata/md5-cache/app-emacs/spacemacs-theme-0.3 index 3b2b95279ce7..b85ce20b4501 100644 --- a/metadata/md5-cache/app-emacs/spacemacs-theme-0.3 +++ b/metadata/md5-cache/app-emacs/spacemacs-theme-0.3 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs color theme that started as a theme for Spacemacs EAPI=8 HOMEPAGE=https://github.com/nashamri/spacemacs-theme/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/nashamri/spacemacs-theme/archive/0.3.tar.gz -> spacemacs-theme-0.3.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=87c81f877765d24a64e78be36cbe243d diff --git a/metadata/md5-cache/app-emacs/spinner-1.7.4 b/metadata/md5-cache/app-emacs/spinner-1.7.4 index 2c67099504a3..1096b1c866a1 100644 --- a/metadata/md5-cache/app-emacs/spinner-1.7.4 +++ b/metadata/md5-cache/app-emacs/spinner-1.7.4 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs mode-line spinner for operations in progress EAPI=8 HOMEPAGE=https://github.com/Malabarba/spinner.el @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/Malabarba/spinner.el/archive/1.7.4.tar.gz -> spinner-1.7.4.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=bf718fafa33524d3cb8d8fd9ef812715 diff --git a/metadata/md5-cache/app-emacs/ssh-20120709 b/metadata/md5-cache/app-emacs/ssh-20120709 index 6b8623a6d118..1530d1b3007a 100644 --- a/metadata/md5-cache/app-emacs/ssh-20120709 +++ b/metadata/md5-cache/app-emacs/ssh-20120709 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Support for SSH sessions in Emacs shell buffers EAPI=7 HOMEPAGE=http://www.splode.com/~friedman/software/emacs-lisp/index.html#ssh @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/ssh-20120709.el.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=b2f045a285858cebfeff26c45f702d5e diff --git a/metadata/md5-cache/app-emacs/string-inflection-1.0.16 b/metadata/md5-cache/app-emacs/string-inflection-1.0.16 index 7873d01ecb7f..585c64804103 100644 --- a/metadata/md5-cache/app-emacs/string-inflection-1.0.16 +++ b/metadata/md5-cache/app-emacs/string-inflection-1.0.16 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/akicho8/string-inflection/archive/v1.0.16.tar.gz -> string-inflection-1.0.16.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=cbb6985a54fd99983b2be2d2b1a623ae diff --git a/metadata/md5-cache/app-emacs/stripes-0.2-r2 b/metadata/md5-cache/app-emacs/stripes-0.2-r2 index 2c4493b6ddc5..840a03049266 100644 --- a/metadata/md5-cache/app-emacs/stripes-0.2-r2 +++ b/metadata/md5-cache/app-emacs/stripes-0.2-r2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=An Emacs mode that alternates the background color of lines EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/StripesMode @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gentoo/stripes-0.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=55fa2593b7c9292e9044890eb9ff3a4a diff --git a/metadata/md5-cache/app-emacs/stripes-0.3.1.1 b/metadata/md5-cache/app-emacs/stripes-0.3.1.1 index 2b604e918ef5..41efac81e607 100644 --- a/metadata/md5-cache/app-emacs/stripes-0.3.1.1 +++ b/metadata/md5-cache/app-emacs/stripes-0.3.1.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=An Emacs mode that alternates the background color of lines EAPI=8 HOMEPAGE=https://www.emacswiki.org/emacs/StripesMode https://gitlab.com/stepnem/stripes-el/ @@ -9,5 +9,5 @@ LICENSE=public-domain RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://gitlab.com/stepnem/stripes-el/-/archive/0.3.1.1/stripes-el-0.3.1.1.tar.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=7f9efb06ab0346c5b6558bf3b6ca1e14 diff --git a/metadata/md5-cache/app-emacs/sumibi-0.7.4 b/metadata/md5-cache/app-emacs/sumibi-0.7.4 index 0936b4f8ee7c..f0a78fc33d43 100644 --- a/metadata/md5-cache/app-emacs/sumibi-0.7.4 +++ b/metadata/md5-cache/app-emacs/sumibi-0.7.4 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Statistical Japanese input method using the Internet as a large corpus EAPI=7 HOMEPAGE=http://sumibi.org/sumibi/sumibi.html @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://sourceforge.jp/sumibi/26504/sumibi-0.7.4.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=c03ed682ab3cf377d43ebdaf661d4b0d diff --git a/metadata/md5-cache/app-emacs/sunrise-commander-6_p20210927 b/metadata/md5-cache/app-emacs/sunrise-commander-6_p20210927 index 49eec44f26e0..3b76d728e9a8 100644 --- a/metadata/md5-cache/app-emacs/sunrise-commander-6_p20210927 +++ b/metadata/md5-cache/app-emacs/sunrise-commander-6_p20210927 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Twin-pane file manager for Emacs inspired by Midnight Commander EAPI=8 HOMEPAGE=https://www.emacswiki.org/emacs/Sunrise_Commander/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/sunrise-commander/sunrise-commander/archive/16e6df7e86c7a383fb4400fae94af32baf9cb24e.tar.gz -> sunrise-commander-6_p20210927.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=f281e9db30404ba0ef373870c6c7d8d3 diff --git a/metadata/md5-cache/app-emacs/swift-mode-8.6.0 b/metadata/md5-cache/app-emacs/swift-mode-8.6.0 index 763533153090..0eb59937ac24 100644 --- a/metadata/md5-cache/app-emacs/swift-mode-8.6.0 +++ b/metadata/md5-cache/app-emacs/swift-mode-8.6.0 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/swift-emacs/swift-mode/archive/v8.6.0.tar.gz -> swift-mode-8.6.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=ca3b41f3b27302399b2ece39d8a2e60f diff --git a/metadata/md5-cache/app-emacs/swiper-0.13.4 b/metadata/md5-cache/app-emacs/swiper-0.13.4 index 64c6a79ee335..9faa5fa8d3e1 100644 --- a/metadata/md5-cache/app-emacs/swiper-0.13.4 +++ b/metadata/md5-cache/app-emacs/swiper-0.13.4 @@ -1,5 +1,5 @@ BDEPEND=>=app-emacs/ivy-0.13.4 >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Alternative to isearch that uses ivy to show overview of all matches EAPI=8 HOMEPAGE=https://github.com/abo-abo/swiper/ @@ -10,5 +10,5 @@ RDEPEND=>=app-emacs/ivy-0.13.4 >=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/abo-abo/swiper/archive/0.13.4.tar.gz -> swiper-0.13.4.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=1d23d108a19a336cbf22fea5c63612f5 diff --git a/metadata/md5-cache/app-emacs/swiper-0.14.0 b/metadata/md5-cache/app-emacs/swiper-0.14.0 index 15888523c39d..40df8ab19b79 100644 --- a/metadata/md5-cache/app-emacs/swiper-0.14.0 +++ b/metadata/md5-cache/app-emacs/swiper-0.14.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-emacs/ivy-0.14.0 >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Alternative to isearch that uses ivy to show overview of all matches EAPI=8 HOMEPAGE=https://github.com/abo-abo/swiper/ @@ -10,5 +10,5 @@ RDEPEND=>=app-emacs/ivy-0.14.0 >=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/abo-abo/swiper/archive/0.14.0.tar.gz -> swiper-0.14.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=1fed26c039a9898d05f765939c509217 diff --git a/metadata/md5-cache/app-emacs/switch-window-1.6.2_p20210808 b/metadata/md5-cache/app-emacs/switch-window-1.6.2_p20210808 index efb55c72b142..f9bf7373af92 100644 --- a/metadata/md5-cache/app-emacs/switch-window-1.6.2_p20210808 +++ b/metadata/md5-cache/app-emacs/switch-window-1.6.2_p20210808 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Offer a customizable visual way to choose a window to switch to EAPI=8 HOMEPAGE=https://github.com/dimitri/switch-window/ @@ -9,5 +9,5 @@ LICENSE=WTFPL-2 RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/dimitri/switch-window/archive/8d9fe251d8d38b223d643df975876356ddfc1b98.tar.gz -> switch-window-1.6.2_p20210808.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=ff43062447dd6a35c1c64a9c62154e27 diff --git a/metadata/md5-cache/app-emacs/system-packages-1.1.0 b/metadata/md5-cache/app-emacs/system-packages-1.1.0 index 75c97f099117..2fcdc621da80 100644 --- a/metadata/md5-cache/app-emacs/system-packages-1.1.0 +++ b/metadata/md5-cache/app-emacs/system-packages-1.1.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Manage your installed packages with Emacs EAPI=8 HOMEPAGE=https://gitlab.com/jabranham/system-packages/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://gitlab.com/jabranham/system-packages/-/archive/1.1.0/system-packages-1.1.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=b8f4aede260d35705af5ac3506f10f95 diff --git a/metadata/md5-cache/app-emacs/systemd-mode-1.6 b/metadata/md5-cache/app-emacs/systemd-mode-1.6 index 53acab0223df..2806b769c516 100644 --- a/metadata/md5-cache/app-emacs/systemd-mode-1.6 +++ b/metadata/md5-cache/app-emacs/systemd-mode-1.6 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Major mode for editing systemd units in GNU Emacs EAPI=8 HOMEPAGE=https://github.com/holomorph/systemd-mode/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/holomorph/systemd-mode/archive/v1.6.tar.gz -> systemd-mode-1.6.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=f3d6810ac470ce3390876af79438f3d3 diff --git a/metadata/md5-cache/app-emacs/tablist-1.0 b/metadata/md5-cache/app-emacs/tablist-1.0 index db3053043629..797c4acdcd18 100644 --- a/metadata/md5-cache/app-emacs/tablist-1.0 +++ b/metadata/md5-cache/app-emacs/tablist-1.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Extended tabulated-list mode fro Emacs EAPI=8 HOMEPAGE=https://github.com/politza/tablist/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/politza/tablist/archive/v1.0.tar.gz -> tablist-1.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=bcf0f9f7a97947af6897cf4843d7d987 diff --git a/metadata/md5-cache/app-emacs/teco-7-r2 b/metadata/md5-cache/app-emacs/teco-7-r2 index 43908e53ce46..84ec40a48164 100644 --- a/metadata/md5-cache/app-emacs/teco-7-r2 +++ b/metadata/md5-cache/app-emacs/teco-7-r2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=TECO interpreter for GNU Emacs EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/TECO @@ -9,5 +9,5 @@ LICENSE=public-domain RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gentoo/teco-7.el.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=86a0a97d8ca852f51babb3586641b6d0 diff --git a/metadata/md5-cache/app-emacs/tempel-0.6 b/metadata/md5-cache/app-emacs/tempel-0.6 index b30223cc346f..40fdb3715e05 100644 --- a/metadata/md5-cache/app-emacs/tempel-0.6 +++ b/metadata/md5-cache/app-emacs/tempel-0.6 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-27.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Templates with in-buffer field editing for GNU Emacs EAPI=8 HOMEPAGE=https://github.com/minad/tempel/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-27.1:* SLOT=0 SRC_URI=https://github.com/minad/tempel/archive/0.6.tar.gz -> tempel-0.6.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=24a5bbcb060508b2a7973cedf526c3bc diff --git a/metadata/md5-cache/app-emacs/tempel-0.7 b/metadata/md5-cache/app-emacs/tempel-0.7 index 467c7f297bf4..da47d19a62e9 100644 --- a/metadata/md5-cache/app-emacs/tempel-0.7 +++ b/metadata/md5-cache/app-emacs/tempel-0.7 @@ -1,5 +1,5 @@ BDEPEND=>=app-emacs/compat-29.1.3.4 >=app-editors/emacs-27.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Templates with in-buffer field editing for GNU Emacs EAPI=8 HOMEPAGE=https://github.com/minad/tempel/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-emacs/compat-29.1.3.4 >=app-editors/emacs-27.1:* SLOT=0 SRC_URI=https://github.com/minad/tempel/archive/0.7.tar.gz -> tempel-0.7.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=ef301d5ef5e1fa6bf086a9cd09227e84 diff --git a/metadata/md5-cache/app-emacs/template-3.3b b/metadata/md5-cache/app-emacs/template-3.3b index 8501ab3be6b8..120cb4a8ca8e 100644 --- a/metadata/md5-cache/app-emacs/template-3.3b +++ b/metadata/md5-cache/app-emacs/template-3.3b @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Use templates, decorate comments, auto-update buffers EAPI=7 HOMEPAGE=http://emacs-template.sourceforge.net/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ Texinfo-manual RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://sourceforge/emacs-template/template-3.3b.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=23d681966816d0b3bdde17eb4956326a diff --git a/metadata/md5-cache/app-emacs/tempo-snippets-0.1.5 b/metadata/md5-cache/app-emacs/tempo-snippets-0.1.5 index b8d3f7aa7cf3..d776a8f35eae 100644 --- a/metadata/md5-cache/app-emacs/tempo-snippets-0.1.5 +++ b/metadata/md5-cache/app-emacs/tempo-snippets-0.1.5 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Visual insertion of tempo templates EAPI=7 HOMEPAGE=https://nschum.de/src/emacs/tempo-snippets/ https://www.emacswiki.org/emacs/TempoSnippets @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/tempo-snippets-0.1.5.el.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=52e360f6f6f36839a686d1149cc3a307 diff --git a/metadata/md5-cache/app-emacs/thinks-1.12 b/metadata/md5-cache/app-emacs/thinks-1.12 index 69f3dc6c527a..7ad2f776cb06 100644 --- a/metadata/md5-cache/app-emacs/thinks-1.12 +++ b/metadata/md5-cache/app-emacs/thinks-1.12 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Insert text in a think bubble EAPI=7 HOMEPAGE=http://www.davep.org/emacs/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/davep/thinks.el/archive/v1.12.tar.gz -> thinks-1.12.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=d2d4b38eafb7f7423dbbcbc4f98bde9a diff --git a/metadata/md5-cache/app-emacs/transient-0.3.6 b/metadata/md5-cache/app-emacs/transient-0.3.6 index f878175dfac5..0277cbd4be94 100644 --- a/metadata/md5-cache/app-emacs/transient-0.3.6 +++ b/metadata/md5-cache/app-emacs/transient-0.3.6 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=sys-apps/texinfo DESCRIPTION=Transient commands abstraction for GNU Emacs EAPI=7 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/magit/transient/archive/v0.3.6.tar.gz -> transient-0.3.6.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=391f9a21bb206f24b3c4c160d6e12986 diff --git a/metadata/md5-cache/app-emacs/transient-0.3.7 b/metadata/md5-cache/app-emacs/transient-0.3.7 index 081b85734976..f67012c04905 100644 --- a/metadata/md5-cache/app-emacs/transient-0.3.7 +++ b/metadata/md5-cache/app-emacs/transient-0.3.7 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=sys-apps/texinfo DESCRIPTION=Transient commands abstraction for GNU Emacs EAPI=8 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/magit/transient/archive/v0.3.7.tar.gz -> transient-0.3.7.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=740f0f569156077ee1bac5e87d7a8ee7 diff --git a/metadata/md5-cache/app-emacs/transient-0.3.7_p20220918-r1 b/metadata/md5-cache/app-emacs/transient-0.3.7_p20220918-r1 index e44617e03d5d..d79fc96e2878 100644 --- a/metadata/md5-cache/app-emacs/transient-0.3.7_p20220918-r1 +++ b/metadata/md5-cache/app-emacs/transient-0.3.7_p20220918-r1 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/compat sys-apps/texinfo >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Transient commands abstraction for GNU Emacs EAPI=8 HOMEPAGE=https://magit.vc/manual/transient https://github.com/magit/transient @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/compat >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/magit/transient/archive/097f5be6e0c228790a6e78ffee5f0c599cb58b20.tar.gz -> transient-0.3.7_p20220918.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=82b9c57c55eccf3532adf311fa7ef991 diff --git a/metadata/md5-cache/app-emacs/treemacs-2.10-r2 b/metadata/md5-cache/app-emacs/treemacs-2.10-r2 index c131629691a9..dc13c0010768 100644 --- a/metadata/md5-cache/app-emacs/treemacs-2.10-r2 +++ b/metadata/md5-cache/app-emacs/treemacs-2.10-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Alexander-Miller/treemacs/archive/2.10.tar.gz -> treemacs-2.10.tar.gz -_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=73e28725e06399dc4019812565c74f21 diff --git a/metadata/md5-cache/app-emacs/treemacs-3.0-r1 b/metadata/md5-cache/app-emacs/treemacs-3.0-r1 index da481623c79a..4503ff35a836 100644 --- a/metadata/md5-cache/app-emacs/treemacs-3.0-r1 +++ b/metadata/md5-cache/app-emacs/treemacs-3.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Alexander-Miller/treemacs/archive/3.0.tar.gz -> treemacs-3.0.tar.gz -_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=dcea36c23e19fa842fe11f5a426e5f78 diff --git a/metadata/md5-cache/app-emacs/treemacs-3.1 b/metadata/md5-cache/app-emacs/treemacs-3.1 index 0ce0ac5a8d52..133d0e54912d 100644 --- a/metadata/md5-cache/app-emacs/treemacs-3.1 +++ b/metadata/md5-cache/app-emacs/treemacs-3.1 @@ -1,16 +1,16 @@ -BDEPEND=app-emacs/ace-window app-emacs/cfrs app-emacs/dash app-emacs/ht app-emacs/hydra app-emacs/pfuture app-emacs/s test? ( app-emacs/buttercup ) >=app-editors/emacs-26.1:* python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +BDEPEND=app-emacs/ace-window app-emacs/cfrs app-emacs/dash app-emacs/ht app-emacs/hydra app-emacs/pfuture app-emacs/s test? ( app-emacs/buttercup ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=app-editors/emacs-26.1:* DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Tree style project file explorer EAPI=8 HOMEPAGE=https://github.com/Alexander-Miller/treemacs/ -INHERIT=elisp distutils-r1 +INHERIT=distutils-r1 elisp IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 KEYWORDS=~amd64 LICENSE=GPL-3+ -RDEPEND=app-emacs/ace-window app-emacs/cfrs app-emacs/dash app-emacs/ht app-emacs/hydra app-emacs/pfuture app-emacs/s >=app-editors/emacs-26.1:* python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +RDEPEND=app-emacs/ace-window app-emacs/cfrs app-emacs/dash app-emacs/ht app-emacs/hydra app-emacs/pfuture app-emacs/s python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=app-editors/emacs-26.1:* REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Alexander-Miller/treemacs/archive/3.1.tar.gz -> treemacs-3.1.tar.gz -_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=73e28725e06399dc4019812565c74f21 +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=395e3c70e503a590776dfde339b352fd diff --git a/metadata/md5-cache/app-emacs/treemacs-all-the-icons-3.1 b/metadata/md5-cache/app-emacs/treemacs-all-the-icons-3.1 index 641777dc7a2a..3f492dfccd2b 100644 --- a/metadata/md5-cache/app-emacs/treemacs-all-the-icons-3.1 +++ b/metadata/md5-cache/app-emacs/treemacs-all-the-icons-3.1 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/all-the-icons app-emacs/treemacs >=app-editors/emacs-26.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=GNU Emacs all-the-icons integration for treemacs EAPI=8 HOMEPAGE=https://github.com/Alexander-Miller/treemacs/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/all-the-icons app-emacs/treemacs >=app-editors/emacs-26.1:* SLOT=0 SRC_URI=https://github.com/Alexander-Miller/treemacs/archive/3.1.tar.gz -> treemacs-3.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=3bcd23b1af1afe6a34b59c3a507c5656 diff --git a/metadata/md5-cache/app-emacs/treepy-0.1.1 b/metadata/md5-cache/app-emacs/treepy-0.1.1 index 33901530614a..ceaabae6e250 100644 --- a/metadata/md5-cache/app-emacs/treepy-0.1.1 +++ b/metadata/md5-cache/app-emacs/treepy-0.1.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Generic tree traversing tools for Emacs Lisp EAPI=7 HOMEPAGE=https://github.com/volrath/treepy.el @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/volrath/treepy.el/archive/0.1.1.tar.gz -> treepy-0.1.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=06fae7907548df1148eb6f9af47e1d43 diff --git a/metadata/md5-cache/app-emacs/treepy-0.1.1-r1 b/metadata/md5-cache/app-emacs/treepy-0.1.1-r1 index b6a5f96e3fd7..0c66c5f9724d 100644 --- a/metadata/md5-cache/app-emacs/treepy-0.1.1-r1 +++ b/metadata/md5-cache/app-emacs/treepy-0.1.1-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Generic tree traversing tools for Emacs Lisp EAPI=7 HOMEPAGE=https://github.com/volrath/treepy.el @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/volrath/treepy.el/archive/0.1.1.tar.gz -> treepy-0.1.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=8a21956229e3ec4e7d5e2e5df30661b7 diff --git a/metadata/md5-cache/app-emacs/treepy-0.1.2 b/metadata/md5-cache/app-emacs/treepy-0.1.2 index 47bf6675e57a..07b744ea73b7 100644 --- a/metadata/md5-cache/app-emacs/treepy-0.1.2 +++ b/metadata/md5-cache/app-emacs/treepy-0.1.2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Generic tree traversing tools for Emacs Lisp EAPI=7 HOMEPAGE=https://github.com/volrath/treepy.el @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/volrath/treepy.el/archive/0.1.2.tar.gz -> treepy-0.1.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=06fae7907548df1148eb6f9af47e1d43 diff --git a/metadata/md5-cache/app-emacs/treesit-auto-0.6.3 b/metadata/md5-cache/app-emacs/treesit-auto-0.6.3 index 238a6089385f..5c0512b326f1 100644 --- a/metadata/md5-cache/app-emacs/treesit-auto-0.6.3 +++ b/metadata/md5-cache/app-emacs/treesit-auto-0.6.3 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-29:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Automatic installation, usage, fallback for tree-sitter modes in Emacs 29 EAPI=8 HOMEPAGE=https://github.com/renzmann/treesit-auto @@ -8,5 +8,5 @@ LICENSE=GPL-3 RDEPEND=>=app-editors/emacs-29:* SLOT=0 SRC_URI=https://github.com/renzmann/treesit-auto/archive/refs/tags/v0.6.3.tar.gz -> treesit-auto-0.6.3.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=201820f36c9e61ad4777130ab2284866 diff --git a/metadata/md5-cache/app-emacs/tuareg-mode-2.2.0 b/metadata/md5-cache/app-emacs/tuareg-mode-2.2.0 index d527f2ee617f..7acd6833dadf 100644 --- a/metadata/md5-cache/app-emacs/tuareg-mode-2.2.0 +++ b/metadata/md5-cache/app-emacs/tuareg-mode-2.2.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=An Objective Caml/Camllight mode for Emacs EAPI=7 HOMEPAGE=http://forge.ocamlcore.org/projects/tuareg/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ GPL-3+ ISC RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/ocaml/tuareg/archive/2.2.0.tar.gz -> tuareg-mode-2.2.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=e76c62edb1664ab0ac7eb25f2ca4ad82 diff --git a/metadata/md5-cache/app-emacs/twittering-mode-3.0.0-r1 b/metadata/md5-cache/app-emacs/twittering-mode-3.0.0-r1 index 48b813663e0c..46ba11bdf38e 100644 --- a/metadata/md5-cache/app-emacs/twittering-mode-3.0.0-r1 +++ b/metadata/md5-cache/app-emacs/twittering-mode-3.0.0-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs major mode for Twitter EAPI=8 HOMEPAGE=http://twmode.sourceforge.net/ @@ -10,5 +10,5 @@ RDEPEND=app-crypt/gnupg >=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/twmode/twittering-mode-3.0.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=eaae45563f59779c1cf3c990bc69c214 diff --git a/metadata/md5-cache/app-emacs/twittering-mode-9999 b/metadata/md5-cache/app-emacs/twittering-mode-9999 index 4a8b315fcc66..2a7458823e43 100644 --- a/metadata/md5-cache/app-emacs/twittering-mode-9999 +++ b/metadata/md5-cache/app-emacs/twittering-mode-9999 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* >=dev-vcs/git-1.8.2.1[curl] -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs major mode for Twitter EAPI=8 HOMEPAGE=http://twmode.sourceforge.net/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=app-crypt/gnupg >=app-editors/emacs-25.3:* SLOT=0 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 git-r3 27e13c09a4c7e4c78ac812f74727e676 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 git-r3 27e13c09a4c7e4c78ac812f74727e676 _md5_=eaae45563f59779c1cf3c990bc69c214 diff --git a/metadata/md5-cache/app-emacs/typescript-mode-0.4 b/metadata/md5-cache/app-emacs/typescript-mode-0.4 index 9c5844da2a72..1bf04428a6a1 100644 --- a/metadata/md5-cache/app-emacs/typescript-mode-0.4 +++ b/metadata/md5-cache/app-emacs/typescript-mode-0.4 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/emacs-typescript/typescript.el/archive/v0.4.tar.gz -> typescript-mode-0.4.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 -_md5_=25bc0d4cf6ac63cd6cab9b924a3cb901 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 +_md5_=e981264eb25ce5b1f13be58bd87dc00d diff --git a/metadata/md5-cache/app-emacs/typing-1.1.4 b/metadata/md5-cache/app-emacs/typing-1.1.4 index d906eafefceb..27e83717e87d 100644 --- a/metadata/md5-cache/app-emacs/typing-1.1.4 +++ b/metadata/md5-cache/app-emacs/typing-1.1.4 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=The Typing of Emacs -- an Elisp parody of The Typing of the Dead for Dreamcast EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/TypingOfEmacs @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/typing-1.1.4.el.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=42a54d5ccf1e0c41e970f270e7cad928 diff --git a/metadata/md5-cache/app-emacs/uboat-1.2 b/metadata/md5-cache/app-emacs/uboat-1.2 index 04f40663c9b4..b4146dfc0df4 100644 --- a/metadata/md5-cache/app-emacs/uboat-1.2 +++ b/metadata/md5-cache/app-emacs/uboat-1.2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Generate u-boat-death messages, patterned after Iron Coffins EAPI=7 HOMEPAGE=http://www.splode.com/~friedman/software/emacs-lisp/ @@ -9,5 +9,5 @@ LICENSE=public-domain RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gentoo/uboat-1.2.tar.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=33cd4e097598d2913d4db0db81e33e02 diff --git a/metadata/md5-cache/app-emacs/undercover-0.8.1 b/metadata/md5-cache/app-emacs/undercover-0.8.1 index 5610690dac76..225a59aefdf7 100644 --- a/metadata/md5-cache/app-emacs/undercover-0.8.1 +++ b/metadata/md5-cache/app-emacs/undercover-0.8.1 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/dash app-emacs/shut-up >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Test coverage library for Emacs EAPI=8 HOMEPAGE=https://github.com/undercover-el/undercover.el/ @@ -10,5 +10,5 @@ RDEPEND=app-emacs/dash app-emacs/shut-up >=app-editors/emacs-25.3:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/undercover-el/undercover.el/archive/v0.8.1.tar.gz -> undercover-0.8.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=bef1e195529a1b70037759a287264b79 diff --git a/metadata/md5-cache/app-emacs/undo-tree-0.6.6 b/metadata/md5-cache/app-emacs/undo-tree-0.6.6 index 197789853306..ef52a61ecbb9 100644 --- a/metadata/md5-cache/app-emacs/undo-tree-0.6.6 +++ b/metadata/md5-cache/app-emacs/undo-tree-0.6.6 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Undo trees and visualization EAPI=7 HOMEPAGE=http://www.dr-qubit.org/undo-tree.html @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/undo-tree-0.6.6.el.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=8d04cfdd6dd373a959a1f7b4bed2c1cd diff --git a/metadata/md5-cache/app-emacs/undo-tree-0.8.1-r1 b/metadata/md5-cache/app-emacs/undo-tree-0.8.1-r1 index bf4083fe7a36..9bcdbe46b917 100644 --- a/metadata/md5-cache/app-emacs/undo-tree-0.8.1-r1 +++ b/metadata/md5-cache/app-emacs/undo-tree-0.8.1-r1 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/queue >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Undo trees and visualization EAPI=8 HOMEPAGE=http://www.dr-qubit.org/undo-tree.html @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/queue >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://gitlab.com/tsc25/undo-tree/-/archive/release/0.8.1/undo-tree-release-0.8.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=db91aa1a780cc0ced1a25d2043c9e105 diff --git a/metadata/md5-cache/app-emacs/undo-tree-0.8.2-r1 b/metadata/md5-cache/app-emacs/undo-tree-0.8.2-r1 index 34651cb0365c..a400687a9fca 100644 --- a/metadata/md5-cache/app-emacs/undo-tree-0.8.2-r1 +++ b/metadata/md5-cache/app-emacs/undo-tree-0.8.2-r1 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/queue >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Undo trees and visualization EAPI=8 HOMEPAGE=http://www.dr-qubit.org/undo-tree.html @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/queue >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~xgqt/distfiles/repackaged/undo-tree-0.8.2.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=4e59a439de24206dcaf0ee268c2af298 diff --git a/metadata/md5-cache/app-emacs/uptimes-3.7 b/metadata/md5-cache/app-emacs/uptimes-3.7 index 4762cd5ce18e..37ae53396293 100644 --- a/metadata/md5-cache/app-emacs/uptimes-3.7 +++ b/metadata/md5-cache/app-emacs/uptimes-3.7 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Track and display emacs session uptimes EAPI=7 HOMEPAGE=http://www.davep.org/emacs/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/davep/uptimes.el/archive/v3.7.tar.gz -> uptimes-3.7.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=204e9669ff84a30760a2cf1e179f7ca5 diff --git a/metadata/md5-cache/app-emacs/uptimes-3.8 b/metadata/md5-cache/app-emacs/uptimes-3.8 index 5f77fba4ad35..4a4adb2ef041 100644 --- a/metadata/md5-cache/app-emacs/uptimes-3.8 +++ b/metadata/md5-cache/app-emacs/uptimes-3.8 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Track and display emacs session uptimes EAPI=8 HOMEPAGE=http://www.davep.org/emacs/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/davep/uptimes.el/archive/v3.8.tar.gz -> uptimes-3.8.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=362ef9746f280ee4ccfd8ff0e8a58f73 diff --git a/metadata/md5-cache/app-emacs/use-package-2.4.4 b/metadata/md5-cache/app-emacs/use-package-2.4.4 index 1e0f212ee6f8..13accbac487b 100644 --- a/metadata/md5-cache/app-emacs/use-package-2.4.4 +++ b/metadata/md5-cache/app-emacs/use-package-2.4.4 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/bind-chord app-emacs/bind-key app-emacs/diminish app-emacs/system-packages >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/jwiegley/use-package/archive/2.4.4.tar.gz -> use-package-2.4.4.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=a3f83a151fb032159aeafc4686e68229 diff --git a/metadata/md5-cache/app-emacs/use-package-2.4.5 b/metadata/md5-cache/app-emacs/use-package-2.4.5 index 37b8756af6fc..80a6b6043000 100644 --- a/metadata/md5-cache/app-emacs/use-package-2.4.5 +++ b/metadata/md5-cache/app-emacs/use-package-2.4.5 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/bind-chord app-emacs/bind-key app-emacs/diminish app-emacs/system-packages >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Declaration macro for simplifying your Emacs configuration EAPI=8 HOMEPAGE=https://github.com/jwiegley/use-package/ https://elpa.gnu.org/packages/use-package.html @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/bind-chord app-emacs/bind-key app-emacs/diminish app-emacs/system-packages >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~xgqt/distfiles/repackaged/use-package-2.4.5.tar.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=764f846b684269e2dd0941d2d1f59f86 diff --git a/metadata/md5-cache/app-emacs/uxntal-mode-0.2 b/metadata/md5-cache/app-emacs/uxntal-mode-0.2 index c536ea3e220c..2b1fac4e356f 100644 --- a/metadata/md5-cache/app-emacs/uxntal-mode-0.2 +++ b/metadata/md5-cache/app-emacs/uxntal-mode-0.2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-27.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=GNU Emacs major mode for the uxntal assembly language EAPI=8 HOMEPAGE=https://github.com/non/uxntal-mode/ @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=>=app-editors/emacs-27.1:* SLOT=0 SRC_URI=https://github.com/non/uxntal-mode/archive/v0.2.tar.gz -> uxntal-mode-0.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=6fb2d6f4f537d7cad3b2310beb2fe868 diff --git a/metadata/md5-cache/app-emacs/vertico-1.1 b/metadata/md5-cache/app-emacs/vertico-1.1 index 0503e51a52ac..b9e82ff93428 100644 --- a/metadata/md5-cache/app-emacs/vertico-1.1 +++ b/metadata/md5-cache/app-emacs/vertico-1.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-emacs/compat-29.1.3.4 >=app-editors/emacs-27.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Vertical interactive completion EAPI=8 HOMEPAGE=https://github.com/minad/vertico @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-emacs/compat-29.1.3.4 >=app-editors/emacs-27.1:* SLOT=0 SRC_URI=https://github.com/minad/vertico/archive/1.1.tar.gz -> vertico-1.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=a28e44d096f636645d65a7a957a8f08f diff --git a/metadata/md5-cache/app-emacs/vertico-1.2 b/metadata/md5-cache/app-emacs/vertico-1.2 index 97d7b7d55be1..b841f1c6ca25 100644 --- a/metadata/md5-cache/app-emacs/vertico-1.2 +++ b/metadata/md5-cache/app-emacs/vertico-1.2 @@ -1,5 +1,5 @@ BDEPEND=>=app-emacs/compat-29.1.4.0 >=app-editors/emacs-27.1:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Vertical interactive completion EAPI=8 HOMEPAGE=https://github.com/minad/vertico @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-emacs/compat-29.1.4.0 >=app-editors/emacs-27.1:* SLOT=0 SRC_URI=https://github.com/minad/vertico/archive/1.2.tar.gz -> vertico-1.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=cb7682b83749e646bc93ba4623e05ef3 diff --git a/metadata/md5-cache/app-emacs/vhdl-mode-3.38.1 b/metadata/md5-cache/app-emacs/vhdl-mode-3.38.1 index 0cf64c1ff757..384952568c9b 100644 --- a/metadata/md5-cache/app-emacs/vhdl-mode-3.38.1 +++ b/metadata/md5-cache/app-emacs/vhdl-mode-3.38.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=VHDL-mode for Emacs EAPI=7 HOMEPAGE=https://iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode-3.38.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=69977c84df39b326ed9b198ea40e682a diff --git a/metadata/md5-cache/app-emacs/vhdl-mode-3.38.3 b/metadata/md5-cache/app-emacs/vhdl-mode-3.38.3 index 3c669336be2c..1c84938aebe1 100644 --- a/metadata/md5-cache/app-emacs/vhdl-mode-3.38.3 +++ b/metadata/md5-cache/app-emacs/vhdl-mode-3.38.3 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=VHDL-mode for Emacs EAPI=8 HOMEPAGE=https://iis-people.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://iis-people.ee.ethz.ch/~zimmi/emacs/vhdl-mode-3.38.3.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=d6bff25b9160dd5fb0e02193d345dc72 diff --git a/metadata/md5-cache/app-emacs/visual-basic-mode-1.5 b/metadata/md5-cache/app-emacs/visual-basic-mode-1.5 index 1c1c66582152..f44aa593fc44 100644 --- a/metadata/md5-cache/app-emacs/visual-basic-mode-1.5 +++ b/metadata/md5-cache/app-emacs/visual-basic-mode-1.5 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A mode for editing Visual Basic programs EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/VisualBasicMode @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/visual-basic-mode-1.5.el.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=4df42e42f6fdf4752515b3f30a519651 diff --git a/metadata/md5-cache/app-emacs/vm-8.2.0_beta-r1 b/metadata/md5-cache/app-emacs/vm-8.2.0_beta-r1 index b7d8d0bec084..9b9252ae4a25 100644 --- a/metadata/md5-cache/app-emacs/vm-8.2.0_beta-r1 +++ b/metadata/md5-cache/app-emacs/vm-8.2.0_beta-r1 @@ -1,5 +1,5 @@ BDEPEND=bbdb? ( app-emacs/bbdb ) sys-apps/texinfo >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=The VM mail reader for Emacs EAPI=7 HOMEPAGE=http://www.nongnu.org/viewmail/ @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=bbdb? ( app-emacs/bbdb ) ssl? ( net-misc/stunnel ) >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://launchpad.net/vm/8.2.x/8.2.0b/+download/vm-8.2.0b.tgz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=9bbe4b329ef0101820c50af46c7e1d1d diff --git a/metadata/md5-cache/app-emacs/vm-9999 b/metadata/md5-cache/app-emacs/vm-9999 index 08c02269f9b5..592dd005915d 100644 --- a/metadata/md5-cache/app-emacs/vm-9999 +++ b/metadata/md5-cache/app-emacs/vm-9999 @@ -1,5 +1,5 @@ BDEPEND=bbdb? ( app-emacs/bbdb ) sys-apps/texinfo >=app-editors/emacs-25.3:* dev-vcs/breezy sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=The VM mail reader for Emacs EAPI=7 HOMEPAGE=http://www.nongnu.org/viewmail/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ PROPERTIES=live RDEPEND=bbdb? ( app-emacs/bbdb ) ssl? ( net-misc/stunnel ) >=app-editors/emacs-25.3:* SLOT=0 -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a bzr 74d1960bdb3c575402f0652963e85c15 elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a bzr 74d1960bdb3c575402f0652963e85c15 elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=02dd201365556a860a02209e449a6c09 diff --git a/metadata/md5-cache/app-emacs/volume-1.0-r1 b/metadata/md5-cache/app-emacs/volume-1.0-r1 index 00653e0ef1a2..6b7f5d79049b 100644 --- a/metadata/md5-cache/app-emacs/volume-1.0-r1 +++ b/metadata/md5-cache/app-emacs/volume-1.0-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Tweak your sound card volume from Emacs EAPI=7 HOMEPAGE=https://github.com/dbrock/volume.el @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/volume-1.0.el.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=5aa812e0f2f52b201796751703ed8411 diff --git a/metadata/md5-cache/app-emacs/vterm-0.0.1_pre20210618 b/metadata/md5-cache/app-emacs/vterm-0.0.1_pre20210618 index ac87b3ff544e..a1ec8702ada6 100644 --- a/metadata/md5-cache/app-emacs/vterm-0.0.1_pre20210618 +++ b/metadata/md5-cache/app-emacs/vterm-0.0.1_pre20210618 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=dev-libs/libvterm >=app-editors/emacs-26:*[dynamic-loading] >=app-editors/emacs-26:* SLOT=0 SRC_URI=https://github.com/akermu/emacs-libvterm/archive/d9dfa624679afdd5db6ad25429ef86d3dd91401e.tar.gz -> vterm-0.0.1_pre20210618.tar.gz -_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c edos2unix 33e347e171066657f91f8b0c72ec8773 elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c edos2unix 33e347e171066657f91f8b0c72ec8773 elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=c166173f7c46a240b71d08ff2319d7fd diff --git a/metadata/md5-cache/app-emacs/vterm-0.0.2_p20221118 b/metadata/md5-cache/app-emacs/vterm-0.0.2_p20221118 index 8d5554a3ea03..0f22bbcffa11 100644 --- a/metadata/md5-cache/app-emacs/vterm-0.0.2_p20221118 +++ b/metadata/md5-cache/app-emacs/vterm-0.0.2_p20221118 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=>=dev-libs/libvterm-0.2:= >=app-editors/emacs-26:*[dynamic-loading] >=app-editors/emacs-26:* SLOT=0 SRC_URI=https://github.com/akermu/emacs-libvterm/archive/f14d113ee4618f052879509ec378feb9766b871b.tar.gz -> vterm-0.0.2_p20221118.tar.gz -_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=978f85913135383a8f0b1d13ba30a43b diff --git a/metadata/md5-cache/app-emacs/vterm-0.0.2_p20230217 b/metadata/md5-cache/app-emacs/vterm-0.0.2_p20230217 index cd2b7d5a3426..0ed28ad6be7e 100644 --- a/metadata/md5-cache/app-emacs/vterm-0.0.2_p20230217 +++ b/metadata/md5-cache/app-emacs/vterm-0.0.2_p20230217 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=>=dev-libs/libvterm-0.2:= >=app-editors/emacs-26:*[dynamic-loading] >=app-editors/emacs-26:* SLOT=0 SRC_URI=https://github.com/akermu/emacs-libvterm/archive/3e5a9b754b8e61850bb7d1b63b090b9fbf6687f3.tar.gz -> vterm-0.0.2_p20230217.tar.gz -_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=01d746742056b62e73ec78b26a71d40f diff --git a/metadata/md5-cache/app-emacs/w3mnav-0.5-r3 b/metadata/md5-cache/app-emacs/w3mnav-0.5-r3 index b97b9b7dd847..19e325a87b70 100644 --- a/metadata/md5-cache/app-emacs/w3mnav-0.5-r3 +++ b/metadata/md5-cache/app-emacs/w3mnav-0.5-r3 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=app-emacs/emacs-w3m DESCRIPTION=Add Info-like navigation keys to the emacs-w3m web browser EAPI=7 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=app-emacs/emacs-w3m >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gentoo/w3mnav-0.5.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=919189ded4dbe08e72b3e911f4c7c603 diff --git a/metadata/md5-cache/app-emacs/wanderlust-2.15.9_p20190623 b/metadata/md5-cache/app-emacs/wanderlust-2.15.9_p20190623 index 49f4f94dbc4b..49026cd2ecf6 100644 --- a/metadata/md5-cache/app-emacs/wanderlust-2.15.9_p20190623 +++ b/metadata/md5-cache/app-emacs/wanderlust-2.15.9_p20190623 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=>=app-emacs/apel-10.8 >=app-emacs/flim-1.14.9 >=app-emacs/semi-1.14.7 bbdb? ( app-emacs/bbdb ) DESCRIPTION=Yet Another Message Interface on Emacsen EAPI=7 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-emacs/apel-10.8 >=app-emacs/flim-1.14.9 >=app-emacs/semi-1.14.7 bbdb? ( app-emacs/bbdb ) >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/wanderlust/wanderlust/archive/b9a529a54b9e7eafa4ed230ad28efffe0d25a20e.tar.gz -> wanderlust-2.15.9_p20190623.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=5b15c148c95529b83eb33d507b8ec4db diff --git a/metadata/md5-cache/app-emacs/wanderlust-2.15.9_p20210629 b/metadata/md5-cache/app-emacs/wanderlust-2.15.9_p20210629 index 253428511f12..9bae75e6d83a 100644 --- a/metadata/md5-cache/app-emacs/wanderlust-2.15.9_p20210629 +++ b/metadata/md5-cache/app-emacs/wanderlust-2.15.9_p20210629 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=>=app-emacs/apel-10.8 >=app-emacs/flim-1.14.9 >=app-emacs/semi-1.14.7 bbdb? ( app-emacs/bbdb ) DESCRIPTION=Yet Another Message Interface on Emacsen EAPI=8 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-emacs/apel-10.8 >=app-emacs/flim-1.14.9 >=app-emacs/semi-1.14.7 bbdb? ( app-emacs/bbdb ) >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/wanderlust/wanderlust/archive/769699d60aa033049804083b459ee562b82db77e.tar.gz -> wanderlust-2.15.9_p20210629.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=162000cde5091c25df3925622bf182ba diff --git a/metadata/md5-cache/app-emacs/web-mode-17.2.1 b/metadata/md5-cache/app-emacs/web-mode-17.2.1 index b20f051e91f4..611891c94cad 100644 --- a/metadata/md5-cache/app-emacs/web-mode-17.2.1 +++ b/metadata/md5-cache/app-emacs/web-mode-17.2.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Web template editing mode for Emacs EAPI=8 HOMEPAGE=https://web-mode.org/ https://github.com/fxbois/web-mode/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/fxbois/web-mode/archive/v17.2.1.tar.gz -> web-mode-17.2.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=55f46ffaf0cdc533b44accce98de5b21 diff --git a/metadata/md5-cache/app-emacs/web-server-0.1.2_p20210708 b/metadata/md5-cache/app-emacs/web-server-0.1.2_p20210708 index 79862a2e5cd7..1712d5707df9 100644 --- a/metadata/md5-cache/app-emacs/web-server-0.1.2_p20210708 +++ b/metadata/md5-cache/app-emacs/web-server-0.1.2_p20210708 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/eschulte/emacs-web-server/archive/6357a1c2d1718778503f7ee0909585094117525b.tar.gz -> web-server-0.1.2_p20210708.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=f8a5310bc60b46ce6bd99716ba2a324a diff --git a/metadata/md5-cache/app-emacs/webpaste-3.2.2 b/metadata/md5-cache/app-emacs/webpaste-3.2.2 index 1061df0d9ffd..651fe03ae1fe 100644 --- a/metadata/md5-cache/app-emacs/webpaste-3.2.2 +++ b/metadata/md5-cache/app-emacs/webpaste-3.2.2 @@ -11,5 +11,5 @@ RDEPEND=app-emacs/request >=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/etu/webpaste.el/archive/3.2.2.tar.gz -> webpaste-3.2.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=7f3c9f33890514b01e9a9e0969d50415 diff --git a/metadata/md5-cache/app-emacs/websocket-1.12 b/metadata/md5-cache/app-emacs/websocket-1.12 index bc463ca20b00..9efeee7588f4 100644 --- a/metadata/md5-cache/app-emacs/websocket-1.12 +++ b/metadata/md5-cache/app-emacs/websocket-1.12 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/ahyatt/emacs-websocket/archive/1.12.tar.gz -> websocket-1.12.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=eae7d25473b41fb7cdd0462229578d69 diff --git a/metadata/md5-cache/app-emacs/websocket-1.13 b/metadata/md5-cache/app-emacs/websocket-1.13 index da3186583632..bb0730f22b6b 100644 --- a/metadata/md5-cache/app-emacs/websocket-1.13 +++ b/metadata/md5-cache/app-emacs/websocket-1.13 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/ahyatt/emacs-websocket/archive/1.13.tar.gz -> websocket-1.13.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=10c9f981b5b797644aa84e412494f321 diff --git a/metadata/md5-cache/app-emacs/websocket-1.14_p20230305 b/metadata/md5-cache/app-emacs/websocket-1.14_p20230305 index 839be7a64448..b1716475cebf 100644 --- a/metadata/md5-cache/app-emacs/websocket-1.14_p20230305 +++ b/metadata/md5-cache/app-emacs/websocket-1.14_p20230305 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/ahyatt/emacs-websocket/archive/1a08093b122d8cf20366a1cba5faddf7a53d08ed.tar.gz -> websocket-1.14_p20230305.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=78c7ca5c19afb3d15039020f6d0bdd97 diff --git a/metadata/md5-cache/app-emacs/wgrep-2.3.0 b/metadata/md5-cache/app-emacs/wgrep-2.3.0 index 3fe733b57a34..10f30ec039d2 100644 --- a/metadata/md5-cache/app-emacs/wgrep-2.3.0 +++ b/metadata/md5-cache/app-emacs/wgrep-2.3.0 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Writable grep buffer and apply the changes to files EAPI=7 HOMEPAGE=https://github.com/mhayashi1120/Emacs-wgrep @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/mhayashi1120/Emacs-wgrep/archive/2.3.0.tar.gz -> wgrep-2.3.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=86de93ca42271781271c75d7bdc492f3 diff --git a/metadata/md5-cache/app-emacs/wgrep-2.3.2 b/metadata/md5-cache/app-emacs/wgrep-2.3.2 index 3bb99fbe9c65..3fe74baeca53 100644 --- a/metadata/md5-cache/app-emacs/wgrep-2.3.2 +++ b/metadata/md5-cache/app-emacs/wgrep-2.3.2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Writable grep buffer and apply the changes to files EAPI=7 HOMEPAGE=https://github.com/mhayashi1120/Emacs-wgrep @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/mhayashi1120/Emacs-wgrep/archive/2.3.2.tar.gz -> wgrep-2.3.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=bb27c1fcdc7f6274c98b903d1d218ac3 diff --git a/metadata/md5-cache/app-emacs/wgrep-3.0.0-r1 b/metadata/md5-cache/app-emacs/wgrep-3.0.0-r1 index 566c463f8270..97db8bdff4da 100644 --- a/metadata/md5-cache/app-emacs/wgrep-3.0.0-r1 +++ b/metadata/md5-cache/app-emacs/wgrep-3.0.0-r1 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/mhayashi1120/Emacs-wgrep/archive/3.0.0.tar.gz -> wgrep-3.0.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=62deec8cbef4905104a1fedb83c08c5f diff --git a/metadata/md5-cache/app-emacs/which-key-3.6.0 b/metadata/md5-cache/app-emacs/which-key-3.6.0 index b58cfd38268c..d468e24b385a 100644 --- a/metadata/md5-cache/app-emacs/which-key-3.6.0 +++ b/metadata/md5-cache/app-emacs/which-key-3.6.0 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/justbur/emacs-which-key/archive/v3.6.0.tar.gz -> which-key-3.6.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=aa8b91a55ae4b91c44320014c8a6cbfc diff --git a/metadata/md5-cache/app-emacs/whine-20091222 b/metadata/md5-cache/app-emacs/whine-20091222 index b3d32b9706ab..e197da8b3861 100644 --- a/metadata/md5-cache/app-emacs/whine-20091222 +++ b/metadata/md5-cache/app-emacs/whine-20091222 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Complaint generator for GNU Emacs EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/Whine @@ -9,5 +9,5 @@ LICENSE=public-domain RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/whine-20091222.tar.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=7367bfc14b56e1d064d2117d0dd29e4d diff --git a/metadata/md5-cache/app-emacs/wikipedia-mode-0.5-r2 b/metadata/md5-cache/app-emacs/wikipedia-mode-0.5-r2 index 7bb26e737e30..8d1c07e28127 100644 --- a/metadata/md5-cache/app-emacs/wikipedia-mode-0.5-r2 +++ b/metadata/md5-cache/app-emacs/wikipedia-mode-0.5-r2 @@ -1,5 +1,5 @@ BDEPEND=outline-magic? ( app-emacs/outline-magic ) >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Mode for editing Wikipedia articles off-line EAPI=7 HOMEPAGE=https://www.emacswiki.org/emacs/WikipediaMode @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=outline-magic? ( app-emacs/outline-magic ) >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://gentoo/wikipedia-mode-0.5.el.bz2 -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=8654a24ce284787db1207a4bed6c0d4c diff --git a/metadata/md5-cache/app-emacs/windows-2.53 b/metadata/md5-cache/app-emacs/windows-2.53 index 01820b4f874c..84e6d3876776 100644 --- a/metadata/md5-cache/app-emacs/windows-2.53 +++ b/metadata/md5-cache/app-emacs/windows-2.53 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/revive >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Window manager for GNU Emacs EAPI=7 HOMEPAGE=https://www.gentei.org/~yuuji/software/ @@ -9,5 +9,5 @@ LICENSE=BSD-2 RDEPEND=app-emacs/revive >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/windows-2.53.el.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=1a414a30b7d0e3a3b47f793ec5adb13b diff --git a/metadata/md5-cache/app-emacs/with-editor-2.8.3 b/metadata/md5-cache/app-emacs/with-editor-2.8.3 index 72b477c80578..82f928c9f7b0 100644 --- a/metadata/md5-cache/app-emacs/with-editor-2.8.3 +++ b/metadata/md5-cache/app-emacs/with-editor-2.8.3 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=sys-apps/texinfo DESCRIPTION=Use the Emacsclient as the $EDITOR of child processes EAPI=7 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/magit/with-editor/archive/v2.8.3.tar.gz -> with-editor-2.8.3.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=51a702e37c6128514d2efc77a964b3ba diff --git a/metadata/md5-cache/app-emacs/with-editor-3.0.5 b/metadata/md5-cache/app-emacs/with-editor-3.0.5 index 5f6ae7e52f08..9e12b7397f2b 100644 --- a/metadata/md5-cache/app-emacs/with-editor-3.0.5 +++ b/metadata/md5-cache/app-emacs/with-editor-3.0.5 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=sys-apps/texinfo DESCRIPTION=Use the Emacsclient as the $EDITOR of child processes EAPI=8 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/magit/with-editor/archive/v3.0.5.tar.gz -> with-editor-3.0.5.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=916f5e5863f2a146a458233ea8894bd1 diff --git a/metadata/md5-cache/app-emacs/with-editor-3.1.1 b/metadata/md5-cache/app-emacs/with-editor-3.1.1 index 8de2fd9f026a..fd2833f5f49f 100644 --- a/metadata/md5-cache/app-emacs/with-editor-3.1.1 +++ b/metadata/md5-cache/app-emacs/with-editor-3.1.1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=sys-apps/texinfo DESCRIPTION=Use the Emacsclient as the $EDITOR of child processes EAPI=8 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/magit/with-editor/archive/v3.1.1.tar.gz -> with-editor-3.1.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=ec86a6d9d38ece5cd93c90979642e8fd diff --git a/metadata/md5-cache/app-emacs/with-editor-3.2.0 b/metadata/md5-cache/app-emacs/with-editor-3.2.0 index 6ebc055e62a4..026ca1fdb160 100644 --- a/metadata/md5-cache/app-emacs/with-editor-3.2.0 +++ b/metadata/md5-cache/app-emacs/with-editor-3.2.0 @@ -1,5 +1,5 @@ BDEPEND=sys-apps/texinfo >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Use the Emacsclient as the $EDITOR of child processes EAPI=8 HOMEPAGE=https://magit.vc/manual/with-editor @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/magit/with-editor/archive/v3.2.0.tar.gz -> with-editor-3.2.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=92439504a9f59487919eaff041a403e7 diff --git a/metadata/md5-cache/app-emacs/with-simulated-input-3.0 b/metadata/md5-cache/app-emacs/with-simulated-input-3.0 index 4ca1b0517be6..ae9bb1f60ac4 100644 --- a/metadata/md5-cache/app-emacs/with-simulated-input-3.0 +++ b/metadata/md5-cache/app-emacs/with-simulated-input-3.0 @@ -11,5 +11,5 @@ RDEPEND=>=app-editors/emacs-25.3:* RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/DarwinAwardWinner/with-simulated-input/archive/v3.0.tar.gz -> with-simulated-input-3.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=5e4958fbfa688d14c47a1fa2cfbae726 diff --git a/metadata/md5-cache/app-emacs/xclip-1.11-r1 b/metadata/md5-cache/app-emacs/xclip-1.11-r1 index fa9531979d61..9cea0bdb3b20 100644 --- a/metadata/md5-cache/app-emacs/xclip-1.11-r1 +++ b/metadata/md5-cache/app-emacs/xclip-1.11-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs Interface to XClip EAPI=8 HOMEPAGE=https://elpa.gnu.org/packages/xclip.html @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/xclip-1.11.el.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=cab39943e64314cce1da8e3831cfa543 diff --git a/metadata/md5-cache/app-emacs/xclip-1.9 b/metadata/md5-cache/app-emacs/xclip-1.9 index 20190413d5ee..713aa7d92e6b 100644 --- a/metadata/md5-cache/app-emacs/xclip-1.9 +++ b/metadata/md5-cache/app-emacs/xclip-1.9 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Emacs Interface to XClip EAPI=7 HOMEPAGE=https://elpa.gnu.org/packages/xclip.html @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=x11-misc/xclip >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/xclip-1.9.el.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=57b70a562ce082462abc1dc0139f38f1 diff --git a/metadata/md5-cache/app-emacs/xelb-0.18 b/metadata/md5-cache/app-emacs/xelb-0.18 index 935c55873067..8b580027ee9d 100644 --- a/metadata/md5-cache/app-emacs/xelb-0.18 +++ b/metadata/md5-cache/app-emacs/xelb-0.18 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=X protocol Emacs Lisp Binding EAPI=8 HOMEPAGE=https://github.com/ch11ng/xelb/ @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-editors/emacs[gui] x11-apps/xauth >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/ch11ng/xelb/archive/0.18.tar.gz -> xelb-0.18.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=8b6cc623cde0885053045b271d916903 diff --git a/metadata/md5-cache/app-emacs/xrdb-mode-3.0-r1 b/metadata/md5-cache/app-emacs/xrdb-mode-3.0-r1 index ce6cefe3806f..8e4ae0070a10 100644 --- a/metadata/md5-cache/app-emacs/xrdb-mode-3.0-r1 +++ b/metadata/md5-cache/app-emacs/xrdb-mode-3.0-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=An Emacs major mode for editing X resource database files EAPI=7 HOMEPAGE=https://launchpad.net/xrdb-mode https://www.emacswiki.org/emacs/ResourceFiles @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/distfiles/xrdb-mode-3.0.el.xz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=17f5122b6437dc01a28e212b9b84265f diff --git a/metadata/md5-cache/app-emacs/xslide-0.2.2-r1 b/metadata/md5-cache/app-emacs/xslide-0.2.2-r1 index 5a1f299d58df..2f1c68d2402e 100644 --- a/metadata/md5-cache/app-emacs/xslide-0.2.2-r1 +++ b/metadata/md5-cache/app-emacs/xslide-0.2.2-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=An Emacs major mode for editing XSL stylesheets and running XSL processes EAPI=7 HOMEPAGE=https://sourceforge.net/projects/xslide/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=mirror://sourceforge/xslide/xslide-0.2.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=5fdb7ec5aa56571e886290e0813b71cb diff --git a/metadata/md5-cache/app-emacs/yaml-0.5.1 b/metadata/md5-cache/app-emacs/yaml-0.5.1 index 58d2e1ee1f2d..ef1b70fd9e12 100644 --- a/metadata/md5-cache/app-emacs/yaml-0.5.1 +++ b/metadata/md5-cache/app-emacs/yaml-0.5.1 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/zkry/yaml.el/archive/v0.5.1.tar.gz -> yaml-0.5.1.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=b7b842c4541e537e546f347507fcc9ad diff --git a/metadata/md5-cache/app-emacs/yaml-0.5.2 b/metadata/md5-cache/app-emacs/yaml-0.5.2 index c974a85292a7..4c30a59c9f81 100644 --- a/metadata/md5-cache/app-emacs/yaml-0.5.2 +++ b/metadata/md5-cache/app-emacs/yaml-0.5.2 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/zkry/yaml.el/archive/v0.5.2.tar.gz -> yaml-0.5.2.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=50ba6a092eaa96aa8f318e6d65a9d5b9 diff --git a/metadata/md5-cache/app-emacs/yaml-mode-0.0.14 b/metadata/md5-cache/app-emacs/yaml-mode-0.0.14 index 8d5eab62517d..64ac0eec0233 100644 --- a/metadata/md5-cache/app-emacs/yaml-mode-0.0.14 +++ b/metadata/md5-cache/app-emacs/yaml-mode-0.0.14 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A major mode for GNU Emacs for editing YAML files EAPI=7 HOMEPAGE=https://github.com/yoshiki/yaml-mode @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/yoshiki/yaml-mode/archive/0.0.14.tar.gz -> yaml-mode-0.0.14.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=b537b8a5f7a6b955104ba49d1def4dc4 diff --git a/metadata/md5-cache/app-emacs/yaml-mode-0.0.15 b/metadata/md5-cache/app-emacs/yaml-mode-0.0.15 index 507ab36c8049..16e1475ff41e 100644 --- a/metadata/md5-cache/app-emacs/yaml-mode-0.0.15 +++ b/metadata/md5-cache/app-emacs/yaml-mode-0.0.15 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A major mode for GNU Emacs for editing YAML files EAPI=7 HOMEPAGE=https://github.com/yoshiki/yaml-mode @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/yoshiki/yaml-mode/archive/0.0.15.tar.gz -> yaml-mode-0.0.15.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=5f52e78d199c5b19c8e988b2ca48b0d2 diff --git a/metadata/md5-cache/app-emacs/yasnippet-0.14.0 b/metadata/md5-cache/app-emacs/yasnippet-0.14.0 index de94b9c3c5e9..be6bdcd648ac 100644 --- a/metadata/md5-cache/app-emacs/yasnippet-0.14.0 +++ b/metadata/md5-cache/app-emacs/yasnippet-0.14.0 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/joaotavora/yasnippet/archive/0.14.0.tar.gz -> yasnippet-0.14.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=df0c5293e30bd91532578348ed9f4b01 diff --git a/metadata/md5-cache/app-emacs/yasnippet-snippets-0.3-r1 b/metadata/md5-cache/app-emacs/yasnippet-snippets-0.3-r1 index c185d9562633..d804a23eb69a 100644 --- a/metadata/md5-cache/app-emacs/yasnippet-snippets-0.3-r1 +++ b/metadata/md5-cache/app-emacs/yasnippet-snippets-0.3-r1 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/yasnippet >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A collection of yasnippet snippets for many languages EAPI=8 HOMEPAGE=https://github.com/AndreaCrotti/yasnippet-snippets @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/yasnippet >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/AndreaCrotti/yasnippet-snippets/archive/0.3.tar.gz -> yasnippet-snippets-0.3.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=c2e92ea2e7c9518303a1e65fe62830e6 diff --git a/metadata/md5-cache/app-emacs/yasnippet-snippets-1.0-r2 b/metadata/md5-cache/app-emacs/yasnippet-snippets-1.0-r2 index f88ace036436..15bf82a11254 100644 --- a/metadata/md5-cache/app-emacs/yasnippet-snippets-1.0-r2 +++ b/metadata/md5-cache/app-emacs/yasnippet-snippets-1.0-r2 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/yasnippet >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A collection of yasnippet snippets for many languages EAPI=8 HOMEPAGE=https://github.com/AndreaCrotti/yasnippet-snippets @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=app-emacs/yasnippet >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/AndreaCrotti/yasnippet-snippets/archive/1.0.tar.gz -> yasnippet-snippets-1.0.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=c2e92ea2e7c9518303a1e65fe62830e6 diff --git a/metadata/md5-cache/app-emacs/yatex-1.82 b/metadata/md5-cache/app-emacs/yatex-1.82 index 73f4d65895a5..5b41dddfd1d6 100644 --- a/metadata/md5-cache/app-emacs/yatex-1.82 +++ b/metadata/md5-cache/app-emacs/yatex-1.82 @@ -1,5 +1,5 @@ BDEPEND=l10n_ja? ( virtual/libiconv ) >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Yet Another TeX mode for Emacs EAPI=8 HOMEPAGE=http://www.yatex.org/ @@ -10,5 +10,5 @@ LICENSE=BSD-2 RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=http://www.yatex.org/yatex1.82.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=90aa5c660a090405c90f393b11c6f664 diff --git a/metadata/md5-cache/app-emacs/zenburn-20110907-r1 b/metadata/md5-cache/app-emacs/zenburn-20110907-r1 index d80357908127..c9c63f11d4ec 100644 --- a/metadata/md5-cache/app-emacs/zenburn-20110907-r1 +++ b/metadata/md5-cache/app-emacs/zenburn-20110907-r1 @@ -1,5 +1,5 @@ BDEPEND=app-emacs/color-theme >=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Zenburn color theme for Emacs EAPI=7 HOMEPAGE=https://web.archive.org/web/20140612104441/http://slinky.imukuppi.org/zenburnpage/ https://github.com/dbrock/zenburn-el @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=app-emacs/color-theme >=app-editors/emacs-25.3:* SLOT=0 SRC_URI=https://github.com/dbrock/zenburn-el/archive/2b0672b04ef3e95c25f849dceb10d669296a188b.tar.gz -> zenburn-20110907.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=fe565a3144e8e5005c6464547441fa30 diff --git a/metadata/md5-cache/app-emacs/zenirc-2.112-r1 b/metadata/md5-cache/app-emacs/zenirc-2.112-r1 index 5288b5cf4f71..4784422141e1 100644 --- a/metadata/md5-cache/app-emacs/zenirc-2.112-r1 +++ b/metadata/md5-cache/app-emacs/zenirc-2.112-r1 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-25.3:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=A full-featured scriptable IRC client for the Emacs text editor EAPI=7 HOMEPAGE=http://www.zenirc.org/ @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-25.3:* SLOT=0 SRC_URI=ftp://ftp.zenirc.org/pub/zenirc/zenirc-2.112.tar.gz -_eclasses_=elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 +_eclasses_=elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 _md5_=1c4731458aa3e285a538bcf2ae02301e diff --git a/metadata/md5-cache/app-emulation/Manifest.gz b/metadata/md5-cache/app-emulation/Manifest.gz index 41d80103b47e..7662efa31a67 100644 Binary files a/metadata/md5-cache/app-emulation/Manifest.gz and b/metadata/md5-cache/app-emulation/Manifest.gz differ diff --git a/metadata/md5-cache/app-emulation/dxvk-2.1_p20230207 b/metadata/md5-cache/app-emulation/dxvk-2.1_p20230207 new file mode 100644 index 000000000000..941e4dbae2d1 --- /dev/null +++ b/metadata/md5-cache/app-emulation/dxvk-2.1_p20230207 @@ -0,0 +1,14 @@ +BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) dev-util/glslang !crossdev-mingw? ( dev-util/mingw64-toolchain[abi_x86_32(-)?,abi_x86_64(-)?] ) >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install postinst preinst prepare pretend setup test +DESCRIPTION=Vulkan-based implementation of D3D9, D3D10 and D3D11 for Linux / Wine +EAPI=8 +HOMEPAGE=https://github.com/doitsujin/dxvk/ +INHERIT=flag-o-matic meson-multilib python-any-r1 +IUSE=+abi_x86_32 crossdev-mingw +d3d9 +d3d10 +d3d11 debug +dxgi abi_x86_32 abi_x86_64 +KEYWORDS=-* ~amd64 ~x86 +LICENSE=ZLIB Apache-2.0 MIT +REQUIRED_USE=|| ( d3d9 d3d10 d3d11 dxgi ) d3d10? ( d3d11 ) d3d11? ( dxgi ) || ( abi_x86_32 abi_x86_64 ) +SLOT=0 +SRC_URI=https://github.com/doitsujin/dxvk/archive/caf31033d711460e86781b16a4d9b0f41fa9e817.tar.gz -> dxvk-caf31033d7.tar.gz https://github.com/KhronosGroup/SPIRV-Headers/archive/0bcc624926a25a2a273d07877fd25a6ff5ba1cfb.tar.gz -> dxvk-spirv-headers-0bcc624926.tar.gz https://github.com/KhronosGroup/Vulkan-Headers/archive/98f440ce6868c94f5ec6e198cc1adda4760e8849.tar.gz -> dxvk-vulkan-headers-98f440ce68.tar.gz https://gitlab.freedesktop.org/JoshuaAshton/libdisplay-info/-/archive/d39344f466caae0495ebac4d49b03a886d83ba3a/dxvk-libdisplay-info-d39344f466.tar.bz2 https://raw.githubusercontent.com/doitsujin/dxvk/cd21cd7fa3b0df3e0819e21ca700b7627a838d69/setup_dxvk.sh +_eclasses_=flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a meson 915ec7c25e08d7886558215e6809ca1e meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=a0c9f0e13f346468aa9031b38d47db2b diff --git a/metadata/md5-cache/app-emulation/virtiofsd-1.5.1 b/metadata/md5-cache/app-emulation/virtiofsd-1.5.1 new file mode 100644 index 000000000000..15a31c6b378e --- /dev/null +++ b/metadata/md5-cache/app-emulation/virtiofsd-1.5.1 @@ -0,0 +1,15 @@ +BDEPEND=>=virtual/rust-1.53 +DEFINED_PHASES=compile configure install test unpack +DEPEND=sys-libs/libcap-ng sys-libs/libseccomp +DESCRIPTION=Shared file system for virtual machines +EAPI=8 +HOMEPAGE=https://virtio-fs.gitlab.io/ +INHERIT=cargo +IUSE=debug +KEYWORDS=~amd64 +LICENSE=Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD MIT Unicode-DFS-2016 Unlicense +RDEPEND=sys-libs/libcap-ng sys-libs/libseccomp +SLOT=0 +SRC_URI=https://gitlab.com/virtio-fs/virtiofsd/-/archive/v1.5.1/virtiofsd-v1.5.1.tar.gz https://crates.io/api/v1/crates/aho-corasick/0.7.18/download -> aho-corasick-0.7.18.crate https://crates.io/api/v1/crates/ansi_term/0.12.1/download -> ansi_term-0.12.1.crate https://crates.io/api/v1/crates/arc-swap/1.5.0/download -> arc-swap-1.5.0.crate https://crates.io/api/v1/crates/atty/0.2.14/download -> atty-0.2.14.crate https://crates.io/api/v1/crates/autocfg/1.1.0/download -> autocfg-1.1.0.crate https://crates.io/api/v1/crates/bitflags/1.3.2/download -> bitflags-1.3.2.crate https://crates.io/api/v1/crates/capng/0.2.2/download -> capng-0.2.2.crate https://crates.io/api/v1/crates/cc/1.0.78/download -> cc-1.0.78.crate https://crates.io/api/v1/crates/cfg-if/1.0.0/download -> cfg-if-1.0.0.crate https://crates.io/api/v1/crates/clap/2.34.0/download -> clap-2.34.0.crate https://crates.io/api/v1/crates/env_logger/0.10.0/download -> env_logger-0.10.0.crate https://crates.io/api/v1/crates/errno/0.2.8/download -> errno-0.2.8.crate https://crates.io/api/v1/crates/errno-dragonfly/0.1.2/download -> errno-dragonfly-0.1.2.crate https://crates.io/api/v1/crates/error-chain/0.12.4/download -> error-chain-0.12.4.crate https://crates.io/api/v1/crates/futures/0.3.21/download -> futures-0.3.21.crate https://crates.io/api/v1/crates/futures-channel/0.3.21/download -> futures-channel-0.3.21.crate https://crates.io/api/v1/crates/futures-core/0.3.21/download -> futures-core-0.3.21.crate https://crates.io/api/v1/crates/futures-executor/0.3.21/download -> futures-executor-0.3.21.crate https://crates.io/api/v1/crates/futures-io/0.3.21/download -> futures-io-0.3.21.crate https://crates.io/api/v1/crates/futures-macro/0.3.21/download -> futures-macro-0.3.21.crate https://crates.io/api/v1/crates/futures-sink/0.3.21/download -> futures-sink-0.3.21.crate https://crates.io/api/v1/crates/futures-task/0.3.21/download -> futures-task-0.3.21.crate https://crates.io/api/v1/crates/futures-util/0.3.21/download -> futures-util-0.3.21.crate https://crates.io/api/v1/crates/heck/0.3.3/download -> heck-0.3.3.crate https://crates.io/api/v1/crates/hermit-abi/0.1.19/download -> hermit-abi-0.1.19.crate https://crates.io/api/v1/crates/hermit-abi/0.2.6/download -> hermit-abi-0.2.6.crate https://crates.io/api/v1/crates/hostname/0.3.1/download -> hostname-0.3.1.crate https://crates.io/api/v1/crates/humantime/2.1.0/download -> humantime-2.1.0.crate https://crates.io/api/v1/crates/io-lifetimes/1.0.4/download -> io-lifetimes-1.0.4.crate https://crates.io/api/v1/crates/is-terminal/0.4.2/download -> is-terminal-0.4.2.crate https://crates.io/api/v1/crates/itoa/1.0.2/download -> itoa-1.0.2.crate https://crates.io/api/v1/crates/lazy_static/1.4.0/download -> lazy_static-1.4.0.crate https://crates.io/api/v1/crates/libc/0.2.139/download -> libc-0.2.139.crate https://crates.io/api/v1/crates/libseccomp-sys/0.2.1/download -> libseccomp-sys-0.2.1.crate https://crates.io/api/v1/crates/linux-raw-sys/0.1.4/download -> linux-raw-sys-0.1.4.crate https://crates.io/api/v1/crates/log/0.4.17/download -> log-0.4.17.crate https://crates.io/api/v1/crates/match_cfg/0.1.0/download -> match_cfg-0.1.0.crate https://crates.io/api/v1/crates/memchr/2.5.0/download -> memchr-2.5.0.crate https://crates.io/api/v1/crates/num_cpus/1.13.1/download -> num_cpus-1.13.1.crate https://crates.io/api/v1/crates/num_threads/0.1.6/download -> num_threads-0.1.6.crate https://crates.io/api/v1/crates/pin-project-lite/0.2.9/download -> pin-project-lite-0.2.9.crate https://crates.io/api/v1/crates/pin-utils/0.1.0/download -> pin-utils-0.1.0.crate https://crates.io/api/v1/crates/proc-macro-error/1.0.4/download -> proc-macro-error-1.0.4.crate https://crates.io/api/v1/crates/proc-macro-error-attr/1.0.4/download -> proc-macro-error-attr-1.0.4.crate https://crates.io/api/v1/crates/proc-macro2/1.0.40/download -> proc-macro2-1.0.40.crate https://crates.io/api/v1/crates/quote/1.0.20/download -> quote-1.0.20.crate https://crates.io/api/v1/crates/regex/1.6.0/download -> regex-1.6.0.crate https://crates.io/api/v1/crates/regex-syntax/0.6.27/download -> regex-syntax-0.6.27.crate https://crates.io/api/v1/crates/rustix/0.36.7/download -> rustix-0.36.7.crate https://crates.io/api/v1/crates/slab/0.4.7/download -> slab-0.4.7.crate https://crates.io/api/v1/crates/strsim/0.8.0/download -> strsim-0.8.0.crate https://crates.io/api/v1/crates/structopt/0.3.26/download -> structopt-0.3.26.crate https://crates.io/api/v1/crates/structopt-derive/0.4.18/download -> structopt-derive-0.4.18.crate https://crates.io/api/v1/crates/syn/1.0.98/download -> syn-1.0.98.crate https://crates.io/api/v1/crates/syslog/6.0.1/download -> syslog-6.0.1.crate https://crates.io/api/v1/crates/termcolor/1.1.3/download -> termcolor-1.1.3.crate https://crates.io/api/v1/crates/textwrap/0.11.0/download -> textwrap-0.11.0.crate https://crates.io/api/v1/crates/time/0.3.11/download -> time-0.3.11.crate https://crates.io/api/v1/crates/unicode-ident/1.0.2/download -> unicode-ident-1.0.2.crate https://crates.io/api/v1/crates/unicode-segmentation/1.9.0/download -> unicode-segmentation-1.9.0.crate https://crates.io/api/v1/crates/unicode-width/0.1.9/download -> unicode-width-0.1.9.crate https://crates.io/api/v1/crates/vec_map/0.8.2/download -> vec_map-0.8.2.crate https://crates.io/api/v1/crates/version_check/0.9.4/download -> version_check-0.9.4.crate https://crates.io/api/v1/crates/vhost/0.6.0/download -> vhost-0.6.0.crate https://crates.io/api/v1/crates/vhost-user-backend/0.8.0/download -> vhost-user-backend-0.8.0.crate https://crates.io/api/v1/crates/virtio-bindings/0.1.0/download -> virtio-bindings-0.1.0.crate https://crates.io/api/v1/crates/virtio-queue/0.7.0/download -> virtio-queue-0.7.0.crate https://crates.io/api/v1/crates/vm-memory/0.10.0/download -> vm-memory-0.10.0.crate https://crates.io/api/v1/crates/vmm-sys-util/0.11.1/download -> vmm-sys-util-0.11.1.crate https://crates.io/api/v1/crates/winapi/0.3.9/download -> winapi-0.3.9.crate https://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download -> winapi-i686-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/winapi-util/0.1.5/download -> winapi-util-0.1.5.crate https://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download -> winapi-x86_64-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/windows-sys/0.42.0/download -> windows-sys-0.42.0.crate https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.42.1/download -> windows_aarch64_gnullvm-0.42.1.crate https://crates.io/api/v1/crates/windows_aarch64_msvc/0.42.1/download -> windows_aarch64_msvc-0.42.1.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.42.1/download -> windows_i686_gnu-0.42.1.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.42.1/download -> windows_i686_msvc-0.42.1.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.42.1/download -> windows_x86_64_gnu-0.42.1.crate https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.42.1/download -> windows_x86_64_gnullvm-0.42.1.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.42.1/download -> windows_x86_64_msvc-0.42.1.crate +_eclasses_=cargo 2e0a4a329a7dc5dfe20dcb05e6c36935 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=ce929fd36ff570964f8324bbf70ba006 diff --git a/metadata/md5-cache/app-emulation/virtiofsd-9999 b/metadata/md5-cache/app-emulation/virtiofsd-9999 new file mode 100644 index 000000000000..f75e4c4dd05a --- /dev/null +++ b/metadata/md5-cache/app-emulation/virtiofsd-9999 @@ -0,0 +1,14 @@ +BDEPEND=>=virtual/rust-1.53 >=dev-vcs/git-1.8.2.1[curl] +DEFINED_PHASES=compile configure install test unpack +DEPEND=sys-libs/libcap-ng sys-libs/libseccomp +DESCRIPTION=Shared file system for virtual machines +EAPI=8 +HOMEPAGE=https://virtio-fs.gitlab.io/ +INHERIT=cargo git-r3 +IUSE=debug +LICENSE=Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD MIT Unicode-DFS-2016 Unlicense +PROPERTIES=live +RDEPEND=sys-libs/libcap-ng sys-libs/libseccomp +SLOT=0 +_eclasses_=cargo 2e0a4a329a7dc5dfe20dcb05e6c36935 git-r3 27e13c09a4c7e4c78ac812f74727e676 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=ce929fd36ff570964f8324bbf70ba006 diff --git a/metadata/md5-cache/app-emulation/vkd3d-1.7 b/metadata/md5-cache/app-emulation/vkd3d-1.7 index 4fe31644f717..504ac50dd32a 100644 --- a/metadata/md5-cache/app-emulation/vkd3d-1.7 +++ b/metadata/md5-cache/app-emulation/vkd3d-1.7 @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://gitlab.winehq.org/wine/vkd3d/ INHERIT=multilib-minimal IUSE=ncurses spirv-tools 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 ~x86 +KEYWORDS=amd64 x86 LICENSE=LGPL-2.1+ RDEPEND=media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ncurses? ( sys-libs/ncurses:= ) spirv-tools? ( dev-util/spirv-tools[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 SLOT=0 SRC_URI=https://dl.winehq.org/vkd3d/source/vkd3d-1.7.tar.xz _eclasses_=multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=2599f9dd245aa422a14669ad2c7abdc6 +_md5_=714d8290586381fb732f0133104be7ee diff --git a/metadata/md5-cache/app-emulation/vkd3d-proton-2.8_p20230207 b/metadata/md5-cache/app-emulation/vkd3d-proton-2.8_p20230207 new file mode 100644 index 000000000000..c9c44321bfea --- /dev/null +++ b/metadata/md5-cache/app-emulation/vkd3d-proton-2.8_p20230207 @@ -0,0 +1,14 @@ +BDEPEND=dev-util/glslang !crossdev-mingw? ( dev-util/mingw64-toolchain[abi_x86_32(-)?,abi_x86_64(-)?] ) >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install postinst prepare pretend test +DESCRIPTION=Fork of VKD3D, development branches for Proton's Direct3D 12 implementation +EAPI=8 +HOMEPAGE=https://github.com/HansKristian-Work/vkd3d-proton/ +INHERIT=flag-o-matic meson-multilib toolchain-funcs +IUSE=+abi_x86_32 crossdev-mingw debug extras abi_x86_32 abi_x86_64 +KEYWORDS=-* ~amd64 ~x86 +LICENSE=LGPL-2.1+ Apache-2.0 MIT +REQUIRED_USE=|| ( abi_x86_32 abi_x86_64 ) +SLOT=0 +SRC_URI=https://github.com/HansKristian-Work/vkd3d-proton/archive/08909d98565065994612e529feb0cad04e498a8e.tar.gz -> vkd3d-proton-08909d9856.tar.gz https://github.com/HansKristian-Work/dxil-spirv/archive/9e2c26d15c0eeac91fb8c6dda3aff8f6a602c0b6.tar.gz -> vkd3d-proton-dxil-spirv-9e2c26d15c.tar.gz https://github.com/KhronosGroup/SPIRV-Headers/archive/1d31a100405cf8783ca7a31e31cdd727c9fc54c3.tar.gz -> vkd3d-proton-spirv-headers-1d31a10040.tar.gz https://github.com/KhronosGroup/SPIRV-Headers/archive/87d5b782bec60822aa878941e6b13c0a9a954c9b.tar.gz -> vkd3d-proton-spirv-headers-87d5b782be.tar.gz https://github.com/KhronosGroup/Vulkan-Headers/archive/9f93cbe76abe9f6cb4a36df10b08fa3b78ae0027.tar.gz -> vkd3d-proton-vulkan-headers-9f93cbe76a.tar.gz +_eclasses_=flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a meson 915ec7c25e08d7886558215e6809ca1e meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=83e5d829b6bae55df339ae37f28dbe97 diff --git a/metadata/md5-cache/app-emulation/wine-mono-7.4.1 b/metadata/md5-cache/app-emulation/wine-mono-7.4.1 new file mode 100644 index 000000000000..5b16c2502df2 --- /dev/null +++ b/metadata/md5-cache/app-emulation/wine-mono-7.4.1 @@ -0,0 +1,10 @@ +DEFINED_PHASES=install +DESCRIPTION=Replacement for the .NET runtime and class libraries in Wine +EAPI=8 +HOMEPAGE=https://wiki.winehq.org/Mono +IUSE=+shared +KEYWORDS=~amd64 ~x86 +LICENSE=BSD-2 GPL-2 LGPL-2.1 MIT MPL-1.1 +SLOT=7.4.1 +SRC_URI=shared? ( https://github.com/madewokherd/wine-mono/releases/download/wine-mono-7.4.1/wine-mono-7.4.1-x86.tar.xz ) !shared? ( https://github.com/madewokherd/wine-mono/releases/download/wine-mono-7.4.1/wine-mono-7.4.1-x86.msi ) +_md5_=66f7156021ec1215cec69b00c6dbe461 diff --git a/metadata/md5-cache/app-emulation/wine-proton-7.0.6 b/metadata/md5-cache/app-emulation/wine-proton-7.0.6 index d8885de166f1..e5817c364332 100644 --- a/metadata/md5-cache/app-emulation/wine-proton-7.0.6 +++ b/metadata/md5-cache/app-emulation/wine-proton-7.0.6 @@ -1,6 +1,6 @@ BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) dev-lang/perl sys-devel/binutils sys-devel/bison sys-devel/flex virtual/pkgconfig nls? ( sys-devel/gettext ) !crossdev-mingw? ( dev-util/mingw64-toolchain[abi_x86_32(-)?,abi_x86_64(-)?] ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup -DEPEND=dev-libs/gmp:=[abi_x86_32(-)?,abi_x86_64(-)?] dev-libs/libgcrypt:=[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/freetype[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/libglvnd[X,abi_x86_32(-)?,abi_x86_64(-)?] media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXrender[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?] fontconfig? ( media-libs/fontconfig[abi_x86_32(-)?,abi_x86_64(-)?] ) osmesa? ( media-libs/mesa[osmesa,abi_x86_32(-)?,abi_x86_64(-)?] ) sdl? ( media-libs/libsdl2[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?] ) ssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?] ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?] ) x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?] alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?] ) gstreamer? ( dev-libs/glib:2[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/gst-plugins-base:1.0[opengl,abi_x86_32(-)?,abi_x86_64(-)?] media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?] ) openal? ( media-libs/openal[abi_x86_32(-)?,abi_x86_64(-)?] ) pulseaudio? ( media-libs/libpulse[abi_x86_32(-)?,abi_x86_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?] ) unwind? ( llvm-libunwind? ( sys-libs/llvm-libunwind[abi_x86_32(-)?,abi_x86_64(-)?] ) !llvm-libunwind? ( sys-libs/libunwind:=[abi_x86_32(-)?,abi_x86_64(-)?] ) ) usb? ( dev-libs/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?] ) vkd3d? ( >=app-emulation/vkd3d-1.2[abi_x86_32(-)?,abi_x86_64(-)?] ) sys-kernel/linux-headers x11-base/xorg-proto +DEPEND=dev-libs/libgcrypt:=[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/freetype[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/libglvnd[X,abi_x86_32(-)?,abi_x86_64(-)?] media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXrender[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?] fontconfig? ( media-libs/fontconfig[abi_x86_32(-)?,abi_x86_64(-)?] ) osmesa? ( media-libs/mesa[osmesa,abi_x86_32(-)?,abi_x86_64(-)?] ) sdl? ( media-libs/libsdl2[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?] ) ssl? ( dev-libs/gmp:=[abi_x86_32(-)?,abi_x86_64(-)?] net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?] ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?] ) x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?] alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?] ) gstreamer? ( dev-libs/glib:2[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/gst-plugins-base:1.0[opengl,abi_x86_32(-)?,abi_x86_64(-)?] media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?] ) openal? ( media-libs/openal[abi_x86_32(-)?,abi_x86_64(-)?] ) pulseaudio? ( media-libs/libpulse[abi_x86_32(-)?,abi_x86_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?] ) unwind? ( llvm-libunwind? ( sys-libs/llvm-libunwind[abi_x86_32(-)?,abi_x86_64(-)?] ) !llvm-libunwind? ( sys-libs/libunwind:=[abi_x86_32(-)?,abi_x86_64(-)?] ) ) usb? ( dev-libs/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?] ) vkd3d? ( >=app-emulation/vkd3d-1.2[abi_x86_32(-)?,abi_x86_64(-)?] ) sys-kernel/linux-headers x11-base/xorg-proto DESCRIPTION=Valve Software's fork of Wine EAPI=8 HOMEPAGE=https://github.com/ValveSoftware/wine/ @@ -9,10 +9,10 @@ INHERIT=autotools flag-o-matic multilib multilib-build python-any-r1 readme.gent IUSE=+abi_x86_32 +abi_x86_64 +alsa crossdev-mingw custom-cflags debug +fontconfig +gecko +gstreamer llvm-libunwind +mono nls openal osmesa perl pulseaudio +sdl selinux +ssl udev udisks +unwind usb v4l +vkd3d +xcomposite xinerama abi_x86_32 abi_x86_64 KEYWORDS=-* ~amd64 ~x86 LICENSE=LGPL-2.1+ BSD-2 IJG MIT ZLIB gsm libpng2 libtiff -RDEPEND=dev-libs/gmp:=[abi_x86_32(-)?,abi_x86_64(-)?] dev-libs/libgcrypt:=[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/freetype[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/libglvnd[X,abi_x86_32(-)?,abi_x86_64(-)?] media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXrender[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?] fontconfig? ( media-libs/fontconfig[abi_x86_32(-)?,abi_x86_64(-)?] ) osmesa? ( media-libs/mesa[osmesa,abi_x86_32(-)?,abi_x86_64(-)?] ) sdl? ( media-libs/libsdl2[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?] ) ssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?] ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?] ) x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?] alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?] ) gstreamer? ( dev-libs/glib:2[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/gst-plugins-base:1.0[opengl,abi_x86_32(-)?,abi_x86_64(-)?] media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?] ) openal? ( media-libs/openal[abi_x86_32(-)?,abi_x86_64(-)?] ) pulseaudio? ( media-libs/libpulse[abi_x86_32(-)?,abi_x86_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?] ) unwind? ( llvm-libunwind? ( sys-libs/llvm-libunwind[abi_x86_32(-)?,abi_x86_64(-)?] ) !llvm-libunwind? ( sys-libs/libunwind:=[abi_x86_32(-)?,abi_x86_64(-)?] ) ) usb? ( dev-libs/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?] ) vkd3d? ( >=app-emulation/vkd3d-1.2[abi_x86_32(-)?,abi_x86_64(-)?] ) app-emulation/wine-desktop-common gecko? ( app-emulation/wine-gecko:2.47.3[abi_x86_32(-)?,abi_x86_64(-)?] ) gstreamer? ( media-plugins/gst-plugins-meta:1.0[abi_x86_32(-)?,abi_x86_64(-)?] ) mono? ( app-emulation/wine-mono:7.4.0 ) perl? ( dev-lang/perl dev-perl/XML-LibXML ) selinux? ( sec-policy/selinux-wine ) udisks? ( sys-fs/udisks:2 ) +RDEPEND=dev-libs/libgcrypt:=[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/freetype[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/libglvnd[X,abi_x86_32(-)?,abi_x86_64(-)?] media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXrender[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?] fontconfig? ( media-libs/fontconfig[abi_x86_32(-)?,abi_x86_64(-)?] ) osmesa? ( media-libs/mesa[osmesa,abi_x86_32(-)?,abi_x86_64(-)?] ) sdl? ( media-libs/libsdl2[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?] ) ssl? ( dev-libs/gmp:=[abi_x86_32(-)?,abi_x86_64(-)?] net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?] ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?] ) x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?] alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?] ) gstreamer? ( dev-libs/glib:2[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/gst-plugins-base:1.0[opengl,abi_x86_32(-)?,abi_x86_64(-)?] media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?] ) openal? ( media-libs/openal[abi_x86_32(-)?,abi_x86_64(-)?] ) pulseaudio? ( media-libs/libpulse[abi_x86_32(-)?,abi_x86_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?] ) unwind? ( llvm-libunwind? ( sys-libs/llvm-libunwind[abi_x86_32(-)?,abi_x86_64(-)?] ) !llvm-libunwind? ( sys-libs/libunwind:=[abi_x86_32(-)?,abi_x86_64(-)?] ) ) usb? ( dev-libs/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?] ) vkd3d? ( >=app-emulation/vkd3d-1.2[abi_x86_32(-)?,abi_x86_64(-)?] ) app-emulation/wine-desktop-common gecko? ( app-emulation/wine-gecko:2.47.3[abi_x86_32(-)?,abi_x86_64(-)?] ) gstreamer? ( media-plugins/gst-plugins-meta:1.0[abi_x86_32(-)?,abi_x86_64(-)?] ) mono? ( app-emulation/wine-mono:7.4.0 ) perl? ( dev-lang/perl dev-perl/XML-LibXML ) selinux? ( sec-policy/selinux-wine ) udisks? ( sys-fs/udisks:2 ) REQUIRED_USE=|| ( abi_x86_32 abi_x86_64 ) RESTRICT=test SLOT=7.0.6 SRC_URI=https://github.com/ValveSoftware/wine/archive/refs/tags/proton-wine-7.0-6.tar.gz _eclasses_=autotools f0d3196128225dee3220e65f3371bc7a flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=5eeb2debe0329340c6862b766f4b052e +_md5_=98df30ffb314fee8d3315e68cfd9d1f3 diff --git a/metadata/md5-cache/app-emulation/wine-proton-7.0.9999 b/metadata/md5-cache/app-emulation/wine-proton-7.0.9999 index ddc221f2091d..404290c062c6 100644 --- a/metadata/md5-cache/app-emulation/wine-proton-7.0.9999 +++ b/metadata/md5-cache/app-emulation/wine-proton-7.0.9999 @@ -1,6 +1,6 @@ BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) dev-lang/perl sys-devel/binutils sys-devel/bison sys-devel/flex virtual/pkgconfig nls? ( sys-devel/gettext ) !crossdev-mingw? ( dev-util/mingw64-toolchain[abi_x86_32(-)?,abi_x86_64(-)?] ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup unpack -DEPEND=dev-libs/gmp:=[abi_x86_32(-)?,abi_x86_64(-)?] dev-libs/libgcrypt:=[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/freetype[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/libglvnd[X,abi_x86_32(-)?,abi_x86_64(-)?] media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXrender[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?] fontconfig? ( media-libs/fontconfig[abi_x86_32(-)?,abi_x86_64(-)?] ) osmesa? ( media-libs/mesa[osmesa,abi_x86_32(-)?,abi_x86_64(-)?] ) sdl? ( media-libs/libsdl2[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?] ) ssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?] ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?] ) x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?] alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?] ) gstreamer? ( dev-libs/glib:2[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/gst-plugins-base:1.0[opengl,abi_x86_32(-)?,abi_x86_64(-)?] media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?] ) openal? ( media-libs/openal[abi_x86_32(-)?,abi_x86_64(-)?] ) pulseaudio? ( media-libs/libpulse[abi_x86_32(-)?,abi_x86_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?] ) unwind? ( llvm-libunwind? ( sys-libs/llvm-libunwind[abi_x86_32(-)?,abi_x86_64(-)?] ) !llvm-libunwind? ( sys-libs/libunwind:=[abi_x86_32(-)?,abi_x86_64(-)?] ) ) usb? ( dev-libs/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?] ) vkd3d? ( >=app-emulation/vkd3d-1.2[abi_x86_32(-)?,abi_x86_64(-)?] ) sys-kernel/linux-headers x11-base/xorg-proto +DEPEND=dev-libs/libgcrypt:=[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/freetype[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/libglvnd[X,abi_x86_32(-)?,abi_x86_64(-)?] media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXrender[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?] fontconfig? ( media-libs/fontconfig[abi_x86_32(-)?,abi_x86_64(-)?] ) osmesa? ( media-libs/mesa[osmesa,abi_x86_32(-)?,abi_x86_64(-)?] ) sdl? ( media-libs/libsdl2[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?] ) ssl? ( dev-libs/gmp:=[abi_x86_32(-)?,abi_x86_64(-)?] net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?] ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?] ) x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?] alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?] ) gstreamer? ( dev-libs/glib:2[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/gst-plugins-base:1.0[opengl,abi_x86_32(-)?,abi_x86_64(-)?] media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?] ) openal? ( media-libs/openal[abi_x86_32(-)?,abi_x86_64(-)?] ) pulseaudio? ( media-libs/libpulse[abi_x86_32(-)?,abi_x86_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?] ) unwind? ( llvm-libunwind? ( sys-libs/llvm-libunwind[abi_x86_32(-)?,abi_x86_64(-)?] ) !llvm-libunwind? ( sys-libs/libunwind:=[abi_x86_32(-)?,abi_x86_64(-)?] ) ) usb? ( dev-libs/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?] ) vkd3d? ( >=app-emulation/vkd3d-1.2[abi_x86_32(-)?,abi_x86_64(-)?] ) sys-kernel/linux-headers x11-base/xorg-proto DESCRIPTION=Valve Software's fork of Wine EAPI=8 HOMEPAGE=https://github.com/ValveSoftware/wine/ @@ -9,9 +9,9 @@ INHERIT=autotools flag-o-matic multilib multilib-build python-any-r1 readme.gent IUSE=+abi_x86_32 +abi_x86_64 +alsa crossdev-mingw custom-cflags debug +fontconfig +gecko +gstreamer llvm-libunwind +mono nls openal osmesa perl pulseaudio +sdl selinux +ssl udev udisks +unwind usb v4l +vkd3d +xcomposite xinerama abi_x86_32 abi_x86_64 LICENSE=LGPL-2.1+ BSD-2 IJG MIT ZLIB gsm libpng2 libtiff PROPERTIES=live -RDEPEND=dev-libs/gmp:=[abi_x86_32(-)?,abi_x86_64(-)?] dev-libs/libgcrypt:=[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/freetype[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/libglvnd[X,abi_x86_32(-)?,abi_x86_64(-)?] media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXrender[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?] fontconfig? ( media-libs/fontconfig[abi_x86_32(-)?,abi_x86_64(-)?] ) osmesa? ( media-libs/mesa[osmesa,abi_x86_32(-)?,abi_x86_64(-)?] ) sdl? ( media-libs/libsdl2[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?] ) ssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?] ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?] ) x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?] alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?] ) gstreamer? ( dev-libs/glib:2[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/gst-plugins-base:1.0[opengl,abi_x86_32(-)?,abi_x86_64(-)?] media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?] ) openal? ( media-libs/openal[abi_x86_32(-)?,abi_x86_64(-)?] ) pulseaudio? ( media-libs/libpulse[abi_x86_32(-)?,abi_x86_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?] ) unwind? ( llvm-libunwind? ( sys-libs/llvm-libunwind[abi_x86_32(-)?,abi_x86_64(-)?] ) !llvm-libunwind? ( sys-libs/libunwind:=[abi_x86_32(-)?,abi_x86_64(-)?] ) ) usb? ( dev-libs/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?] ) vkd3d? ( >=app-emulation/vkd3d-1.2[abi_x86_32(-)?,abi_x86_64(-)?] ) app-emulation/wine-desktop-common gecko? ( app-emulation/wine-gecko:2.47.3[abi_x86_32(-)?,abi_x86_64(-)?] ) gstreamer? ( media-plugins/gst-plugins-meta:1.0[abi_x86_32(-)?,abi_x86_64(-)?] ) mono? ( app-emulation/wine-mono:7.4.0 ) perl? ( dev-lang/perl dev-perl/XML-LibXML ) selinux? ( sec-policy/selinux-wine ) udisks? ( sys-fs/udisks:2 ) +RDEPEND=dev-libs/libgcrypt:=[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/freetype[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/libglvnd[X,abi_x86_32(-)?,abi_x86_64(-)?] media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXrender[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?] fontconfig? ( media-libs/fontconfig[abi_x86_32(-)?,abi_x86_64(-)?] ) osmesa? ( media-libs/mesa[osmesa,abi_x86_32(-)?,abi_x86_64(-)?] ) sdl? ( media-libs/libsdl2[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?] ) ssl? ( dev-libs/gmp:=[abi_x86_32(-)?,abi_x86_64(-)?] net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?] ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?] ) x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?] alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?] ) gstreamer? ( dev-libs/glib:2[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/gst-plugins-base:1.0[opengl,abi_x86_32(-)?,abi_x86_64(-)?] media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?] ) openal? ( media-libs/openal[abi_x86_32(-)?,abi_x86_64(-)?] ) pulseaudio? ( media-libs/libpulse[abi_x86_32(-)?,abi_x86_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?] ) unwind? ( llvm-libunwind? ( sys-libs/llvm-libunwind[abi_x86_32(-)?,abi_x86_64(-)?] ) !llvm-libunwind? ( sys-libs/libunwind:=[abi_x86_32(-)?,abi_x86_64(-)?] ) ) usb? ( dev-libs/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?] ) vkd3d? ( >=app-emulation/vkd3d-1.2[abi_x86_32(-)?,abi_x86_64(-)?] ) app-emulation/wine-desktop-common gecko? ( app-emulation/wine-gecko:2.47.3[abi_x86_32(-)?,abi_x86_64(-)?] ) gstreamer? ( media-plugins/gst-plugins-meta:1.0[abi_x86_32(-)?,abi_x86_64(-)?] ) mono? ( app-emulation/wine-mono:7.4.0 ) perl? ( dev-lang/perl dev-perl/XML-LibXML ) selinux? ( sec-policy/selinux-wine ) udisks? ( sys-fs/udisks:2 ) REQUIRED_USE=|| ( abi_x86_32 abi_x86_64 ) RESTRICT=test SLOT=7.0.9999 _eclasses_=autotools f0d3196128225dee3220e65f3371bc7a flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a git-r3 27e13c09a4c7e4c78ac812f74727e676 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=5eeb2debe0329340c6862b766f4b052e +_md5_=98df30ffb314fee8d3315e68cfd9d1f3 diff --git a/metadata/md5-cache/app-emulation/wine-proton-8.0.1c b/metadata/md5-cache/app-emulation/wine-proton-8.0.1c new file mode 100644 index 000000000000..3bf34ba78525 --- /dev/null +++ b/metadata/md5-cache/app-emulation/wine-proton-8.0.1c @@ -0,0 +1,18 @@ +BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) dev-lang/perl sys-devel/binutils sys-devel/bison sys-devel/flex virtual/pkgconfig nls? ( sys-devel/gettext ) !crossdev-mingw? ( dev-util/mingw64-toolchain[abi_x86_32(-)?,abi_x86_64(-)?] ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 +DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup +DEPEND=dev-libs/libgcrypt:=[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/freetype[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/libglvnd[X,abi_x86_32(-)?,abi_x86_64(-)?] media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXrender[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?] fontconfig? ( media-libs/fontconfig[abi_x86_32(-)?,abi_x86_64(-)?] ) osmesa? ( media-libs/mesa[osmesa,abi_x86_32(-)?,abi_x86_64(-)?] ) sdl? ( media-libs/libsdl2[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?] ) ssl? ( dev-libs/gmp:=[abi_x86_32(-)?,abi_x86_64(-)?] net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?] ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?] ) x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?] alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?] ) gstreamer? ( dev-libs/glib:2[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/gst-plugins-base:1.0[opengl,abi_x86_32(-)?,abi_x86_64(-)?] media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?] ) pulseaudio? ( media-libs/libpulse[abi_x86_32(-)?,abi_x86_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?] ) unwind? ( llvm-libunwind? ( sys-libs/llvm-libunwind[abi_x86_32(-)?,abi_x86_64(-)?] ) !llvm-libunwind? ( sys-libs/libunwind:=[abi_x86_32(-)?,abi_x86_64(-)?] ) ) usb? ( dev-libs/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?] ) sys-kernel/linux-headers x11-base/xorg-proto +DESCRIPTION=Valve Software's fork of Wine +EAPI=8 +HOMEPAGE=https://github.com/ValveSoftware/wine/ +IDEPEND=>=app-eselect/eselect-wine-2 +INHERIT=autotools flag-o-matic multilib multilib-build python-any-r1 readme.gentoo-r1 toolchain-funcs wrapper +IUSE=+abi_x86_32 +abi_x86_64 +alsa crossdev-mingw custom-cflags debug +fontconfig +gecko +gstreamer llvm-libunwind +mono nls osmesa perl pulseaudio +sdl selinux +ssl udev udisks +unwind usb v4l +xcomposite xinerama abi_x86_32 abi_x86_64 +KEYWORDS=-* ~amd64 ~x86 +LICENSE=LGPL-2.1+ BSD-2 IJG MIT OPENLDAP ZLIB gsm libpng2 libtiff +RDEPEND=dev-libs/libgcrypt:=[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/freetype[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/libglvnd[X,abi_x86_32(-)?,abi_x86_64(-)?] media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXrender[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?] fontconfig? ( media-libs/fontconfig[abi_x86_32(-)?,abi_x86_64(-)?] ) osmesa? ( media-libs/mesa[osmesa,abi_x86_32(-)?,abi_x86_64(-)?] ) sdl? ( media-libs/libsdl2[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?] ) ssl? ( dev-libs/gmp:=[abi_x86_32(-)?,abi_x86_64(-)?] net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?] ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?] ) x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?] alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?] ) gstreamer? ( dev-libs/glib:2[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/gst-plugins-base:1.0[opengl,abi_x86_32(-)?,abi_x86_64(-)?] media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?] ) pulseaudio? ( media-libs/libpulse[abi_x86_32(-)?,abi_x86_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?] ) unwind? ( llvm-libunwind? ( sys-libs/llvm-libunwind[abi_x86_32(-)?,abi_x86_64(-)?] ) !llvm-libunwind? ( sys-libs/libunwind:=[abi_x86_32(-)?,abi_x86_64(-)?] ) ) usb? ( dev-libs/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?] ) app-emulation/wine-desktop-common gecko? ( app-emulation/wine-gecko:2.47.3[abi_x86_32(-)?,abi_x86_64(-)?] ) gstreamer? ( media-plugins/gst-plugins-meta:1.0[abi_x86_32(-)?,abi_x86_64(-)?] ) mono? ( app-emulation/wine-mono:7.4.1 ) perl? ( dev-lang/perl dev-perl/XML-LibXML ) selinux? ( sec-policy/selinux-wine ) udisks? ( sys-fs/udisks:2 ) +REQUIRED_USE=|| ( abi_x86_32 abi_x86_64 ) +RESTRICT=test +SLOT=8.0.1c +SRC_URI=https://github.com/ValveSoftware/wine/archive/refs/tags/proton-wine-8.0-1c.tar.gz +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c +_md5_=3721d0f0b0da384c6bcd821d3fe193cd diff --git a/metadata/md5-cache/app-emulation/wine-staging-8.6.1 b/metadata/md5-cache/app-emulation/wine-staging-8.6.1 new file mode 100644 index 000000000000..eec6375c28a4 --- /dev/null +++ b/metadata/md5-cache/app-emulation/wine-staging-8.6.1 @@ -0,0 +1,18 @@ +BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) || ( dev-vcs/git ( sys-apps/gawk sys-apps/util-linux ) ) dev-lang/perl sys-devel/binutils sys-devel/bison sys-devel/flex virtual/pkgconfig mingw? ( !crossdev-mingw? ( >=dev-util/mingw64-toolchain-10.0.0_p1-r2[abi_x86_32(-)?,abi_x86_64(-)?] ) ) nls? ( sys-devel/gettext ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 +DEFINED_PHASES=compile configure install postinst postrm prepare pretend setup unpack +DEPEND=X? ( x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXrender[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?] opengl? ( media-libs/libglvnd[X,abi_x86_32(-)?,abi_x86_64(-)?] osmesa? ( media-libs/mesa[osmesa,abi_x86_32(-)?,abi_x86_64(-)?] ) ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?] ) ) cups? ( net-print/cups[abi_x86_32(-)?,abi_x86_64(-)?] ) fontconfig? ( media-libs/fontconfig[abi_x86_32(-)?,abi_x86_64(-)?] ) kerberos? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?] ) netapi? ( net-fs/samba[abi_x86_32(-)?,abi_x86_64(-)?] ) sdl? ( media-libs/libsdl2[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?] ) ssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?] ) truetype? ( media-libs/freetype[abi_x86_32(-)?,abi_x86_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?] ) vulkan? ( media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?] ) X? ( x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?] ) alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?] ) capi? ( net-libs/libcapi:=[abi_x86_32(-)?,abi_x86_64(-)?] ) gphoto2? ( media-libs/libgphoto2:=[abi_x86_32(-)?,abi_x86_64(-)?] ) gstreamer? ( dev-libs/glib:2[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/gst-plugins-base:1.0[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?] ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?] ) pcap? ( net-libs/libpcap[abi_x86_32(-)?,abi_x86_64(-)?] ) pulseaudio? ( media-libs/libpulse[abi_x86_32(-)?,abi_x86_64(-)?] ) scanner? ( media-gfx/sane-backends[abi_x86_32(-)?,abi_x86_64(-)?] ) smartcard? ( sys-apps/pcsc-lite[abi_x86_32(-)?,abi_x86_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?] ) unwind? ( llvm-libunwind? ( sys-libs/llvm-libunwind[abi_x86_32(-)?,abi_x86_64(-)?] ) !llvm-libunwind? ( sys-libs/libunwind:=[abi_x86_32(-)?,abi_x86_64(-)?] ) ) usb? ( dev-libs/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?] ) wayland? ( dev-libs/wayland[abi_x86_32(-)?,abi_x86_64(-)?] ) sys-kernel/linux-headers X? ( x11-base/xorg-proto ) +DESCRIPTION=Free implementation of Windows(tm) on Unix, with Wine-Staging patchset +EAPI=8 +HOMEPAGE=https://wiki.winehq.org/Wine-Staging +IDEPEND=>=app-eselect/eselect-wine-2 +INHERIT=autotools edo flag-o-matic multilib multilib-build python-any-r1 toolchain-funcs wrapper +IUSE=+X +abi_x86_32 +abi_x86_64 +alsa capi crossdev-mingw cups dos llvm-libunwind debug custom-cflags +fontconfig +gecko gphoto2 +gstreamer kerberos +mingw +mono netapi nls opencl +opengl osmesa pcap perl pulseaudio samba scanner +sdl selinux smartcard +ssl +truetype udev udisks +unwind usb v4l +vulkan wayland +xcomposite xinerama abi_x86_32 abi_x86_64 +KEYWORDS=-* ~amd64 ~x86 +LICENSE=LGPL-2.1+ BSD-2 IJG MIT OPENLDAP ZLIB gsm libpng2 libtiff +RDEPEND=X? ( x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXrender[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?] opengl? ( media-libs/libglvnd[X,abi_x86_32(-)?,abi_x86_64(-)?] osmesa? ( media-libs/mesa[osmesa,abi_x86_32(-)?,abi_x86_64(-)?] ) ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?] ) ) cups? ( net-print/cups[abi_x86_32(-)?,abi_x86_64(-)?] ) fontconfig? ( media-libs/fontconfig[abi_x86_32(-)?,abi_x86_64(-)?] ) kerberos? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?] ) netapi? ( net-fs/samba[abi_x86_32(-)?,abi_x86_64(-)?] ) sdl? ( media-libs/libsdl2[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?] ) ssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?] ) truetype? ( media-libs/freetype[abi_x86_32(-)?,abi_x86_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?] ) vulkan? ( media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?] ) X? ( x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?] ) alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?] ) capi? ( net-libs/libcapi:=[abi_x86_32(-)?,abi_x86_64(-)?] ) gphoto2? ( media-libs/libgphoto2:=[abi_x86_32(-)?,abi_x86_64(-)?] ) gstreamer? ( dev-libs/glib:2[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/gst-plugins-base:1.0[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?] ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?] ) pcap? ( net-libs/libpcap[abi_x86_32(-)?,abi_x86_64(-)?] ) pulseaudio? ( media-libs/libpulse[abi_x86_32(-)?,abi_x86_64(-)?] ) scanner? ( media-gfx/sane-backends[abi_x86_32(-)?,abi_x86_64(-)?] ) smartcard? ( sys-apps/pcsc-lite[abi_x86_32(-)?,abi_x86_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?] ) unwind? ( llvm-libunwind? ( sys-libs/llvm-libunwind[abi_x86_32(-)?,abi_x86_64(-)?] ) !llvm-libunwind? ( sys-libs/libunwind:=[abi_x86_32(-)?,abi_x86_64(-)?] ) ) usb? ( dev-libs/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?] ) wayland? ( dev-libs/wayland[abi_x86_32(-)?,abi_x86_64(-)?] ) app-emulation/wine-desktop-common dos? ( games-emulation/dosbox ) gecko? ( app-emulation/wine-gecko:2.47.4[abi_x86_32(-)?,abi_x86_64(-)?] ) gstreamer? ( media-plugins/gst-plugins-meta:1.0[abi_x86_32(-)?,abi_x86_64(-)?] ) mono? ( app-emulation/wine-mono:7.4.0 ) perl? ( dev-lang/perl dev-perl/XML-LibXML ) samba? ( net-fs/samba[winbind] ) selinux? ( sec-policy/selinux-wine ) udisks? ( sys-fs/udisks:2 ) +REQUIRED_USE=X? ( truetype ) crossdev-mingw? ( mingw ) || ( abi_x86_32 abi_x86_64 ) +RESTRICT=test +SLOT=8.6.1 +SRC_URI=https://dl.winehq.org/wine/source/8.x/wine-8.6.tar.xz https://github.com/wine-staging/wine-staging/archive/v8.6.1.tar.gz -> wine-staging-8.6.1.tar.gz +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c +_md5_=0ef8bd543bcf59c8f6a5acc35ff4dca4 diff --git a/metadata/md5-cache/app-emulation/wine-vanilla-7.0.2 b/metadata/md5-cache/app-emulation/wine-vanilla-7.0.2 index e9e3c9ea51b2..8302e21f99a3 100644 --- a/metadata/md5-cache/app-emulation/wine-vanilla-7.0.2 +++ b/metadata/md5-cache/app-emulation/wine-vanilla-7.0.2 @@ -7,7 +7,7 @@ HOMEPAGE=https://www.winehq.org/ https://gitlab.winehq.org/wine/wine/ IDEPEND=>=app-eselect/eselect-wine-2 INHERIT=autotools flag-o-matic multilib multilib-build toolchain-funcs wrapper IUSE=+X +abi_x86_32 +abi_x86_64 +alsa capi crossdev-mingw cups dos llvm-libunwind debug custom-cflags +fontconfig +gecko gphoto2 +gstreamer kerberos ldap +mingw +mono netapi nls odbc openal opencl +opengl osmesa pcap perl pulseaudio samba scanner +sdl selinux +ssl +truetype udev udisks +unwind usb v4l +vkd3d +vulkan +xcomposite xinerama abi_x86_32 abi_x86_64 -KEYWORDS=-* ~amd64 ~x86 +KEYWORDS=-* ~amd64 x86 LICENSE=LGPL-2.1+ BSD-2 IJG MIT ZLIB gsm libpng2 libtiff RDEPEND=X? ( x11-libs/libXcursor[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXfixes[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXi[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXrandr[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXrender[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXxf86vm[abi_x86_32(-)?,abi_x86_64(-)?] opengl? ( media-libs/libglvnd[X,abi_x86_32(-)?,abi_x86_64(-)?] osmesa? ( media-libs/mesa[osmesa,abi_x86_32(-)?,abi_x86_64(-)?] ) ) xcomposite? ( x11-libs/libXcomposite[abi_x86_32(-)?,abi_x86_64(-)?] ) xinerama? ( x11-libs/libXinerama[abi_x86_32(-)?,abi_x86_64(-)?] ) ) cups? ( net-print/cups[abi_x86_32(-)?,abi_x86_64(-)?] ) fontconfig? ( media-libs/fontconfig[abi_x86_32(-)?,abi_x86_64(-)?] ) kerberos? ( virtual/krb5[abi_x86_32(-)?,abi_x86_64(-)?] ) netapi? ( net-fs/samba[abi_x86_32(-)?,abi_x86_64(-)?] ) odbc? ( dev-db/unixODBC[abi_x86_32(-)?,abi_x86_64(-)?] ) sdl? ( media-libs/libsdl2[haptic,joystick,abi_x86_32(-)?,abi_x86_64(-)?] ) ssl? ( net-libs/gnutls:=[abi_x86_32(-)?,abi_x86_64(-)?] ) truetype? ( media-libs/freetype[abi_x86_32(-)?,abi_x86_64(-)?] ) udisks? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?] ) v4l? ( media-libs/libv4l[abi_x86_32(-)?,abi_x86_64(-)?] ) vulkan? ( media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?] ) X? ( x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?] ) alsa? ( media-libs/alsa-lib[abi_x86_32(-)?,abi_x86_64(-)?] ) capi? ( net-libs/libcapi:=[abi_x86_32(-)?,abi_x86_64(-)?] ) gphoto2? ( media-libs/libgphoto2:=[abi_x86_32(-)?,abi_x86_64(-)?] ) gstreamer? ( dev-libs/glib:2[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/gst-plugins-base:1.0[abi_x86_32(-)?,abi_x86_64(-)?] media-libs/gstreamer:1.0[abi_x86_32(-)?,abi_x86_64(-)?] ) ldap? ( net-nds/openldap:=[abi_x86_32(-)?,abi_x86_64(-)?] ) openal? ( media-libs/openal[abi_x86_32(-)?,abi_x86_64(-)?] ) opencl? ( virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?] ) pcap? ( net-libs/libpcap[abi_x86_32(-)?,abi_x86_64(-)?] ) pulseaudio? ( media-libs/libpulse[abi_x86_32(-)?,abi_x86_64(-)?] ) scanner? ( media-gfx/sane-backends[abi_x86_32(-)?,abi_x86_64(-)?] ) udev? ( virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?] ) unwind? ( llvm-libunwind? ( sys-libs/llvm-libunwind[abi_x86_32(-)?,abi_x86_64(-)?] ) !llvm-libunwind? ( sys-libs/libunwind:=[abi_x86_32(-)?,abi_x86_64(-)?] ) ) usb? ( dev-libs/libusb:1[abi_x86_32(-)?,abi_x86_64(-)?] ) vkd3d? ( >=app-emulation/vkd3d-1.2[abi_x86_32(-)?,abi_x86_64(-)?] ) app-emulation/wine-desktop-common dos? ( games-emulation/dosbox ) gecko? ( app-emulation/wine-gecko:2.47.2[abi_x86_32(-)?,abi_x86_64(-)?] ) gstreamer? ( media-plugins/gst-plugins-meta:1.0[abi_x86_32(-)?,abi_x86_64(-)?] ) mono? ( app-emulation/wine-mono:7.0.0 ) perl? ( dev-lang/perl dev-perl/XML-LibXML ) samba? ( net-fs/samba[winbind] ) selinux? ( sec-policy/selinux-wine ) udisks? ( sys-fs/udisks:2 ) REQUIRED_USE=X? ( truetype ) crossdev-mingw? ( mingw ) || ( abi_x86_32 abi_x86_64 ) @@ -15,4 +15,4 @@ RESTRICT=test SLOT=7.0.2 SRC_URI=https://dl.winehq.org/wine/source/7.0/wine-7.0.2.tar.xz _eclasses_=autotools f0d3196128225dee3220e65f3371bc7a flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=f9579df745c239a19607d3b73f81bb4a +_md5_=dd6cc2de19617dcc71cfc0e045b2639e diff --git a/metadata/md5-cache/app-emulation/xen-4.15.5_pre1 b/metadata/md5-cache/app-emulation/xen-4.15.5_pre1 new file mode 100644 index 000000000000..c9c4bf28d52a --- /dev/null +++ b/metadata/md5-cache/app-emulation/xen-4.15.5_pre1 @@ -0,0 +1,16 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare prerm pretend setup +DEPEND=|| ( >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) efi? ( >=sys-devel/binutils-2.22[multitarget] ) !efi? ( >=sys-devel/binutils-2.22 ) flask? ( sys-apps/checkpolicy ) +DESCRIPTION=The Xen virtual machine monitor +EAPI=8 +HOMEPAGE=https://xenproject.org +INHERIT=flag-o-matic mount-boot python-any-r1 toolchain-funcs +IUSE=debug efi flask +KEYWORDS=amd64 ~arm -x86 +LICENSE=GPL-2 +PDEPEND=~app-emulation/xen-tools-4.15.5_pre1 +REQUIRED_USE=arm? ( debug ) +RESTRICT=test splitdebug strip +SLOT=0 +SRC_URI=https://downloads.xenproject.org/release/xen/4.15.4/xen-4.15.4.tar.gz https://gitweb.gentoo.org/proj/xen-upstream-patches.git/snapshot/xen-upstream-patches-4.15.5-pre-patchset-0.tar.bz2 +_eclasses_=flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a mount-boot 3945d351ee3192381911f938f4ee527a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=4e52449a89e81bd7964be975e2d4ec7e diff --git a/metadata/md5-cache/app-emulation/xen-4.16.4_pre1 b/metadata/md5-cache/app-emulation/xen-4.16.4_pre1 new file mode 100644 index 000000000000..6c7d7b5b4af1 --- /dev/null +++ b/metadata/md5-cache/app-emulation/xen-4.16.4_pre1 @@ -0,0 +1,16 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare prerm pretend setup +DEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) efi? ( >=sys-devel/binutils-2.22[multitarget] ) !efi? ( >=sys-devel/binutils-2.22 ) flask? ( sys-apps/checkpolicy ) +DESCRIPTION=The Xen virtual machine monitor +EAPI=8 +HOMEPAGE=https://xenproject.org +INHERIT=flag-o-matic mount-boot python-any-r1 toolchain-funcs +IUSE=+boot-symlinks debug efi flask +KEYWORDS=~amd64 ~arm -x86 +LICENSE=GPL-2 +PDEPEND=~app-emulation/xen-tools-4.16.4_pre1 +REQUIRED_USE=arm? ( debug ) +RESTRICT=test splitdebug strip +SLOT=0 +SRC_URI=https://downloads.xenproject.org/release/xen/4.16.3/xen-4.16.3.tar.gz https://gitweb.gentoo.org/proj/xen-upstream-patches.git/snapshot/xen-upstream-patches-4.16.4-pre-patchset-0.tar.bz2 https://gitweb.gentoo.org/proj/xen-gentoo-patches.git/snapshot/xen-gentoo-patches-4.16.1-gentoo-patchset-2.tar.bz2 +_eclasses_=flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a mount-boot 3945d351ee3192381911f938f4ee527a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=74e1c4b09202298ad7432e1fb9a0bff4 diff --git a/metadata/md5-cache/app-emulation/xen-4.17.1_pre1 b/metadata/md5-cache/app-emulation/xen-4.17.1_pre1 new file mode 100644 index 000000000000..ef41ed707e3b --- /dev/null +++ b/metadata/md5-cache/app-emulation/xen-4.17.1_pre1 @@ -0,0 +1,16 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare prerm pretend setup +DEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) efi? ( >=sys-devel/binutils-2.22[multitarget] ) !efi? ( >=sys-devel/binutils-2.22 ) flask? ( sys-apps/checkpolicy ) +DESCRIPTION=The Xen virtual machine monitor +EAPI=8 +HOMEPAGE=https://xenproject.org +INHERIT=flag-o-matic mount-boot python-any-r1 toolchain-funcs +IUSE=+boot-symlinks debug efi flask +KEYWORDS=~amd64 ~arm -x86 +LICENSE=GPL-2 +PDEPEND=~app-emulation/xen-tools-4.17.1_pre1 +REQUIRED_USE=arm? ( debug ) +RESTRICT=test splitdebug strip +SLOT=0 +SRC_URI=https://downloads.xenproject.org/release/xen/4.17.0/xen-4.17.0.tar.gz https://gitweb.gentoo.org/proj/xen-upstream-patches.git/snapshot/xen-upstream-patches-4.17.1-pre-patchset-0.tar.bz2 https://gitweb.gentoo.org/proj/xen-gentoo-patches.git/snapshot/xen-gentoo-patches-4.17.0-gentoo-patchset-0.tar.bz2 +_eclasses_=flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a mount-boot 3945d351ee3192381911f938f4ee527a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=c22e5eb7bde116a9ee88db1e008da24c diff --git a/metadata/md5-cache/app-emulation/xen-tools-4.15.5_pre1 b/metadata/md5-cache/app-emulation/xen-tools-4.15.5_pre1 new file mode 100644 index 000000000000..fbe0c9056890 --- /dev/null +++ b/metadata/md5-cache/app-emulation/xen-tools-4.15.5_pre1 @@ -0,0 +1,17 @@ +BDEPEND=dev-lang/perl sys-devel/bison sys-devel/gettext +DEFINED_PHASES=compile configure install postinst prepare setup +DEPEND=lzma? ( app-arch/xz-utils ) qemu? ( dev-libs/glib:2 sys-libs/pam ) app-arch/bzip2 dev-libs/libnl:3 dev-libs/lzo:2 dev-libs/yajl sys-apps/util-linux sys-fs/e2fsprogs sys-libs/ncurses sys-libs/zlib python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[ncurses,xml(+),threads(+)] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[ncurses,xml(+),threads(+)] ) app-misc/pax-utils >=sys-kernel/linux-headers-4.11 x11-libs/pixman python_single_target_python3_9? ( dev-python/lxml[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/lxml[python_targets_python3_10(-)] ) x86? ( sys-devel/dev86 system-ipxe? ( sys-firmware/ipxe[qemu] ) sys-power/iasl ) api? ( dev-libs/libxml2 net-misc/curl ) ovmf? ( !arm? ( !arm64? ( dev-lang/nasm ) ) python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite] ) ) !amd64? ( >=sys-apps/dtc-1.4.0 ) amd64? ( sys-power/iasl system-seabios? ( || ( sys-firmware/seabios sys-firmware/seabios-bin ) ) system-ipxe? ( sys-firmware/ipxe[qemu] ) rombios? ( sys-devel/bin86 sys-devel/dev86 ) ) arm64? ( sys-power/iasl rombios? ( sys-devel/bin86 sys-devel/dev86 ) ) doc? ( app-text/ghostscript-gpl app-text/pandoc python_single_target_python3_9? ( dev-python/markdown[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/markdown[python_targets_python3_10(-)] ) dev-texlive/texlive-latexextra media-gfx/transfig ) hvm? ( x11-base/xorg-proto ) qemu? ( app-arch/snappy:= dev-util/meson sdl? ( media-libs/libsdl[X] media-libs/libsdl2[X] ) ) system-qemu? ( app-emulation/qemu[xen] ) ocaml? ( dev-ml/findlib dev-lang/ocaml[ocamlopt] ) python? ( >=dev-lang/swig-4.0.0 ) +DESCRIPTION=Xen tools including QEMU and xl +EAPI=7 +HOMEPAGE=https://xenproject.org +INHERIT=bash-completion-r1 flag-o-matic multilib python-single-r1 toolchain-funcs +IUSE=api debug doc +hvm +ipxe lzma ocaml ovmf pygrub python +qemu +qemu-traditional +rombios screen selinux sdl static-libs system-ipxe system-qemu system-seabios python_single_target_python3_9 python_single_target_python3_10 +KEYWORDS=amd64 ~arm ~arm64 x86 +LICENSE=GPL-2 +RDEPEND=lzma? ( app-arch/xz-utils ) qemu? ( dev-libs/glib:2 sys-libs/pam ) app-arch/bzip2 dev-libs/libnl:3 dev-libs/lzo:2 dev-libs/yajl sys-apps/util-linux sys-fs/e2fsprogs sys-libs/ncurses sys-libs/zlib python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[ncurses,xml(+),threads(+)] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[ncurses,xml(+),threads(+)] ) sys-apps/iproute2[-minimal] net-misc/bridge-utils screen? ( app-misc/screen app-admin/logrotate ) selinux? ( sec-policy/selinux-xen ) +REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) ipxe? ( rombios ) ovmf? ( hvm ) pygrub? ( python ) rombios? ( hvm ) system-ipxe? ( rombios ) ?? ( ipxe system-ipxe ) ?? ( qemu system-qemu ) +RESTRICT=test +SLOT=0/4.15 +SRC_URI=https://downloads.xenproject.org/release/xen/4.15.4/xen-4.15.4.tar.gz https://www.seabios.org/downloads/seabios-1.16.0.tar.gz ipxe? ( https://xenbits.xen.org/xen-extfiles/ipxe-git-3c040ad387099483102708bb1839110bc788cefb.tar.gz ) ovmf? ( https://github.com/tianocore/edk2/archive/7b4a99be8a39c12d3a7fc4b8db9f0eab4ac688d5.tar.gz -> edk2-7b4a99be8a39c12d3a7fc4b8db9f0eab4ac688d5.tar.gz https://github.com/openssl/openssl/archive/OpenSSL_1_1_1j.tar.gz https://github.com/ucb-bar/berkeley-softfloat-3/archive/b64af41c3276f97f0e181920400ee056b9c88037.tar.gz -> berkeley-softfloat-b64af41c3276f97f0e181920400ee056b9c88037.tar.gz https://github.com/google/brotli/archive/666c3280cc11dc433c303d79a83d4ffbdd12cc8d.tar.gz -> brotli-666c3280cc11dc433c303d79a83d4ffbdd12cc8d.tar.gz ) https://gitweb.gentoo.org/proj/xen-upstream-patches.git/snapshot/xen-upstream-patches-4.15.5-pre-patchset-0.tar.bz2 https://gitweb.gentoo.org/proj/xen-gentoo-patches.git/snapshot/xen-gentoo-patches-4.15.3-gentoo-patchset-2.tar.bz2 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c +_md5_=bb22749e2feb622639f29b7d22dd3a3b diff --git a/metadata/md5-cache/app-emulation/xen-tools-4.16.4_pre1 b/metadata/md5-cache/app-emulation/xen-tools-4.16.4_pre1 new file mode 100644 index 000000000000..5505fa75ad42 --- /dev/null +++ b/metadata/md5-cache/app-emulation/xen-tools-4.16.4_pre1 @@ -0,0 +1,17 @@ +BDEPEND=dev-lang/perl sys-devel/bison sys-devel/gettext +DEFINED_PHASES=compile configure install postinst prepare setup +DEPEND=lzma? ( app-arch/xz-utils ) qemu? ( dev-libs/glib:2 sys-libs/pam ) zstd? ( app-arch/zstd ) app-arch/bzip2 app-arch/zstd dev-libs/libnl:3 dev-libs/lzo:2 dev-libs/yajl sys-apps/util-linux sys-fs/e2fsprogs sys-libs/ncurses sys-libs/zlib python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[ncurses,xml(+),threads(+)] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[ncurses,xml(+),threads(+)] ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[ncurses,xml(+),threads(+)] ) app-misc/pax-utils >=sys-kernel/linux-headers-4.11 x11-libs/pixman python_single_target_python3_9? ( dev-python/lxml[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/lxml[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/lxml[python_targets_python3_11(-)] ) x86? ( sys-devel/dev86 system-ipxe? ( sys-firmware/ipxe[qemu] ) sys-power/iasl ) api? ( dev-libs/libxml2 net-misc/curl ) ovmf? ( !arm? ( !arm64? ( dev-lang/nasm ) ) python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite] ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[sqlite] ) ) !amd64? ( >=sys-apps/dtc-1.4.0 ) amd64? ( sys-power/iasl system-seabios? ( || ( sys-firmware/seabios sys-firmware/seabios-bin ) ) system-ipxe? ( sys-firmware/ipxe[qemu] ) rombios? ( sys-devel/bin86 sys-devel/dev86 ) ) arm64? ( sys-power/iasl rombios? ( sys-devel/bin86 sys-devel/dev86 ) ) doc? ( app-text/ghostscript-gpl app-text/pandoc python_single_target_python3_9? ( dev-python/markdown[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/markdown[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/markdown[python_targets_python3_11(-)] ) dev-texlive/texlive-latexextra media-gfx/transfig ) hvm? ( x11-base/xorg-proto ) qemu? ( app-arch/snappy:= dev-util/meson sdl? ( media-libs/libsdl[X] media-libs/libsdl2[X] ) ) system-qemu? ( app-emulation/qemu[xen] ) ocaml? ( dev-ml/findlib dev-lang/ocaml[ocamlopt] ) python? ( >=dev-lang/swig-4.0.0 ) +DESCRIPTION=Xen tools including QEMU and xl +EAPI=7 +HOMEPAGE=https://xenproject.org +INHERIT=bash-completion-r1 flag-o-matic multilib python-single-r1 readme.gentoo-r1 toolchain-funcs +IUSE=api debug doc +hvm +ipxe lzma ocaml ovmf pygrub python +qemu +qemu-traditional +rombios screen selinux sdl static-libs system-ipxe system-qemu system-seabios systemd zstd python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=GPL-2 +RDEPEND=lzma? ( app-arch/xz-utils ) qemu? ( dev-libs/glib:2 sys-libs/pam ) zstd? ( app-arch/zstd ) app-arch/bzip2 app-arch/zstd dev-libs/libnl:3 dev-libs/lzo:2 dev-libs/yajl sys-apps/util-linux sys-fs/e2fsprogs sys-libs/ncurses sys-libs/zlib python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[ncurses,xml(+),threads(+)] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[ncurses,xml(+),threads(+)] ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[ncurses,xml(+),threads(+)] ) sys-apps/iproute2[-minimal] net-misc/bridge-utils screen? ( app-misc/screen app-admin/logrotate ) selinux? ( sec-policy/selinux-xen ) +REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ipxe? ( rombios ) ovmf? ( hvm ) pygrub? ( python ) rombios? ( hvm ) system-ipxe? ( rombios ) ?? ( ipxe system-ipxe ) ?? ( qemu system-qemu ) +RESTRICT=test +SLOT=0/4.16 +SRC_URI=https://downloads.xenproject.org/release/xen/4.16.3/xen-4.16.3.tar.gz https://www.seabios.org/downloads/seabios-1.16.0.tar.gz ipxe? ( https://xenbits.xen.org/xen-extfiles/ipxe-git-3c040ad387099483102708bb1839110bc788cefb.tar.gz ) ovmf? ( https://github.com/tianocore/edk2/archive/7b4a99be8a39c12d3a7fc4b8db9f0eab4ac688d5.tar.gz -> edk2-7b4a99be8a39c12d3a7fc4b8db9f0eab4ac688d5.tar.gz https://github.com/openssl/openssl/archive/OpenSSL_1_1_1j.tar.gz https://github.com/ucb-bar/berkeley-softfloat-3/archive/b64af41c3276f97f0e181920400ee056b9c88037.tar.gz -> berkeley-softfloat-b64af41c3276f97f0e181920400ee056b9c88037.tar.gz https://github.com/google/brotli/archive/666c3280cc11dc433c303d79a83d4ffbdd12cc8d.tar.gz -> brotli-666c3280cc11dc433c303d79a83d4ffbdd12cc8d.tar.gz ) https://gitweb.gentoo.org/proj/xen-upstream-patches.git/snapshot/xen-upstream-patches-4.16.4-pre-patchset-0.tar.bz2 https://gitweb.gentoo.org/proj/xen-gentoo-patches.git/snapshot/xen-gentoo-patches-4.16.1-gentoo-patchset-2.tar.bz2 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c +_md5_=a2fc61ec2da2f54b8e22db5db98ea12f diff --git a/metadata/md5-cache/app-emulation/xen-tools-4.17.1_pre1 b/metadata/md5-cache/app-emulation/xen-tools-4.17.1_pre1 new file mode 100644 index 000000000000..5d05c2826d8d --- /dev/null +++ b/metadata/md5-cache/app-emulation/xen-tools-4.17.1_pre1 @@ -0,0 +1,17 @@ +BDEPEND=dev-lang/perl sys-devel/bison sys-devel/gettext +DEFINED_PHASES=compile configure install postinst prepare setup +DEPEND=lzma? ( app-arch/xz-utils ) qemu? ( dev-libs/glib:2 sys-libs/pam ) zstd? ( app-arch/zstd ) app-arch/bzip2 app-arch/zstd dev-libs/libnl:3 dev-libs/lzo:2 dev-libs/yajl sys-apps/util-linux sys-fs/e2fsprogs sys-libs/ncurses sys-libs/zlib python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[ncurses,xml(+),threads(+)] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[ncurses,xml(+),threads(+)] ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[ncurses,xml(+),threads(+)] ) app-misc/pax-utils >=sys-kernel/linux-headers-4.11 x11-libs/pixman python_single_target_python3_9? ( dev-python/lxml[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/lxml[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/lxml[python_targets_python3_11(-)] ) x86? ( sys-devel/dev86 system-ipxe? ( sys-firmware/ipxe[qemu] ) sys-power/iasl ) api? ( dev-libs/libxml2 net-misc/curl ) ovmf? ( !arm? ( !arm64? ( dev-lang/nasm ) ) python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite] ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[sqlite] ) ) !amd64? ( >=sys-apps/dtc-1.4.0 ) amd64? ( sys-power/iasl system-seabios? ( || ( sys-firmware/seabios sys-firmware/seabios-bin ) ) system-ipxe? ( sys-firmware/ipxe[qemu] ) rombios? ( sys-devel/bin86 sys-devel/dev86 ) ) arm64? ( sys-power/iasl rombios? ( sys-devel/bin86 sys-devel/dev86 ) ) doc? ( app-text/ghostscript-gpl app-text/pandoc python_single_target_python3_9? ( dev-python/markdown[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/markdown[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/markdown[python_targets_python3_11(-)] ) dev-texlive/texlive-latexextra media-gfx/transfig ) hvm? ( x11-base/xorg-proto ) qemu? ( app-arch/snappy:= dev-util/meson sdl? ( media-libs/libsdl[X] media-libs/libsdl2[X] ) ) system-qemu? ( app-emulation/qemu[xen] ) ocaml? ( dev-ml/findlib dev-lang/ocaml[ocamlopt] ) python? ( >=dev-lang/swig-4.0.0 ) +DESCRIPTION=Xen tools including QEMU and xl +EAPI=7 +HOMEPAGE=https://xenproject.org +INHERIT=bash-completion-r1 flag-o-matic multilib python-single-r1 readme.gentoo-r1 toolchain-funcs +IUSE=api debug doc +hvm +ipxe lzma ocaml ovmf pygrub python +qemu +qemu-traditional +rombios screen selinux sdl static-libs system-ipxe system-qemu system-seabios systemd zstd python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=GPL-2 +RDEPEND=lzma? ( app-arch/xz-utils ) qemu? ( dev-libs/glib:2 sys-libs/pam ) zstd? ( app-arch/zstd ) app-arch/bzip2 app-arch/zstd dev-libs/libnl:3 dev-libs/lzo:2 dev-libs/yajl sys-apps/util-linux sys-fs/e2fsprogs sys-libs/ncurses sys-libs/zlib python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[ncurses,xml(+),threads(+)] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[ncurses,xml(+),threads(+)] ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[ncurses,xml(+),threads(+)] ) sys-apps/iproute2[-minimal] net-misc/bridge-utils screen? ( app-misc/screen app-admin/logrotate ) selinux? ( sec-policy/selinux-xen ) +REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ipxe? ( rombios ) ovmf? ( hvm ) pygrub? ( python ) rombios? ( hvm ) system-ipxe? ( rombios ) ?? ( ipxe system-ipxe ) ?? ( qemu system-qemu ) +RESTRICT=test +SLOT=0/4.17 +SRC_URI=https://downloads.xenproject.org/release/xen/4.17.0/xen-4.17.0.tar.gz https://www.seabios.org/downloads/seabios-1.16.0.tar.gz ipxe? ( https://xenbits.xen.org/xen-extfiles/ipxe-git-3c040ad387099483102708bb1839110bc788cefb.tar.gz ) ovmf? ( https://github.com/tianocore/edk2/archive/7b4a99be8a39c12d3a7fc4b8db9f0eab4ac688d5.tar.gz -> edk2-7b4a99be8a39c12d3a7fc4b8db9f0eab4ac688d5.tar.gz https://github.com/openssl/openssl/archive/OpenSSL_1_1_1j.tar.gz https://github.com/ucb-bar/berkeley-softfloat-3/archive/b64af41c3276f97f0e181920400ee056b9c88037.tar.gz -> berkeley-softfloat-b64af41c3276f97f0e181920400ee056b9c88037.tar.gz https://github.com/google/brotli/archive/666c3280cc11dc433c303d79a83d4ffbdd12cc8d.tar.gz -> brotli-666c3280cc11dc433c303d79a83d4ffbdd12cc8d.tar.gz ) https://gitweb.gentoo.org/proj/xen-upstream-patches.git/snapshot/xen-upstream-patches-4.17.1-pre-patchset-0.tar.bz2 https://gitweb.gentoo.org/proj/xen-gentoo-patches.git/snapshot/xen-gentoo-patches-4.17.0-gentoo-patchset-0.tar.bz2 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c +_md5_=1b6fa2a94faebd73226a3f522cfa336e diff --git a/metadata/md5-cache/app-forensics/Manifest.gz b/metadata/md5-cache/app-forensics/Manifest.gz index b438e0d4fd2b..73cdb782d0d8 100644 Binary files a/metadata/md5-cache/app-forensics/Manifest.gz and b/metadata/md5-cache/app-forensics/Manifest.gz differ diff --git a/metadata/md5-cache/app-forensics/aflplusplus-4.06c b/metadata/md5-cache/app-forensics/aflplusplus-4.06c new file mode 100644 index 000000000000..7154e40a67ba --- /dev/null +++ b/metadata/md5-cache/app-forensics/aflplusplus-4.06c @@ -0,0 +1,16 @@ +DEFINED_PHASES=compile install postinst setup test +DEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=sys-devel/llvm-13:= || ( sys-devel/clang:13 sys-devel/clang:14 sys-devel/clang:16 ) !app-forensics/afl test? ( dev-util/cmocka ) !!sys-devel/llvm:0 +DESCRIPTION=A fork of AFL, the popular compile-time instrumentation fuzzer +EAPI=8 +HOMEPAGE=https://github.com/AFLplusplus/AFLplusplus +INHERIT=toolchain-funcs llvm optfeature python-single-r1 +IUSE=test python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 +KEYWORDS=~amd64 ~arm64 +LICENSE=Apache-2.0 +RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=sys-devel/llvm-13:= || ( sys-devel/clang:13 sys-devel/clang:14 sys-devel/clang:16 ) !app-forensics/afl +REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) +RESTRICT=test +SLOT=0 +SRC_URI=https://github.com/AFLplusplus/AFLplusplus/archive/4.06c.tar.gz -> aflplusplus-4.06c.tar.gz https://dev.gentoo.org/~sam/distfiles/app-forensics/aflplusplus/aflplusplus-4.06c-patches.tar.xz +_eclasses_=llvm 4cc6f8e29d24a8011266413e74c728bb multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=c15d283d6600ab2c62b50dc4206a5f3c diff --git a/metadata/md5-cache/app-i18n/Manifest.gz b/metadata/md5-cache/app-i18n/Manifest.gz index 9e57b58b4b5a..d7487af40482 100644 Binary files a/metadata/md5-cache/app-i18n/Manifest.gz and b/metadata/md5-cache/app-i18n/Manifest.gz differ diff --git a/metadata/md5-cache/app-i18n/anthy-9100h-r3 b/metadata/md5-cache/app-i18n/anthy-9100h-r3 index 029ebe0f06d7..fe297f949e25 100644 --- a/metadata/md5-cache/app-i18n/anthy-9100h-r3 +++ b/metadata/md5-cache/app-i18n/anthy-9100h-r3 @@ -10,5 +10,5 @@ LICENSE=GPL-2 LGPL-2.1 RDEPEND=emacs? ( >=app-editors/emacs-23.1:* ) SLOT=0 SRC_URI=mirror://sourceforge.jp/anthy/37536/anthy-9100h.tar.gz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=cf19a355d47b7b2f26c95494a383ea96 diff --git a/metadata/md5-cache/app-i18n/mozc-2.26.4220_p20201212102434_p20201219202429 b/metadata/md5-cache/app-i18n/mozc-2.26.4220_p20201212102434_p20201219202429 index f07b88433f52..1b58b77edc75 100644 --- a/metadata/md5-cache/app-i18n/mozc-2.26.4220_p20201212102434_p20201219202429 +++ b/metadata/md5-cache/app-i18n/mozc-2.26.4220_p20201212102434_p20201219202429 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( emacs fcitx4 ibus ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/google/mozc/archive/9ba59b64d53365c1fe93c1c245b4ec3e35bdadf0.tar.gz -> mozc-2.26.4220-20201212102434.tar.gz https://github.com/hiroyuki-komatsu/japanese-usage-dictionary/archive/a4a66772e33746b91e99caceecced9a28507e925.tar.gz -> japanese-usage-dictionary-20180701040110.tar.gz fcitx4? ( https://github.com/fcitx/mozc/archive/1ea089debc31ff216473369ad71c08318384ee06.tar.gz -> fcitx-mozc-2.26.4220-20201219202429.tar.gz ) -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=56ec4ede325851e1dee0698be7c64b50 diff --git a/metadata/md5-cache/app-i18n/skktools-1.3.4-r1 b/metadata/md5-cache/app-i18n/skktools-1.3.4-r1 index 366e4dc385f6..f5f36a087e1c 100644 --- a/metadata/md5-cache/app-i18n/skktools-1.3.4-r1 +++ b/metadata/md5-cache/app-i18n/skktools-1.3.4-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ RDEPEND=dev-libs/glib:2 sys-libs/gdbm emacs? ( >=app-editors/emacs-23.1:* ) SLOT=0 SRC_URI=https://github.com/skk-dev/skktools/archive/skktools-1_3_4.tar.gz -> skktools-1.3.4.tar.gz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 vcs-snapshot eab6d8533446763c2e9777d8bbd1594e +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 vcs-snapshot eab6d8533446763c2e9777d8bbd1594e _md5_=04536ea64f09934c16e0d26d3804cf9b diff --git a/metadata/md5-cache/app-i18n/transifex-client-1.6.4 b/metadata/md5-cache/app-i18n/transifex-client-1.6.4 index a4b58c533a25..69809bd335bf 100644 --- a/metadata/md5-cache/app-i18n/transifex-client-1.6.4 +++ b/metadata/md5-cache/app-i18n/transifex-client-1.6.4 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD BSD-2 ISC LGPL-3 MIT MPL-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/transifex/cli/archive/refs/tags/v1.6.4.tar.gz -> transifex-client-1.6.4.tar.gz https://gitlab.com/api/v4/projects/35204985/packages/generic/transifex-client/1.6.4/transifex-client-1.6.4-deps.tar.bz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=c080ccbe8b0efe9e985f84704cdd1aab diff --git a/metadata/md5-cache/app-i18n/transifex-client-1.6.5 b/metadata/md5-cache/app-i18n/transifex-client-1.6.5 index 65795a04cc3f..75d3bf878913 100644 --- a/metadata/md5-cache/app-i18n/transifex-client-1.6.5 +++ b/metadata/md5-cache/app-i18n/transifex-client-1.6.5 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD BSD-2 ISC LGPL-3 MIT MPL-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/transifex/cli/archive/refs/tags/v1.6.5.tar.gz -> transifex-client-1.6.5.tar.gz https://gitlab.com/api/v4/projects/35204985/packages/generic/transifex-client/1.6.5/transifex-client-1.6.5-deps.tar.bz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=ec5f57229aa72ae92573874b583f04e8 diff --git a/metadata/md5-cache/app-i18n/transifex-client-1.6.7 b/metadata/md5-cache/app-i18n/transifex-client-1.6.7 index c00dcb5041fe..ea59cdfad4c3 100644 --- a/metadata/md5-cache/app-i18n/transifex-client-1.6.7 +++ b/metadata/md5-cache/app-i18n/transifex-client-1.6.7 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD BSD-2 ISC LGPL-3 MIT MPL-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/transifex/cli/archive/refs/tags/v1.6.7.tar.gz -> transifex-client-1.6.7.tar.gz https://gitlab.com/api/v4/projects/35204985/packages/generic/transifex-client/1.6.7/transifex-client-1.6.7-deps.tar.bz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=ec5f57229aa72ae92573874b583f04e8 diff --git a/metadata/md5-cache/app-i18n/uim-1.8.9 b/metadata/md5-cache/app-i18n/uim-1.8.9 index 82df817dd657..717eef482fde 100644 --- a/metadata/md5-cache/app-i18n/uim-1.8.9 +++ b/metadata/md5-cache/app-i18n/uim-1.8.9 @@ -13,5 +13,5 @@ REQUIRED_USE=gtk? ( X ) gtk2? ( X ) qt5? ( X ) xft? ( X ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/uim/uim/releases/download/1.8.9/uim-1.8.9.tar.bz2 -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnome2-utils b0183db3b2e07b18f3b77bffec72e116 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnome2-utils b0183db3b2e07b18f3b77bffec72e116 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=67fef3f486b29fa4c5848e5e7912db25 diff --git a/metadata/md5-cache/app-i18n/uim-1.8.9-r1 b/metadata/md5-cache/app-i18n/uim-1.8.9-r1 index 4192622ea913..516c5d545b83 100644 --- a/metadata/md5-cache/app-i18n/uim-1.8.9-r1 +++ b/metadata/md5-cache/app-i18n/uim-1.8.9-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=gtk? ( X ) gtk2? ( X ) qt5? ( X ) xft? ( X ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/uim/uim/releases/download/1.8.9/uim-1.8.9.tar.bz2 -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnome2-utils b0183db3b2e07b18f3b77bffec72e116 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnome2-utils b0183db3b2e07b18f3b77bffec72e116 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=a5aa6cb0907938d8a91a304845b317e7 diff --git a/metadata/md5-cache/app-i18n/uim-1.8.9_pre20210103-r1 b/metadata/md5-cache/app-i18n/uim-1.8.9_pre20210103-r1 index 93f640a0906f..f5f25ad4e0d0 100644 --- a/metadata/md5-cache/app-i18n/uim-1.8.9_pre20210103-r1 +++ b/metadata/md5-cache/app-i18n/uim-1.8.9_pre20210103-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=gtk? ( X ) gtk2? ( X ) qt5? ( X ) xft? ( X ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/uim/uim/archive/d1ac9d9315ff8c57c713b502544fef9b3a83b3e5.tar.gz -> uim-1.8.9_pre20210103.tar.gz https://github.com/uim/sigscheme/releases/download/0.9.1/sigscheme-0.9.1.tar.bz2 -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 1d6e8d43be4713f04a441f721d890d48 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnome2-utils b0183db3b2e07b18f3b77bffec72e116 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 qmake-utils 59420c906278d16deaaa629f9d115707 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e vcs-snapshot eab6d8533446763c2e9777d8bbd1594e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common dcd21c5d379fc2217e95f529504c5fe0 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnome2-utils b0183db3b2e07b18f3b77bffec72e116 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 qmake-utils 59420c906278d16deaaa629f9d115707 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e vcs-snapshot eab6d8533446763c2e9777d8bbd1594e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=709d1c0519649264f0acffd7632d3fd0 diff --git a/metadata/md5-cache/app-metrics/Manifest.gz b/metadata/md5-cache/app-metrics/Manifest.gz index 40a5917d1a7c..803ff5976740 100644 Binary files a/metadata/md5-cache/app-metrics/Manifest.gz and b/metadata/md5-cache/app-metrics/Manifest.gz differ diff --git a/metadata/md5-cache/app-metrics/alertmanager-0.24.0 b/metadata/md5-cache/app-metrics/alertmanager-0.24.0 index 4d22d5ba510a..d7b5ee0322d8 100644 --- a/metadata/md5-cache/app-metrics/alertmanager-0.24.0 +++ b/metadata/md5-cache/app-metrics/alertmanager-0.24.0 @@ -11,5 +11,5 @@ RDEPEND=acct-group/alertmanager acct-user/alertmanager RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/prometheus/alertmanager/archive/v0.24.0.tar.gz -> alertmanager-0.24.0.tar.gz https://dev.gentoo.org/~williamh/dist/alertmanager-0.24.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=67909f36dea7e2b89471c65a213a4f6d diff --git a/metadata/md5-cache/app-metrics/bind_exporter-0.3.0 b/metadata/md5-cache/app-metrics/bind_exporter-0.3.0 index 8a05d693ee63..bf8a7fb2ab46 100644 --- a/metadata/md5-cache/app-metrics/bind_exporter-0.3.0 +++ b/metadata/md5-cache/app-metrics/bind_exporter-0.3.0 @@ -11,5 +11,5 @@ RDEPEND=acct-group/bind_exporter acct-user/bind_exporter RESTRICT=strip SLOT=0 SRC_URI=https://github.com/digitalocean/bind_exporter/archive/v0.3.0.tar.gz -> bind_exporter-0.3.0.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=4adddd425849870e27fe8225a5b89ec5 diff --git a/metadata/md5-cache/app-metrics/blackbox_exporter-0.21.1 b/metadata/md5-cache/app-metrics/blackbox_exporter-0.21.1 index 70469c8a20bf..8e860746f51f 100644 --- a/metadata/md5-cache/app-metrics/blackbox_exporter-0.21.1 +++ b/metadata/md5-cache/app-metrics/blackbox_exporter-0.21.1 @@ -13,5 +13,5 @@ RDEPEND=acct-group/blackbox_exporter acct-user/blackbox_exporter RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/prometheus/blackbox_exporter/archive/v0.21.1.tar.gz -> blackbox_exporter-0.21.1.tar.gz https://dev.gentoo.org/~williamh/dist/blackbox_exporter-0.21.1-deps.tar.xz -_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=80200e50dd6f144a34d0ba2ee0bcd62d diff --git a/metadata/md5-cache/app-metrics/carbonapi-booking-0.3.0-r1 b/metadata/md5-cache/app-metrics/carbonapi-booking-0.3.0-r1 index 768143a54cd3..70d18ddfdb48 100644 --- a/metadata/md5-cache/app-metrics/carbonapi-booking-0.3.0-r1 +++ b/metadata/md5-cache/app-metrics/carbonapi-booking-0.3.0-r1 @@ -11,5 +11,5 @@ RDEPEND=app-arch/bzip2 dev-libs/expat media-libs/fontconfig media-libs/freetype RESTRICT=strip SLOT=0 SRC_URI=https://github.com/bookingcom/carbonapi/archive/v0.3.0.tar.gz -> carbonapi-booking-0.3.0.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=125bba23fb6afc74668b9467bd8847c3 diff --git a/metadata/md5-cache/app-metrics/ceph_exporter-4.0.1 b/metadata/md5-cache/app-metrics/ceph_exporter-4.0.1 index 9fc3cb8273d3..94a3052002ca 100644 --- a/metadata/md5-cache/app-metrics/ceph_exporter-4.0.1 +++ b/metadata/md5-cache/app-metrics/ceph_exporter-4.0.1 @@ -11,5 +11,5 @@ RDEPEND=acct-group/ceph acct-user/ceph =sys-cluster/ceph-16* RESTRICT=strip SLOT=0 SRC_URI=https://github.com/digitalocean/ceph_exporter/archive/4.0.1.tar.gz -> ceph_exporter-4.0.1.tar.gz https://dev.gentoo.org/~williamh/dist/ceph_exporter-4.0.1-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=9ab21cb1e9a10111d4b68b6d4b47b89f diff --git a/metadata/md5-cache/app-metrics/ceph_exporter-4.1.1 b/metadata/md5-cache/app-metrics/ceph_exporter-4.1.1 index 98114a53d76a..9ad633d12896 100644 --- a/metadata/md5-cache/app-metrics/ceph_exporter-4.1.1 +++ b/metadata/md5-cache/app-metrics/ceph_exporter-4.1.1 @@ -11,5 +11,5 @@ RDEPEND=acct-group/ceph acct-user/ceph =sys-cluster/ceph-16* RESTRICT=strip SLOT=0 SRC_URI=https://github.com/digitalocean/ceph_exporter/archive/4.1.1.tar.gz -> ceph_exporter-4.1.1.tar.gz https://dev.gentoo.org/~williamh/dist/ceph_exporter-4.1.1-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=b6f1dad6b54ffd844812d625c4dddc70 diff --git a/metadata/md5-cache/app-metrics/ceph_exporter-4.1.1-r1 b/metadata/md5-cache/app-metrics/ceph_exporter-4.1.1-r1 index 4e0e4bc1f399..993720ab1e07 100644 --- a/metadata/md5-cache/app-metrics/ceph_exporter-4.1.1-r1 +++ b/metadata/md5-cache/app-metrics/ceph_exporter-4.1.1-r1 @@ -11,5 +11,5 @@ RDEPEND=acct-group/ceph acct-user/ceph sys-cluster/ceph RESTRICT=strip SLOT=0 SRC_URI=https://github.com/digitalocean/ceph_exporter/archive/4.1.1.tar.gz -> ceph_exporter-4.1.1.tar.gz https://dev.gentoo.org/~williamh/dist/ceph_exporter-4.1.1-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=783d59b0a31a80ace472a91f445d10d5 diff --git a/metadata/md5-cache/app-metrics/consul_exporter-0.7.1 b/metadata/md5-cache/app-metrics/consul_exporter-0.7.1 index acb8d9c42534..e1b20dabf019 100644 --- a/metadata/md5-cache/app-metrics/consul_exporter-0.7.1 +++ b/metadata/md5-cache/app-metrics/consul_exporter-0.7.1 @@ -11,5 +11,5 @@ RDEPEND=acct-group/consul_exporter acct-user/consul_exporter RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/prometheus/consul_exporter/archive/v0.7.1.tar.gz -> consul_exporter-0.7.1.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=459079c7977600aedf68f472ae046d03 diff --git a/metadata/md5-cache/app-metrics/dnsmasq_exporter-0.2.0-r1 b/metadata/md5-cache/app-metrics/dnsmasq_exporter-0.2.0-r1 index d6c4b0f1bee4..33a9b45121fc 100644 --- a/metadata/md5-cache/app-metrics/dnsmasq_exporter-0.2.0-r1 +++ b/metadata/md5-cache/app-metrics/dnsmasq_exporter-0.2.0-r1 @@ -11,5 +11,5 @@ RDEPEND=acct-group/dnsmasq_exporter acct-user/dnsmasq_exporter RESTRICT=strip SLOT=0 SRC_URI=https://github.com/google/dnsmasq_exporter/archive/v0.2.0.tar.gz -> dnsmasq_exporter-0.2.0.tar.gz https://dev.gentoo.org/~williamh/dist/dnsmasq_exporter-0.2.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=c365acfbabbe6bdbe7a605d4dd13b4fa diff --git a/metadata/md5-cache/app-metrics/elasticsearch_exporter-1.3.0 b/metadata/md5-cache/app-metrics/elasticsearch_exporter-1.3.0 index 722668facd8a..01cea8b81933 100644 --- a/metadata/md5-cache/app-metrics/elasticsearch_exporter-1.3.0 +++ b/metadata/md5-cache/app-metrics/elasticsearch_exporter-1.3.0 @@ -11,5 +11,5 @@ RDEPEND=acct-group/elasticsearch_exporter acct-user/elasticsearch_exporter RESTRICT=strip SLOT=0 SRC_URI=https://github.com/justwatchcom/elasticsearch_exporter/archive/v1.3.0.tar.gz -> elasticsearch_exporter-1.3.0.tar.gz https://dev.gentoo.org/~williamh/dist/elasticsearch_exporter-1.3.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=3ad70b210ef1694e9c32eb6032919902 diff --git a/metadata/md5-cache/app-metrics/exabgp_exporter-1.0.0_p20200718 b/metadata/md5-cache/app-metrics/exabgp_exporter-1.0.0_p20200718 index 682cb777bb55..cdeb1c73387f 100644 --- a/metadata/md5-cache/app-metrics/exabgp_exporter-1.0.0_p20200718 +++ b/metadata/md5-cache/app-metrics/exabgp_exporter-1.0.0_p20200718 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/lusis/exabgp_exporter/archive/6fe8ef056a87881c8d7568cba83b3c18f7165d3a.tar.gz -> exabgp_exporter-1.0.0_p20200718.tar.gz https://dev.gentoo.org/~zmedico/dist/exabgp_exporter-1.0.0_p20200718-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=1c58b02f629f26520fef7d93e3a73bfa diff --git a/metadata/md5-cache/app-metrics/fritzbox_smarthome_exporter-0.0.8 b/metadata/md5-cache/app-metrics/fritzbox_smarthome_exporter-0.0.8 index b60d0ff12b2c..d83ffd2bfeae 100644 --- a/metadata/md5-cache/app-metrics/fritzbox_smarthome_exporter-0.0.8 +++ b/metadata/md5-cache/app-metrics/fritzbox_smarthome_exporter-0.0.8 @@ -11,5 +11,5 @@ RDEPEND=acct-group/fritzbox_smarthome_exporter acct-user/fritzbox_smarthome_expo RESTRICT=strip SLOT=0 SRC_URI=https://github.com/jayme-github/fritzbox_smarthome_exporter/archive/v0.0.8.tar.gz -> fritzbox_smarthome_exporter-0.0.8.tar.gz https://dev.gentoo.org/~williamh/dist/fritzbox_smarthome_exporter-0.0.8-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=78db56c3912c3d2db3bccf265e2388a2 diff --git a/metadata/md5-cache/app-metrics/github-exporter-1.0.3 b/metadata/md5-cache/app-metrics/github-exporter-1.0.3 index f681246cb7ba..887b4b614c6b 100644 --- a/metadata/md5-cache/app-metrics/github-exporter-1.0.3 +++ b/metadata/md5-cache/app-metrics/github-exporter-1.0.3 @@ -10,5 +10,5 @@ RDEPEND=acct-group/github-exporter acct-user/github-exporter RESTRICT=strip SLOT=0 SRC_URI=https://github.com/infinityworks/github-exporter/archive/1.0.3.tar.gz -> github-exporter-1.0.3.tar.gz https://dev.gentoo.org/~williamh/dist/github-exporter-1.0.3-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=fef53954faa94a5c742a1bf106dfc89e diff --git a/metadata/md5-cache/app-metrics/go-carbon-0.17.1 b/metadata/md5-cache/app-metrics/go-carbon-0.17.1 index f052eb57d4ea..1a1cf8b636a7 100644 --- a/metadata/md5-cache/app-metrics/go-carbon-0.17.1 +++ b/metadata/md5-cache/app-metrics/go-carbon-0.17.1 @@ -10,5 +10,5 @@ RDEPEND=acct-group/carbon acct-user/carbon RESTRICT=strip SLOT=0 SRC_URI=https://github.com/go-graphite/go-carbon/archive/v0.17.1.tar.gz -> go-carbon-0.17.1.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=65ed749108038c4494bacdb200e1d7a6 diff --git a/metadata/md5-cache/app-metrics/grok_exporter-1.0.0_rc5 b/metadata/md5-cache/app-metrics/grok_exporter-1.0.0_rc5 index ab4959453859..e31022463141 100644 --- a/metadata/md5-cache/app-metrics/grok_exporter-1.0.0_rc5 +++ b/metadata/md5-cache/app-metrics/grok_exporter-1.0.0_rc5 @@ -11,5 +11,5 @@ RDEPEND=acct-group/grok_exporter acct-user/grok_exporter >=dev-libs/oniguruma-6. RESTRICT=strip strip SLOT=0 SRC_URI=https://github.com/fstab/grok_exporter/archive/v1.0.0.RC5.tar.gz -> grok_exporter-1.0.0_rc5.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=40aeaa057b6cfac3395e8bcfd3e9307b diff --git a/metadata/md5-cache/app-metrics/memcached_exporter-0.10.0 b/metadata/md5-cache/app-metrics/memcached_exporter-0.10.0 index 621fe5952e82..a86df6d2bffd 100644 --- a/metadata/md5-cache/app-metrics/memcached_exporter-0.10.0 +++ b/metadata/md5-cache/app-metrics/memcached_exporter-0.10.0 @@ -11,5 +11,5 @@ RDEPEND=acct-group/memcached_exporter acct-user/memcached_exporter RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/prometheus/memcached_exporter/archive/v0.10.0.tar.gz -> memcached_exporter-0.10.0.tar.gz https://dev.gentoo.org/~williamh/dist/memcached_exporter-0.10.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=db0316a05bb9a65ec5d65b17f04ef382 diff --git a/metadata/md5-cache/app-metrics/mongodb_exporter-0.11.1 b/metadata/md5-cache/app-metrics/mongodb_exporter-0.11.1 index b10973723a50..7485de6113f8 100644 --- a/metadata/md5-cache/app-metrics/mongodb_exporter-0.11.1 +++ b/metadata/md5-cache/app-metrics/mongodb_exporter-0.11.1 @@ -11,5 +11,5 @@ RDEPEND=acct-group/mongodb_exporter acct-user/mongodb_exporter RESTRICT=strip SLOT=0 SRC_URI=https://github.com/percona/mongodb_exporter/archive/v0.11.1.tar.gz -> mongodb_exporter-0.11.1.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=868ffa873f65eb02a762d506478e5833 diff --git a/metadata/md5-cache/app-metrics/mysqld_exporter-0.12.1_p20200622 b/metadata/md5-cache/app-metrics/mysqld_exporter-0.12.1_p20200622 index 4198c33e65b0..05e3b475ac0f 100644 --- a/metadata/md5-cache/app-metrics/mysqld_exporter-0.12.1_p20200622 +++ b/metadata/md5-cache/app-metrics/mysqld_exporter-0.12.1_p20200622 @@ -11,5 +11,5 @@ RDEPEND=acct-group/mysqld_exporter acct-user/mysqld_exporter RESTRICT=strip SLOT=0 SRC_URI=https://github.com/prometheus/mysqld_exporter/archive/f5d5289f7627016d8b53b0b3fa7615da8a73b56a.tar.gz -> mysqld_exporter-0.12.1_p20200622.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=1fb63ba8ada096ca4f450a4f3fd3ca23 diff --git a/metadata/md5-cache/app-metrics/mysqld_exporter-0.14.0 b/metadata/md5-cache/app-metrics/mysqld_exporter-0.14.0 index 13dc1dfb18e6..bf97fa6fb4da 100644 --- a/metadata/md5-cache/app-metrics/mysqld_exporter-0.14.0 +++ b/metadata/md5-cache/app-metrics/mysqld_exporter-0.14.0 @@ -11,5 +11,5 @@ RDEPEND=acct-group/mysqld_exporter acct-user/mysqld_exporter RESTRICT=strip SLOT=0 SRC_URI=https://github.com/prometheus/mysqld_exporter/archive/refs/tags/v0.14.0.tar.gz -> mysqld_exporter-0.14.0.tar.gz https://dev.gentoo.org/~robbat2/distfiles/mysqld_exporter-0.14.0-vendor.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=a1d7779fd2c821dd5dde7056b79f1cb1 diff --git a/metadata/md5-cache/app-metrics/mysqld_exporter-0.14.0_p20221209 b/metadata/md5-cache/app-metrics/mysqld_exporter-0.14.0_p20221209 index 3751003f687e..cb3dfe0c2a87 100644 --- a/metadata/md5-cache/app-metrics/mysqld_exporter-0.14.0_p20221209 +++ b/metadata/md5-cache/app-metrics/mysqld_exporter-0.14.0_p20221209 @@ -11,5 +11,5 @@ RDEPEND=acct-group/mysqld_exporter acct-user/mysqld_exporter RESTRICT=strip SLOT=0 SRC_URI=https://github.com/prometheus/mysqld_exporter/archive/530e351d293dd632f31b80947f5ca420ef17adaf.tar.gz -> mysqld_exporter-0.14.0_p20221209.tar.gz https://dev.gentoo.org/~robbat2/distfiles/mysqld_exporter-530e351d293dd632f31b80947f5ca420ef17adaf-vendor.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=b74d2d0309bf157ac2f27b1a50498e24 diff --git a/metadata/md5-cache/app-metrics/mysqld_exporter-0.14.0_p20230328 b/metadata/md5-cache/app-metrics/mysqld_exporter-0.14.0_p20230328 index b4c95e5f9905..c32b06b64fe0 100644 --- a/metadata/md5-cache/app-metrics/mysqld_exporter-0.14.0_p20230328 +++ b/metadata/md5-cache/app-metrics/mysqld_exporter-0.14.0_p20230328 @@ -11,5 +11,5 @@ RDEPEND=acct-group/mysqld_exporter acct-user/mysqld_exporter RESTRICT=strip SLOT=0 SRC_URI=https://github.com/prometheus/mysqld_exporter/archive/fad2c0ccd8c0df8fed91a81463e930e4485fdfee.tar.gz -> mysqld_exporter-0.14.0_p20230328.tar.gz https://dev.gentoo.org/~robbat2/distfiles/mysqld_exporter-fad2c0ccd8c0df8fed91a81463e930e4485fdfee-vendor.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=9e42b19d44e6b7ec59d8e2463d87f8ce diff --git a/metadata/md5-cache/app-metrics/nginx-vts-exporter-0.10.7-r1 b/metadata/md5-cache/app-metrics/nginx-vts-exporter-0.10.7-r1 index 73cba7ad2b98..058f404d8e32 100644 --- a/metadata/md5-cache/app-metrics/nginx-vts-exporter-0.10.7-r1 +++ b/metadata/md5-cache/app-metrics/nginx-vts-exporter-0.10.7-r1 @@ -11,5 +11,5 @@ RDEPEND=acct-group/nginx-vts-exporter acct-user/nginx-vts-exporter RESTRICT=strip SLOT=0 SRC_URI=https://github.com/hnlq715/nginx-vts-exporter/archive/v0.10.7.tar.gz -> nginx-vts-exporter-0.10.7.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=967377a43cf695ca5509aa6e6cd824ef diff --git a/metadata/md5-cache/app-metrics/node_exporter-1.3.1 b/metadata/md5-cache/app-metrics/node_exporter-1.3.1 index 50afcbf0687e..abe017ff575e 100644 --- a/metadata/md5-cache/app-metrics/node_exporter-1.3.1 +++ b/metadata/md5-cache/app-metrics/node_exporter-1.3.1 @@ -12,5 +12,5 @@ RDEPEND=acct-group/node_exporter acct-user/node_exporter selinux? ( sec-policy/s RESTRICT=strip SLOT=0 SRC_URI=https://github.com/prometheus/node_exporter/archive/v1.3.1.tar.gz -> node_exporter-1.3.1.tar.gz https://dev.gentoo.org/~williamh/dist/node_exporter-1.3.1-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=c69a4ed84075807a2407d368ed777a1d diff --git a/metadata/md5-cache/app-metrics/node_exporter-1.4.0 b/metadata/md5-cache/app-metrics/node_exporter-1.4.0 index 2d509896df28..c9ff9a83f884 100644 --- a/metadata/md5-cache/app-metrics/node_exporter-1.4.0 +++ b/metadata/md5-cache/app-metrics/node_exporter-1.4.0 @@ -12,5 +12,5 @@ RDEPEND=acct-group/node_exporter acct-user/node_exporter selinux? ( sec-policy/s RESTRICT=strip SLOT=0 SRC_URI=https://github.com/prometheus/node_exporter/archive/v1.4.0.tar.gz -> node_exporter-1.4.0.tar.gz https://dev.gentoo.org/~williamh/dist/node_exporter-1.4.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=859570ef82f2d4ca308044061ada8ed5 diff --git a/metadata/md5-cache/app-metrics/openvpn_exporter-0.3.0 b/metadata/md5-cache/app-metrics/openvpn_exporter-0.3.0 index 81d681727d25..95410bfcc3fd 100644 --- a/metadata/md5-cache/app-metrics/openvpn_exporter-0.3.0 +++ b/metadata/md5-cache/app-metrics/openvpn_exporter-0.3.0 @@ -11,5 +11,5 @@ RDEPEND=acct-user/openvpn_exporter acct-group/openvpn_exporter RESTRICT=strip SLOT=0 SRC_URI=https://github.com/kumina/openvpn_exporter/archive/v0.3.0.tar.gz -> openvpn_exporter-0.3.0.tar.gz https://dev.gentoo.org/~williamh/dist/openvpn_exporter-0.3.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=ff205a972480ec1777321679dd4ede07 diff --git a/metadata/md5-cache/app-metrics/portage-exporter-0.0.1 b/metadata/md5-cache/app-metrics/portage-exporter-0.0.1 index 901d5f4d998b..140837b5a2c0 100644 --- a/metadata/md5-cache/app-metrics/portage-exporter-0.0.1 +++ b/metadata/md5-cache/app-metrics/portage-exporter-0.0.1 @@ -9,5 +9,5 @@ LICENSE=GPL-3 Apache-2.0 BSD MIT RESTRICT=strip SLOT=0 SRC_URI=https://github.com/projg2/portage-exporter/releases/download/v0.0.1/portage-exporter-0.0.1.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=bbfd6cda3f3c7c0086b24411c097abe1 diff --git a/metadata/md5-cache/app-metrics/portage-exporter-0_p20230307 b/metadata/md5-cache/app-metrics/portage-exporter-0_p20230307 index 4f4aa99744b8..971a05b03e1d 100644 --- a/metadata/md5-cache/app-metrics/portage-exporter-0_p20230307 +++ b/metadata/md5-cache/app-metrics/portage-exporter-0_p20230307 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD MIT GPL-3 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/projg2/portage-exporter/archive/ae39c6be10364896683ab1af0512ee8453bc153e.tar.gz -> portage-exporter-0_p20230307.tar.gz https://dev.gentoo.org/~robbat2/distfiles/portage-exporter-ae39c6be10364896683ab1af0512ee8453bc153e-vendor.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=b191237e8f63d779339900125b40f378 diff --git a/metadata/md5-cache/app-metrics/postgres_exporter-0.10.1 b/metadata/md5-cache/app-metrics/postgres_exporter-0.10.1 index 5a6106022c44..6d48405564da 100644 --- a/metadata/md5-cache/app-metrics/postgres_exporter-0.10.1 +++ b/metadata/md5-cache/app-metrics/postgres_exporter-0.10.1 @@ -11,5 +11,5 @@ RDEPEND=acct-group/postgres_exporter acct-user/postgres_exporter RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/prometheus-community/postgres_exporter/archive/v0.10.1.tar.gz -> postgres_exporter-0.10.1.tar.gz https://dev.gentoo.org/~williamh/dist/postgres_exporter-0.10.1-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=f498cb4722edf83a93b35ccc742d9e21 diff --git a/metadata/md5-cache/app-metrics/process-exporter-0.7.10 b/metadata/md5-cache/app-metrics/process-exporter-0.7.10 index 3bff33f690bc..21dabf43f29c 100644 --- a/metadata/md5-cache/app-metrics/process-exporter-0.7.10 +++ b/metadata/md5-cache/app-metrics/process-exporter-0.7.10 @@ -9,5 +9,5 @@ LICENSE=MIT Apache-2.0 BSD BSD-2 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/ncabatoff/process-exporter/archive/v0.7.10.tar.gz -> process-exporter-0.7.10.tar.gz https://dev.gentoo.org/~williamh/dist/process-exporter-0.7.10-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=eccb52df3af86bc30bcd14159a9a442a diff --git a/metadata/md5-cache/app-metrics/prom2json-1.3.0 b/metadata/md5-cache/app-metrics/prom2json-1.3.0 index 6581254f1c37..d6027a4610e8 100644 --- a/metadata/md5-cache/app-metrics/prom2json-1.3.0 +++ b/metadata/md5-cache/app-metrics/prom2json-1.3.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/prometheus/prom2json/archive/v1.3.0.tar.gz -> prom2json-1.3.0.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=89b0ef466a46c1682dca60e23f3e5fdd diff --git a/metadata/md5-cache/app-metrics/prometheus-2.40.4 b/metadata/md5-cache/app-metrics/prometheus-2.40.4 index 69e26a0b0206..33c1bc26bbde 100644 --- a/metadata/md5-cache/app-metrics/prometheus-2.40.4 +++ b/metadata/md5-cache/app-metrics/prometheus-2.40.4 @@ -11,5 +11,5 @@ RDEPEND=acct-group/prometheus acct-user/prometheus RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/prometheus/prometheus/archive/v2.40.4.tar.gz -> prometheus-2.40.4.tar.gz https://dev.gentoo.org/~williamh/dist/prometheus-2.40.4-deps.tar.xz https://dev.gentoo.org/~williamh/dist/prometheus-2.40.4-assets.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=08fa9b5b95cdd1bed1f6626da8b8a89a diff --git a/metadata/md5-cache/app-metrics/prometheus-2.43.0-r2 b/metadata/md5-cache/app-metrics/prometheus-2.43.0-r2 index 4f777facdf4b..8426884f5ad0 100644 --- a/metadata/md5-cache/app-metrics/prometheus-2.43.0-r2 +++ b/metadata/md5-cache/app-metrics/prometheus-2.43.0-r2 @@ -11,5 +11,5 @@ RDEPEND=acct-group/prometheus acct-user/prometheus RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/prometheus/prometheus/archive/v2.43.0.tar.gz -> prometheus-2.43.0.tar.gz https://dev.gentoo.org/~williamh/dist/prometheus-2.43.0-deps.tar.xz https://dev.gentoo.org/~williamh/dist/prometheus-2.43.0-assets.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=404253885ea87cfd99b02a4131daffc6 diff --git a/metadata/md5-cache/app-metrics/prometheus-lvm-exporter-0.3.2 b/metadata/md5-cache/app-metrics/prometheus-lvm-exporter-0.3.2 index 22d44a903bc1..4fd4ca8db767 100644 --- a/metadata/md5-cache/app-metrics/prometheus-lvm-exporter-0.3.2 +++ b/metadata/md5-cache/app-metrics/prometheus-lvm-exporter-0.3.2 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD MIT RESTRICT=strip SLOT=0 SRC_URI=https://github.com/hansmi/prometheus-lvm-exporter/archive/refs/tags/v0.3.2.tar.gz -> prometheus-lvm-exporter-0.3.2.tar.gz https://dev.gentoo.org/~robbat2/distfiles/prometheus-lvm-exporter-0.3.2-vendor.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=303ebe3fbeb5fb79fadcf256d3745048 diff --git a/metadata/md5-cache/app-metrics/pushgateway-1.5.1 b/metadata/md5-cache/app-metrics/pushgateway-1.5.1 index e41032bab4a4..9d2d770e2ab3 100644 --- a/metadata/md5-cache/app-metrics/pushgateway-1.5.1 +++ b/metadata/md5-cache/app-metrics/pushgateway-1.5.1 @@ -11,5 +11,5 @@ RDEPEND=acct-group/pushgateway acct-user/pushgateway RESTRICT=strip SLOT=0 SRC_URI=https://github.com/prometheus/pushgateway/archive/v1.5.1.tar.gz -> pushgateway-1.5.1.tar.gz https://dev.gentoo.org/~zmedico/dist/pushgateway-1.5.1-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=0f5a40bceb25dd8b93a5aa01aebe254d diff --git a/metadata/md5-cache/app-metrics/redis_exporter-1.40.0 b/metadata/md5-cache/app-metrics/redis_exporter-1.40.0 index cd68b3cfcdf3..93535dd1166a 100644 --- a/metadata/md5-cache/app-metrics/redis_exporter-1.40.0 +++ b/metadata/md5-cache/app-metrics/redis_exporter-1.40.0 @@ -11,5 +11,5 @@ RDEPEND=acct-user/redis_exporter acct-group/redis_exporter RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/oliver006/redis_exporter/archive/v1.40.0.tar.gz -> redis_exporter-1.40.0.tar.gz https://dev.gentoo.org/~zmedico/dist/redis_exporter-1.38.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=f0eb7046bac2288514a3d9db2efe2e70 diff --git a/metadata/md5-cache/app-metrics/redis_exporter-1.43.0 b/metadata/md5-cache/app-metrics/redis_exporter-1.43.0 index e560e9e7239e..3c89796e0792 100644 --- a/metadata/md5-cache/app-metrics/redis_exporter-1.43.0 +++ b/metadata/md5-cache/app-metrics/redis_exporter-1.43.0 @@ -11,5 +11,5 @@ RDEPEND=acct-user/redis_exporter acct-group/redis_exporter RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/oliver006/redis_exporter/archive/v1.43.0.tar.gz -> redis_exporter-1.43.0.tar.gz https://dev.gentoo.org/~zmedico/dist/redis_exporter-1.38.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=6fe3523573f4d60c2bafa6712aad3e08 diff --git a/metadata/md5-cache/app-metrics/redis_exporter-1.44.0 b/metadata/md5-cache/app-metrics/redis_exporter-1.44.0 index f7f09ea827e7..d12bb6c30904 100644 --- a/metadata/md5-cache/app-metrics/redis_exporter-1.44.0 +++ b/metadata/md5-cache/app-metrics/redis_exporter-1.44.0 @@ -11,5 +11,5 @@ RDEPEND=acct-user/redis_exporter acct-group/redis_exporter RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/oliver006/redis_exporter/archive/v1.44.0.tar.gz -> redis_exporter-1.44.0.tar.gz https://dev.gentoo.org/~zmedico/dist/redis_exporter-1.44.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=c56249235dc0ee4335575980dc66edc6 diff --git a/metadata/md5-cache/app-metrics/snmp_exporter-0.20.0-r1 b/metadata/md5-cache/app-metrics/snmp_exporter-0.20.0-r1 index 7a04dd31f759..48a750d32c08 100644 --- a/metadata/md5-cache/app-metrics/snmp_exporter-0.20.0-r1 +++ b/metadata/md5-cache/app-metrics/snmp_exporter-0.20.0-r1 @@ -11,5 +11,5 @@ RDEPEND=acct-group/snmp_exporter acct-user/snmp_exporter net-analyzer/net-snmp RESTRICT=strip SLOT=0 SRC_URI=https://github.com/prometheus/snmp_exporter/archive/v0.20.0.tar.gz -> snmp_exporter-0.20.0.tar.gz https://dev.gentoo.org/~williamh/dist/snmp_exporter-0.20.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=4df831b15dcd7658213c50190e1baf76 diff --git a/metadata/md5-cache/app-metrics/snmp_exporter-0.21.0 b/metadata/md5-cache/app-metrics/snmp_exporter-0.21.0 index 865d943d0ef2..76a1ae36f8e3 100644 --- a/metadata/md5-cache/app-metrics/snmp_exporter-0.21.0 +++ b/metadata/md5-cache/app-metrics/snmp_exporter-0.21.0 @@ -11,5 +11,5 @@ RDEPEND=acct-group/snmp_exporter acct-user/snmp_exporter net-analyzer/net-snmp RESTRICT=strip SLOT=0 SRC_URI=https://github.com/prometheus/snmp_exporter/archive/v0.21.0.tar.gz -> snmp_exporter-0.21.0.tar.gz https://dev.gentoo.org/~williamh/dist/snmp_exporter-0.21.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=0fab5b68339b6eb6fb4ba6fb9c93dc16 diff --git a/metadata/md5-cache/app-metrics/uwsgi_exporter-1.1.0 b/metadata/md5-cache/app-metrics/uwsgi_exporter-1.1.0 index 3b75beba3059..cfebcf6c015c 100644 --- a/metadata/md5-cache/app-metrics/uwsgi_exporter-1.1.0 +++ b/metadata/md5-cache/app-metrics/uwsgi_exporter-1.1.0 @@ -11,5 +11,5 @@ RDEPEND=acct-group/uwsgi_exporter acct-user/uwsgi_exporter RESTRICT=strip SLOT=0 SRC_URI=https://github.com/timonwong/uwsgi_exporter/archive/refs/tags/v1.1.0.tar.gz -> uwsgi_exporter-1.1.0.tar.gz https://dev.gentoo.org/~zmedico/dist/uwsgi_exporter-1.1.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=fc6668542fbf7c219613b3e5bbc78834 diff --git a/metadata/md5-cache/app-misc/Manifest.gz b/metadata/md5-cache/app-misc/Manifest.gz index 7909b3f232d6..cbb0d0608415 100644 Binary files a/metadata/md5-cache/app-misc/Manifest.gz and b/metadata/md5-cache/app-misc/Manifest.gz differ diff --git a/metadata/md5-cache/app-misc/cdargs-1.35-r2 b/metadata/md5-cache/app-misc/cdargs-1.35-r2 index c1cce1089b23..0729d2dde71c 100644 --- a/metadata/md5-cache/app-misc/cdargs-1.35-r2 +++ b/metadata/md5-cache/app-misc/cdargs-1.35-r2 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=sys-libs/ncurses:0= emacs? ( >=app-editors/emacs-23.1:* ) SLOT=0 SRC_URI=http://www.skamphausen.de/software/cdargs/cdargs-1.35.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=1debb0a1c643ef0384d1816ba71bdd03 diff --git a/metadata/md5-cache/app-misc/dasel-1.26.1 b/metadata/md5-cache/app-misc/dasel-1.26.1 index 925d1eccc8ce..0ca1a58892f3 100644 --- a/metadata/md5-cache/app-misc/dasel-1.26.1 +++ b/metadata/md5-cache/app-misc/dasel-1.26.1 @@ -9,5 +9,5 @@ LICENSE=MIT Apache-2.0 BSD BSD-2 ISC RESTRICT=strip SLOT=0 SRC_URI=https://github.com/TomWright/dasel/archive/v1.26.1.tar.gz -> dasel-1.26.1.tar.gz https://dev.gentoo.org/~zmedico/dist/dasel-1.24.3-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=ce1600e259c6e673a4252b4c13bd1e25 diff --git a/metadata/md5-cache/app-misc/dasel-1.27.1 b/metadata/md5-cache/app-misc/dasel-1.27.1 index 069159c04f16..5b10e2ef7b62 100644 --- a/metadata/md5-cache/app-misc/dasel-1.27.1 +++ b/metadata/md5-cache/app-misc/dasel-1.27.1 @@ -9,5 +9,5 @@ LICENSE=MIT Apache-2.0 BSD BSD-2 ISC RESTRICT=strip SLOT=0 SRC_URI=https://github.com/TomWright/dasel/archive/v1.27.1.tar.gz -> dasel-1.27.1.tar.gz https://dev.gentoo.org/~zmedico/dist/dasel-1.24.3-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=ce1600e259c6e673a4252b4c13bd1e25 diff --git a/metadata/md5-cache/app-misc/dasel-1.27.3 b/metadata/md5-cache/app-misc/dasel-1.27.3 index efadd0c71a6d..0a3a592d01b2 100644 --- a/metadata/md5-cache/app-misc/dasel-1.27.3 +++ b/metadata/md5-cache/app-misc/dasel-1.27.3 @@ -9,5 +9,5 @@ LICENSE=MIT Apache-2.0 BSD BSD-2 ISC RESTRICT=strip SLOT=0 SRC_URI=https://github.com/TomWright/dasel/archive/v1.27.3.tar.gz -> dasel-1.27.3.tar.gz https://dev.gentoo.org/~zmedico/dist/dasel-1.24.3-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=ce1600e259c6e673a4252b4c13bd1e25 diff --git a/metadata/md5-cache/app-misc/faq-0.0.7 b/metadata/md5-cache/app-misc/faq-0.0.7 index 077d55fa7458..e0142f7def77 100644 --- a/metadata/md5-cache/app-misc/faq-0.0.7 +++ b/metadata/md5-cache/app-misc/faq-0.0.7 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/jzelinskie/faq/archive/0.0.7.tar.gz -> faq-0.0.7.tar.gz https://dev.gentoo.org/~sam/distfiles/app-misc/faq/faq-0.0.7-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=702aba2906e6a9382a8a8148b4a06933 diff --git a/metadata/md5-cache/app-misc/go-jira-1.0.28 b/metadata/md5-cache/app-misc/go-jira-1.0.28 index 2406d786b8fc..a273b2b79952 100644 --- a/metadata/md5-cache/app-misc/go-jira-1.0.28 +++ b/metadata/md5-cache/app-misc/go-jira-1.0.28 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD-2 BSD ISC MIT MIT-with-advertising RESTRICT=strip SLOT=0 SRC_URI=https://github.com/go-jira/jira/archive/v1.0.28.tar.gz -> go-jira-1.0.28.tar.gz https://dev.gentoo.org/~williamh/dist/go-jira-1.0.28-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=4767b02dc088dbd166e06ae41589775a diff --git a/metadata/md5-cache/app-misc/gtypist-2.9.5-r1 b/metadata/md5-cache/app-misc/gtypist-2.9.5-r1 index 59f07483b1cb..7730562277e5 100644 --- a/metadata/md5-cache/app-misc/gtypist-2.9.5-r1 +++ b/metadata/md5-cache/app-misc/gtypist-2.9.5-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2 public-domain RDEPEND=>=sys-libs/ncurses-5.2:0= emacs? ( >=app-editors/emacs-23.1:* ) xemacs? ( !emacs? ( app-editors/xemacs app-xemacs/fsf-compat ) ) SLOT=0 SRC_URI=mirror://gnu/gtypist/gtypist-2.9.5.tar.xz http://colemak.com/pub/learn/colemak.typ -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=c74d7d459bda9d83b04346a57f97ea04 diff --git a/metadata/md5-cache/app-misc/jp-0.2.1 b/metadata/md5-cache/app-misc/jp-0.2.1 index b45dfca50138..50aa5fd3261c 100644 --- a/metadata/md5-cache/app-misc/jp-0.2.1 +++ b/metadata/md5-cache/app-misc/jp-0.2.1 @@ -12,5 +12,5 @@ REQUIRED_USE=!jpp RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/jmespath/jp/archive/refs/tags/0.2.1.tar.gz -> jp-0.2.1.tar.gz https://dev.gentoo.org/~zmedico/dist/jp-0.2.1-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=edf4ea38be8e81af9ca669af998fecd0 diff --git a/metadata/md5-cache/app-misc/jpipe-0.2.0-r1 b/metadata/md5-cache/app-misc/jpipe-0.2.0-r1 index 6bbc27b5d87f..0f04ebbe322d 100644 --- a/metadata/md5-cache/app-misc/jpipe-0.2.0-r1 +++ b/metadata/md5-cache/app-misc/jpipe-0.2.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=python? ( || ( python_targets_python3_9 python_targets_python3_10 p RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/j/jpipe/jpipe-0.2.0.tar.gz !python? ( https://dev.gentoo.org/~zmedico/dist/jpipe-0.2.0-deps.tar.xz ) -_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e eapi8-dosym 741bfa77afb2a9321261501aca58c208 go-module f9700c7efec1fd4955363169e9930c1c multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 3b6a844fbf71f1581992b44c78b549b7 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e eapi8-dosym 741bfa77afb2a9321261501aca58c208 go-module 9c75e51a48520b2f01471c1f91762882 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 3b6a844fbf71f1581992b44c78b549b7 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=372fb1ecd960d79fc71b26f8c4a2a36d diff --git a/metadata/md5-cache/app-misc/linuxspa-0.7.1-r2 b/metadata/md5-cache/app-misc/linuxspa-0.7.1-r2 index 415066e01d57..40aa9999949b 100644 --- a/metadata/md5-cache/app-misc/linuxspa-0.7.1-r2 +++ b/metadata/md5-cache/app-misc/linuxspa-0.7.1-r2 @@ -1,11 +1,11 @@ DEFINED_PHASES=compile install prepare DESCRIPTION=Linux Serial Protocol Analyser -EAPI=6 +EAPI=8 HOMEPAGE=https://sourceforge.net/projects/serialsniffer/ INHERIT=toolchain-funcs -KEYWORDS=~amd64 x86 +KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 SLOT=0 SRC_URI=mirror://sourceforge/serialsniffer/LinuxSPA-0.7.1.tgz _eclasses_=multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=2f2f817013e81dd35fbed3be41b76e36 +_md5_=b316ff53f10a615bd32b1033ad1e5f54 diff --git a/metadata/md5-cache/app-misc/mkcert-1.4.4 b/metadata/md5-cache/app-misc/mkcert-1.4.4 index 7e5ce4bdfb2b..982f60990ea5 100644 --- a/metadata/md5-cache/app-misc/mkcert-1.4.4 +++ b/metadata/md5-cache/app-misc/mkcert-1.4.4 @@ -9,5 +9,5 @@ LICENSE=BSD RESTRICT=strip SLOT=0 SRC_URI=https://github.com/FiloSottile/mkcert/archive/v1.4.4.tar.gz -> mkcert-1.4.4.tar.gz https://dev.gentoo.org/~sam/distfiles/app-misc/mkcert/mkcert-1.4.4-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=ac1f64860cf1cbdd20e4bf77bfbc63b3 diff --git a/metadata/md5-cache/app-misc/notary-0.7.0 b/metadata/md5-cache/app-misc/notary-0.7.0 index e04949e2f4eb..e43746bf248f 100644 --- a/metadata/md5-cache/app-misc/notary-0.7.0 +++ b/metadata/md5-cache/app-misc/notary-0.7.0 @@ -10,5 +10,5 @@ RDEPEND=acct-group/notary acct-user/notary RESTRICT=strip SLOT=0 SRC_URI=https://github.com/notaryproject/notary/archive/v0.7.0.tar.gz -> notary-0.7.0.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=f9603bf7186edcf960e93bba0f64a664 diff --git a/metadata/md5-cache/app-misc/pet-0.3.6-r1 b/metadata/md5-cache/app-misc/pet-0.3.6-r1 index 5da66353b5b3..d4776a7595e9 100644 --- a/metadata/md5-cache/app-misc/pet-0.3.6-r1 +++ b/metadata/md5-cache/app-misc/pet-0.3.6-r1 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD BSD-2 MIT RESTRICT=strip SLOT=0 SRC_URI=https://github.com/knqyf263/pet/archive/v0.3.6.tar.gz -> pet-0.3.6.tar.gz mirror://goproxy//github.com/!burnt!sushi/toml/@v/v0.3.0.zip -> github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.0.zip mirror://goproxy//github.com/!burnt!sushi/toml/@v/v0.3.0.mod -> github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/briandowns/spinner/@v/v0.0.0-20170614154858-48dbb65d7bd5.zip -> github.com%2Fbriandowns%2Fspinner%2F@v%2Fv0.0.0-20170614154858-48dbb65d7bd5.zip mirror://goproxy//github.com/briandowns/spinner/@v/v0.0.0-20170614154858-48dbb65d7bd5.mod -> github.com%2Fbriandowns%2Fspinner%2F@v%2Fv0.0.0-20170614154858-48dbb65d7bd5.mod mirror://goproxy//github.com/chzyer/readline/@v/v0.0.0-20180603132655-2972be24d48e.zip -> github.com%2Fchzyer%2Freadline%2F@v%2Fv0.0.0-20180603132655-2972be24d48e.zip mirror://goproxy//github.com/chzyer/readline/@v/v0.0.0-20180603132655-2972be24d48e.mod -> github.com%2Fchzyer%2Freadline%2F@v%2Fv0.0.0-20180603132655-2972be24d48e.mod mirror://goproxy//github.com/fatih/color/@v/v1.7.0.zip -> github.com%2Ffatih%2Fcolor%2F@v%2Fv1.7.0.zip mirror://goproxy//github.com/fatih/color/@v/v1.7.0.mod -> github.com%2Ffatih%2Fcolor%2F@v%2Fv1.7.0.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.1.0.zip -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/golang/protobuf/@v/v1.1.0.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/google/go-github/@v/v15.0.0+incompatible.zip -> github.com%2Fgoogle%2Fgo-github%2F@v%2Fv15.0.0+incompatible.zip mirror://goproxy//github.com/google/go-github/@v/v15.0.0+incompatible.mod -> github.com%2Fgoogle%2Fgo-github%2F@v%2Fv15.0.0+incompatible.mod mirror://goproxy//github.com/google/go-querystring/@v/v0.0.0-20170111101155-53e6ce116135.zip -> github.com%2Fgoogle%2Fgo-querystring%2F@v%2Fv0.0.0-20170111101155-53e6ce116135.zip mirror://goproxy//github.com/google/go-querystring/@v/v0.0.0-20170111101155-53e6ce116135.mod -> github.com%2Fgoogle%2Fgo-querystring%2F@v%2Fv0.0.0-20170111101155-53e6ce116135.mod mirror://goproxy//github.com/inconshreveable/mousetrap/@v/v1.0.0.zip -> github.com%2Finconshreveable%2Fmousetrap%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/inconshreveable/mousetrap/@v/v1.0.0.mod -> github.com%2Finconshreveable%2Fmousetrap%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/jroimartin/gocui/@v/v0.4.0.zip -> github.com%2Fjroimartin%2Fgocui%2F@v%2Fv0.4.0.zip mirror://goproxy//github.com/jroimartin/gocui/@v/v0.4.0.mod -> github.com%2Fjroimartin%2Fgocui%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/mattn/go-colorable/@v/v0.0.9.zip -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.0.9.zip mirror://goproxy//github.com/mattn/go-colorable/@v/v0.0.9.mod -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.0.9.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.3.zip -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.3.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.2.zip -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.2.zip mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.2.mod -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.2.mod mirror://goproxy//github.com/nsf/termbox-go/@v/v0.0.0-20180509163535-21a4d435a862.zip -> github.com%2Fnsf%2Ftermbox-go%2F@v%2Fv0.0.0-20180509163535-21a4d435a862.zip mirror://goproxy//github.com/nsf/termbox-go/@v/v0.0.0-20180509163535-21a4d435a862.mod -> github.com%2Fnsf%2Ftermbox-go%2F@v%2Fv0.0.0-20180509163535-21a4d435a862.mod mirror://goproxy//github.com/pkg/errors/@v/v0.8.0.zip -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.8.0.zip mirror://goproxy//github.com/pkg/errors/@v/v0.8.0.mod -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.8.0.mod mirror://goproxy//github.com/spf13/cobra/@v/v0.0.3.zip -> github.com%2Fspf13%2Fcobra%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/spf13/cobra/@v/v0.0.3.mod -> github.com%2Fspf13%2Fcobra%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/spf13/pflag/@v/v1.0.1.zip -> github.com%2Fspf13%2Fpflag%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/spf13/pflag/@v/v1.0.1.mod -> github.com%2Fspf13%2Fpflag%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/xanzy/go-gitlab/@v/v0.10.5.zip -> github.com%2Fxanzy%2Fgo-gitlab%2F@v%2Fv0.10.5.zip mirror://goproxy//github.com/xanzy/go-gitlab/@v/v0.10.5.mod -> github.com%2Fxanzy%2Fgo-gitlab%2F@v%2Fv0.10.5.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20180608092829-8ac0e0d97ce4.zip -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20180608092829-8ac0e0d97ce4.zip mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20180608092829-8ac0e0d97ce4.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20180608092829-8ac0e0d97ce4.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20180530234432-1e491301e022.zip -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180530234432-1e491301e022.zip mirror://goproxy//golang.org/x/net/@v/v0.0.0-20180530234432-1e491301e022.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180530234432-1e491301e022.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20180603041954-1e0a3fa8ba9a.zip -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20180603041954-1e0a3fa8ba9a.zip mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20180603041954-1e0a3fa8ba9a.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20180603041954-1e0a3fa8ba9a.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20180606202747-9527bec2660b.zip -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180606202747-9527bec2660b.zip mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20180606202747-9527bec2660b.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180606202747-9527bec2660b.mod mirror://goproxy//google.golang.org/appengine/@v/v1.0.0.zip -> google.golang.org%2Fappengine%2F@v%2Fv1.0.0.zip mirror://goproxy//google.golang.org/appengine/@v/v1.0.0.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.0.0.mod -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=0106d2d507c399484d0777c1b5c69044 diff --git a/metadata/md5-cache/app-misc/pet-0.4.0 b/metadata/md5-cache/app-misc/pet-0.4.0 index 40c696342df9..0b03b68de920 100644 --- a/metadata/md5-cache/app-misc/pet-0.4.0 +++ b/metadata/md5-cache/app-misc/pet-0.4.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD BSD-2 MIT RESTRICT=strip SLOT=0 SRC_URI=https://github.com/knqyf263/pet/archive/v0.4.0.tar.gz -> pet-0.4.0.gh.tar.gz https://github.com/SpiderX/portage-overlay/raw/deps/pet-0.4.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=02bb7ed9fb51ac59293e753d719ef663 diff --git a/metadata/md5-cache/app-misc/qtxdg-tools-3.11.0 b/metadata/md5-cache/app-misc/qtxdg-tools-3.11.0 new file mode 100644 index 000000000000..027077a1ebf1 --- /dev/null +++ b/metadata/md5-cache/app-misc/qtxdg-tools-3.11.0 @@ -0,0 +1,14 @@ +BDEPEND=>=dev-util/lxqt-build-tools-0.13.0 >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-libs/libqtxdg-3.11.0 >=dev-qt/qtcore-5.15:5 +DESCRIPTION=User Tools from libqtxdg +EAPI=8 +HOMEPAGE=https://lxqt-project.org/ +INHERIT=cmake +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86 +LICENSE=LGPL-2.1 +RDEPEND=>=dev-libs/libqtxdg-3.11.0 >=dev-qt/qtcore-5.15:5 +SLOT=0 +SRC_URI=https://github.com/lxqt/qtxdg-tools/releases/download/3.11.0/qtxdg-tools-3.11.0.tar.xz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=3e51198d8fe1f86dffa66c9060a8b676 diff --git a/metadata/md5-cache/app-misc/spire-1.3.3 b/metadata/md5-cache/app-misc/spire-1.3.3 index 47223fb1d44e..d92806c06527 100644 --- a/metadata/md5-cache/app-misc/spire-1.3.3 +++ b/metadata/md5-cache/app-misc/spire-1.3.3 @@ -11,5 +11,5 @@ RDEPEND=acct-group/spire acct-user/spire RESTRICT=strip SLOT=0 SRC_URI=https://github.com/spiffe/spire/archive/v1.3.3.tar.gz -> spire-1.3.3.tar.gz https://dev.gentoo.org/~williamh/dist/spire-1.3.3-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=ec6e8811e4fa80cd303fc730235db1e1 diff --git a/metadata/md5-cache/app-misc/spire-1.6.2 b/metadata/md5-cache/app-misc/spire-1.6.2 index 25e3f6130237..7d4ab99f4356 100644 --- a/metadata/md5-cache/app-misc/spire-1.6.2 +++ b/metadata/md5-cache/app-misc/spire-1.6.2 @@ -11,5 +11,5 @@ RDEPEND=acct-group/spire acct-user/spire RESTRICT=strip SLOT=0 SRC_URI=https://github.com/spiffe/spire/archive/v1.6.2.tar.gz -> spire-1.6.2.tar.gz https://dev.gentoo.org/~williamh/dist/spire-1.6.2-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=934a88a2a5968450270cc1991b1c4317 diff --git a/metadata/md5-cache/app-misc/tmux-mem-cpu-load-3.7.0 b/metadata/md5-cache/app-misc/tmux-mem-cpu-load-3.7.0 new file mode 100644 index 000000000000..ef83547711af --- /dev/null +++ b/metadata/md5-cache/app-misc/tmux-mem-cpu-load-3.7.0 @@ -0,0 +1,12 @@ +BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=CPU, RAM memory, and load monitor for use with tmux +EAPI=8 +HOMEPAGE=https://github.com/thewtex/tmux-mem-cpu-load +INHERIT=cmake +KEYWORDS=~amd64 ~arm64 ~ppc64 ~riscv ~x86 +LICENSE=Apache-2.0 +SLOT=0 +SRC_URI=https://github.com/thewtex/tmux-mem-cpu-load/archive/v3.7.0.tar.gz -> tmux-mem-cpu-load-3.7.0.tar.gz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=c159bf31c1ebb1d3de999b4393fd3482 diff --git a/metadata/md5-cache/app-misc/tmux-mem-cpu-load-9999 b/metadata/md5-cache/app-misc/tmux-mem-cpu-load-9999 index 842e9c37d47d..9662aaaffd42 100644 --- a/metadata/md5-cache/app-misc/tmux-mem-cpu-load-9999 +++ b/metadata/md5-cache/app-misc/tmux-mem-cpu-load-9999 @@ -8,4 +8,4 @@ LICENSE=Apache-2.0 PROPERTIES=live SLOT=0 _eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a git-r3 27e13c09a4c7e4c78ac812f74727e676 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=bfc44775917e8d205da896baf4f3f9ed +_md5_=8e033c97e09deacfcef01ee18c9d15ad diff --git a/metadata/md5-cache/app-misc/wally-cli-2.0.1 b/metadata/md5-cache/app-misc/wally-cli-2.0.1 index a2bbbf589ba9..45c8655880fc 100644 --- a/metadata/md5-cache/app-misc/wally-cli-2.0.1 +++ b/metadata/md5-cache/app-misc/wally-cli-2.0.1 @@ -11,5 +11,5 @@ RDEPEND=dev-libs/libusb:1 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/zsa/wally-cli/archive/refs/tags/2.0.1-linux.tar.gz -> wally-cli-2.0.1.tar.gz https://dev.gentoo.org/~ajak/dist/app-misc/wally-cli/wally-cli-2.0.1-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=14922bc383def2f8a5f39d5e9b73d969 diff --git a/metadata/md5-cache/app-office/Manifest.gz b/metadata/md5-cache/app-office/Manifest.gz index 9d566293b741..68328d1fc5d9 100644 Binary files a/metadata/md5-cache/app-office/Manifest.gz and b/metadata/md5-cache/app-office/Manifest.gz differ diff --git a/metadata/md5-cache/app-office/magicpoint-1.13a_p20121015-r2 b/metadata/md5-cache/app-office/magicpoint-1.13a_p20121015-r2 index 77f9bfcd836b..69f00454e3cc 100644 --- a/metadata/md5-cache/app-office/magicpoint-1.13a_p20121015-r2 +++ b/metadata/md5-cache/app-office/magicpoint-1.13a_p20121015-r2 @@ -12,5 +12,5 @@ RDEPEND=x11-libs/libICE x11-libs/libSM x11-libs/libXmu x11-libs/libXrender emacs REQUIRED_USE=imlib? ( !gif !png ) SLOT=0 SRC_URI=ftp://sh.wide.ad.jp/WIDE/free-ware/mgp-snap/mgp-snap-20121015.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=fb3164bcd28f9c32c264c18c55db5f0b diff --git a/metadata/md5-cache/app-portage/Manifest.gz b/metadata/md5-cache/app-portage/Manifest.gz index 6ec64ceaa3e3..97876526f52b 100644 Binary files a/metadata/md5-cache/app-portage/Manifest.gz and b/metadata/md5-cache/app-portage/Manifest.gz differ diff --git a/metadata/md5-cache/app-portage/pgo-0.0.2 b/metadata/md5-cache/app-portage/pgo-0.0.2 index f1f53ff97b61..eb74cb739594 100644 --- a/metadata/md5-cache/app-portage/pgo-0.0.2 +++ b/metadata/md5-cache/app-portage/pgo-0.0.2 @@ -9,5 +9,5 @@ LICENSE=BSD-2 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/arzano/pgo/archive/v0.0.2.tar.gz -> pgo-0.0.2.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=c92a30add6a8f25f88c874d2d7959737 diff --git a/metadata/md5-cache/app-portage/pgo-0.0.3 b/metadata/md5-cache/app-portage/pgo-0.0.3 index bb67007cda9a..6dd59eb5095e 100644 --- a/metadata/md5-cache/app-portage/pgo-0.0.3 +++ b/metadata/md5-cache/app-portage/pgo-0.0.3 @@ -9,5 +9,5 @@ LICENSE=BSD-2 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/arzano/pgo/archive/v0.0.3.tar.gz -> pgo-0.0.3.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=f5e62162cd6707ee50ccd8d31f1c54e1 diff --git a/metadata/md5-cache/app-portage/pgo-9999 b/metadata/md5-cache/app-portage/pgo-9999 index 1a2f1c08c9e7..fbd6b88df9d2 100644 --- a/metadata/md5-cache/app-portage/pgo-9999 +++ b/metadata/md5-cache/app-portage/pgo-9999 @@ -8,5 +8,5 @@ LICENSE=BSD-2 PROPERTIES=live RESTRICT=strip SLOT=0 -_eclasses_=git-r3 27e13c09a4c7e4c78ac812f74727e676 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=git-r3 27e13c09a4c7e4c78ac812f74727e676 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=c92a30add6a8f25f88c874d2d7959737 diff --git a/metadata/md5-cache/app-shells/Manifest.gz b/metadata/md5-cache/app-shells/Manifest.gz index 420405af5a34..047f742a0340 100644 Binary files a/metadata/md5-cache/app-shells/Manifest.gz and b/metadata/md5-cache/app-shells/Manifest.gz differ diff --git a/metadata/md5-cache/app-shells/fzf-0.36.0 b/metadata/md5-cache/app-shells/fzf-0.36.0 index 1a6f762219fe..c5f5f4329ef5 100644 --- a/metadata/md5-cache/app-shells/fzf-0.36.0 +++ b/metadata/md5-cache/app-shells/fzf-0.36.0 @@ -9,5 +9,5 @@ LICENSE=MIT BSD-with-disclosure RESTRICT=strip SLOT=0 SRC_URI=https://github.com/junegunn/fzf/archive/0.36.0.tar.gz -> fzf-0.36.0.tar.gz https://dev.gentoo.org/~sam/distfiles/app-shells/fzf/fzf-0.36.0-deps.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=5901548389ead52b95a2e6af29d0c133 diff --git a/metadata/md5-cache/app-shells/fzf-0.37.0 b/metadata/md5-cache/app-shells/fzf-0.37.0 index b2286b2c0f33..35502e58067b 100644 --- a/metadata/md5-cache/app-shells/fzf-0.37.0 +++ b/metadata/md5-cache/app-shells/fzf-0.37.0 @@ -9,5 +9,5 @@ LICENSE=MIT BSD-with-disclosure RESTRICT=strip SLOT=0 SRC_URI=https://github.com/junegunn/fzf/archive/0.37.0.tar.gz -> fzf-0.37.0.tar.gz https://dev.gentoo.org/~sam/distfiles/app-shells/fzf/fzf-0.37.0-deps.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=c15f395562838cd9816cca804ab3312e diff --git a/metadata/md5-cache/app-shells/fzf-0.38.0 b/metadata/md5-cache/app-shells/fzf-0.38.0 index de32a9b87d79..807c0dcb5a36 100644 --- a/metadata/md5-cache/app-shells/fzf-0.38.0 +++ b/metadata/md5-cache/app-shells/fzf-0.38.0 @@ -9,5 +9,5 @@ LICENSE=MIT BSD-with-disclosure RESTRICT=strip SLOT=0 SRC_URI=https://github.com/junegunn/fzf/archive/0.38.0.tar.gz -> fzf-0.38.0.tar.gz https://dev.gentoo.org/~sam/distfiles/app-shells/fzf/fzf-0.38.0-deps.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=c327e38757448e63fb29eac1d6239d87 diff --git a/metadata/md5-cache/app-shells/fzf-0.39.0 b/metadata/md5-cache/app-shells/fzf-0.39.0 index 920dc03d68d3..91b3de4d81f3 100644 --- a/metadata/md5-cache/app-shells/fzf-0.39.0 +++ b/metadata/md5-cache/app-shells/fzf-0.39.0 @@ -9,5 +9,5 @@ LICENSE=MIT BSD-with-disclosure RESTRICT=strip SLOT=0 SRC_URI=https://github.com/junegunn/fzf/archive/0.39.0.tar.gz -> fzf-0.39.0.tar.gz https://dev.gentoo.org/~sam/distfiles/app-shells/fzf/fzf-0.39.0-deps.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=1fa54344ec3c6e68d1b4127a717b3154 diff --git a/metadata/md5-cache/app-shells/peco-0.5.10 b/metadata/md5-cache/app-shells/peco-0.5.10 index 0699d80949cf..98c39a734229 100644 --- a/metadata/md5-cache/app-shells/peco-0.5.10 +++ b/metadata/md5-cache/app-shells/peco-0.5.10 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD BSD-2 MIT RESTRICT=strip SLOT=0 SRC_URI=https://github.com/peco/peco/archive/v0.5.10.tar.gz -> peco-0.5.10.gh.tar.gz https://github.com/SpiderX/portage-overlay/raw/deps/peco-0.5.10-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=3f306c0de794e33875f9f30720738cc0 diff --git a/metadata/md5-cache/app-shells/peco-0.5.8 b/metadata/md5-cache/app-shells/peco-0.5.8 index d2a9ac31b29c..3c943e5a5d0a 100644 --- a/metadata/md5-cache/app-shells/peco-0.5.8 +++ b/metadata/md5-cache/app-shells/peco-0.5.8 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD BSD-2 MIT RESTRICT=strip SLOT=0 SRC_URI=https://github.com/peco/peco/archive/v0.5.8.tar.gz -> peco-0.5.8.tar.gz mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.0.zip -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.0.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/google/btree/@v/v0.0.0-20161213163243-0c3044bc8bad.zip -> github.com%2Fgoogle%2Fbtree%2F@v%2Fv0.0.0-20161213163243-0c3044bc8bad.zip mirror://goproxy//github.com/google/btree/@v/v0.0.0-20161213163243-0c3044bc8bad.mod -> github.com%2Fgoogle%2Fbtree%2F@v%2Fv0.0.0-20161213163243-0c3044bc8bad.mod mirror://goproxy//github.com/jessevdk/go-flags/@v/v1.1.0.zip -> github.com%2Fjessevdk%2Fgo-flags%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/jessevdk/go-flags/@v/v1.1.0.mod -> github.com%2Fjessevdk%2Fgo-flags%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/lestrrat-go/pdebug/@v/v0.0.0-20180220043849-39f9a71bcabe.zip -> github.com%2Flestrrat-go%2Fpdebug%2F@v%2Fv0.0.0-20180220043849-39f9a71bcabe.zip mirror://goproxy//github.com/lestrrat-go/pdebug/@v/v0.0.0-20180220043849-39f9a71bcabe.mod -> github.com%2Flestrrat-go%2Fpdebug%2F@v%2Fv0.0.0-20180220043849-39f9a71bcabe.mod mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.0-20161012013512-737072b4e32b.zip -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.0-20161012013512-737072b4e32b.zip mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.0-20161012013512-737072b4e32b.mod -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.0-20161012013512-737072b4e32b.mod mirror://goproxy//github.com/nsf/termbox-go/@v/v0.0.0-20190817171036-93860e161317.zip -> github.com%2Fnsf%2Ftermbox-go%2F@v%2Fv0.0.0-20190817171036-93860e161317.zip mirror://goproxy//github.com/nsf/termbox-go/@v/v0.0.0-20190817171036-93860e161317.mod -> github.com%2Fnsf%2Ftermbox-go%2F@v%2Fv0.0.0-20190817171036-93860e161317.mod mirror://goproxy//github.com/pkg/errors/@v/v0.0.0-20161029093637-248dadf4e906.zip -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.0.0-20161029093637-248dadf4e906.zip mirror://goproxy//github.com/pkg/errors/@v/v0.0.0-20161029093637-248dadf4e906.mod -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.0.0-20161029093637-248dadf4e906.mod mirror://goproxy//github.com/pmezard/go-difflib/@v/v1.0.0.zip -> github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/pmezard/go-difflib/@v/v1.0.0.mod -> github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/stretchr/testify/@v/v0.0.0-20161117074351-18a02ba4a312.zip -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv0.0.0-20161117074351-18a02ba4a312.zip mirror://goproxy//github.com/stretchr/testify/@v/v0.0.0-20161117074351-18a02ba4a312.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv0.0.0-20161117074351-18a02ba4a312.mod -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=c99bb782b045c5fdcdc6753a3d62f4e7 diff --git a/metadata/md5-cache/app-shells/peco-9999 b/metadata/md5-cache/app-shells/peco-9999 index 85d7710c6014..ac345cdbfe8b 100644 --- a/metadata/md5-cache/app-shells/peco-9999 +++ b/metadata/md5-cache/app-shells/peco-9999 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 BSD BSD-2 MIT PROPERTIES=live RESTRICT=strip SLOT=0 -_eclasses_=git-r3 27e13c09a4c7e4c78ac812f74727e676 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=git-r3 27e13c09a4c7e4c78ac812f74727e676 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=6886389daa44a97801ae09e98aa772b1 diff --git a/metadata/md5-cache/app-text/Manifest.gz b/metadata/md5-cache/app-text/Manifest.gz index cfc8acf0a65f..89cc807fe528 100644 Binary files a/metadata/md5-cache/app-text/Manifest.gz and b/metadata/md5-cache/app-text/Manifest.gz differ diff --git a/metadata/md5-cache/app-text/a2ps-4.14-r8 b/metadata/md5-cache/app-text/a2ps-4.14-r8 index e08f8aad98f8..85459247ccaa 100644 --- a/metadata/md5-cache/app-text/a2ps-4.14-r8 +++ b/metadata/md5-cache/app-text/a2ps-4.14-r8 @@ -12,5 +12,5 @@ RDEPEND=app-text/ghostscript-gpl app-text/libpaper:= >=app-text/psutils-1.17 app RESTRICT=test SLOT=0 SRC_URI=mirror://gnu/a2ps/a2ps-4.14.tar.gz cjk? ( mirror://gentoo/a2ps-4.14-ja_nls.patch.gz ) -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=754c2488258fcdb5315c3f3d1acb4b37 diff --git a/metadata/md5-cache/app-text/a2ps-4.15.2 b/metadata/md5-cache/app-text/a2ps-4.15.2 index 9cc91e31180c..6a94f6de7275 100644 --- a/metadata/md5-cache/app-text/a2ps-4.15.2 +++ b/metadata/md5-cache/app-text/a2ps-4.15.2 @@ -11,5 +11,5 @@ LICENSE=GPL-3+ RDEPEND=app-text/ghostscript-gpl app-text/libpaper:= >=app-text/psutils-1.17 app-text/wdiff app-shells/bash:* dev-libs/boehm-gc >=sys-apps/coreutils-6.10-r1 emacs? ( >=app-editors/emacs-23.1:* ) latex? ( virtual/latex-base ) nls? ( virtual/libintl ) SLOT=0 SRC_URI=mirror://gnu/a2ps/a2ps-4.15.2.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=b92ba2ce94a95271dfb19722cc908d7d diff --git a/metadata/md5-cache/app-text/a2ps-4.15.3 b/metadata/md5-cache/app-text/a2ps-4.15.3 index b2a8558757e3..d004b15dc55f 100644 --- a/metadata/md5-cache/app-text/a2ps-4.15.3 +++ b/metadata/md5-cache/app-text/a2ps-4.15.3 @@ -11,5 +11,5 @@ LICENSE=GPL-3+ RDEPEND=app-text/ghostscript-gpl app-text/libpaper:= >=app-text/psutils-1.17 app-text/wdiff app-shells/bash:* dev-libs/boehm-gc >=sys-apps/coreutils-6.10-r1 emacs? ( >=app-editors/emacs-23.1:* ) latex? ( virtual/latex-base ) nls? ( virtual/libintl ) SLOT=0 SRC_URI=mirror://gnu/a2ps/a2ps-4.15.3.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=b92ba2ce94a95271dfb19722cc908d7d diff --git a/metadata/md5-cache/app-text/a2ps-4.15.4 b/metadata/md5-cache/app-text/a2ps-4.15.4 index 493ff6e67219..05dcd1750cc9 100644 --- a/metadata/md5-cache/app-text/a2ps-4.15.4 +++ b/metadata/md5-cache/app-text/a2ps-4.15.4 @@ -11,5 +11,5 @@ LICENSE=GPL-3+ RDEPEND=app-text/ghostscript-gpl app-text/libpaper:= >=app-text/psutils-1.17 app-text/wdiff app-shells/bash:* dev-libs/boehm-gc >=sys-apps/coreutils-6.10-r1 emacs? ( >=app-editors/emacs-23.1:* ) latex? ( virtual/latex-base ) nls? ( virtual/libintl ) SLOT=0 SRC_URI=mirror://gnu/a2ps/a2ps-4.15.4.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=b92ba2ce94a95271dfb19722cc908d7d diff --git a/metadata/md5-cache/app-text/ghostscript-gpl-10.01.1 b/metadata/md5-cache/app-text/ghostscript-gpl-10.01.1 index a8ecedbec3e0..05230fa7497a 100644 --- a/metadata/md5-cache/app-text/ghostscript-gpl-10.01.1 +++ b/metadata/md5-cache/app-text/ghostscript-gpl-10.01.1 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://ghostscript.com/ https://git.ghostscript.com/?p=ghostpdl.git;a=summary INHERIT=autotools flag-o-matic toolchain-funcs IUSE=cups dbus gtk l10n_de static-libs unicode X l10n_ja l10n_ko l10n_zh-CN l10n_zh-TW -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~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 ~loong ~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=AGPL-3 CPL-1.0 RDEPEND=app-text/libpaper:= media-libs/fontconfig >=media-libs/freetype-2.4.9:2= >=media-libs/jbig2dec-0.19:= >=media-libs/lcms-2.6:2 >=media-libs/libpng-1.6.2:= media-libs/libjpeg-turbo:= >=media-libs/openjpeg-2.1.0:2= >=media-libs/tiff-4.0.1:= >=sys-libs/zlib-1.2.7 cups? ( >=net-print/cups-1.3.8 ) dbus? ( sys-apps/dbus ) gtk? ( x11-libs/gtk+:3 ) unicode? ( net-dns/libidn:= ) X? ( x11-libs/libXt x11-libs/libXext ) >=app-text/poppler-data-0.4.11-r2 >=media-fonts/urw-fonts-2.4.9 l10n_ja? ( media-fonts/kochi-substitute ) l10n_ko? ( media-fonts/baekmuk-fonts ) l10n_zh-CN? ( media-fonts/arphicfonts ) l10n_zh-TW? ( media-fonts/arphicfonts ) SLOT=0/10.01 SRC_URI=https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs10011/ghostscript-10.01.1.tar.xz https://dev.gentoo.org/~sam/distfiles/app-text/ghostscript-gpl/ghostscript-gpl-10.0-patches.tar.xz _eclasses_=autotools f0d3196128225dee3220e65f3371bc7a flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=922634d622d48a9ebca318f4e2087afb +_md5_=301ae184292e579df57654dc237def0d diff --git a/metadata/md5-cache/app-text/highlight-4.1 b/metadata/md5-cache/app-text/highlight-4.1 index 06c342ab72df..8e8de48173c5 100644 --- a/metadata/md5-cache/app-text/highlight-4.1 +++ b/metadata/md5-cache/app-text/highlight-4.1 @@ -1,16 +1,16 @@ BDEPEND=virtual/pkgconfig qt5? ( dev-qt/linguist-tools:5 ) DEFINED_PHASES=compile configure install prepare setup -DEPEND=lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) lua_single_target_lua5-3? ( dev-lang/lua:5.3 ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) dev-libs/boost +DEPEND=lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) lua_single_target_lua5-3? ( dev-lang/lua:5.3 ) lua_single_target_lua5-4? ( dev-lang/lua:5.4 ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) dev-libs/boost DESCRIPTION=Converts source code to formatted text (HTML, LaTeX, etc.) with syntax highlight EAPI=7 HOMEPAGE=http://www.andre-simon.de/ INHERIT=lua-single qmake-utils toolchain-funcs -IUSE=examples qt5 lua_single_target_lua5-1 lua_single_target_lua5-3 +IUSE=examples qt5 lua_single_target_luajit lua_single_target_lua5-1 lua_single_target_lua5-3 lua_single_target_lua5-4 KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos LICENSE=GPL-3 -RDEPEND=lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) lua_single_target_lua5-3? ( dev-lang/lua:5.3 ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) -REQUIRED_USE=^^ ( lua_single_target_lua5-1 lua_single_target_lua5-3 ) +RDEPEND=lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) lua_single_target_lua5-3? ( dev-lang/lua:5.3 ) lua_single_target_lua5-4? ( dev-lang/lua:5.4 ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) +REQUIRED_USE=^^ ( lua_single_target_luajit lua_single_target_lua5-1 lua_single_target_lua5-3 lua_single_target_lua5-4 ) SLOT=0 SRC_URI=http://www.andre-simon.de/zip/highlight-4.1.tar.bz2 _eclasses_=lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib d1408425c7c4a7669b9b17735404b693 qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=b520690529e63d3d90edd6b7f3cdb24f +_md5_=5518bc1bebd9fb7074cd7c3e2e721180 diff --git a/metadata/md5-cache/app-text/namazu-2.0.21 b/metadata/md5-cache/app-text/namazu-2.0.21 index 5416e604b82e..516f7decad2d 100644 --- a/metadata/md5-cache/app-text/namazu-2.0.21 +++ b/metadata/md5-cache/app-text/namazu-2.0.21 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ RDEPEND=dev-perl/File-MMagic emacs? ( >=app-editors/emacs-23.1:* ) l10n_ja? ( app-i18n/nkf || ( dev-perl/Text-Kakasi app-i18n/kakasi app-text/chasen app-text/mecab ) ) nls? ( virtual/libintl ) tk? ( dev-lang/tk:0 www-client/lynx ) SLOT=0 SRC_URI=http://www.namazu.org/stable/namazu-2.0.21.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=193b2830769613e8d7a51d6636012396 diff --git a/metadata/md5-cache/app-text/namazu-2.0.22_pre8 b/metadata/md5-cache/app-text/namazu-2.0.22_pre8 index b1318fa86f82..e919894b1e4e 100644 --- a/metadata/md5-cache/app-text/namazu-2.0.22_pre8 +++ b/metadata/md5-cache/app-text/namazu-2.0.22_pre8 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ RDEPEND=dev-perl/File-MMagic emacs? ( >=app-editors/emacs-23.1:* ) l10n_ja? ( app-i18n/nkf || ( dev-perl/Text-Kakasi app-i18n/kakasi app-text/chasen app-text/mecab ) ) nls? ( virtual/libintl ) tk? ( dev-lang/tk:0 www-client/lynx ) SLOT=0 SRC_URI=http://www.namazu.org/test/namazu-2.0.22pre8.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=c53fab88204cbfadb1354ea1927f7763 diff --git a/metadata/md5-cache/app-text/vgrep-2.6.0 b/metadata/md5-cache/app-text/vgrep-2.6.0 index b5436cf4fcb3..897b4933fa4e 100644 --- a/metadata/md5-cache/app-text/vgrep-2.6.0 +++ b/metadata/md5-cache/app-text/vgrep-2.6.0 @@ -9,5 +9,5 @@ LICENSE=BSD GPL-3+ MIT MIT-with-advertising RESTRICT=strip test strip SLOT=0 SRC_URI=https://github.com/vrothberg/vgrep/archive/v2.6.0.tar.gz -> vgrep-2.6.0.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=361d99b3c760add5ce52e54a83a392ed diff --git a/metadata/md5-cache/app-text/xdvik-22.87.03-r4 b/metadata/md5-cache/app-text/xdvik-22.87.03-r4 index ecc3f1937973..9990a1f33dae 100644 --- a/metadata/md5-cache/app-text/xdvik-22.87.03-r4 +++ b/metadata/md5-cache/app-text/xdvik-22.87.03-r4 @@ -12,5 +12,5 @@ LICENSE=GPL-2 RDEPEND=>=media-libs/freetype-2.9.1-r2:2 x11-libs/libX11 x11-libs/libXi x11-libs/libXmu x11-libs/libXpm x11-libs/libXt emacs? ( >=app-editors/emacs-23.1:* ) motif? ( >=x11-libs/motif-2.3:0 ) !motif? ( neXt? ( x11-libs/neXtaw ) !neXt? ( Xaw3d? ( x11-libs/libXaw3d ) !Xaw3d? ( x11-libs/libXaw ) ) ) dev-libs/kpathsea:= virtual/latex-base !=media-libs/freetype-2.9.1-r2:2 x11-libs/libX11 x11-libs/libXi x11-libs/libXmu x11-libs/libXpm x11-libs/libXt emacs? ( >=app-editors/emacs-23.1:* ) motif? ( >=x11-libs/motif-2.3:0 ) !motif? ( neXt? ( x11-libs/neXtaw ) !neXt? ( Xaw3d? ( x11-libs/libXaw3d ) !Xaw3d? ( x11-libs/libXaw ) ) ) dev-libs/kpathsea:= virtual/latex-base !=media-libs/freetype-2.9.1-r2:2 x11-libs/libX11 x11-libs/libXi x11-libs/libXmu x11-libs/libXpm x11-libs/libXt emacs? ( >=app-editors/emacs-23.1:* ) motif? ( >=x11-libs/motif-2.3:0 ) !motif? ( neXt? ( x11-libs/neXtaw ) !neXt? ( Xaw3d? ( x11-libs/libXaw3d ) !Xaw3d? ( x11-libs/libXaw ) ) ) dev-libs/kpathsea:= virtual/latex-base ! abseil-cpp-20200923.3.tar.gz https://github.com/google/googletest/archive/aee0f9d9b5b87796ee8a0ab26b7587ec30e8858e.tar.gz -> gtest-1.10.0_p20200702.tar.gz _eclasses_=cmake 7fb5980de96325cbab639f5b2187357c eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=1dfb023d5dda282564ca739fcefa3b9f +_md5_=a664a9f642d78b5dd18fac72abd03ef2 diff --git a/metadata/md5-cache/dev-cpp/cpp-httplib-0.12.1 b/metadata/md5-cache/dev-cpp/cpp-httplib-0.12.1 index f140a9555150..bebf7ccc0529 100644 --- a/metadata/md5-cache/dev-cpp/cpp-httplib-0.12.1 +++ b/metadata/md5-cache/dev-cpp/cpp-httplib-0.12.1 @@ -6,7 +6,7 @@ EAPI=8 HOMEPAGE=https://github.com/yhirose/cpp-httplib/ INHERIT=cmake-multilib python-any-r1 toolchain-funcs IUSE=brotli ssl test 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 -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 ~x86 LICENSE=MIT RDEPEND=brotli? ( app-arch/brotli:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssl? ( dev-libs/openssl:=[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[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? ( brotli ssl zlib ) @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0/0.11 SRC_URI=https://github.com/yhirose/cpp-httplib/archive/v0.12.1.tar.gz -> cpp-httplib-0.12.1.tar.gz _eclasses_=cmake 7fb5980de96325cbab639f5b2187357c cmake-multilib 37d23064f303dcf23453353ab8c77059 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=2b5d1c88f1d2c8c247614d470c6caecd +_md5_=096df3e9e11d942050d4fe095e2cf7d9 diff --git a/metadata/md5-cache/dev-cpp/ctemplate-2.4 b/metadata/md5-cache/dev-cpp/ctemplate-2.4 index 3d10e8e391bb..1f9a9a8c65f8 100644 --- a/metadata/md5-cache/dev-cpp/ctemplate-2.4 +++ b/metadata/md5-cache/dev-cpp/ctemplate-2.4 @@ -12,5 +12,5 @@ RDEPEND=emacs? ( >=app-editors/emacs-23.1:* ) vim-syntax? ( >=app-editors/vim-co RESTRICT=test SLOT=0 SRC_URI=https://github.com/OlafvdSpek/ctemplate/archive/ctemplate-2.4.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a eapi8-dosym 741bfa77afb2a9321261501aca58c208 elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a eapi8-dosym 741bfa77afb2a9321261501aca58c208 elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=ff61fb6a2c5c29effb32dd2896ec23c1 diff --git a/metadata/md5-cache/dev-cpp/rapidfuzz-cpp-1.11.2 b/metadata/md5-cache/dev-cpp/rapidfuzz-cpp-1.11.2 new file mode 100644 index 000000000000..72bbd39b942a --- /dev/null +++ b/metadata/md5-cache/dev-cpp/rapidfuzz-cpp-1.11.2 @@ -0,0 +1,14 @@ +BDEPEND=test? ( >=dev-cpp/catch-3 ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Rapid fuzzy string matching in C++ +EAPI=8 +HOMEPAGE=https://github.com/maxbachmann/rapidfuzz-cpp/ +INHERIT=cmake +IUSE=test +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=MIT +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/maxbachmann/rapidfuzz-cpp/archive/v1.11.2.tar.gz -> rapidfuzz-cpp-1.11.2.gh.tar.gz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=a75b935b23ca2f195f661becba924324 diff --git a/metadata/md5-cache/dev-db/Manifest.gz b/metadata/md5-cache/dev-db/Manifest.gz index 460b6e620a79..8d8d472c7aef 100644 Binary files a/metadata/md5-cache/dev-db/Manifest.gz and b/metadata/md5-cache/dev-db/Manifest.gz differ diff --git a/metadata/md5-cache/dev-db/citus-11.1.5 b/metadata/md5-cache/dev-db/citus-11.1.5 index 34957deab835..a5ae415459c1 100644 --- a/metadata/md5-cache/dev-db/citus-11.1.5 +++ b/metadata/md5-cache/dev-db/citus-11.1.5 @@ -11,5 +11,5 @@ RDEPEND=postgres_targets_postgres15? ( dev-db/postgresql:15= ) postgres_targets_ RESTRICT=test SLOT=0 SRC_URI=https://github.com/citusdata/citus/archive/refs/tags/v11.1.5.tar.gz -> citus-11.1.5.tar.gz -_eclasses_=multibuild bddcb51b74f4a76724ff7cf8e7388869 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d +_eclasses_=multibuild bddcb51b74f4a76724ff7cf8e7388869 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 43fa70d2d8740e8e0149e6da1995ea28 postgres-multi eb5db133692fe18bccaa7c2c5f45306d _md5_=45275c560235bf03106f198bd7f4a321 diff --git a/metadata/md5-cache/dev-db/citus-11.2.0 b/metadata/md5-cache/dev-db/citus-11.2.0 index 047d8a1f7ce3..f352c8ac438c 100644 --- a/metadata/md5-cache/dev-db/citus-11.2.0 +++ b/metadata/md5-cache/dev-db/citus-11.2.0 @@ -11,5 +11,5 @@ RDEPEND=postgres_targets_postgres15? ( dev-db/postgresql:15= ) postgres_targets_ RESTRICT=test SLOT=0 SRC_URI=https://github.com/citusdata/citus/archive/refs/tags/v11.2.0.tar.gz -> citus-11.2.0.tar.gz -_eclasses_=multibuild bddcb51b74f4a76724ff7cf8e7388869 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d +_eclasses_=multibuild bddcb51b74f4a76724ff7cf8e7388869 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 43fa70d2d8740e8e0149e6da1995ea28 postgres-multi eb5db133692fe18bccaa7c2c5f45306d _md5_=6ef8247fff2e44bf7037a0902c2356b8 diff --git a/metadata/md5-cache/dev-db/etcd-3.3.24 b/metadata/md5-cache/dev-db/etcd-3.3.24 index 82d567c5843e..f0cf7ab523c1 100644 --- a/metadata/md5-cache/dev-db/etcd-3.3.24 +++ b/metadata/md5-cache/dev-db/etcd-3.3.24 @@ -12,5 +12,5 @@ RDEPEND=server? ( acct-group/etcd acct-user/etcd ) !dev-db/etcdctl virtual/tmpfi RESTRICT=test SLOT=0 SRC_URI=https://github.com/etcd-io/etcd/archive/v3.3.24.tar.gz -> etcd-3.3.24.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=6477630a064c308970c0c4cf42c30eb7 diff --git a/metadata/md5-cache/dev-db/etcd-3.4.16 b/metadata/md5-cache/dev-db/etcd-3.4.16 index 0e0c37917fd7..abd81b5bf7ca 100644 --- a/metadata/md5-cache/dev-db/etcd-3.4.16 +++ b/metadata/md5-cache/dev-db/etcd-3.4.16 @@ -12,5 +12,5 @@ RDEPEND=server? ( acct-group/etcd acct-user/etcd ) !dev-db/etcdctl virtual/tmpfi RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/etcd-io/etcd/archive/v3.4.16.tar.gz -> etcd-3.4.16.tar.gz https://dev.gentoo.org/~zmedico/dist/etcd-3.4.16-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=3c38c3b3bf1f8c19dfd9ca492f34bff9 diff --git a/metadata/md5-cache/dev-db/etcd-3.4.16-r1 b/metadata/md5-cache/dev-db/etcd-3.4.16-r1 index dcc6fb81efc7..24467cca818e 100644 --- a/metadata/md5-cache/dev-db/etcd-3.4.16-r1 +++ b/metadata/md5-cache/dev-db/etcd-3.4.16-r1 @@ -12,5 +12,5 @@ RDEPEND=server? ( acct-group/etcd acct-user/etcd ) virtual/tmpfiles RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/etcd-io/etcd/archive/v3.4.16.tar.gz -> etcd-3.4.16.tar.gz https://dev.gentoo.org/~zmedico/dist/etcd-3.4.16-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=5c6f66224305e282894ef25ba3c03056 diff --git a/metadata/md5-cache/dev-db/influxdb-1.8.10 b/metadata/md5-cache/dev-db/influxdb-1.8.10 index 12ae1691c5a5..783ad69ff22d 100644 --- a/metadata/md5-cache/dev-db/influxdb-1.8.10 +++ b/metadata/md5-cache/dev-db/influxdb-1.8.10 @@ -12,5 +12,5 @@ RDEPEND=acct-group/influxdb acct-user/influxdb RESTRICT=strip SLOT=0 SRC_URI=https://github.com/influxdata/influxdb/archive/v1.8.10.tar.gz -> influxdb-1.8.10.tar.gz https://github.com/Dwosky/packages/raw/main/influxdb-1.8.10-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=0e40b15d3b80adea07936e786f10e1c4 diff --git a/metadata/md5-cache/dev-db/mydumper-0.13.1.2 b/metadata/md5-cache/dev-db/mydumper-0.13.1.2 index cfcc1e55f596..0eadee183951 100644 --- a/metadata/md5-cache/dev-db/mydumper-0.13.1.2 +++ b/metadata/md5-cache/dev-db/mydumper-0.13.1.2 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://github.com/maxbube/mydumper INHERIT=cmake IUSE=doc -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 ~x86 LICENSE=GPL-3+ RDEPEND=app-arch/zstd dev-db/mysql-connector-c:= dev-libs/glib:2 dev-libs/libpcre dev-libs/openssl:= sys-libs/zlib:= SLOT=0 SRC_URI=https://github.com/maxbube/mydumper/archive/v0.13.1-2.tar.gz -> mydumper-0.13.1-2.tar.gz _eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=b67e534a6afb150239f0b2aa50d95396 +_md5_=c708b589c8ff2e1b1f3ce20be456ec18 diff --git a/metadata/md5-cache/dev-db/percona-server-8.0.26.16-r2 b/metadata/md5-cache/dev-db/percona-server-8.0.26.16-r2 index 862bfbd529ca..2f1730005c4d 100644 --- a/metadata/md5-cache/dev-db/percona-server-8.0.26.16-r2 +++ b/metadata/md5-cache/dev-db/percona-server-8.0.26.16-r2 @@ -15,4 +15,4 @@ RESTRICT=!test? ( test ) SLOT=8.0 SRC_URI=https://www.percona.com/downloads/Percona-Server-8.0/Percona-Server-8.0.26-16/source/tarball/percona-server-8.0.26-16.tar.gz https://dl.bintray.com/boostorg/release/1.73.0/source/boost_1_73_0.tar.bz2 https://dev.gentoo.org/~whissi/dist/percona-server/percona-server-8.0.26.16-patches-01.tar.xz _eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 7fb5980de96325cbab639f5b2187357c edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=245f9fbcfc9831d22773534a69fcb39d +_md5_=3c6c5c90d6426d082fe70d29571ec5ce diff --git a/metadata/md5-cache/dev-db/percona-toolkit-3.5.1 b/metadata/md5-cache/dev-db/percona-toolkit-3.5.1 index b7c8daa39fd2..90c6b0ba6e68 100644 --- a/metadata/md5-cache/dev-db/percona-toolkit-3.5.1 +++ b/metadata/md5-cache/dev-db/percona-toolkit-3.5.1 @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://www.percona.com/software/mysql-tools/percona-toolkit INHERIT=perl-module IUSE=test -KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 x86 ~amd64-linux ~x86-linux LICENSE=|| ( GPL-2 Artistic ) RDEPEND=dev-perl/DBI dev-perl/DBD-mysql virtual/perl-Time-HiRes dev-perl/JSON dev-perl/libwww-perl dev-perl/Role-Tiny virtual/perl-File-Path virtual/perl-Getopt-Long virtual/perl-Time-Local virtual/perl-Digest-MD5 virtual/perl-IO-Compress virtual/perl-File-Temp virtual/perl-File-Spec virtual/perl-Scalar-List-Utils dev-perl/TermReadKey dev-lang/perl:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.percona.com/downloads/percona-toolkit/3.5.1/source/tarball/percona-toolkit-3.5.1.tar.gz _eclasses_=multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 perl-functions c3fca037246e877693badea0df3b0ef8 perl-module 8c55459fea879ccdec282839a3b22f78 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=c5b5756f08f3117f18bf0123c523c540 +_md5_=6846f45cdf4e7d859f56dfa2eb7840b5 diff --git a/metadata/md5-cache/dev-db/percona-xtrabackup-8.0.30.23 b/metadata/md5-cache/dev-db/percona-xtrabackup-8.0.30.23 index 18086c739de6..21b7af3e3c6a 100644 --- a/metadata/md5-cache/dev-db/percona-xtrabackup-8.0.30.23 +++ b/metadata/md5-cache/dev-db/percona-xtrabackup-8.0.30.23 @@ -11,4 +11,4 @@ RDEPEND=app-arch/lz4:0= app-editors/vim-core dev-libs/icu:= dev-libs/libaio dev- SLOT=0 SRC_URI=https://www.percona.com/downloads/Percona-XtraBackup-8.0/Percona-XtraBackup-8.0.30-23/source/tarball/percona-xtrabackup-8.0.30-23.tar.gz https://boostorg.jfrog.io/artifactory/main/release/1.77.0/source/boost_1_77_0.tar.bz2 _eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=b6f988bc7d124578b188c1b1c693b540 +_md5_=60b71e080d03038f70598de10c7258e1 diff --git a/metadata/md5-cache/dev-db/pgbouncer-1.18.0 b/metadata/md5-cache/dev-db/pgbouncer-1.18.0 new file mode 100644 index 000000000000..b6c9fe93b792 --- /dev/null +++ b/metadata/md5-cache/dev-db/pgbouncer-1.18.0 @@ -0,0 +1,14 @@ +DEFINED_PHASES=configure install postinst prepare +DEPEND=>=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 ) +DESCRIPTION=Lightweight connection pooler for PostgreSQL +EAPI=8 +HOMEPAGE=https://www.pgbouncer.org/ +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 ) +REQUIRED_USE=?? ( c-ares udns ) +RESTRICT=test +SLOT=0 +SRC_URI=https://www.pgbouncer.org/downloads/files/1.18.0/pgbouncer-1.18.0.tar.gz +_md5_=85f6b191c5e0d3afeef3bdd9ec81f8e6 diff --git a/metadata/md5-cache/dev-db/pglogical-2.4.1 b/metadata/md5-cache/dev-db/pglogical-2.4.1 index 0d7cb4b1f2e5..f59bcd0d65b9 100644 --- a/metadata/md5-cache/dev-db/pglogical-2.4.1 +++ b/metadata/md5-cache/dev-db/pglogical-2.4.1 @@ -10,5 +10,5 @@ LICENSE=POSTGRESQL RDEPEND=postgres_targets_postgres14? ( dev-db/postgresql:14= ) postgres_targets_postgres13? ( dev-db/postgresql:13= ) postgres_targets_postgres12? ( dev-db/postgresql:12= ) postgres_targets_postgres11? ( dev-db/postgresql:11= ) postgres_targets_postgres10? ( dev-db/postgresql:10= ) SLOT=0 SRC_URI=https://github.com/2ndQuadrant/pglogical/archive/REL2_4_1.tar.gz -_eclasses_=multibuild bddcb51b74f4a76724ff7cf8e7388869 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d +_eclasses_=multibuild bddcb51b74f4a76724ff7cf8e7388869 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 43fa70d2d8740e8e0149e6da1995ea28 postgres-multi eb5db133692fe18bccaa7c2c5f45306d _md5_=99444f77cecc48d6c01b8b72c12645bb diff --git a/metadata/md5-cache/dev-db/pgmodeler-0.9.2 b/metadata/md5-cache/dev-db/pgmodeler-0.9.2 index 78254a21f30b..4f05a00a2d67 100644 --- a/metadata/md5-cache/dev-db/pgmodeler-0.9.2 +++ b/metadata/md5-cache/dev-db/pgmodeler-0.9.2 @@ -10,5 +10,5 @@ LICENSE=GPL-3 RDEPEND=postgres_targets_postgres12? ( dev-db/postgresql:12= ) postgres_targets_postgres11? ( dev-db/postgresql:11= ) postgres_targets_postgres10? ( dev-db/postgresql:10= ) dev-libs/icu:= dev-libs/libxml2:= dev-qt/qtcore:5 dev-qt/qtnetwork:5 dev-qt/qtprintsupport:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 SLOT=0 SRC_URI=https://github.com/pgmodeler/pgmodeler/archive/v0.9.2.tar.gz -> pgmodeler-0.9.2.tar.gz -_eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d multilib d1408425c7c4a7669b9b17735404b693 postgres 7233fc439696bbab8442204f0f284645 qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d multilib d1408425c7c4a7669b9b17735404b693 postgres 43fa70d2d8740e8e0149e6da1995ea28 qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=d096763961d17379262d560c1010c664 diff --git a/metadata/md5-cache/dev-db/pgmodeler-0.9.4 b/metadata/md5-cache/dev-db/pgmodeler-0.9.4 index 6975d8c6ddeb..0919812ecb64 100644 --- a/metadata/md5-cache/dev-db/pgmodeler-0.9.4 +++ b/metadata/md5-cache/dev-db/pgmodeler-0.9.4 @@ -10,5 +10,5 @@ LICENSE=GPL-3 RDEPEND=postgres_targets_postgres14? ( dev-db/postgresql:14= ) postgres_targets_postgres13? ( dev-db/postgresql:13= ) postgres_targets_postgres12? ( dev-db/postgresql:12= ) postgres_targets_postgres11? ( dev-db/postgresql:11= ) postgres_targets_postgres10? ( dev-db/postgresql:10= ) dev-libs/icu:= dev-libs/libxml2:= dev-qt/qtcore:5 dev-qt/qtnetwork:5 dev-qt/qtprintsupport:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 SLOT=0 SRC_URI=https://github.com/pgmodeler/pgmodeler/archive/v0.9.4.tar.gz -> pgmodeler-0.9.4.tar.gz -_eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d multilib d1408425c7c4a7669b9b17735404b693 postgres 7233fc439696bbab8442204f0f284645 qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d multilib d1408425c7c4a7669b9b17735404b693 postgres 43fa70d2d8740e8e0149e6da1995ea28 qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=47fef56754d0781243e7f36b9ac639cf diff --git a/metadata/md5-cache/dev-db/pgpool2-4.3.2 b/metadata/md5-cache/dev-db/pgpool2-4.3.2 index db4c35a90643..9d3d0b2619cf 100644 --- a/metadata/md5-cache/dev-db/pgpool2-4.3.2 +++ b/metadata/md5-cache/dev-db/pgpool2-4.3.2 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=postgres_targets_postgres14? ( dev-db/postgresql:14= ) postgres_targets_postgres13? ( dev-db/postgresql:13= ) postgres_targets_postgres12? ( dev-db/postgresql:12= ) postgres_targets_postgres11? ( dev-db/postgresql:11= ) postgres_targets_postgres10? ( dev-db/postgresql:10= ) acct-user/pgpool net-libs/libnsl:0= virtual/libcrypt:= memcached? ( dev-libs/libmemcached ) pam? ( sys-auth/pambase ) ssl? ( dev-libs/openssl:0= ) SLOT=0 SRC_URI=https://www.pgpool.net/download.php?f=pgpool-II-4.3.2.tar.gz -> pgpool-II-4.3.2.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 43fa70d2d8740e8e0149e6da1995ea28 postgres-multi eb5db133692fe18bccaa7c2c5f45306d toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=089e331bb31f3bb0c4b8265ac00d4b61 diff --git a/metadata/md5-cache/dev-db/pgpool2-9999 b/metadata/md5-cache/dev-db/pgpool2-9999 index 77fdc98ac646..94742400c47b 100644 --- a/metadata/md5-cache/dev-db/pgpool2-9999 +++ b/metadata/md5-cache/dev-db/pgpool2-9999 @@ -10,5 +10,5 @@ LICENSE=BSD PROPERTIES=live RDEPEND=postgres_targets_postgres15? ( dev-db/postgresql:15= ) postgres_targets_postgres14? ( dev-db/postgresql:14= ) postgres_targets_postgres13? ( dev-db/postgresql:13= ) postgres_targets_postgres12? ( dev-db/postgresql:12= ) postgres_targets_postgres11? ( dev-db/postgresql:11= ) postgres_targets_postgres10? ( dev-db/postgresql:10= ) acct-group/postgres acct-user/pgpool net-libs/libnsl:0= virtual/libcrypt:= memcached? ( dev-libs/libmemcached ) pam? ( sys-auth/pambase ) ssl? ( dev-libs/openssl:= ) SLOT=0 -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a git-r3 27e13c09a4c7e4c78ac812f74727e676 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a git-r3 27e13c09a4c7e4c78ac812f74727e676 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 43fa70d2d8740e8e0149e6da1995ea28 postgres-multi eb5db133692fe18bccaa7c2c5f45306d toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=33e2e3cd3e9d142a315ef4c0229974ad diff --git a/metadata/md5-cache/dev-db/pgrouting-3.1.1 b/metadata/md5-cache/dev-db/pgrouting-3.1.1 index 346d50ab2414..1ffd7e4b2ace 100644 --- a/metadata/md5-cache/dev-db/pgrouting-3.1.1 +++ b/metadata/md5-cache/dev-db/pgrouting-3.1.1 @@ -12,5 +12,5 @@ RDEPEND=postgres_targets_postgres13? ( dev-db/postgresql:13=[server] ) postgres_ RESTRICT=test SLOT=0 SRC_URI=https://github.com/pgRouting/pgrouting/archive/v3.1.1.tar.gz -> pgrouting-3.1.1.tar.gz -_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 43fa70d2d8740e8e0149e6da1995ea28 postgres-multi eb5db133692fe18bccaa7c2c5f45306d strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=3f79ef7b92c88d80d6845913ac0d77b7 diff --git a/metadata/md5-cache/dev-db/pgrouting-3.1.2 b/metadata/md5-cache/dev-db/pgrouting-3.1.2 index 36cbb9c8a870..6626d95803d1 100644 --- a/metadata/md5-cache/dev-db/pgrouting-3.1.2 +++ b/metadata/md5-cache/dev-db/pgrouting-3.1.2 @@ -12,5 +12,5 @@ RDEPEND=postgres_targets_postgres13? ( dev-db/postgresql:13=[server] ) postgres_ RESTRICT=test SLOT=0 SRC_URI=https://github.com/pgRouting/pgrouting/archive/v3.1.2.tar.gz -> pgrouting-3.1.2.tar.gz -_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 43fa70d2d8740e8e0149e6da1995ea28 postgres-multi eb5db133692fe18bccaa7c2c5f45306d strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=55930a992316e5a0e458bb62a1b67976 diff --git a/metadata/md5-cache/dev-db/pgrouting-3.1.3 b/metadata/md5-cache/dev-db/pgrouting-3.1.3 index d8ff9732ecfa..28fe2192ad86 100644 --- a/metadata/md5-cache/dev-db/pgrouting-3.1.3 +++ b/metadata/md5-cache/dev-db/pgrouting-3.1.3 @@ -12,5 +12,5 @@ RDEPEND=postgres_targets_postgres13? ( dev-db/postgresql:13=[server] ) postgres_ RESTRICT=test SLOT=0 SRC_URI=https://github.com/pgRouting/pgrouting/archive/v3.1.3.tar.gz -> pgrouting-3.1.3.tar.gz -_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 43fa70d2d8740e8e0149e6da1995ea28 postgres-multi eb5db133692fe18bccaa7c2c5f45306d strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=a14e4e04f22c0341a42743cba0ccb765 diff --git a/metadata/md5-cache/dev-db/pgrouting-3.2.1 b/metadata/md5-cache/dev-db/pgrouting-3.2.1 index 8e8b1c12b908..4648f830880a 100644 --- a/metadata/md5-cache/dev-db/pgrouting-3.2.1 +++ b/metadata/md5-cache/dev-db/pgrouting-3.2.1 @@ -12,5 +12,5 @@ RDEPEND=postgres_targets_postgres14? ( dev-db/postgresql:14=[server] ) postgres_ RESTRICT=test SLOT=0 SRC_URI=https://github.com/pgRouting/pgrouting/archive/v3.2.1.tar.gz -> pgrouting-3.2.1.tar.gz -_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 43fa70d2d8740e8e0149e6da1995ea28 postgres-multi eb5db133692fe18bccaa7c2c5f45306d strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=0c9bda0283b5f236bf3c36cc7ba44dc0 diff --git a/metadata/md5-cache/dev-db/pgtap-1.2.0-r2 b/metadata/md5-cache/dev-db/pgtap-1.2.0-r2 index 4c7231796915..ac97cfa22648 100644 --- a/metadata/md5-cache/dev-db/pgtap-1.2.0-r2 +++ b/metadata/md5-cache/dev-db/pgtap-1.2.0-r2 @@ -11,5 +11,5 @@ RDEPEND=postgres_targets_postgres14? ( dev-db/postgresql:14= ) postgres_targets_ RESTRICT=test SLOT=0 SRC_URI=https://api.pgxn.org/dist/pgtap/1.2.0/pgtap-1.2.0.zip -_eclasses_=multibuild bddcb51b74f4a76724ff7cf8e7388869 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d +_eclasses_=multibuild bddcb51b74f4a76724ff7cf8e7388869 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 43fa70d2d8740e8e0149e6da1995ea28 postgres-multi eb5db133692fe18bccaa7c2c5f45306d _md5_=b481b3a43cd382953cad132feb785011 diff --git a/metadata/md5-cache/dev-db/plr-8.4.5 b/metadata/md5-cache/dev-db/plr-8.4.5 index 1d575e9be21b..830f5f43e81a 100644 --- a/metadata/md5-cache/dev-db/plr-8.4.5 +++ b/metadata/md5-cache/dev-db/plr-8.4.5 @@ -12,5 +12,5 @@ RDEPEND=dev-lang/R postgres_targets_postgres14? ( dev-db/postgresql:14=[server] REQUIRED_USE=|| ( postgres_targets_postgres14 postgres_targets_postgres13 postgres_targets_postgres12 postgres_targets_postgres11 postgres_targets_postgres10 ) SLOT=0 SRC_URI=https://github.com/postgres-plr/plr/archive/REL8_4_5.tar.gz -> plr-8.4.5.tar.gz -_eclasses_=multibuild bddcb51b74f4a76724ff7cf8e7388869 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d +_eclasses_=multibuild bddcb51b74f4a76724ff7cf8e7388869 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 43fa70d2d8740e8e0149e6da1995ea28 postgres-multi eb5db133692fe18bccaa7c2c5f45306d _md5_=f35750b772647c0bf709abc588cdae38 diff --git a/metadata/md5-cache/dev-db/postgis-3.1.3 b/metadata/md5-cache/dev-db/postgis-3.1.3 index 7865fe3be1f7..6741ea73e52a 100644 --- a/metadata/md5-cache/dev-db/postgis-3.1.3 +++ b/metadata/md5-cache/dev-db/postgis-3.1.3 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( postgres_targets_postgres13 postgres_targets_postgres12 postgr RESTRICT=test SLOT=0 SRC_URI=https://download.osgeo.org/postgis/source/postgis-3.1.3.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 43fa70d2d8740e8e0149e6da1995ea28 postgres-multi eb5db133692fe18bccaa7c2c5f45306d toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=cf844613daf020a647d34ec7c8fe7289 diff --git a/metadata/md5-cache/dev-db/postgis-3.1.8-r1 b/metadata/md5-cache/dev-db/postgis-3.1.8-r1 index 1e836c016176..3719babf18e3 100644 --- a/metadata/md5-cache/dev-db/postgis-3.1.8-r1 +++ b/metadata/md5-cache/dev-db/postgis-3.1.8-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( postgres_targets_postgres14 postgres_targets_postgres13 postgr RESTRICT=test SLOT=0 SRC_URI=https://download.osgeo.org/postgis/source/postgis-3.1.8.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 43fa70d2d8740e8e0149e6da1995ea28 postgres-multi eb5db133692fe18bccaa7c2c5f45306d toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=48d7fa704676fae407687889ac9b082c diff --git a/metadata/md5-cache/dev-db/postgis-3.2.4-r1 b/metadata/md5-cache/dev-db/postgis-3.2.4-r1 index e110b9e924fb..1db6e9e08159 100644 --- a/metadata/md5-cache/dev-db/postgis-3.2.4-r1 +++ b/metadata/md5-cache/dev-db/postgis-3.2.4-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( postgres_targets_postgres14 postgres_targets_postgres13 postgr RESTRICT=test SLOT=0 SRC_URI=https://download.osgeo.org/postgis/source/postgis-3.2.4.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 43fa70d2d8740e8e0149e6da1995ea28 postgres-multi eb5db133692fe18bccaa7c2c5f45306d toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=cbe571feac2e5c4074df6a7b9a70b8fc diff --git a/metadata/md5-cache/dev-db/postgis-3.3.2-r1 b/metadata/md5-cache/dev-db/postgis-3.3.2-r1 index f50b5c595084..9ff947eaf660 100644 --- a/metadata/md5-cache/dev-db/postgis-3.3.2-r1 +++ b/metadata/md5-cache/dev-db/postgis-3.3.2-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( postgres_targets_postgres15 postgres_targets_postgres14 postgr RESTRICT=test SLOT=0 SRC_URI=https://download.osgeo.org/postgis/source/postgis-3.3.2.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 43fa70d2d8740e8e0149e6da1995ea28 postgres-multi eb5db133692fe18bccaa7c2c5f45306d toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=faebf096f2166041a73bbe16e4368bde diff --git a/metadata/md5-cache/dev-db/postgis-9999 b/metadata/md5-cache/dev-db/postgis-9999 index e40617d1d2f2..d73dbf99dcee 100644 --- a/metadata/md5-cache/dev-db/postgis-9999 +++ b/metadata/md5-cache/dev-db/postgis-9999 @@ -12,5 +12,5 @@ RDEPEND=postgres_targets_postgres14? ( dev-db/postgresql:14=[server] ) postgres_ REQUIRED_USE=|| ( postgres_targets_postgres14 postgres_targets_postgres13 postgres_targets_postgres12 postgres_targets_postgres11 postgres_targets_postgres10 ) RESTRICT=test SLOT=0 -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a git-r3 27e13c09a4c7e4c78ac812f74727e676 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a git-r3 27e13c09a4c7e4c78ac812f74727e676 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 43fa70d2d8740e8e0149e6da1995ea28 postgres-multi eb5db133692fe18bccaa7c2c5f45306d toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=cbe571feac2e5c4074df6a7b9a70b8fc diff --git a/metadata/md5-cache/dev-db/redis-6.2.12 b/metadata/md5-cache/dev-db/redis-6.2.12 new file mode 100644 index 000000000000..42f9ca397ac0 --- /dev/null +++ b/metadata/md5-cache/dev-db/redis-6.2.12 @@ -0,0 +1,17 @@ +BDEPEND=lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) jemalloc? ( >=dev-libs/jemalloc-5.1:= ) ssl? ( dev-libs/openssl:0= ) systemd? ( sys-apps/systemd:= ) tcmalloc? ( dev-util/google-perftools ) virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst prepare setup test +DEPEND=lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) jemalloc? ( >=dev-libs/jemalloc-5.1:= ) ssl? ( dev-libs/openssl:0= ) systemd? ( sys-apps/systemd:= ) tcmalloc? ( dev-util/google-perftools ) test? ( dev-lang/tcl:0= ssl? ( dev-tcltk/tls ) ) +DESCRIPTION=A persistent caching system, key-value, and data structures database +EAPI=8 +HOMEPAGE=https://redis.io +INHERIT=autotools edo flag-o-matic lua-single multiprocessing systemd tmpfiles toolchain-funcs +IUSE=+jemalloc selinux ssl systemd tcmalloc test lua_single_target_luajit lua_single_target_lua5-1 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris +LICENSE=BSD +RDEPEND=lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) jemalloc? ( >=dev-libs/jemalloc-5.1:= ) ssl? ( dev-libs/openssl:0= ) systemd? ( sys-apps/systemd:= ) tcmalloc? ( dev-util/google-perftools ) acct-group/redis acct-user/redis selinux? ( sec-policy/selinux-redis ) virtual/tmpfiles +REQUIRED_USE=?? ( jemalloc tcmalloc ) ^^ ( lua_single_target_luajit lua_single_target_lua5-1 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://download.redis.io/releases/redis-6.2.12.tar.gz +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=0570f27cd61172e024a1a266945be844 diff --git a/metadata/md5-cache/dev-db/redis-7.0.11 b/metadata/md5-cache/dev-db/redis-7.0.11 new file mode 100644 index 000000000000..236f671a0cee --- /dev/null +++ b/metadata/md5-cache/dev-db/redis-7.0.11 @@ -0,0 +1,17 @@ +BDEPEND=jemalloc? ( >=dev-libs/jemalloc-5.1:= ) ssl? ( dev-libs/openssl:0= ) systemd? ( sys-apps/systemd:= ) tcmalloc? ( dev-util/google-perftools ) virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst prepare test +DEPEND=jemalloc? ( >=dev-libs/jemalloc-5.1:= ) ssl? ( dev-libs/openssl:0= ) systemd? ( sys-apps/systemd:= ) tcmalloc? ( dev-util/google-perftools ) test? ( dev-lang/tcl:0= ssl? ( dev-tcltk/tls ) ) +DESCRIPTION=A persistent caching system, key-value, and data structures database +EAPI=8 +HOMEPAGE=https://redis.io +INHERIT=autotools edo flag-o-matic multiprocessing systemd tmpfiles toolchain-funcs +IUSE=+jemalloc selinux ssl systemd tcmalloc test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris +LICENSE=BSD +RDEPEND=jemalloc? ( >=dev-libs/jemalloc-5.1:= ) ssl? ( dev-libs/openssl:0= ) systemd? ( sys-apps/systemd:= ) tcmalloc? ( dev-util/google-perftools ) acct-group/redis acct-user/redis selinux? ( sec-policy/selinux-redis ) virtual/tmpfiles +REQUIRED_USE=?? ( jemalloc tcmalloc ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://download.redis.io/releases/redis-7.0.11.tar.gz +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=6146b738e9a9eaabad7ceae5b4816846 diff --git a/metadata/md5-cache/dev-db/rqlite-7.10.1 b/metadata/md5-cache/dev-db/rqlite-7.10.1 index 92805732e83d..2a2851171da2 100644 --- a/metadata/md5-cache/dev-db/rqlite-7.10.1 +++ b/metadata/md5-cache/dev-db/rqlite-7.10.1 @@ -9,5 +9,5 @@ LICENSE=MIT Apache-2.0 BSD CC0-1.0 MPL-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/rqlite/rqlite/archive/v7.10.1.tar.gz -> rqlite-7.10.1.tar.gz https://dev.gentoo.org/~zmedico/dist/rqlite-7.10.1-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=caa6d48a6cf07dd6afc94e429e25d45a diff --git a/metadata/md5-cache/dev-db/rqlite-7.11.0 b/metadata/md5-cache/dev-db/rqlite-7.11.0 index 3228c54b298a..fb22fdc02b7d 100644 --- a/metadata/md5-cache/dev-db/rqlite-7.11.0 +++ b/metadata/md5-cache/dev-db/rqlite-7.11.0 @@ -9,5 +9,5 @@ LICENSE=MIT Apache-2.0 BSD CC0-1.0 MPL-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/zmedico/rqlite/archive/v7.11.0-vendor.tar.gz -> rqlite-7.11.0-vendor.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=86b513b585a96db677aca821299a5eb3 diff --git a/metadata/md5-cache/dev-db/rqlite-7.13.0 b/metadata/md5-cache/dev-db/rqlite-7.13.0 index 4c8de34b27d7..0f3ef8b20b45 100644 --- a/metadata/md5-cache/dev-db/rqlite-7.13.0 +++ b/metadata/md5-cache/dev-db/rqlite-7.13.0 @@ -9,5 +9,5 @@ LICENSE=MIT Apache-2.0 BSD CC0-1.0 MPL-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/zmedico/rqlite/archive/v7.13.0-vendor.tar.gz -> rqlite-7.13.0-vendor.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=e5c6039d6597310094d2ee2a22cafa3f diff --git a/metadata/md5-cache/dev-db/rqlite-7.13.1 b/metadata/md5-cache/dev-db/rqlite-7.13.1 index 3a0a115284df..e0bdb1d8bf99 100644 --- a/metadata/md5-cache/dev-db/rqlite-7.13.1 +++ b/metadata/md5-cache/dev-db/rqlite-7.13.1 @@ -9,5 +9,5 @@ LICENSE=MIT Apache-2.0 BSD CC0-1.0 MPL-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/zmedico/rqlite/archive/v7.13.1-vendor.tar.gz -> rqlite-7.13.1-vendor.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=cb7b7c77c683e435e40c0059d373e4c2 diff --git a/metadata/md5-cache/dev-db/rqlite-7.9.2 b/metadata/md5-cache/dev-db/rqlite-7.9.2 index 505ceb6998a8..38bf4c2d0f24 100644 --- a/metadata/md5-cache/dev-db/rqlite-7.9.2 +++ b/metadata/md5-cache/dev-db/rqlite-7.9.2 @@ -9,5 +9,5 @@ LICENSE=MIT Apache-2.0 BSD CC0-1.0 MPL-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/rqlite/rqlite/archive/v7.9.2.tar.gz -> rqlite-7.9.2.tar.gz https://dev.gentoo.org/~zmedico/dist/rqlite-7.7.2-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=92292bb5bd3c7c66838244770cd1522a diff --git a/metadata/md5-cache/dev-db/slony1-2.2.10 b/metadata/md5-cache/dev-db/slony1-2.2.10 index 73e242dd1105..c0bb869ab36d 100644 --- a/metadata/md5-cache/dev-db/slony1-2.2.10 +++ b/metadata/md5-cache/dev-db/slony1-2.2.10 @@ -11,5 +11,5 @@ RDEPEND=postgres_targets_postgres14? ( dev-db/postgresql:14=[server,threads] ) p RESTRICT=test SLOT=0 SRC_URI=https://slony.info/downloads/2.2/source/slony1-2.2.10.tar.bz2 doc? ( https://slony.info/downloads/2.2/source/slony1-2.2.10-docs.tar.bz2 ) -_eclasses_=multibuild bddcb51b74f4a76724ff7cf8e7388869 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d +_eclasses_=multibuild bddcb51b74f4a76724ff7cf8e7388869 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 43fa70d2d8740e8e0149e6da1995ea28 postgres-multi eb5db133692fe18bccaa7c2c5f45306d _md5_=af0e92a9abfc455c4c13187be4c0c0f1 diff --git a/metadata/md5-cache/dev-db/sqlite-3.40.1 b/metadata/md5-cache/dev-db/sqlite-3.40.1 deleted file mode 100644 index 679ac79f6eb5..000000000000 --- a/metadata/md5-cache/dev-db/sqlite-3.40.1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=>=dev-lang/tcl-8.6:0 app-arch/unzip sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=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(-)?] icu? ( dev-libs/icu:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) readline? ( sys-libs/readline:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) tcl? ( dev-lang/tcl:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) tools? ( dev-lang/tcl:= ) test? ( >=dev-lang/tcl-8.6: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(-)?] ) -DESCRIPTION=SQL database engine -EAPI=8 -HOMEPAGE=https://sqlite.org/ -INHERIT=autotools flag-o-matic multilib-minimal toolchain-funcs -IUSE=debug doc icu +readline secure-delete static-libs tcl test tools 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 ~loong ~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=public-domain -RDEPEND=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(-)?] icu? ( dev-libs/icu:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) readline? ( sys-libs/readline:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) tcl? ( dev-lang/tcl:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) tools? ( dev-lang/tcl:= ) -RESTRICT=!test? ( test ) -SLOT=3 -SRC_URI=https://sqlite.org/2022/sqlite-src-3400100.zip doc? ( https://sqlite.org/2022/sqlite-doc-3400100.zip ) -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=040edd2b9097819cd5fd9cb2f0d9bed4 diff --git a/metadata/md5-cache/dev-db/timescaledb-2.10.0 b/metadata/md5-cache/dev-db/timescaledb-2.10.0 index 8e4d75a483d1..34981366e423 100644 --- a/metadata/md5-cache/dev-db/timescaledb-2.10.0 +++ b/metadata/md5-cache/dev-db/timescaledb-2.10.0 @@ -12,5 +12,5 @@ RDEPEND=postgres_targets_postgres15? ( dev-db/postgresql:15=[ssl] ) postgres_tar RESTRICT=test SLOT=0 SRC_URI=https://github.com/timescale/timescaledb/archive/2.10.0.tar.gz -> timescaledb-2.10.0.tar.gz -_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 43fa70d2d8740e8e0149e6da1995ea28 postgres-multi eb5db133692fe18bccaa7c2c5f45306d strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=19db5d2196504f07526b52ffab518dcf diff --git a/metadata/md5-cache/dev-db/timescaledb-2.10.1 b/metadata/md5-cache/dev-db/timescaledb-2.10.1 index 5fc638c1a222..09ee57e5c190 100644 --- a/metadata/md5-cache/dev-db/timescaledb-2.10.1 +++ b/metadata/md5-cache/dev-db/timescaledb-2.10.1 @@ -12,5 +12,5 @@ RDEPEND=postgres_targets_postgres15? ( dev-db/postgresql:15=[ssl] ) postgres_tar RESTRICT=test SLOT=0 SRC_URI=https://github.com/timescale/timescaledb/archive/2.10.1.tar.gz -> timescaledb-2.10.1.tar.gz -_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 43fa70d2d8740e8e0149e6da1995ea28 postgres-multi eb5db133692fe18bccaa7c2c5f45306d strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=19db5d2196504f07526b52ffab518dcf diff --git a/metadata/md5-cache/dev-db/timescaledb-2.9.2 b/metadata/md5-cache/dev-db/timescaledb-2.9.2 index 2fe35a017736..e39f5af96fc6 100644 --- a/metadata/md5-cache/dev-db/timescaledb-2.9.2 +++ b/metadata/md5-cache/dev-db/timescaledb-2.9.2 @@ -12,5 +12,5 @@ RDEPEND=postgres_targets_postgres15? ( dev-db/postgresql:15=[ssl] ) postgres_tar RESTRICT=test SLOT=0 SRC_URI=https://github.com/timescale/timescaledb/archive/2.9.2.tar.gz -> timescaledb-2.9.2.tar.gz -_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 43fa70d2d8740e8e0149e6da1995ea28 postgres-multi eb5db133692fe18bccaa7c2c5f45306d strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=19db5d2196504f07526b52ffab518dcf diff --git a/metadata/md5-cache/dev-db/timescaledb-2.9.3 b/metadata/md5-cache/dev-db/timescaledb-2.9.3 index 70c98e48f56f..562ab3ea28c7 100644 --- a/metadata/md5-cache/dev-db/timescaledb-2.9.3 +++ b/metadata/md5-cache/dev-db/timescaledb-2.9.3 @@ -12,5 +12,5 @@ RDEPEND=postgres_targets_postgres15? ( dev-db/postgresql:15=[ssl] ) postgres_tar RESTRICT=test SLOT=0 SRC_URI=https://github.com/timescale/timescaledb/archive/2.9.3.tar.gz -> timescaledb-2.9.3.tar.gz -_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 postgres-multi eb5db133692fe18bccaa7c2c5f45306d strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 43fa70d2d8740e8e0149e6da1995ea28 postgres-multi eb5db133692fe18bccaa7c2c5f45306d strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=19db5d2196504f07526b52ffab518dcf diff --git a/metadata/md5-cache/dev-embedded/Manifest.gz b/metadata/md5-cache/dev-embedded/Manifest.gz index 1580e0d69f72..b639fd1e55b4 100644 Binary files a/metadata/md5-cache/dev-embedded/Manifest.gz and b/metadata/md5-cache/dev-embedded/Manifest.gz differ diff --git a/metadata/md5-cache/dev-embedded/arduino-builder-1.5.4-r1 b/metadata/md5-cache/dev-embedded/arduino-builder-1.5.4-r1 index d85ce271ced0..1cbc81ec38da 100644 --- a/metadata/md5-cache/dev-embedded/arduino-builder-1.5.4-r1 +++ b/metadata/md5-cache/dev-embedded/arduino-builder-1.5.4-r1 @@ -10,5 +10,5 @@ RDEPEND=sys-devel/crossdev dev-embedded/avrdude dev-embedded/arduino-ctags RESTRICT=strip SLOT=0 SRC_URI=https://github.com/arduino/arduino-builder/archive/1.5.4.tar.gz -> arduino-builder-1.5.4.tar.gz https://dev.gentoo.org/~williamh/dist/arduino-builder-1.5.4-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=db27ba8442bcd475a5beb58028af07d7 diff --git a/metadata/md5-cache/dev-games/Manifest.gz b/metadata/md5-cache/dev-games/Manifest.gz index 1cc584c3d396..4f00017c87b8 100644 Binary files a/metadata/md5-cache/dev-games/Manifest.gz and b/metadata/md5-cache/dev-games/Manifest.gz differ diff --git a/metadata/md5-cache/dev-games/godot-4.0.1 b/metadata/md5-cache/dev-games/godot-4.0.1 deleted file mode 100644 index 8e2f4cfe3fdb..000000000000 --- a/metadata/md5-cache/dev-games/godot-4.0.1 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=virtual/pkgconfig || ( >dev-util/scons-4.5.1-r1 =dev-lang/python-3.11.1-r1:3.11 >=dev-util/scons-4.4.0[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 >=dev-util/scons-4.4.0[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 >=dev-util/scons-4.4.0[python_targets_python3_9(-)] ) ) -DEFINED_PHASES=compile install postinst postrm preinst prepare setup test -DEPEND=app-arch/zstd:= dev-games/recastnavigation:= dev-libs/icu:= dev-libs/libpcre2:=[pcre32] media-libs/freetype[brotli,harfbuzz] media-libs/harfbuzz:=[icu] media-libs/libogg media-libs/libpng:= media-libs/libvorbis mygui-3.4.1.tar.gz _eclasses_=cmake 7fb5980de96325cbab639f5b2187357c edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=fd0d74ed4a315f4912bf0e63f4eccbde +_md5_=b97c748a588048b02390e36ef4459fd8 diff --git a/metadata/md5-cache/dev-go/Manifest.gz b/metadata/md5-cache/dev-go/Manifest.gz index f1051a4cb961..6d75bdf5588e 100644 Binary files a/metadata/md5-cache/dev-go/Manifest.gz and b/metadata/md5-cache/dev-go/Manifest.gz differ diff --git a/metadata/md5-cache/dev-go/delve-1.20.2 b/metadata/md5-cache/dev-go/delve-1.20.2 index d5d95ccb357e..59cf4e5e8884 100644 --- a/metadata/md5-cache/dev-go/delve-1.20.2 +++ b/metadata/md5-cache/dev-go/delve-1.20.2 @@ -9,5 +9,5 @@ LICENSE=MIT BSD BSD-2 Apache-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/go-delve/delve/archive/v1.20.2.tar.gz -> delve-1.20.2.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=d8810737ae34ed16049ad8aaaf15c8db diff --git a/metadata/md5-cache/dev-go/delve-1.8.0 b/metadata/md5-cache/dev-go/delve-1.8.0 index afa93141757d..e6c90e0884b3 100644 --- a/metadata/md5-cache/dev-go/delve-1.8.0 +++ b/metadata/md5-cache/dev-go/delve-1.8.0 @@ -9,5 +9,5 @@ LICENSE=MIT BSD BSD-2 Apache-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/go-delve/delve/archive/v1.8.0.tar.gz -> delve-1.8.0.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=1ec218fda937b3254703a3737bada793 diff --git a/metadata/md5-cache/dev-go/delve-1.9.0 b/metadata/md5-cache/dev-go/delve-1.9.0 index 3b43b0975b9e..7353fe995371 100644 --- a/metadata/md5-cache/dev-go/delve-1.9.0 +++ b/metadata/md5-cache/dev-go/delve-1.9.0 @@ -9,5 +9,5 @@ LICENSE=MIT BSD BSD-2 Apache-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/go-delve/delve/archive/v1.9.0.tar.gz -> delve-1.9.0.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=34982e64aba1619c77a377144d772387 diff --git a/metadata/md5-cache/dev-go/get-ego-vendor-0.2.0 b/metadata/md5-cache/dev-go/get-ego-vendor-0.2.0 index 0ac30bfb148b..18648fac012e 100644 --- a/metadata/md5-cache/dev-go/get-ego-vendor-0.2.0 +++ b/metadata/md5-cache/dev-go/get-ego-vendor-0.2.0 @@ -9,5 +9,5 @@ LICENSE=BSD RESTRICT=strip SLOT=0 SRC_URI=https://github.com/williamh/get-ego-vendor/archive/v0.2.0.tar.gz -> get-ego-vendor-0.2.0.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=b71bb304112fd4f523fa6456731541d0 diff --git a/metadata/md5-cache/dev-go/go-bindata-3.1.3 b/metadata/md5-cache/dev-go/go-bindata-3.1.3 index 8e739f8c4c30..d54033088aea 100644 --- a/metadata/md5-cache/dev-go/go-bindata-3.1.3 +++ b/metadata/md5-cache/dev-go/go-bindata-3.1.3 @@ -9,5 +9,5 @@ LICENSE=CC-PD RESTRICT=strip SLOT=0/3.1.3 SRC_URI=https://github.com/go-bindata/go-bindata/archive/v3.1.3.tar.gz -> go-bindata-3.1.3.tar.gz https://dev.gentoo.org/~sam/distfiles/dev-go/go-bindata/go-bindata-3.1.3-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=2a6b0ab5164dc2f1d0b2f40156892253 diff --git a/metadata/md5-cache/dev-go/go-critic-0.6.4 b/metadata/md5-cache/dev-go/go-critic-0.6.4 index 5a96c649cb80..10aa014097bd 100644 --- a/metadata/md5-cache/dev-go/go-critic-0.6.4 +++ b/metadata/md5-cache/dev-go/go-critic-0.6.4 @@ -9,5 +9,5 @@ LICENSE=MIT RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/go-critic/go-critic/archive/v0.6.4.tar.gz -> go-critic-0.6.4.tar.gz https://dev.gentoo.org/~williamh/dist/go-critic-0.6.4-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=6789426a678ae60ade28b6c5fc7a80ab diff --git a/metadata/md5-cache/dev-go/go-license-detector-4.3.0 b/metadata/md5-cache/dev-go/go-license-detector-4.3.0 index c85e14debe72..3cc193e7b4ce 100644 --- a/metadata/md5-cache/dev-go/go-license-detector-4.3.0 +++ b/metadata/md5-cache/dev-go/go-license-detector-4.3.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD BSD-2 MIT ISC RESTRICT=strip SLOT=0 SRC_URI=https://github.com/go-enry/go-license-detector/archive/v4.3.0.tar.gz -> go-license-detector-4.3.0.tar.gz https://dev.gentoo.org/~williamh/dist/go-license-detector-4.3.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=8eb5866bc5336a0494f8dca0dc1aadc4 diff --git a/metadata/md5-cache/dev-go/go-licenses-1.2.1 b/metadata/md5-cache/dev-go/go-licenses-1.2.1 index 3aadde77d725..4ae4c99666b9 100644 --- a/metadata/md5-cache/dev-go/go-licenses-1.2.1 +++ b/metadata/md5-cache/dev-go/go-licenses-1.2.1 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD-2 BSD MIT Unlicense RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/google/go-licenses/archive/refs/tags/v1.2.1.tar.gz -> go-licenses-1.2.1.tar.gz https://dev.gentoo.org/~sam/distfiles/dev-go/go-licenses/go-licenses-1.2.1-deps.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff edo c0eb9cbe6b0bd01fcb4918f12598a4d3 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff edo c0eb9cbe6b0bd01fcb4918f12598a4d3 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=1d57a735b2e2c684317dfd4eaacc8c59 diff --git a/metadata/md5-cache/dev-go/go-md2man-2.0.0 b/metadata/md5-cache/dev-go/go-md2man-2.0.0 index 695be4a8d374..2207c8c6cf0c 100644 --- a/metadata/md5-cache/dev-go/go-md2man-2.0.0 +++ b/metadata/md5-cache/dev-go/go-md2man-2.0.0 @@ -9,5 +9,5 @@ LICENSE=BSD-2 MIT RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/cpuguy83/go-md2man/archive/v2.0.0.tar.gz -> go-md2man-2.0.0.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=17f46ff67a5a5ee9c3612f7c0fc561bf diff --git a/metadata/md5-cache/dev-go/go-md2man-2.0.2 b/metadata/md5-cache/dev-go/go-md2man-2.0.2 index ac16068f4789..1fd754dd7a07 100644 --- a/metadata/md5-cache/dev-go/go-md2man-2.0.2 +++ b/metadata/md5-cache/dev-go/go-md2man-2.0.2 @@ -9,5 +9,5 @@ LICENSE=BSD-2 MIT RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/cpuguy83/go-md2man/archive/v2.0.2.tar.gz -> go-md2man-2.0.2.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=3a8c7824b5c36da1639be6464921b6e5 diff --git a/metadata/md5-cache/dev-go/go-tools-0.1.10 b/metadata/md5-cache/dev-go/go-tools-0.1.10 index 5d3fa39fb5fc..65ecc5ebd7bd 100644 --- a/metadata/md5-cache/dev-go/go-tools-0.1.10 +++ b/metadata/md5-cache/dev-go/go-tools-0.1.10 @@ -9,5 +9,5 @@ LICENSE=BSD MIT RESTRICT=strip SLOT=0 SRC_URI=https://github.com/golang/tools/archive/v0.1.10.tar.gz -> go-tools-0.1.10.tar.gz https://dev.gentoo.org/~williamh/dist/go-tools-0.1.10-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=e8b569b97d1d57e1320c7e7fbfaa0d85 diff --git a/metadata/md5-cache/dev-go/go-tour-0_pre20200201 b/metadata/md5-cache/dev-go/go-tour-0_pre20200201 index 07b0db3c8834..007a5b36d746 100644 --- a/metadata/md5-cache/dev-go/go-tour-0_pre20200201 +++ b/metadata/md5-cache/dev-go/go-tour-0_pre20200201 @@ -9,5 +9,5 @@ LICENSE=BSD Apache-2.0 MIT RESTRICT=strip SLOT=0 SRC_URI=https://github.com/golang/tour/archive/8f38c9a8d074c1943ede6463d78b0d769331dd3e.tar.gz -> go-tour-0_pre20200201.tar.gz https://dev.gentoo.org/~zmedico/dist/go-tour-0_pre20200201-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=f819e895529b609b4723f4041d77af7a diff --git a/metadata/md5-cache/dev-go/gocov-1.1.0 b/metadata/md5-cache/dev-go/gocov-1.1.0 index cd5de7df9906..a2581f3e9d80 100644 --- a/metadata/md5-cache/dev-go/gocov-1.1.0 +++ b/metadata/md5-cache/dev-go/gocov-1.1.0 @@ -9,5 +9,5 @@ LICENSE=BSD-2 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/axw/gocov/archive/v1.1.0.tar.gz -> gocov-1.1.0.tar.gz https://dev.gentoo.org/~williamh/dist/gocov-1.1.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=e8543d00e6dacbf45955ccc06949fb5a diff --git a/metadata/md5-cache/dev-go/gogo-protobuf-1.3.2 b/metadata/md5-cache/dev-go/gogo-protobuf-1.3.2 index 56142f0c69ff..fd76d4793a61 100644 --- a/metadata/md5-cache/dev-go/gogo-protobuf-1.3.2 +++ b/metadata/md5-cache/dev-go/gogo-protobuf-1.3.2 @@ -9,5 +9,5 @@ LICENSE=BSD RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/gogo/protobuf/archive/v1.3.2.tar.gz -> gogo-protobuf-1.3.2.tar.gz https://dev.gentoo.org/~sam/distfiles/dev-go/gogo-protobuf/gogo-protobuf-1.3.2-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=d581cf128cbb3a4d8ad55daea9ad4bea diff --git a/metadata/md5-cache/dev-go/golangci-lint-1.50.1-r1 b/metadata/md5-cache/dev-go/golangci-lint-1.50.1-r1 index ade1d8016372..bddc3ad291c9 100644 --- a/metadata/md5-cache/dev-go/golangci-lint-1.50.1-r1 +++ b/metadata/md5-cache/dev-go/golangci-lint-1.50.1-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/golangci/golangci-lint/archive/v1.50.1.tar.gz -> golangci-lint-1.50.1.tar.gz https://dev.gentoo.org/~williamh/dist/golangci-lint-1.50.1-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=b1405faa921d6fc6c711112ae3d6eefa diff --git a/metadata/md5-cache/dev-go/golicense-0.2.0 b/metadata/md5-cache/dev-go/golicense-0.2.0 index de0459697411..635aea06222c 100644 --- a/metadata/md5-cache/dev-go/golicense-0.2.0 +++ b/metadata/md5-cache/dev-go/golicense-0.2.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD ISC MIT MPL-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/mitchellh/golicense/archive/v0.2.0.tar.gz -> golicense-0.2.0.tar.gz https://dev.gentoo.org/~williamh/dist/golicense-0.2.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=3ef8add2fb29bdc990ac9e33dd9fe12d diff --git a/metadata/md5-cache/dev-go/gopls-0.9.4 b/metadata/md5-cache/dev-go/gopls-0.9.4 index 1773a43832c8..9e32e31805f7 100644 --- a/metadata/md5-cache/dev-go/gopls-0.9.4 +++ b/metadata/md5-cache/dev-go/gopls-0.9.4 @@ -9,5 +9,5 @@ LICENSE=BSD RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/golang/tools/archive/refs/tags/gopls/v0.9.4.tar.gz -> gopls-0.9.4.tar.gz https://dev.gentoo.org/~zmedico/dist/gopls-0.9.4-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=fe5052a0be486fdc5907cc438f1e1134 diff --git a/metadata/md5-cache/dev-go/gopls-0.9.5 b/metadata/md5-cache/dev-go/gopls-0.9.5 index 070e60998b1c..bb0a4392f4ca 100644 --- a/metadata/md5-cache/dev-go/gopls-0.9.5 +++ b/metadata/md5-cache/dev-go/gopls-0.9.5 @@ -9,5 +9,5 @@ LICENSE=BSD RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/golang/tools/archive/refs/tags/gopls/v0.9.5.tar.gz -> gopls-0.9.5.tar.gz https://dev.gentoo.org/~zmedico/dist/gopls-0.9.5-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=fe5052a0be486fdc5907cc438f1e1134 diff --git a/metadata/md5-cache/dev-go/gox-1.0.1 b/metadata/md5-cache/dev-go/gox-1.0.1 index 5cf4d8b76bb4..399fe827774f 100644 --- a/metadata/md5-cache/dev-go/gox-1.0.1 +++ b/metadata/md5-cache/dev-go/gox-1.0.1 @@ -9,5 +9,5 @@ LICENSE=MPL-2.0 RESTRICT=strip test SLOT=0/1.0.1 SRC_URI=https://github.com/mitchellh/gox/archive/v1.0.1.tar.gz -> gox-1.0.1.tar.gz https://dev.gentoo.org/~jsmolic/gox-riscv.patch -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=1a6c53f95eb7722bf7a4e07d1db93bef diff --git a/metadata/md5-cache/dev-go/licenseclassifier-0_pre20200402 b/metadata/md5-cache/dev-go/licenseclassifier-0_pre20200402 index d372fea3e098..71bb1508142f 100644 --- a/metadata/md5-cache/dev-go/licenseclassifier-0_pre20200402 +++ b/metadata/md5-cache/dev-go/licenseclassifier-0_pre20200402 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 MIT RESTRICT=strip SLOT=0 SRC_URI=https://github.com/google/licenseclassifier/archive/879cb1424de0ab6dbb3d7a0788a0e40c2515a1b7.tar.gz -> licenseclassifier-0_pre20200402.tar.gz mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.0.zip -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.0.zip mirror://goproxy//github.com/google/go-cmp/@v/v0.2.0.zip -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.2.0.zip mirror://goproxy//github.com/pmezard/go-difflib/@v/v1.0.0.zip -> github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/sergi/go-diff/@v/v1.0.0.zip -> github.com%2Fsergi%2Fgo-diff%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/stretchr/testify/@v/v1.3.0.zip -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.3.0.zip mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.0.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.2.0.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/pmezard/go-difflib/@v/v1.0.0.mod -> github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/sergi/go-diff/@v/v1.0.0.mod -> github.com%2Fsergi%2Fgo-diff%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/stretchr/objx/@v/v0.1.0.mod -> github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.3.0.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.3.0.mod -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=1c0459d761092ba940f5e8241332e9a0 diff --git a/metadata/md5-cache/dev-go/licenseclassifier-9999 b/metadata/md5-cache/dev-go/licenseclassifier-9999 index c39bbb5b9a04..73d5a7db6f9e 100644 --- a/metadata/md5-cache/dev-go/licenseclassifier-9999 +++ b/metadata/md5-cache/dev-go/licenseclassifier-9999 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 MIT PROPERTIES=live RESTRICT=strip SLOT=0 -_eclasses_=git-r3 27e13c09a4c7e4c78ac812f74727e676 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=git-r3 27e13c09a4c7e4c78ac812f74727e676 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=5ab53227a4a22f215df9c3f367f3eb16 diff --git a/metadata/md5-cache/dev-go/vend-1.0.3 b/metadata/md5-cache/dev-go/vend-1.0.3 index d50687b70e63..eaaa10a17e93 100644 --- a/metadata/md5-cache/dev-go/vend-1.0.3 +++ b/metadata/md5-cache/dev-go/vend-1.0.3 @@ -9,5 +9,5 @@ LICENSE=MIT RESTRICT=strip SLOT=0 SRC_URI=https://github.com/nomad-software/vend/archive/v1.0.3.tar.gz -> vend-1.0.3.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=2f603d89e80155273b5e8c7e18366b17 diff --git a/metadata/md5-cache/dev-java/Manifest.gz b/metadata/md5-cache/dev-java/Manifest.gz index c3ddd6b59d9f..2731b38d445a 100644 Binary files a/metadata/md5-cache/dev-java/Manifest.gz and b/metadata/md5-cache/dev-java/Manifest.gz differ diff --git a/metadata/md5-cache/dev-java/maven-bin-3.9.1 b/metadata/md5-cache/dev-java/maven-bin-3.9.1 index 3e0bfbca2a4d..f9cd38e6abf0 100644 --- a/metadata/md5-cache/dev-java/maven-bin-3.9.1 +++ b/metadata/md5-cache/dev-java/maven-bin-3.9.1 @@ -4,10 +4,10 @@ DESCRIPTION=Project Management and Comprehension Tool for Java EAPI=8 HOMEPAGE=https://maven.apache.org/ INHERIT=java-pkg-2 -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=Apache-2.0 RDEPEND=>=virtual/jre-1.8:* >=dev-java/java-config-2.2.0-r3 SLOT=3.9 SRC_URI=mirror://apache/maven/maven-3/3.9.1/binaries/apache-maven-3.9.1-bin.tar.gz _eclasses_=java-pkg-2 1794573de2f5124d88b64ee5dc9aabb4 java-utils-2 8c72ea36a4935f626b13a30141d0d39c -_md5_=8078a27d3932942bc5759ab1ebe69d7e +_md5_=e6f0453c51f05e4fd5e7b2db73053dba diff --git a/metadata/md5-cache/dev-java/swt-4.27 b/metadata/md5-cache/dev-java/swt-4.27 index 2ed752b2d519..2cf45ff28f58 100644 --- a/metadata/md5-cache/dev-java/swt-4.27 +++ b/metadata/md5-cache/dev-java/swt-4.27 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://www.eclipse.org/swt/ INHERIT=flag-o-matic java-pkg-2 java-pkg-simple toolchain-funcs IUSE=cairo opengl webkit doc source -KEYWORDS=~amd64 ~arm64 ~ppc64 +KEYWORDS=amd64 arm64 ppc64 LICENSE=CPL-1.0 LGPL-2.1 MPL-1.1 RDEPEND=app-accessibility/at-spi2-core:2 dev-libs/glib x11-libs/gtk+:2 x11-libs/libXtst cairo? ( x11-libs/cairo ) opengl? ( virtual/glu virtual/opengl ) webkit? ( net-libs/webkit-gtk:4.1 ) >=virtual/jre-1.8:* >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) SLOT=4.27 SRC_URI=amd64? ( https://download.eclipse.org/eclipse/downloads/drops4/R-4.27-202303020300/swt-4.27-gtk-linux-x86_64.zip ) arm64? ( https://download.eclipse.org/eclipse/downloads/drops4/R-4.27-202303020300/swt-4.27-gtk-linux-aarch64.zip ) ppc64? ( https://download.eclipse.org/eclipse/downloads/drops4/R-4.27-202303020300/swt-4.27-gtk-linux-ppc64le.zip ) _eclasses_=flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a java-pkg-2 1794573de2f5124d88b64ee5dc9aabb4 java-pkg-simple 7dacd744ab3fb5ec581318fefaa7a9e5 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=9b7d8f39221b7cf85b0abf8541aa0061 +_md5_=5ce23b19ec778a3c2021c8981e94bdf6 diff --git a/metadata/md5-cache/dev-lang/Manifest.gz b/metadata/md5-cache/dev-lang/Manifest.gz index 5f75ccc73e66..e7e659f4dae7 100644 Binary files a/metadata/md5-cache/dev-lang/Manifest.gz and b/metadata/md5-cache/dev-lang/Manifest.gz differ diff --git a/metadata/md5-cache/dev-lang/abs-2.6.0 b/metadata/md5-cache/dev-lang/abs-2.6.0 index 4dcda9820450..da99633c63e8 100644 --- a/metadata/md5-cache/dev-lang/abs-2.6.0 +++ b/metadata/md5-cache/dev-lang/abs-2.6.0 @@ -9,5 +9,5 @@ LICENSE=MIT RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/abs-lang/abs/archive/refs/tags/2.6.0.tar.gz -> abs-2.6.0.tar.gz https://dev.gentoo.org/~zmedico/dist/abs-2.6.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=8a68cbbee0305718e3efc94ffb43af48 diff --git a/metadata/md5-cache/dev-lang/c-intercal-31.0 b/metadata/md5-cache/dev-lang/c-intercal-31.0 index c662d269863a..4232456d541d 100644 --- a/metadata/md5-cache/dev-lang/c-intercal-31.0 +++ b/metadata/md5-cache/dev-lang/c-intercal-31.0 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ FDL-1.2+ RDEPEND=emacs? ( >=app-editors/emacs-23.1:* ) SLOT=0 SRC_URI=http://www.catb.org/~esr/intercal/intercal-0.31.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 1d6e8d43be4713f04a441f721d890d48 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common dcd21c5d379fc2217e95f529504c5fe0 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=f78998bb6f286c8a8d8d9945d45a088e diff --git a/metadata/md5-cache/dev-lang/crystal-1.7.3 b/metadata/md5-cache/dev-lang/crystal-1.7.3 index 96d88974c894..c4f05cf9780b 100644 --- a/metadata/md5-cache/dev-lang/crystal-1.7.3 +++ b/metadata/md5-cache/dev-lang/crystal-1.7.3 @@ -5,11 +5,11 @@ EAPI=8 HOMEPAGE=https://crystal-lang.org/ https://github.com/crystal-lang/crystal/ INHERIT=bash-completion-r1 llvm multiprocessing toolchain-funcs IUSE=doc debug llvm-libunwind -KEYWORDS=~amd64 +KEYWORDS=amd64 LICENSE=Apache-2.0 RDEPEND=dev-libs/boehm-gc:=[threads] dev-libs/gmp:= dev-libs/libatomic_ops:= dev-libs/libevent:= dev-libs/libpcre:= dev-libs/pcl:= crystal-1.7.3.tar.gz amd64? ( https://github.com/crystal-lang/crystal/releases/download/1.7.3/crystal-1.7.3-1-linux-x86_64.tar.gz ) _eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff llvm 4cc6f8e29d24a8011266413e74c728bb multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=4b803bf7482f2f71031bc20e3bc6dbf0 +_md5_=b95a3a03070ebeca4f22ed66375ffd2e diff --git a/metadata/md5-cache/dev-lang/eisl-2.70 b/metadata/md5-cache/dev-lang/eisl-2.90 similarity index 71% rename from metadata/md5-cache/dev-lang/eisl-2.70 rename to metadata/md5-cache/dev-lang/eisl-2.90 index 4b84a02d9f29..037a2b0b32b6 100644 --- a/metadata/md5-cache/dev-lang/eisl-2.70 +++ b/metadata/md5-cache/dev-lang/eisl-2.90 @@ -4,11 +4,11 @@ DESCRIPTION=Interpreter and compiler compatible with the ISLisp standard EAPI=8 HOMEPAGE=https://github.com/sasagawa888/eisl/ INHERIT=toolchain-funcs -KEYWORDS=amd64 ~x86 +KEYWORDS=~amd64 ~x86 LICENSE=BSD-2 RDEPEND=sys-libs/ncurses:= RESTRICT=test SLOT=0 -SRC_URI=https://github.com/sasagawa888/eisl/archive/v2.70.tar.gz -> eisl-2.70.tar.gz +SRC_URI=https://github.com/sasagawa888/eisl/archive/v2.90.tar.gz -> eisl-2.90.tar.gz _eclasses_=multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=f83f238245e8fc7b2f7002d44a858d3b +_md5_=0715ee9e43ada0d691a899816a58dfd6 diff --git a/metadata/md5-cache/dev-lang/erlang-25.0.4-r1 b/metadata/md5-cache/dev-lang/erlang-25.0.4-r1 index a0fdacfe5c71..9225ffeee9e4 100644 --- a/metadata/md5-cache/dev-lang/erlang-25.0.4-r1 +++ b/metadata/md5-cache/dev-lang/erlang-25.0.4-r1 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 RDEPEND=acct-group/epmd acct-user/epmd sys-libs/ncurses:0 sys-libs/zlib emacs? ( >=app-editors/emacs-23.1:* ) java? ( >=virtual/jdk-1.8:* ) odbc? ( dev-db/unixODBC ) sctp? ( net-misc/lksctp-tools ) ssl? ( >=dev-libs/openssl-0.9.7d:0= ) systemd? ( sys-apps/systemd ) wxwidgets? ( x11-libs/wxGTK:3.0-gtk3[X,opengl] ) java? ( >=dev-java/java-config-2.2.0-r3 ) SLOT=0/25.0.4 SRC_URI=https://github.com/erlang/otp/archive/OTP-25.0.4.tar.gz -> erlang-25.0.4.tar.gz https://github.com/erlang/otp/releases/download/OTP-25.0/otp_doc_man_25.0.tar.gz -> erlang_doc_man_25.0.tar.gz doc? ( https://github.com/erlang/otp/releases/download/OTP-25.0/otp_doc_html_25.0.tar.gz -> erlang_doc_html_25.0.tar.gz ) -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 1d6e8d43be4713f04a441f721d890d48 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common dcd21c5d379fc2217e95f529504c5fe0 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 _md5_=f6e6a733062347d94e4039c4c7f6e369 diff --git a/metadata/md5-cache/dev-lang/erlang-25.1.1-r1 b/metadata/md5-cache/dev-lang/erlang-25.1.1-r1 index 82e90e71b636..6576b3758890 100644 --- a/metadata/md5-cache/dev-lang/erlang-25.1.1-r1 +++ b/metadata/md5-cache/dev-lang/erlang-25.1.1-r1 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 RDEPEND=acct-group/epmd acct-user/epmd sys-libs/ncurses:0 sys-libs/zlib emacs? ( >=app-editors/emacs-23.1:* ) java? ( >=virtual/jdk-1.8:* ) odbc? ( dev-db/unixODBC ) sctp? ( net-misc/lksctp-tools ) ssl? ( >=dev-libs/openssl-0.9.7d:0= ) systemd? ( sys-apps/systemd ) wxwidgets? ( x11-libs/wxGTK:3.0-gtk3[X,opengl] ) java? ( >=dev-java/java-config-2.2.0-r3 ) SLOT=0/25.1.1 SRC_URI=https://github.com/erlang/otp/archive/OTP-25.1.1.tar.gz -> erlang-25.1.1.tar.gz https://github.com/erlang/otp/releases/download/OTP-25.1/otp_doc_man_25.1.tar.gz -> erlang_doc_man_25.1.tar.gz doc? ( https://github.com/erlang/otp/releases/download/OTP-25.1/otp_doc_html_25.1.tar.gz -> erlang_doc_html_25.1.tar.gz ) -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 1d6e8d43be4713f04a441f721d890d48 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common dcd21c5d379fc2217e95f529504c5fe0 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 _md5_=061a7a820e51b948d4d55423b020dc0f diff --git a/metadata/md5-cache/dev-lang/erlang-25.1.2-r1 b/metadata/md5-cache/dev-lang/erlang-25.1.2-r1 index bd58b6534c68..a2bdd4da6357 100644 --- a/metadata/md5-cache/dev-lang/erlang-25.1.2-r1 +++ b/metadata/md5-cache/dev-lang/erlang-25.1.2-r1 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 RDEPEND=acct-group/epmd acct-user/epmd sys-libs/ncurses:0 sys-libs/zlib emacs? ( >=app-editors/emacs-23.1:* ) java? ( >=virtual/jdk-1.8:* ) odbc? ( dev-db/unixODBC ) sctp? ( net-misc/lksctp-tools ) ssl? ( >=dev-libs/openssl-0.9.7d:0= ) systemd? ( sys-apps/systemd ) wxwidgets? ( x11-libs/wxGTK:3.0-gtk3[X,opengl] ) java? ( >=dev-java/java-config-2.2.0-r3 ) SLOT=0/25.1.2 SRC_URI=https://github.com/erlang/otp/archive/OTP-25.1.2.tar.gz -> erlang-25.1.2.tar.gz https://github.com/erlang/otp/releases/download/OTP-25.1/otp_doc_man_25.1.tar.gz -> erlang_doc_man_25.1.tar.gz doc? ( https://github.com/erlang/otp/releases/download/OTP-25.1/otp_doc_html_25.1.tar.gz -> erlang_doc_html_25.1.tar.gz ) -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 1d6e8d43be4713f04a441f721d890d48 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common dcd21c5d379fc2217e95f529504c5fe0 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 _md5_=923620058ee29c10ee20505e1dcf3eb8 diff --git a/metadata/md5-cache/dev-lang/erlang-25.2.2 b/metadata/md5-cache/dev-lang/erlang-25.2.2 index 413f6101e28d..19d7d7a3415f 100644 --- a/metadata/md5-cache/dev-lang/erlang-25.2.2 +++ b/metadata/md5-cache/dev-lang/erlang-25.2.2 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 RDEPEND=acct-group/epmd acct-user/epmd sys-libs/ncurses:0 sys-libs/zlib emacs? ( >=app-editors/emacs-23.1:* ) java? ( >=virtual/jdk-1.8:* ) odbc? ( dev-db/unixODBC ) sctp? ( net-misc/lksctp-tools ) ssl? ( >=dev-libs/openssl-0.9.7d:0= ) systemd? ( sys-apps/systemd ) wxwidgets? ( x11-libs/wxGTK:3.0-gtk3[X,opengl] ) java? ( >=dev-java/java-config-2.2.0-r3 ) SLOT=0/25.2.2 SRC_URI=https://github.com/erlang/otp/archive/OTP-25.2.2.tar.gz -> erlang-25.2.2.tar.gz https://github.com/erlang/otp/releases/download/OTP-25.2/otp_doc_man_25.2.tar.gz -> erlang_doc_man_25.2.tar.gz doc? ( https://github.com/erlang/otp/releases/download/OTP-25.2/otp_doc_html_25.2.tar.gz -> erlang_doc_html_25.2.tar.gz ) -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 1d6e8d43be4713f04a441f721d890d48 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common dcd21c5d379fc2217e95f529504c5fe0 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 _md5_=3cdd307f8195688b30cc8df01da3d5e8 diff --git a/metadata/md5-cache/dev-lang/erlang-25.2.3 b/metadata/md5-cache/dev-lang/erlang-25.2.3 index 0d551d0aceee..027ae67d60b0 100644 --- a/metadata/md5-cache/dev-lang/erlang-25.2.3 +++ b/metadata/md5-cache/dev-lang/erlang-25.2.3 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 RDEPEND=acct-group/epmd acct-user/epmd sys-libs/ncurses:0 sys-libs/zlib emacs? ( >=app-editors/emacs-23.1:* ) java? ( >=virtual/jdk-1.8:* ) odbc? ( dev-db/unixODBC ) sctp? ( net-misc/lksctp-tools ) ssl? ( >=dev-libs/openssl-0.9.7d:0= ) systemd? ( sys-apps/systemd ) wxwidgets? ( x11-libs/wxGTK:3.0-gtk3[X,opengl] ) java? ( >=dev-java/java-config-2.2.0-r3 ) SLOT=0/25.2.3 SRC_URI=https://github.com/erlang/otp/archive/OTP-25.2.3.tar.gz -> erlang-25.2.3.tar.gz https://github.com/erlang/otp/releases/download/OTP-25.2/otp_doc_man_25.2.tar.gz -> erlang_doc_man_25.2.tar.gz doc? ( https://github.com/erlang/otp/releases/download/OTP-25.2/otp_doc_html_25.2.tar.gz -> erlang_doc_html_25.2.tar.gz ) -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 1d6e8d43be4713f04a441f721d890d48 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common dcd21c5d379fc2217e95f529504c5fe0 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 _md5_=3cdd307f8195688b30cc8df01da3d5e8 diff --git a/metadata/md5-cache/dev-lang/erlang-25.3 b/metadata/md5-cache/dev-lang/erlang-25.3 index cbe8fbfc8f86..0c543b7f4508 100644 --- a/metadata/md5-cache/dev-lang/erlang-25.3 +++ b/metadata/md5-cache/dev-lang/erlang-25.3 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 RDEPEND=acct-group/epmd acct-user/epmd sys-libs/ncurses:0 sys-libs/zlib emacs? ( >=app-editors/emacs-23.1:* ) java? ( >=virtual/jdk-1.8:* ) odbc? ( dev-db/unixODBC ) sctp? ( net-misc/lksctp-tools ) ssl? ( >=dev-libs/openssl-0.9.7d:0= ) systemd? ( sys-apps/systemd ) wxwidgets? ( x11-libs/wxGTK:3.0-gtk3[X,opengl] ) java? ( >=dev-java/java-config-2.2.0-r3 ) SLOT=0/25.3 SRC_URI=https://github.com/erlang/otp/archive/OTP-25.3.tar.gz -> erlang-25.3.tar.gz https://github.com/erlang/otp/releases/download/OTP-25.3/otp_doc_man_25.3.tar.gz -> erlang_doc_man_25.3.tar.gz doc? ( https://github.com/erlang/otp/releases/download/OTP-25.3/otp_doc_html_25.3.tar.gz -> erlang_doc_html_25.3.tar.gz ) -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 1d6e8d43be4713f04a441f721d890d48 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common dcd21c5d379fc2217e95f529504c5fe0 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c wxwidgets 9a707a3f9f1ea7aa703b1e46552291e5 _md5_=3cdd307f8195688b30cc8df01da3d5e8 diff --git a/metadata/md5-cache/dev-lang/gforth-0.7.3-r2 b/metadata/md5-cache/dev-lang/gforth-0.7.3-r2 index d6ebe0a843fc..116a5c53608a 100644 --- a/metadata/md5-cache/dev-lang/gforth-0.7.3-r2 +++ b/metadata/md5-cache/dev-lang/gforth-0.7.3-r2 @@ -10,5 +10,5 @@ LICENSE=GPL-3 RDEPEND=dev-libs/ffcall emacs? ( >=app-editors/emacs-23.1:* ) SLOT=0 SRC_URI=mirror://gnu/gforth/gforth-0.7.3.tar.gz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=372153b303945ae31196258fb0c34a1f diff --git a/metadata/md5-cache/dev-lang/gnat-gpl-2021-r4 b/metadata/md5-cache/dev-lang/gnat-gpl-2021-r4 index 6829c48d81db..3e3da6485908 100644 --- a/metadata/md5-cache/dev-lang/gnat-gpl-2021-r4 +++ b/metadata/md5-cache/dev-lang/gnat-gpl-2021-r4 @@ -5,7 +5,7 @@ DESCRIPTION=GNAT Ada Compiler - GPL version EAPI=8 HOMEPAGE=http://libre.adacore.com/ INHERIT=toolchain-funcs toolchain -IUSE=+ada +bootstrap test vanilla +nls debug +cxx +nptl +fortran doc hardened multilib objc pgo objc-gc libssp objc++ +openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp +pch systemtap d lto cet zstd default-znow default-stack-clash-protection rust +IUSE=+ada +bootstrap test vanilla +nls debug +cxx +nptl +fortran doc hardened multilib objc pgo objc-gc libssp objc++ +openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp +pch systemtap d lto cet zstd default-znow default-stack-clash-protection modula2 rust KEYWORDS=amd64 x86 LICENSE=GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ GPL-2 GPL-3 PDEPEND=>=sys-devel/gcc-config-2.3 @@ -13,5 +13,5 @@ RDEPEND=!=sys-devel/gcc-10.3.1* sys-libs/zlib virtual/libiconv nls? ( virtual/li RESTRICT=test !test? ( test ) SLOT=10 SRC_URI=https://community.download.adacore.com/v1/005d2b2eff627177986d2517eb31e1959bec6f3a?filename=gnat-2021-20210519-19A70-src.tar.gz -> gnat-2021-20210519-19A70-src.tar.gz https://community.download.adacore.com/v1/44cd393be0b468cc253bf2cf9cf7804c993e7b5b?filename=gcc-10-2021-20210519-19A74-src.tar.gz -> gcc-10-2021-20210519-19A74-src.tar.gz https://community.download.adacore.com/v1/8ace7d06e469d36d726cc8badb0ed78411e727f3?filename=gcc-interface-10-2021-20210519-19A75-src.tar.gz -> gcc-interface-10-2021-20210519-19A75-src.tar.gz bootstrap? ( amd64? ( https://community.download.adacore.com/v1/6eb6eef6bb897e4c743a519bfebe0b1d6fc409c6?filename=gnat-gpl-2014-x86_64-linux-bin.tar.gz&rand=1193 -> gnat-gpl-2014-x86_64-linux-bin.tar.gz ) x86? ( https://community.download.adacore.com/v1/c5e9e6fdff5cb77ed90cf8c62536653e27c0bed6?filename=gnat-gpl-2014-x86-linux-bin.tar.gz&rand=436 -> gnat-gpl-2014-x86-linux-bin.tar.gz ) ) https://dev.gentoo.org/~soap/distfiles/gcc-10.3.0-patches-4.tar.xz https://dev.gentoo.org/~sam/distfiles/gcc-10.3.0-patches-4.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-10.3.0-patches-4.tar.xz https://dev.gentoo.org/~tamiko/distfiles/gcc-10.3.0-patches-4.tar.xz https://dev.gentoo.org/~zorry/patches/gcc/gcc-10.3.0-patches-4.tar.xz https://dev.gentoo.org/~vapier/dist/gcc-10.3.0-patches-4.tar.xz https://dev.gentoo.org/~blueness/dist/gcc-10.3.0-patches-4.tar.xz mirror://gentoo/gcc-10.3.0-patches-4.tar.xz -_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain 39096b494432e505dfd5af92401f7de4 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain cb15ce1344fceac0d0436457e22e5992 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=e513d54c0cdb82d17eedbcb4ee35ec75 diff --git a/metadata/md5-cache/dev-lang/lfe-2.0 b/metadata/md5-cache/dev-lang/lfe-2.0 index 0d1595366ac3..fc0e1329dad6 100644 --- a/metadata/md5-cache/dev-lang/lfe-2.0 +++ b/metadata/md5-cache/dev-lang/lfe-2.0 @@ -12,5 +12,5 @@ RDEPEND=dev-lang/erlang RESTRICT=mirror test SLOT=0 SRC_URI=https://github.com/rvirding/lfe/archive/refs/tags/2.0.tar.gz -> lfe-2.0.tar.gz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=998b9c5bfc40e0be2c3cf60a57fc0d74 diff --git a/metadata/md5-cache/dev-lang/lfe-2.0.1 b/metadata/md5-cache/dev-lang/lfe-2.0.1 index 0a222332a307..39aad33e9b5c 100644 --- a/metadata/md5-cache/dev-lang/lfe-2.0.1 +++ b/metadata/md5-cache/dev-lang/lfe-2.0.1 @@ -12,5 +12,5 @@ RDEPEND=dev-lang/erlang RESTRICT=mirror test SLOT=0 SRC_URI=https://github.com/rvirding/lfe/archive/refs/tags/2.0.1.tar.gz -> lfe-2.0.1.tar.gz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=6da5d008e40fc24d9bb016bfa715e43d diff --git a/metadata/md5-cache/dev-lang/lisaac-0.13.1-r2 b/metadata/md5-cache/dev-lang/lisaac-0.13.1-r2 index f3d0f3231d0b..b67645cb9a5f 100644 --- a/metadata/md5-cache/dev-lang/lisaac-0.13.1-r2 +++ b/metadata/md5-cache/dev-lang/lisaac-0.13.1-r2 @@ -10,5 +10,5 @@ LICENSE=GPL-3 RDEPEND=vim-syntax? ( app-editors/vim ) emacs? ( >=app-editors/emacs-23.1:* ) SLOT=0 SRC_URI=http://isaacproject.u-strasbg.fr/download/lisaac-0.13.1.tar.gz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=869b91654ce56a5adce08ce0c225679a diff --git a/metadata/md5-cache/dev-lang/mercury-20.06-r1 b/metadata/md5-cache/dev-lang/mercury-20.06-r1 index a6213f9baaaa..d82081316323 100644 --- a/metadata/md5-cache/dev-lang/mercury-20.06-r1 +++ b/metadata/md5-cache/dev-lang/mercury-20.06-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2 LGPL-2 RDEPEND=net-libs/libnsl:0= readline? ( sys-libs/readline:= ) erlang? ( dev-lang/erlang ) java? ( >=virtual/jdk-1.8:* ) mono? ( dev-lang/mono ) doc? ( sys-apps/texinfo ) emacs? ( >=app-editors/emacs-23.1:* ) java? ( >=dev-java/java-config-2.2.0-r3 ) SLOT=0 SRC_URI=https://dl.mercurylang.org/release-20.06/mercury-srcdist-20.06.tar.gz https://dev.gentoo.org/~keri/distfiles/mercury/mercury-20.06-gentoo-patchset-3.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 1d6e8d43be4713f04a441f721d890d48 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e vcs-clean d271b7bc7e6a009758d7d4ef749174e3 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common dcd21c5d379fc2217e95f529504c5fe0 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e vcs-clean d271b7bc7e6a009758d7d4ef749174e3 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=ba5b7a587df505c3ad8fb3832e6d490f diff --git a/metadata/md5-cache/dev-lang/mercury-20.06.1 b/metadata/md5-cache/dev-lang/mercury-20.06.1 index 9872fb6c6e62..8249546cf175 100644 --- a/metadata/md5-cache/dev-lang/mercury-20.06.1 +++ b/metadata/md5-cache/dev-lang/mercury-20.06.1 @@ -11,5 +11,5 @@ LICENSE=GPL-2 LGPL-2 RDEPEND=net-libs/libnsl:0= readline? ( sys-libs/readline:= ) erlang? ( dev-lang/erlang ) java? ( >=virtual/jdk-1.8:* ) mono? ( dev-lang/mono ) doc? ( sys-apps/texinfo ) emacs? ( >=app-editors/emacs-23.1:* ) java? ( >=dev-java/java-config-2.2.0-r3 ) SLOT=0 SRC_URI=https://dl.mercurylang.org/release-20.06/mercury-srcdist-20.06.1.tar.gz https://dev.gentoo.org/~keri/distfiles/mercury/mercury-20.06.1-gentoo-patchset-0.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 1d6e8d43be4713f04a441f721d890d48 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e vcs-clean d271b7bc7e6a009758d7d4ef749174e3 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common dcd21c5d379fc2217e95f529504c5fe0 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e vcs-clean d271b7bc7e6a009758d7d4ef749174e3 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=0321193909acff8492f2883d0616c54d diff --git a/metadata/md5-cache/dev-lang/mercury-22.01 b/metadata/md5-cache/dev-lang/mercury-22.01 index 74f945e102f5..21bcef97c648 100644 --- a/metadata/md5-cache/dev-lang/mercury-22.01 +++ b/metadata/md5-cache/dev-lang/mercury-22.01 @@ -11,5 +11,5 @@ LICENSE=GPL-2 LGPL-2 RDEPEND=net-libs/libnsl:0= readline? ( sys-libs/readline:= ) java? ( >=virtual/jdk-1.8:* ) mono? ( dev-lang/mono ) doc? ( sys-apps/texinfo ) emacs? ( >=app-editors/emacs-23.1:* ) java? ( >=dev-java/java-config-2.2.0-r3 ) SLOT=0 SRC_URI=https://dl.mercurylang.org/release/mercury-srcdist-22.01.tar.gz https://dev.gentoo.org/~keri/distfiles/mercury/mercury-22.01-gentoo-patchset-0.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 1d6e8d43be4713f04a441f721d890d48 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e vcs-clean d271b7bc7e6a009758d7d4ef749174e3 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common dcd21c5d379fc2217e95f529504c5fe0 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e vcs-clean d271b7bc7e6a009758d7d4ef749174e3 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=4f838fe2d36c3ae3b3f4e90e1af5f972 diff --git a/metadata/md5-cache/dev-lang/mercury-22.01.1 b/metadata/md5-cache/dev-lang/mercury-22.01.1 index 5f072292a7fc..92a281b8e44d 100644 --- a/metadata/md5-cache/dev-lang/mercury-22.01.1 +++ b/metadata/md5-cache/dev-lang/mercury-22.01.1 @@ -12,5 +12,5 @@ RDEPEND=net-libs/libnsl:0= readline? ( sys-libs/readline:= ) java? ( >=virtual/j RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://dl.mercurylang.org/release/mercury-srcdist-22.01.1.tar.gz https://dev.gentoo.org/~keri/distfiles/mercury/mercury-22.01.1-gentoo-patchset-2.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 1d6e8d43be4713f04a441f721d890d48 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e vcs-clean d271b7bc7e6a009758d7d4ef749174e3 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common dcd21c5d379fc2217e95f529504c5fe0 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e vcs-clean d271b7bc7e6a009758d7d4ef749174e3 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=d35d677456ae159661b7d0270ed0c715 diff --git a/metadata/md5-cache/dev-lang/mozart-2.0.1 b/metadata/md5-cache/dev-lang/mozart-2.0.1 index a756377b5e8f..63849747c784 100644 --- a/metadata/md5-cache/dev-lang/mozart-2.0.1 +++ b/metadata/md5-cache/dev-lang/mozart-2.0.1 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boost:= dev-libs/gmp:0 dev-lang/tcl:0 dev-lang/tk:0 emacs? ( >= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/mozart/mozart2/archive/v2.0.1.tar.gz -> mozart-2.0.1.tar.gz https://dev.gentoo.org/~keri/distfiles/mozart/mozart-2.0.1-gentoo-patchset-2.tar.gz -_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 1d6e8d43be4713f04a441f721d890d48 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a java-ant-2 5a1b508f2544b7cac8ec27c170676de0 java-pkg-2 1794573de2f5124d88b64ee5dc9aabb4 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common dcd21c5d379fc2217e95f529504c5fe0 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a java-ant-2 5a1b508f2544b7cac8ec27c170676de0 java-pkg-2 1794573de2f5124d88b64ee5dc9aabb4 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=8d6a6508b6d7621f4aedb600153cba06 diff --git a/metadata/md5-cache/dev-lang/teyjus-2.1-r2 b/metadata/md5-cache/dev-lang/teyjus-2.1-r2 index 6f19776bb065..c64035005479 100644 --- a/metadata/md5-cache/dev-lang/teyjus-2.1-r2 +++ b/metadata/md5-cache/dev-lang/teyjus-2.1-r2 @@ -10,5 +10,5 @@ LICENSE=GPL-3 RDEPEND=dev-lang/ocaml[ocamlopt] emacs? ( >=app-editors/emacs-23.1:* ) SLOT=0/2.1 SRC_URI=https://github.com/teyjus/teyjus/archive/v2.1.tar.gz -> teyjus-2.1.tar.gz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=77b774ad62f5ecd8569ce43abce987fe diff --git a/metadata/md5-cache/dev-lang/typescript-5.0.2 b/metadata/md5-cache/dev-lang/typescript-5.0.2 index 11fd550f5f5a..cc9ab542916d 100644 --- a/metadata/md5-cache/dev-lang/typescript-5.0.2 +++ b/metadata/md5-cache/dev-lang/typescript-5.0.2 @@ -3,9 +3,9 @@ DEFINED_PHASES=compile install DESCRIPTION=Superset of JavaScript with optional static typing, classes and interfaces EAPI=8 HOMEPAGE=https://www.typescriptlang.org/ https://github.com/microsoft/TypeScript/ -KEYWORDS=~amd64 ~arm64 ~ppc64 +KEYWORDS=amd64 ~arm64 ~ppc64 LICENSE=Apache-2.0 RDEPEND=net-libs/nodejs SLOT=0 SRC_URI=https://registry.npmjs.org/typescript/-/typescript-5.0.2.tgz -_md5_=568998b4539209d8f5cd4405cf393c05 +_md5_=911c17e13410a9dab52ed5fe0583b7fd diff --git a/metadata/md5-cache/dev-libs/Manifest.gz b/metadata/md5-cache/dev-libs/Manifest.gz index 43e182c5e5ae..b3af646d5fa6 100644 Binary files a/metadata/md5-cache/dev-libs/Manifest.gz and b/metadata/md5-cache/dev-libs/Manifest.gz differ diff --git a/metadata/md5-cache/dev-libs/apr-1.7.4 b/metadata/md5-cache/dev-libs/apr-1.7.4 new file mode 100644 index 000000000000..2f6e4eed6a26 --- /dev/null +++ b/metadata/md5-cache/dev-libs/apr-1.7.4 @@ -0,0 +1,15 @@ +BDEPEND=>=sys-devel/libtool-2.4.2 doc? ( app-doc/doxygen ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 +DEFINED_PHASES=compile configure install prepare test +DEPEND=virtual/libcrypt:= elibc_glibc? ( >=sys-apps/util-linux-2.16 ) +DESCRIPTION=Apache Portable Runtime Library +EAPI=8 +HOMEPAGE=https://apr.apache.org/ +INHERIT=autotools toolchain-funcs +IUSE=doc old-kernel selinux static-libs +urandom +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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=Apache-2.0 +RDEPEND=virtual/libcrypt:= elibc_glibc? ( >=sys-apps/util-linux-2.16 ) selinux? ( sec-policy/selinux-base-policy ) +SLOT=1/1.7 +SRC_URI=mirror://apache/apr/apr-1.7.4.tar.bz2 +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=74dd4628e053579759f29dc6f2d43716 diff --git a/metadata/md5-cache/dev-libs/icu-73.1-r1 b/metadata/md5-cache/dev-libs/icu-73.1-r1 new file mode 100644 index 000000000000..8263d7114f08 --- /dev/null +++ b/metadata/md5-cache/dev-libs/icu-73.1-r1 @@ -0,0 +1,14 @@ +BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) sys-devel/autoconf-archive virtual/pkgconfig doc? ( app-doc/doxygen[dot] ) verify-sig? ( >=sec-keys/openpgp-keys-icu-20221020 ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) +DEFINED_PHASES=compile configure install prepare setup test unpack +DESCRIPTION=International Components for Unicode +EAPI=8 +HOMEPAGE=https://icu.unicode.org/ +INHERIT=autotools flag-o-matic multilib-minimal python-any-r1 toolchain-funcs verify-sig +IUSE=debug doc examples 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 verify-sig +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt +LICENSE=BSD +RESTRICT=!test? ( test ) +SLOT=0/73.1 +SRC_URI=https://github.com/unicode-org/icu/releases/download/release-73-1/icu4c-73_1-src.tgz verify-sig? ( https://github.com/unicode-org/icu/releases/download/release-73-1/icu4c-73_1-src.tgz.asc ) +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e verify-sig ed3712fa46ee0fdc2dbbad539e20ff26 +_md5_=41c86a6a591974961e26eb9745732037 diff --git a/metadata/md5-cache/dev-libs/ktextaddons-1.1.1-r1 b/metadata/md5-cache/dev-libs/ktextaddons-1.1.1-r1 new file mode 100644 index 000000000000..b62410e8063a --- /dev/null +++ b/metadata/md5-cache/dev-libs/ktextaddons-1.1.1-r1 @@ -0,0 +1,17 @@ +BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) designer? ( dev-qt/designer:5 ) doc? ( >=app-doc/doxygen-1.8.13-r1 || ( ( =dev-qt/qtcore-5.15.9*:5 =dev-qt/qtgui-5.15.9*:5 =dev-qt/qthelp-5.15.9*:5 =dev-qt/qtsql-5.15.9*:5 =dev-qt/qtwidgets-5.15.9*:5 ) ( =dev-qt/qtcore-5.15.8*:5 =dev-qt/qtgui-5.15.8*:5 =dev-qt/qthelp-5.15.8*:5 =dev-qt/qtsql-5.15.8*:5 =dev-qt/qtwidgets-5.15.8*:5 ) ) ) dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-5.103.0:5 +DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack +DEPEND=dev-libs/qtkeychain:=[qt5(+)] >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.103.0:5 >=kde-frameworks/kconfigwidgets-5.103.0:5 >=kde-frameworks/kcoreaddons-5.103.0:5 >=kde-frameworks/ki18n-5.103.0:5 >=kde-frameworks/kwidgetsaddons-5.103.0:5 >=kde-frameworks/kxmlgui-5.103.0:5 speech? ( >=dev-qt/qtspeech-5.15.5:5 ) test? ( dev-qt/qttest:5 ) doc? ( dev-qt/qt-docs:5 ) dev-qt/qtcore:5 +DESCRIPTION=Various text handling addons +EAPI=8 +HOMEPAGE=https://invent.kde.org/libraries/ktextaddons +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=ecm kde.org +IUSE=speech test debug designer doc test +KEYWORDS=~amd64 +LICENSE=LGPL-2+ +RDEPEND=dev-libs/qtkeychain:=[qt5(+)] >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.103.0:5 >=kde-frameworks/kconfigwidgets-5.103.0:5 >=kde-frameworks/kcoreaddons-5.103.0:5 >=kde-frameworks/ki18n-5.103.0:5 >=kde-frameworks/kwidgetsaddons-5.103.0:5 >=kde-frameworks/kxmlgui-5.103.0:5 speech? ( >=dev-qt/qtspeech-5.15.5:5 ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 doc? ( dev-qt/qt-docs:5 ) dev-qt/qtcore:5 +RESTRICT=test !test? ( test ) !test? ( test ) +SLOT=5 +SRC_URI=mirror://kde/stable/ktextaddons/ktextaddons-1.1.1.tar.xz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c ecm 15862358f80ef4da6fd9d7dde64e9148 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a kde.org dc60243572471279b11120514b85b558 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e virtualx 817571665ee28575da44ee08135089e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=9cca7f1d685a94190aefc65e7d28832a diff --git a/metadata/md5-cache/dev-libs/libfastjson-1.2304.0 b/metadata/md5-cache/dev-libs/libfastjson-1.2304.0 new file mode 100644 index 000000000000..08f04a5e38e9 --- /dev/null +++ b/metadata/md5-cache/dev-libs/libfastjson-1.2304.0 @@ -0,0 +1,13 @@ +BDEPEND=>=sys-devel/autoconf-archive-2015.02.04 sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 +DEFINED_PHASES=configure install prepare +DESCRIPTION=Fork of the json-c library, which is optimized for liblognorm processing +EAPI=8 +HOMEPAGE=https://www.rsyslog.com/tag/libfastjson/ +INHERIT=autotools +IUSE=static-libs +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc64 ~riscv ~sparc ~x86 +LICENSE=MIT +SLOT=0/4.3.0 +SRC_URI=https://github.com/rsyslog/libfastjson/archive/v1.2304.0.tar.gz -> libfastjson-1.2304.0.tar.gz +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=a828d04235c0a354ed12fa5bb6cf3cf1 diff --git a/metadata/md5-cache/dev-libs/libmemcached-awesome-1.1.4 b/metadata/md5-cache/dev-libs/libmemcached-awesome-1.1.4 index 1ed7a08a5c51..a02f5ed7944e 100644 --- a/metadata/md5-cache/dev-libs/libmemcached-awesome-1.1.4 +++ b/metadata/md5-cache/dev-libs/libmemcached-awesome-1.1.4 @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://github.com/awesomized/libmemcached INHERIT=cmake IUSE=+libevent sasl test -KEYWORDS=~amd64 ~arm ~arm64 ~x86 +KEYWORDS=amd64 arm arm64 x86 LICENSE=BSD RDEPEND=!app-forensics/memdump !dev-libs/libmemcached libevent? ( dev-libs/libevent:= ) sasl? ( dev-libs/cyrus-sasl:2 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/awesomized/libmemcached/archive/refs/tags/1.1.4.tar.gz -> libmemcached-awesome-1.1.4.tar.gz _eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=c2fb49f0c85de27e7e7685a136e0a187 +_md5_=a41aad013273911729f288e171a54c94 diff --git a/metadata/md5-cache/dev-libs/libqtxdg-3.11.0 b/metadata/md5-cache/dev-libs/libqtxdg-3.11.0 new file mode 100644 index 000000000000..e328c11e2b82 --- /dev/null +++ b/metadata/md5-cache/dev-libs/libqtxdg-3.11.0 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-util/lxqt-build-tools-0.13.0 virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +DEFINED_PHASES=compile configure install postinst prepare test +DEPEND=dev-libs/glib:2 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5= >=dev-qt/qtsvg-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtxml-5.15:5 x11-misc/xdg-utils test? ( >=dev-qt/qttest-5.15:5 ) +DESCRIPTION=Qt Implementation of XDG Standards +EAPI=8 +HOMEPAGE=https://lxqt-project.org/ +INHERIT=cmake optfeature virtualx +IUSE=test test +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86 +LICENSE=LGPL-2.1+ Nokia-Qt-LGPL-Exception-1.1 +RDEPEND=dev-libs/glib:2 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5= >=dev-qt/qtsvg-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtxml-5.15:5 x11-misc/xdg-utils +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=0 +SRC_URI=https://github.com/lxqt/libqtxdg/releases/download/3.11.0/libqtxdg-3.11.0.tar.xz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e virtualx 817571665ee28575da44ee08135089e5 xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=c53c5db510e129832318678464314a83 diff --git a/metadata/md5-cache/dev-libs/libxls-1.6.2 b/metadata/md5-cache/dev-libs/libxls-1.6.2-r1 similarity index 89% rename from metadata/md5-cache/dev-libs/libxls-1.6.2 rename to metadata/md5-cache/dev-libs/libxls-1.6.2-r1 index 9edce315f7b4..c400f4ef5735 100644 --- a/metadata/md5-cache/dev-libs/libxls-1.6.2 +++ b/metadata/md5-cache/dev-libs/libxls-1.6.2-r1 @@ -7,4 +7,4 @@ KEYWORDS=amd64 ~arm ~arm64 x86 LICENSE=BSD-2 SLOT=0/8 SRC_URI=https://github.com/libxls/libxls/releases/download/v1.6.2/libxls-1.6.2.tar.gz -_md5_=62650ad82a4a47580eaa55c3753d2281 +_md5_=326d1575ed7593d888e6dafbce1a5936 diff --git a/metadata/md5-cache/dev-libs/mpfr-4.2.0_p4 b/metadata/md5-cache/dev-libs/mpfr-4.2.0_p4 new file mode 100644 index 000000000000..f195c9ebf775 --- /dev/null +++ b/metadata/md5-cache/dev-libs/mpfr-4.2.0_p4 @@ -0,0 +1,15 @@ +BDEPEND=verify-sig? ( sec-keys/openpgp-keys-vincentlefevre ) verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=>=dev-libs/gmp-5.0.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(-)?,static-libs?] +DESCRIPTION=Library for multiple-precision floating-point computations with exact rounding +EAPI=8 +HOMEPAGE=https://www.mpfr.org/ https://gitlab.inria.fr/mpfr +INHERIT=multilib-minimal verify-sig +IUSE=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 verify-sig +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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=LGPL-2.1 +RDEPEND=>=dev-libs/gmp-5.0.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(-)?,static-libs?] +SLOT=0/6 +SRC_URI=https://www.mpfr.org/mpfr-4.2.0/mpfr-4.2.0.tar.xz verify-sig? ( https://www.mpfr.org/mpfr-4.2.0/mpfr-4.2.0.tar.xz.asc ) https://www.mpfr.org/mpfr-4.2.0/patch01 -> mpfr-4.2.0-patch01.patch https://www.mpfr.org/mpfr-4.2.0/patch02 -> mpfr-4.2.0-patch02.patch https://www.mpfr.org/mpfr-4.2.0/patch03 -> mpfr-4.2.0-patch03.patch https://www.mpfr.org/mpfr-4.2.0/patch04 -> mpfr-4.2.0-patch04.patch +_eclasses_=multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e verify-sig ed3712fa46ee0fdc2dbbad539e20ff26 +_md5_=e070bc4920df56ecaaf7abf76295d267 diff --git a/metadata/md5-cache/dev-libs/pocl-3.1 b/metadata/md5-cache/dev-libs/pocl-3.1 index ad4558353384..33a4b43b6bb7 100644 --- a/metadata/md5-cache/dev-libs/pocl-3.1 +++ b/metadata/md5-cache/dev-libs/pocl-3.1 @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) test SLOT=0 SRC_URI=https://github.com/pocl/pocl/archive/v3.1.tar.gz -> pocl-3.1.tar.gz _eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a llvm 4cc6f8e29d24a8011266413e74c728bb multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=b9d49de2c7bec12eecb6338b100e9f13 +_md5_=98e58a8a15768e6e2aad54e57efe33c9 diff --git a/metadata/md5-cache/dev-libs/protobuf-21.8 b/metadata/md5-cache/dev-libs/protobuf-21.8 index 085b1cdd07fc..614248fb31ef 100644 --- a/metadata/md5-cache/dev-libs/protobuf-21.8 +++ b/metadata/md5-cache/dev-libs/protobuf-21.8 @@ -12,5 +12,5 @@ RDEPEND=emacs? ( app-editors/emacs:* ) zlib? ( sys-libs/zlib[abi_x86_32(-)?,abi_ RESTRICT=!test? ( test ) SLOT=0/32 SRC_URI=https://github.com/protocolbuffers/protobuf/archive/v21.8.tar.gz -> protobuf-21.8.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=0b8d6ca8672fc810504244a779d8cdbf diff --git a/metadata/md5-cache/dev-libs/protobuf-21.9 b/metadata/md5-cache/dev-libs/protobuf-21.9 index 376d6e151e21..bac86065f3fa 100644 --- a/metadata/md5-cache/dev-libs/protobuf-21.9 +++ b/metadata/md5-cache/dev-libs/protobuf-21.9 @@ -12,5 +12,5 @@ RDEPEND=emacs? ( app-editors/emacs:* ) zlib? ( sys-libs/zlib[abi_x86_32(-)?,abi_ RESTRICT=!test? ( test ) SLOT=0/32 SRC_URI=https://github.com/protocolbuffers/protobuf/archive/v21.9.tar.gz -> protobuf-21.9.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=ae309983bfa96e3f7b84c1d14fb456d6 diff --git a/metadata/md5-cache/dev-libs/protobuf-3.19.3 b/metadata/md5-cache/dev-libs/protobuf-3.19.3 index 378cebb73340..df09602e1456 100644 --- a/metadata/md5-cache/dev-libs/protobuf-3.19.3 +++ b/metadata/md5-cache/dev-libs/protobuf-3.19.3 @@ -12,5 +12,5 @@ RDEPEND=emacs? ( app-editors/emacs:* ) zlib? ( sys-libs/zlib[abi_x86_32(-)?,abi_ RESTRICT=!test? ( test ) SLOT=0/30 SRC_URI=https://github.com/protocolbuffers/protobuf/archive/v3.19.3.tar.gz -> protobuf-3.19.3.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 1d6e8d43be4713f04a441f721d890d48 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common dcd21c5d379fc2217e95f529504c5fe0 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=4370d1019a968bdb74c108c5fb3f11ff diff --git a/metadata/md5-cache/dev-libs/protobuf-3.19.6 b/metadata/md5-cache/dev-libs/protobuf-3.19.6 index 2709d2caabf0..41435eb64c70 100644 --- a/metadata/md5-cache/dev-libs/protobuf-3.19.6 +++ b/metadata/md5-cache/dev-libs/protobuf-3.19.6 @@ -12,5 +12,5 @@ RDEPEND=emacs? ( app-editors/emacs:* ) zlib? ( sys-libs/zlib[abi_x86_32(-)?,abi_ RESTRICT=!test? ( test ) SLOT=0/30 SRC_URI=https://github.com/protocolbuffers/protobuf/archive/v3.19.6.tar.gz -> protobuf-3.19.6.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=abb84b2b30995453282b9aa02d86db48 diff --git a/metadata/md5-cache/dev-libs/protobuf-3.20.1-r1 b/metadata/md5-cache/dev-libs/protobuf-3.20.1-r1 index 8e3b97e19239..5f0be837333b 100644 --- a/metadata/md5-cache/dev-libs/protobuf-3.20.1-r1 +++ b/metadata/md5-cache/dev-libs/protobuf-3.20.1-r1 @@ -12,5 +12,5 @@ RDEPEND=emacs? ( app-editors/emacs:* ) zlib? ( sys-libs/zlib[abi_x86_32(-)?,abi_ RESTRICT=!test? ( test ) SLOT=0/31 SRC_URI=https://github.com/protocolbuffers/protobuf/archive/v3.20.1.tar.gz -> protobuf-3.20.1.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=173089a0799863e49017e460288c2cb0 diff --git a/metadata/md5-cache/dev-libs/protobuf-3.20.3 b/metadata/md5-cache/dev-libs/protobuf-3.20.3 index 3954e2c96beb..a2e2b1686f19 100644 --- a/metadata/md5-cache/dev-libs/protobuf-3.20.3 +++ b/metadata/md5-cache/dev-libs/protobuf-3.20.3 @@ -12,5 +12,5 @@ RDEPEND=emacs? ( app-editors/emacs:* ) zlib? ( sys-libs/zlib[abi_x86_32(-)?,abi_ RESTRICT=!test? ( test ) SLOT=0/31 SRC_URI=https://github.com/protocolbuffers/protobuf/archive/v3.20.3.tar.gz -> protobuf-3.20.3.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=b35ca7f812bf689dba5de80a12eaa3e2 diff --git a/metadata/md5-cache/dev-libs/protobuf-9999 b/metadata/md5-cache/dev-libs/protobuf-9999 index d623aa2b0312..f8ec58b1c9f8 100644 --- a/metadata/md5-cache/dev-libs/protobuf-9999 +++ b/metadata/md5-cache/dev-libs/protobuf-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=emacs? ( app-editors/emacs:* ) zlib? ( 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/32 -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a git-r3 27e13c09a4c7e4c78ac812f74727e676 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a git-r3 27e13c09a4c7e4c78ac812f74727e676 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=80f580efbec0d633db1b9f98cd0e3b79 diff --git a/metadata/md5-cache/dev-libs/qhotkey-1.5.0 b/metadata/md5-cache/dev-libs/qhotkey-1.5.0 new file mode 100644 index 000000000000..931fce581a8a --- /dev/null +++ b/metadata/md5-cache/dev-libs/qhotkey-1.5.0 @@ -0,0 +1,14 @@ +BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install prepare test +DEPEND=!qt6? ( dev-qt/qtcore:5 dev-qt/qtx11extras:5 ) qt6? ( dev-qt/qtbase:6 ) x11-libs/libX11 +DESCRIPTION=A global shortcut/hotkey library for desktop Qt applications +EAPI=8 +HOMEPAGE=https://github.com/Skycoder42/QHotkey +INHERIT=cmake +IUSE=qt6 +KEYWORDS=~amd64 +LICENSE=BSD-with-attribution +SLOT=0 +SRC_URI=https://github.com/Skycoder42/QHotkey/archive/1.5.0.tar.gz -> qhotkey-1.5.0.tar.gz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=a63fbf3fc0b491adf3bce85e0c075c72 diff --git a/metadata/md5-cache/dev-libs/rocksdb-6.15.5-r1 b/metadata/md5-cache/dev-libs/rocksdb-6.15.5-r1 index 2490d66d0991..928bc28a8a81 100644 --- a/metadata/md5-cache/dev-libs/rocksdb-6.15.5-r1 +++ b/metadata/md5-cache/dev-libs/rocksdb-6.15.5-r1 @@ -12,4 +12,4 @@ RDEPEND=app-arch/bzip2:= app-arch/lz4:= app-arch/snappy:= app-arch/zstd:= dev-cp SLOT=0 SRC_URI=https://github.com/facebook/rocksdb/archive/v6.15.5.tar.gz -> rocksdb-6.15.5.tar.gz _eclasses_=cmake 7fb5980de96325cbab639f5b2187357c edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=97d64162121c778ef6f49a079c483b49 +_md5_=edd2622f61a84fa599ae040deab57bce diff --git a/metadata/md5-cache/dev-libs/rocksdb-6.17.3-r1 b/metadata/md5-cache/dev-libs/rocksdb-6.17.3-r1 index a811c31652da..0b1ba5a470bf 100644 --- a/metadata/md5-cache/dev-libs/rocksdb-6.17.3-r1 +++ b/metadata/md5-cache/dev-libs/rocksdb-6.17.3-r1 @@ -12,4 +12,4 @@ RDEPEND=app-arch/bzip2:= app-arch/lz4:= app-arch/snappy:= app-arch/zstd:= dev-cp SLOT=0 SRC_URI=https://github.com/facebook/rocksdb/archive/v6.17.3.tar.gz -> rocksdb-6.17.3.tar.gz _eclasses_=cmake 7fb5980de96325cbab639f5b2187357c edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=d569d2d3e09ff921300fea584d3e09ce +_md5_=20097ffabc8c228adb8fe696abaaf25e diff --git a/metadata/md5-cache/dev-libs/xmlsec-1.3.0 b/metadata/md5-cache/dev-libs/xmlsec-1.3.0-r1 similarity index 66% rename from metadata/md5-cache/dev-libs/xmlsec-1.3.0 rename to metadata/md5-cache/dev-libs/xmlsec-1.3.0-r1 index a31ee86d6558..141cd0768977 100644 --- a/metadata/md5-cache/dev-libs/xmlsec-1.3.0 +++ b/metadata/md5-cache/dev-libs/xmlsec-1.3.0-r1 @@ -1,9 +1,10 @@ -BDEPEND=virtual/pkgconfig test? ( nss? ( >=dev-libs/nss-3.9[utils] ) ) -DEFINED_PHASES=configure install test +BDEPEND=virtual/pkgconfig test? ( nss? ( >=dev-libs/nss-3.9[utils] ) ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 +DEFINED_PHASES=configure install prepare test DEPEND=>=dev-libs/libxml2-2.7.4 >=dev-libs/libxslt-1.0.20 dev-libs/libltdl gcrypt? ( >=dev-libs/libgcrypt-1.4.0:= ) gnutls? ( >=net-libs/gnutls-3.6.13:= ) nss? ( >=dev-libs/nspr-4.4.1 >=dev-libs/nss-3.9 ) openssl? ( dev-libs/openssl:= ) DESCRIPTION=Command line tool for signing, verifying, encrypting and decrypting XML EAPI=8 HOMEPAGE=https://www.aleksey.com/xmlsec +INHERIT=autotools IUSE=doc gcrypt gnutls http nss +openssl static-libs test KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 LICENSE=MIT @@ -12,4 +13,5 @@ REQUIRED_USE=|| ( gnutls nss openssl ) RESTRICT=!test? ( test ) SLOT=0/1.3 SRC_URI=https://www.aleksey.com/xmlsec/download/xmlsec1-1.3.0.tar.gz -_md5_=de98bad95922cdb895f5f91c596dff64 +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=867c51fc0828eadf6b40d3db64a01d77 diff --git a/metadata/md5-cache/dev-lisp/Manifest.gz b/metadata/md5-cache/dev-lisp/Manifest.gz index b2129cc8aa70..8448a88a4869 100644 Binary files a/metadata/md5-cache/dev-lisp/Manifest.gz and b/metadata/md5-cache/dev-lisp/Manifest.gz differ diff --git a/metadata/md5-cache/dev-lisp/gcl-2.6.13_pre99 b/metadata/md5-cache/dev-lisp/gcl-2.6.13_pre99 index fee4cf2c702b..829afdb9fddd 100644 --- a/metadata/md5-cache/dev-lisp/gcl-2.6.13_pre99 +++ b/metadata/md5-cache/dev-lisp/gcl-2.6.13_pre99 @@ -11,5 +11,5 @@ RDEPEND=dev-libs/gmp virtual/latex-base emacs? ( app-editors/emacs:= ) readline? RESTRICT=strip SLOT=0 SRC_URI=https://dev.gentoo.org/~grozin/gcl-2.6.13_pre99.tar.xz -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 1d6e8d43be4713f04a441f721d890d48 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common dcd21c5d379fc2217e95f529504c5fe0 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=2814595ef48906cd3c83c80950746167 diff --git a/metadata/md5-cache/dev-lisp/gcl-2.6.14 b/metadata/md5-cache/dev-lisp/gcl-2.6.14 index a556b5b01aa8..316b99869cba 100644 --- a/metadata/md5-cache/dev-lisp/gcl-2.6.14 +++ b/metadata/md5-cache/dev-lisp/gcl-2.6.14 @@ -11,5 +11,5 @@ RDEPEND=dev-libs/gmp virtual/latex-base emacs? ( app-editors/emacs:= ) readline? RESTRICT=strip SLOT=0 SRC_URI=https://ftp.gnu.org/gnu/gcl/gcl-2.6.14.tar.gz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=d89d26a6fa77b883aaf20d9307a230cc diff --git a/metadata/md5-cache/dev-ml/Manifest.gz b/metadata/md5-cache/dev-ml/Manifest.gz index fed1f534aaf4..d7ea7f4e9a91 100644 Binary files a/metadata/md5-cache/dev-ml/Manifest.gz and b/metadata/md5-cache/dev-ml/Manifest.gz differ diff --git a/metadata/md5-cache/dev-ml/alcotest-1.7.0 b/metadata/md5-cache/dev-ml/alcotest-1.7.0 new file mode 100644 index 000000000000..e2c7971c8428 --- /dev/null +++ b/metadata/md5-cache/dev-ml/alcotest-1.7.0 @@ -0,0 +1,15 @@ +BDEPEND=dev-lang/ocaml dev-ml/dune +DEFINED_PHASES=compile install test +DEPEND=>=dev-ml/dune-3.0:= dev-ml/astring:= dev-ml/async_kernel:= dev-ml/async:= >=dev-ml/async_unix-0.15.0:= dev-ml/base:= dev-ml/cmdliner:= >=dev-ml/core-0.15.0:= >=dev-ml/core_unix-0.15.0:= dev-ml/duration:= >=dev-ml/fmt-0.8.9:= dev-ml/lwt:= dev-ml/mirage-clock:= dev-ml/re:= dev-ml/result:= dev-ml/logs:= dev-ml/uutf:= dev-ml/uuidm:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= +DESCRIPTION=A lightweight and colourful test framework +EAPI=8 +HOMEPAGE=https://github.com/mirage/alcotest/ +INHERIT=dune +IUSE=+ocamlopt +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=ISC +RDEPEND=>=dev-ml/dune-3.0:= dev-ml/astring:= dev-ml/async_kernel:= dev-ml/async:= >=dev-ml/async_unix-0.15.0:= dev-ml/base:= dev-ml/cmdliner:= >=dev-ml/core-0.15.0:= >=dev-ml/core_unix-0.15.0:= dev-ml/duration:= >=dev-ml/fmt-0.8.9:= dev-ml/lwt:= dev-ml/mirage-clock:= dev-ml/re:= dev-ml/result:= dev-ml/logs:= dev-ml/uutf:= dev-ml/uuidm:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= +SLOT=0/1.7.0 +SRC_URI=https://github.com/mirage/alcotest/archive/1.7.0.tar.gz -> alcotest-1.7.0.tar.gz +_eclasses_=dune beddc7cde467b2e48afc78a87d042c01 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 +_md5_=93524e410c72595a4b41774461a2884e diff --git a/metadata/md5-cache/dev-ml/camomile-2.0.0 b/metadata/md5-cache/dev-ml/camomile-2.0.0 new file mode 100644 index 000000000000..511d4594d42a --- /dev/null +++ b/metadata/md5-cache/dev-ml/camomile-2.0.0 @@ -0,0 +1,16 @@ +BDEPEND=dev-lang/ocaml dev-ml/dune +DEFINED_PHASES=compile install test +DEPEND=dev-ml/dune-site:= dev-ml/camlp-streams:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= +DESCRIPTION=Camomile is a comprehensive Unicode library for ocaml +EAPI=8 +HOMEPAGE=https://github.com/savonet/Camomile +INHERIT=dune +IUSE=+ocamlopt +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +LICENSE=LGPL-2 +RDEPEND=dev-ml/dune-site:= dev-ml/camlp-streams:= >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= +RESTRICT=test +SLOT=0/2.0.0 +SRC_URI=https://github.com/savonet/camomile/archive/v2.0.0.tar.gz -> camomile-2.0.0.tar.gz +_eclasses_=dune beddc7cde467b2e48afc78a87d042c01 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 +_md5_=f886834d4bfeda463b0da84ccac2439c diff --git a/metadata/md5-cache/dev-ml/dune-2.9.3-r3 b/metadata/md5-cache/dev-ml/dune-2.9.3-r3 index a06cd00708db..ad4b71340bbd 100644 --- a/metadata/md5-cache/dev-ml/dune-2.9.3-r3 +++ b/metadata/md5-cache/dev-ml/dune-2.9.3-r3 @@ -11,5 +11,5 @@ RDEPEND=>=dev-lang/ocaml-4.08:= emacs? ( >=app-editors/emacs-23.1:* ) RESTRICT=strip !test? ( test ) SLOT=0/2.9.3 SRC_URI=https://github.com/ocaml/dune/archive/2.9.3.tar.gz -> dune-2.9.3.tar.gz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 _md5_=b113317af2206f5c9cafe920538db0e0 diff --git a/metadata/md5-cache/dev-ml/dune-3.0.3-r1 b/metadata/md5-cache/dev-ml/dune-3.0.3-r1 index abe7f2a2319f..8be7b69e17ed 100644 --- a/metadata/md5-cache/dev-ml/dune-3.0.3-r1 +++ b/metadata/md5-cache/dev-ml/dune-3.0.3-r1 @@ -11,5 +11,5 @@ RDEPEND=>=dev-lang/ocaml-4.08:= emacs? ( >=app-editors/emacs-23.1:* ) RESTRICT=strip test SLOT=0/3.0.3 SRC_URI=https://github.com/ocaml/dune/archive/3.0.3.tar.gz -> dune-3.0.3.tar.gz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 _md5_=bf0fd7c8d81a3ce8b73689bc5796ca94 diff --git a/metadata/md5-cache/dev-ml/dune-3.1.1 b/metadata/md5-cache/dev-ml/dune-3.1.1 index b9642b58d4d1..8c80f2d89854 100644 --- a/metadata/md5-cache/dev-ml/dune-3.1.1 +++ b/metadata/md5-cache/dev-ml/dune-3.1.1 @@ -11,5 +11,5 @@ RDEPEND=>=dev-lang/ocaml-4.08:= emacs? ( >=app-editors/emacs-23.1:* ) RESTRICT=strip test SLOT=0/3.1.1 SRC_URI=https://github.com/ocaml/dune/archive/3.1.1.tar.gz -> dune-3.1.1.tar.gz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 _md5_=bf0fd7c8d81a3ce8b73689bc5796ca94 diff --git a/metadata/md5-cache/dev-ml/dune-3.2.0 b/metadata/md5-cache/dev-ml/dune-3.2.0 index b8f4e7f471e8..6b899a899250 100644 --- a/metadata/md5-cache/dev-ml/dune-3.2.0 +++ b/metadata/md5-cache/dev-ml/dune-3.2.0 @@ -11,5 +11,5 @@ RDEPEND=>=dev-lang/ocaml-4.08:= emacs? ( >=app-editors/emacs-23.1:* ) RESTRICT=strip test SLOT=0/3.2.0 SRC_URI=https://github.com/ocaml/dune/archive/3.2.0.tar.gz -> dune-3.2.0.tar.gz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 _md5_=818311bec6b5c14e762daa637e2d3f86 diff --git a/metadata/md5-cache/dev-ml/dune-3.5.0 b/metadata/md5-cache/dev-ml/dune-3.5.0 index 4fcf5d119c7c..5d0425dc3f52 100644 --- a/metadata/md5-cache/dev-ml/dune-3.5.0 +++ b/metadata/md5-cache/dev-ml/dune-3.5.0 @@ -11,5 +11,5 @@ RDEPEND=>=dev-lang/ocaml-4.08:= emacs? ( >=app-editors/emacs-23.1:* ) RESTRICT=strip test SLOT=0/3.5.0 SRC_URI=https://github.com/ocaml/dune/archive/3.5.0.tar.gz -> dune-3.5.0.tar.gz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 _md5_=818311bec6b5c14e762daa637e2d3f86 diff --git a/metadata/md5-cache/dev-ml/dune-3.6.1 b/metadata/md5-cache/dev-ml/dune-3.6.1 index d5f8ec4965ba..fccc75b27014 100644 --- a/metadata/md5-cache/dev-ml/dune-3.6.1 +++ b/metadata/md5-cache/dev-ml/dune-3.6.1 @@ -11,5 +11,5 @@ RDEPEND=>=dev-lang/ocaml-4.08:= emacs? ( >=app-editors/emacs-23.1:* ) RESTRICT=strip test SLOT=0/3.6.1 SRC_URI=https://github.com/ocaml/dune/archive/3.6.1.tar.gz -> dune-3.6.1.tar.gz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 _md5_=142b39a3069bf0b4a6861000727cfcda diff --git a/metadata/md5-cache/dev-ml/dune-3.6.2 b/metadata/md5-cache/dev-ml/dune-3.6.2 index 998882e7017d..18abc6be8668 100644 --- a/metadata/md5-cache/dev-ml/dune-3.6.2 +++ b/metadata/md5-cache/dev-ml/dune-3.6.2 @@ -11,5 +11,5 @@ RDEPEND=>=dev-lang/ocaml-4.08:= emacs? ( >=app-editors/emacs-23.1:* ) RESTRICT=strip test SLOT=0/3.6.2 SRC_URI=https://github.com/ocaml/dune/archive/3.6.2.tar.gz -> dune-3.6.2.tar.gz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 _md5_=06dee6fd9491760c493615e975619ccc diff --git a/metadata/md5-cache/dev-ml/dune-3.7.0 b/metadata/md5-cache/dev-ml/dune-3.7.0 index 163f43a2bb5f..1098b71e88bb 100644 --- a/metadata/md5-cache/dev-ml/dune-3.7.0 +++ b/metadata/md5-cache/dev-ml/dune-3.7.0 @@ -11,5 +11,5 @@ RDEPEND=>=dev-lang/ocaml-4.08:= emacs? ( >=app-editors/emacs-23.1:* ) RESTRICT=strip test SLOT=0/3.7.0 SRC_URI=https://github.com/ocaml/dune/archive/3.7.0.tar.gz -> dune-3.7.0.tar.gz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 _md5_=06dee6fd9491760c493615e975619ccc diff --git a/metadata/md5-cache/dev-ml/dune-3.7.1 b/metadata/md5-cache/dev-ml/dune-3.7.1 index 62dfe66890db..75cc5c85d92d 100644 --- a/metadata/md5-cache/dev-ml/dune-3.7.1 +++ b/metadata/md5-cache/dev-ml/dune-3.7.1 @@ -11,5 +11,5 @@ RDEPEND=>=dev-lang/ocaml-4.08:= emacs? ( >=app-editors/emacs-23.1:* ) RESTRICT=strip test SLOT=0/3.7.1 SRC_URI=https://github.com/ocaml/dune/archive/3.7.1.tar.gz -> dune-3.7.1.tar.gz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 _md5_=a722245d691d8793435c53dfb0200c6b diff --git a/metadata/md5-cache/dev-ml/dune-site-3.7.1 b/metadata/md5-cache/dev-ml/dune-site-3.7.1 index 2e3d35b0c094..bd289a913ae7 100644 --- a/metadata/md5-cache/dev-ml/dune-site-3.7.1 +++ b/metadata/md5-cache/dev-ml/dune-site-3.7.1 @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://github.com/ocaml/dune INHERIT=dune multiprocessing IUSE=+ocamlopt -KEYWORDS=~amd64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 LICENSE=MIT RDEPEND=~dev-ml/dune-private-libs-3.7.1:=[ocamlopt=] >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= RESTRICT=test SLOT=0/3.7.1 SRC_URI=https://github.com/ocaml/dune/archive/3.7.1.tar.gz -> dune-3.7.1.tar.gz _eclasses_=dune beddc7cde467b2e48afc78a87d042c01 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 -_md5_=0860583275b0c53b3dcefaa1881abdf2 +_md5_=beb7b8dac5f867df30853d7160e6481e diff --git a/metadata/md5-cache/dev-ml/merlin-4.5-r3 b/metadata/md5-cache/dev-ml/merlin-4.5-r3 index 6888eb81f229..49ed5db36dc2 100644 --- a/metadata/md5-cache/dev-ml/merlin-4.5-r3 +++ b/metadata/md5-cache/dev-ml/merlin-4.5-r3 @@ -12,5 +12,5 @@ RDEPEND=dev-ml/csexp:= =dev-ml/dune-2.9:= || RESTRICT=!test? ( test ) SLOT=0/4.5 SRC_URI=https://github.com/ocaml/merlin/releases/download/v4.5-411/merlin-4.5-411.tbz https://github.com/ocaml/merlin/releases/download/v4.5-412/merlin-4.5-412.tbz https://github.com/ocaml/merlin/releases/download/v4.5-413/merlin-4.5-413.tbz https://github.com/ocaml/merlin/releases/download/v4.5-414/merlin-4.5-414.tbz -_eclasses_=dune beddc7cde467b2e48afc78a87d042c01 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 elisp-common 1d6e8d43be4713f04a441f721d890d48 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 +_eclasses_=dune beddc7cde467b2e48afc78a87d042c01 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 elisp-common dcd21c5d379fc2217e95f529504c5fe0 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 _md5_=464fd6dd28b372dfb6408ae94afff8f6 diff --git a/metadata/md5-cache/dev-ml/merlin-4.6 b/metadata/md5-cache/dev-ml/merlin-4.6 index 55114ad9ff37..c0295d51b111 100644 --- a/metadata/md5-cache/dev-ml/merlin-4.6 +++ b/metadata/md5-cache/dev-ml/merlin-4.6 @@ -12,5 +12,5 @@ RDEPEND=>=dev-lang/ocaml-4.12:=[ocamlopt?] dev-ml/csexp:= >=dev-ml/yojson-2.0.0: RESTRICT=!test? ( test ) SLOT=0/4.6 SRC_URI=https://github.com/ocaml/merlin/releases/download/v4.6-412/merlin-4.6-412.tbz https://github.com/ocaml/merlin/releases/download/v4.6-413/merlin-4.6-413.tbz https://github.com/ocaml/merlin/releases/download/v4.6-414/merlin-4.6-414.tbz -_eclasses_=dune beddc7cde467b2e48afc78a87d042c01 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 elisp-common 1d6e8d43be4713f04a441f721d890d48 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 +_eclasses_=dune beddc7cde467b2e48afc78a87d042c01 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 elisp-common dcd21c5d379fc2217e95f529504c5fe0 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 _md5_=c5e7f5180fafcd47e511fe184242cd9e diff --git a/metadata/md5-cache/dev-ml/merlin-4.7-r1 b/metadata/md5-cache/dev-ml/merlin-4.7-r1 index 86dda4aa4ebc..c66295601c70 100644 --- a/metadata/md5-cache/dev-ml/merlin-4.7-r1 +++ b/metadata/md5-cache/dev-ml/merlin-4.7-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-lang/ocaml:=[ocamlopt?] dev-ml/csexp:= >=dev-ml/yojson-2.0.0:= dev-m RESTRICT=!test? ( test ) SLOT=0/4.7 SRC_URI=https://github.com/ocaml/merlin/releases/download/v4.7-412/merlin-4.7-412.tbz https://github.com/ocaml/merlin/releases/download/v4.7-413/merlin-4.7-413.tbz https://github.com/ocaml/merlin/releases/download/v4.7-414/merlin-4.7-414.tbz -_eclasses_=dune beddc7cde467b2e48afc78a87d042c01 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 elisp-common 1d6e8d43be4713f04a441f721d890d48 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 +_eclasses_=dune beddc7cde467b2e48afc78a87d042c01 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 elisp-common dcd21c5d379fc2217e95f529504c5fe0 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 _md5_=24bb87e583a6a2bdd5a0f91aeda38e05 diff --git a/metadata/md5-cache/dev-ml/utop-2.11.0-r1 b/metadata/md5-cache/dev-ml/utop-2.11.0-r1 index c6074e34115f..fb738cab1605 100644 --- a/metadata/md5-cache/dev-ml/utop-2.11.0-r1 +++ b/metadata/md5-cache/dev-ml/utop-2.11.0-r1 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=dev-ml/lambda-term:= dev-ml/logs:= dev-ml/lwt:= dev-ml/react:= dev-ml/zed:= emacs? ( >=app-editors/emacs-24:* >=app-emacs/tuareg-mode-2.2.0 ) >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/2.11.0 SRC_URI=https://github.com/ocaml-community/utop/archive/2.11.0.tar.gz -> utop-2.11.0.tar.gz -_eclasses_=dune beddc7cde467b2e48afc78a87d042c01 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 elisp-common 1d6e8d43be4713f04a441f721d890d48 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 +_eclasses_=dune beddc7cde467b2e48afc78a87d042c01 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 elisp-common dcd21c5d379fc2217e95f529504c5fe0 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 _md5_=bc7480bb0d681a77eb00490985db98c9 diff --git a/metadata/md5-cache/dev-ml/utop-2.9.0-r1 b/metadata/md5-cache/dev-ml/utop-2.9.0-r1 index 5cf9611abe78..cc8254f1ca51 100644 --- a/metadata/md5-cache/dev-ml/utop-2.9.0-r1 +++ b/metadata/md5-cache/dev-ml/utop-2.9.0-r1 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=dev-ml/camomile:= dev-ml/lambda-term:= dev-ml/lwt:= dev-ml/react:= emacs? ( >=app-editors/emacs-24:* >=app-emacs/tuareg-mode-2.2.0 ) >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/2.9.0 SRC_URI=https://github.com/ocaml-community/utop/archive/2.9.0.tar.gz -> utop-2.9.0.tar.gz -_eclasses_=dune beddc7cde467b2e48afc78a87d042c01 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 elisp-common 1d6e8d43be4713f04a441f721d890d48 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 +_eclasses_=dune beddc7cde467b2e48afc78a87d042c01 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 elisp-common dcd21c5d379fc2217e95f529504c5fe0 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 _md5_=cf4f3c0bcc52106fc19ade67de042690 diff --git a/metadata/md5-cache/dev-ml/utop-2.9.1-r1 b/metadata/md5-cache/dev-ml/utop-2.9.1-r1 index 3977d19b75c3..c5830fc5799b 100644 --- a/metadata/md5-cache/dev-ml/utop-2.9.1-r1 +++ b/metadata/md5-cache/dev-ml/utop-2.9.1-r1 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=dev-ml/camomile:= dev-ml/lambda-term:= dev-ml/lwt:= dev-ml/react:= emacs? ( >=app-editors/emacs-24:* >=app-emacs/tuareg-mode-2.2.0 ) >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/2.9.1 SRC_URI=https://github.com/ocaml-community/utop/archive/2.9.1.tar.gz -> utop-2.9.1.tar.gz -_eclasses_=dune beddc7cde467b2e48afc78a87d042c01 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 elisp-common 1d6e8d43be4713f04a441f721d890d48 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 +_eclasses_=dune beddc7cde467b2e48afc78a87d042c01 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 elisp-common dcd21c5d379fc2217e95f529504c5fe0 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 _md5_=cf4f3c0bcc52106fc19ade67de042690 diff --git a/metadata/md5-cache/dev-ml/utop-2.9.2 b/metadata/md5-cache/dev-ml/utop-2.9.2 index 90d839389bb6..625f903dc806 100644 --- a/metadata/md5-cache/dev-ml/utop-2.9.2 +++ b/metadata/md5-cache/dev-ml/utop-2.9.2 @@ -11,5 +11,5 @@ LICENSE=BSD RDEPEND=dev-ml/camomile:= dev-ml/lambda-term:= dev-ml/lwt:= dev-ml/react:= emacs? ( >=app-editors/emacs-24:* >=app-emacs/tuareg-mode-2.2.0 ) >=dev-lang/ocaml-4:=[ocamlopt?] dev-ml/dune:= SLOT=0/2.9.2 SRC_URI=https://github.com/ocaml-community/utop/archive/2.9.2.tar.gz -> utop-2.9.2.tar.gz -_eclasses_=dune beddc7cde467b2e48afc78a87d042c01 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 elisp-common 1d6e8d43be4713f04a441f721d890d48 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 +_eclasses_=dune beddc7cde467b2e48afc78a87d042c01 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 elisp-common dcd21c5d379fc2217e95f529504c5fe0 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 _md5_=cf4f3c0bcc52106fc19ade67de042690 diff --git a/metadata/md5-cache/dev-perl/Emacs-PDE-0.2.17 b/metadata/md5-cache/dev-perl/Emacs-PDE-0.2.17 index eecb1b04edb8..6ba6b3e55aa1 100644 --- a/metadata/md5-cache/dev-perl/Emacs-PDE-0.2.17 +++ b/metadata/md5-cache/dev-perl/Emacs-PDE-0.2.17 @@ -10,5 +10,5 @@ LICENSE=|| ( Artistic GPL-1+ ) GPL-2+ FDL-1.1+ RDEPEND=>=app-editors/emacs-23.1:* dev-lang/perl:= SLOT=0 SRC_URI=mirror://cpan/authors/id/Y/YE/YEWENBIN/Emacs-PDE-v0.2.17.tar.gz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 perl-functions c3fca037246e877693badea0df3b0ef8 perl-module 8c55459fea879ccdec282839a3b22f78 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 perl-functions c3fca037246e877693badea0df3b0ef8 perl-module 8c55459fea879ccdec282839a3b22f78 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=71af4aab61634d84ddfe5e7612348c53 diff --git a/metadata/md5-cache/dev-perl/Manifest.gz b/metadata/md5-cache/dev-perl/Manifest.gz index e22be2aa8d6e..b978624162ed 100644 Binary files a/metadata/md5-cache/dev-perl/Manifest.gz and b/metadata/md5-cache/dev-perl/Manifest.gz differ diff --git a/metadata/md5-cache/dev-perl/Perl-Critic-1.140.0-r1 b/metadata/md5-cache/dev-perl/Perl-Critic-1.140.0-r1 index f5b0c84143fd..3b140108dd6d 100644 --- a/metadata/md5-cache/dev-perl/Perl-Critic-1.140.0-r1 +++ b/metadata/md5-cache/dev-perl/Perl-Critic-1.140.0-r1 @@ -12,5 +12,5 @@ RDEPEND=>=dev-perl/B-Keywords-1.50.0 virtual/perl-Carp >=dev-perl/Config-Tiny-2 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://cpan/authors/id/P/PE/PETDANCE/Perl-Critic-1.140.tar.gz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 perl-functions c3fca037246e877693badea0df3b0ef8 perl-module 8c55459fea879ccdec282839a3b22f78 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 perl-functions c3fca037246e877693badea0df3b0ef8 perl-module 8c55459fea879ccdec282839a3b22f78 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=5400cf3261fa3f6533dd0d65136dde02 diff --git a/metadata/md5-cache/dev-python/Manifest.gz b/metadata/md5-cache/dev-python/Manifest.gz index 2dfd8560f94f..9fbfc546130d 100644 Binary files a/metadata/md5-cache/dev-python/Manifest.gz and b/metadata/md5-cache/dev-python/Manifest.gz differ diff --git a/metadata/md5-cache/dev-python/aiosqlite-0.19.0 b/metadata/md5-cache/dev-python/aiosqlite-0.19.0 new file mode 100644 index 000000000000..72263d1adc4f --- /dev/null +++ b/metadata/md5-cache/dev-python/aiosqlite-0.19.0 @@ -0,0 +1,16 @@ +BDEPEND=test? ( dev-python/unittest-or-fail[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite] ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[sqlite] ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/flit_core-3.8.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=asyncio bridge to the standard sqlite3 module +EAPI=8 +HOMEPAGE=https://aiosqlite.omnilib.dev https://pypi.org/project/aiosqlite/ https://github.com/omnilib/aiosqlite +INHERIT=distutils-r1 pypi +IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite] ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[sqlite] ) +REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://files.pythonhosted.org/packages/source/a/aiosqlite/aiosqlite-0.19.0.tar.gz +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 3b6a844fbf71f1581992b44c78b549b7 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=195fecafba605b649af4ad3b18d5bf90 diff --git a/metadata/md5-cache/dev-python/astroid-2.15.3 b/metadata/md5-cache/dev-python/astroid-2.15.3 new file mode 100644 index 000000000000..bdcee95adce0 --- /dev/null +++ b/metadata/md5-cache/dev-python/astroid-2.15.3 @@ -0,0 +1,16 @@ +BDEPEND=dev-python/setuptools-scm[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] test? ( dev-python/numpy[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/python-dateutil[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( >=dev-python/lazy-object-proxy-1.4.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/setuptools[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/typing-extensions-4.0.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_10? ( >=dev-python/typing-extensions-4.0.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) >=dev-python/pytest-7.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/wheel-0.38.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Abstract Syntax Tree for logilab packages +EAPI=8 +HOMEPAGE=https://github.com/pylint-dev/astroid/ https://pypi.org/project/astroid/ +INHERIT=distutils-r1 +IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=LGPL-2.1+ +RDEPEND=>=dev-python/lazy-object-proxy-1.4.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/setuptools[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/typing-extensions-4.0.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_10? ( >=dev-python/typing-extensions-4.0.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/pylint-dev/astroid/archive/v2.15.3.tar.gz -> astroid-2.15.3.gh.tar.gz +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=3e7d2b691b3cde4b48e6e95359eb8b57 diff --git a/metadata/md5-cache/dev-python/attrs-23.1.0 b/metadata/md5-cache/dev-python/attrs-23.1.0 new file mode 100644 index 000000000000..19ba58d118a1 --- /dev/null +++ b/metadata/md5-cache/dev-python/attrs-23.1.0 @@ -0,0 +1,16 @@ +BDEPEND=dev-python/hatch-fancy-pypi-readme[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/hatch-vcs[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] test? ( python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0=[sqlite] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite] ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[sqlite] ) python_targets_python3_9? ( dev-python/cloudpickle[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_10? ( dev-python/cloudpickle[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_11? ( dev-python/cloudpickle[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) dev-python/hypothesis[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/zope-interface[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( >=dev-python/pytest-7.2.1[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/hatchling-1.12.2[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Attributes without boilerplate +EAPI=8 +HOMEPAGE=https://github.com/python-attrs/attrs/ https://attrs.readthedocs.io/ https://pypi.org/project/attrs/ +INHERIT=distutils-r1 pypi +IUSE=test python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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=MIT +RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://files.pythonhosted.org/packages/source/a/attrs/attrs-23.1.0.tar.gz +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 3b6a844fbf71f1581992b44c78b549b7 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=1b1269db828945a77c0b2be1b8d99094 diff --git a/metadata/md5-cache/dev-python/bitstring-4.0.2 b/metadata/md5-cache/dev-python/bitstring-4.0.2 new file mode 100644 index 000000000000..86a1037358b9 --- /dev/null +++ b/metadata/md5-cache/dev-python/bitstring-4.0.2 @@ -0,0 +1,16 @@ +BDEPEND=test? ( dev-python/unittest-or-fail[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/wheel-0.38.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=A pure Python module for creation and analysis of binary data +EAPI=8 +HOMEPAGE=https://github.com/scott-griffiths/bitstring/ https://pypi.org/project/bitstring/ +INHERIT=distutils-r1 pypi +IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=MIT +RDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://files.pythonhosted.org/packages/source/b/bitstring/bitstring-4.0.2.tar.gz +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 3b6a844fbf71f1581992b44c78b549b7 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=d6a2214464f1810fc789ee054ad0a119 diff --git a/metadata/md5-cache/dev-python/boto3-1.26.115 b/metadata/md5-cache/dev-python/boto3-1.26.115 new file mode 100644 index 000000000000..dc770a3678b7 --- /dev/null +++ b/metadata/md5-cache/dev-python/boto3-1.26.115 @@ -0,0 +1,16 @@ +BDEPEND=test? ( dev-python/mock[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest-xdist[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( >=dev-python/botocore-1.29.115[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/jmespath-0.7.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/s3transfer-0.6.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.2.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.2.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/wheel-0.38.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=The AWS SDK for Python +EAPI=8 +HOMEPAGE=https://github.com/boto/boto3/ https://pypi.org/project/boto3/ +INHERIT=distutils-r1 multiprocessing +IUSE=test python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/botocore-1.29.115[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/jmespath-0.7.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/s3transfer-0.6.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/boto/boto3/archive/1.26.115.tar.gz -> boto3-1.26.115.gh.tar.gz +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=19c6bcfc191ce918489bff494ff185c2 diff --git a/metadata/md5-cache/dev-python/botocore-1.29.115 b/metadata/md5-cache/dev-python/botocore-1.29.115 new file mode 100644 index 000000000000..d0879702998f --- /dev/null +++ b/metadata/md5-cache/dev-python/botocore-1.29.115 @@ -0,0 +1,16 @@ +BDEPEND=test? ( dev-python/jsonschema[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest-xdist[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( dev-python/six[python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/urllib3-1.25.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.2.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.2.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/wheel-0.38.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Low-level, data-driven core of boto 3 +EAPI=8 +HOMEPAGE=https://github.com/boto/botocore/ https://pypi.org/project/botocore/ +INHERIT=distutils-r1 multiprocessing +IUSE=test python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux +LICENSE=Apache-2.0 +RDEPEND=dev-python/six[python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/urllib3-1.25.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/boto/botocore/archive/1.29.115.tar.gz -> botocore-1.29.115.gh.tar.gz +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=fdf90804b518aea7cdc6e38fa5f2e79b diff --git a/metadata/md5-cache/dev-python/cfn-lint-0.77.1 b/metadata/md5-cache/dev-python/cfn-lint-0.77.1 new file mode 100644 index 000000000000..8b555d0bad29 --- /dev/null +++ b/metadata/md5-cache/dev-python/cfn-lint-0.77.1 @@ -0,0 +1,16 @@ +BDEPEND=test? ( >=dev-python/aws-sam-translator-1.64.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/jsonpatch[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/jschema_to_python-1.2.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/jsonschema-3.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/junit-xml[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pyyaml-5.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/requests-2.15.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/regex[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/sarif_om-1.0.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/sympy-1.0.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.2.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.2.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/wheel-0.38.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=CloudFormation Linter +EAPI=8 +HOMEPAGE=https://github.com/aws-cloudformation/cfn-lint/ https://pypi.org/project/cfn-lint/ +INHERIT=distutils-r1 pypi +IUSE=test python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~amd64 ~arm ~arm64 ~riscv ~x86 +LICENSE=MIT +RDEPEND=>=dev-python/aws-sam-translator-1.64.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/jsonpatch[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/jschema_to_python-1.2.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/jsonschema-3.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/junit-xml[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pyyaml-5.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/requests-2.15.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/regex[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/sarif_om-1.0.4[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/sympy-1.0.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://files.pythonhosted.org/packages/source/c/cfn-lint/cfn-lint-0.77.1.tar.gz +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 3b6a844fbf71f1581992b44c78b549b7 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=568a98f93d062f3e2dd78ccb37890455 diff --git a/metadata/md5-cache/dev-python/cython-0.29.33 b/metadata/md5-cache/dev-python/cython-0.29.33 index e3cb52d85e3e..b002ed9f2fd6 100644 --- a/metadata/md5-cache/dev-python/cython-0.29.33 +++ b/metadata/md5-cache/dev-python/cython-0.29.33 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_p RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/cython/cython/archive/0.29.33.tar.gz -> cython-0.29.33.gh.tar.gz -_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp-common 1d6e8d43be4713f04a441f721d890d48 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp-common dcd21c5d379fc2217e95f529504c5fe0 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=3f099871d03c45e76876c66b51031ec2 diff --git a/metadata/md5-cache/dev-python/cython-0.29.33-r1 b/metadata/md5-cache/dev-python/cython-0.29.33-r1 index 0f4283e80ba2..1b132c57c558 100644 --- a/metadata/md5-cache/dev-python/cython-0.29.33-r1 +++ b/metadata/md5-cache/dev-python/cython-0.29.33-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_p RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/cython/cython/archive/0.29.33.tar.gz -> cython-0.29.33.gh.tar.gz -_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp-common 1d6e8d43be4713f04a441f721d890d48 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp-common dcd21c5d379fc2217e95f529504c5fe0 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=1b9b2e6466dbb20509a52428faf61f58 diff --git a/metadata/md5-cache/dev-python/cython-0.29.34 b/metadata/md5-cache/dev-python/cython-0.29.34 index 85f9ce3b626f..de118943a385 100644 --- a/metadata/md5-cache/dev-python/cython-0.29.34 +++ b/metadata/md5-cache/dev-python/cython-0.29.34 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_p RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/cython/cython/archive/0.29.34.tar.gz -> cython-0.29.34.gh.tar.gz -_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp-common 1d6e8d43be4713f04a441f721d890d48 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp-common dcd21c5d379fc2217e95f529504c5fe0 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=1b9b2e6466dbb20509a52428faf61f58 diff --git a/metadata/md5-cache/dev-python/httpx-socks-0.7.6 b/metadata/md5-cache/dev-python/httpx-socks-0.7.6 new file mode 100644 index 000000000000..ae09b641e9b2 --- /dev/null +++ b/metadata/md5-cache/dev-python/httpx-socks-0.7.6 @@ -0,0 +1,16 @@ +BDEPEND=test? ( >=dev-python/hypercorn-0.12.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-asyncio-0.18.3[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-trio-0.7.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/starlette-0.19.1[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/trio-0.18.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/yarl-1.6.3[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( =dev-python/httpx-0.21.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/httpcore-0.14.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/python-socks-2.0.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.2.1[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.2.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/wheel-0.38.4[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Proxy (HTTP, SOCKS) transports for httpx +EAPI=8 +HOMEPAGE=https://github.com/romis2012/httpx-socks/ https://pypi.org/project/httpx-socks/ +INHERIT=distutils-r1 +IUSE=test python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=Apache-2.0 +RDEPEND==dev-python/httpx-0.21.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/httpcore-0.14.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/python-socks-2.0.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/romis2012/httpx-socks/archive/v0.7.6.tar.gz -> httpx-socks-0.7.6.gh.tar.gz +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=7178a3cfb6c89c026a6c56713e257728 diff --git a/metadata/md5-cache/dev-python/hypothesis-6.72.0 b/metadata/md5-cache/dev-python/hypothesis-6.72.0 new file mode 100644 index 000000000000..fb9f27893ee5 --- /dev/null +++ b/metadata/md5-cache/dev-python/hypothesis-6.72.0 @@ -0,0 +1,16 @@ +BDEPEND=test? ( dev-python/mock[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pexpect[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest-xdist[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] !!=dev-python/attrs-19.2.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/sortedcontainers-2.1.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_pypy3? ( >=dev-python/exceptiongroup-1.0.0_rc8[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_9? ( >=dev-python/exceptiongroup-1.0.0_rc8[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_10? ( >=dev-python/exceptiongroup-1.0.0_rc8[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) cli? ( python_targets_python3_9? ( dev-python/black[python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/click[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_10? ( dev-python/black[python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/click[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) ) >=dev-python/pytest-7.2.1[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0=[threads(+),sqlite] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[threads(+),sqlite] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[threads(+),sqlite] ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[threads(+),sqlite] ) >=dev-python/gpep517-13[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.2.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/wheel-0.38.4[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install postinst prepare test +DESCRIPTION=A library for property based testing +EAPI=8 +HOMEPAGE=https://github.com/HypothesisWorks/hypothesis/ https://pypi.org/project/hypothesis/ +INHERIT=distutils-r1 multiprocessing optfeature +IUSE=cli test python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=MPL-2.0 +RDEPEND=>=dev-python/attrs-19.2.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/sortedcontainers-2.1.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_pypy3? ( >=dev-python/exceptiongroup-1.0.0_rc8[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_9? ( >=dev-python/exceptiongroup-1.0.0_rc8[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_10? ( >=dev-python/exceptiongroup-1.0.0_rc8[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) cli? ( python_targets_python3_9? ( dev-python/black[python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/click[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_10? ( dev-python/black[python_targets_python3_9(-)?,python_targets_python3_10(-)?] dev-python/click[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0=[threads(+),sqlite] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[threads(+),sqlite] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[threads(+),sqlite] ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[threads(+),sqlite] ) +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-6.72.0.tar.gz -> hypothesis-6.72.0.gh.tar.gz +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=d24acb6f6f27019938b39608b6ce5f4e diff --git a/metadata/md5-cache/dev-python/identify-2.5.20 b/metadata/md5-cache/dev-python/identify-2.5.20 deleted file mode 100644 index be94b607a15e..000000000000 --- a/metadata/md5-cache/dev-python/identify-2.5.20 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( dev-python/ukkonen[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/wheel-0.38.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=File identification library for Python -EAPI=8 -HOMEPAGE=https://github.com/pre-commit/identify/ https://pypi.org/project/identify/ -INHERIT=distutils-r1 -IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=amd64 ~hppa ~ppc ~ppc64 ~riscv x86 -LICENSE=MIT -RDEPEND=dev-python/ukkonen[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/pre-commit/identify/archive/v2.5.20.tar.gz -> identify-2.5.20.gh.tar.gz -_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=eb257d49c6951c65cf483bfd9b531017 diff --git a/metadata/md5-cache/dev-python/identify-2.5.21 b/metadata/md5-cache/dev-python/identify-2.5.21 index 2f39cf08bed8..e2ee18ce9aab 100644 --- a/metadata/md5-cache/dev-python/identify-2.5.21 +++ b/metadata/md5-cache/dev-python/identify-2.5.21 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/pre-commit/identify/ https://pypi.org/project/identify/ INHERIT=distutils-r1 IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~amd64 ~hppa ~ppc ~ppc64 ~riscv ~x86 +KEYWORDS=amd64 ~hppa ~ppc ~ppc64 ~riscv x86 LICENSE=MIT RDEPEND=dev-python/ukkonen[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/pre-commit/identify/archive/v2.5.21.tar.gz -> identify-2.5.21.gh.tar.gz _eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=d67c70bc53580e8d7a5893bb04e378fa +_md5_=eb257d49c6951c65cf483bfd9b531017 diff --git a/metadata/md5-cache/dev-python/jq-1.4.0 b/metadata/md5-cache/dev-python/jq-1.4.0 deleted file mode 100644 index 13d46dcc8f5b..000000000000 --- a/metadata/md5-cache/dev-python/jq-1.4.0 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=dev-python/cython[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] test? ( >=dev-python/pytest-7.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/wheel-0.38.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Python bindings for jq -EAPI=8 -HOMEPAGE=https://github.com/mwilliamson/jq.py/ https://pypi.org/project/jq/ -INHERIT=distutils-r1 -IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=amd64 x86 -LICENSE=BSD-2 -RDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/mwilliamson/jq.py/archive/1.4.0.tar.gz -> jq.py-1.4.0.gh.tar.gz -_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=a6c38d3f1de6a461ff84f93dd548ab67 diff --git a/metadata/md5-cache/dev-python/jq-1.4.1 b/metadata/md5-cache/dev-python/jq-1.4.1 index b05287e5ae8f..883f92735427 100644 --- a/metadata/md5-cache/dev-python/jq-1.4.1 +++ b/metadata/md5-cache/dev-python/jq-1.4.1 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/mwilliamson/jq.py/ https://pypi.org/project/jq/ INHERIT=distutils-r1 IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=BSD-2 RDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/mwilliamson/jq.py/archive/1.4.1.tar.gz -> jq.py-1.4.1.gh.tar.gz _eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=6eb36c8461daf26e8a173679ccdac1ff +_md5_=a6c38d3f1de6a461ff84f93dd548ab67 diff --git a/metadata/md5-cache/dev-python/jsonschema-spec-0.1.3 b/metadata/md5-cache/dev-python/jsonschema-spec-0.1.3 deleted file mode 100644 index 28265e0dbdc4..000000000000 --- a/metadata/md5-cache/dev-python/jsonschema-spec-0.1.3 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( >=dev-python/jsonschema-4.0.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pathable[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pyyaml-5.1[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pathable[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.2.1[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/poetry-core-1.4.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=JSONSchema Spec with object-oriented paths -EAPI=8 -HOMEPAGE=https://pypi.org/project/jsonschema-spec/ https://github.com/p1c2u/jsonschema-spec/ -INHERIT=distutils-r1 -IUSE=test python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=amd64 ~arm ~arm64 ~ppc64 ~riscv x86 -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/jsonschema-4.0.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pathable[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pyyaml-5.1[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pathable[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) -REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/p1c2u/jsonschema-spec/archive/0.1.3.tar.gz -> jsonschema-spec-0.1.3.gh.tar.gz -_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=fb6fb4f65687efd1b72929d39a137193 diff --git a/metadata/md5-cache/dev-python/mkdocs-minify-plugin-0.6.2 b/metadata/md5-cache/dev-python/mkdocs-minify-plugin-0.6.2 deleted file mode 100644 index b7a4d19c2b51..000000000000 --- a/metadata/md5-cache/dev-python/mkdocs-minify-plugin-0.6.2 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( >=dev-python/csscompressor-0.9.5[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/mkdocs-1.4.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=app-text/htmlmin-0.1.12[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/jsmin-3.0.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/wheel-0.38.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=An MkDocs plugin to minify HTML and/or JS files prior to being written to disk -EAPI=8 -HOMEPAGE=https://github.com/byrnereese/mkdocs-minify-plugin https://pypi.org/project/mkdocs-minify-plugin/ -INHERIT=distutils-r1 -IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=amd64 ~arm ~ppc ~riscv x86 -LICENSE=MIT -RDEPEND=>=dev-python/csscompressor-0.9.5[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/mkdocs-1.4.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=app-text/htmlmin-0.1.12[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/jsmin-3.0.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/byrnereese/mkdocs-minify-plugin/archive/0.6.2.tar.gz -> mkdocs-minify-plugin-0.6.2.gh.tar.gz -_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=445d757e8779738593eed2b92b0e77cb diff --git a/metadata/md5-cache/dev-python/mkdocs-minify-plugin-0.6.3 b/metadata/md5-cache/dev-python/mkdocs-minify-plugin-0.6.3 deleted file mode 100644 index a1c5a78ee27d..000000000000 --- a/metadata/md5-cache/dev-python/mkdocs-minify-plugin-0.6.3 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( >=dev-python/csscompressor-0.9.5[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/mkdocs-1.4.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=app-text/htmlmin-0.1.12[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/jsmin-3.0.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/wheel-0.38.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=An MkDocs plugin to minify HTML and/or JS files prior to being written to disk -EAPI=8 -HOMEPAGE=https://github.com/byrnereese/mkdocs-minify-plugin https://pypi.org/project/mkdocs-minify-plugin/ -INHERIT=distutils-r1 -IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~amd64 ~arm ~ppc ~riscv ~x86 -LICENSE=MIT -RDEPEND=>=dev-python/csscompressor-0.9.5[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/mkdocs-1.4.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=app-text/htmlmin-0.1.12[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/jsmin-3.0.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/byrnereese/mkdocs-minify-plugin/archive/0.6.3.tar.gz -> mkdocs-minify-plugin-0.6.3.gh.tar.gz -_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=cb0aea83943b78662c9908599f72b93f diff --git a/metadata/md5-cache/dev-python/mock-5.0.2 b/metadata/md5-cache/dev-python/mock-5.0.2 new file mode 100644 index 000000000000..2d47a9957ffa --- /dev/null +++ b/metadata/md5-cache/dev-python/mock-5.0.2 @@ -0,0 +1,16 @@ +BDEPEND=test? ( >=dev-python/pytest-7.2.1[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.2.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/wheel-0.38.4[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Rolling backport of unittest.mock for all Pythons +EAPI=8 +HOMEPAGE=https://github.com/testing-cabal/mock/ https://pypi.org/project/mock/ +INHERIT=distutils-r1 pypi +IUSE=test python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris +LICENSE=BSD +RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://files.pythonhosted.org/packages/source/m/mock/mock-5.0.2.tar.gz +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 3b6a844fbf71f1581992b44c78b549b7 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=ba78ff99beb6b98c98eb7f9d488cc4cd diff --git a/metadata/md5-cache/dev-python/pyamg-5.0.0 b/metadata/md5-cache/dev-python/pyamg-5.0.0 new file mode 100644 index 000000000000..480973bd531e --- /dev/null +++ b/metadata/md5-cache/dev-python/pyamg-5.0.0 @@ -0,0 +1,17 @@ +BDEPEND=dev-python/pybind11[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/numpy[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-scm-7.0.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] test? ( dev-python/matplotlib[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( dev-python/CppHeaderParser[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/numpy[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pyyaml[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/scipy[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/wheel-0.38.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/pybind11[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/numpy[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DESCRIPTION=Algebraic multigrid solvers in Python +EAPI=8 +HOMEPAGE=https://www.pyamg.org/ https://github.com/pyamg/pyamg/ https://pypi.org/project/pyamg/ +INHERIT=distutils-r1 +IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~amd64 +LICENSE=BSD +RDEPEND=dev-python/CppHeaderParser[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/numpy[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pyyaml[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/scipy[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/pyamg/pyamg/archive/v5.0.0.tar.gz -> pyamg-5.0.0.gh.tar.gz +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=17901067e17295c38f07225390ffbb21 diff --git a/metadata/md5-cache/dev-python/pygresql-5.2.4 b/metadata/md5-cache/dev-python/pygresql-5.2.4 index 1005c04cc2b7..6640bd67d890 100644 --- a/metadata/md5-cache/dev-python/pygresql-5.2.4 +++ b/metadata/md5-cache/dev-python/pygresql-5.2.4 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/P/PyGreSQL/PyGreSQL-5.2.4.tar.gz -_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e eapi8-dosym 741bfa77afb2a9321261501aca58c208 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 7233fc439696bbab8442204f0f284645 pypi 3b6a844fbf71f1581992b44c78b549b7 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e eapi8-dosym 741bfa77afb2a9321261501aca58c208 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 postgres 43fa70d2d8740e8e0149e6da1995ea28 pypi 3b6a844fbf71f1581992b44c78b549b7 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=3e6ce11a5d1493eaa9f17c24d21b9889 diff --git a/metadata/md5-cache/dev-python/pypdf-3.8.0 b/metadata/md5-cache/dev-python/pypdf-3.8.0 new file mode 100644 index 000000000000..a09fe2bfbb71 --- /dev/null +++ b/metadata/md5-cache/dev-python/pypdf-3.8.0 @@ -0,0 +1,16 @@ +BDEPEND=dev-python/pillow[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] test? ( dev-python/pycryptodome[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( python_targets_python3_9? ( dev-python/typing-extensions[python_targets_python3_9(-)?] ) >=dev-python/pytest-7.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/flit_core-3.8.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install prepare test unpack +DESCRIPTION=Python library to work with PDF files +EAPI=8 +HOMEPAGE=https://pypi.org/project/pypdf/ https://github.com/py-pdf/pypdf/ +INHERIT=distutils-r1 +IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 +LICENSE=BSD-2 +RDEPEND=python_targets_python3_9? ( dev-python/typing-extensions[python_targets_python3_9(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/py-pdf/pypdf/archive/3.8.0.tar.gz -> pypdf-3.8.0.gh.tar.gz test? ( https://github.com/py-pdf/sample-files/archive/d3d250321b01ca1194e16a814d24508897862fe8.tar.gz -> pypdf-sample-files-d3d250321b01ca1194e16a814d24508897862fe8.gh.tar.gz ) +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=60aa30a1c9a9bf597baffaa72d598d03 diff --git a/metadata/md5-cache/dev-python/python-email-validator-2.0.0_p1 b/metadata/md5-cache/dev-python/python-email-validator-2.0.0_p1 new file mode 100644 index 000000000000..c4211ec338eb --- /dev/null +++ b/metadata/md5-cache/dev-python/python-email-validator-2.0.0_p1 @@ -0,0 +1,16 @@ +BDEPEND=test? ( >=dev-python/idna-2.8[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/dnspython-1.15.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.2.1[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.2.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/wheel-0.38.4[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=A robust email syntax and deliverability validation library +EAPI=8 +HOMEPAGE=https://github.com/JoshData/python-email-validator/ https://pypi.org/project/email-validator/ +INHERIT=distutils-r1 pypi +IUSE=test python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=CC0-1.0 +RDEPEND=>=dev-python/idna-2.8[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/dnspython-1.15.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://files.pythonhosted.org/packages/source/e/email-validator/email_validator-2.0.0.post1.tar.gz +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 3b6a844fbf71f1581992b44c78b549b7 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=ea2fde3b08d9f6c48e82a5a14b029775 diff --git a/metadata/md5-cache/dev-python/pyxattr-0.8.1 b/metadata/md5-cache/dev-python/pyxattr-0.8.1 new file mode 100644 index 000000000000..574678c4c83e --- /dev/null +++ b/metadata/md5-cache/dev-python/pyxattr-0.8.1 @@ -0,0 +1,17 @@ +BDEPEND=test? ( sys-apps/attr:= >=dev-python/pytest-7.2.1[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) doc? ( || ( ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-python/sphinx-5.3.0[python_targets_python3_11(-)] dev-python/recommonmark[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 >=dev-python/sphinx-5.3.0[python_targets_python3_10(-)] dev-python/recommonmark[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 >=dev-python/sphinx-5.3.0[python_targets_python3_9(-)] dev-python/recommonmark[python_targets_python3_9(-)] ) ( >=dev-python/pypy3-7.3.11-r1:0 >=dev-python/sphinx-5.3.0[python_targets_pypy3(-)] dev-python/recommonmark[python_targets_pypy3(-)] ) ) ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.2.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/wheel-0.38.4[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install prepare test +DEPEND=sys-apps/attr:= +DESCRIPTION=Python interface to xattr +EAPI=8 +HOMEPAGE=https://pyxattr.k1024.org/ https://github.com/iustin/pyxattr/ https://pypi.org/project/pyxattr/ +INHERIT=distutils-r1 pypi +IUSE=test doc python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux +LICENSE=LGPL-2.1 +RDEPEND=sys-apps/attr:= python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://files.pythonhosted.org/packages/source/p/pyxattr/pyxattr-0.8.1.tar.gz +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 3b6a844fbf71f1581992b44c78b549b7 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=dbc441d4025d67f94cb50457cf457731 diff --git a/metadata/md5-cache/dev-python/rapidfuzz-2.15.1 b/metadata/md5-cache/dev-python/rapidfuzz-2.15.1 index 77af34dbb2e9..027dfe457067 100644 --- a/metadata/md5-cache/dev-python/rapidfuzz-2.15.1 +++ b/metadata/md5-cache/dev-python/rapidfuzz-2.15.1 @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/r/rapidfuzz/rapidfuzz-2.15.1.tar.gz _eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 3b6a844fbf71f1581992b44c78b549b7 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=afc1294a4882472a35a1f1223e267e5b +_md5_=d8cd5ec2fe5b0702e42b2c3ce30225a8 diff --git a/metadata/md5-cache/dev-python/rapidfuzz-3.0.0 b/metadata/md5-cache/dev-python/rapidfuzz-3.0.0 new file mode 100644 index 000000000000..9308a4ee2216 --- /dev/null +++ b/metadata/md5-cache/dev-python/rapidfuzz-3.0.0 @@ -0,0 +1,17 @@ +BDEPEND=dev-python/rapidfuzz_capi[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/scikit-build-0.16.2[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/setuptools[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] test? ( dev-python/hypothesis[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( >=dev-python/pytest-7.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-cpp/taskflow-3.0.0 >=dev-cpp/rapidfuzz-cpp-1.11.2 dev-python/numpy[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DESCRIPTION=Rapid fuzzy string matching in Python using various string metrics +EAPI=8 +HOMEPAGE=https://github.com/maxbachmann/RapidFuzz/ https://pypi.org/project/rapidfuzz/ +INHERIT=distutils-r1 pypi +IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=MIT +RDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://files.pythonhosted.org/packages/source/r/rapidfuzz/rapidfuzz-3.0.0.tar.gz +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 3b6a844fbf71f1581992b44c78b549b7 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=df02f66bb38acafa0de42f987a597ae4 diff --git a/metadata/md5-cache/dev-python/simplejson-3.18.3 b/metadata/md5-cache/dev-python/simplejson-3.18.3 deleted file mode 100644 index 6a2e2e6039a5..000000000000 --- a/metadata/md5-cache/dev-python/simplejson-3.18.3 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( dev-python/unittest-or-fail[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.2.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/wheel-0.38.4[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Simple, fast, extensible JSON encoder/decoder for Python -EAPI=8 -HOMEPAGE=https://github.com/simplejson/simplejson/ https://pypi.org/project/simplejson/ -INHERIT=distutils-r1 -IUSE=+native-extensions test python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos -LICENSE=|| ( MIT AFL-2.1 ) -RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) -REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/simplejson/simplejson/archive/v3.18.3.tar.gz -> simplejson-3.18.3.gh.tar.gz -_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=6a2837a5bf3a54af5fe7edb62406bbfc diff --git a/metadata/md5-cache/dev-python/simplejson-3.18.4 b/metadata/md5-cache/dev-python/simplejson-3.18.4 index 4ad0a500c0f2..ef711ffe1d1a 100644 --- a/metadata/md5-cache/dev-python/simplejson-3.18.4 +++ b/metadata/md5-cache/dev-python/simplejson-3.18.4 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/simplejson/simplejson/ https://pypi.org/project/simplejson/ INHERIT=distutils-r1 pypi IUSE=+native-extensions test python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos LICENSE=|| ( MIT AFL-2.1 ) RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/s/simplejson/simplejson-3.18.4.tar.gz _eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 3b6a844fbf71f1581992b44c78b549b7 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=4359c2fe9c35127142658ab611aaf4c2 +_md5_=dd775f714c81ae699e97a14f83d2fc6b diff --git a/metadata/md5-cache/dev-python/soupsieve-2.4.1 b/metadata/md5-cache/dev-python/soupsieve-2.4.1 new file mode 100644 index 000000000000..b638433ef4b3 --- /dev/null +++ b/metadata/md5-cache/dev-python/soupsieve-2.4.1 @@ -0,0 +1,16 @@ +BDEPEND=test? ( dev-python/beautifulsoup4[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/lxml[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/html5lib[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( >=dev-python/pytest-7.2.1[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/hatchling-1.12.2[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=A modern CSS selector implementation for BeautifulSoup +EAPI=8 +HOMEPAGE=https://github.com/facelessuser/soupsieve/ https://pypi.org/project/soupsieve/ +INHERIT=distutils-r1 +IUSE=test python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=MIT +RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/facelessuser/soupsieve/archive/2.4.1.tar.gz -> soupsieve-2.4.1.gh.tar.gz +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=a977c46ee99a44dec06957be503da27f diff --git a/metadata/md5-cache/dev-python/sqlalchemy-2.0.7 b/metadata/md5-cache/dev-python/sqlalchemy-2.0.7 index 0ae1b0014098..e1ef0d2af57e 100644 --- a/metadata/md5-cache/dev-python/sqlalchemy-2.0.7 +++ b/metadata/md5-cache/dev-python/sqlalchemy-2.0.7 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://www.sqlalchemy.org/ https://pypi.org/project/SQLAlchemy/ https://github.com/sqlalchemy/sqlalchemy/ INHERIT=distutils-r1 optfeature pypi IUSE=examples +sqlite test test python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris LICENSE=MIT RDEPEND=>=dev-python/typing-extensions-4.2.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0=[sqlite?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite?] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite?] ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[sqlite?] ) REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/S/SQLAlchemy/SQLAlchemy-2.0.7.tar.gz _eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 3b6a844fbf71f1581992b44c78b549b7 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=81bf45b2a18864a8028454f39a534a2f +_md5_=6bbad6122c55ac9f1d3754576854eb47 diff --git a/metadata/md5-cache/dev-python/sqlalchemy-2.0.8 b/metadata/md5-cache/dev-python/sqlalchemy-2.0.8 index 9d55e436f077..03750d2eefcc 100644 --- a/metadata/md5-cache/dev-python/sqlalchemy-2.0.8 +++ b/metadata/md5-cache/dev-python/sqlalchemy-2.0.8 @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/S/SQLAlchemy/SQLAlchemy-2.0.8.tar.gz _eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 3b6a844fbf71f1581992b44c78b549b7 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=164208a3b2f870b0a8fa24fea0ccadd0 +_md5_=1fdc7245241b693f603bbc0911cc43a0 diff --git a/metadata/md5-cache/dev-python/typeguard-2.13.3-r1 b/metadata/md5-cache/dev-python/typeguard-2.13.3-r1 deleted file mode 100644 index 8c32419b0564..000000000000 --- a/metadata/md5-cache/dev-python/typeguard-2.13.3-r1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=dev-python/setuptools-scm[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] test? ( dev-python/typing-extensions[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( >=dev-python/pytest-7.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/wheel-0.38.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Run-time type checker for Python -EAPI=8 -HOMEPAGE=https://pypi.org/project/typeguard/ https://github.com/agronholm/typeguard/ -INHERIT=distutils-r1 -IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 -LICENSE=MIT -RDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/agronholm/typeguard/archive/2.13.3.tar.gz -> typeguard-2.13.3.gh.tar.gz -_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=d08b771f4e92802c78b8b3206eb46edc diff --git a/metadata/md5-cache/dev-python/typeguard-3.0.0 b/metadata/md5-cache/dev-python/typeguard-3.0.0 deleted file mode 100644 index b17f70e49dfe..000000000000 --- a/metadata/md5-cache/dev-python/typeguard-3.0.0 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=>=dev-python/setuptools-scm-6.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] test? ( python_targets_python3_9? ( >=dev-python/importlib_metadata-3.6[python_targets_python3_9(-)?] ) python_targets_python3_9? ( >=dev-python/typing-extensions-4.4.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_10? ( >=dev-python/typing-extensions-4.4.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) >=dev-python/pytest-7.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/wheel-0.38.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Run-time type checker for Python -EAPI=8 -HOMEPAGE=https://pypi.org/project/typeguard/ https://github.com/agronholm/typeguard/ -INHERIT=distutils-r1 pypi -IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 -LICENSE=MIT -RDEPEND=python_targets_python3_9? ( >=dev-python/importlib_metadata-3.6[python_targets_python3_9(-)?] ) python_targets_python3_9? ( >=dev-python/typing-extensions-4.4.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_10? ( >=dev-python/typing-extensions-4.4.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://files.pythonhosted.org/packages/source/t/typeguard/typeguard-3.0.0.tar.gz -_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 3b6a844fbf71f1581992b44c78b549b7 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=fa6c8ef1cf482a14031eb815ad62c2ae diff --git a/metadata/md5-cache/dev-python/typeguard-3.0.1 b/metadata/md5-cache/dev-python/typeguard-3.0.1 deleted file mode 100644 index ba516d1ca2c4..000000000000 --- a/metadata/md5-cache/dev-python/typeguard-3.0.1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=>=dev-python/setuptools-scm-6.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] test? ( python_targets_python3_9? ( >=dev-python/importlib_metadata-3.6[python_targets_python3_9(-)?] ) python_targets_python3_9? ( >=dev-python/typing-extensions-4.4.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_10? ( >=dev-python/typing-extensions-4.4.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) >=dev-python/pytest-7.2.1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.2.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/wheel-0.38.4[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Run-time type checker for Python -EAPI=8 -HOMEPAGE=https://pypi.org/project/typeguard/ https://github.com/agronholm/typeguard/ -INHERIT=distutils-r1 pypi -IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 -LICENSE=MIT -RDEPEND=python_targets_python3_9? ( >=dev-python/importlib_metadata-3.6[python_targets_python3_9(-)?] ) python_targets_python3_9? ( >=dev-python/typing-extensions-4.4.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_10? ( >=dev-python/typing-extensions-4.4.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://files.pythonhosted.org/packages/source/t/typeguard/typeguard-3.0.1.tar.gz -_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 3b6a844fbf71f1581992b44c78b549b7 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=fa6c8ef1cf482a14031eb815ad62c2ae diff --git a/metadata/md5-cache/dev-python/typeguard-3.0.2 b/metadata/md5-cache/dev-python/typeguard-3.0.2 index d38e62190cb6..52b9a1dd885a 100644 --- a/metadata/md5-cache/dev-python/typeguard-3.0.2 +++ b/metadata/md5-cache/dev-python/typeguard-3.0.2 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://pypi.org/project/typeguard/ https://github.com/agronholm/typeguard/ INHERIT=distutils-r1 pypi IUSE=test python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc ~x86 +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 LICENSE=MIT RDEPEND=python_targets_python3_9? ( >=dev-python/importlib_metadata-3.6[python_targets_python3_9(-)?] ) python_targets_python3_9? ( >=dev-python/typing-extensions-4.4.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_10? ( >=dev-python/typing-extensions-4.4.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/t/typeguard/typeguard-3.0.2.tar.gz _eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 3b6a844fbf71f1581992b44c78b549b7 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=607f36cbc6617c694b5c48f57b914445 +_md5_=4d93229d5db73e1535f89f035df1d943 diff --git a/metadata/md5-cache/dev-python/zstandard-0.21.0 b/metadata/md5-cache/dev-python/zstandard-0.21.0 new file mode 100644 index 000000000000..c273973520a3 --- /dev/null +++ b/metadata/md5-cache/dev-python/zstandard-0.21.0 @@ -0,0 +1,17 @@ +BDEPEND=test? ( dev-python/hypothesis[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( app-arch/zstd:= python_targets_python3_9? ( >=dev-python/cffi-1.14.0-r2:=[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_10? ( >=dev-python/cffi-1.14.0-r2:=[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_11? ( >=dev-python/cffi-1.14.0-r2:=[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) dev-python/unittest-or-fail[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) >=dev-python/gpep517-13[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/setuptools-67.2.0[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/wheel-0.38.4[python_targets_pypy3(-)?,python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] +DEFINED_PHASES=compile configure install prepare test +DEPEND=app-arch/zstd:= +DESCRIPTION=Zstandard Bindings for Python +EAPI=8 +HOMEPAGE=https://github.com/indygreg/python-zstandard/ https://pypi.org/project/zstandard/ +INHERIT=distutils-r1 +IUSE=test python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=BSD +RDEPEND=app-arch/zstd:= python_targets_python3_9? ( >=dev-python/cffi-1.14.0-r2:=[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_10? ( >=dev-python/cffi-1.14.0-r2:=[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_11? ( >=dev-python/cffi-1.14.0-r2:=[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.11-r1:0= ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/indygreg/python-zstandard/archive/0.21.0.tar.gz -> python-zstandard-0.21.0.gh.tar.gz +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=d49cab407e516eb28c3ba956ba948b44 diff --git a/metadata/md5-cache/dev-qt/Manifest.gz b/metadata/md5-cache/dev-qt/Manifest.gz index d1728d447295..3e38596df662 100644 Binary files a/metadata/md5-cache/dev-qt/Manifest.gz and b/metadata/md5-cache/dev-qt/Manifest.gz differ diff --git a/metadata/md5-cache/dev-qt/qtbase-6.5.0 b/metadata/md5-cache/dev-qt/qtbase-6.5.0-r1 similarity index 91% rename from metadata/md5-cache/dev-qt/qtbase-6.5.0 rename to metadata/md5-cache/dev-qt/qtbase-6.5.0-r1 index efa7d213083c..6860a92daf1e 100644 --- a/metadata/md5-cache/dev-qt/qtbase-6.5.0 +++ b/metadata/md5-cache/dev-qt/qtbase-6.5.0-r1 @@ -1,6 +1,6 @@ BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 dev-lang/perl virtual/pkgconfig DEFINED_PHASES=compile configure install prepare test -DEPEND=app-crypt/libb2 dev-libs/double-conversion:= dev-libs/glib:2 dev-libs/libpcre2:=[pcre16,unicode] dev-util/gtk-update-icon-cache media-libs/fontconfig >=media-libs/freetype-2.6.1:2 >=media-libs/harfbuzz-1.6.0:= media-libs/tiff:= >=sys-apps/dbus-1.4.20 sys-libs/zlib:= brotli? ( app-arch/brotli:= ) evdev? ( sys-libs/mtdev ) freetds? ( dev-db/freetds ) gles2-only? ( media-libs/libglvnd ) !gles2-only? ( media-libs/libglvnd[X] ) gssapi? ( virtual/krb5 ) gtk? ( x11-libs/gtk+:3 x11-libs/libX11 x11-libs/pango ) gui? ( media-libs/libpng:= ) icu? ( dev-libs/icu:= ) !icu? ( virtual/libiconv ) jpeg? ( media-libs/libjpeg-turbo:= ) libinput? ( dev-libs/libinput:= >=x11-libs/libxkbcommon-0.5.0 ) libproxy? ( net-libs/libproxy ) mysql? ( dev-db/mysql-connector-c:= ) oci8? ( dev-db/oracle-instantclient:=[sdk] ) odbc? ( dev-db/unixODBC ) postgres? ( dev-db/postgresql:* ) sctp? ( kernel_linux? ( net-misc/lksctp-tools ) ) sqlite? ( dev-db/sqlite:3 ) ssl? ( dev-libs/openssl:= ) systemd? ( sys-apps/systemd:= ) tslib? ( >=x11-libs/tslib-1.21 ) udev? ( virtual/libudev:= ) vulkan? ( dev-util/vulkan-headers ) X? ( x11-libs/libdrm x11-libs/libICE x11-libs/libSM x11-libs/libX11 >=x11-libs/libxcb-1.12:= >=x11-libs/libxkbcommon-0.5.0[X] x11-libs/xcb-util-image x11-libs/xcb-util-keysyms x11-libs/xcb-util-renderutil x11-libs/xcb-util-wm ) zstd? ( app-arch/zstd:= ) +DEPEND=app-crypt/libb2 dev-libs/double-conversion:= dev-libs/glib:2 dev-libs/libpcre2:=[pcre16,unicode] dev-util/gtk-update-icon-cache media-libs/fontconfig >=media-libs/freetype-2.6.1:2 >=media-libs/harfbuzz-1.6.0:= media-libs/tiff:= >=sys-apps/dbus-1.4.20 sys-libs/zlib:= brotli? ( app-arch/brotli:= ) evdev? ( sys-libs/mtdev ) freetds? ( dev-db/freetds ) gles2-only? ( media-libs/libglvnd ) !gles2-only? ( media-libs/libglvnd[X] ) gssapi? ( virtual/krb5 ) gtk? ( x11-libs/gtk+:3 x11-libs/libX11 x11-libs/pango ) gui? ( media-libs/libpng:= ) icu? ( dev-libs/icu:= ) !icu? ( virtual/libiconv ) jpeg? ( media-libs/libjpeg-turbo:= ) libinput? ( dev-libs/libinput:= >=x11-libs/libxkbcommon-0.5.0 ) libproxy? ( net-libs/libproxy ) mysql? ( dev-db/mysql-connector-c:= ) oci8? ( dev-db/oracle-instantclient:=[sdk] ) odbc? ( dev-db/unixODBC ) postgres? ( dev-db/postgresql:* ) sctp? ( kernel_linux? ( net-misc/lksctp-tools ) ) sqlite? ( dev-db/sqlite:3 ) ssl? ( dev-libs/openssl:= ) systemd? ( sys-apps/systemd:= ) tslib? ( >=x11-libs/tslib-1.21 ) udev? ( virtual/libudev:= ) vulkan? ( dev-util/vulkan-headers ) X? ( x11-libs/libdrm x11-libs/libICE x11-libs/libSM x11-libs/libX11 >=x11-libs/libxcb-1.12:= >=x11-libs/libxkbcommon-0.5.0[X] x11-libs/xcb-util-cursor x11-libs/xcb-util-image x11-libs/xcb-util-keysyms x11-libs/xcb-util-renderutil x11-libs/xcb-util-wm ) zstd? ( app-arch/zstd:= ) DESCRIPTION=Cross-platform application development framework EAPI=8 HOMEPAGE=https://www.qt.io/ @@ -8,10 +8,10 @@ INHERIT=qt6-build IUSE=+concurrent +dbus +gui +network +sql opengl +widgets +xml zstd accessibility egl eglfs evdev gles2-only +jpeg +libinput tslib tuio vulkan +X brotli gssapi libproxy sctp +ssl vnc freetds mysql oci8 odbc postgres +sqlite cups gtk icu systemd +udev debug test KEYWORDS=~amd64 LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=app-crypt/libb2 dev-libs/double-conversion:= dev-libs/glib:2 dev-libs/libpcre2:=[pcre16,unicode] dev-util/gtk-update-icon-cache media-libs/fontconfig >=media-libs/freetype-2.6.1:2 >=media-libs/harfbuzz-1.6.0:= media-libs/tiff:= >=sys-apps/dbus-1.4.20 sys-libs/zlib:= brotli? ( app-arch/brotli:= ) evdev? ( sys-libs/mtdev ) freetds? ( dev-db/freetds ) gles2-only? ( media-libs/libglvnd ) !gles2-only? ( media-libs/libglvnd[X] ) gssapi? ( virtual/krb5 ) gtk? ( x11-libs/gtk+:3 x11-libs/libX11 x11-libs/pango ) gui? ( media-libs/libpng:= ) icu? ( dev-libs/icu:= ) !icu? ( virtual/libiconv ) jpeg? ( media-libs/libjpeg-turbo:= ) libinput? ( dev-libs/libinput:= >=x11-libs/libxkbcommon-0.5.0 ) libproxy? ( net-libs/libproxy ) mysql? ( dev-db/mysql-connector-c:= ) oci8? ( dev-db/oracle-instantclient:=[sdk] ) odbc? ( dev-db/unixODBC ) postgres? ( dev-db/postgresql:* ) sctp? ( kernel_linux? ( net-misc/lksctp-tools ) ) sqlite? ( dev-db/sqlite:3 ) ssl? ( dev-libs/openssl:= ) systemd? ( sys-apps/systemd:= ) tslib? ( >=x11-libs/tslib-1.21 ) udev? ( virtual/libudev:= ) vulkan? ( dev-util/vulkan-headers ) X? ( x11-libs/libdrm x11-libs/libICE x11-libs/libSM x11-libs/libX11 >=x11-libs/libxcb-1.12:= >=x11-libs/libxkbcommon-0.5.0[X] x11-libs/xcb-util-image x11-libs/xcb-util-keysyms x11-libs/xcb-util-renderutil x11-libs/xcb-util-wm ) zstd? ( app-arch/zstd:= ) +RDEPEND=app-crypt/libb2 dev-libs/double-conversion:= dev-libs/glib:2 dev-libs/libpcre2:=[pcre16,unicode] dev-util/gtk-update-icon-cache media-libs/fontconfig >=media-libs/freetype-2.6.1:2 >=media-libs/harfbuzz-1.6.0:= media-libs/tiff:= >=sys-apps/dbus-1.4.20 sys-libs/zlib:= brotli? ( app-arch/brotli:= ) evdev? ( sys-libs/mtdev ) freetds? ( dev-db/freetds ) gles2-only? ( media-libs/libglvnd ) !gles2-only? ( media-libs/libglvnd[X] ) gssapi? ( virtual/krb5 ) gtk? ( x11-libs/gtk+:3 x11-libs/libX11 x11-libs/pango ) gui? ( media-libs/libpng:= ) icu? ( dev-libs/icu:= ) !icu? ( virtual/libiconv ) jpeg? ( media-libs/libjpeg-turbo:= ) libinput? ( dev-libs/libinput:= >=x11-libs/libxkbcommon-0.5.0 ) libproxy? ( net-libs/libproxy ) mysql? ( dev-db/mysql-connector-c:= ) oci8? ( dev-db/oracle-instantclient:=[sdk] ) odbc? ( dev-db/unixODBC ) postgres? ( dev-db/postgresql:* ) sctp? ( kernel_linux? ( net-misc/lksctp-tools ) ) sqlite? ( dev-db/sqlite:3 ) ssl? ( dev-libs/openssl:= ) systemd? ( sys-apps/systemd:= ) tslib? ( >=x11-libs/tslib-1.21 ) udev? ( virtual/libudev:= ) vulkan? ( dev-util/vulkan-headers ) X? ( x11-libs/libdrm x11-libs/libICE x11-libs/libSM x11-libs/libX11 >=x11-libs/libxcb-1.12:= >=x11-libs/libxkbcommon-0.5.0[X] x11-libs/xcb-util-cursor x11-libs/xcb-util-image x11-libs/xcb-util-keysyms x11-libs/xcb-util-renderutil x11-libs/xcb-util-wm ) zstd? ( app-arch/zstd:= ) REQUIRED_USE=opengl? ( gui ) widgets? ( gui ) X? ( || ( evdev libinput ) ) accessibility? ( gui ) egl? ( gui ) eglfs? ( gui ) evdev? ( gui ) gles2-only? ( gui ) jpeg? ( gui ) libinput? ( gui ) tslib? ( gui ) tuio? ( gui ) vulkan? ( gui ) X? ( gui ) brotli? ( network ) gssapi? ( network ) libproxy? ( network ) sctp? ( network ) ssl? ( network ) vnc? ( network ) freetds? ( sql ) mysql? ( sql ) oci8? ( sql ) odbc? ( sql ) postgres? ( sql ) sqlite? ( sql ) accessibility? ( dbus X ) cups? ( gui widgets ) eglfs? ( egl ) gtk? ( widgets ) gui? ( || ( eglfs X ) || ( libinput X ) ) libinput? ( udev ) sql? ( || ( freetds mysql oci8 odbc postgres sqlite ) ) vnc? ( gui ) X? ( gles2-only? ( egl ) ) RESTRICT=test SLOT=6/6.5 SRC_URI=https://download.qt.io/official_releases/qt/6.5/6.5.0/submodules/qtbase-everywhere-src-6.5.0.tar.xz _eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 qt6-build d25735138e197debc35a0dbf34a24048 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e virtualx 817571665ee28575da44ee08135089e5 xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=320618db0dbcc73816b6b7831a7e77a2 +_md5_=823ba074949941401eed12f5e94f58f7 diff --git a/metadata/md5-cache/dev-qt/qtscxml-6.5.0 b/metadata/md5-cache/dev-qt/qtscxml-6.5.0 new file mode 100644 index 000000000000..2f74f9bc9dda --- /dev/null +++ b/metadata/md5-cache/dev-qt/qtscxml-6.5.0 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 dev-lang/perl virtual/pkgconfig +DEFINED_PHASES=compile configure install prepare test +DEPEND==dev-qt/qtbase-6.5.0* =dev-qt/qtdeclarative-6.5.0* +DESCRIPTION=State Chart XML (SCXML) support library for the Qt6 framework +EAPI=8 +HOMEPAGE=https://www.qt.io/ +INHERIT=qt6-build +IUSE=debug test +KEYWORDS=~amd64 +LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 +RDEPEND==dev-qt/qtbase-6.5.0* =dev-qt/qtdeclarative-6.5.0* +RESTRICT=test +SLOT=6/6.5 +SRC_URI=https://download.qt.io/official_releases/qt/6.5/6.5.0/submodules/qtscxml-everywhere-src-6.5.0.tar.xz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 qt6-build d25735138e197debc35a0dbf34a24048 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e virtualx 817571665ee28575da44ee08135089e5 xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=f7b59d4c021a98af5bf6212a14f04b73 diff --git a/metadata/md5-cache/dev-qt/qtwebengine-6.5.0 b/metadata/md5-cache/dev-qt/qtwebengine-6.5.0-r1 similarity index 62% rename from metadata/md5-cache/dev-qt/qtwebengine-6.5.0 rename to metadata/md5-cache/dev-qt/qtwebengine-6.5.0-r1 index 7b86787431bb..81e6ae966881 100644 --- a/metadata/md5-cache/dev-qt/qtwebengine-6.5.0 +++ b/metadata/md5-cache/dev-qt/qtwebengine-6.5.0-r1 @@ -1,6 +1,6 @@ BDEPEND=|| ( ( >=dev-lang/python-3.11.1-r1:3.11[xml(+)] dev-python/html5lib[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10[xml(+)] dev-python/html5lib[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9[xml(+)] dev-python/html5lib[python_targets_python3_9(-)] ) ) dev-util/gperf dev-util/ninja dev-util/re2c net-libs/nodejs[ssl] sys-devel/bison sys-devel/flex >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 dev-lang/perl virtual/pkgconfig DEFINED_PHASES=compile configure install preinst prepare pretend setup test unpack -DEPEND=app-arch/snappy:= dev-libs/glib:2 dev-libs/nspr dev-libs/nss dev-libs/expat dev-libs/libevent:= dev-libs/libxml2[icu] dev-libs/libxslt dev-libs/re2:= =dev-qt/qtdeclarative-6.5.0* =dev-qt/qtwebchannel-6.5.0* media-libs/fontconfig media-libs/freetype media-libs/harfbuzz:= media-libs/lcms:2 media-libs/libjpeg-turbo:= media-libs/libpng:= >=media-libs/libvpx-1.5:=[svc(+)] media-libs/libwebp:= media-libs/opus sys-apps/dbus sys-apps/pciutils sys-libs/zlib[minizip] virtual/libudev x11-libs/libdrm x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libxcb:= x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libxkbcommon x11-libs/libxkbfile x11-libs/libXrandr x11-libs/libXrender x11-libs/libXScrnSaver x11-libs/libxshmfence:= x11-libs/libXtst alsa? ( media-libs/alsa-lib ) geolocation? ( =dev-qt/qtpositioning-6.5.0* ) kerberos? ( virtual/krb5 ) pulseaudio? ( media-libs/libpulse:= ) screencast? ( media-video/pipewire:= ) system-icu? ( >=dev-libs/icu-69.1:= ) widgets? ( =dev-qt/qtbase-6.5.0*[widgets] ) media-libs/libglvnd +DEPEND=app-arch/snappy:= dev-libs/glib:2 dev-libs/nspr dev-libs/nss dev-libs/expat dev-libs/libevent:= dev-libs/libxml2[icu] dev-libs/libxslt dev-libs/re2:= =dev-qt/qtdeclarative-6.5.0* =dev-qt/qtwebchannel-6.5.0* media-libs/fontconfig media-libs/freetype media-libs/harfbuzz:= media-libs/lcms:2 media-libs/libjpeg-turbo:= media-libs/libpng:= >=media-libs/libvpx-1.5:=[svc(+)] media-libs/libwebp:= media-libs/openjpeg:2= media-libs/opus sys-apps/dbus sys-apps/pciutils sys-libs/zlib[minizip] virtual/libudev x11-libs/libdrm x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libxcb:= x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libxkbcommon x11-libs/libxkbfile x11-libs/libXrandr x11-libs/libXrender x11-libs/libXScrnSaver x11-libs/libxshmfence:= x11-libs/libXtst alsa? ( media-libs/alsa-lib ) geolocation? ( =dev-qt/qtpositioning-6.5.0* ) kerberos? ( virtual/krb5 ) pulseaudio? ( media-libs/libpulse:= ) screencast? ( media-video/pipewire:= ) system-icu? ( >=dev-libs/icu-69.1:= ) widgets? ( =dev-qt/qtbase-6.5.0*[widgets] ) media-libs/libglvnd DESCRIPTION=Library for rendering dynamic web content in Qt6 C++ and QML applications EAPI=8 HOMEPAGE=https://www.qt.io/ @@ -8,10 +8,10 @@ INHERIT=check-reqs estack flag-o-matic multiprocessing python-any-r1 qt6-build IUSE=alsa bindist designer geolocation +jumbo-build kerberos pulseaudio screencast +system-icu widgets debug test KEYWORDS=~amd64 LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=app-arch/snappy:= dev-libs/glib:2 dev-libs/nspr dev-libs/nss dev-libs/expat dev-libs/libevent:= dev-libs/libxml2[icu] dev-libs/libxslt dev-libs/re2:= =dev-qt/qtdeclarative-6.5.0* =dev-qt/qtwebchannel-6.5.0* media-libs/fontconfig media-libs/freetype media-libs/harfbuzz:= media-libs/lcms:2 media-libs/libjpeg-turbo:= media-libs/libpng:= >=media-libs/libvpx-1.5:=[svc(+)] media-libs/libwebp:= media-libs/opus sys-apps/dbus sys-apps/pciutils sys-libs/zlib[minizip] virtual/libudev x11-libs/libdrm x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libxcb:= x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libxkbcommon x11-libs/libxkbfile x11-libs/libXrandr x11-libs/libXrender x11-libs/libXScrnSaver x11-libs/libxshmfence:= x11-libs/libXtst alsa? ( media-libs/alsa-lib ) geolocation? ( =dev-qt/qtpositioning-6.5.0* ) kerberos? ( virtual/krb5 ) pulseaudio? ( media-libs/libpulse:= ) screencast? ( media-video/pipewire:= ) system-icu? ( >=dev-libs/icu-69.1:= ) widgets? ( =dev-qt/qtbase-6.5.0*[widgets] ) +RDEPEND=app-arch/snappy:= dev-libs/glib:2 dev-libs/nspr dev-libs/nss dev-libs/expat dev-libs/libevent:= dev-libs/libxml2[icu] dev-libs/libxslt dev-libs/re2:= =dev-qt/qtdeclarative-6.5.0* =dev-qt/qtwebchannel-6.5.0* media-libs/fontconfig media-libs/freetype media-libs/harfbuzz:= media-libs/lcms:2 media-libs/libjpeg-turbo:= media-libs/libpng:= >=media-libs/libvpx-1.5:=[svc(+)] media-libs/libwebp:= media-libs/openjpeg:2= media-libs/opus sys-apps/dbus sys-apps/pciutils sys-libs/zlib[minizip] virtual/libudev x11-libs/libdrm x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libxcb:= x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libxkbcommon x11-libs/libxkbfile x11-libs/libXrandr x11-libs/libXrender x11-libs/libXScrnSaver x11-libs/libxshmfence:= x11-libs/libXtst alsa? ( media-libs/alsa-lib ) geolocation? ( =dev-qt/qtpositioning-6.5.0* ) kerberos? ( virtual/krb5 ) pulseaudio? ( media-libs/libpulse:= ) screencast? ( media-video/pipewire:= ) system-icu? ( >=dev-libs/icu-69.1:= ) widgets? ( =dev-qt/qtbase-6.5.0*[widgets] ) REQUIRED_USE=designer? ( widgets ) RESTRICT=test SLOT=6/6.5 SRC_URI=https://download.qt.io/official_releases/qt/6.5/6.5.0/submodules/qtwebengine-everywhere-src-6.5.0.tar.xz _eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 7fb5980de96325cbab639f5b2187357c estack 055c42df72f76a4f45ec92b35e83cd56 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 qt6-build d25735138e197debc35a0dbf34a24048 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e virtualx 817571665ee28575da44ee08135089e5 xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=31bdff61106b1619bbb7c42785ac9e90 +_md5_=5e4e4985dff934078e386b6b16db408d diff --git a/metadata/md5-cache/dev-ruby/Manifest.gz b/metadata/md5-cache/dev-ruby/Manifest.gz index 20296bbb7e7a..ddb33ba7ba07 100644 Binary files a/metadata/md5-cache/dev-ruby/Manifest.gz and b/metadata/md5-cache/dev-ruby/Manifest.gz differ diff --git a/metadata/md5-cache/dev-ruby/asciimath-2.0.5 b/metadata/md5-cache/dev-ruby/asciimath-2.0.5 new file mode 100644 index 000000000000..89c67ea98fd3 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/asciimath-2.0.5 @@ -0,0 +1,17 @@ +BDEPEND=ruby_targets_ruby30? ( test? ( dev-ruby/nokogiri[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/nokogiri[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby32? ( test? ( dev-ruby/nokogiri[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby32? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby32? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby32(-)] ) ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) test? ( ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) ) +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) +DESCRIPTION=A pure Ruby AsciiMath parsing and conversion library +EAPI=8 +HOMEPAGE=https://github.com/asciidoctor/asciimath +INHERIT=ruby-fakegem +IUSE=ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 doc test test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=MIT +RDEPEND=ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 ) +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=1 +SRC_URI=https://rubygems.org/gems/asciimath-2.0.5.gem +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib d1408425c7c4a7669b9b17735404b693 ruby-fakegem 52594c9f6d00a877106c877d3dd1acee ruby-ng 76a677328d71b04b457f26be67717028 ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=35924410a1140b4518780f32bae6faf2 diff --git a/metadata/md5-cache/dev-ruby/bcrypt_pbkdf-1.1.0-r2 b/metadata/md5-cache/dev-ruby/bcrypt_pbkdf-1.1.0-r2 index 27dda26d8724..f69a7acfd046 100644 --- a/metadata/md5-cache/dev-ruby/bcrypt_pbkdf-1.1.0-r2 +++ b/metadata/md5-cache/dev-ruby/bcrypt_pbkdf-1.1.0-r2 @@ -6,7 +6,7 @@ EAPI=8 HOMEPAGE=https://github.com/net-ssh/bcrypt_pbkdf-ruby INHERIT=ruby-fakegem IUSE=ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 doc test test -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +KEYWORDS=amd64 ~arm ~arm64 ppc ppc64 x86 LICENSE=MIT RDEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 ) @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/bcrypt_pbkdf-1.1.0.gem _eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib d1408425c7c4a7669b9b17735404b693 ruby-fakegem 52594c9f6d00a877106c877d3dd1acee ruby-ng 76a677328d71b04b457f26be67717028 ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=14809ab5969ecd2b0e3869e0dc5439a1 +_md5_=6c388110a30f5c8dae146b22dce4c1d5 diff --git a/metadata/md5-cache/dev-ruby/blankslate-3.1.3-r2 b/metadata/md5-cache/dev-ruby/blankslate-3.1.3-r2 index 6be39242c0cc..ab762db0eb32 100644 --- a/metadata/md5-cache/dev-ruby/blankslate-3.1.3-r2 +++ b/metadata/md5-cache/dev-ruby/blankslate-3.1.3-r2 @@ -6,7 +6,7 @@ EAPI=8 HOMEPAGE=https://rubygems.org/gems/blankslate INHERIT=ruby-fakegem IUSE=ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~s390 sparc x86 LICENSE=MIT RDEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 ) @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/blankslate-3.1.3.gem _eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib d1408425c7c4a7669b9b17735404b693 ruby-fakegem 52594c9f6d00a877106c877d3dd1acee ruby-ng 76a677328d71b04b457f26be67717028 ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=18894d799e7f78ded22c3b568d63d2c4 +_md5_=282a96a644c5ca11e2cfbabf9851ab38 diff --git a/metadata/md5-cache/dev-ruby/introspection-0.0.4-r2 b/metadata/md5-cache/dev-ruby/introspection-0.0.4-r2 index 458badb3b57a..c34cc9e0a841 100644 --- a/metadata/md5-cache/dev-ruby/introspection-0.0.4-r2 +++ b/metadata/md5-cache/dev-ruby/introspection-0.0.4-r2 @@ -6,7 +6,7 @@ EAPI=8 HOMEPAGE=https://jamesmead.org/ INHERIT=ruby-fakegem IUSE=test ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~s390 sparc x86 LICENSE=MIT RDEPEND=ruby_targets_ruby27? ( >=dev-ruby/metaclass-0.0.1[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/metaclass-0.0.1[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( >=dev-ruby/metaclass-0.0.1[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( >=dev-ruby/metaclass-0.0.1[ruby_targets_ruby32(-)] ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 ) @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/introspection-0.0.4.gem _eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib d1408425c7c4a7669b9b17735404b693 ruby-fakegem 52594c9f6d00a877106c877d3dd1acee ruby-ng 76a677328d71b04b457f26be67717028 ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=e945874d56ec43299e73e1c7225c33aa +_md5_=069cf4e1f7a0f453f9b89f3369428727 diff --git a/metadata/md5-cache/dev-ruby/mechanize-2.9.1 b/metadata/md5-cache/dev-ruby/mechanize-2.9.1 new file mode 100644 index 000000000000..d991349fbfa4 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/mechanize-2.9.1 @@ -0,0 +1,17 @@ +BDEPEND=ruby_targets_ruby30? ( >=dev-ruby/hoe-3.7[ruby_targets_ruby30(-)] test? ( dev-ruby/minitest:5[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( >=dev-ruby/hoe-3.7[ruby_targets_ruby31(-)] test? ( dev-ruby/minitest:5[ruby_targets_ruby31(-)] ) ) test? ( ruby_targets_ruby30? ( >=dev-ruby/addressable-2.8:0[ruby_targets_ruby30(-)] >=dev-ruby/domain_name-0.5.20190701:0[ruby_targets_ruby30(-)] >=dev-ruby/http-cookie-1.0.3:0[ruby_targets_ruby30(-)] dev-ruby/mime-types:3[ruby_targets_ruby30(-)] >=dev-ruby/net-http-digest_auth-1.4.1:0[ruby_targets_ruby30(-)] dev-ruby/net-http-persistent:4[ruby_targets_ruby30(-)] >=dev-ruby/nokogiri-1.11.2:0[ruby_targets_ruby30(-)] >=dev-ruby/rubyntlm-0.6.3:0[ruby_targets_ruby30(-)] >=dev-ruby/webrick-1.7:0[ruby_targets_ruby30(-)] >=dev-ruby/webrobots-0.1.2[ruby_targets_ruby30(-)] =dev-ruby/webrobots-0.1*[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( >=dev-ruby/addressable-2.8:0[ruby_targets_ruby31(-)] >=dev-ruby/domain_name-0.5.20190701:0[ruby_targets_ruby31(-)] >=dev-ruby/http-cookie-1.0.3:0[ruby_targets_ruby31(-)] dev-ruby/mime-types:3[ruby_targets_ruby31(-)] >=dev-ruby/net-http-digest_auth-1.4.1:0[ruby_targets_ruby31(-)] dev-ruby/net-http-persistent:4[ruby_targets_ruby31(-)] >=dev-ruby/nokogiri-1.11.2:0[ruby_targets_ruby31(-)] >=dev-ruby/rubyntlm-0.6.3:0[ruby_targets_ruby31(-)] >=dev-ruby/webrick-1.7:0[ruby_targets_ruby31(-)] >=dev-ruby/webrobots-0.1.2[ruby_targets_ruby31(-)] =dev-ruby/webrobots-0.1*[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby30? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rake[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rake[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +DESCRIPTION=A Ruby library used for automating interaction with websites +EAPI=8 +HOMEPAGE=https://github.com/sparklemotion/mechanize +INHERIT=ruby-fakegem +IUSE=test ruby_targets_ruby30 ruby_targets_ruby31 doc test test +KEYWORDS=~amd64 ~ppc64 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris +LICENSE=GPL-2 +RDEPEND=ruby_targets_ruby30? ( >=dev-ruby/addressable-2.8:0[ruby_targets_ruby30(-)] >=dev-ruby/domain_name-0.5.20190701:0[ruby_targets_ruby30(-)] >=dev-ruby/http-cookie-1.0.3:0[ruby_targets_ruby30(-)] dev-ruby/mime-types:3[ruby_targets_ruby30(-)] >=dev-ruby/net-http-digest_auth-1.4.1:0[ruby_targets_ruby30(-)] dev-ruby/net-http-persistent:4[ruby_targets_ruby30(-)] >=dev-ruby/nokogiri-1.11.2:0[ruby_targets_ruby30(-)] >=dev-ruby/rubyntlm-0.6.3:0[ruby_targets_ruby30(-)] >=dev-ruby/webrick-1.7:0[ruby_targets_ruby30(-)] >=dev-ruby/webrobots-0.1.2[ruby_targets_ruby30(-)] =dev-ruby/webrobots-0.1*[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( >=dev-ruby/addressable-2.8:0[ruby_targets_ruby31(-)] >=dev-ruby/domain_name-0.5.20190701:0[ruby_targets_ruby31(-)] >=dev-ruby/http-cookie-1.0.3:0[ruby_targets_ruby31(-)] dev-ruby/mime-types:3[ruby_targets_ruby31(-)] >=dev-ruby/net-http-digest_auth-1.4.1:0[ruby_targets_ruby31(-)] dev-ruby/net-http-persistent:4[ruby_targets_ruby31(-)] >=dev-ruby/nokogiri-1.11.2:0[ruby_targets_ruby31(-)] >=dev-ruby/rubyntlm-0.6.3:0[ruby_targets_ruby31(-)] >=dev-ruby/webrick-1.7:0[ruby_targets_ruby31(-)] >=dev-ruby/webrobots-0.1.2[ruby_targets_ruby31(-)] =dev-ruby/webrobots-0.1*[ruby_targets_ruby31(-)] ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby30 ruby_targets_ruby31 ) +RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) +SLOT=0 +SRC_URI=https://rubygems.org/gems/mechanize-2.9.1.gem +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib d1408425c7c4a7669b9b17735404b693 ruby-fakegem 52594c9f6d00a877106c877d3dd1acee ruby-ng 76a677328d71b04b457f26be67717028 ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=4f46995f98b7d6d5f83b0ea30c6510c2 diff --git a/metadata/md5-cache/dev-ruby/net-ssh-gateway-2.0.0-r2 b/metadata/md5-cache/dev-ruby/net-ssh-gateway-2.0.0-r2 index ca5f8fd4ed79..3a0616e7b379 100644 --- a/metadata/md5-cache/dev-ruby/net-ssh-gateway-2.0.0-r2 +++ b/metadata/md5-cache/dev-ruby/net-ssh-gateway-2.0.0-r2 @@ -6,7 +6,7 @@ EAPI=8 HOMEPAGE=https://github.com/net-ssh/net-ssh-gateway INHERIT=ruby-fakegem IUSE=test ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 doc test test -KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 +KEYWORDS=amd64 ppc ppc64 x86 LICENSE=GPL-2 RDEPEND=ruby_targets_ruby27? ( >=dev-ruby/net-ssh-4.0.0:*[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/net-ssh-4.0.0:*[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( >=dev-ruby/net-ssh-4.0.0:*[ruby_targets_ruby31(-)] ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2.0 SRC_URI=https://github.com/net-ssh/net-ssh-gateway/archive/2.0.0.tar.gz -> net-ssh-gateway-2.0.0.tar.gz _eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib d1408425c7c4a7669b9b17735404b693 ruby-fakegem 52594c9f6d00a877106c877d3dd1acee ruby-ng 76a677328d71b04b457f26be67717028 ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=fff770933374a6993b39031d78cb385e +_md5_=31cb6dcfb9079c7bb6f1e65998ee841a diff --git a/metadata/md5-cache/dev-ruby/octokit-6.1.1 b/metadata/md5-cache/dev-ruby/octokit-6.1.1 new file mode 100644 index 000000000000..a9c7dc8a087d --- /dev/null +++ b/metadata/md5-cache/dev-ruby/octokit-6.1.1 @@ -0,0 +1,17 @@ +BDEPEND=test? ( ruby_targets_ruby30? ( dev-ruby/faraday:1[ruby_targets_ruby30(-)] >=dev-ruby/sawyer-0.9:0[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( dev-ruby/faraday:1[ruby_targets_ruby31(-)] >=dev-ruby/sawyer-0.9:0[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/jwt[ruby_targets_ruby30(-)] dev-ruby/mime-types[ruby_targets_ruby30(-)] >=dev-ruby/netrc-0.7.7[ruby_targets_ruby30(-)] >=dev-ruby/rbnacl-7.1.1:6[ruby_targets_ruby30(-)] dev-ruby/vcr[ruby_targets_ruby30(-),json] dev-ruby/webmock:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/jwt[ruby_targets_ruby31(-)] dev-ruby/mime-types[ruby_targets_ruby31(-)] >=dev-ruby/netrc-0.7.7[ruby_targets_ruby31(-)] >=dev-ruby/rbnacl-7.1.1:6[ruby_targets_ruby31(-)] dev-ruby/vcr[ruby_targets_ruby31(-),json] dev-ruby/webmock:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby30? ( doc? ( dev-ruby/yard[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( doc? ( dev-ruby/yard[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby30? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby30(-)] ) ) ruby_targets_ruby31? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby31(-)] ) ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) test? ( ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ) +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +DESCRIPTION=Ruby toolkit for the Github API +EAPI=8 +HOMEPAGE=https://github.com/octokit/octokit.rb +INHERIT=ruby-fakegem +IUSE=test ruby_targets_ruby30 ruby_targets_ruby31 doc test test +KEYWORDS=~amd64 ~arm ~x86 +LICENSE=MIT +RDEPEND=ruby_targets_ruby30? ( dev-ruby/faraday:1[ruby_targets_ruby30(-)] >=dev-ruby/sawyer-0.9:0[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( dev-ruby/faraday:1[ruby_targets_ruby31(-)] >=dev-ruby/sawyer-0.9:0[ruby_targets_ruby31(-)] ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby30 ruby_targets_ruby31 ) +RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) +SLOT=0 +SRC_URI=https://github.com/octokit/octokit.rb/archive/v6.1.1.tar.gz -> octokit-6.1.1.tar.gz +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib d1408425c7c4a7669b9b17735404b693 ruby-fakegem 52594c9f6d00a877106c877d3dd1acee ruby-ng 76a677328d71b04b457f26be67717028 ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=6a7fd24f6131cb18f7d34fed8fed2855 diff --git a/metadata/md5-cache/dev-ruby/pg-1.4.6 b/metadata/md5-cache/dev-ruby/pg-1.4.6 index 940d22397935..64938be72ce1 100644 --- a/metadata/md5-cache/dev-ruby/pg-1.4.6 +++ b/metadata/md5-cache/dev-ruby/pg-1.4.6 @@ -6,7 +6,7 @@ EAPI=8 HOMEPAGE=https://github.com/ged/ruby-pg INHERIT=ruby-fakegem IUSE=ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 doc test test -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=amd64 ~arm ~arm64 ~hppa ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=|| ( BSD-2 Ruby-BSD ) RDEPEND=dev-db/postgresql:* ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 ) @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/ged/ruby-pg/archive/v1.4.6.tar.gz -> pg-1.4.6.tar.gz _eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib d1408425c7c4a7669b9b17735404b693 ruby-fakegem 52594c9f6d00a877106c877d3dd1acee ruby-ng 76a677328d71b04b457f26be67717028 ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=4f57456c4e56dcd0b557d2a56608687f +_md5_=9fa93fe797f408b3e4e6443be17d0282 diff --git a/metadata/md5-cache/dev-ruby/rbs-2.8.4 b/metadata/md5-cache/dev-ruby/rbs-2.8.4 index 2eec2cc47e2b..d4a4da6093a1 100644 --- a/metadata/md5-cache/dev-ruby/rbs-2.8.4 +++ b/metadata/md5-cache/dev-ruby/rbs-2.8.4 @@ -6,7 +6,7 @@ EAPI=8 HOMEPAGE=https://github.com/ruby/rbs INHERIT=ruby-fakegem IUSE=test ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 doc test test -KEYWORDS=~alpha amd64 ~arm arm64 ~hppa ~loong ~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 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=|| ( Ruby-BSD BSD-2 ) RDEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 ) @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/rbs/archive/refs/tags/v2.8.4.tar.gz -> rbs-2.8.4.tar.gz _eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib d1408425c7c4a7669b9b17735404b693 ruby-fakegem 52594c9f6d00a877106c877d3dd1acee ruby-ng 76a677328d71b04b457f26be67717028 ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=ec91b3298ea91dbff81437131e478928 +_md5_=62d2ad1fa65b052cea1cff6a395cb370 diff --git a/metadata/md5-cache/dev-ruby/rdtool-0.6.38-r3 b/metadata/md5-cache/dev-ruby/rdtool-0.6.38-r3 index 3e60d0e1f512..e0d7ff15bee7 100644 --- a/metadata/md5-cache/dev-ruby/rdtool-0.6.38-r3 +++ b/metadata/md5-cache/dev-ruby/rdtool-0.6.38-r3 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rdtool-0.6.38.gem -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 estack 055c42df72f76a4f45ec92b35e83cd56 multilib d1408425c7c4a7669b9b17735404b693 ruby-fakegem 52594c9f6d00a877106c877d3dd1acee ruby-ng 76a677328d71b04b457f26be67717028 ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 estack 055c42df72f76a4f45ec92b35e83cd56 multilib d1408425c7c4a7669b9b17735404b693 ruby-fakegem 52594c9f6d00a877106c877d3dd1acee ruby-ng 76a677328d71b04b457f26be67717028 ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=51e883a7b7fb08cdbf5cb210ca4b6c92 diff --git a/metadata/md5-cache/dev-ruby/stringio-3.0.5 b/metadata/md5-cache/dev-ruby/stringio-3.0.5 index d1ec2a933443..80f14aa2275e 100644 --- a/metadata/md5-cache/dev-ruby/stringio-3.0.5 +++ b/metadata/md5-cache/dev-ruby/stringio-3.0.5 @@ -6,7 +6,7 @@ EAPI=8 HOMEPAGE=https://github.com/ruby/stringio INHERIT=ruby-fakegem IUSE=test ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 doc test test -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ~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 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=BSD-2 RDEPEND=ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 ) @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/stringio/archive/v3.0.5.tar.gz -> stringio-3.0.5.tar.gz _eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib d1408425c7c4a7669b9b17735404b693 ruby-fakegem 52594c9f6d00a877106c877d3dd1acee ruby-ng 76a677328d71b04b457f26be67717028 ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=3dc045ffff1e3c5fc2d773d39f7228b3 +_md5_=c9a4a5aaa70ef3ce12c986c918d8dfdf diff --git a/metadata/md5-cache/dev-ruby/typeprof-0.21.7 b/metadata/md5-cache/dev-ruby/typeprof-0.21.7 index 7d77d775f6bd..a89e9c5c20a1 100644 --- a/metadata/md5-cache/dev-ruby/typeprof-0.21.7 +++ b/metadata/md5-cache/dev-ruby/typeprof-0.21.7 @@ -6,7 +6,7 @@ EAPI=8 HOMEPAGE=https://github.com/ruby/typeprof INHERIT=ruby-fakegem IUSE=test ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 test test -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~loong ~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 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby27? ( >=dev-ruby/rbs-1.8.1[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( >=dev-ruby/rbs-1.8.1[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( >=dev-ruby/rbs-1.8.1[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( >=dev-ruby/rbs-1.8.1[ruby_targets_ruby32(-)] ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby30? ( dev-lang/ruby:3.0 ) ruby_targets_ruby31? ( dev-lang/ruby:3.1 ) ruby_targets_ruby32? ( dev-lang/ruby:3.2 ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ruby_targets_ruby30? ( virtual/rubygems[ruby_targets_ruby30(-)] ) ruby_targets_ruby31? ( virtual/rubygems[ruby_targets_ruby31(-)] ) ruby_targets_ruby32? ( virtual/rubygems[ruby_targets_ruby32(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby27 ruby_targets_ruby30 ruby_targets_ruby31 ruby_targets_ruby32 ) @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/typeprof/archive/v0.21.7.tar.gz -> typeprof-0.21.7.tar.gz _eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 multilib d1408425c7c4a7669b9b17735404b693 ruby-fakegem 52594c9f6d00a877106c877d3dd1acee ruby-ng 76a677328d71b04b457f26be67717028 ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=1f39b5bdd881da9c4584aa3369d09461 +_md5_=47170631feef4dc47d790e684eab5968 diff --git a/metadata/md5-cache/dev-scheme/Manifest.gz b/metadata/md5-cache/dev-scheme/Manifest.gz index ea597dcaa2b4..e1901eef7d02 100644 Binary files a/metadata/md5-cache/dev-scheme/Manifest.gz and b/metadata/md5-cache/dev-scheme/Manifest.gz differ diff --git a/metadata/md5-cache/dev-scheme/bigloo-4.4c_p4-r5 b/metadata/md5-cache/dev-scheme/bigloo-4.4c_p4-r5 index 92ad46133feb..9826bd55e563 100644 --- a/metadata/md5-cache/dev-scheme/bigloo-4.4c_p4-r5 +++ b/metadata/md5-cache/dev-scheme/bigloo-4.4c_p4-r5 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boehm-gc[threads] dev-libs/libpcre2:= dev-libs/libunistring:= d REQUIRED_USE=flac? ( alsa ) mp3? ( alsa ) SLOT=0 SRC_URI=ftp://ftp-sop.inria.fr/indes/fp/Bigloo/bigloo-4.4c-4.tar.gz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=7567a28ec5660e99edab8f106700261e diff --git a/metadata/md5-cache/dev-scheme/gambit-4.8.8-r2 b/metadata/md5-cache/dev-scheme/gambit-4.8.8-r2 index 8dfb93987fe1..50a51672935d 100644 --- a/metadata/md5-cache/dev-scheme/gambit-4.8.8-r2 +++ b/metadata/md5-cache/dev-scheme/gambit-4.8.8-r2 @@ -11,5 +11,5 @@ LICENSE=|| ( Apache-2.0 LGPL-2.1 ) RDEPEND=ssl? ( dev-libs/openssl:0= ) SLOT=0 SRC_URI=http://www-labs.iro.umontreal.ca/~gambit/download/gambit/v4.8/source/gambit-v4_8_8.tgz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=9001ccf4d3834d4d1db61c47bfcc01ec diff --git a/metadata/md5-cache/dev-scheme/gambit-4.9.3-r2 b/metadata/md5-cache/dev-scheme/gambit-4.9.3-r2 index df9c84511057..3f14a349b43d 100644 --- a/metadata/md5-cache/dev-scheme/gambit-4.9.3-r2 +++ b/metadata/md5-cache/dev-scheme/gambit-4.9.3-r2 @@ -11,5 +11,5 @@ LICENSE=|| ( Apache-2.0 LGPL-2.1 ) RDEPEND=ssl? ( dev-libs/openssl:0= ) SLOT=0 SRC_URI=http://www-labs.iro.umontreal.ca/~gambit/download/gambit/v4.9/source/gambit-v4_9_3.tgz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=9001ccf4d3834d4d1db61c47bfcc01ec diff --git a/metadata/md5-cache/dev-scheme/gambit-4.9.4-r1 b/metadata/md5-cache/dev-scheme/gambit-4.9.4-r1 index cc978eb26bdc..afff95f69ebc 100644 --- a/metadata/md5-cache/dev-scheme/gambit-4.9.4-r1 +++ b/metadata/md5-cache/dev-scheme/gambit-4.9.4-r1 @@ -11,5 +11,5 @@ LICENSE=|| ( Apache-2.0 LGPL-2.1 ) RDEPEND=ssl? ( dev-libs/openssl:0= ) SLOT=0 SRC_URI=https://github.com/gambit/gambit/archive/tags/v4.9.4.tar.gz -> gambit-4.9.4.tar.gz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=d0e54544d4d61463b622936f1ff13191 diff --git a/metadata/md5-cache/dev-scheme/guile-1.8.8-r4 b/metadata/md5-cache/dev-scheme/guile-1.8.8-r4 index 4987dbb5153d..e9e41b435c7a 100644 --- a/metadata/md5-cache/dev-scheme/guile-1.8.8-r4 +++ b/metadata/md5-cache/dev-scheme/guile-1.8.8-r4 @@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/gmp-4.1:0= dev-libs/libltdl:0= sys-devel/gettext sys-libs/ncu RESTRICT=!regex? ( test ) SLOT=12/8 SRC_URI=mirror://gnu/guile/guile-1.8.8.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=0d1bba0754b36451add594e654a57eb0 diff --git a/metadata/md5-cache/dev-scheme/scheme48-1.9.2-r2 b/metadata/md5-cache/dev-scheme/scheme48-1.9.2-r2 index d781193b0737..cc3f8520f9bb 100644 --- a/metadata/md5-cache/dev-scheme/scheme48-1.9.2-r2 +++ b/metadata/md5-cache/dev-scheme/scheme48-1.9.2-r2 @@ -10,5 +10,5 @@ LICENSE=BSD RDEPEND=emacs? ( >=app-editors/emacs-23.1:* ) SLOT=0 SRC_URI=https://www.s48.org/1.9.2/scheme48-1.9.2.tgz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=85251a10e2233507cac3c3482896efb8 diff --git a/metadata/md5-cache/dev-scheme/skribilo-0.10.0 b/metadata/md5-cache/dev-scheme/skribilo-0.10.0 index ee4669c13dad..a6a5f21ef916 100644 --- a/metadata/md5-cache/dev-scheme/skribilo-0.10.0 +++ b/metadata/md5-cache/dev-scheme/skribilo-0.10.0 @@ -12,5 +12,5 @@ RDEPEND=app-text/ghostscript-gpl media-gfx/imagemagick >=dev-scheme/guile-2.0.0: RESTRICT=strip test SLOT=0 SRC_URI=mirror://nongnu/skribilo/skribilo-0.10.0.tar.gz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=ee2935bcacffebacb44edc1a123e5312 diff --git a/metadata/md5-cache/dev-scheme/skribilo-0.9.5 b/metadata/md5-cache/dev-scheme/skribilo-0.9.5 index 4c0410f6f089..2f657e8565bb 100644 --- a/metadata/md5-cache/dev-scheme/skribilo-0.9.5 +++ b/metadata/md5-cache/dev-scheme/skribilo-0.9.5 @@ -12,5 +12,5 @@ RDEPEND=app-text/ghostscript-gpl media-gfx/imagemagick >=dev-scheme/guile-2.0.0: RESTRICT=strip test SLOT=0 SRC_URI=mirror://nongnu/skribilo/skribilo-0.9.5.tar.gz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=bd6a6ad07293bdb0dcf2e250bc24b7ae diff --git a/metadata/md5-cache/dev-util/Manifest.gz b/metadata/md5-cache/dev-util/Manifest.gz index 5568ceeadd87..13489c5afef6 100644 Binary files a/metadata/md5-cache/dev-util/Manifest.gz and b/metadata/md5-cache/dev-util/Manifest.gz differ diff --git a/metadata/md5-cache/dev-util/cflow-1.7 b/metadata/md5-cache/dev-util/cflow-1.7 index 6f84b6350e85..8d3bdb86cb43 100644 --- a/metadata/md5-cache/dev-util/cflow-1.7 +++ b/metadata/md5-cache/dev-util/cflow-1.7 @@ -11,5 +11,5 @@ LICENSE=GPL-3 RDEPEND=emacs? ( >=app-editors/emacs-23.1:* ) nls? ( virtual/libintl virtual/libiconv ) SLOT=0 SRC_URI=mirror://gnu/cflow/cflow-1.7.tar.xz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=7b31577c34dbd5a2cd71f4f043ae29fe diff --git a/metadata/md5-cache/dev-util/clair-4.4.4 b/metadata/md5-cache/dev-util/clair-4.4.4 index 302eead7eb79..c813088bba28 100644 --- a/metadata/md5-cache/dev-util/clair-4.4.4 +++ b/metadata/md5-cache/dev-util/clair-4.4.4 @@ -11,5 +11,5 @@ RDEPEND=app-arch/rpm app-arch/xz-utils dev-vcs/git acct-group/clair acct-user/cl RESTRICT=strip SLOT=0 SRC_URI=https://github.com/coreos/clair/archive/v4.4.4.tar.gz -> clair-4.4.4.tar.gz https://dev.gentoo.org/~williamh/dist/clair-4.4.4-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=f7e52d6063a2dbf26edc39a854abd8c4 diff --git a/metadata/md5-cache/dev-util/cmake-3.24.3 b/metadata/md5-cache/dev-util/cmake-3.24.3 index 90433a85b4df..3b092e148126 100644 --- a/metadata/md5-cache/dev-util/cmake-3.24.3 +++ b/metadata/md5-cache/dev-util/cmake-3.24.3 @@ -12,5 +12,5 @@ RDEPEND=>=app-arch/libarchive-3.3.3:= app-crypt/rhash >=dev-libs/expat-2.0.1 >=d RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://cmake.org/files/v3.24/cmake-3.24.3.tar.gz !doc? ( https://dev.gentoo.org/~sam/distfiles/dev-util/cmake/cmake-3.24.3-docs.tar.xz ) verify-sig? ( https://github.com/Kitware/CMake/releases/download/v3.24.3/cmake-3.24.3-SHA-256.txt https://github.com/Kitware/CMake/releases/download/v3.24.3/cmake-3.24.3-SHA-256.txt.asc ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 7fb5980de96325cbab639f5b2187357c elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e verify-sig ed3712fa46ee0fdc2dbbad539e20ff26 virtualx 817571665ee28575da44ee08135089e5 xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 7fb5980de96325cbab639f5b2187357c elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e verify-sig ed3712fa46ee0fdc2dbbad539e20ff26 virtualx 817571665ee28575da44ee08135089e5 xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=09bae11df18ffa13d5e1de498fea931b diff --git a/metadata/md5-cache/dev-util/cmake-3.25.2 b/metadata/md5-cache/dev-util/cmake-3.25.2 index 7984c5c70b78..c39308e7d02f 100644 --- a/metadata/md5-cache/dev-util/cmake-3.25.2 +++ b/metadata/md5-cache/dev-util/cmake-3.25.2 @@ -12,5 +12,5 @@ RDEPEND=>=app-arch/libarchive-3.3.3:= app-crypt/rhash >=dev-libs/expat-2.0.1 >=d RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://cmake.org/files/v3.25/cmake-3.25.2.tar.gz !doc? ( https://dev.gentoo.org/~sam/distfiles/dev-util/cmake/cmake-3.25.2-docs.tar.xz ) verify-sig? ( https://github.com/Kitware/CMake/releases/download/v3.25.2/cmake-3.25.2-SHA-256.txt https://github.com/Kitware/CMake/releases/download/v3.25.2/cmake-3.25.2-SHA-256.txt.asc ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 7fb5980de96325cbab639f5b2187357c elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e verify-sig ed3712fa46ee0fdc2dbbad539e20ff26 virtualx 817571665ee28575da44ee08135089e5 xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 7fb5980de96325cbab639f5b2187357c elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e verify-sig ed3712fa46ee0fdc2dbbad539e20ff26 virtualx 817571665ee28575da44ee08135089e5 xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=555d1476a1e77edb5d309b8b780ec710 diff --git a/metadata/md5-cache/dev-util/cmake-3.25.3 b/metadata/md5-cache/dev-util/cmake-3.25.3 index e9692e03eb02..9d3ca9310ed7 100644 --- a/metadata/md5-cache/dev-util/cmake-3.25.3 +++ b/metadata/md5-cache/dev-util/cmake-3.25.3 @@ -12,5 +12,5 @@ RDEPEND=>=app-arch/libarchive-3.3.3:= app-crypt/rhash >=dev-libs/expat-2.0.1 >=d RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://cmake.org/files/v3.25/cmake-3.25.3.tar.gz !doc? ( https://dev.gentoo.org/~sam/distfiles/dev-util/cmake/cmake-3.25.3-docs.tar.xz ) verify-sig? ( https://github.com/Kitware/CMake/releases/download/v3.25.3/cmake-3.25.3-SHA-256.txt https://github.com/Kitware/CMake/releases/download/v3.25.3/cmake-3.25.3-SHA-256.txt.asc ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 7fb5980de96325cbab639f5b2187357c elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e verify-sig ed3712fa46ee0fdc2dbbad539e20ff26 virtualx 817571665ee28575da44ee08135089e5 xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 7fb5980de96325cbab639f5b2187357c elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e verify-sig ed3712fa46ee0fdc2dbbad539e20ff26 virtualx 817571665ee28575da44ee08135089e5 xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=2fa15636deeeda1c2d76e36d8c839389 diff --git a/metadata/md5-cache/dev-util/cmake-3.26.2 b/metadata/md5-cache/dev-util/cmake-3.26.2 index be2384faf61e..75e74dc1f5c8 100644 --- a/metadata/md5-cache/dev-util/cmake-3.26.2 +++ b/metadata/md5-cache/dev-util/cmake-3.26.2 @@ -12,5 +12,5 @@ RDEPEND=>=app-arch/libarchive-3.3.3:= app-crypt/rhash >=dev-libs/expat-2.0.1 >=d RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://cmake.org/files/v3.26/cmake-3.26.2.tar.gz !doc? ( https://dev.gentoo.org/~sam/distfiles/dev-util/cmake/cmake-3.26.2-docs.tar.xz ) verify-sig? ( https://github.com/Kitware/CMake/releases/download/v3.26.2/cmake-3.26.2-SHA-256.txt https://github.com/Kitware/CMake/releases/download/v3.26.2/cmake-3.26.2-SHA-256.txt.asc ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 7fb5980de96325cbab639f5b2187357c elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e verify-sig ed3712fa46ee0fdc2dbbad539e20ff26 virtualx 817571665ee28575da44ee08135089e5 xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 7fb5980de96325cbab639f5b2187357c elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e verify-sig ed3712fa46ee0fdc2dbbad539e20ff26 virtualx 817571665ee28575da44ee08135089e5 xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=94bc1f059df662317c9a05600e3ec4ec diff --git a/metadata/md5-cache/dev-util/cmake-3.26.3 b/metadata/md5-cache/dev-util/cmake-3.26.3 index fbce9f9f67f1..c471c1f4a0e1 100644 --- a/metadata/md5-cache/dev-util/cmake-3.26.3 +++ b/metadata/md5-cache/dev-util/cmake-3.26.3 @@ -12,5 +12,5 @@ RDEPEND=>=app-arch/libarchive-3.3.3:= app-crypt/rhash >=dev-libs/expat-2.0.1 >=d RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://cmake.org/files/v3.26/cmake-3.26.3.tar.gz !doc? ( https://dev.gentoo.org/~sam/distfiles/dev-util/cmake/cmake-3.26.3-docs.tar.xz ) verify-sig? ( https://github.com/Kitware/CMake/releases/download/v3.26.3/cmake-3.26.3-SHA-256.txt https://github.com/Kitware/CMake/releases/download/v3.26.3/cmake-3.26.3-SHA-256.txt.asc ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 7fb5980de96325cbab639f5b2187357c elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e verify-sig ed3712fa46ee0fdc2dbbad539e20ff26 virtualx 817571665ee28575da44ee08135089e5 xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 7fb5980de96325cbab639f5b2187357c elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e verify-sig ed3712fa46ee0fdc2dbbad539e20ff26 virtualx 817571665ee28575da44ee08135089e5 xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=94bc1f059df662317c9a05600e3ec4ec diff --git a/metadata/md5-cache/dev-util/cmake-9999 b/metadata/md5-cache/dev-util/cmake-9999 index 46094e37d1c6..4605c875f66e 100644 --- a/metadata/md5-cache/dev-util/cmake-9999 +++ b/metadata/md5-cache/dev-util/cmake-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=>=app-arch/libarchive-3.3.3:= app-crypt/rhash >=dev-libs/expat-2.0.1 >=dev-libs/jsoncpp-1.9.2-r2:0= >=dev-libs/libuv-1.10.0:= >=net-misc/curl-7.21.5[ssl] sys-libs/zlib virtual/pkgconfig emacs? ( >=app-editors/emacs-23.1:* ) ncurses? ( sys-libs/ncurses:0= ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 7fb5980de96325cbab639f5b2187357c elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a git-r3 27e13c09a4c7e4c78ac812f74727e676 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e virtualx 817571665ee28575da44ee08135089e5 xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cmake 7fb5980de96325cbab639f5b2187357c elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a git-r3 27e13c09a4c7e4c78ac812f74727e676 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e virtualx 817571665ee28575da44ee08135089e5 xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=94bc1f059df662317c9a05600e3ec4ec diff --git a/metadata/md5-cache/dev-util/coccigrep-1.20 b/metadata/md5-cache/dev-util/coccigrep-1.20 index 78ca660ed808..f0ac248c45df 100644 --- a/metadata/md5-cache/dev-util/coccigrep-1.20 +++ b/metadata/md5-cache/dev-util/coccigrep-1.20 @@ -11,5 +11,5 @@ RDEPEND=dev-util/coccinelle[python,python_single_target_python3_9(-)?,python_sin REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) SLOT=0 SRC_URI=https://github.com/regit/coccigrep/archive/v1.20.tar.gz -> coccigrep-1.20.tar.gz -_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp-common 1d6e8d43be4713f04a441f721d890d48 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp-common dcd21c5d379fc2217e95f529504c5fe0 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=ced9e21de1c26f768494e5d083a88fe5 diff --git a/metadata/md5-cache/dev-util/coccinelle-1.1.1-r4 b/metadata/md5-cache/dev-util/coccinelle-1.1.1-r4 index c2f7cb3314fa..7bc02f1853e0 100644 --- a/metadata/md5-cache/dev-util/coccinelle-1.1.1-r4 +++ b/metadata/md5-cache/dev-util/coccinelle-1.1.1-r4 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=strip !test? ( test ) test SLOT=0 SRC_URI=https://gitlab.inria.fr/coccinelle/coccinelle/-/archive/1.1.1/coccinelle-1.1.1.tar.bz2 -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=6ee1b85d9233f8af6571542def184018 diff --git a/metadata/md5-cache/dev-util/cscope-15.9 b/metadata/md5-cache/dev-util/cscope-15.9 index 27cd1eb15ebd..3c843baf2350 100644 --- a/metadata/md5-cache/dev-util/cscope-15.9 +++ b/metadata/md5-cache/dev-util/cscope-15.9 @@ -11,5 +11,5 @@ LICENSE=BSD GPL-2+ RDEPEND=>=sys-libs/ncurses-5.2:0= emacs? ( >=app-editors/emacs-23.1:* ) SLOT=0 SRC_URI=mirror://sourceforge/cscope/cscope-15.9.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=55b1745ec57173c4ebe87571e752dfb2 diff --git a/metadata/md5-cache/dev-util/cscope-15.9-r1 b/metadata/md5-cache/dev-util/cscope-15.9-r1 index cffc4f2445ed..e436f3faa6eb 100644 --- a/metadata/md5-cache/dev-util/cscope-15.9-r1 +++ b/metadata/md5-cache/dev-util/cscope-15.9-r1 @@ -11,5 +11,5 @@ LICENSE=BSD GPL-2+ RDEPEND=>=sys-libs/ncurses-5.2:0= emacs? ( >=app-editors/emacs-23.1:* ) SLOT=0 SRC_URI=mirror://sourceforge/cscope/cscope-15.9.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=12fa11d2e75fff53c43eb9ecc2f7b3ec diff --git a/metadata/md5-cache/dev-util/cutter-2.2.0 b/metadata/md5-cache/dev-util/cutter-2.2.0-r1 similarity index 94% rename from metadata/md5-cache/dev-util/cutter-2.2.0 rename to metadata/md5-cache/dev-util/cutter-2.2.0-r1 index 092a987cd6cf..719ed0ea4088 100644 --- a/metadata/md5-cache/dev-util/cutter-2.2.0 +++ b/metadata/md5-cache/dev-util/cutter-2.2.0-r1 @@ -8,9 +8,9 @@ INHERIT=cmake toolchain-funcs xdg-utils python-single-r1 IUSE=graphviz python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 KEYWORDS=~amd64 ~x86 LICENSE=CC-BY-SA-3.0 GPL-3 -RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 >=dev-util/rizin-0.5.0:= graphviz? ( media-gfx/graphviz ) +RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 >=dev-util/rizin-0.5.0:= graphviz? ( media-gfx/graphviz ) !net-analyzer/cutter REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) SLOT=0 SRC_URI=https://github.com/rizinorg/cutter/releases/download/v2.2.0/Cutter-v2.2.0-src.tar.gz -> cutter-2.2.0.tar.gz _eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=777f6e1c060106d7090ea4d1b4102d0f +_md5_=44ed61ff41ed1175ea167772727a9566 diff --git a/metadata/md5-cache/dev-util/desktop-file-utils-0.26-r1 b/metadata/md5-cache/dev-util/desktop-file-utils-0.26-r1 index 4c23e4b049d5..63aad10c9e93 100644 --- a/metadata/md5-cache/dev-util/desktop-file-utils-0.26-r1 +++ b/metadata/md5-cache/dev-util/desktop-file-utils-0.26-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-libs/glib-2.12:2 SLOT=0 SRC_URI=https://www.freedesktop.org/software/desktop-file-utils/releases/desktop-file-utils-0.26.tar.xz -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 elisp-common 1d6e8d43be4713f04a441f721d890d48 meson 915ec7c25e08d7886558215e6809ca1e multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 elisp-common dcd21c5d379fc2217e95f529504c5fe0 meson 915ec7c25e08d7886558215e6809ca1e multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=5181987665756aa14dda48b4cdfc34fe diff --git a/metadata/md5-cache/dev-util/desktop-file-utils-0.26-r2 b/metadata/md5-cache/dev-util/desktop-file-utils-0.26-r2 index 83e78dc993a8..083536115e2b 100644 --- a/metadata/md5-cache/dev-util/desktop-file-utils-0.26-r2 +++ b/metadata/md5-cache/dev-util/desktop-file-utils-0.26-r2 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-libs/glib-2.12:2 SLOT=0 SRC_URI=https://www.freedesktop.org/software/desktop-file-utils/releases/desktop-file-utils-0.26.tar.xz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 meson 915ec7c25e08d7886558215e6809ca1e multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 meson 915ec7c25e08d7886558215e6809ca1e multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=5a3d96b873221ad9051697caa12f84d7 diff --git a/metadata/md5-cache/dev-util/drone-2.11.1 b/metadata/md5-cache/dev-util/drone-2.11.1 index e51511586ce2..676b858b1edc 100644 --- a/metadata/md5-cache/dev-util/drone-2.11.1 +++ b/metadata/md5-cache/dev-util/drone-2.11.1 @@ -11,5 +11,5 @@ RDEPEND=acct-group/drone acct-user/drone RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/drone/drone/archive/v2.11.1.tar.gz -> drone-2.11.1.tar.gz https://dev.gentoo.org/~williamh/dist/drone-2.11.1-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=96c881a05a4b9e20fb554c64a7882fb1 diff --git a/metadata/md5-cache/dev-util/drone-2.13.0 b/metadata/md5-cache/dev-util/drone-2.13.0 index ad3e884b798c..a523443a6145 100644 --- a/metadata/md5-cache/dev-util/drone-2.13.0 +++ b/metadata/md5-cache/dev-util/drone-2.13.0 @@ -11,5 +11,5 @@ RDEPEND=acct-group/drone acct-user/drone RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/drone/drone/archive/v2.13.0.tar.gz -> drone-2.13.0.tar.gz https://dev.gentoo.org/~williamh/dist/drone-2.13.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=96c881a05a4b9e20fb554c64a7882fb1 diff --git a/metadata/md5-cache/dev-util/drone-cli-1.5.0 b/metadata/md5-cache/dev-util/drone-cli-1.5.0 index 0bd7f71bc2b6..712e10f7ed08 100644 --- a/metadata/md5-cache/dev-util/drone-cli-1.5.0 +++ b/metadata/md5-cache/dev-util/drone-cli-1.5.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/drone/drone-cli/archive/v1.5.0.tar.gz -> drone-cli-1.5.0.tar.gz https://dev.gentoo.org/~williamh/dist/drone-cli-1.5.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=281a50ad4e92807a77bc99f1796dd09a diff --git a/metadata/md5-cache/dev-util/fq-0.2.0-r1 b/metadata/md5-cache/dev-util/fq-0.2.0-r1 index 2a4923ebfe3c..91ebbf876bb1 100644 --- a/metadata/md5-cache/dev-util/fq-0.2.0-r1 +++ b/metadata/md5-cache/dev-util/fq-0.2.0-r1 @@ -10,5 +10,5 @@ LICENSE=MIT BSD-2 RESTRICT=!test? ( test ) strip SLOT=0 SRC_URI=https://github.com/wader/fq/archive/v0.2.0.tar.gz -> fq-0.2.0.tar.gz https://dev.gentoo.org/~sam/distfiles/dev-util/fq/fq-0.2.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=33bedb677a248f4a89fe0d57d2d9362a diff --git a/metadata/md5-cache/dev-util/fq-0.3.0 b/metadata/md5-cache/dev-util/fq-0.3.0 index a95a73b0efa7..6767242fc9e1 100644 --- a/metadata/md5-cache/dev-util/fq-0.3.0 +++ b/metadata/md5-cache/dev-util/fq-0.3.0 @@ -10,5 +10,5 @@ LICENSE=MIT BSD-2 RESTRICT=!test? ( test ) strip SLOT=0 SRC_URI=https://github.com/wader/fq/archive/v0.3.0.tar.gz -> fq-0.3.0.tar.gz https://dev.gentoo.org/~sam/distfiles/dev-util/fq/fq-0.3.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=4040ce086dd80603cd1f88c8681b26e6 diff --git a/metadata/md5-cache/dev-util/fq-0.4.0 b/metadata/md5-cache/dev-util/fq-0.4.0 index 53e15c63578d..5cb5b1dd64c0 100644 --- a/metadata/md5-cache/dev-util/fq-0.4.0 +++ b/metadata/md5-cache/dev-util/fq-0.4.0 @@ -10,5 +10,5 @@ LICENSE=MIT BSD-2 RESTRICT=!test? ( test ) strip SLOT=0 SRC_URI=https://github.com/wader/fq/archive/v0.4.0.tar.gz -> fq-0.4.0.tar.gz https://dev.gentoo.org/~sam/distfiles/dev-util/fq/fq-0.4.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=c6020108d890b7dd8dd694cbce1e9ade diff --git a/metadata/md5-cache/dev-util/fq-0.5.0 b/metadata/md5-cache/dev-util/fq-0.5.0 index 562c5b97cb9b..8292d8fb6720 100644 --- a/metadata/md5-cache/dev-util/fq-0.5.0 +++ b/metadata/md5-cache/dev-util/fq-0.5.0 @@ -10,5 +10,5 @@ LICENSE=MIT BSD-2 RESTRICT=!test? ( test ) strip SLOT=0 SRC_URI=https://github.com/wader/fq/archive/v0.5.0.tar.gz -> fq-0.5.0.tar.gz https://dev.gentoo.org/~sam/distfiles/dev-util/fq/fq-0.5.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=c6020108d890b7dd8dd694cbce1e9ade diff --git a/metadata/md5-cache/dev-util/github-cli-2.18.0 b/metadata/md5-cache/dev-util/github-cli-2.18.0 index f00904c87244..68bf29c11020 100644 --- a/metadata/md5-cache/dev-util/github-cli-2.18.0 +++ b/metadata/md5-cache/dev-util/github-cli-2.18.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-vcs/git-1.7.3 RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/cli/cli/archive/v2.18.0.tar.gz -> github-cli-2.18.0.tar.gz https://dev.gentoo.org/~williamh/dist/github-cli-2.18.0-deps.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=2fa0bebaf3465e1bda1cc7856baeeb8b diff --git a/metadata/md5-cache/dev-util/github-cli-2.20.2 b/metadata/md5-cache/dev-util/github-cli-2.20.2 index f44dcd64d4a5..d5a34c0a1b63 100644 --- a/metadata/md5-cache/dev-util/github-cli-2.20.2 +++ b/metadata/md5-cache/dev-util/github-cli-2.20.2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-vcs/git-1.7.3 RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/cli/cli/archive/v2.20.2.tar.gz -> github-cli-2.20.2.tar.gz https://dev.gentoo.org/~williamh/dist/github-cli-2.20.2-deps.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=2fa0bebaf3465e1bda1cc7856baeeb8b diff --git a/metadata/md5-cache/dev-util/github-cli-2.21.2 b/metadata/md5-cache/dev-util/github-cli-2.21.2 index 9da69dc2db77..9258ab0389fa 100644 --- a/metadata/md5-cache/dev-util/github-cli-2.21.2 +++ b/metadata/md5-cache/dev-util/github-cli-2.21.2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-vcs/git-1.7.3 RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/cli/cli/archive/v2.21.2.tar.gz -> github-cli-2.21.2.tar.gz https://dev.gentoo.org/~williamh/dist/github-cli-2.21.2-deps.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=5f28d7109d3f96a3d8481348a894eb7c diff --git a/metadata/md5-cache/dev-util/github-cli-2.27.0 b/metadata/md5-cache/dev-util/github-cli-2.27.0 index 84c82d444934..1f8e58d7c2e8 100644 --- a/metadata/md5-cache/dev-util/github-cli-2.27.0 +++ b/metadata/md5-cache/dev-util/github-cli-2.27.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-vcs/git-1.7.3 RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/cli/cli/archive/v2.27.0.tar.gz -> github-cli-2.27.0.tar.gz https://dev.gentoo.org/~williamh/dist/github-cli-2.27.0-deps.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=5f28d7109d3f96a3d8481348a894eb7c diff --git a/metadata/md5-cache/dev-util/github-cli-9999 b/metadata/md5-cache/dev-util/github-cli-9999 index 44eb3d7fc34b..523ffbbbd47e 100644 --- a/metadata/md5-cache/dev-util/github-cli-9999 +++ b/metadata/md5-cache/dev-util/github-cli-9999 @@ -9,5 +9,5 @@ PROPERTIES=live RDEPEND=>=dev-vcs/git-1.7.3 RESTRICT=test strip SLOT=0 -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a git-r3 27e13c09a4c7e4c78ac812f74727e676 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a git-r3 27e13c09a4c7e4c78ac812f74727e676 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=0e3bdcc56e84e602d58f8e670adcbd53 diff --git a/metadata/md5-cache/dev-util/gitlab-ci-linter-2.2.0 b/metadata/md5-cache/dev-util/gitlab-ci-linter-2.2.0 index 1fd4091c4f34..9e446af81a9b 100644 --- a/metadata/md5-cache/dev-util/gitlab-ci-linter-2.2.0 +++ b/metadata/md5-cache/dev-util/gitlab-ci-linter-2.2.0 @@ -9,5 +9,5 @@ LICENSE=MIT RESTRICT=test SLOT=0 SRC_URI=https://gitlab.com/orobardet/gitlab-ci-linter/-/archive/v2.2.0/gitlab-ci-linter-v2.2.0.tar.gz -> gitlab-ci-linter-2.2.0.tar.gz https://dev.gentoo.org/~williamh/dist/gitlab-ci-linter-2.2.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=90091f3bf7dee7e506a9cbb40d6d4b78 diff --git a/metadata/md5-cache/dev-util/gitlab-cli-1.24.1 b/metadata/md5-cache/dev-util/gitlab-cli-1.24.1 index 84602a2afc99..bc858fe7d850 100644 --- a/metadata/md5-cache/dev-util/gitlab-cli-1.24.1 +++ b/metadata/md5-cache/dev-util/gitlab-cli-1.24.1 @@ -9,5 +9,5 @@ LICENSE=MIT RESTRICT=test strip SLOT=0 SRC_URI=https://gitlab.com/gitlab-org/cli/-/archive/v1.24.1/gitlab-cli-v1.24.1.tar.bz2 -> gitlab-cli-1.24.1.tar.bz2 https://dev.gentoo.org/~williamh/dist/gitlab-cli-1.24.1-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=ab6ea2d60b698df4665c2475f959cb18 diff --git a/metadata/md5-cache/dev-util/gitlab-cli-1.25.3 b/metadata/md5-cache/dev-util/gitlab-cli-1.25.3 index 905cc732cf7d..9468b1e117d4 100644 --- a/metadata/md5-cache/dev-util/gitlab-cli-1.25.3 +++ b/metadata/md5-cache/dev-util/gitlab-cli-1.25.3 @@ -9,5 +9,5 @@ LICENSE=MIT RESTRICT=test strip SLOT=0 SRC_URI=https://gitlab.com/gitlab-org/cli/-/archive/v1.25.3/gitlab-cli-v1.25.3.tar.bz2 -> gitlab-cli-1.25.3.tar.bz2 https://dev.gentoo.org/~williamh/dist/gitlab-cli-1.25.3-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=86650b0f6cb9e2692817610b7a797d00 diff --git a/metadata/md5-cache/dev-util/gitlab-cli-1.26.0 b/metadata/md5-cache/dev-util/gitlab-cli-1.26.0 index 4e3916d96295..65545a38ff74 100644 --- a/metadata/md5-cache/dev-util/gitlab-cli-1.26.0 +++ b/metadata/md5-cache/dev-util/gitlab-cli-1.26.0 @@ -9,5 +9,5 @@ LICENSE=MIT RESTRICT=test strip SLOT=0 SRC_URI=https://gitlab.com/gitlab-org/cli/-/archive/v1.26.0/gitlab-cli-v1.26.0.tar.bz2 -> gitlab-cli-1.26.0.tar.bz2 https://dev.gentoo.org/~williamh/dist/gitlab-cli-1.26.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=52083d19e8b166e8fd896c927fecb6b1 diff --git a/metadata/md5-cache/dev-util/gitlab-cli-1.27.1 b/metadata/md5-cache/dev-util/gitlab-cli-1.27.1 index 131e3142c184..d10a99c863a7 100644 --- a/metadata/md5-cache/dev-util/gitlab-cli-1.27.1 +++ b/metadata/md5-cache/dev-util/gitlab-cli-1.27.1 @@ -9,5 +9,5 @@ LICENSE=MIT RESTRICT=test strip SLOT=0 SRC_URI=https://gitlab.com/gitlab-org/cli/-/archive/v1.27.1/gitlab-cli-v1.27.1.tar.bz2 -> gitlab-cli-1.27.1.tar.bz2 https://dev.gentoo.org/~williamh/dist/gitlab-cli-1.27.1-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=fc301a73a20b31e55f0255b7a98dd3e4 diff --git a/metadata/md5-cache/dev-util/gitlab-runner-15.10.1 b/metadata/md5-cache/dev-util/gitlab-runner-15.10.1 index 4f5b7dab285a..1d745dc5eed9 100644 --- a/metadata/md5-cache/dev-util/gitlab-runner-15.10.1 +++ b/metadata/md5-cache/dev-util/gitlab-runner-15.10.1 @@ -11,5 +11,5 @@ RDEPEND=acct-group/gitlab-runner acct-user/gitlab-runner virtual/tmpfiles RESTRICT=strip SLOT=0 SRC_URI=https://gitlab.com/gitlab-org/gitlab-runner/-/archive/v15.10.1/gitlab-runner-v15.10.1.tar.bz2 -> gitlab-runner-15.10.1.tar.bz2 https://dev.gentoo.org/~williamh/dist/gitlab-runner-15.10.1-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=98234acfca48f6c9f8cea291d5a53e43 diff --git a/metadata/md5-cache/dev-util/gitlab-runner-15.8.3 b/metadata/md5-cache/dev-util/gitlab-runner-15.8.3 index b8b318cc9b8b..98ca0a657d55 100644 --- a/metadata/md5-cache/dev-util/gitlab-runner-15.8.3 +++ b/metadata/md5-cache/dev-util/gitlab-runner-15.8.3 @@ -11,5 +11,5 @@ RDEPEND=acct-group/gitlab-runner acct-user/gitlab-runner virtual/tmpfiles RESTRICT=strip SLOT=0 SRC_URI=https://gitlab.com/gitlab-org/gitlab-runner/-/archive/v15.8.3/gitlab-runner-v15.8.3.tar.bz2 -> gitlab-runner-15.8.3.tar.bz2 https://dev.gentoo.org/~williamh/dist/gitlab-runner-15.8.3-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=f7f223d498aaede5ed57dc10b7ea2b1c diff --git a/metadata/md5-cache/dev-util/gitlab-runner-15.9.1 b/metadata/md5-cache/dev-util/gitlab-runner-15.9.1 index 05b4ad9b7c6a..40a969d59775 100644 --- a/metadata/md5-cache/dev-util/gitlab-runner-15.9.1 +++ b/metadata/md5-cache/dev-util/gitlab-runner-15.9.1 @@ -11,5 +11,5 @@ RDEPEND=acct-group/gitlab-runner acct-user/gitlab-runner virtual/tmpfiles RESTRICT=strip SLOT=0 SRC_URI=https://gitlab.com/gitlab-org/gitlab-runner/-/archive/v15.9.1/gitlab-runner-v15.9.1.tar.bz2 -> gitlab-runner-15.9.1.tar.bz2 https://dev.gentoo.org/~williamh/dist/gitlab-runner-15.9.1-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=065da9b37e32f6eb75a54acbfb7f7629 diff --git a/metadata/md5-cache/dev-util/global-6.6.4 b/metadata/md5-cache/dev-util/global-6.6.4 index 0d36bacb4025..b98d232a2396 100644 --- a/metadata/md5-cache/dev-util/global-6.6.4 +++ b/metadata/md5-cache/dev-util/global-6.6.4 @@ -11,5 +11,5 @@ LICENSE=GPL-3 RDEPEND=sys-libs/ncurses emacs? ( >=app-editors/emacs-23.1:* ) vim? ( || ( app-editors/vim app-editors/gvim ) ) || ( dev-libs/libltdl:0 sys-devel/libtool:2 ) SLOT=0 SRC_URI=mirror://gnu/global/global-6.6.4.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=5bc08b529e5812ed2e927dddab2fa701 diff --git a/metadata/md5-cache/dev-util/glslang-1.3.243 b/metadata/md5-cache/dev-util/glslang-1.3.243 index 864a9af668d7..5a9282aeccf3 100644 --- a/metadata/md5-cache/dev-util/glslang-1.3.243 +++ b/metadata/md5-cache/dev-util/glslang-1.3.243 @@ -5,10 +5,10 @@ EAPI=8 HOMEPAGE=https://www.khronos.org/opengles/sdk/tools/Reference-Compiler/ https://github.com/KhronosGroup/glslang INHERIT=cmake-multilib python-any-r1 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=~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 +KEYWORDS=amd64 arm arm64 ~loong ppc ppc64 ~riscv x86 LICENSE=BSD RESTRICT=test SLOT=0/12 SRC_URI=https://github.com/KhronosGroup/glslang/archive/sdk-1.3.243.0.tar.gz -> glslang-1.3.243.tar.gz _eclasses_=cmake 7fb5980de96325cbab639f5b2187357c cmake-multilib 37d23064f303dcf23453353ab8c77059 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=e8e71740e04342c29e24215271e406f9 +_md5_=b594d8988af21231f67c40cbfd71470a diff --git a/metadata/md5-cache/dev-util/gtk-doc-1.33.2 b/metadata/md5-cache/dev-util/gtk-doc-1.33.2 index 29054d375f3e..21e54aea492c 100644 --- a/metadata/md5-cache/dev-util/gtk-doc-1.33.2 +++ b/metadata/md5-cache/dev-util/gtk-doc-1.33.2 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://gnome/sources/gtk-doc/1.33/gtk-doc-1.33.2.tar.xz -_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 elisp-common 1d6e8d43be4713f04a441f721d890d48 gnome.org 6b39404f1491c60a2d32e3c693a683fe meson 915ec7c25e08d7886558215e6809ca1e multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnome.org 6b39404f1491c60a2d32e3c693a683fe meson 915ec7c25e08d7886558215e6809ca1e multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=901ce9a57ac5addd0de372951ae4023f diff --git a/metadata/md5-cache/dev-util/jfrog-cli-1.35.3 b/metadata/md5-cache/dev-util/jfrog-cli-1.35.3 index cd7a85d25079..cd46254ff4b1 100644 --- a/metadata/md5-cache/dev-util/jfrog-cli-1.35.3 +++ b/metadata/md5-cache/dev-util/jfrog-cli-1.35.3 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD BSD-2 MIT MPL-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/jfrog/jfrog-cli/archive/1.35.3.tar.gz -> jfrog-cli-1.35.3.tar.gz https://dev.gentoo.org/~zmedico/dist/jfrog-cli-1.35.3-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=45cec229afd8d00b9a39e018cd485727 diff --git a/metadata/md5-cache/dev-util/jfrog-cli-2.27.1 b/metadata/md5-cache/dev-util/jfrog-cli-2.27.1 index a380492abeba..468be1e0c9fb 100644 --- a/metadata/md5-cache/dev-util/jfrog-cli-2.27.1 +++ b/metadata/md5-cache/dev-util/jfrog-cli-2.27.1 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD BSD-2 MIT MPL-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/jfrog/jfrog-cli/archive/v2.27.1.tar.gz -> jfrog-cli-2.27.1.tar.gz https://dev.gentoo.org/~zmedico/dist/jfrog-cli-2.27.1-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=0cb917d6634de26ba041223a368c0468 diff --git a/metadata/md5-cache/dev-util/jfrog-cli-2.28.0 b/metadata/md5-cache/dev-util/jfrog-cli-2.28.0 index 20fdd3896bbb..7e281716d142 100644 --- a/metadata/md5-cache/dev-util/jfrog-cli-2.28.0 +++ b/metadata/md5-cache/dev-util/jfrog-cli-2.28.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD BSD-2 MIT MPL-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/jfrog/jfrog-cli/archive/v2.28.0.tar.gz -> jfrog-cli-2.28.0.tar.gz https://dev.gentoo.org/~zmedico/dist/jfrog-cli-2.28.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=0cb917d6634de26ba041223a368c0468 diff --git a/metadata/md5-cache/dev-util/kube-linter-0.3.0 b/metadata/md5-cache/dev-util/kube-linter-0.3.0 index 0341370923e7..d4cd9f5c5c8a 100644 --- a/metadata/md5-cache/dev-util/kube-linter-0.3.0 +++ b/metadata/md5-cache/dev-util/kube-linter-0.3.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/stackrox/kube-linter/archive/0.3.0.tar.gz -> kube-linter-0.3.0.tar.gz https://dev.gentoo.org/~williamh/dist/kube-linter-0.3.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=9cf9710e8bc3b3e782caafd01de69c65 diff --git a/metadata/md5-cache/dev-util/kubeval-0.16.1 b/metadata/md5-cache/dev-util/kubeval-0.16.1 index 897714633b72..209123546c3b 100644 --- a/metadata/md5-cache/dev-util/kubeval-0.16.1 +++ b/metadata/md5-cache/dev-util/kubeval-0.16.1 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD MIT MPL-2.0 RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/instrumenta/kubeval/archive/v0.16.1.tar.gz -> kubeval-0.16.1.tar.gz https://dev.gentoo.org/~williamh/dist/kubeval-0.16.1-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=bb86567ca856b41e2e0a517022f5a2ff diff --git a/metadata/md5-cache/dev-util/local-log4j-vuln-scanner-0.10 b/metadata/md5-cache/dev-util/local-log4j-vuln-scanner-0.10 index d7b05fa73bb8..52287773a8d1 100644 --- a/metadata/md5-cache/dev-util/local-log4j-vuln-scanner-0.10 +++ b/metadata/md5-cache/dev-util/local-log4j-vuln-scanner-0.10 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/hillu/local-log4j-vuln-scanner/archive/v0.10.tar.gz -> local-log4j-vuln-scanner-0.10.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=e2a659d3e836b44ca68ed3e400f01bc4 diff --git a/metadata/md5-cache/dev-util/log4shelldetect-0.0.7 b/metadata/md5-cache/dev-util/log4shelldetect-0.0.7 index bf3f69762ce7..d896fd165462 100644 --- a/metadata/md5-cache/dev-util/log4shelldetect-0.0.7 +++ b/metadata/md5-cache/dev-util/log4shelldetect-0.0.7 @@ -9,5 +9,5 @@ LICENSE=Unlicense RESTRICT=strip SLOT=0 SRC_URI=https://github.com/1lann/log4shelldetect/archive/v0.0.7.tar.gz -> log4shelldetect-0.0.7.tar.gz https://dev.gentoo.org/~williamh/dist/log4shelldetect-0.0.7-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=23d58ee7d64149c36d5d6304bd85d1f9 diff --git a/metadata/md5-cache/dev-util/lxqt-build-tools-0.13.0 b/metadata/md5-cache/dev-util/lxqt-build-tools-0.13.0 new file mode 100644 index 000000000000..99169d3fb056 --- /dev/null +++ b/metadata/md5-cache/dev-util/lxqt-build-tools-0.13.0 @@ -0,0 +1,14 @@ +BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-libs/glib-2.50.0 >=dev-qt/qtcore-5.15:5 +DESCRIPTION=LXQt Build Tools +EAPI=8 +HOMEPAGE=https://lxqt-project.org/ +INHERIT=cmake +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~loong ~ppc64 ~riscv ~x86 +LICENSE=BSD +RDEPEND=>=dev-libs/glib-2.50.0 >=dev-qt/qtcore-5.15:5 +SLOT=0 +SRC_URI=https://github.com/lxqt/lxqt-build-tools/releases/download/0.13.0/lxqt-build-tools-0.13.0.tar.xz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=4cfda2ee39df21c6b75bc37012481dd9 diff --git a/metadata/md5-cache/dev-util/mage-1.11.0 b/metadata/md5-cache/dev-util/mage-1.11.0 index 76fce80c969a..6251bf8c9134 100644 --- a/metadata/md5-cache/dev-util/mage-1.11.0 +++ b/metadata/md5-cache/dev-util/mage-1.11.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/magefile/mage/archive/v1.11.0.tar.gz -> mage-1.11.0.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=9fec69034ff802169b1228dc71aa7a5f diff --git a/metadata/md5-cache/dev-util/mage-1.13.0 b/metadata/md5-cache/dev-util/mage-1.13.0 index ecb8b079b897..52d938728f1c 100644 --- a/metadata/md5-cache/dev-util/mage-1.13.0 +++ b/metadata/md5-cache/dev-util/mage-1.13.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/magefile/mage/archive/v1.13.0.tar.gz -> mage-1.13.0.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=359f4988c30990c424dc55076c168bfd diff --git a/metadata/md5-cache/dev-util/ninja-1.11.1-r2 b/metadata/md5-cache/dev-util/ninja-1.11.1-r2 index decbb7a6ae1d..97000b408418 100644 --- a/metadata/md5-cache/dev-util/ninja-1.11.1-r2 +++ b/metadata/md5-cache/dev-util/ninja-1.11.1-r2 @@ -11,5 +11,5 @@ RDEPEND=emacs? ( >=app-editors/emacs-23.1:* ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/ninja-build/ninja/archive/v1.11.1.tar.gz -> ninja-1.11.1.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff edo c0eb9cbe6b0bd01fcb4918f12598a4d3 elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff edo c0eb9cbe6b0bd01fcb4918f12598a4d3 elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=adc0b8d672f296e068179f5c799246ed diff --git a/metadata/md5-cache/dev-util/ninja-9999 b/metadata/md5-cache/dev-util/ninja-9999 index 5cdbd5e24f7e..af67c75e4e1c 100644 --- a/metadata/md5-cache/dev-util/ninja-9999 +++ b/metadata/md5-cache/dev-util/ninja-9999 @@ -10,5 +10,5 @@ PROPERTIES=live RDEPEND=emacs? ( >=app-editors/emacs-23.1:* ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff edo c0eb9cbe6b0bd01fcb4918f12598a4d3 elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a git-r3 27e13c09a4c7e4c78ac812f74727e676 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff edo c0eb9cbe6b0bd01fcb4918f12598a4d3 elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a git-r3 27e13c09a4c7e4c78ac812f74727e676 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=e246f2bf9af70b37f9b85843a4dcd5df diff --git a/metadata/md5-cache/dev-util/nvidia-cuda-toolkit-12.1.0 b/metadata/md5-cache/dev-util/nvidia-cuda-toolkit-12.1.0-r1 similarity index 96% rename from metadata/md5-cache/dev-util/nvidia-cuda-toolkit-12.1.0 rename to metadata/md5-cache/dev-util/nvidia-cuda-toolkit-12.1.0-r1 index 152f61dbb280..91b99f998e2d 100644 --- a/metadata/md5-cache/dev-util/nvidia-cuda-toolkit-12.1.0 +++ b/metadata/md5-cache/dev-util/nvidia-cuda-toolkit-12.1.0-r1 @@ -12,4 +12,4 @@ RESTRICT=bindist mirror SLOT=0/12.1.0 SRC_URI=https://developer.download.nvidia.com/compute/cuda/12.1.0/local_installers/cuda_12.1.0_530.30.02_linux.run _eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e unpacker aa6a4e924009232d8b78b31e932c30b5 -_md5_=a498445942b259ce2b7b27e0839c2102 +_md5_=db25a2837e43e7cce7b697ae9e336b54 diff --git a/metadata/md5-cache/dev-util/packer-1.7.10 b/metadata/md5-cache/dev-util/packer-1.7.10 index 289e6837e3f4..bffbc229ec56 100644 --- a/metadata/md5-cache/dev-util/packer-1.7.10 +++ b/metadata/md5-cache/dev-util/packer-1.7.10 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD-2 BSD-4 MIT MPL-2.0 unicode RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/hashicorp/packer/archive/v1.7.10.tar.gz -> packer-1.7.10.tar.gz https://gentoofiles.s3.eu-central-1.amazonaws.com/packer-1.7.10-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=6cb42a4dd0396a1857f46c81e6ca48cc diff --git a/metadata/md5-cache/dev-util/packer-1.8.5 b/metadata/md5-cache/dev-util/packer-1.8.5 index cb046536e96d..21e967cf4ab4 100644 --- a/metadata/md5-cache/dev-util/packer-1.8.5 +++ b/metadata/md5-cache/dev-util/packer-1.8.5 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD-2 BSD-4 MIT MPL-2.0 unicode RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/hashicorp/packer/archive/v1.8.5.tar.gz -> packer-1.8.5.tar.gz https://gentoofiles.s3.eu-central-1.amazonaws.com/packer-1.8.5-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=e18820f8f14c9e7bc51fd4b5ddf2d3e8 diff --git a/metadata/md5-cache/dev-util/pkgcheck-0.10.23 b/metadata/md5-cache/dev-util/pkgcheck-0.10.23 index 0a1c0b7ecc1a..e3a248c7f86a 100644 --- a/metadata/md5-cache/dev-util/pkgcheck-0.10.23 +++ b/metadata/md5-cache/dev-util/pkgcheck-0.10.23 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://files.pythonhosted.org/packages/source/p/pkgcheck/pkgcheck-0.10.23.tar.gz -_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp-common 1d6e8d43be4713f04a441f721d890d48 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 3b6a844fbf71f1581992b44c78b549b7 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp-common dcd21c5d379fc2217e95f529504c5fe0 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pypi 3b6a844fbf71f1581992b44c78b549b7 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=7da361e9167c126034b26deb278135dd diff --git a/metadata/md5-cache/dev-util/pkgcheck-9999 b/metadata/md5-cache/dev-util/pkgcheck-9999 index e68a185ef43b..17b9c377e5b6 100644 --- a/metadata/md5-cache/dev-util/pkgcheck-9999 +++ b/metadata/md5-cache/dev-util/pkgcheck-9999 @@ -11,5 +11,5 @@ RDEPEND=~dev-python/snakeoil-9999[python_targets_python3_9(-)?,python_targets_py REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp-common 1d6e8d43be4713f04a441f721d890d48 git-r3 27e13c09a4c7e4c78ac812f74727e676 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp-common dcd21c5d379fc2217e95f529504c5fe0 git-r3 27e13c09a4c7e4c78ac812f74727e676 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=cac62d59ef7c9c295f0ee692851d4a8a diff --git a/metadata/md5-cache/dev-util/poke-2.4-r1 b/metadata/md5-cache/dev-util/poke-2.4-r1 index de541359460d..d8d7850040ee 100644 --- a/metadata/md5-cache/dev-util/poke-2.4-r1 +++ b/metadata/md5-cache/dev-util/poke-2.4-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boehm-gc:= dev-libs/libatomic_ops sys-devel/gettext sys-libs/re RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://gnu/poke/poke-2.4.tar.gz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=ab796cfd11a4590d1488b10d6106e2ec diff --git a/metadata/md5-cache/dev-util/poke-2.90.1 b/metadata/md5-cache/dev-util/poke-2.90.1 index 0965297d9f77..b783a808fe11 100644 --- a/metadata/md5-cache/dev-util/poke-2.90.1 +++ b/metadata/md5-cache/dev-util/poke-2.90.1 @@ -11,5 +11,5 @@ RDEPEND=dev-libs/boehm-gc:= dev-libs/libatomic_ops sys-devel/gettext sys-libs/re RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://alpha.gnu.org/gnu/poke/poke-2.90.1.tar.gz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=18c21bd2a0ee5a85c355042291844657 diff --git a/metadata/md5-cache/dev-util/poke-3.0 b/metadata/md5-cache/dev-util/poke-3.0 index 4deecce0374f..d7be96b22bb8 100644 --- a/metadata/md5-cache/dev-util/poke-3.0 +++ b/metadata/md5-cache/dev-util/poke-3.0 @@ -12,5 +12,5 @@ RDEPEND=dev-libs/boehm-gc:= dev-libs/libatomic_ops sys-devel/gettext sys-libs/re RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://gnu/poke/poke-3.0.tar.gz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=e069dec734fed50b16a257d2a17047ec diff --git a/metadata/md5-cache/dev-util/poke-3.1 b/metadata/md5-cache/dev-util/poke-3.1 new file mode 100644 index 000000000000..4619e5990f9f --- /dev/null +++ b/metadata/md5-cache/dev-util/poke-3.1 @@ -0,0 +1,16 @@ +BDEPEND=virtual/pkgconfig pvm-profiling? ( sys-devel/gcc ) emacs? ( >=app-editors/emacs-23.1:* ) test? ( dev-util/dejagnu nbd? ( sys-block/nbdkit ) ) +DEFINED_PHASES=compile configure install postinst postrm prepare pretend setup +DEPEND=dev-libs/boehm-gc:= dev-libs/libatomic_ops sys-devel/gettext sys-libs/readline:= emacs? ( >=app-editors/emacs-23.1:* ) nbd? ( sys-libs/libnbd ) test? ( nbd? ( sys-libs/libnbd[uri-support] ) ) +DESCRIPTION=Extensible editor for structured binary data +EAPI=8 +HOMEPAGE=https://www.jemarch.net/poke +INHERIT=elisp-common flag-o-matic toolchain-funcs +IUSE=emacs pvm-profiling nbd nls test +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3+ +RDEPEND=dev-libs/boehm-gc:= dev-libs/libatomic_ops sys-devel/gettext sys-libs/readline:= emacs? ( >=app-editors/emacs-23.1:* ) nbd? ( sys-libs/libnbd ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://gnu/poke/poke-3.1.tar.gz +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=e069dec734fed50b16a257d2a17047ec diff --git a/metadata/md5-cache/dev-util/poke-9999 b/metadata/md5-cache/dev-util/poke-9999 index 5e831a82a0a5..433a29dffd12 100644 --- a/metadata/md5-cache/dev-util/poke-9999 +++ b/metadata/md5-cache/dev-util/poke-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=dev-libs/boehm-gc:= dev-libs/libatomic_ops sys-devel/gettext sys-libs/readline:= emacs? ( >=app-editors/emacs-23.1:* ) nbd? ( sys-libs/libnbd ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a git-r3 27e13c09a4c7e4c78ac812f74727e676 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a git-r3 27e13c09a4c7e4c78ac812f74727e676 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=e069dec734fed50b16a257d2a17047ec diff --git a/metadata/md5-cache/dev-util/promu-0.13.0 b/metadata/md5-cache/dev-util/promu-0.13.0 index 8f04e42ad9ed..cf7619709cf7 100644 --- a/metadata/md5-cache/dev-util/promu-0.13.0 +++ b/metadata/md5-cache/dev-util/promu-0.13.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD BSD-2 MIT RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/prometheus/promu/archive/v0.13.0.tar.gz -> promu-0.13.0.tar.gz https://dev.gentoo.org/~williamh/dist/promu-0.13.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=44037e971f1ff08e28ee2e26c5f74239 diff --git a/metadata/md5-cache/dev-util/promu-0.14.0 b/metadata/md5-cache/dev-util/promu-0.14.0 index 8504d27bef52..578cdab4dbf7 100644 --- a/metadata/md5-cache/dev-util/promu-0.14.0 +++ b/metadata/md5-cache/dev-util/promu-0.14.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD BSD-2 MIT RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/prometheus/promu/archive/v0.14.0.tar.gz -> promu-0.14.0.tar.gz https://dev.gentoo.org/~xen0n/distfiles/dev-util/promu/promu-0.14.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=af0dca80f7dfde0458f1a139ddee82b5 diff --git a/metadata/md5-cache/dev-util/rizin-0.5.2 b/metadata/md5-cache/dev-util/rizin-0.5.2 new file mode 100644 index 000000000000..9614b8ba1ffc --- /dev/null +++ b/metadata/md5-cache/dev-util/rizin-0.5.2 @@ -0,0 +1,16 @@ +BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install prepare setup test +DEPEND=app-arch/lz4:0= app-arch/xz-utils dev-libs/capstone:0= dev-libs/libmspack dev-libs/libzip:0= dev-libs/openssl:0= >=dev-libs/tree-sitter-0.19.0 dev-libs/xxhash sys-apps/file sys-libs/zlib:0= +DESCRIPTION=reverse engineering framework for binary analysis +EAPI=8 +HOMEPAGE=https://rizin.re/ +INHERIT=meson python-any-r1 +IUSE=test +KEYWORDS=~amd64 ~arm64 ~x86 +LICENSE=Apache-2.0 BSD LGPL-3 MIT +RDEPEND=app-arch/lz4:0= app-arch/xz-utils dev-libs/capstone:0= dev-libs/libmspack dev-libs/libzip:0= dev-libs/openssl:0= >=dev-libs/tree-sitter-0.19.0 dev-libs/xxhash sys-apps/file sys-libs/zlib:0= +RESTRICT=test? ( fetch ) !test? ( test ) +SLOT=0/0.5.2 +SRC_URI=mirror+https://github.com/rizinorg/rizin/releases/download/v0.5.2/rizin-src-v0.5.2.tar.xz test? ( https://github.com/rizinorg/rizin-testbins/archive/d66f95359fe830514267f446975374752201c3f1.tar.gz -> rizin-testbins-d66f95359fe830514267f446975374752201c3f1.tar.gz ) +_eclasses_=meson 915ec7c25e08d7886558215e6809ca1e multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=d4e1fee9840538024b3e4023e040ca2f diff --git a/metadata/md5-cache/dev-util/sh-3.5.1 b/metadata/md5-cache/dev-util/sh-3.5.1 index 662238252432..26f3230f7961 100644 --- a/metadata/md5-cache/dev-util/sh-3.5.1 +++ b/metadata/md5-cache/dev-util/sh-3.5.1 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 BSD RESTRICT=strip SLOT=0 SRC_URI=https://github.com/mvdan/sh/archive/refs/tags/v3.5.1.tar.gz -> sh-3.5.1.tar.gz https://dev.gentoo.org/~sam/distfiles/dev-util/sh/sh-3.5.1-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=de00fe6aa0b0be46fef141e4d76dfdd7 diff --git a/metadata/md5-cache/dev-util/sh-3.6.0 b/metadata/md5-cache/dev-util/sh-3.6.0 index 2daa61c0a89e..7292414f1a17 100644 --- a/metadata/md5-cache/dev-util/sh-3.6.0 +++ b/metadata/md5-cache/dev-util/sh-3.6.0 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 BSD RESTRICT=strip SLOT=0 SRC_URI=https://github.com/mvdan/sh/archive/refs/tags/v3.6.0.tar.gz -> sh-3.6.0.tar.gz https://dev.gentoo.org/~sam/distfiles/dev-util/sh/sh-3.6.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=e058ebbe12189d4cfc26d1beb6bc48b8 diff --git a/metadata/md5-cache/dev-util/sh-9999 b/metadata/md5-cache/dev-util/sh-9999 index 47f6f9cb1177..3bcadc991a82 100644 --- a/metadata/md5-cache/dev-util/sh-9999 +++ b/metadata/md5-cache/dev-util/sh-9999 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD PROPERTIES=live RESTRICT=strip SLOT=0 -_eclasses_=git-r3 27e13c09a4c7e4c78ac812f74727e676 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=git-r3 27e13c09a4c7e4c78ac812f74727e676 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=a7a39076c39fb306739cd4fcb89b5c2e diff --git a/metadata/md5-cache/dev-util/spirv-headers-1.3.243 b/metadata/md5-cache/dev-util/spirv-headers-1.3.243 index 87ce746b45ec..88e376944521 100644 --- a/metadata/md5-cache/dev-util/spirv-headers-1.3.243 +++ b/metadata/md5-cache/dev-util/spirv-headers-1.3.243 @@ -4,9 +4,9 @@ DESCRIPTION=Machine-readable files for the SPIR-V Registry EAPI=8 HOMEPAGE=https://www.khronos.org/registry/spir-v/ INHERIT=cmake -KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 +KEYWORDS=amd64 arm arm64 ~loong ppc ppc64 ~riscv x86 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/KhronosGroup/SPIRV-Headers/archive/sdk-1.3.243.tar.gz -> spirv-headers-1.3.243.tar.gz _eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=0938b40b2712cdfa4843967901ce28d1 +_md5_=1b5bc11ef2805a0b31657d47f7ab7706 diff --git a/metadata/md5-cache/dev-util/spirv-tools-1.3.243 b/metadata/md5-cache/dev-util/spirv-tools-1.3.243 index 0ac6f720344f..3d0ca51f66fe 100644 --- a/metadata/md5-cache/dev-util/spirv-tools-1.3.243 +++ b/metadata/md5-cache/dev-util/spirv-tools-1.3.243 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://github.com/KhronosGroup/SPIRV-Tools INHERIT=cmake-multilib python-any-r1 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=~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 +KEYWORDS=amd64 arm arm64 ~loong ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 RESTRICT=test SLOT=0 SRC_URI=https://github.com/KhronosGroup/SPIRV-Tools/archive/sdk-1.3.243.0.tar.gz -> spirv-tools-1.3.243.tar.gz _eclasses_=cmake 7fb5980de96325cbab639f5b2187357c cmake-multilib 37d23064f303dcf23453353ab8c77059 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=b3d77bcfa2e4590015f1ceaad58ac2a3 +_md5_=44adc29792fd8be825662e790027dde8 diff --git a/metadata/md5-cache/dev-util/src-cli-4.4.0 b/metadata/md5-cache/dev-util/src-cli-4.4.0 index 184d307d4fee..c4c2862de60d 100644 --- a/metadata/md5-cache/dev-util/src-cli-4.4.0 +++ b/metadata/md5-cache/dev-util/src-cli-4.4.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/sourcegraph/src-cli/archive/4.4.0.tar.gz -> src-cli-4.4.0.tar.gz https://dev.gentoo.org/~williamh/dist/src-cli-4.4.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=daecd82d3f6dc42e375ac1835958a307 diff --git a/metadata/md5-cache/dev-util/src-cli-4.5.0 b/metadata/md5-cache/dev-util/src-cli-4.5.0 index 0bbd229f92ad..cec3b684f13f 100644 --- a/metadata/md5-cache/dev-util/src-cli-4.5.0 +++ b/metadata/md5-cache/dev-util/src-cli-4.5.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/sourcegraph/src-cli/archive/4.5.0.tar.gz -> src-cli-4.5.0.tar.gz https://dev.gentoo.org/~williamh/dist/src-cli-4.5.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=daecd82d3f6dc42e375ac1835958a307 diff --git a/metadata/md5-cache/dev-util/src-cli-5.0.2-r1 b/metadata/md5-cache/dev-util/src-cli-5.0.2-r1 index faee71879ce7..3ff87f8ec06f 100644 --- a/metadata/md5-cache/dev-util/src-cli-5.0.2-r1 +++ b/metadata/md5-cache/dev-util/src-cli-5.0.2-r1 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/sourcegraph/src-cli/archive/5.0.2.tar.gz -> src-cli-5.0.2.tar.gz https://dev.gentoo.org/~williamh/dist/src-cli-5.0.2-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=c85b6768fc3f435de604afa02034c3c8 diff --git a/metadata/md5-cache/dev-util/stripe-mock-0.159.0 b/metadata/md5-cache/dev-util/stripe-mock-0.159.0 index a1da05e4ad6c..9becdda41954 100644 --- a/metadata/md5-cache/dev-util/stripe-mock-0.159.0 +++ b/metadata/md5-cache/dev-util/stripe-mock-0.159.0 @@ -9,5 +9,5 @@ LICENSE=MIT ISC BSD-2 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/stripe/stripe-mock/archive/v0.159.0.tar.gz -> stripe-mock-0.159.0.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=71a90f2e2a0e45caedfef2d78b73e9f1 diff --git a/metadata/md5-cache/dev-util/stripe-mock-0.160.0 b/metadata/md5-cache/dev-util/stripe-mock-0.160.0 index 5bb4982ff119..0d0d19acf8c2 100644 --- a/metadata/md5-cache/dev-util/stripe-mock-0.160.0 +++ b/metadata/md5-cache/dev-util/stripe-mock-0.160.0 @@ -9,5 +9,5 @@ LICENSE=MIT ISC BSD-2 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/stripe/stripe-mock/archive/v0.160.0.tar.gz -> stripe-mock-0.160.0.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=908dfcc3e5829b18cfa35c52d83291b9 diff --git a/metadata/md5-cache/dev-util/umockdev-0.17.17 b/metadata/md5-cache/dev-util/umockdev-0.17.17 new file mode 100644 index 000000000000..9f7d67969f34 --- /dev/null +++ b/metadata/md5-cache/dev-util/umockdev-0.17.17 @@ -0,0 +1,16 @@ +BDEPEND=|| ( dev-lang/vala:0.56 ) app-arch/xz-utils virtual/pkgconfig >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install prepare setup test +DEPEND=net-libs/libpcap[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/glib-2.32:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/gobject-introspection-1.32:= test? ( || ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) dev-libs/libgudev:=[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=Mock hardware devices for creating unit tests +EAPI=8 +HOMEPAGE=https://github.com/martinpitt/umockdev/ +INHERIT=meson-multilib python-any-r1 vala +IUSE=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 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=LGPL-2.1+ +RDEPEND=net-libs/libpcap[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/libudev:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/glib-2.32:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/gobject-introspection-1.32:= +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/martinpitt/umockdev/releases/download/0.17.17/umockdev-0.17.17.tar.xz +_eclasses_=meson 915ec7c25e08d7886558215e6809ca1e meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e vala 1343f639cc74d2aa8b36fc08677da58d +_md5_=29a7fa79b60ca453335e3b99373c88f5 diff --git a/metadata/md5-cache/dev-util/umockdev-9999 b/metadata/md5-cache/dev-util/umockdev-9999 index 9c1cb792c588..db69b494f79b 100644 --- a/metadata/md5-cache/dev-util/umockdev-9999 +++ b/metadata/md5-cache/dev-util/umockdev-9999 @@ -12,4 +12,4 @@ RDEPEND=net-libs/libpcap[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_ RESTRICT=!test? ( test ) SLOT=0 _eclasses_=git-r3 27e13c09a4c7e4c78ac812f74727e676 meson 915ec7c25e08d7886558215e6809ca1e meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e vala 1343f639cc74d2aa8b36fc08677da58d -_md5_=e23a913ef626e1c5f455572a490f5e3f +_md5_=29a7fa79b60ca453335e3b99373c88f5 diff --git a/metadata/md5-cache/dev-util/vulkan-headers-1.3.243 b/metadata/md5-cache/dev-util/vulkan-headers-1.3.243 index 28678875f214..8086f1cbeccb 100644 --- a/metadata/md5-cache/dev-util/vulkan-headers-1.3.243 +++ b/metadata/md5-cache/dev-util/vulkan-headers-1.3.243 @@ -4,9 +4,9 @@ DESCRIPTION=Vulkan Header files and API registry EAPI=8 HOMEPAGE=https://github.com/KhronosGroup/Vulkan-Headers INHERIT=cmake -KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 +KEYWORDS=amd64 arm arm64 ~loong ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 SLOT=0 SRC_URI=https://github.com/KhronosGroup/Vulkan-Headers/archive/sdk-1.3.243.0.tar.gz -> vulkan-headers-1.3.243.tar.gz _eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=b4d5a7f9c055e06dd1535a2199a71e1f +_md5_=39b41852bd47235d2176a4fc2c6e6ffc diff --git a/metadata/md5-cache/dev-util/vulkan-tools-1.3.243 b/metadata/md5-cache/dev-util/vulkan-tools-1.3.243 index 1ea0f2ddc69c..89e2e6cd70bf 100644 --- a/metadata/md5-cache/dev-util/vulkan-tools-1.3.243 +++ b/metadata/md5-cache/dev-util/vulkan-tools-1.3.243 @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://github.com/KhronosGroup/Vulkan-Tools INHERIT=cmake-multilib python-any-r1 IUSE=cube wayland +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 -KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv +KEYWORDS=amd64 arm arm64 ~loong ppc ppc64 ~riscv LICENSE=Apache-2.0 RDEPEND=~media-libs/vulkan-loader-1.3.243:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,wayland?,X?] wayland? ( dev-libs/wayland:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( 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/libXrandr:=[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=cube? ( ^^ ( X wayland ) ) SLOT=0 SRC_URI=https://github.com/KhronosGroup/Vulkan-Tools/archive/sdk-1.3.243.0.tar.gz -> vulkan-tools-1.3.243.tar.gz _eclasses_=cmake 7fb5980de96325cbab639f5b2187357c cmake-multilib 37d23064f303dcf23453353ab8c77059 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=64c9dd100fbcc2615b179e8863b8525e +_md5_=8ff20d7f5368d61c0a95ae3320951c3d diff --git a/metadata/md5-cache/dev-util/web_page_replay_go-20221028 b/metadata/md5-cache/dev-util/web_page_replay_go-20221028 index 301b6be30946..833ed68cd29e 100644 --- a/metadata/md5-cache/dev-util/web_page_replay_go-20221028 +++ b/metadata/md5-cache/dev-util/web_page_replay_go-20221028 @@ -9,5 +9,5 @@ LICENSE=BSD RESTRICT=strip SLOT=0 SRC_URI=https://github.com/elkablo/web_page_replay_go/archive/refs/tags/v20221028.tar.gz -> web_page_replay_go-20221028.tar.gz https://github.com/elkablo/web_page_replay_go/releases/download/v20221028/web_page_replay_go-20221028-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=c1d2bc0db5dff09a249f542301af426e diff --git a/metadata/md5-cache/dev-util/webhook-2.7.0 b/metadata/md5-cache/dev-util/webhook-2.7.0 index 896f907708ee..58c7e5a085b3 100644 --- a/metadata/md5-cache/dev-util/webhook-2.7.0 +++ b/metadata/md5-cache/dev-util/webhook-2.7.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD-2 BSD MIT RESTRICT=strip SLOT=0 SRC_URI=https://github.com/adnanh/webhook/archive/2.7.0.tar.gz -> webhook-2.7.0.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=98e8ee858aacc04595f12104d51e00e5 diff --git a/metadata/md5-cache/dev-util/woke-0.19.0 b/metadata/md5-cache/dev-util/woke-0.19.0 index 7e6b59b3f9de..0172b73a4e67 100644 --- a/metadata/md5-cache/dev-util/woke-0.19.0 +++ b/metadata/md5-cache/dev-util/woke-0.19.0 @@ -9,5 +9,5 @@ LICENSE=MIT RESTRICT=strip SLOT=0 SRC_URI=https://github.com/get-woke/woke/archive/v0.19.0.tar.gz -> woke-0.19.0.tar.gz https://dev.gentoo.org/~williamh/dist/woke-0.19.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=d75439235b279e884f61735b2ad0c1de diff --git a/metadata/md5-cache/dev-vcs/Manifest.gz b/metadata/md5-cache/dev-vcs/Manifest.gz index 4867245aace4..e95b6220336d 100644 Binary files a/metadata/md5-cache/dev-vcs/Manifest.gz and b/metadata/md5-cache/dev-vcs/Manifest.gz differ diff --git a/metadata/md5-cache/dev-vcs/git-lfs-3.2.0 b/metadata/md5-cache/dev-vcs/git-lfs-3.2.0 index ea6bd163a9ba..23fce189c2d9 100644 --- a/metadata/md5-cache/dev-vcs/git-lfs-3.2.0 +++ b/metadata/md5-cache/dev-vcs/git-lfs-3.2.0 @@ -11,5 +11,5 @@ RDEPEND=dev-vcs/git RESTRICT=!test? ( test ) strip SLOT=0 SRC_URI=https://github.com/git-lfs/git-lfs/archive/v3.2.0.tar.gz -> git-lfs-3.2.0.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=da529c01e1200f894c21d52ccfbe85c3 diff --git a/metadata/md5-cache/dev-vcs/git-lfs-9999 b/metadata/md5-cache/dev-vcs/git-lfs-9999 index 765bd1265f0b..d33f04a0d115 100644 --- a/metadata/md5-cache/dev-vcs/git-lfs-9999 +++ b/metadata/md5-cache/dev-vcs/git-lfs-9999 @@ -10,5 +10,5 @@ PROPERTIES=live RDEPEND=dev-vcs/git RESTRICT=!test? ( test ) strip SLOT=0 -_eclasses_=git-r3 27e13c09a4c7e4c78ac812f74727e676 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=git-r3 27e13c09a4c7e4c78ac812f74727e676 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=63ed92a7e6512a4cf791e820482ecbd6 diff --git a/metadata/md5-cache/dev-vcs/git-sizer-1.5.0 b/metadata/md5-cache/dev-vcs/git-sizer-1.5.0 index eb54787867cf..2f7df393ae92 100644 --- a/metadata/md5-cache/dev-vcs/git-sizer-1.5.0 +++ b/metadata/md5-cache/dev-vcs/git-sizer-1.5.0 @@ -10,5 +10,5 @@ RDEPEND=dev-vcs/git RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/github/git-sizer/archive/refs/tags/v1.5.0.tar.gz -> git-sizer-1.5.0.tar.gz https://dev.gentoo.org/~dlan/distfiles/dev-vcs/git-sizer/git-sizer-1.5.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=2acebe30bb009621b9deed1b0a0c304e diff --git a/metadata/md5-cache/dev-vcs/hub-2.14.2-r1 b/metadata/md5-cache/dev-vcs/hub-2.14.2-r1 index 7d422de22b76..e82c87d03acb 100644 --- a/metadata/md5-cache/dev-vcs/hub-2.14.2-r1 +++ b/metadata/md5-cache/dev-vcs/hub-2.14.2-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-vcs/git-1.7.3 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/github/hub/archive/v2.14.2.tar.gz -> hub-2.14.2.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=ab6e18e1e142e4a5486bf66b27ab672e diff --git a/metadata/md5-cache/dev-vcs/lab-0.25.1 b/metadata/md5-cache/dev-vcs/lab-0.25.1 index 13cf222fb127..4c4dd898d675 100644 --- a/metadata/md5-cache/dev-vcs/lab-0.25.1 +++ b/metadata/md5-cache/dev-vcs/lab-0.25.1 @@ -10,5 +10,5 @@ RDEPEND=dev-vcs/git RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/zaquestion/lab/archive/v0.25.1.tar.gz -> lab-0.25.1.tar.gz https://dev.gentoo.org/~williamh/dist/lab-0.25.1-deps.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=831e40aa721cf9c317f4ac91a23110d5 diff --git a/metadata/md5-cache/dev-vcs/mercurial-6.2.3 b/metadata/md5-cache/dev-vcs/mercurial-6.2.3 index b44b22d8608b..9b8a09672448 100644 --- a/metadata/md5-cache/dev-vcs/mercurial-6.2.3 +++ b/metadata/md5-cache/dev-vcs/mercurial-6.2.3 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.mercurial-scm.org/release/mercurial-6.2.3.tar.gz rust? ( https://crates.io/api/v1/crates/Inflector/0.11.4/download -> Inflector-0.11.4.crate https://crates.io/api/v1/crates/adler/0.2.3/download -> adler-0.2.3.crate https://crates.io/api/v1/crates/ahash/0.4.7/download -> ahash-0.4.7.crate https://crates.io/api/v1/crates/aho-corasick/0.7.18/download -> aho-corasick-0.7.18.crate https://crates.io/api/v1/crates/aliasable/0.1.3/download -> aliasable-0.1.3.crate https://crates.io/api/v1/crates/ansi_term/0.12.1/download -> ansi_term-0.12.1.crate https://crates.io/api/v1/crates/atty/0.2.14/download -> atty-0.2.14.crate https://crates.io/api/v1/crates/autocfg/1.0.1/download -> autocfg-1.0.1.crate https://crates.io/api/v1/crates/bitflags/1.3.2/download -> bitflags-1.3.2.crate https://crates.io/api/v1/crates/bitmaps/2.1.0/download -> bitmaps-2.1.0.crate https://crates.io/api/v1/crates/block-buffer/0.9.0/download -> block-buffer-0.9.0.crate https://crates.io/api/v1/crates/block-buffer/0.10.2/download -> block-buffer-0.10.2.crate https://crates.io/api/v1/crates/byteorder/1.4.3/download -> byteorder-1.4.3.crate https://crates.io/api/v1/crates/bytes-cast/0.2.0/download -> bytes-cast-0.2.0.crate https://crates.io/api/v1/crates/bytes-cast-derive/0.1.0/download -> bytes-cast-derive-0.1.0.crate https://crates.io/api/v1/crates/cc/1.0.66/download -> cc-1.0.66.crate https://crates.io/api/v1/crates/cfg-if/0.1.10/download -> cfg-if-0.1.10.crate https://crates.io/api/v1/crates/cfg-if/1.0.0/download -> cfg-if-1.0.0.crate https://crates.io/api/v1/crates/chrono/0.4.19/download -> chrono-0.4.19.crate https://crates.io/api/v1/crates/clap/2.34.0/download -> clap-2.34.0.crate https://crates.io/api/v1/crates/const_fn/0.4.4/download -> const_fn-0.4.4.crate https://crates.io/api/v1/crates/convert_case/0.4.0/download -> convert_case-0.4.0.crate https://crates.io/api/v1/crates/cpufeatures/0.1.4/download -> cpufeatures-0.1.4.crate https://crates.io/api/v1/crates/cpufeatures/0.2.1/download -> cpufeatures-0.2.1.crate https://crates.io/api/v1/crates/cpython/0.7.0/download -> cpython-0.7.0.crate https://crates.io/api/v1/crates/crc32fast/1.2.1/download -> crc32fast-1.2.1.crate https://crates.io/api/v1/crates/crossbeam-channel/0.5.2/download -> crossbeam-channel-0.5.2.crate https://crates.io/api/v1/crates/crossbeam-deque/0.8.0/download -> crossbeam-deque-0.8.0.crate https://crates.io/api/v1/crates/crossbeam-epoch/0.9.1/download -> crossbeam-epoch-0.9.1.crate https://crates.io/api/v1/crates/crossbeam-utils/0.8.1/download -> crossbeam-utils-0.8.1.crate https://crates.io/api/v1/crates/crypto-common/0.1.2/download -> crypto-common-0.1.2.crate https://crates.io/api/v1/crates/ctor/0.1.16/download -> ctor-0.1.16.crate https://crates.io/api/v1/crates/derive_more/0.99.17/download -> derive_more-0.99.17.crate https://crates.io/api/v1/crates/diff/0.1.12/download -> diff-0.1.12.crate https://crates.io/api/v1/crates/digest/0.9.0/download -> digest-0.9.0.crate https://crates.io/api/v1/crates/digest/0.10.2/download -> digest-0.10.2.crate https://crates.io/api/v1/crates/either/1.6.1/download -> either-1.6.1.crate https://crates.io/api/v1/crates/env_logger/0.9.0/download -> env_logger-0.9.0.crate https://crates.io/api/v1/crates/fastrand/1.7.0/download -> fastrand-1.7.0.crate https://crates.io/api/v1/crates/flate2/1.0.22/download -> flate2-1.0.22.crate https://crates.io/api/v1/crates/format-bytes/0.3.0/download -> format-bytes-0.3.0.crate https://crates.io/api/v1/crates/format-bytes-macros/0.4.0/download -> format-bytes-macros-0.4.0.crate https://crates.io/api/v1/crates/generic-array/0.14.4/download -> generic-array-0.14.4.crate https://crates.io/api/v1/crates/getrandom/0.1.15/download -> getrandom-0.1.15.crate https://crates.io/api/v1/crates/getrandom/0.2.4/download -> getrandom-0.2.4.crate https://crates.io/api/v1/crates/glob/0.3.0/download -> glob-0.3.0.crate https://crates.io/api/v1/crates/hashbrown/0.9.1/download -> hashbrown-0.9.1.crate https://crates.io/api/v1/crates/hermit-abi/0.1.17/download -> hermit-abi-0.1.17.crate https://crates.io/api/v1/crates/hex/0.4.3/download -> hex-0.4.3.crate https://crates.io/api/v1/crates/home/0.5.3/download -> home-0.5.3.crate https://crates.io/api/v1/crates/humantime/2.1.0/download -> humantime-2.1.0.crate https://crates.io/api/v1/crates/im-rc/15.0.0/download -> im-rc-15.0.0.crate https://crates.io/api/v1/crates/instant/0.1.12/download -> instant-0.1.12.crate https://crates.io/api/v1/crates/itertools/0.9.0/download -> itertools-0.9.0.crate https://crates.io/api/v1/crates/itertools/0.10.3/download -> itertools-0.10.3.crate https://crates.io/api/v1/crates/jobserver/0.1.21/download -> jobserver-0.1.21.crate https://crates.io/api/v1/crates/lazy_static/1.4.0/download -> lazy_static-1.4.0.crate https://crates.io/api/v1/crates/libc/0.2.124/download -> libc-0.2.124.crate https://crates.io/api/v1/crates/libm/0.2.1/download -> libm-0.2.1.crate https://crates.io/api/v1/crates/libz-sys/1.1.2/download -> libz-sys-1.1.2.crate https://crates.io/api/v1/crates/log/0.4.14/download -> log-0.4.14.crate https://crates.io/api/v1/crates/memchr/2.4.1/download -> memchr-2.4.1.crate https://crates.io/api/v1/crates/memmap2/0.5.7/download -> memmap2-0.5.7.crate https://crates.io/api/v1/crates/memoffset/0.6.1/download -> memoffset-0.6.1.crate https://crates.io/api/v1/crates/micro-timer/0.4.0/download -> micro-timer-0.4.0.crate https://crates.io/api/v1/crates/micro-timer-macros/0.4.0/download -> micro-timer-macros-0.4.0.crate https://crates.io/api/v1/crates/miniz_oxide/0.4.3/download -> miniz_oxide-0.4.3.crate https://crates.io/api/v1/crates/num-integer/0.1.44/download -> num-integer-0.1.44.crate https://crates.io/api/v1/crates/num-traits/0.2.14/download -> num-traits-0.2.14.crate https://crates.io/api/v1/crates/num_cpus/1.13.0/download -> num_cpus-1.13.0.crate https://crates.io/api/v1/crates/opaque-debug/0.3.0/download -> opaque-debug-0.3.0.crate https://crates.io/api/v1/crates/ouroboros/0.15.0/download -> ouroboros-0.15.0.crate https://crates.io/api/v1/crates/ouroboros_macro/0.15.0/download -> ouroboros_macro-0.15.0.crate https://crates.io/api/v1/crates/output_vt100/0.1.2/download -> output_vt100-0.1.2.crate https://crates.io/api/v1/crates/paste/1.0.5/download -> paste-1.0.5.crate https://crates.io/api/v1/crates/pkg-config/0.3.19/download -> pkg-config-0.3.19.crate https://crates.io/api/v1/crates/ppv-lite86/0.2.10/download -> ppv-lite86-0.2.10.crate https://crates.io/api/v1/crates/pretty_assertions/1.1.0/download -> pretty_assertions-1.1.0.crate https://crates.io/api/v1/crates/proc-macro-error/1.0.4/download -> proc-macro-error-1.0.4.crate https://crates.io/api/v1/crates/proc-macro-error-attr/1.0.4/download -> proc-macro-error-attr-1.0.4.crate https://crates.io/api/v1/crates/proc-macro2/1.0.24/download -> proc-macro2-1.0.24.crate https://crates.io/api/v1/crates/python3-sys/0.7.0/download -> python3-sys-0.7.0.crate https://crates.io/api/v1/crates/quote/1.0.7/download -> quote-1.0.7.crate https://crates.io/api/v1/crates/rand/0.7.3/download -> rand-0.7.3.crate https://crates.io/api/v1/crates/rand/0.8.5/download -> rand-0.8.5.crate https://crates.io/api/v1/crates/rand_chacha/0.2.2/download -> rand_chacha-0.2.2.crate https://crates.io/api/v1/crates/rand_chacha/0.3.1/download -> rand_chacha-0.3.1.crate https://crates.io/api/v1/crates/rand_core/0.5.1/download -> rand_core-0.5.1.crate https://crates.io/api/v1/crates/rand_core/0.6.3/download -> rand_core-0.6.3.crate https://crates.io/api/v1/crates/rand_distr/0.4.3/download -> rand_distr-0.4.3.crate https://crates.io/api/v1/crates/rand_hc/0.2.0/download -> rand_hc-0.2.0.crate https://crates.io/api/v1/crates/rand_pcg/0.3.1/download -> rand_pcg-0.3.1.crate https://crates.io/api/v1/crates/rand_xoshiro/0.4.0/download -> rand_xoshiro-0.4.0.crate https://crates.io/api/v1/crates/rayon/1.5.1/download -> rayon-1.5.1.crate https://crates.io/api/v1/crates/rayon-core/1.9.1/download -> rayon-core-1.9.1.crate https://crates.io/api/v1/crates/redox_syscall/0.2.11/download -> redox_syscall-0.2.11.crate https://crates.io/api/v1/crates/regex/1.5.5/download -> regex-1.5.5.crate https://crates.io/api/v1/crates/regex-syntax/0.6.25/download -> regex-syntax-0.6.25.crate https://crates.io/api/v1/crates/remove_dir_all/0.5.3/download -> remove_dir_all-0.5.3.crate https://crates.io/api/v1/crates/rustc_version/0.4.0/download -> rustc_version-0.4.0.crate https://crates.io/api/v1/crates/same-file/1.0.6/download -> same-file-1.0.6.crate https://crates.io/api/v1/crates/scopeguard/1.1.0/download -> scopeguard-1.1.0.crate https://crates.io/api/v1/crates/semver/1.0.6/download -> semver-1.0.6.crate https://crates.io/api/v1/crates/sha-1/0.9.6/download -> sha-1-0.9.6.crate https://crates.io/api/v1/crates/sha-1/0.10.0/download -> sha-1-0.10.0.crate https://crates.io/api/v1/crates/sized-chunks/0.6.2/download -> sized-chunks-0.6.2.crate https://crates.io/api/v1/crates/stable_deref_trait/1.2.0/download -> stable_deref_trait-1.2.0.crate https://crates.io/api/v1/crates/static_assertions/1.1.0/download -> static_assertions-1.1.0.crate https://crates.io/api/v1/crates/strsim/0.8.0/download -> strsim-0.8.0.crate https://crates.io/api/v1/crates/syn/1.0.54/download -> syn-1.0.54.crate https://crates.io/api/v1/crates/tempfile/3.3.0/download -> tempfile-3.3.0.crate https://crates.io/api/v1/crates/termcolor/1.1.2/download -> termcolor-1.1.2.crate https://crates.io/api/v1/crates/textwrap/0.11.0/download -> textwrap-0.11.0.crate https://crates.io/api/v1/crates/time/0.1.44/download -> time-0.1.44.crate https://crates.io/api/v1/crates/twox-hash/1.6.2/download -> twox-hash-1.6.2.crate https://crates.io/api/v1/crates/typenum/1.12.0/download -> typenum-1.12.0.crate https://crates.io/api/v1/crates/unicode-width/0.1.9/download -> unicode-width-0.1.9.crate https://crates.io/api/v1/crates/unicode-xid/0.2.1/download -> unicode-xid-0.2.1.crate https://crates.io/api/v1/crates/users/0.11.0/download -> users-0.11.0.crate https://crates.io/api/v1/crates/vcpkg/0.2.11/download -> vcpkg-0.2.11.crate https://crates.io/api/v1/crates/vcsgraph/0.2.0/download -> vcsgraph-0.2.0.crate https://crates.io/api/v1/crates/vec_map/0.8.2/download -> vec_map-0.8.2.crate https://crates.io/api/v1/crates/version_check/0.9.2/download -> version_check-0.9.2.crate https://crates.io/api/v1/crates/wasi/0.9.0+wasi-snapshot-preview1/download -> wasi-0.9.0+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/wasi/0.10.0+wasi-snapshot-preview1/download -> wasi-0.10.0+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/which/4.2.5/download -> which-4.2.5.crate https://crates.io/api/v1/crates/winapi/0.3.9/download -> winapi-0.3.9.crate https://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download -> winapi-i686-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/winapi-util/0.1.5/download -> winapi-util-0.1.5.crate https://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download -> winapi-x86_64-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/zstd/0.5.4+zstd.1.4.7/download -> zstd-0.5.4+zstd.1.4.7.crate https://crates.io/api/v1/crates/zstd-safe/2.0.6+zstd.1.4.7/download -> zstd-safe-2.0.6+zstd.1.4.7.crate https://crates.io/api/v1/crates/zstd-sys/1.4.18+zstd.1.4.7/download -> zstd-sys-1.4.18+zstd.1.4.7.crate ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cargo 2e0a4a329a7dc5dfe20dcb05e6c36935 distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cargo 2e0a4a329a7dc5dfe20dcb05e6c36935 distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=b97e462e4cbb66c84beeebb9f9846e01 diff --git a/metadata/md5-cache/dev-vcs/mercurial-6.3.2 b/metadata/md5-cache/dev-vcs/mercurial-6.3.2 index c1c79dfb116c..45707aec20bf 100644 --- a/metadata/md5-cache/dev-vcs/mercurial-6.3.2 +++ b/metadata/md5-cache/dev-vcs/mercurial-6.3.2 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.mercurial-scm.org/release/mercurial-6.3.2.tar.gz rust? ( https://crates.io/api/v1/crates/Inflector/0.11.4/download -> Inflector-0.11.4.crate https://crates.io/api/v1/crates/adler/0.2.3/download -> adler-0.2.3.crate https://crates.io/api/v1/crates/ahash/0.4.7/download -> ahash-0.4.7.crate https://crates.io/api/v1/crates/aho-corasick/0.7.18/download -> aho-corasick-0.7.18.crate https://crates.io/api/v1/crates/aliasable/0.1.3/download -> aliasable-0.1.3.crate https://crates.io/api/v1/crates/ansi_term/0.12.1/download -> ansi_term-0.12.1.crate https://crates.io/api/v1/crates/atty/0.2.14/download -> atty-0.2.14.crate https://crates.io/api/v1/crates/autocfg/1.0.1/download -> autocfg-1.0.1.crate https://crates.io/api/v1/crates/bitflags/1.3.2/download -> bitflags-1.3.2.crate https://crates.io/api/v1/crates/bitmaps/2.1.0/download -> bitmaps-2.1.0.crate https://crates.io/api/v1/crates/block-buffer/0.9.0/download -> block-buffer-0.9.0.crate https://crates.io/api/v1/crates/block-buffer/0.10.2/download -> block-buffer-0.10.2.crate https://crates.io/api/v1/crates/byteorder/1.4.3/download -> byteorder-1.4.3.crate https://crates.io/api/v1/crates/bytes-cast/0.2.0/download -> bytes-cast-0.2.0.crate https://crates.io/api/v1/crates/bytes-cast-derive/0.1.0/download -> bytes-cast-derive-0.1.0.crate https://crates.io/api/v1/crates/cc/1.0.66/download -> cc-1.0.66.crate https://crates.io/api/v1/crates/cfg-if/0.1.10/download -> cfg-if-0.1.10.crate https://crates.io/api/v1/crates/cfg-if/1.0.0/download -> cfg-if-1.0.0.crate https://crates.io/api/v1/crates/chrono/0.4.19/download -> chrono-0.4.19.crate https://crates.io/api/v1/crates/clap/2.34.0/download -> clap-2.34.0.crate https://crates.io/api/v1/crates/const_fn/0.4.4/download -> const_fn-0.4.4.crate https://crates.io/api/v1/crates/convert_case/0.4.0/download -> convert_case-0.4.0.crate https://crates.io/api/v1/crates/cpufeatures/0.1.4/download -> cpufeatures-0.1.4.crate https://crates.io/api/v1/crates/cpufeatures/0.2.1/download -> cpufeatures-0.2.1.crate https://crates.io/api/v1/crates/cpython/0.7.0/download -> cpython-0.7.0.crate https://crates.io/api/v1/crates/crc32fast/1.2.1/download -> crc32fast-1.2.1.crate https://crates.io/api/v1/crates/crossbeam-channel/0.5.2/download -> crossbeam-channel-0.5.2.crate https://crates.io/api/v1/crates/crossbeam-deque/0.8.0/download -> crossbeam-deque-0.8.0.crate https://crates.io/api/v1/crates/crossbeam-epoch/0.9.1/download -> crossbeam-epoch-0.9.1.crate https://crates.io/api/v1/crates/crossbeam-utils/0.8.1/download -> crossbeam-utils-0.8.1.crate https://crates.io/api/v1/crates/crypto-common/0.1.2/download -> crypto-common-0.1.2.crate https://crates.io/api/v1/crates/ctor/0.1.16/download -> ctor-0.1.16.crate https://crates.io/api/v1/crates/derive_more/0.99.17/download -> derive_more-0.99.17.crate https://crates.io/api/v1/crates/diff/0.1.12/download -> diff-0.1.12.crate https://crates.io/api/v1/crates/digest/0.9.0/download -> digest-0.9.0.crate https://crates.io/api/v1/crates/digest/0.10.2/download -> digest-0.10.2.crate https://crates.io/api/v1/crates/either/1.6.1/download -> either-1.6.1.crate https://crates.io/api/v1/crates/env_logger/0.9.0/download -> env_logger-0.9.0.crate https://crates.io/api/v1/crates/fastrand/1.7.0/download -> fastrand-1.7.0.crate https://crates.io/api/v1/crates/flate2/1.0.22/download -> flate2-1.0.22.crate https://crates.io/api/v1/crates/format-bytes/0.3.0/download -> format-bytes-0.3.0.crate https://crates.io/api/v1/crates/format-bytes-macros/0.4.0/download -> format-bytes-macros-0.4.0.crate https://crates.io/api/v1/crates/generic-array/0.14.4/download -> generic-array-0.14.4.crate https://crates.io/api/v1/crates/getrandom/0.1.15/download -> getrandom-0.1.15.crate https://crates.io/api/v1/crates/getrandom/0.2.4/download -> getrandom-0.2.4.crate https://crates.io/api/v1/crates/glob/0.3.0/download -> glob-0.3.0.crate https://crates.io/api/v1/crates/hashbrown/0.9.1/download -> hashbrown-0.9.1.crate https://crates.io/api/v1/crates/hermit-abi/0.1.17/download -> hermit-abi-0.1.17.crate https://crates.io/api/v1/crates/hex/0.4.3/download -> hex-0.4.3.crate https://crates.io/api/v1/crates/home/0.5.3/download -> home-0.5.3.crate https://crates.io/api/v1/crates/humantime/2.1.0/download -> humantime-2.1.0.crate https://crates.io/api/v1/crates/im-rc/15.0.0/download -> im-rc-15.0.0.crate https://crates.io/api/v1/crates/instant/0.1.12/download -> instant-0.1.12.crate https://crates.io/api/v1/crates/itertools/0.9.0/download -> itertools-0.9.0.crate https://crates.io/api/v1/crates/itertools/0.10.3/download -> itertools-0.10.3.crate https://crates.io/api/v1/crates/jobserver/0.1.21/download -> jobserver-0.1.21.crate https://crates.io/api/v1/crates/lazy_static/1.4.0/download -> lazy_static-1.4.0.crate https://crates.io/api/v1/crates/libc/0.2.124/download -> libc-0.2.124.crate https://crates.io/api/v1/crates/libm/0.2.1/download -> libm-0.2.1.crate https://crates.io/api/v1/crates/libz-sys/1.1.2/download -> libz-sys-1.1.2.crate https://crates.io/api/v1/crates/log/0.4.14/download -> log-0.4.14.crate https://crates.io/api/v1/crates/memchr/2.4.1/download -> memchr-2.4.1.crate https://crates.io/api/v1/crates/memmap2/0.5.7/download -> memmap2-0.5.7.crate https://crates.io/api/v1/crates/memoffset/0.6.1/download -> memoffset-0.6.1.crate https://crates.io/api/v1/crates/micro-timer/0.4.0/download -> micro-timer-0.4.0.crate https://crates.io/api/v1/crates/micro-timer-macros/0.4.0/download -> micro-timer-macros-0.4.0.crate https://crates.io/api/v1/crates/miniz_oxide/0.4.3/download -> miniz_oxide-0.4.3.crate https://crates.io/api/v1/crates/num-integer/0.1.44/download -> num-integer-0.1.44.crate https://crates.io/api/v1/crates/num-traits/0.2.14/download -> num-traits-0.2.14.crate https://crates.io/api/v1/crates/num_cpus/1.13.0/download -> num_cpus-1.13.0.crate https://crates.io/api/v1/crates/once_cell/1.14.0/download -> once_cell-1.14.0.crate https://crates.io/api/v1/crates/opaque-debug/0.3.0/download -> opaque-debug-0.3.0.crate https://crates.io/api/v1/crates/ouroboros/0.15.0/download -> ouroboros-0.15.0.crate https://crates.io/api/v1/crates/ouroboros_macro/0.15.0/download -> ouroboros_macro-0.15.0.crate https://crates.io/api/v1/crates/output_vt100/0.1.2/download -> output_vt100-0.1.2.crate https://crates.io/api/v1/crates/paste/1.0.5/download -> paste-1.0.5.crate https://crates.io/api/v1/crates/pkg-config/0.3.19/download -> pkg-config-0.3.19.crate https://crates.io/api/v1/crates/ppv-lite86/0.2.10/download -> ppv-lite86-0.2.10.crate https://crates.io/api/v1/crates/pretty_assertions/1.1.0/download -> pretty_assertions-1.1.0.crate https://crates.io/api/v1/crates/proc-macro-error/1.0.4/download -> proc-macro-error-1.0.4.crate https://crates.io/api/v1/crates/proc-macro-error-attr/1.0.4/download -> proc-macro-error-attr-1.0.4.crate https://crates.io/api/v1/crates/proc-macro2/1.0.24/download -> proc-macro2-1.0.24.crate https://crates.io/api/v1/crates/python3-sys/0.7.0/download -> python3-sys-0.7.0.crate https://crates.io/api/v1/crates/quote/1.0.7/download -> quote-1.0.7.crate https://crates.io/api/v1/crates/rand/0.7.3/download -> rand-0.7.3.crate https://crates.io/api/v1/crates/rand/0.8.5/download -> rand-0.8.5.crate https://crates.io/api/v1/crates/rand_chacha/0.2.2/download -> rand_chacha-0.2.2.crate https://crates.io/api/v1/crates/rand_chacha/0.3.1/download -> rand_chacha-0.3.1.crate https://crates.io/api/v1/crates/rand_core/0.5.1/download -> rand_core-0.5.1.crate https://crates.io/api/v1/crates/rand_core/0.6.3/download -> rand_core-0.6.3.crate https://crates.io/api/v1/crates/rand_distr/0.4.3/download -> rand_distr-0.4.3.crate https://crates.io/api/v1/crates/rand_hc/0.2.0/download -> rand_hc-0.2.0.crate https://crates.io/api/v1/crates/rand_pcg/0.3.1/download -> rand_pcg-0.3.1.crate https://crates.io/api/v1/crates/rand_xoshiro/0.4.0/download -> rand_xoshiro-0.4.0.crate https://crates.io/api/v1/crates/rayon/1.5.1/download -> rayon-1.5.1.crate https://crates.io/api/v1/crates/rayon-core/1.9.1/download -> rayon-core-1.9.1.crate https://crates.io/api/v1/crates/redox_syscall/0.2.11/download -> redox_syscall-0.2.11.crate https://crates.io/api/v1/crates/regex/1.5.5/download -> regex-1.5.5.crate https://crates.io/api/v1/crates/regex-syntax/0.6.25/download -> regex-syntax-0.6.25.crate https://crates.io/api/v1/crates/remove_dir_all/0.5.3/download -> remove_dir_all-0.5.3.crate https://crates.io/api/v1/crates/rustc_version/0.4.0/download -> rustc_version-0.4.0.crate https://crates.io/api/v1/crates/same-file/1.0.6/download -> same-file-1.0.6.crate https://crates.io/api/v1/crates/scopeguard/1.1.0/download -> scopeguard-1.1.0.crate https://crates.io/api/v1/crates/semver/1.0.6/download -> semver-1.0.6.crate https://crates.io/api/v1/crates/sha-1/0.9.6/download -> sha-1-0.9.6.crate https://crates.io/api/v1/crates/sha-1/0.10.0/download -> sha-1-0.10.0.crate https://crates.io/api/v1/crates/sized-chunks/0.6.2/download -> sized-chunks-0.6.2.crate https://crates.io/api/v1/crates/stable_deref_trait/1.2.0/download -> stable_deref_trait-1.2.0.crate https://crates.io/api/v1/crates/static_assertions/1.1.0/download -> static_assertions-1.1.0.crate https://crates.io/api/v1/crates/strsim/0.8.0/download -> strsim-0.8.0.crate https://crates.io/api/v1/crates/syn/1.0.54/download -> syn-1.0.54.crate https://crates.io/api/v1/crates/tempfile/3.3.0/download -> tempfile-3.3.0.crate https://crates.io/api/v1/crates/termcolor/1.1.2/download -> termcolor-1.1.2.crate https://crates.io/api/v1/crates/textwrap/0.11.0/download -> textwrap-0.11.0.crate https://crates.io/api/v1/crates/thread_local/1.1.4/download -> thread_local-1.1.4.crate https://crates.io/api/v1/crates/time/0.1.44/download -> time-0.1.44.crate https://crates.io/api/v1/crates/twox-hash/1.6.2/download -> twox-hash-1.6.2.crate https://crates.io/api/v1/crates/typenum/1.12.0/download -> typenum-1.12.0.crate https://crates.io/api/v1/crates/unicode-width/0.1.9/download -> unicode-width-0.1.9.crate https://crates.io/api/v1/crates/unicode-xid/0.2.1/download -> unicode-xid-0.2.1.crate https://crates.io/api/v1/crates/users/0.11.0/download -> users-0.11.0.crate https://crates.io/api/v1/crates/vcpkg/0.2.11/download -> vcpkg-0.2.11.crate https://crates.io/api/v1/crates/vcsgraph/0.2.0/download -> vcsgraph-0.2.0.crate https://crates.io/api/v1/crates/vec_map/0.8.2/download -> vec_map-0.8.2.crate https://crates.io/api/v1/crates/version_check/0.9.2/download -> version_check-0.9.2.crate https://crates.io/api/v1/crates/wasi/0.9.0+wasi-snapshot-preview1/download -> wasi-0.9.0+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/wasi/0.10.0+wasi-snapshot-preview1/download -> wasi-0.10.0+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/which/4.2.5/download -> which-4.2.5.crate https://crates.io/api/v1/crates/winapi/0.3.9/download -> winapi-0.3.9.crate https://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download -> winapi-i686-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/winapi-util/0.1.5/download -> winapi-util-0.1.5.crate https://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download -> winapi-x86_64-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/zstd/0.5.4+zstd.1.4.7/download -> zstd-0.5.4+zstd.1.4.7.crate https://crates.io/api/v1/crates/zstd-safe/2.0.6+zstd.1.4.7/download -> zstd-safe-2.0.6+zstd.1.4.7.crate https://crates.io/api/v1/crates/zstd-sys/1.4.18+zstd.1.4.7/download -> zstd-sys-1.4.18+zstd.1.4.7.crate ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cargo 2e0a4a329a7dc5dfe20dcb05e6c36935 distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cargo 2e0a4a329a7dc5dfe20dcb05e6c36935 distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=167afb6007ca371686cadc961933f1ae diff --git a/metadata/md5-cache/dev-vcs/mercurial-6.4 b/metadata/md5-cache/dev-vcs/mercurial-6.4 index 89fea0c606e5..6e3809b5d05e 100644 --- a/metadata/md5-cache/dev-vcs/mercurial-6.4 +++ b/metadata/md5-cache/dev-vcs/mercurial-6.4 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.mercurial-scm.org/release/mercurial-6.4.tar.gz rust? ( https://crates.io/api/v1/crates/Inflector/0.11.4/download -> Inflector-0.11.4.crate https://crates.io/api/v1/crates/adler/1.0.2/download -> adler-1.0.2.crate https://crates.io/api/v1/crates/ahash/0.8.2/download -> ahash-0.8.2.crate https://crates.io/api/v1/crates/aho-corasick/0.7.19/download -> aho-corasick-0.7.19.crate https://crates.io/api/v1/crates/aliasable/0.1.3/download -> aliasable-0.1.3.crate https://crates.io/api/v1/crates/android_system_properties/0.1.5/download -> android_system_properties-0.1.5.crate https://crates.io/api/v1/crates/atty/0.2.14/download -> atty-0.2.14.crate https://crates.io/api/v1/crates/autocfg/1.1.0/download -> autocfg-1.1.0.crate https://crates.io/api/v1/crates/bitflags/1.3.2/download -> bitflags-1.3.2.crate https://crates.io/api/v1/crates/bitmaps/2.1.0/download -> bitmaps-2.1.0.crate https://crates.io/api/v1/crates/block-buffer/0.9.0/download -> block-buffer-0.9.0.crate https://crates.io/api/v1/crates/block-buffer/0.10.3/download -> block-buffer-0.10.3.crate https://crates.io/api/v1/crates/bumpalo/3.11.1/download -> bumpalo-3.11.1.crate https://crates.io/api/v1/crates/byteorder/1.4.3/download -> byteorder-1.4.3.crate https://crates.io/api/v1/crates/bytes-cast/0.3.0/download -> bytes-cast-0.3.0.crate https://crates.io/api/v1/crates/bytes-cast-derive/0.2.0/download -> bytes-cast-derive-0.2.0.crate https://crates.io/api/v1/crates/cc/1.0.76/download -> cc-1.0.76.crate https://crates.io/api/v1/crates/cfg-if/1.0.0/download -> cfg-if-1.0.0.crate https://crates.io/api/v1/crates/chrono/0.4.23/download -> chrono-0.4.23.crate https://crates.io/api/v1/crates/clap/4.0.24/download -> clap-4.0.24.crate https://crates.io/api/v1/crates/clap_derive/4.0.21/download -> clap_derive-4.0.21.crate https://crates.io/api/v1/crates/clap_lex/0.3.0/download -> clap_lex-0.3.0.crate https://crates.io/api/v1/crates/codespan-reporting/0.11.1/download -> codespan-reporting-0.11.1.crate https://crates.io/api/v1/crates/convert_case/0.4.0/download -> convert_case-0.4.0.crate https://crates.io/api/v1/crates/core-foundation-sys/0.8.3/download -> core-foundation-sys-0.8.3.crate https://crates.io/api/v1/crates/cpufeatures/0.2.5/download -> cpufeatures-0.2.5.crate https://crates.io/api/v1/crates/cpython/0.7.1/download -> cpython-0.7.1.crate https://crates.io/api/v1/crates/crc32fast/1.3.2/download -> crc32fast-1.3.2.crate https://crates.io/api/v1/crates/crossbeam-channel/0.5.6/download -> crossbeam-channel-0.5.6.crate https://crates.io/api/v1/crates/crossbeam-deque/0.8.2/download -> crossbeam-deque-0.8.2.crate https://crates.io/api/v1/crates/crossbeam-epoch/0.9.11/download -> crossbeam-epoch-0.9.11.crate https://crates.io/api/v1/crates/crossbeam-utils/0.8.12/download -> crossbeam-utils-0.8.12.crate https://crates.io/api/v1/crates/crypto-common/0.1.6/download -> crypto-common-0.1.6.crate https://crates.io/api/v1/crates/ctor/0.1.26/download -> ctor-0.1.26.crate https://crates.io/api/v1/crates/cxx/1.0.81/download -> cxx-1.0.81.crate https://crates.io/api/v1/crates/cxx-build/1.0.81/download -> cxx-build-1.0.81.crate https://crates.io/api/v1/crates/cxxbridge-flags/1.0.81/download -> cxxbridge-flags-1.0.81.crate https://crates.io/api/v1/crates/cxxbridge-macro/1.0.81/download -> cxxbridge-macro-1.0.81.crate https://crates.io/api/v1/crates/derive_more/0.99.17/download -> derive_more-0.99.17.crate https://crates.io/api/v1/crates/diff/0.1.13/download -> diff-0.1.13.crate https://crates.io/api/v1/crates/digest/0.9.0/download -> digest-0.9.0.crate https://crates.io/api/v1/crates/digest/0.10.5/download -> digest-0.10.5.crate https://crates.io/api/v1/crates/either/1.8.0/download -> either-1.8.0.crate https://crates.io/api/v1/crates/env_logger/0.9.3/download -> env_logger-0.9.3.crate https://crates.io/api/v1/crates/fastrand/1.8.0/download -> fastrand-1.8.0.crate https://crates.io/api/v1/crates/flate2/1.0.24/download -> flate2-1.0.24.crate https://crates.io/api/v1/crates/format-bytes/0.3.0/download -> format-bytes-0.3.0.crate https://crates.io/api/v1/crates/format-bytes-macros/0.4.0/download -> format-bytes-macros-0.4.0.crate https://crates.io/api/v1/crates/generic-array/0.14.6/download -> generic-array-0.14.6.crate https://crates.io/api/v1/crates/getrandom/0.1.16/download -> getrandom-0.1.16.crate https://crates.io/api/v1/crates/getrandom/0.2.8/download -> getrandom-0.2.8.crate https://crates.io/api/v1/crates/hashbrown/0.13.1/download -> hashbrown-0.13.1.crate https://crates.io/api/v1/crates/heck/0.4.0/download -> heck-0.4.0.crate https://crates.io/api/v1/crates/hermit-abi/0.1.19/download -> hermit-abi-0.1.19.crate https://crates.io/api/v1/crates/hex/0.4.3/download -> hex-0.4.3.crate https://crates.io/api/v1/crates/home/0.5.4/download -> home-0.5.4.crate https://crates.io/api/v1/crates/humantime/2.1.0/download -> humantime-2.1.0.crate https://crates.io/api/v1/crates/iana-time-zone/0.1.53/download -> iana-time-zone-0.1.53.crate https://crates.io/api/v1/crates/iana-time-zone-haiku/0.1.1/download -> iana-time-zone-haiku-0.1.1.crate https://crates.io/api/v1/crates/im-rc/15.1.0/download -> im-rc-15.1.0.crate https://crates.io/api/v1/crates/instant/0.1.12/download -> instant-0.1.12.crate https://crates.io/api/v1/crates/itertools/0.10.5/download -> itertools-0.10.5.crate https://crates.io/api/v1/crates/jobserver/0.1.25/download -> jobserver-0.1.25.crate https://crates.io/api/v1/crates/js-sys/0.3.60/download -> js-sys-0.3.60.crate https://crates.io/api/v1/crates/lazy_static/1.4.0/download -> lazy_static-1.4.0.crate https://crates.io/api/v1/crates/libc/0.2.137/download -> libc-0.2.137.crate https://crates.io/api/v1/crates/libm/0.2.6/download -> libm-0.2.6.crate https://crates.io/api/v1/crates/libz-sys/1.1.8/download -> libz-sys-1.1.8.crate https://crates.io/api/v1/crates/link-cplusplus/1.0.7/download -> link-cplusplus-1.0.7.crate https://crates.io/api/v1/crates/log/0.4.17/download -> log-0.4.17.crate https://crates.io/api/v1/crates/logging_timer/1.1.0/download -> logging_timer-1.1.0.crate https://crates.io/api/v1/crates/logging_timer_proc_macros/1.1.0/download -> logging_timer_proc_macros-1.1.0.crate https://crates.io/api/v1/crates/memchr/2.5.0/download -> memchr-2.5.0.crate https://crates.io/api/v1/crates/memmap2/0.5.8/download -> memmap2-0.5.8.crate https://crates.io/api/v1/crates/memoffset/0.6.5/download -> memoffset-0.6.5.crate https://crates.io/api/v1/crates/miniz_oxide/0.5.4/download -> miniz_oxide-0.5.4.crate https://crates.io/api/v1/crates/num-integer/0.1.45/download -> num-integer-0.1.45.crate https://crates.io/api/v1/crates/num-traits/0.2.15/download -> num-traits-0.2.15.crate https://crates.io/api/v1/crates/num_cpus/1.14.0/download -> num_cpus-1.14.0.crate https://crates.io/api/v1/crates/once_cell/1.16.0/download -> once_cell-1.16.0.crate https://crates.io/api/v1/crates/opaque-debug/0.3.0/download -> opaque-debug-0.3.0.crate https://crates.io/api/v1/crates/os_str_bytes/6.4.0/download -> os_str_bytes-6.4.0.crate https://crates.io/api/v1/crates/ouroboros/0.15.5/download -> ouroboros-0.15.5.crate https://crates.io/api/v1/crates/ouroboros_macro/0.15.5/download -> ouroboros_macro-0.15.5.crate https://crates.io/api/v1/crates/output_vt100/0.1.3/download -> output_vt100-0.1.3.crate https://crates.io/api/v1/crates/paste/1.0.9/download -> paste-1.0.9.crate https://crates.io/api/v1/crates/pkg-config/0.3.26/download -> pkg-config-0.3.26.crate https://crates.io/api/v1/crates/ppv-lite86/0.2.17/download -> ppv-lite86-0.2.17.crate https://crates.io/api/v1/crates/pretty_assertions/1.3.0/download -> pretty_assertions-1.3.0.crate https://crates.io/api/v1/crates/proc-macro-error/1.0.4/download -> proc-macro-error-1.0.4.crate https://crates.io/api/v1/crates/proc-macro-error-attr/1.0.4/download -> proc-macro-error-attr-1.0.4.crate https://crates.io/api/v1/crates/proc-macro2/1.0.47/download -> proc-macro2-1.0.47.crate https://crates.io/api/v1/crates/python3-sys/0.7.1/download -> python3-sys-0.7.1.crate https://crates.io/api/v1/crates/quote/1.0.21/download -> quote-1.0.21.crate https://crates.io/api/v1/crates/rand/0.7.3/download -> rand-0.7.3.crate https://crates.io/api/v1/crates/rand/0.8.5/download -> rand-0.8.5.crate https://crates.io/api/v1/crates/rand_chacha/0.2.2/download -> rand_chacha-0.2.2.crate https://crates.io/api/v1/crates/rand_chacha/0.3.1/download -> rand_chacha-0.3.1.crate https://crates.io/api/v1/crates/rand_core/0.5.1/download -> rand_core-0.5.1.crate https://crates.io/api/v1/crates/rand_core/0.6.4/download -> rand_core-0.6.4.crate https://crates.io/api/v1/crates/rand_distr/0.4.3/download -> rand_distr-0.4.3.crate https://crates.io/api/v1/crates/rand_hc/0.2.0/download -> rand_hc-0.2.0.crate https://crates.io/api/v1/crates/rand_pcg/0.3.1/download -> rand_pcg-0.3.1.crate https://crates.io/api/v1/crates/rand_xoshiro/0.6.0/download -> rand_xoshiro-0.6.0.crate https://crates.io/api/v1/crates/rayon/1.7.0/download -> rayon-1.7.0.crate https://crates.io/api/v1/crates/rayon-core/1.11.0/download -> rayon-core-1.11.0.crate https://crates.io/api/v1/crates/redox_syscall/0.2.16/download -> redox_syscall-0.2.16.crate https://crates.io/api/v1/crates/regex/1.7.0/download -> regex-1.7.0.crate https://crates.io/api/v1/crates/regex-syntax/0.6.28/download -> regex-syntax-0.6.28.crate https://crates.io/api/v1/crates/remove_dir_all/0.5.3/download -> remove_dir_all-0.5.3.crate https://crates.io/api/v1/crates/rustc_version/0.4.0/download -> rustc_version-0.4.0.crate https://crates.io/api/v1/crates/same-file/1.0.6/download -> same-file-1.0.6.crate https://crates.io/api/v1/crates/scopeguard/1.1.0/download -> scopeguard-1.1.0.crate https://crates.io/api/v1/crates/scratch/1.0.2/download -> scratch-1.0.2.crate https://crates.io/api/v1/crates/semver/1.0.14/download -> semver-1.0.14.crate https://crates.io/api/v1/crates/sha-1/0.9.8/download -> sha-1-0.9.8.crate https://crates.io/api/v1/crates/sha-1/0.10.0/download -> sha-1-0.10.0.crate https://crates.io/api/v1/crates/sized-chunks/0.6.5/download -> sized-chunks-0.6.5.crate https://crates.io/api/v1/crates/stable_deref_trait/1.2.0/download -> stable_deref_trait-1.2.0.crate https://crates.io/api/v1/crates/static_assertions/1.1.0/download -> static_assertions-1.1.0.crate https://crates.io/api/v1/crates/strsim/0.10.0/download -> strsim-0.10.0.crate https://crates.io/api/v1/crates/syn/1.0.103/download -> syn-1.0.103.crate https://crates.io/api/v1/crates/tempfile/3.3.0/download -> tempfile-3.3.0.crate https://crates.io/api/v1/crates/termcolor/1.1.3/download -> termcolor-1.1.3.crate https://crates.io/api/v1/crates/thread_local/1.1.4/download -> thread_local-1.1.4.crate https://crates.io/api/v1/crates/time/0.1.44/download -> time-0.1.44.crate https://crates.io/api/v1/crates/twox-hash/1.6.3/download -> twox-hash-1.6.3.crate https://crates.io/api/v1/crates/typenum/1.15.0/download -> typenum-1.15.0.crate https://crates.io/api/v1/crates/unicode-ident/1.0.5/download -> unicode-ident-1.0.5.crate https://crates.io/api/v1/crates/unicode-width/0.1.10/download -> unicode-width-0.1.10.crate https://crates.io/api/v1/crates/users/0.11.0/download -> users-0.11.0.crate https://crates.io/api/v1/crates/vcpkg/0.2.15/download -> vcpkg-0.2.15.crate https://crates.io/api/v1/crates/vcsgraph/0.2.0/download -> vcsgraph-0.2.0.crate https://crates.io/api/v1/crates/version_check/0.9.4/download -> version_check-0.9.4.crate https://crates.io/api/v1/crates/wasi/0.9.0+wasi-snapshot-preview1/download -> wasi-0.9.0+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/wasi/0.10.0+wasi-snapshot-preview1/download -> wasi-0.10.0+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/wasi/0.11.0+wasi-snapshot-preview1/download -> wasi-0.11.0+wasi-snapshot-preview1.crate https://crates.io/api/v1/crates/wasm-bindgen/0.2.83/download -> wasm-bindgen-0.2.83.crate https://crates.io/api/v1/crates/wasm-bindgen-backend/0.2.83/download -> wasm-bindgen-backend-0.2.83.crate https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.83/download -> wasm-bindgen-macro-0.2.83.crate https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.83/download -> wasm-bindgen-macro-support-0.2.83.crate https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.83/download -> wasm-bindgen-shared-0.2.83.crate https://crates.io/api/v1/crates/which/4.3.0/download -> which-4.3.0.crate https://crates.io/api/v1/crates/winapi/0.3.9/download -> winapi-0.3.9.crate https://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download -> winapi-i686-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/winapi-util/0.1.5/download -> winapi-util-0.1.5.crate https://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download -> winapi-x86_64-pc-windows-gnu-0.4.0.crate https://crates.io/api/v1/crates/yansi/0.5.1/download -> yansi-0.5.1.crate https://crates.io/api/v1/crates/zstd/0.12.3+zstd.1.5.2/download -> zstd-0.12.3+zstd.1.5.2.crate https://crates.io/api/v1/crates/zstd-safe/6.0.4+zstd.1.5.4/download -> zstd-safe-6.0.4+zstd.1.5.4.crate https://crates.io/api/v1/crates/zstd-sys/2.0.7+zstd.1.5.4/download -> zstd-sys-2.0.7+zstd.1.5.4.crate ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cargo 2e0a4a329a7dc5dfe20dcb05e6c36935 distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cargo 2e0a4a329a7dc5dfe20dcb05e6c36935 distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=60d2462d8255fdb51fc933e4c23f3a6d diff --git a/metadata/md5-cache/dev-vcs/mercurial-9999 b/metadata/md5-cache/dev-vcs/mercurial-9999 index 4abe1b166ba4..118cad3d0a21 100644 --- a/metadata/md5-cache/dev-vcs/mercurial-9999 +++ b/metadata/md5-cache/dev-vcs/mercurial-9999 @@ -12,5 +12,5 @@ RDEPEND=app-misc/ca-certificates gpg? ( app-crypt/gnupg ) tk? ( dev-lang/tk ) py REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cargo 2e0a4a329a7dc5dfe20dcb05e6c36935 distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a mercurial 32c6bad6428a38951696c75f3b9a955a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff cargo 2e0a4a329a7dc5dfe20dcb05e6c36935 distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a mercurial 32c6bad6428a38951696c75f3b9a955a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=32bd32701064866b177f8d09d94b06ee diff --git a/metadata/md5-cache/dev-vcs/reposurgeon-4.27 b/metadata/md5-cache/dev-vcs/reposurgeon-4.27 index 8bc2476e9a51..ad7e0d9d4348 100644 --- a/metadata/md5-cache/dev-vcs/reposurgeon-4.27 +++ b/metadata/md5-cache/dev-vcs/reposurgeon-4.27 @@ -10,5 +10,5 @@ LICENSE=BSD-2 RESTRICT=strip SLOT=0 SRC_URI=http://www.catb.org/~esr/reposurgeon/reposurgeon-4.27.tar.xz mirror://goproxy//cloud.google.com/go/@v/v0.26.0.mod -> cloud.google.com%2Fgo%2F@v%2Fv0.26.0.mod mirror://goproxy//github.com/!burnt!sushi/toml/@v/v0.3.1.mod -> github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.mod mirror://goproxy//github.com/!one!of!one/xxhash/@v/v1.2.2.mod -> github.com%2F!one!of!one%2Fxxhash%2F@v%2Fv1.2.2.mod mirror://goproxy//github.com/alecthomas/template/@v/v0.0.0-20160405071501-a0175ee3bccc.mod -> github.com%2Falecthomas%2Ftemplate%2F@v%2Fv0.0.0-20160405071501-a0175ee3bccc.mod mirror://goproxy//github.com/alecthomas/units/@v/v0.0.0-20151022065526-2efee857e7cf.mod -> github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20151022065526-2efee857e7cf.mod mirror://goproxy//github.com/anmitsu/go-shlex/@v/v0.0.0-20161002113705-648efa622239.zip -> github.com%2Fanmitsu%2Fgo-shlex%2F@v%2Fv0.0.0-20161002113705-648efa622239.zip mirror://goproxy//github.com/anmitsu/go-shlex/@v/v0.0.0-20161002113705-648efa622239.mod -> github.com%2Fanmitsu%2Fgo-shlex%2F@v%2Fv0.0.0-20161002113705-648efa622239.mod mirror://goproxy//github.com/anmitsu/go-shlex/@v/v0.0.0-20200514113438-38f4b401e2be.zip -> github.com%2Fanmitsu%2Fgo-shlex%2F@v%2Fv0.0.0-20200514113438-38f4b401e2be.zip mirror://goproxy//github.com/anmitsu/go-shlex/@v/v0.0.0-20200514113438-38f4b401e2be.mod -> github.com%2Fanmitsu%2Fgo-shlex%2F@v%2Fv0.0.0-20200514113438-38f4b401e2be.mod mirror://goproxy//github.com/armon/consul-api/@v/v0.0.0-20180202201655-eb2c6b5be1b6.mod -> github.com%2Farmon%2Fconsul-api%2F@v%2Fv0.0.0-20180202201655-eb2c6b5be1b6.mod mirror://goproxy//github.com/beorn7/perks/@v/v0.0.0-20180321164747-3a771d992973.mod -> github.com%2Fbeorn7%2Fperks%2F@v%2Fv0.0.0-20180321164747-3a771d992973.mod mirror://goproxy//github.com/beorn7/perks/@v/v1.0.0.mod -> github.com%2Fbeorn7%2Fperks%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/cespare/xxhash/@v/v1.1.0.mod -> github.com%2Fcespare%2Fxxhash%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/chzyer/logex/@v/v1.1.10.zip -> github.com%2Fchzyer%2Flogex%2F@v%2Fv1.1.10.zip mirror://goproxy//github.com/chzyer/logex/@v/v1.1.10.mod -> github.com%2Fchzyer%2Flogex%2F@v%2Fv1.1.10.mod mirror://goproxy//github.com/chzyer/readline/@v/v0.0.0-20180603132655-2972be24d48e.zip -> github.com%2Fchzyer%2Freadline%2F@v%2Fv0.0.0-20180603132655-2972be24d48e.zip mirror://goproxy//github.com/chzyer/readline/@v/v0.0.0-20180603132655-2972be24d48e.mod -> github.com%2Fchzyer%2Freadline%2F@v%2Fv0.0.0-20180603132655-2972be24d48e.mod mirror://goproxy//github.com/chzyer/test/@v/v0.0.0-20180213035817-a1ea475d72b1.zip -> github.com%2Fchzyer%2Ftest%2F@v%2Fv0.0.0-20180213035817-a1ea475d72b1.zip mirror://goproxy//github.com/chzyer/test/@v/v0.0.0-20180213035817-a1ea475d72b1.mod -> github.com%2Fchzyer%2Ftest%2F@v%2Fv0.0.0-20180213035817-a1ea475d72b1.mod mirror://goproxy//github.com/client9/misspell/@v/v0.3.4.mod -> github.com%2Fclient9%2Fmisspell%2F@v%2Fv0.3.4.mod mirror://goproxy//github.com/coreos/bbolt/@v/v1.3.2.mod -> github.com%2Fcoreos%2Fbbolt%2F@v%2Fv1.3.2.mod mirror://goproxy//github.com/coreos/etcd/@v/v3.3.10+incompatible.mod -> github.com%2Fcoreos%2Fetcd%2F@v%2Fv3.3.10+incompatible.mod mirror://goproxy//github.com/coreos/go-semver/@v/v0.2.0.mod -> github.com%2Fcoreos%2Fgo-semver%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/coreos/go-systemd/@v/v0.0.0-20190321100706-95778dfbb74e.mod -> github.com%2Fcoreos%2Fgo-systemd%2F@v%2Fv0.0.0-20190321100706-95778dfbb74e.mod mirror://goproxy//github.com/coreos/pkg/@v/v0.0.0-20180928190104-399ea9e2e55f.mod -> github.com%2Fcoreos%2Fpkg%2F@v%2Fv0.0.0-20180928190104-399ea9e2e55f.mod mirror://goproxy//github.com/cosiner/argv/@v/v0.0.0-20170225145430-13bacc38a0a5.zip -> github.com%2Fcosiner%2Fargv%2F@v%2Fv0.0.0-20170225145430-13bacc38a0a5.zip mirror://goproxy//github.com/cosiner/argv/@v/v0.0.0-20170225145430-13bacc38a0a5.mod -> github.com%2Fcosiner%2Fargv%2F@v%2Fv0.0.0-20170225145430-13bacc38a0a5.mod mirror://goproxy//github.com/cosiner/argv/@v/v0.0.1.zip -> github.com%2Fcosiner%2Fargv%2F@v%2Fv0.0.1.zip mirror://goproxy//github.com/cosiner/argv/@v/v0.0.1.mod -> github.com%2Fcosiner%2Fargv%2F@v%2Fv0.0.1.mod mirror://goproxy//github.com/cpuguy83/go-md2man/@v/v1.0.8.mod -> github.com%2Fcpuguy83%2Fgo-md2man%2F@v%2Fv1.0.8.mod mirror://goproxy//github.com/cpuguy83/go-md2man/v2/@v/v2.0.0.mod -> github.com%2Fcpuguy83%2Fgo-md2man%2Fv2%2F@v%2Fv2.0.0.mod mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.0.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/davecgh/go-spew/@v/v1.1.1.mod -> github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/dgrijalva/jwt-go/@v/v3.2.0+incompatible.mod -> github.com%2Fdgrijalva%2Fjwt-go%2F@v%2Fv3.2.0+incompatible.mod mirror://goproxy//github.com/dgryski/go-sip13/@v/v0.0.0-20181026042036-e10d5fee7954.mod -> github.com%2Fdgryski%2Fgo-sip13%2F@v%2Fv0.0.0-20181026042036-e10d5fee7954.mod mirror://goproxy//github.com/emirpasic/gods/@v/v1.12.0.zip -> github.com%2Femirpasic%2Fgods%2F@v%2Fv1.12.0.zip mirror://goproxy//github.com/emirpasic/gods/@v/v1.12.0.mod -> github.com%2Femirpasic%2Fgods%2F@v%2Fv1.12.0.mod mirror://goproxy//github.com/flynn/go-shlex/@v/v0.0.0-20150515145356-3f9db97f8568.zip -> github.com%2Fflynn%2Fgo-shlex%2F@v%2Fv0.0.0-20150515145356-3f9db97f8568.zip mirror://goproxy//github.com/flynn/go-shlex/@v/v0.0.0-20150515145356-3f9db97f8568.mod -> github.com%2Fflynn%2Fgo-shlex%2F@v%2Fv0.0.0-20150515145356-3f9db97f8568.mod mirror://goproxy//github.com/fsnotify/fsnotify/@v/v1.4.7.mod -> github.com%2Ffsnotify%2Ffsnotify%2F@v%2Fv1.4.7.mod mirror://goproxy//github.com/ghodss/yaml/@v/v1.0.0.mod -> github.com%2Fghodss%2Fyaml%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/go-delve/delve/@v/v1.4.0.zip -> github.com%2Fgo-delve%2Fdelve%2F@v%2Fv1.4.0.zip mirror://goproxy//github.com/go-delve/delve/@v/v1.4.0.mod -> github.com%2Fgo-delve%2Fdelve%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/go-kit/kit/@v/v0.8.0.mod -> github.com%2Fgo-kit%2Fkit%2F@v%2Fv0.8.0.mod mirror://goproxy//github.com/go-logfmt/logfmt/@v/v0.3.0.mod -> github.com%2Fgo-logfmt%2Flogfmt%2F@v%2Fv0.3.0.mod mirror://goproxy//github.com/go-logfmt/logfmt/@v/v0.4.0.mod -> github.com%2Fgo-logfmt%2Flogfmt%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/go-stack/stack/@v/v1.8.0.mod -> github.com%2Fgo-stack%2Fstack%2F@v%2Fv1.8.0.mod mirror://goproxy//github.com/gogo/protobuf/@v/v1.1.1.mod -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/gogo/protobuf/@v/v1.2.1.mod -> github.com%2Fgogo%2Fprotobuf%2F@v%2Fv1.2.1.mod mirror://goproxy//github.com/golang/glog/@v/v0.0.0-20160126235308-23def4e6c14b.mod -> github.com%2Fgolang%2Fglog%2F@v%2Fv0.0.0-20160126235308-23def4e6c14b.mod mirror://goproxy//github.com/golang/groupcache/@v/v0.0.0-20190129154638-5b532d6fd5ef.mod -> github.com%2Fgolang%2Fgroupcache%2F@v%2Fv0.0.0-20190129154638-5b532d6fd5ef.mod mirror://goproxy//github.com/golang/mock/@v/v1.1.1.mod -> github.com%2Fgolang%2Fmock%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.2.0.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/golang/protobuf/@v/v1.3.1.mod -> github.com%2Fgolang%2Fprotobuf%2F@v%2Fv1.3.1.mod mirror://goproxy//github.com/google/btree/@v/v1.0.0.mod -> github.com%2Fgoogle%2Fbtree%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/google/go-cmp/@v/v0.2.0.mod -> github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.2.0.mod mirror://goproxy//github.com/gorilla/websocket/@v/v1.4.0.mod -> github.com%2Fgorilla%2Fwebsocket%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/grpc-ecosystem/go-grpc-middleware/@v/v1.0.0.mod -> github.com%2Fgrpc-ecosystem%2Fgo-grpc-middleware%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/grpc-ecosystem/go-grpc-prometheus/@v/v1.2.0.mod -> github.com%2Fgrpc-ecosystem%2Fgo-grpc-prometheus%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/grpc-ecosystem/grpc-gateway/@v/v1.9.0.mod -> github.com%2Fgrpc-ecosystem%2Fgrpc-gateway%2F@v%2Fv1.9.0.mod mirror://goproxy//github.com/hashicorp/hcl/@v/v1.0.0.mod -> github.com%2Fhashicorp%2Fhcl%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/hpcloud/tail/@v/v1.0.0.mod -> github.com%2Fhpcloud%2Ftail%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/ianbruene/go-difflib/@v/v1.1.2.zip -> github.com%2Fianbruene%2Fgo-difflib%2F@v%2Fv1.1.2.zip mirror://goproxy//github.com/ianbruene/go-difflib/@v/v1.1.2.mod -> github.com%2Fianbruene%2Fgo-difflib%2F@v%2Fv1.1.2.mod mirror://goproxy//github.com/ianbruene/go-difflib/@v/v1.2.0.zip -> github.com%2Fianbruene%2Fgo-difflib%2F@v%2Fv1.2.0.zip mirror://goproxy//github.com/ianbruene/go-difflib/@v/v1.2.0.mod -> github.com%2Fianbruene%2Fgo-difflib%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/inconshreveable/mousetrap/@v/v1.0.0.zip -> github.com%2Finconshreveable%2Fmousetrap%2F@v%2Fv1.0.0.zip mirror://goproxy//github.com/inconshreveable/mousetrap/@v/v1.0.0.mod -> github.com%2Finconshreveable%2Fmousetrap%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/jonboulle/clockwork/@v/v0.1.0.mod -> github.com%2Fjonboulle%2Fclockwork%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/julienschmidt/httprouter/@v/v1.2.0.mod -> github.com%2Fjulienschmidt%2Fhttprouter%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/kballard/go-shellquote/@v/v0.0.0-20180428030007-95032a82bc51.zip -> github.com%2Fkballard%2Fgo-shellquote%2F@v%2Fv0.0.0-20180428030007-95032a82bc51.zip mirror://goproxy//github.com/kballard/go-shellquote/@v/v0.0.0-20180428030007-95032a82bc51.mod -> github.com%2Fkballard%2Fgo-shellquote%2F@v%2Fv0.0.0-20180428030007-95032a82bc51.mod mirror://goproxy//github.com/kisielk/errcheck/@v/v1.1.0.mod -> github.com%2Fkisielk%2Ferrcheck%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/kisielk/gotool/@v/v1.0.0.mod -> github.com%2Fkisielk%2Fgotool%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/konsorten/go-windows-terminal-sequences/@v/v1.0.1.zip -> github.com%2Fkonsorten%2Fgo-windows-terminal-sequences%2F@v%2Fv1.0.1.zip mirror://goproxy//github.com/konsorten/go-windows-terminal-sequences/@v/v1.0.1.mod -> github.com%2Fkonsorten%2Fgo-windows-terminal-sequences%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/konsorten/go-windows-terminal-sequences/@v/v1.0.2.zip -> github.com%2Fkonsorten%2Fgo-windows-terminal-sequences%2F@v%2Fv1.0.2.zip mirror://goproxy//github.com/konsorten/go-windows-terminal-sequences/@v/v1.0.2.mod -> github.com%2Fkonsorten%2Fgo-windows-terminal-sequences%2F@v%2Fv1.0.2.mod mirror://goproxy//github.com/kr/logfmt/@v/v0.0.0-20140226030751-b84e30acd515.mod -> github.com%2Fkr%2Flogfmt%2F@v%2Fv0.0.0-20140226030751-b84e30acd515.mod mirror://goproxy//github.com/kr/pretty/@v/v0.1.0.mod -> github.com%2Fkr%2Fpretty%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/kr/pty/@v/v1.1.1.mod -> github.com%2Fkr%2Fpty%2F@v%2Fv1.1.1.mod mirror://goproxy//github.com/kr/text/@v/v0.1.0.mod -> github.com%2Fkr%2Ftext%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/magiconair/properties/@v/v1.8.0.mod -> github.com%2Fmagiconair%2Fproperties%2F@v%2Fv1.8.0.mod mirror://goproxy//github.com/mattn/go-colorable/@v/v0.0.0-20170327083344-ded68f7a9561.zip -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.0.0-20170327083344-ded68f7a9561.zip mirror://goproxy//github.com/mattn/go-colorable/@v/v0.0.0-20170327083344-ded68f7a9561.mod -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.0.0-20170327083344-ded68f7a9561.mod mirror://goproxy//github.com/mattn/go-colorable/@v/v0.1.6.zip -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.6.zip mirror://goproxy//github.com/mattn/go-colorable/@v/v0.1.6.mod -> github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.6.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.3.zip -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.3.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.12.zip -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.12.zip mirror://goproxy//github.com/mattn/go-isatty/@v/v0.0.12.mod -> github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.12.mod mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.3.zip -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.3.zip mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.3.mod -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.3.mod mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.8.zip -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.8.zip mirror://goproxy//github.com/mattn/go-runewidth/@v/v0.0.8.mod -> github.com%2Fmattn%2Fgo-runewidth%2F@v%2Fv0.0.8.mod mirror://goproxy//github.com/matttproud/golang_protobuf_extensions/@v/v1.0.1.mod -> github.com%2Fmatttproud%2Fgolang_protobuf_extensions%2F@v%2Fv1.0.1.mod mirror://goproxy//github.com/mitchellh/go-homedir/@v/v1.1.0.mod -> github.com%2Fmitchellh%2Fgo-homedir%2F@v%2Fv1.1.0.mod mirror://goproxy//github.com/mitchellh/mapstructure/@v/v1.1.2.mod -> github.com%2Fmitchellh%2Fmapstructure%2F@v%2Fv1.1.2.mod mirror://goproxy//github.com/mwitkow/go-conntrack/@v/v0.0.0-20161129095857-cc309e4a2223.mod -> github.com%2Fmwitkow%2Fgo-conntrack%2F@v%2Fv0.0.0-20161129095857-cc309e4a2223.mod mirror://goproxy//github.com/oklog/ulid/@v/v1.3.1.mod -> github.com%2Foklog%2Fulid%2F@v%2Fv1.3.1.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.6.0.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.6.0.mod mirror://goproxy//github.com/onsi/ginkgo/@v/v1.8.0.mod -> github.com%2Fonsi%2Fginkgo%2F@v%2Fv1.8.0.mod mirror://goproxy//github.com/onsi/gomega/@v/v1.5.0.mod -> github.com%2Fonsi%2Fgomega%2F@v%2Fv1.5.0.mod mirror://goproxy//github.com/orcaman/concurrent-map/@v/v0.0.0-20190826125027-8c72a8bb44f6.zip -> github.com%2Forcaman%2Fconcurrent-map%2F@v%2Fv0.0.0-20190826125027-8c72a8bb44f6.zip mirror://goproxy//github.com/orcaman/concurrent-map/@v/v0.0.0-20190826125027-8c72a8bb44f6.mod -> github.com%2Forcaman%2Fconcurrent-map%2F@v%2Fv0.0.0-20190826125027-8c72a8bb44f6.mod mirror://goproxy//github.com/pelletier/go-toml/@v/v1.2.0.mod -> github.com%2Fpelletier%2Fgo-toml%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/peterh/liner/@v/v0.0.0-20170317030525-88609521dc4b.zip -> github.com%2Fpeterh%2Fliner%2F@v%2Fv0.0.0-20170317030525-88609521dc4b.zip mirror://goproxy//github.com/peterh/liner/@v/v0.0.0-20170317030525-88609521dc4b.mod -> github.com%2Fpeterh%2Fliner%2F@v%2Fv0.0.0-20170317030525-88609521dc4b.mod mirror://goproxy//github.com/peterh/liner/@v/v1.2.0.zip -> github.com%2Fpeterh%2Fliner%2F@v%2Fv1.2.0.zip mirror://goproxy//github.com/peterh/liner/@v/v1.2.0.mod -> github.com%2Fpeterh%2Fliner%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/pkg/errors/@v/v0.8.0.mod -> github.com%2Fpkg%2Ferrors%2F@v%2Fv0.8.0.mod mirror://goproxy//github.com/pkg/profile/@v/v0.0.0-20170413231811-06b906832ed0.mod -> github.com%2Fpkg%2Fprofile%2F@v%2Fv0.0.0-20170413231811-06b906832ed0.mod mirror://goproxy//github.com/pmezard/go-difflib/@v/v1.0.0.mod -> github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v0.9.1.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.9.1.mod mirror://goproxy//github.com/prometheus/client_golang/@v/v0.9.3.mod -> github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.9.3.mod mirror://goproxy//github.com/prometheus/client_model/@v/v0.0.0-20180712105110-5c3871d89910.mod -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20180712105110-5c3871d89910.mod mirror://goproxy//github.com/prometheus/client_model/@v/v0.0.0-20190129233127-fd36f4220a90.mod -> github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20190129233127-fd36f4220a90.mod mirror://goproxy//github.com/prometheus/common/@v/v0.0.0-20181113130724-41aa239b4cce.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.0.0-20181113130724-41aa239b4cce.mod mirror://goproxy//github.com/prometheus/common/@v/v0.4.0.mod -> github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.4.0.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.0-20181005140218-185b4288413d.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20181005140218-185b4288413d.mod mirror://goproxy//github.com/prometheus/procfs/@v/v0.0.0-20190507164030-5867b95ac084.mod -> github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20190507164030-5867b95ac084.mod mirror://goproxy//github.com/prometheus/tsdb/@v/v0.7.1.mod -> github.com%2Fprometheus%2Ftsdb%2F@v%2Fv0.7.1.mod mirror://goproxy//github.com/rogpeppe/fastuuid/@v/v0.0.0-20150106093220-6724a57986af.mod -> github.com%2Frogpeppe%2Ffastuuid%2F@v%2Fv0.0.0-20150106093220-6724a57986af.mod mirror://goproxy//github.com/russross/blackfriday/@v/v0.0.0-20180428102519-11635eb403ff.mod -> github.com%2Frussross%2Fblackfriday%2F@v%2Fv0.0.0-20180428102519-11635eb403ff.mod mirror://goproxy//github.com/russross/blackfriday/v2/@v/v2.0.1.mod -> github.com%2Frussross%2Fblackfriday%2Fv2%2F@v%2Fv2.0.1.mod mirror://goproxy//github.com/shurcoo!l/sanitized_anchor_name/@v/v1.0.0.mod -> github.com%2Fshurcoo!l%2Fsanitized_anchor_name%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/sirupsen/logrus/@v/v0.0.0-20180523074243-ea8897e79973.zip -> github.com%2Fsirupsen%2Flogrus%2F@v%2Fv0.0.0-20180523074243-ea8897e79973.zip mirror://goproxy//github.com/sirupsen/logrus/@v/v0.0.0-20180523074243-ea8897e79973.mod -> github.com%2Fsirupsen%2Flogrus%2F@v%2Fv0.0.0-20180523074243-ea8897e79973.mod mirror://goproxy//github.com/sirupsen/logrus/@v/v1.2.0.mod -> github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.2.0.mod mirror://goproxy//github.com/sirupsen/logrus/@v/v1.4.2.zip -> github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.4.2.zip mirror://goproxy//github.com/sirupsen/logrus/@v/v1.4.2.mod -> github.com%2Fsirupsen%2Flogrus%2F@v%2Fv1.4.2.mod mirror://goproxy//github.com/soheilhy/cmux/@v/v0.1.4.mod -> github.com%2Fsoheilhy%2Fcmux%2F@v%2Fv0.1.4.mod mirror://goproxy//github.com/spaolacci/murmur3/@v/v0.0.0-20180118202830-f09979ecbc72.mod -> github.com%2Fspaolacci%2Fmurmur3%2F@v%2Fv0.0.0-20180118202830-f09979ecbc72.mod mirror://goproxy//github.com/spf13/afero/@v/v1.1.2.mod -> github.com%2Fspf13%2Fafero%2F@v%2Fv1.1.2.mod mirror://goproxy//github.com/spf13/cast/@v/v1.3.0.mod -> github.com%2Fspf13%2Fcast%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/spf13/cobra/@v/v0.0.0-20170417170307-b6cb39589372.zip -> github.com%2Fspf13%2Fcobra%2F@v%2Fv0.0.0-20170417170307-b6cb39589372.zip mirror://goproxy//github.com/spf13/cobra/@v/v0.0.0-20170417170307-b6cb39589372.mod -> github.com%2Fspf13%2Fcobra%2F@v%2Fv0.0.0-20170417170307-b6cb39589372.mod mirror://goproxy//github.com/spf13/cobra/@v/v0.0.6.zip -> github.com%2Fspf13%2Fcobra%2F@v%2Fv0.0.6.zip mirror://goproxy//github.com/spf13/cobra/@v/v0.0.6.mod -> github.com%2Fspf13%2Fcobra%2F@v%2Fv0.0.6.mod mirror://goproxy//github.com/spf13/jwalterweatherman/@v/v1.0.0.mod -> github.com%2Fspf13%2Fjwalterweatherman%2F@v%2Fv1.0.0.mod mirror://goproxy//github.com/spf13/pflag/@v/v0.0.0-20170417173400-9e4c21054fa1.zip -> github.com%2Fspf13%2Fpflag%2F@v%2Fv0.0.0-20170417173400-9e4c21054fa1.zip mirror://goproxy//github.com/spf13/pflag/@v/v0.0.0-20170417173400-9e4c21054fa1.mod -> github.com%2Fspf13%2Fpflag%2F@v%2Fv0.0.0-20170417173400-9e4c21054fa1.mod mirror://goproxy//github.com/spf13/pflag/@v/v1.0.3.mod -> github.com%2Fspf13%2Fpflag%2F@v%2Fv1.0.3.mod mirror://goproxy//github.com/spf13/pflag/@v/v1.0.5.zip -> github.com%2Fspf13%2Fpflag%2F@v%2Fv1.0.5.zip mirror://goproxy//github.com/spf13/pflag/@v/v1.0.5.mod -> github.com%2Fspf13%2Fpflag%2F@v%2Fv1.0.5.mod mirror://goproxy//github.com/spf13/viper/@v/v1.4.0.mod -> github.com%2Fspf13%2Fviper%2F@v%2Fv1.4.0.mod mirror://goproxy//github.com/stretchr/objx/@v/v0.1.0.mod -> github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.1.0.mod mirror://goproxy//github.com/stretchr/objx/@v/v0.1.1.mod -> github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.1.1.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.2.2.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.2.2.mod mirror://goproxy//github.com/stretchr/testify/@v/v1.3.0.mod -> github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.3.0.mod mirror://goproxy//github.com/termie/go-shutil/@v/v0.0.0-20140729215957-bcacb06fecae.zip -> github.com%2Ftermie%2Fgo-shutil%2F@v%2Fv0.0.0-20140729215957-bcacb06fecae.zip mirror://goproxy//github.com/termie/go-shutil/@v/v0.0.0-20140729215957-bcacb06fecae.mod -> github.com%2Ftermie%2Fgo-shutil%2F@v%2Fv0.0.0-20140729215957-bcacb06fecae.mod mirror://goproxy//github.com/tmc/grpc-websocket-proxy/@v/v0.0.0-20190109142713-0ad062ec5ee5.mod -> github.com%2Ftmc%2Fgrpc-websocket-proxy%2F@v%2Fv0.0.0-20190109142713-0ad062ec5ee5.mod mirror://goproxy//github.com/ugorji/go/@v/v1.1.4.mod -> github.com%2Fugorji%2Fgo%2F@v%2Fv1.1.4.mod mirror://goproxy//github.com/xiang90/probing/@v/v0.0.0-20190116061207-43a291ad63a2.mod -> github.com%2Fxiang90%2Fprobing%2F@v%2Fv0.0.0-20190116061207-43a291ad63a2.mod mirror://goproxy//github.com/xo/terminfo/@v/v0.0.0-20210125001918-ca9a967f8778.zip -> github.com%2Fxo%2Fterminfo%2F@v%2Fv0.0.0-20210125001918-ca9a967f8778.zip mirror://goproxy//github.com/xo/terminfo/@v/v0.0.0-20210125001918-ca9a967f8778.mod -> github.com%2Fxo%2Fterminfo%2F@v%2Fv0.0.0-20210125001918-ca9a967f8778.mod mirror://goproxy//github.com/xordataexchange/crypt/@v/v0.0.3-0.20170626215501-b2862e3d0a77.mod -> github.com%2Fxordataexchange%2Fcrypt%2F@v%2Fv0.0.3-0.20170626215501-b2862e3d0a77.mod mirror://goproxy//gitlab.com/esr/fqme/@v/v0.1.0.zip -> gitlab.com%2Fesr%2Ffqme%2F@v%2Fv0.1.0.zip mirror://goproxy//gitlab.com/esr/fqme/@v/v0.1.0.mod -> gitlab.com%2Fesr%2Ffqme%2F@v%2Fv0.1.0.mod mirror://goproxy//gitlab.com/ianbruene/kommandant/@v/v0.5.3.zip -> gitlab.com%2Fianbruene%2Fkommandant%2F@v%2Fv0.5.3.zip mirror://goproxy//gitlab.com/ianbruene/kommandant/@v/v0.5.3.mod -> gitlab.com%2Fianbruene%2Fkommandant%2F@v%2Fv0.5.3.mod mirror://goproxy//gitlab.com/ianbruene/kommandant/@v/v0.6.1.zip -> gitlab.com%2Fianbruene%2Fkommandant%2F@v%2Fv0.6.1.zip mirror://goproxy//gitlab.com/ianbruene/kommandant/@v/v0.6.1.mod -> gitlab.com%2Fianbruene%2Fkommandant%2F@v%2Fv0.6.1.mod mirror://goproxy//gitlab.com/ianbruene/kommandant/@v/v0.6.2.zip -> gitlab.com%2Fianbruene%2Fkommandant%2F@v%2Fv0.6.2.zip mirror://goproxy//gitlab.com/ianbruene/kommandant/@v/v0.6.2.mod -> gitlab.com%2Fianbruene%2Fkommandant%2F@v%2Fv0.6.2.mod mirror://goproxy//go.etcd.io/bbolt/@v/v1.3.2.mod -> go.etcd.io%2Fbbolt%2F@v%2Fv1.3.2.mod mirror://goproxy//go.starlark.net/@v/v0.0.0-20190702223751-32f345186213.zip -> go.starlark.net%2F@v%2Fv0.0.0-20190702223751-32f345186213.zip mirror://goproxy//go.starlark.net/@v/v0.0.0-20190702223751-32f345186213.mod -> go.starlark.net%2F@v%2Fv0.0.0-20190702223751-32f345186213.mod mirror://goproxy//go.starlark.net/@v/v0.0.0-20200306205701-8dd3e2ee1dd5.zip -> go.starlark.net%2F@v%2Fv0.0.0-20200306205701-8dd3e2ee1dd5.zip mirror://goproxy//go.starlark.net/@v/v0.0.0-20200306205701-8dd3e2ee1dd5.mod -> go.starlark.net%2F@v%2Fv0.0.0-20200306205701-8dd3e2ee1dd5.mod mirror://goproxy//go.uber.org/atomic/@v/v1.4.0.mod -> go.uber.org%2Fatomic%2F@v%2Fv1.4.0.mod mirror://goproxy//go.uber.org/multierr/@v/v1.1.0.mod -> go.uber.org%2Fmultierr%2F@v%2Fv1.1.0.mod mirror://goproxy//go.uber.org/zap/@v/v1.10.0.mod -> go.uber.org%2Fzap%2F@v%2Fv1.10.0.mod mirror://goproxy//golang.org/x/arch/@v/v0.0.0-20190927153633-4e8777c89be4.zip -> golang.org%2Fx%2Farch%2F@v%2Fv0.0.0-20190927153633-4e8777c89be4.zip mirror://goproxy//golang.org/x/arch/@v/v0.0.0-20190927153633-4e8777c89be4.mod -> golang.org%2Fx%2Farch%2F@v%2Fv0.0.0-20190927153633-4e8777c89be4.mod mirror://goproxy//golang.org/x/arch/@v/v0.0.0-20200312215426-ff8b605520f4.zip -> golang.org%2Fx%2Farch%2F@v%2Fv0.0.0-20200312215426-ff8b605520f4.zip mirror://goproxy//golang.org/x/arch/@v/v0.0.0-20200312215426-ff8b605520f4.mod -> golang.org%2Fx%2Farch%2F@v%2Fv0.0.0-20200312215426-ff8b605520f4.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20180904163835-0709b304e793.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20180904163835-0709b304e793.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20190308221718-c2843e01d9a2.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20190308221718-c2843e01d9a2.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20191206172530-e9b2fee46413.zip -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20191206172530-e9b2fee46413.zip mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20191206172530-e9b2fee46413.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20191206172530-e9b2fee46413.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200311171314-f7b00557c8c4.zip -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200311171314-f7b00557c8c4.zip mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200311171314-f7b00557c8c4.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200311171314-f7b00557c8c4.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200406173513-056763e48d71.zip -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200406173513-056763e48d71.zip mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200406173513-056763e48d71.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200406173513-056763e48d71.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200510223506-06a226fb4e37.zip -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200510223506-06a226fb4e37.zip mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20200510223506-06a226fb4e37.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20200510223506-06a226fb4e37.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20201221181555-eec23a3978ad.zip -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20201221181555-eec23a3978ad.zip mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20201221181555-eec23a3978ad.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20201221181555-eec23a3978ad.mod mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20210322153248-0c34fe9e7dc2.zip -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20210322153248-0c34fe9e7dc2.zip mirror://goproxy//golang.org/x/crypto/@v/v0.0.0-20210322153248-0c34fe9e7dc2.mod -> golang.org%2Fx%2Fcrypto%2F@v%2Fv0.0.0-20210322153248-0c34fe9e7dc2.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20181026193005-c67002cb31c3.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20181026193005-c67002cb31c3.mod mirror://goproxy//golang.org/x/lint/@v/v0.0.0-20190313153728-d0100b6bd8b3.mod -> golang.org%2Fx%2Flint%2F@v%2Fv0.0.0-20190313153728-d0100b6bd8b3.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20180826012351-8a410e7b638d.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180826012351-8a410e7b638d.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20180906233101-161cd47e91fd.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20180906233101-161cd47e91fd.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181114220301-adae6a3d119a.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181114220301-adae6a3d119a.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20181220203305-927f97764cc3.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20181220203305-927f97764cc3.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190311183353-d8887717615a.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190311183353-d8887717615a.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190404232315-eb5bcb51f2a3.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190404232315-eb5bcb51f2a3.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190522155817-f3200d17e092.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190522155817-f3200d17e092.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20190620200207-3b0461eec859.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20190620200207-3b0461eec859.mod mirror://goproxy//golang.org/x/net/@v/v0.0.0-20210226172049-e18ecbb05110.mod -> golang.org%2Fx%2Fnet%2F@v%2Fv0.0.0-20210226172049-e18ecbb05110.mod mirror://goproxy//golang.org/x/oauth2/@v/v0.0.0-20180821212333-d2e6202438be.mod -> golang.org%2Fx%2Foauth2%2F@v%2Fv0.0.0-20180821212333-d2e6202438be.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20180314180146-1d60e4601c6f.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20180314180146-1d60e4601c6f.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20181108010431-42b317875d0f.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20181108010431-42b317875d0f.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20181221193216-37e7f081c4d4.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20181221193216-37e7f081c4d4.mod mirror://goproxy//golang.org/x/sync/@v/v0.0.0-20190423024810-112230192c58.mod -> golang.org%2Fx%2Fsync%2F@v%2Fv0.0.0-20190423024810-112230192c58.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20180830151530-49385e6e1522.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180830151530-49385e6e1522.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20180905080454-ebe1bf3edb33.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180905080454-ebe1bf3edb33.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20180909124046-d0be0721c37e.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20180909124046-d0be0721c37e.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20181107165924-66b7b1311ac8.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20181107165924-66b7b1311ac8.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20181116152217-5ac8a444bdc5.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20181116152217-5ac8a444bdc5.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190215142949-d0b11bdaac8a.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190215142949-d0b11bdaac8a.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190412213103-97732733099d.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190412213103-97732733099d.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190422165155-953cdadca894.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190422165155-953cdadca894.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20190626221950-04f50cda93cb.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20190626221950-04f50cda93cb.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191002063906-3421d5a6bb1c.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191002063906-3421d5a6bb1c.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191026070338-33540a1f6037.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191026070338-33540a1f6037.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191210023423-ac6580df4449.zip -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191210023423-ac6580df4449.zip mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20191210023423-ac6580df4449.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191210023423-ac6580df4449.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200116001909-b77594299b42.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200116001909-b77594299b42.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200223170610-d5e6a3e2c0ae.zip -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200223170610-d5e6a3e2c0ae.zip mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200223170610-d5e6a3e2c0ae.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200223170610-d5e6a3e2c0ae.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200316230553-a7d97aace0b0.zip -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200316230553-a7d97aace0b0.zip mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200316230553-a7d97aace0b0.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200316230553-a7d97aace0b0.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200408040146-ea54a3c99b9b.zip -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200408040146-ea54a3c99b9b.zip mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200408040146-ea54a3c99b9b.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200408040146-ea54a3c99b9b.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200409092240-59c9f1ba88fa.zip -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200409092240-59c9f1ba88fa.zip mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200409092240-59c9f1ba88fa.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200409092240-59c9f1ba88fa.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200515095857-1151b9dac4a9.zip -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200515095857-1151b9dac4a9.zip mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20200515095857-1151b9dac4a9.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200515095857-1151b9dac4a9.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20201119102817-f84b799fce68.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20201119102817-f84b799fce68.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20201223074533-0d417f636930.zip -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20201223074533-0d417f636930.zip mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20201223074533-0d417f636930.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20201223074533-0d417f636930.mod mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210403161142-5e06dd20ab57.zip -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210403161142-5e06dd20ab57.zip mirror://goproxy//golang.org/x/sys/@v/v0.0.0-20210403161142-5e06dd20ab57.mod -> golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210403161142-5e06dd20ab57.mod mirror://goproxy//golang.org/x/term/@v/v0.0.0-20201117132131-f5c789dd3221.zip -> golang.org%2Fx%2Fterm%2F@v%2Fv0.0.0-20201117132131-f5c789dd3221.zip mirror://goproxy//golang.org/x/term/@v/v0.0.0-20201117132131-f5c789dd3221.mod -> golang.org%2Fx%2Fterm%2F@v%2Fv0.0.0-20201117132131-f5c789dd3221.mod mirror://goproxy//golang.org/x/term/@v/v0.0.0-20201126162022-7de9c90e9dd1.mod -> golang.org%2Fx%2Fterm%2F@v%2Fv0.0.0-20201126162022-7de9c90e9dd1.mod mirror://goproxy//golang.org/x/term/@v/v0.0.0-20201210144234-2321bbc49cbf.zip -> golang.org%2Fx%2Fterm%2F@v%2Fv0.0.0-20201210144234-2321bbc49cbf.zip mirror://goproxy//golang.org/x/term/@v/v0.0.0-20201210144234-2321bbc49cbf.mod -> golang.org%2Fx%2Fterm%2F@v%2Fv0.0.0-20201210144234-2321bbc49cbf.mod mirror://goproxy//golang.org/x/term/@v/v0.0.0-20210406210042-72f3dc4e9b72.zip -> golang.org%2Fx%2Fterm%2F@v%2Fv0.0.0-20210406210042-72f3dc4e9b72.zip mirror://goproxy//golang.org/x/term/@v/v0.0.0-20210406210042-72f3dc4e9b72.mod -> golang.org%2Fx%2Fterm%2F@v%2Fv0.0.0-20210406210042-72f3dc4e9b72.mod mirror://goproxy//golang.org/x/text/@v/v0.3.0.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.0.mod mirror://goproxy//golang.org/x/text/@v/v0.3.2.zip -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.2.zip mirror://goproxy//golang.org/x/text/@v/v0.3.2.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.2.mod mirror://goproxy//golang.org/x/text/@v/v0.3.3.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.3.mod mirror://goproxy//golang.org/x/text/@v/v0.3.4.zip -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.4.zip mirror://goproxy//golang.org/x/text/@v/v0.3.4.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.4.mod mirror://goproxy//golang.org/x/text/@v/v0.3.6.zip -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.6.zip mirror://goproxy//golang.org/x/text/@v/v0.3.6.mod -> golang.org%2Fx%2Ftext%2F@v%2Fv0.3.6.mod mirror://goproxy//golang.org/x/time/@v/v0.0.0-20190308202827-9d24e82272b4.mod -> golang.org%2Fx%2Ftime%2F@v%2Fv0.0.0-20190308202827-9d24e82272b4.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20180221164845-07fd8470d635.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20180221164845-07fd8470d635.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20180917221912-90fa682c2a6e.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20180917221912-90fa682c2a6e.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190114222345-bf090417da8b.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190114222345-bf090417da8b.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20190311212946-11955173bddd.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20190311212946-11955173bddd.mod mirror://goproxy//golang.org/x/tools/@v/v0.0.0-20191127201027-ecd32218bd7f.mod -> golang.org%2Fx%2Ftools%2F@v%2Fv0.0.0-20191127201027-ecd32218bd7f.mod mirror://goproxy//golang.org/x/xerrors/@v/v0.0.0-20190717185122-a985d3407aa7.mod -> golang.org%2Fx%2Fxerrors%2F@v%2Fv0.0.0-20190717185122-a985d3407aa7.mod mirror://goproxy//google.golang.org/appengine/@v/v1.1.0.mod -> google.golang.org%2Fappengine%2F@v%2Fv1.1.0.mod mirror://goproxy//google.golang.org/genproto/@v/v0.0.0-20180817151627-c66870c02cf8.mod -> google.golang.org%2Fgenproto%2F@v%2Fv0.0.0-20180817151627-c66870c02cf8.mod mirror://goproxy//google.golang.org/grpc/@v/v1.19.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.19.0.mod mirror://goproxy//google.golang.org/grpc/@v/v1.21.0.mod -> google.golang.org%2Fgrpc%2F@v%2Fv1.21.0.mod mirror://goproxy//gopkg.in/airbrake/gobrake.v2/@v/v2.0.9.mod -> gopkg.in%2Fairbrake%2Fgobrake.v2%2F@v%2Fv2.0.9.mod mirror://goproxy//gopkg.in/alecthomas/kingpin.v2/@v/v2.2.6.mod -> gopkg.in%2Falecthomas%2Fkingpin.v2%2F@v%2Fv2.2.6.mod mirror://goproxy//gopkg.in/check.v1/@v/v0.0.0-20161208181325-20d25e280405.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv0.0.0-20161208181325-20d25e280405.mod mirror://goproxy//gopkg.in/check.v1/@v/v1.0.0-20180628173108-788fd7840127.mod -> gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20180628173108-788fd7840127.mod mirror://goproxy//gopkg.in/fsnotify.v1/@v/v1.4.7.mod -> gopkg.in%2Ffsnotify.v1%2F@v%2Fv1.4.7.mod mirror://goproxy//gopkg.in/gemnasium/logrus-airbrake-hook.v2/@v/v2.1.2.mod -> gopkg.in%2Fgemnasium%2Flogrus-airbrake-hook.v2%2F@v%2Fv2.1.2.mod mirror://goproxy//gopkg.in/resty.v1/@v/v1.12.0.mod -> gopkg.in%2Fresty.v1%2F@v%2Fv1.12.0.mod mirror://goproxy//gopkg.in/tomb.v1/@v/v1.0.0-20141024135613-dd632973f1e7.mod -> gopkg.in%2Ftomb.v1%2F@v%2Fv1.0.0-20141024135613-dd632973f1e7.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.0.0-20170812160011-eb3733d160e7.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.0.0-20170812160011-eb3733d160e7.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.1.zip -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.1.zip mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.1.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.1.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.2.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.2.mod mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.8.zip -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.8.zip mirror://goproxy//gopkg.in/yaml.v2/@v/v2.2.8.mod -> gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.8.mod mirror://goproxy//honnef.co/go/tools/@v/v0.0.0-20190102054323-c2f93a96b099.mod -> honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190102054323-c2f93a96b099.mod mirror://goproxy//rsc.io/pdf/@v/v0.1.1.mod -> rsc.io%2Fpdf%2F@v%2Fv0.1.1.mod -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=b41c7444adc75e2572d206477d5e157f diff --git a/metadata/md5-cache/games-strategy/Manifest.gz b/metadata/md5-cache/games-strategy/Manifest.gz index e1bc977aac05..c634553bd407 100644 Binary files a/metadata/md5-cache/games-strategy/Manifest.gz and b/metadata/md5-cache/games-strategy/Manifest.gz differ diff --git a/metadata/md5-cache/games-strategy/warzone2100-4.3.5 b/metadata/md5-cache/games-strategy/warzone2100-4.3.5 new file mode 100644 index 000000000000..3a09b75b64db --- /dev/null +++ b/metadata/md5-cache/games-strategy/warzone2100-4.3.5 @@ -0,0 +1,16 @@ +BDEPEND=app-arch/zip app-text/asciidoc games-util/basis_universal virtual/pkgconfig nls? ( sys-devel/gettext ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test unpack +DEPEND=dev-libs/fribidi >=dev-games/physfs-2[zip] dev-db/sqlite:3 >=dev-libs/libsodium-1.0.14:= media-libs/freetype:2 media-libs/harfbuzz:= media-libs/libogg media-libs/libpng:= media-libs/libsdl2[opengl,video,X] media-libs/libtheora media-libs/libvorbis media-libs/openal media-libs/opus net-libs/miniupnpc:= net-misc/curl sys-libs/zlib nls? ( virtual/libintl ) vulkan? ( media-libs/libsdl2:=[vulkan] ) media-libs/fontconfig +DESCRIPTION=3D real-time strategy game +EAPI=8 +HOMEPAGE=https://wz2100.net/ +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=cmake plocale xdg +IUSE=debug discord nls videos vulkan +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2+ CC-BY-SA-3.0 public-domain vulkan? ( GPL-3 ) +RDEPEND=dev-libs/fribidi >=dev-games/physfs-2[zip] dev-db/sqlite:3 >=dev-libs/libsodium-1.0.14:= media-libs/freetype:2 media-libs/harfbuzz:= media-libs/libogg media-libs/libpng:= media-libs/libsdl2[opengl,video,X] media-libs/libtheora media-libs/libvorbis media-libs/openal media-libs/opus net-libs/miniupnpc:= net-misc/curl sys-libs/zlib nls? ( virtual/libintl ) vulkan? ( media-libs/libsdl2:=[vulkan] ) media-fonts/dejavu +SLOT=0 +SRC_URI=mirror://sourceforge/warzone2100/releases/4.3.5/warzone2100_src.tar.xz -> warzone2100-4.3.5.tar.xz videos? ( mirror://sourceforge/warzone2100/warzone2100/Videos/2.2/high-quality-en/sequences.wz -> warzone2100-videos-2.2.wz ) +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 plocale 950fbaec7deeba41b5bcc0572cca99b9 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=7826553a2acfcb71e716f5d643105763 diff --git a/metadata/md5-cache/gnome-extra/Manifest.gz b/metadata/md5-cache/gnome-extra/Manifest.gz index 6ab649f0b8cc..f4a0082882fa 100644 Binary files a/metadata/md5-cache/gnome-extra/Manifest.gz and b/metadata/md5-cache/gnome-extra/Manifest.gz differ diff --git a/metadata/md5-cache/gnome-extra/gnome-shell-extension-alphabetical-grid-27.0 b/metadata/md5-cache/gnome-extra/gnome-shell-extension-alphabetical-grid-27.0 deleted file mode 100644 index 11b9961441c4..000000000000 --- a/metadata/md5-cache/gnome-extra/gnome-shell-extension-alphabetical-grid-27.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm preinst -DESCRIPTION=Restore the alphabetical ordering of the app grid -EAPI=8 -HOMEPAGE=https://github.com/stuarthayhurst/alphabetical-grid-extension -INHERIT=gnome2-utils -KEYWORDS=amd64 x86 -LICENSE=GPL-3 -RDEPEND=app-eselect/eselect-gnome-shell-extensions >=gnome-base/gnome-shell-3.38 -RESTRICT=test -SLOT=0 -SRC_URI=https://github.com/stuarthayhurst/alphabetical-grid-extension/archive/refs/tags/v27.0.tar.gz -> gnome-shell-extension-alphabetical-grid-27.0.tar.gz -_eclasses_=gnome2-utils b0183db3b2e07b18f3b77bffec72e116 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=9b7a7758a632ca587460274220ca6258 diff --git a/metadata/md5-cache/gnome-extra/gnome-shell-extension-alphabetical-grid-28.0 b/metadata/md5-cache/gnome-extra/gnome-shell-extension-alphabetical-grid-28.0 deleted file mode 100644 index 932820a34ab9..000000000000 --- a/metadata/md5-cache/gnome-extra/gnome-shell-extension-alphabetical-grid-28.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm preinst -DESCRIPTION=Restore the alphabetical ordering of the app grid -EAPI=8 -HOMEPAGE=https://github.com/stuarthayhurst/alphabetical-grid-extension -INHERIT=gnome2-utils -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3 -RDEPEND=app-eselect/eselect-gnome-shell-extensions >=gnome-base/gnome-shell-3.38 -RESTRICT=test -SLOT=0 -SRC_URI=https://github.com/stuarthayhurst/alphabetical-grid-extension/archive/refs/tags/v28.0.tar.gz -> gnome-shell-extension-alphabetical-grid-28.0.tar.gz -_eclasses_=gnome2-utils b0183db3b2e07b18f3b77bffec72e116 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=a284403349e2885f9bc266230f20d34a diff --git a/metadata/md5-cache/gnome-extra/gnome-shell-extension-alphabetical-grid-29.0 b/metadata/md5-cache/gnome-extra/gnome-shell-extension-alphabetical-grid-29.0 index d10f6fa3faaa..33d41769f0f5 100644 --- a/metadata/md5-cache/gnome-extra/gnome-shell-extension-alphabetical-grid-29.0 +++ b/metadata/md5-cache/gnome-extra/gnome-shell-extension-alphabetical-grid-29.0 @@ -3,11 +3,11 @@ DESCRIPTION=Restore the alphabetical ordering of the app grid EAPI=8 HOMEPAGE=https://github.com/stuarthayhurst/alphabetical-grid-extension INHERIT=gnome2-utils -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-3 RDEPEND=app-eselect/eselect-gnome-shell-extensions >=gnome-base/gnome-shell-3.38 RESTRICT=test SLOT=0 SRC_URI=https://github.com/stuarthayhurst/alphabetical-grid-extension/archive/refs/tags/v29.0.tar.gz -> gnome-shell-extension-alphabetical-grid-29.0.tar.gz _eclasses_=gnome2-utils b0183db3b2e07b18f3b77bffec72e116 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=a284403349e2885f9bc266230f20d34a +_md5_=9b7a7758a632ca587460274220ca6258 diff --git a/metadata/md5-cache/gnome-extra/gnome-shell-extension-control-blur-effect-on-lock-screen-20230408 b/metadata/md5-cache/gnome-extra/gnome-shell-extension-control-blur-effect-on-lock-screen-20230408 new file mode 100644 index 000000000000..a3d1e707dbcb --- /dev/null +++ b/metadata/md5-cache/gnome-extra/gnome-shell-extension-control-blur-effect-on-lock-screen-20230408 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile install postinst postrm preinst +DEPEND=dev-libs/glib:2 +DESCRIPTION=Control the blur effect on gnome-shell lock screen +EAPI=8 +HOMEPAGE=https://github.com/PRATAP-KUMAR/Control_Blur_Effect_On_Lock_Screen +INHERIT=gnome2-utils +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3+ +RDEPEND=dev-libs/glib:2 app-eselect/eselect-gnome-shell-extensions >=gnome-base/gnome-shell-44 +SLOT=0 +SRC_URI=https://github.com/PRATAP-KUMAR/Control_Blur_Effect_On_Lock_Screen/archive/53b17ccf60dedd815be4657d6e3655d838a984df.tar.gz -> gnome-shell-extension-control-blur-effect-on-lock-screen-20230408.tar.gz +_eclasses_=gnome2-utils b0183db3b2e07b18f3b77bffec72e116 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=ac8e047f3e78986f6e1a1debb11c4a8e diff --git a/metadata/md5-cache/gnome-extra/gucharmap-15.0.4 b/metadata/md5-cache/gnome-extra/gucharmap-15.0.4 new file mode 100644 index 000000000000..e0966b61b345 --- /dev/null +++ b/metadata/md5-cache/gnome-extra/gucharmap-15.0.4 @@ -0,0 +1,17 @@ +BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) app-text/docbook-xml-dtd:4.1.2 dev-util/itstool >=sys-devel/gettext-0.19.8 virtual/pkgconfig gtk-doc? ( >=dev-util/gtk-doc-1 ) introspection? ( >=dev-libs/gobject-introspection-1.54:= ) vala? ( || ( dev-lang/vala:0.56 ) ) >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test +DEPEND=media-libs/freetype:2 >=dev-libs/glib-2.32:2 >=x11-libs/gtk+-3.22:3[introspection?] >=dev-libs/libpcre2-10.21:= =app-i18n/unicode-data-15.0* >=x11-libs/pango-1.42.4-r2[introspection?] +DESCRIPTION=Unicode character map viewer and library +EAPI=8 +HOMEPAGE=https://wiki.gnome.org/Apps/Gucharmap +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=gnome2-utils meson python-any-r1 vala xdg +IUSE=+introspection gtk-doc vala +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=GPL-3+ +RDEPEND=media-libs/freetype:2 >=dev-libs/glib-2.32:2 >=x11-libs/gtk+-3.22:3[introspection?] >=dev-libs/libpcre2-10.21:= =app-i18n/unicode-data-15.0* >=x11-libs/pango-1.42.4-r2[introspection?] +REQUIRED_USE=vala? ( introspection ) +SLOT=2.90 +SRC_URI=https://gitlab.gnome.org/GNOME/gucharmap/-/archive/15.0.4/gucharmap-15.0.4.tar.bz2 +_eclasses_=gnome2-utils b0183db3b2e07b18f3b77bffec72e116 meson 915ec7c25e08d7886558215e6809ca1e multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e vala 1343f639cc74d2aa8b36fc08677da58d xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=8822aa32c28884c36572c056b1ae1279 diff --git a/metadata/md5-cache/gnome-extra/nm-applet-1.32.0 b/metadata/md5-cache/gnome-extra/nm-applet-1.32.0 new file mode 100644 index 000000000000..7f19c99cedf2 --- /dev/null +++ b/metadata/md5-cache/gnome-extra/nm-applet-1.32.0 @@ -0,0 +1,16 @@ +BDEPEND=dev-libs/libxml2 >=sys-devel/gettext-0.19.8 virtual/pkgconfig app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install postinst postrm preinst test +DEPEND=>=dev-libs/glib-2.40:2 >=app-crypt/libsecret-0.18 >=net-libs/libnma-1.10.4-r2 >=x11-libs/gtk+-3.10:3 >=dev-libs/libgudev-147:= >=net-misc/networkmanager-1.16[modemmanager?,teamd?] appindicator? ( dev-libs/libayatana-appindicator >=dev-libs/libdbusmenu-16.04.0 ) modemmanager? ( net-misc/modemmanager ) selinux? ( sys-libs/libselinux ) teamd? ( >=dev-libs/jansson-2.7:= ) virtual/freedesktop-icon-theme +DESCRIPTION=NetworkManager connection editor and applet +EAPI=8 +HOMEPAGE=https://wiki.gnome.org/Projects/NetworkManager +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=gnome.org gnome2-utils meson xdg +IUSE=appindicator modemmanager selinux teamd +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=GPL-2+ +RDEPEND=>=dev-libs/glib-2.40:2 >=app-crypt/libsecret-0.18 >=net-libs/libnma-1.10.4-r2 >=x11-libs/gtk+-3.10:3 >=dev-libs/libgudev-147:= >=net-misc/networkmanager-1.16[modemmanager?,teamd?] appindicator? ( dev-libs/libayatana-appindicator >=dev-libs/libdbusmenu-16.04.0 ) modemmanager? ( net-misc/modemmanager ) selinux? ( sys-libs/libselinux ) teamd? ( >=dev-libs/jansson-2.7:= ) virtual/freedesktop-icon-theme +SLOT=0 +SRC_URI=mirror://gnome/sources/network-manager-applet/1.32/network-manager-applet-1.32.0.tar.xz +_eclasses_=gnome.org 6b39404f1491c60a2d32e3c693a683fe gnome2-utils b0183db3b2e07b18f3b77bffec72e116 meson 915ec7c25e08d7886558215e6809ca1e multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=1b3ea1f38836b4603cbc5d3b1fb3610e diff --git a/metadata/md5-cache/gui-libs/Manifest.gz b/metadata/md5-cache/gui-libs/Manifest.gz index 423ad28fb141..815bc919dc8e 100644 Binary files a/metadata/md5-cache/gui-libs/Manifest.gz and b/metadata/md5-cache/gui-libs/Manifest.gz differ diff --git a/metadata/md5-cache/gui-libs/vte-0.72.1 b/metadata/md5-cache/gui-libs/vte-0.72.1 new file mode 100644 index 000000000000..503b7a6f6386 --- /dev/null +++ b/metadata/md5-cache/gui-libs/vte-0.72.1 @@ -0,0 +1,17 @@ +BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) dev-libs/libxml2:2 dev-util/glib-utils gtk-doc? ( dev-util/gi-docgen ) >=sys-devel/gettext-0.19.8 virtual/pkgconfig vala? ( || ( dev-lang/vala:0.56 ) ) app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test +DEPEND=>=gui-libs/gtk-4.0.1:4[introspection?] >=dev-libs/fribidi-1.0.0 >=dev-libs/glib-2.60:2 crypt? ( >=net-libs/gnutls-3.2.7:0= ) icu? ( dev-libs/icu:= ) >=x11-libs/pango-1.22.0 >=dev-libs/libpcre2-10.21:= systemd? ( >=sys-apps/systemd-220:= ) sys-libs/zlib introspection? ( >=dev-libs/gobject-introspection-1.56:= ) x11-libs/pango[introspection?] +DESCRIPTION=Library providing a virtual terminal emulator widget +EAPI=8 +HOMEPAGE=https://wiki.gnome.org/Apps/Terminal/VTE +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=gnome.org meson python-any-r1 vala xdg +IUSE=+crypt debug gtk-doc +icu +introspection systemd +vala vanilla +KEYWORDS=~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=LGPL-3+ GPL-3+ +RDEPEND=>=gui-libs/gtk-4.0.1:4[introspection?] >=dev-libs/fribidi-1.0.0 >=dev-libs/glib-2.60:2 crypt? ( >=net-libs/gnutls-3.2.7:0= ) icu? ( dev-libs/icu:= ) >=x11-libs/pango-1.22.0 >=dev-libs/libpcre2-10.21:= systemd? ( >=sys-apps/systemd-220:= ) sys-libs/zlib introspection? ( >=dev-libs/gobject-introspection-1.56:= ) x11-libs/pango[introspection?] ~gui-libs/vte-common-0.72.1[systemd?] +REQUIRED_USE=gtk-doc? ( introspection ) vala? ( introspection ) +SLOT=2.91-gtk4 +SRC_URI=https://gitlab.gnome.org/GNOME/vte/-/archive/0.72.1/vte-0.72.1.tar.bz2 !vanilla? ( https://dev.gentoo.org/~mattst88/distfiles/vte-0.70.0-command-notify.patch.xz ) +_eclasses_=gnome.org 6b39404f1491c60a2d32e3c693a683fe meson 915ec7c25e08d7886558215e6809ca1e multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e vala 1343f639cc74d2aa8b36fc08677da58d xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=f838e69749b0c0c2ea57dadd8bb4a2a4 diff --git a/metadata/md5-cache/gui-libs/vte-common-0.72.1 b/metadata/md5-cache/gui-libs/vte-common-0.72.1 new file mode 100644 index 000000000000..8b96ea6d8ed6 --- /dev/null +++ b/metadata/md5-cache/gui-libs/vte-common-0.72.1 @@ -0,0 +1,15 @@ +BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) dev-libs/libxml2:2 dev-util/glib-utils >=sys-devel/gettext-0.19.8 virtual/pkgconfig app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install prepare setup test +DEPEND=|| ( >=gui-libs/gtk-4.0.1:4 >=x11-libs/gtk+-3.24.22:3 ) >=dev-libs/fribidi-1.0.0 >=dev-libs/glib-2.60:2 >=x11-libs/pango-1.22.0 >=dev-libs/libpcre2-10.21 systemd? ( >=sys-apps/systemd-220:= ) sys-libs/zlib x11-libs/pango +DESCRIPTION=Library providing a virtual terminal emulator widget +EAPI=8 +HOMEPAGE=https://wiki.gnome.org/Apps/Terminal/VTE +INHERIT=gnome.org meson python-any-r1 +IUSE=systemd +KEYWORDS=~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=LGPL-3+ GPL-3+ +RDEPEND=!=dev-util/lxqt-build-tools-0.13.0 >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 kde-frameworks/kwindowsystem:5 >=x11-libs/libfm-qt-1.3:= +DESCRIPTION=Backend implementation for xdg-desktop-portal using Qt/KF5/libfm-qt +EAPI=8 +HOMEPAGE=https://lxqt-project.org/ +INHERIT=cmake +KEYWORDS=~amd64 ~arm64 ~loong ~riscv ~x86 +LICENSE=LGPL-2.1 +RDEPEND=dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 kde-frameworks/kwindowsystem:5 >=x11-libs/libfm-qt-1.3:= sys-apps/xdg-desktop-portal +SLOT=0 +SRC_URI=https://github.com/lxqt/xdg-desktop-portal-lxqt/releases/download/0.4.0/xdg-desktop-portal-lxqt-0.4.0.tar.xz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=36e2b40d6119e3a88d57bfc7f4f8728f diff --git a/metadata/md5-cache/gui-wm/Manifest.gz b/metadata/md5-cache/gui-wm/Manifest.gz index c5664ae5bc01..b80b771eaa47 100644 Binary files a/metadata/md5-cache/gui-wm/Manifest.gz and b/metadata/md5-cache/gui-wm/Manifest.gz differ diff --git a/metadata/md5-cache/gui-wm/wayfire-0.7.5 b/metadata/md5-cache/gui-wm/wayfire-0.7.5 index d849039da8c2..404831d86266 100644 --- a/metadata/md5-cache/gui-wm/wayfire-0.7.5 +++ b/metadata/md5-cache/gui-wm/wayfire-0.7.5 @@ -12,4 +12,4 @@ RDEPEND=dev-libs/libinput:= dev-libs/wayland gui-libs/gtk-layer-shell media-libs SLOT=0 SRC_URI=https://github.com/WayfireWM/wayfire/releases/download/v0.7.5/wayfire-0.7.5.tar.xz _eclasses_=meson 915ec7c25e08d7886558215e6809ca1e multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=a4dc0392308ff70022225628e0b322e7 +_md5_=e0ff059a13fd97df858260112ca97528 diff --git a/metadata/md5-cache/kde-plasma/Manifest.gz b/metadata/md5-cache/kde-plasma/Manifest.gz index cef62b23e019..e08fadca76f9 100644 Binary files a/metadata/md5-cache/kde-plasma/Manifest.gz and b/metadata/md5-cache/kde-plasma/Manifest.gz differ diff --git a/metadata/md5-cache/kde-plasma/plasma-firewall-5.27.4 b/metadata/md5-cache/kde-plasma/plasma-firewall-5.27.4 index 7a9155505e52..0df75247c77b 100644 --- a/metadata/md5-cache/kde-plasma/plasma-firewall-5.27.4 +++ b/metadata/md5-cache/kde-plasma/plasma-firewall-5.27.4 @@ -15,4 +15,4 @@ RESTRICT=!test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.27.4/plasma-firewall-5.27.4.tar.xz _eclasses_=cmake 7fb5980de96325cbab639f5b2187357c ecm 15862358f80ef4da6fd9d7dde64e9148 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a kde.org dc60243572471279b11120514b85b558 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 plasma.kde.org 53d92c8467317e55e197227d2ddef69a python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e virtualx 817571665ee28575da44ee08135089e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=e64f7e1f476169c035997e82183a881a +_md5_=3e43c306767a1b66a353acadf5475c39 diff --git a/metadata/md5-cache/lxqt-base/Manifest.gz b/metadata/md5-cache/lxqt-base/Manifest.gz index d463a1d2086c..3ade36d91f1c 100644 Binary files a/metadata/md5-cache/lxqt-base/Manifest.gz and b/metadata/md5-cache/lxqt-base/Manifest.gz differ diff --git a/metadata/md5-cache/lxqt-base/liblxqt-1.3.0 b/metadata/md5-cache/lxqt-base/liblxqt-1.3.0 new file mode 100644 index 000000000000..ee71d4cfcc0d --- /dev/null +++ b/metadata/md5-cache/lxqt-base/liblxqt-1.3.0 @@ -0,0 +1,15 @@ +BDEPEND=dev-qt/linguist-tools:5 >=dev-util/lxqt-build-tools-0.13.0 >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-libs/libqtxdg-3.11.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 >=dev-qt/qtxml-5.15:5 kde-frameworks/kwindowsystem:5[X] x11-libs/libX11 x11-libs/libXScrnSaver backlight? ( sys-auth/polkit-qt ) +DESCRIPTION=Common base library for the LXQt desktop environment +EAPI=8 +HOMEPAGE=https://lxqt-project.org/ +INHERIT=cmake +IUSE=+backlight +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86 +LICENSE=LGPL-2.1+ BSD +RDEPEND=>=dev-libs/libqtxdg-3.11.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 >=dev-qt/qtxml-5.15:5 kde-frameworks/kwindowsystem:5[X] x11-libs/libX11 x11-libs/libXScrnSaver backlight? ( sys-auth/polkit-qt ) +SLOT=0/1.3 +SRC_URI=https://github.com/lxqt/liblxqt/releases/download/1.3.0/liblxqt-1.3.0.tar.xz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=80cb9b3d59067ee8bb285f0ff84ef101 diff --git a/metadata/md5-cache/lxqt-base/lxqt-about-1.3.0 b/metadata/md5-cache/lxqt-base/lxqt-about-1.3.0 new file mode 100644 index 000000000000..545d536bd681 --- /dev/null +++ b/metadata/md5-cache/lxqt-base/lxqt-about-1.3.0 @@ -0,0 +1,14 @@ +BDEPEND=>=dev-util/lxqt-build-tools-0.13.0 >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-libs/libqtxdg-3.11.0 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 =lxqt-base/liblxqt-1.3*:= +DESCRIPTION=LXQt about dialog +EAPI=8 +HOMEPAGE=https://lxqt-project.org/ +INHERIT=cmake +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86 +LICENSE=LGPL-2.1+ +RDEPEND=>=dev-libs/libqtxdg-3.11.0 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 =lxqt-base/liblxqt-1.3*:= +SLOT=0 +SRC_URI=https://github.com/lxqt/lxqt-about/releases/download/1.3.0/lxqt-about-1.3.0.tar.xz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=390fb4a90e1620ab367b783d88be2bbb diff --git a/metadata/md5-cache/lxqt-base/lxqt-admin-1.3.0 b/metadata/md5-cache/lxqt-base/lxqt-admin-1.3.0 new file mode 100644 index 000000000000..fb55e1e97714 --- /dev/null +++ b/metadata/md5-cache/lxqt-base/lxqt-admin-1.3.0 @@ -0,0 +1,14 @@ +BDEPEND=>=dev-util/lxqt-build-tools-0.13.0 >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 =lxqt-base/liblxqt-1.3* kde-frameworks/kwindowsystem:5 >=sys-auth/polkit-qt-0.113.0 =lxqt-base/liblxqt-1.3*:= +DESCRIPTION=LXQt system administration tool +EAPI=8 +HOMEPAGE=https://lxqt-project.org/ +INHERIT=cmake +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~riscv ~x86 +LICENSE=LGPL-2.1+ +RDEPEND=>=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 =lxqt-base/liblxqt-1.3* kde-frameworks/kwindowsystem:5 >=sys-auth/polkit-qt-0.113.0 =lxqt-base/liblxqt-1.3*:= +SLOT=0 +SRC_URI=https://github.com/lxqt/lxqt-admin/releases/download/1.3.0/lxqt-admin-1.3.0.tar.xz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=cecad348bd1d8a74b7f19ccd4ec65d5d diff --git a/metadata/md5-cache/lxqt-base/lxqt-config-1.3.0 b/metadata/md5-cache/lxqt-base/lxqt-config-1.3.0 new file mode 100644 index 000000000000..2ca3e64a808f --- /dev/null +++ b/metadata/md5-cache/lxqt-base/lxqt-config-1.3.0 @@ -0,0 +1,15 @@ +BDEPEND=>=dev-qt/linguist-tools-5.15:5 >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install postinst postrm prepare test +DEPEND=>=dev-libs/libqtxdg-3.11.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtsvg-5.15:5 >=dev-qt/qtx11extras-5.15:5 >=dev-qt/qtxml-5.15:5 =lxqt-base/liblxqt-1.3*:= sys-libs/zlib:= x11-apps/setxkbmap x11-libs/libxcb:= x11-libs/libX11 x11-libs/libXcursor x11-libs/libXfixes monitor? ( kde-plasma/libkscreen:5= ) touchpad? ( virtual/libudev:= x11-drivers/xf86-input-libinput x11-libs/libXi ) +DESCRIPTION=LXQt system configuration control center +EAPI=8 +HOMEPAGE=https://lxqt-project.org/ +INHERIT=cmake xdg-utils +IUSE=+monitor +touchpad +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86 +LICENSE=GPL-2 GPL-2+ GPL-3 LGPL-2 LGPL-2+ LGPL-2.1+ WTFPL-2 +RDEPEND=>=dev-libs/libqtxdg-3.11.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtsvg-5.15:5 >=dev-qt/qtx11extras-5.15:5 >=dev-qt/qtxml-5.15:5 =lxqt-base/liblxqt-1.3*:= sys-libs/zlib:= x11-apps/setxkbmap x11-libs/libxcb:= x11-libs/libX11 x11-libs/libXcursor x11-libs/libXfixes monitor? ( kde-plasma/libkscreen:5= ) touchpad? ( virtual/libudev:= x11-drivers/xf86-input-libinput x11-libs/libXi ) +SLOT=0 +SRC_URI=https://github.com/lxqt/lxqt-config/releases/download/1.3.0/lxqt-config-1.3.0.tar.xz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=0e1bd5e89b92c8310825080d6f14ba0c diff --git a/metadata/md5-cache/lxqt-base/lxqt-globalkeys-1.3.0 b/metadata/md5-cache/lxqt-base/lxqt-globalkeys-1.3.0 new file mode 100644 index 000000000000..48442a16eafa --- /dev/null +++ b/metadata/md5-cache/lxqt-base/lxqt-globalkeys-1.3.0 @@ -0,0 +1,14 @@ +BDEPEND=>=dev-qt/linguist-tools-5.15:5 >=dev-util/lxqt-build-tools-0.13.0 >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 kde-frameworks/kwindowsystem:5 =lxqt-base/liblxqt-1.3*:= x11-libs/libX11 +DESCRIPTION=Daemon and library for global keyboard shortcuts registration +EAPI=8 +HOMEPAGE=https://lxqt-project.org/ +INHERIT=cmake +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86 +LICENSE=LGPL-2.1 LGPL-2.1+ +RDEPEND=>=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 kde-frameworks/kwindowsystem:5 =lxqt-base/liblxqt-1.3*:= x11-libs/libX11 +SLOT=0 +SRC_URI=https://github.com/lxqt/lxqt-globalkeys/releases/download/1.3.0/lxqt-globalkeys-1.3.0.tar.xz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=bf4c46f169c1c594ab9a247f675b348f diff --git a/metadata/md5-cache/lxqt-base/lxqt-meta-1.3.0 b/metadata/md5-cache/lxqt-base/lxqt-meta-1.3.0 new file mode 100644 index 000000000000..043dc1b4b085 --- /dev/null +++ b/metadata/md5-cache/lxqt-base/lxqt-meta-1.3.0 @@ -0,0 +1,11 @@ +DEFINED_PHASES=- +DESCRIPTION=Meta ebuild for LXQt, the Lightweight Desktop Environment +EAPI=8 +HOMEPAGE=https://lxqt-project.org/ +IUSE=+about admin archiver +desktop-portal +display-manager +filemanager lximage minimal nls +policykit powermanagement processviewer screenshot +sddm ssh-askpass sudo terminal +trash +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86 +LICENSE=metapackage +RDEPEND=kde-frameworks/oxygen-icons >=lxde-base/lxmenu-data-0.1.5 =lxqt-base/lxqt-config-1.3* =lxqt-base/lxqt-globalkeys-1.3* =lxqt-base/lxqt-notificationd-1.3* =lxqt-base/lxqt-panel-1.3* =lxqt-base/lxqt-qtplugin-1.3* =lxqt-base/lxqt-runner-1.3* =lxqt-base/lxqt-session-1.3* virtual/ttf-fonts x11-terms/xterm =x11-themes/lxqt-themes-1.3* about? ( =lxqt-base/lxqt-about-1.3* ) admin? ( =lxqt-base/lxqt-admin-1.3* ) archiver? ( app-arch/lxqt-archiver ) desktop-portal? ( gui-libs/xdg-desktop-portal-lxqt ) display-manager? ( sddm? ( >=x11-misc/sddm-0.11.0 ) !sddm? ( x11-misc/lightdm ) ) filemanager? ( =x11-misc/pcmanfm-qt-1.3* ) lximage? ( media-gfx/lximage-qt ) !minimal? ( x11-wm/openbox x11-misc/obconf-qt ) nls? ( dev-qt/qttranslations:5 ) policykit? ( =lxqt-base/lxqt-policykit-1.3* ) powermanagement? ( =lxqt-base/lxqt-powermanagement-1.3* ) processviewer? ( x11-misc/qps:0 ) screenshot? ( x11-misc/screengrab:0 ) sddm? ( >=x11-misc/sddm-0.11.0 ) ssh-askpass? ( =lxqt-base/lxqt-openssh-askpass-1.3* ) sudo? ( =lxqt-base/lxqt-sudo-1.3* ) terminal? ( x11-terms/qterminal:0 ) trash? ( gnome-base/gvfs ) +REQUIRED_USE=trash? ( filemanager ) +SLOT=0 +_md5_=b014e444af22f0d5055a0077bb83f51f diff --git a/metadata/md5-cache/lxqt-base/lxqt-notificationd-1.3.0 b/metadata/md5-cache/lxqt-base/lxqt-notificationd-1.3.0 new file mode 100644 index 000000000000..ba2936b4f2f5 --- /dev/null +++ b/metadata/md5-cache/lxqt-base/lxqt-notificationd-1.3.0 @@ -0,0 +1,14 @@ +BDEPEND=dev-qt/linguist-tools:5 >=dev-util/lxqt-build-tools-0.13.0 >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-libs/libqtxdg-3.11.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 kde-frameworks/kwindowsystem:5 =lxqt-base/liblxqt-1.3*:= +DESCRIPTION=LXQt notification daemon and library +EAPI=8 +HOMEPAGE=https://lxqt-project.org/ +INHERIT=cmake +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86 +LICENSE=LGPL-2.1 LGPL-2.1+ +RDEPEND=>=dev-libs/libqtxdg-3.11.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 kde-frameworks/kwindowsystem:5 =lxqt-base/liblxqt-1.3*:= +SLOT=0 +SRC_URI=https://github.com/lxqt/lxqt-notificationd/releases/download/1.3.0/lxqt-notificationd-1.3.0.tar.xz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=e105c678215792b8dae5532d1b13312e diff --git a/metadata/md5-cache/lxqt-base/lxqt-openssh-askpass-1.3.0 b/metadata/md5-cache/lxqt-base/lxqt-openssh-askpass-1.3.0 new file mode 100644 index 000000000000..f5aa894597f6 --- /dev/null +++ b/metadata/md5-cache/lxqt-base/lxqt-openssh-askpass-1.3.0 @@ -0,0 +1,14 @@ +BDEPEND=>=dev-qt/linguist-tools-5.15:5 >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-qt/qtcore-5.15:5 >=dev-qt/qtwidgets-5.15:5 =lxqt-base/liblxqt-1.3*:= +DESCRIPTION=LXQt OpenSSH user password prompt tool +EAPI=8 +HOMEPAGE=https://lxqt-project.org/ +INHERIT=cmake +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86 +LICENSE=LGPL-2.1 LGPL-2.1+ +RDEPEND=>=dev-qt/qtcore-5.15:5 >=dev-qt/qtwidgets-5.15:5 =lxqt-base/liblxqt-1.3*:= +SLOT=0 +SRC_URI=https://github.com/lxqt/lxqt-openssh-askpass/releases/download/1.3.0/lxqt-openssh-askpass-1.3.0.tar.xz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=c0d3503c0c750452a9059770ee83378b diff --git a/metadata/md5-cache/lxqt-base/lxqt-panel-1.3.0 b/metadata/md5-cache/lxqt-base/lxqt-panel-1.3.0 new file mode 100644 index 000000000000..cb7c96becfa7 --- /dev/null +++ b/metadata/md5-cache/lxqt-base/lxqt-panel-1.3.0 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-qt/linguist-tools-5.15:5 >=dev-util/lxqt-build-tools-0.13.0 virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-libs/libqtxdg-3.11.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtsvg-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 >=dev-qt/qtxml-5.15:5 kde-frameworks/kwindowsystem:5[X] >=lxde-base/lxmenu-data-0.1.5 >=lxde-base/menu-cache-1.1.0 =lxqt-base/liblxqt-1.3*:= =lxqt-base/lxqt-globalkeys-1.3* x11-libs/libX11 cpuload? ( sys-libs/libstatgrab ) kbindicator? ( x11-libs/libxkbcommon ) lm-sensors? ( sys-apps/lm-sensors:= ) mount? ( kde-frameworks/solid:5 ) networkmonitor? ( sys-libs/libstatgrab ) statusnotifier? ( dev-libs/libdbusmenu-qt[qt5(+)] >=dev-qt/qtconcurrent-5.15:5 ) sysstat? ( >=lxqt-base/libsysstat-0.4.6 ) tray? ( x11-libs/libxcb:= x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXrender x11-libs/xcb-util ) volume? ( alsa? ( media-libs/alsa-lib ) pulseaudio? ( media-sound/pavucontrol-qt media-sound/pulseaudio ) ) +DESCRIPTION=LXQt desktop panel and plugins +EAPI=8 +HOMEPAGE=https://lxqt-project.org/ +INHERIT=cmake +IUSE=+alsa colorpicker cpuload +desktopswitch +directorymenu dom +kbindicator +mainmenu +mount networkmonitor pulseaudio +quicklaunch lm-sensors +showdesktop +spacer +statusnotifier sysstat +taskbar tray +volume +worldclock +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86 +LICENSE=LGPL-2.1 LGPL-2.1+ +RDEPEND=>=dev-libs/libqtxdg-3.11.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtsvg-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 >=dev-qt/qtxml-5.15:5 kde-frameworks/kwindowsystem:5[X] >=lxde-base/lxmenu-data-0.1.5 >=lxde-base/menu-cache-1.1.0 =lxqt-base/liblxqt-1.3*:= =lxqt-base/lxqt-globalkeys-1.3* x11-libs/libX11 cpuload? ( sys-libs/libstatgrab ) kbindicator? ( x11-libs/libxkbcommon ) lm-sensors? ( sys-apps/lm-sensors:= ) mount? ( kde-frameworks/solid:5 ) networkmonitor? ( sys-libs/libstatgrab ) statusnotifier? ( dev-libs/libdbusmenu-qt[qt5(+)] >=dev-qt/qtconcurrent-5.15:5 ) sysstat? ( >=lxqt-base/libsysstat-0.4.6 ) tray? ( x11-libs/libxcb:= x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXrender x11-libs/xcb-util ) volume? ( alsa? ( media-libs/alsa-lib ) pulseaudio? ( media-sound/pavucontrol-qt media-sound/pulseaudio ) ) +REQUIRED_USE=|| ( desktopswitch mainmenu showdesktop taskbar ) volume? ( || ( alsa pulseaudio ) ) +SLOT=0 +SRC_URI=https://github.com/lxqt/lxqt-panel/releases/download/1.3.0/lxqt-panel-1.3.0.tar.xz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=2605b155459957966c6be94dde9eb23d diff --git a/metadata/md5-cache/lxqt-base/lxqt-policykit-1.3.0 b/metadata/md5-cache/lxqt-base/lxqt-policykit-1.3.0 new file mode 100644 index 000000000000..20dec111e563 --- /dev/null +++ b/metadata/md5-cache/lxqt-base/lxqt-policykit-1.3.0 @@ -0,0 +1,14 @@ +BDEPEND=>=dev-qt/linguist-tools-5.15:5 >=dev-util/lxqt-build-tools-0.13.0 virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 =lxqt-base/liblxqt-1.3*:= >=sys-auth/polkit-qt-0.113.0 +DESCRIPTION=LXQt PolKit authentication agent +EAPI=8 +HOMEPAGE=https://lxqt-project.org/ +INHERIT=cmake +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86 +LICENSE=LGPL-2.1 LGPL-2.1+ +RDEPEND=>=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 =lxqt-base/liblxqt-1.3*:= >=sys-auth/polkit-qt-0.113.0 +SLOT=0 +SRC_URI=https://github.com/lxqt/lxqt-policykit/releases/download/1.3.0/lxqt-policykit-1.3.0.tar.xz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=42efee0bdd472ce5a94e8895dae06255 diff --git a/metadata/md5-cache/lxqt-base/lxqt-powermanagement-1.3.0 b/metadata/md5-cache/lxqt-base/lxqt-powermanagement-1.3.0 new file mode 100644 index 000000000000..264ecd40a5cc --- /dev/null +++ b/metadata/md5-cache/lxqt-base/lxqt-powermanagement-1.3.0 @@ -0,0 +1,14 @@ +BDEPEND=>=dev-qt/linguist-tools-5.15:5 >=dev-util/lxqt-build-tools-0.13.0 virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install postinst postrm prepare test +DEPEND=>=dev-libs/libqtxdg-3.11.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtsvg-5.15:5 >=dev-qt/qtwidgets-5.15:5 kde-frameworks/kwindowsystem:5 kde-frameworks/kidletime:5 kde-frameworks/solid:5 =lxqt-base/liblxqt-1.3*:= =lxqt-base/lxqt-globalkeys-1.3* sys-power/upower +DESCRIPTION=LXQt daemon for power management and auto-suspend +EAPI=8 +HOMEPAGE=https://lxqt-project.org/ +INHERIT=cmake xdg-utils +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~riscv ~x86 +LICENSE=LGPL-2.1 LGPL-2.1+ +RDEPEND=>=dev-libs/libqtxdg-3.11.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtsvg-5.15:5 >=dev-qt/qtwidgets-5.15:5 kde-frameworks/kwindowsystem:5 kde-frameworks/kidletime:5 kde-frameworks/solid:5 =lxqt-base/liblxqt-1.3*:= =lxqt-base/lxqt-globalkeys-1.3* sys-power/upower +SLOT=0 +SRC_URI=https://github.com/lxqt/lxqt-powermanagement/releases/download/1.3.0/lxqt-powermanagement-1.3.0.tar.xz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=54b5cfe67914e3d53926473778757149 diff --git a/metadata/md5-cache/lxqt-base/lxqt-qtplugin-1.3.0 b/metadata/md5-cache/lxqt-base/lxqt-qtplugin-1.3.0 new file mode 100644 index 000000000000..72121acbd8dc --- /dev/null +++ b/metadata/md5-cache/lxqt-base/lxqt-qtplugin-1.3.0 @@ -0,0 +1,14 @@ +BDEPEND=>=dev-qt/linguist-tools-5.15:5 >=dev-util/lxqt-build-tools-0.13.0 >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-libs/libdbusmenu-qt[qt5(+)] >=dev-libs/libqtxdg-3.11.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5= >=dev-qt/qtwidgets-5.15:5 =x11-libs/libfm-qt-1.3* +DESCRIPTION=LXQt system integration plugin for Qt +EAPI=8 +HOMEPAGE=https://lxqt-project.org/ +INHERIT=cmake +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86 +LICENSE=LGPL-2.1+ +RDEPEND=dev-libs/libdbusmenu-qt[qt5(+)] >=dev-libs/libqtxdg-3.11.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5= >=dev-qt/qtwidgets-5.15:5 =x11-libs/libfm-qt-1.3* +SLOT=0 +SRC_URI=https://github.com/lxqt/lxqt-qtplugin/releases/download/1.3.0/lxqt-qtplugin-1.3.0.tar.xz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=459d8ff7bdc2b19c6631f3f62216d8fe diff --git a/metadata/md5-cache/lxqt-base/lxqt-runner-1.3.0 b/metadata/md5-cache/lxqt-base/lxqt-runner-1.3.0 new file mode 100644 index 000000000000..3e2151983c63 --- /dev/null +++ b/metadata/md5-cache/lxqt-base/lxqt-runner-1.3.0 @@ -0,0 +1,14 @@ +BDEPEND=>=dev-qt/linguist-tools-5.15:5 >=dev-util/lxqt-build-tools-0.13.0 virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-cpp/muParser-2.2.3 >=dev-libs/libqtxdg-3.11.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtxml-5.15:5 kde-frameworks/kwindowsystem:5 =lxqt-base/liblxqt-1.3*:= =lxqt-base/lxqt-globalkeys-1.3* +DESCRIPTION=LXQt quick launcher +EAPI=8 +HOMEPAGE=https://lxqt-project.org/ +INHERIT=cmake +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86 +LICENSE=LGPL-2.1 LGPL-2.1+ +RDEPEND=>=dev-cpp/muParser-2.2.3 >=dev-libs/libqtxdg-3.11.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtxml-5.15:5 kde-frameworks/kwindowsystem:5 =lxqt-base/liblxqt-1.3*:= =lxqt-base/lxqt-globalkeys-1.3* +SLOT=0 +SRC_URI=https://github.com/lxqt/lxqt-runner/releases/download/1.3.0/lxqt-runner-1.3.0.tar.xz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=a55d5cd30085e42e4a7a019f68338176 diff --git a/metadata/md5-cache/lxqt-base/lxqt-session-1.3.0 b/metadata/md5-cache/lxqt-base/lxqt-session-1.3.0 new file mode 100644 index 000000000000..1518f2847551 --- /dev/null +++ b/metadata/md5-cache/lxqt-base/lxqt-session-1.3.0 @@ -0,0 +1,15 @@ +BDEPEND=>=dev-qt/linguist-tools-5.15:5 >=dev-util/lxqt-build-tools-0.13.0 >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=app-misc/qtxdg-tools-3.11.0 >=dev-libs/libqtxdg-3.11.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 kde-frameworks/kwindowsystem:5[X] =lxqt-base/liblxqt-1.3*:= sys-process/procps:= x11-libs/libX11 x11-misc/xdg-user-dirs udev? ( virtual/libudev:= ) +DESCRIPTION=LXQt Session Manager +EAPI=8 +HOMEPAGE=https://lxqt-project.org/ +INHERIT=cmake +IUSE=+udev +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86 +LICENSE=LGPL-2.1 LGPL-2.1+ +RDEPEND=>=app-misc/qtxdg-tools-3.11.0 >=dev-libs/libqtxdg-3.11.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 kde-frameworks/kwindowsystem:5[X] =lxqt-base/liblxqt-1.3*:= sys-process/procps:= x11-libs/libX11 x11-misc/xdg-user-dirs udev? ( virtual/libudev:= ) +SLOT=0 +SRC_URI=https://github.com/lxqt/lxqt-session/releases/download/1.3.0/lxqt-session-1.3.0.tar.xz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=fe41d4a6862550975f3f85642cc136da diff --git a/metadata/md5-cache/lxqt-base/lxqt-sudo-1.3.0 b/metadata/md5-cache/lxqt-base/lxqt-sudo-1.3.0 new file mode 100644 index 000000000000..5de8234931af --- /dev/null +++ b/metadata/md5-cache/lxqt-base/lxqt-sudo-1.3.0 @@ -0,0 +1,14 @@ +BDEPEND=>=dev-util/lxqt-build-tools-0.13.0 >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install prepare test +DEPEND=app-admin/sudo >=dev-qt/qtgui-5.15:5 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtwidgets-5.15:5 ~lxqt-base/liblxqt-1.3.0:= +DESCRIPTION=LXQt GUI frontend for sudo +EAPI=8 +HOMEPAGE=https://lxqt-project.org/ +INHERIT=cmake +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~riscv ~x86 +LICENSE=LGPL-2.1 LGPL-2.1+ +RDEPEND=app-admin/sudo >=dev-qt/qtgui-5.15:5 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtwidgets-5.15:5 ~lxqt-base/liblxqt-1.3.0:= +SLOT=0 +SRC_URI=https://github.com/lxqt/lxqt-sudo/releases/download/1.3.0/lxqt-sudo-1.3.0.tar.xz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=9b509e35a5a87265f084f5089626fea2 diff --git a/metadata/md5-cache/mail-client/Manifest.gz b/metadata/md5-cache/mail-client/Manifest.gz index eee6dbc6521c..0d857c38b590 100644 Binary files a/metadata/md5-cache/mail-client/Manifest.gz and b/metadata/md5-cache/mail-client/Manifest.gz differ diff --git a/metadata/md5-cache/mail-client/aerc-0.12.0-r1 b/metadata/md5-cache/mail-client/aerc-0.12.0-r1 index 360872270142..f403f031c396 100644 --- a/metadata/md5-cache/mail-client/aerc-0.12.0-r1 +++ b/metadata/md5-cache/mail-client/aerc-0.12.0-r1 @@ -13,5 +13,5 @@ RDEPEND=notmuch? ( net-mail/notmuch:= ) RESTRICT=strip SLOT=0 SRC_URI=https://git.sr.ht/~rjarry/aerc/archive/0.12.0.tar.gz -> aerc-0.12.0.tar.gz https://dev.gentoo.org/~williamh/dist/aerc-0.12.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=35cff4f3501c9a7013ec983173393e68 diff --git a/metadata/md5-cache/mail-client/aerc-0.14.0 b/metadata/md5-cache/mail-client/aerc-0.14.0 index 257464389861..7f2e7646f6b2 100644 --- a/metadata/md5-cache/mail-client/aerc-0.14.0 +++ b/metadata/md5-cache/mail-client/aerc-0.14.0 @@ -13,5 +13,5 @@ RDEPEND=notmuch? ( net-mail/notmuch:= ) RESTRICT=strip SLOT=0 SRC_URI=https://git.sr.ht/~rjarry/aerc/archive/0.14.0.tar.gz -> aerc-0.14.0.tar.gz https://dev.gentoo.org/~williamh/dist/aerc-0.14.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=ab63709b44d72f431e1cea4f7468e90a diff --git a/metadata/md5-cache/mail-client/aerc-9999 b/metadata/md5-cache/mail-client/aerc-9999 index e81742cd2a8d..bc6d89eb7c3f 100644 --- a/metadata/md5-cache/mail-client/aerc-9999 +++ b/metadata/md5-cache/mail-client/aerc-9999 @@ -12,5 +12,5 @@ PROPERTIES=live RDEPEND=notmuch? ( net-mail/notmuch:= ) RESTRICT=strip SLOT=0 -_eclasses_=git-r3 27e13c09a4c7e4c78ac812f74727e676 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=git-r3 27e13c09a4c7e4c78ac812f74727e676 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=35cff4f3501c9a7013ec983173393e68 diff --git a/metadata/md5-cache/mail-mta/Manifest.gz b/metadata/md5-cache/mail-mta/Manifest.gz index eb81b729e091..10c3eebafada 100644 Binary files a/metadata/md5-cache/mail-mta/Manifest.gz and b/metadata/md5-cache/mail-mta/Manifest.gz differ diff --git a/metadata/md5-cache/mail-mta/postfix-3.8.0_rc1 b/metadata/md5-cache/mail-mta/postfix-3.8.0 similarity index 98% rename from metadata/md5-cache/mail-mta/postfix-3.8.0_rc1 rename to metadata/md5-cache/mail-mta/postfix-3.8.0 index 8948d5420b21..c4f465f23b88 100644 --- a/metadata/md5-cache/mail-mta/postfix-3.8.0_rc1 +++ b/metadata/md5-cache/mail-mta/postfix-3.8.0 @@ -11,6 +11,6 @@ LICENSE=|| ( IBM EPL-2.0 ) RDEPEND=acct-group/postfix acct-group/postdrop acct-user/postfix dev-libs/libpcre2:0 dev-lang/perl berkdb? ( >=sys-libs/db-3.2:* ) cdb? ( || ( >=dev-db/tinycdb-0.76 >=dev-db/cdb-0.75-r4 ) ) eai? ( dev-libs/icu:= ) ldap? ( net-nds/openldap:= ) ldap-bind? ( net-nds/openldap:=[sasl] ) lmdb? ( >=dev-db/lmdb-0.9.11:= ) mysql? ( dev-db/mysql-connector-c:0= ) nis? ( net-libs/libnsl:= ) pam? ( sys-libs/pam ) postgres? ( dev-db/postgresql:* ) sasl? ( >=dev-libs/cyrus-sasl-2 ) sqlite? ( dev-db/sqlite:3 ) ssl? ( >=dev-libs/openssl-1.1.1:0= ) memcached? ( net-misc/memcached ) net-mail/mailbase !mail-mta/courier !mail-mta/esmtp !mail-mta/exim !mail-mta/msmtp[mta] !mail-mta/netqmail !mail-mta/nullmailer !mail-mta/sendmail !mail-mta/opensmtpd !mail-mta/ssmtp[mta] selinux? ( sec-policy/selinux-postfix ) REQUIRED_USE=|| ( berkdb cdb lmdb ) ldap-bind? ( ldap sasl ) SLOT=0 -SRC_URI=ftp://ftp.porcupine.org/mirrors/postfix-release/official/postfix-3.8.0-RC1.tar.gz +SRC_URI=ftp://ftp.porcupine.org/mirrors/postfix-release/official/postfix-3.8.0.tar.gz _eclasses_=flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 pam 4efe951aa8ce2c16288d7c915196fe29 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=34f23aed7efd155c5d04582922afb8d2 diff --git a/metadata/md5-cache/mail-mta/postfix-3.9_pre20230412 b/metadata/md5-cache/mail-mta/postfix-3.9_pre20230416 similarity index 98% rename from metadata/md5-cache/mail-mta/postfix-3.9_pre20230412 rename to metadata/md5-cache/mail-mta/postfix-3.9_pre20230416 index 9afd571dd2e2..68c839208b20 100644 --- a/metadata/md5-cache/mail-mta/postfix-3.9_pre20230412 +++ b/metadata/md5-cache/mail-mta/postfix-3.9_pre20230416 @@ -11,6 +11,6 @@ LICENSE=|| ( IBM EPL-2.0 ) RDEPEND=acct-group/postfix acct-group/postdrop acct-user/postfix dev-libs/libpcre2:0 dev-lang/perl berkdb? ( >=sys-libs/db-3.2:* ) cdb? ( || ( >=dev-db/tinycdb-0.76 >=dev-db/cdb-0.75-r4 ) ) eai? ( dev-libs/icu:= ) ldap? ( net-nds/openldap:= ) ldap-bind? ( net-nds/openldap:=[sasl] ) lmdb? ( >=dev-db/lmdb-0.9.11:= ) mysql? ( dev-db/mysql-connector-c:0= ) nis? ( net-libs/libnsl:= ) pam? ( sys-libs/pam ) postgres? ( dev-db/postgresql:* ) sasl? ( >=dev-libs/cyrus-sasl-2 ) sqlite? ( dev-db/sqlite:3 ) ssl? ( >=dev-libs/openssl-1.1.1:0= ) memcached? ( net-misc/memcached ) net-mail/mailbase !mail-mta/courier !mail-mta/esmtp !mail-mta/exim !mail-mta/msmtp[mta] !mail-mta/netqmail !mail-mta/nullmailer !mail-mta/sendmail !mail-mta/opensmtpd !mail-mta/ssmtp[mta] selinux? ( sec-policy/selinux-postfix ) REQUIRED_USE=|| ( berkdb cdb lmdb ) ldap-bind? ( ldap sasl ) SLOT=0 -SRC_URI=ftp://ftp.porcupine.org/mirrors/postfix-release/experimental/postfix-3.9-20230412.tar.gz +SRC_URI=ftp://ftp.porcupine.org/mirrors/postfix-release/experimental/postfix-3.9-20230416.tar.gz _eclasses_=flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 pam 4efe951aa8ce2c16288d7c915196fe29 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=309c87e1dbbfaca113e1b39855a03954 diff --git a/metadata/md5-cache/mail-mta/proton-mail-bridge-2.3.0 b/metadata/md5-cache/mail-mta/proton-mail-bridge-2.3.0 index c84c033e969f..837eca5ef02b 100644 --- a/metadata/md5-cache/mail-mta/proton-mail-bridge-2.3.0 +++ b/metadata/md5-cache/mail-mta/proton-mail-bridge-2.3.0 @@ -13,5 +13,5 @@ RDEPEND=app-crypt/libsecret RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/ProtonMail/proton-bridge/archive/refs/tags/v2.3.0.tar.gz -> proton-mail-bridge-2.3.0.tar.gz https://dev.gentoo.org/~marecki/dists/mail-mta/proton-mail-bridge/proton-mail-bridge-2.3.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=42a322da07d9a2db8c0829471733c6f0 diff --git a/metadata/md5-cache/mail-mta/proton-mail-bridge-3.0.21-r1 b/metadata/md5-cache/mail-mta/proton-mail-bridge-3.0.21-r1 index 13285c1e94d1..bf4139603920 100644 --- a/metadata/md5-cache/mail-mta/proton-mail-bridge-3.0.21-r1 +++ b/metadata/md5-cache/mail-mta/proton-mail-bridge-3.0.21-r1 @@ -13,5 +13,5 @@ RDEPEND=app-crypt/libsecret RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/ProtonMail/proton-bridge/archive/refs/tags/v3.0.21.tar.gz -> proton-mail-bridge-3.0.21.tar.gz https://dev.gentoo.org/~marecki/dists/mail-mta/proton-mail-bridge/proton-mail-bridge-3.0.21-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=080342a594f6546378c9add6d0a37846 diff --git a/metadata/md5-cache/media-fonts/Manifest.gz b/metadata/md5-cache/media-fonts/Manifest.gz index fa444b82a9c6..78509a3d957c 100644 Binary files a/metadata/md5-cache/media-fonts/Manifest.gz and b/metadata/md5-cache/media-fonts/Manifest.gz differ diff --git a/metadata/md5-cache/media-fonts/noto-20230201 b/metadata/md5-cache/media-fonts/noto-20230201 index f6a2ad3d2c42..82d3860185d0 100644 --- a/metadata/md5-cache/media-fonts/noto-20230201 +++ b/metadata/md5-cache/media-fonts/noto-20230201 @@ -5,11 +5,11 @@ EAPI=8 HOMEPAGE=https://www.google.com/get/noto/ https://github.com/notofonts/notofonts.github.io INHERIT=font IUSE=cjk +extra X -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 +KEYWORDS=~alpha amd64 arm arm64 ~loong ~mips ~ppc ppc64 ~riscv sparc x86 LICENSE=OFL-1.1 RDEPEND=cjk? ( media-fonts/noto-cjk ) RESTRICT=binchecks strip SLOT=0 SRC_URI=https://github.com/notofonts/notofonts.github.io/archive/f589dbf1a59852047e5e506bf8f3ee93be8d6cce.tar.gz -> noto-20230201.tar.gz _eclasses_=font aa113a3df9cd0a9693a1c1ee7c34a6eb -_md5_=5b3641624a97f7ee0fae1da6c8095b47 +_md5_=dad96259e14fa317bf3f7c2d03da2981 diff --git a/metadata/md5-cache/media-fonts/noto-20230331 b/metadata/md5-cache/media-fonts/noto-20230331 new file mode 100644 index 000000000000..f877554f7aea --- /dev/null +++ b/metadata/md5-cache/media-fonts/noto-20230331 @@ -0,0 +1,15 @@ +BDEPEND=X? ( >=x11-apps/mkfontscale-1.2.0 media-fonts/encodings ) +DEFINED_PHASES=install postinst postrm setup +DESCRIPTION=Google's font family that aims to support all the world's languages +EAPI=8 +HOMEPAGE=https://www.google.com/get/noto/ https://github.com/notofonts/notofonts.github.io +INHERIT=font +IUSE=cjk +extra X +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=OFL-1.1 +RDEPEND=cjk? ( media-fonts/noto-cjk ) +RESTRICT=binchecks strip +SLOT=0 +SRC_URI=https://github.com/notofonts/notofonts.github.io/archive/021feeb29f58d54a45449c89f53d17b5bfa9fd56.tar.gz -> noto-20230331.tar.gz +_eclasses_=font aa113a3df9cd0a9693a1c1ee7c34a6eb +_md5_=3a8d80c7e33df962bcef6833c8e0d237 diff --git a/metadata/md5-cache/media-gfx/Manifest.gz b/metadata/md5-cache/media-gfx/Manifest.gz index ad3ab20e30eb..27f200766f46 100644 Binary files a/metadata/md5-cache/media-gfx/Manifest.gz and b/metadata/md5-cache/media-gfx/Manifest.gz differ diff --git a/metadata/md5-cache/media-gfx/asymptote-2.83 b/metadata/md5-cache/media-gfx/asymptote-2.83 index 88bcf55f2850..91147a518a2d 100644 --- a/metadata/md5-cache/media-gfx/asymptote-2.83 +++ b/metadata/md5-cache/media-gfx/asymptote-2.83 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 ) offscreen RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/asymptote/asymptote-2.83.src.tgz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a eapi8-dosym 741bfa77afb2a9321261501aca58c208 elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 latex-package c20e442c3953c765f636630631c96194 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a eapi8-dosym 741bfa77afb2a9321261501aca58c208 elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 latex-package c20e442c3953c765f636630631c96194 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=dd7c7f7fd4c4b6ffaf489a1449b5d88a diff --git a/metadata/md5-cache/media-gfx/asymptote-2.85-r1 b/metadata/md5-cache/media-gfx/asymptote-2.85-r1 index 015083efe808..04bc3fefc3ba 100644 --- a/metadata/md5-cache/media-gfx/asymptote-2.85-r1 +++ b/metadata/md5-cache/media-gfx/asymptote-2.85-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/asymptote/asymptote-2.85.src.tgz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 latex-package c20e442c3953c765f636630631c96194 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 latex-package c20e442c3953c765f636630631c96194 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=c4792a82a745bf7e8fe4d2c7ce1b56c3 diff --git a/metadata/md5-cache/media-gfx/lximage-qt-1.3.0 b/metadata/md5-cache/media-gfx/lximage-qt-1.3.0 new file mode 100644 index 000000000000..a5e555bf5da3 --- /dev/null +++ b/metadata/md5-cache/media-gfx/lximage-qt-1.3.0 @@ -0,0 +1,14 @@ +BDEPEND=>=dev-qt/linguist-tools-5.15:5 >=dev-util/lxqt-build-tools-0.13.0 virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install postinst postrm prepare test +DEPEND=dev-libs/glib:2 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtnetwork-5.15:5 >=dev-qt/qtprintsupport-5.15:5 >=dev-qt/qtsvg-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 media-libs/libexif =x11-libs/libfm-qt-1.3*:= x11-libs/libX11 x11-libs/libXfixes +DESCRIPTION=Qt Image Viewer +EAPI=8 +HOMEPAGE=https://lxqt-project.org/ +INHERIT=cmake xdg-utils +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86 +LICENSE=GPL-2 GPL-2+ +RDEPEND=dev-libs/glib:2 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtnetwork-5.15:5 >=dev-qt/qtprintsupport-5.15:5 >=dev-qt/qtsvg-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 media-libs/libexif =x11-libs/libfm-qt-1.3*:= x11-libs/libX11 x11-libs/libXfixes +SLOT=0 +SRC_URI=https://github.com/lxqt/lximage-qt/releases/download/1.3.0/lximage-qt-1.3.0.tar.xz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=03fabc1e241ddf69205b9071f8739e05 diff --git a/metadata/md5-cache/media-gfx/openscad-2021.01-r4 b/metadata/md5-cache/media-gfx/openscad-2021.01-r4 index aa1d3e90b32a..86a97ae779bc 100644 --- a/metadata/md5-cache/media-gfx/openscad-2021.01-r4 +++ b/metadata/md5-cache/media-gfx/openscad-2021.01-r4 @@ -13,5 +13,5 @@ RDEPEND=dev-cpp/eigen:3 dev-libs/boost:= dev-libs/double-conversion:= dev-libs/g RESTRICT=test SLOT=0 SRC_URI=https://github.com/openscad/openscad/releases/download/openscad-2021.01/openscad-2021.01.src.tar.gz -> openscad-2021.01.tar.gz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 multilib d1408425c7c4a7669b9b17735404b693 qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 multilib d1408425c7c4a7669b9b17735404b693 qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=d39b4ea3ca0bc1e7ce853ff97d95b33d diff --git a/metadata/md5-cache/media-libs/Manifest.gz b/metadata/md5-cache/media-libs/Manifest.gz index 41068eb8cf99..5e056c4e6bff 100644 Binary files a/metadata/md5-cache/media-libs/Manifest.gz and b/metadata/md5-cache/media-libs/Manifest.gz differ diff --git a/metadata/md5-cache/media-libs/libass-0.17.1 b/metadata/md5-cache/media-libs/libass-0.17.1 index 8e7372f5bcc0..7f9d80863655 100644 --- a/metadata/md5-cache/media-libs/libass-0.17.1 +++ b/metadata/md5-cache/media-libs/libass-0.17.1 @@ -6,11 +6,11 @@ EAPI=8 HOMEPAGE=https://github.com/libass/libass INHERIT=multilib-minimal verify-sig IUSE=+fontconfig 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 verify-sig -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris LICENSE=ISC RDEPEND=>=dev-libs/fribidi-0.19.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(-)?] >=media-libs/freetype-2.5.0.1:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=virtual/libiconv-0-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(-)?] >=media-libs/harfbuzz-1.2.3:=[truetype,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] fontconfig? ( >=media-libs/fontconfig-2.10.92[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) RESTRICT=!test? ( test ) SLOT=0/9 SRC_URI=https://github.com/libass/libass/releases/download/0.17.1/libass-0.17.1.tar.xz verify-sig? ( https://github.com/libass/libass/releases/download/0.17.1/libass-0.17.1.tar.xz.asc ) _eclasses_=multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e verify-sig ed3712fa46ee0fdc2dbbad539e20ff26 -_md5_=7c53cf6e154f434d8aafe757da6ddc9b +_md5_=b3b30be5459681b83d70fa843dbd6807 diff --git a/metadata/md5-cache/media-libs/libplacebo-5.264.0 b/metadata/md5-cache/media-libs/libplacebo-5.264.0 deleted file mode 100644 index 011f57314568..000000000000 --- a/metadata/md5-cache/media-libs/libplacebo-5.264.0 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=|| ( ( >=dev-lang/python-3.11.1-r1:3.11 dev-python/jinja[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 dev-python/jinja[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 dev-python/jinja[python_targets_python3_9(-)] ) ) virtual/pkgconfig >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=lcms? ( media-libs/lcms:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( media-libs/libglvnd[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) shaderc? ( media-libs/shaderc[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !shaderc? ( glslang? ( dev-util/glslang:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) unwind? ( llvm-libunwind? ( sys-libs/llvm-libunwind[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !llvm-libunwind? ( sys-libs/libunwind:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) vulkan? ( media-libs/vulkan-loader[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) dev-util/vulkan-headers -DESCRIPTION=Reusable library for GPU-accelerated image processing primitives -EAPI=8 -HOMEPAGE=https://code.videolan.org/videolan/libplacebo/ -INHERIT=meson-multilib python-any-r1 -IUSE=glslang lcms llvm-libunwind +opengl +shaderc test unwind +vulkan 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 ~ppc64 ~x86 -LICENSE=LGPL-2.1+ opengl? ( MIT ) -RDEPEND=lcms? ( media-libs/lcms:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( media-libs/libglvnd[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) shaderc? ( media-libs/shaderc[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !shaderc? ( glslang? ( dev-util/glslang:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) unwind? ( llvm-libunwind? ( sys-libs/llvm-libunwind[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !llvm-libunwind? ( sys-libs/libunwind:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) vulkan? ( media-libs/vulkan-loader[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=vulkan? ( || ( glslang shaderc ) ) -RESTRICT=!test? ( test ) -SLOT=0/264 -SRC_URI=https://code.videolan.org/videolan/libplacebo/-/archive/v5.264.0/libplacebo-v5.264.0.tar.gz opengl? ( https://github.com/Dav1dde/glad/archive/refs/tags/v2.0.4.tar.gz -> libplacebo-glad-2.0.4.tar.gz ) -_eclasses_=meson 915ec7c25e08d7886558215e6809ca1e meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=0d3554f08a9cf52735c0926946af2fc6 diff --git a/metadata/md5-cache/media-libs/libplacebo-5.264.1 b/metadata/md5-cache/media-libs/libplacebo-5.264.1 index 2b4b9b00724a..e517bba3580e 100644 --- a/metadata/md5-cache/media-libs/libplacebo-5.264.1 +++ b/metadata/md5-cache/media-libs/libplacebo-5.264.1 @@ -6,7 +6,7 @@ EAPI=8 HOMEPAGE=https://code.videolan.org/videolan/libplacebo/ INHERIT=meson-multilib python-any-r1 IUSE=glslang lcms llvm-libunwind +opengl +shaderc test unwind +vulkan 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 ~ppc64 ~x86 +KEYWORDS=amd64 ppc64 x86 LICENSE=LGPL-2.1+ opengl? ( MIT ) RDEPEND=lcms? ( media-libs/lcms:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( media-libs/libglvnd[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) shaderc? ( media-libs/shaderc[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !shaderc? ( glslang? ( dev-util/glslang:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) unwind? ( llvm-libunwind? ( sys-libs/llvm-libunwind[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !llvm-libunwind? ( sys-libs/libunwind:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) vulkan? ( media-libs/vulkan-loader[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=vulkan? ( || ( glslang shaderc ) ) @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0/264 SRC_URI=https://code.videolan.org/videolan/libplacebo/-/archive/v5.264.1/libplacebo-v5.264.1.tar.gz opengl? ( https://github.com/Dav1dde/glad/archive/refs/tags/v2.0.4.tar.gz -> libplacebo-glad-2.0.4.tar.gz ) _eclasses_=meson 915ec7c25e08d7886558215e6809ca1e meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=0d3554f08a9cf52735c0926946af2fc6 +_md5_=08d03a1790bc83ad1a3648baf11f0ad1 diff --git a/metadata/md5-cache/media-libs/libtgvoip-2.4.4_p20220503 b/metadata/md5-cache/media-libs/libtgvoip-2.4.4_p20220503 deleted file mode 100644 index 3d386539e02a..000000000000 --- a/metadata/md5-cache/media-libs/libtgvoip-2.4.4_p20220503 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 -DEFINED_PHASES=configure install prepare -DEPEND=dev-libs/openssl:= media-libs/opus alsa? ( media-libs/alsa-lib ) dsp? ( media-libs/tg_owt:= ) pulseaudio? ( media-sound/pulseaudio ) -DESCRIPTION=VoIP library for Telegram clients -EAPI=8 -HOMEPAGE=https://github.com/telegramdesktop/libtgvoip -INHERIT=flag-o-matic autotools -IUSE=+dsp +alsa pulseaudio -KEYWORDS=amd64 ~arm64 ~ppc64 ~riscv -LICENSE=Unlicense -RDEPEND=dev-libs/openssl:= media-libs/opus alsa? ( media-libs/alsa-lib ) dsp? ( media-libs/tg_owt:= ) pulseaudio? ( media-sound/pulseaudio ) -REQUIRED_USE=|| ( alsa pulseaudio ) -SLOT=0 -SRC_URI=https://github.com/telegramdesktop/libtgvoip/archive/78a8e22bedb0d06004da8bafeba88b7474cb89a4.tar.gz -> libtgvoip-2.4.4_p20220503.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=2f1ff2e439942b7ca04f2020c1a3df41 diff --git a/metadata/md5-cache/media-libs/libva-2.18.0 b/metadata/md5-cache/media-libs/libva-2.18.0-r1 similarity index 56% rename from metadata/md5-cache/media-libs/libva-2.18.0 rename to metadata/md5-cache/media-libs/libva-2.18.0-r1 index d018a744c469..4abbd05e0652 100644 --- a/metadata/md5-cache/media-libs/libva-2.18.0 +++ b/metadata/md5-cache/media-libs/libva-2.18.0-r1 @@ -1,16 +1,15 @@ BDEPEND=wayland? ( dev-util/wayland-scanner ) virtual/pkgconfig >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array DEFINED_PHASES=compile configure install postinst test -DEPEND=>=x11-libs/libdrm-2.4.60[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] wayland? ( >=dev-libs/wayland-1.11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( >=virtual/opengl-7.0-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(-)?] >=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXfixes-5.0.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libxcb:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) +DEPEND=>=x11-libs/libdrm-2.4.60[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] wayland? ( >=dev-libs/wayland-1.11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( >=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXfixes-5.0.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libxcb:=[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=Video Acceleration (VA) API for Linux EAPI=8 HOMEPAGE=https://01.org/linuxmedia/vaapi INHERIT=meson-multilib optfeature -IUSE=opengl wayland 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 +IUSE=wayland 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 KEYWORDS=~amd64 ~arm64 ~loong ~mips ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux LICENSE=MIT -RDEPEND=>=x11-libs/libdrm-2.4.60[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] wayland? ( >=dev-libs/wayland-1.11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( >=virtual/opengl-7.0-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(-)?] >=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXfixes-5.0.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libxcb:=[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=opengl? ( X ) +RDEPEND=>=x11-libs/libdrm-2.4.60[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] wayland? ( >=dev-libs/wayland-1.11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( >=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXfixes-5.0.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libxcb:=[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/2 SRC_URI=https://github.com/intel/libva/archive/2.18.0.tar.gz -> libva-2.18.0.tar.gz _eclasses_=meson 915ec7c25e08d7886558215e6809ca1e meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=f584a3fb0b5637c84226c92feda80e65 +_md5_=f1b3c6ad859981340e49da1cebf714ad diff --git a/metadata/md5-cache/media-libs/libva-9999 b/metadata/md5-cache/media-libs/libva-9999 index 4529c272e609..163718fade5a 100644 --- a/metadata/md5-cache/media-libs/libva-9999 +++ b/metadata/md5-cache/media-libs/libva-9999 @@ -1,15 +1,14 @@ BDEPEND=wayland? ( dev-util/wayland-scanner ) virtual/pkgconfig >=dev-util/meson-0.62.2 >=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=>=x11-libs/libdrm-2.4.60[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] wayland? ( >=dev-libs/wayland-1.11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( >=virtual/opengl-7.0-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(-)?] >=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXfixes-5.0.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libxcb:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) +DEPEND=>=x11-libs/libdrm-2.4.60[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] wayland? ( >=dev-libs/wayland-1.11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( >=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXfixes-5.0.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libxcb:=[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=Video Acceleration (VA) API for Linux EAPI=8 HOMEPAGE=https://01.org/linuxmedia/vaapi INHERIT=meson-multilib optfeature git-r3 -IUSE=opengl wayland 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 +IUSE=wayland 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 LICENSE=MIT PROPERTIES=live -RDEPEND=>=x11-libs/libdrm-2.4.60[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] wayland? ( >=dev-libs/wayland-1.11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( >=virtual/opengl-7.0-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(-)?] >=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXfixes-5.0.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libxcb:=[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=opengl? ( X ) +RDEPEND=>=x11-libs/libdrm-2.4.60[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] wayland? ( >=dev-libs/wayland-1.11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( >=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXfixes-5.0.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libxcb:=[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/9999 _eclasses_=git-r3 27e13c09a4c7e4c78ac812f74727e676 meson 915ec7c25e08d7886558215e6809ca1e meson-multilib 8989922d980e5e870cc3de949d1b2586 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=f584a3fb0b5637c84226c92feda80e65 +_md5_=f1b3c6ad859981340e49da1cebf714ad diff --git a/metadata/md5-cache/media-libs/libwmf-0.2.13-r1 b/metadata/md5-cache/media-libs/libwmf-0.2.13-r1 new file mode 100644 index 000000000000..4ccd3a455507 --- /dev/null +++ b/metadata/md5-cache/media-libs/libwmf-0.2.13-r1 @@ -0,0 +1,15 @@ +BDEPEND=virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 +DEFINED_PHASES=configure install postinst postrm preinst prepare +DEPEND=app-text/ghostscript-gpl media-fonts/urw-fonts media-libs/freetype:2= media-libs/libpng:= media-libs/libjpeg-turbo sys-libs/zlib:= x11-libs/gdk-pixbuf:2 expat? ( dev-libs/expat ) !expat? ( dev-libs/libxml2:2= ) X? ( x11-libs/libX11 x11-libs/libXt x11-libs/libXpm ) +DESCRIPTION=A library for reading vector images in Microsoft's Windows Metafile Format (WMF) +EAPI=8 +HOMEPAGE=https://github.com/caolanm/libwmf http://wvware.sourceforge.net/ +INHERIT=autotools gnome2-utils +IUSE=debug doc expat X +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris +LICENSE=LGPL-2 +RDEPEND=app-text/ghostscript-gpl media-fonts/urw-fonts media-libs/freetype:2= media-libs/libpng:= media-libs/libjpeg-turbo sys-libs/zlib:= x11-libs/gdk-pixbuf:2 expat? ( dev-libs/expat ) !expat? ( dev-libs/libxml2:2= ) X? ( x11-libs/libX11 x11-libs/libXt x11-libs/libXpm ) +SLOT=0 +SRC_URI=https://github.com/caolanm/libwmf/archive/refs/tags/v0.2.13.tar.gz -> libwmf-0.2.13.tar.gz +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a gnome2-utils b0183db3b2e07b18f3b77bffec72e116 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=adc1cfc0c7cd0ed818ee4dcd4ebae6b6 diff --git a/metadata/md5-cache/media-libs/opencollada-1.6.68 b/metadata/md5-cache/media-libs/opencollada-1.6.68 index 2ee446612f8a..62991af5a350 100644 --- a/metadata/md5-cache/media-libs/opencollada-1.6.68 +++ b/metadata/md5-cache/media-libs/opencollada-1.6.68 @@ -12,4 +12,4 @@ RDEPEND=dev-libs/libpcre:= dev-libs/libxml2:= dev-libs/zziplib media-libs/lib3ds SLOT=0 SRC_URI=https://github.com/KhronosGroup/OpenCOLLADA/archive/v1.6.68.tar.gz -> opencollada-1.6.68.tar.gz _eclasses_=cmake 7fb5980de96325cbab639f5b2187357c edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=1a1db54ae5847a10c5d3aa76e2dc02ec +_md5_=0d776f8e7b8603d2552421c1699c1f7f diff --git a/metadata/md5-cache/media-libs/tg_owt-0_pre20220507 b/metadata/md5-cache/media-libs/tg_owt-0_pre20220507 deleted file mode 100644 index eff278c2b962..000000000000 --- a/metadata/md5-cache/media-libs/tg_owt-0_pre20220507 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=>=dev-cpp/abseil-cpp-20211102.0:=[cxx17(+)] dev-libs/openssl:= dev-libs/protobuf:= media-libs/libjpeg-turbo:= >=media-libs/libvpx-1.10.0:= media-libs/openh264:= media-libs/opus media-video/ffmpeg:= dev-libs/crc32c screencast? ( dev-libs/glib:2 media-video/pipewire:= ) X? ( x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXrandr x11-libs/libXtst ) -DESCRIPTION=WebRTC build for Telegram -EAPI=8 -HOMEPAGE=https://github.com/desktop-app/tg_owt -INHERIT=cmake flag-o-matic -IUSE=screencast +X -KEYWORDS=amd64 ~arm64 ~ppc64 ~riscv -LICENSE=BSD -RDEPEND=>=dev-cpp/abseil-cpp-20211102.0:=[cxx17(+)] dev-libs/openssl:= dev-libs/protobuf:= media-libs/libjpeg-turbo:= >=media-libs/libvpx-1.10.0:= media-libs/openh264:= media-libs/opus media-video/ffmpeg:= dev-libs/crc32c screencast? ( dev-libs/glib:2 media-video/pipewire:= ) X? ( x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXrandr x11-libs/libXtst ) -SLOT=0/20220507 -SRC_URI=https://github.com/desktop-app/tg_owt/archive/10d5f4bf77333ef6b43516f90d2ce13273255f41.tar.gz -> tg_owt-0_pre20220507.tar.gz https://archive.org/download/libyuv-ad890067f661dc747a975bc55ba3767fe30d4452.tar/libyuv-ad890067f661dc747a975bc55ba3767fe30d4452.tar.gz -_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=834077422fd34ec59669f205c01198ce diff --git a/metadata/md5-cache/media-libs/tg_owt-0_pre20230105 b/metadata/md5-cache/media-libs/tg_owt-0_pre20230105 index 6e6b95efe599..fb34ab5fb790 100644 --- a/metadata/md5-cache/media-libs/tg_owt-0_pre20230105 +++ b/metadata/md5-cache/media-libs/tg_owt-0_pre20230105 @@ -12,4 +12,4 @@ RDEPEND=>=dev-cpp/abseil-cpp-20220623.1:= dev-libs/openssl:= dev-libs/protobuf:= SLOT=0/20230105 SRC_URI=https://github.com/desktop-app/tg_owt/archive/5098730b9eb6173f0b52068fe2555b7c1015123a.tar.gz -> tg_owt-0_pre20230105.tar.gz https://gitlab.com/chromiumsrc/libyuv/-/archive/00950840d1c9bcbb3eb6ebc5aac5793e71166c8b/libyuv-00950840d1c9bcbb3eb6ebc5aac5793e71166c8b.tar.bz2 _eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=22947b0eba74a202676923ec5370d88a +_md5_=321d166cd2409b1b3d07dff112217f99 diff --git a/metadata/md5-cache/media-libs/vulkan-layers-1.3.243 b/metadata/md5-cache/media-libs/vulkan-layers-1.3.243 index 32c5234bcc30..444de8a6f041 100644 --- a/metadata/md5-cache/media-libs/vulkan-layers-1.3.243 +++ b/metadata/md5-cache/media-libs/vulkan-layers-1.3.243 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://github.com/KhronosGroup/Vulkan-ValidationLayers INHERIT=cmake-multilib python-any-r1 IUSE=wayland 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 -KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 +KEYWORDS=amd64 arm arm64 ~loong ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 RDEPEND=~dev-util/spirv-tools-1.3.243:=[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://github.com/KhronosGroup/Vulkan-ValidationLayers/archive/sdk-1.3.243.0.tar.gz -> vulkan-layers-1.3.243.tar.gz _eclasses_=cmake 7fb5980de96325cbab639f5b2187357c cmake-multilib 37d23064f303dcf23453353ab8c77059 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=9a891a31e43617f65c858334de8704b0 +_md5_=031bd0b794bbd8de756174ba6abb539e diff --git a/metadata/md5-cache/media-libs/vulkan-loader-1.3.243 b/metadata/md5-cache/media-libs/vulkan-loader-1.3.243 index df41d3d2b83e..9df6e8033969 100644 --- a/metadata/md5-cache/media-libs/vulkan-loader-1.3.243 +++ b/metadata/md5-cache/media-libs/vulkan-loader-1.3.243 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://github.com/KhronosGroup/Vulkan-Loader INHERIT=flag-o-matic cmake-multilib toolchain-funcs IUSE=layers wayland 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 -KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 +KEYWORDS=amd64 arm arm64 ~loong ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 PDEPEND=layers? ( media-libs/vulkan-layers:=[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://github.com/KhronosGroup/Vulkan-Loader/archive/sdk-1.3.243.tar.gz -> vulkan-loader-1.3.243.tar.gz _eclasses_=cmake 7fb5980de96325cbab639f5b2187357c cmake-multilib 37d23064f303dcf23453353ab8c77059 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=d362eef08bb0a6ee867b28680fb242fe +_md5_=bc13dc024d4fece6b140f62af4f55a70 diff --git a/metadata/md5-cache/media-libs/xine-lib-1.2.13-r1 b/metadata/md5-cache/media-libs/xine-lib-1.2.13-r1 deleted file mode 100644 index 1f5d115c13c3..000000000000 --- a/metadata/md5-cache/media-libs/xine-lib-1.2.13-r1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=app-arch/xz-utils >=sys-devel/libtool-2.2.6b virtual/pkgconfig >=app-portage/elt-patches-20170815 -DEFINED_PHASES=compile configure install prepare -DEPEND=dev-libs/libxdg-basedir media-libs/libdvdnav media-video/ffmpeg:= sys-libs/zlib:= virtual/libiconv a52? ( media-libs/a52dec ) aac? ( media-libs/faad2 ) aalib? ( media-libs/aalib ) alsa? ( media-libs/alsa-lib ) bluray? ( >=media-libs/libbluray-0.2.1:= ) css? ( >=media-libs/libdvdcss-1.2.10 ) dav1d? ( media-libs/dav1d:= ) dts? ( media-libs/libdca ) dxr3? ( media-libs/libfame ) flac? ( media-libs/flac:= ) gtk? ( x11-libs/gdk-pixbuf:2 ) imagemagick? ( virtual/imagemagick-tools ) jack? ( virtual/jack ) jpeg? ( media-libs/libjpeg-turbo:= ) libcaca? ( media-libs/libcaca ) mad? ( media-libs/libmad ) mng? ( media-libs/libmng:= ) modplug? ( >=media-libs/libmodplug-0.8.8.1 ) musepack? ( >=media-sound/musepack-tools-444 ) nfs? ( net-fs/libnfs:= ) opengl? ( virtual/glu virtual/opengl ) pulseaudio? ( media-libs/libpulse ) samba? ( net-fs/samba ) sftp? ( net-libs/libssh2 ) sdl? ( media-libs/libsdl ) speex? ( media-libs/libogg media-libs/speex ) theora? ( media-libs/libogg media-libs/libtheora ) truetype? ( media-libs/fontconfig media-libs/freetype:2 ) v4l? ( media-libs/libv4l ) vaapi? ( media-libs/libva:=[opengl,X] ) vcd? ( >=media-video/vcdimager-0.7.23 dev-libs/libcdio:=[-minimal] ) vdpau? ( x11-libs/libvdpau ) vorbis? ( media-libs/libogg media-libs/libvorbis ) vpx? ( media-libs/libvpx:= ) wavpack? ( media-sound/wavpack ) wayland? ( dev-libs/wayland ) X? ( x11-libs/libX11 x11-libs/libXext x11-libs/libxcb:= ) xinerama? ( x11-libs/libXinerama ) xv? ( x11-libs/libXv ) xvmc? ( x11-libs/libXvMC ) oss? ( virtual/os-headers ) v4l? ( virtual/os-headers ) X? ( x11-base/xorg-proto x11-libs/libXt ) xv? ( x11-base/xorg-proto ) xvmc? ( x11-base/xorg-proto ) xinerama? ( x11-base/xorg-proto ) -DESCRIPTION=Core libraries for Xine movie player -EAPI=8 -HOMEPAGE=https://xine.sourceforge.net/ -INHERIT=flag-o-matic libtool multilib -IUSE=a52 aac aalib +alsa bluray cpu_flags_ppc_altivec +css dav1d dts dvb dxr3 fbcon flac gtk imagemagick jack jpeg libcaca mad +mmap mng modplug musepack nfs opengl oss pulseaudio samba sftp sdl speex theora truetype v4l vaapi vcd vdpau vdr vidix +vis vorbis vpx wavpack wayland +X xinerama +xv xvmc nls -KEYWORDS=~amd64 ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86 -LICENSE=GPL-2 -RDEPEND=dev-libs/libxdg-basedir media-libs/libdvdnav media-video/ffmpeg:= sys-libs/zlib:= virtual/libiconv a52? ( media-libs/a52dec ) aac? ( media-libs/faad2 ) aalib? ( media-libs/aalib ) alsa? ( media-libs/alsa-lib ) bluray? ( >=media-libs/libbluray-0.2.1:= ) css? ( >=media-libs/libdvdcss-1.2.10 ) dav1d? ( media-libs/dav1d:= ) dts? ( media-libs/libdca ) dxr3? ( media-libs/libfame ) flac? ( media-libs/flac:= ) gtk? ( x11-libs/gdk-pixbuf:2 ) imagemagick? ( virtual/imagemagick-tools ) jack? ( virtual/jack ) jpeg? ( media-libs/libjpeg-turbo:= ) libcaca? ( media-libs/libcaca ) mad? ( media-libs/libmad ) mng? ( media-libs/libmng:= ) modplug? ( >=media-libs/libmodplug-0.8.8.1 ) musepack? ( >=media-sound/musepack-tools-444 ) nfs? ( net-fs/libnfs:= ) opengl? ( virtual/glu virtual/opengl ) pulseaudio? ( media-libs/libpulse ) samba? ( net-fs/samba ) sftp? ( net-libs/libssh2 ) sdl? ( media-libs/libsdl ) speex? ( media-libs/libogg media-libs/speex ) theora? ( media-libs/libogg media-libs/libtheora ) truetype? ( media-libs/fontconfig media-libs/freetype:2 ) v4l? ( media-libs/libv4l ) vaapi? ( media-libs/libva:=[opengl,X] ) vcd? ( >=media-video/vcdimager-0.7.23 dev-libs/libcdio:=[-minimal] ) vdpau? ( x11-libs/libvdpau ) vorbis? ( media-libs/libogg media-libs/libvorbis ) vpx? ( media-libs/libvpx:= ) wavpack? ( media-sound/wavpack ) wayland? ( dev-libs/wayland ) X? ( x11-libs/libX11 x11-libs/libXext x11-libs/libxcb:= ) xinerama? ( x11-libs/libXinerama ) xv? ( x11-libs/libXv ) xvmc? ( x11-libs/libXvMC ) -REQUIRED_USE=vidix? ( || ( X fbcon ) ) wayland? ( opengl ) xv? ( X ) xinerama? ( X ) -SLOT=1 -SRC_URI=mirror://sourceforge/xine/xine-lib-1.2.13.tar.xz -_eclasses_=flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=6fae95e5ec1591908aac3ed0c8b63816 diff --git a/metadata/md5-cache/media-libs/xine-lib-1.2.13 b/metadata/md5-cache/media-libs/xine-lib-1.2.13-r2 similarity index 74% rename from metadata/md5-cache/media-libs/xine-lib-1.2.13 rename to metadata/md5-cache/media-libs/xine-lib-1.2.13-r2 index 0a07c7642eda..6a1958e81ae8 100644 --- a/metadata/md5-cache/media-libs/xine-lib-1.2.13 +++ b/metadata/md5-cache/media-libs/xine-lib-1.2.13-r2 @@ -1,6 +1,6 @@ BDEPEND=app-arch/xz-utils >=sys-devel/libtool-2.2.6b virtual/pkgconfig >=app-portage/elt-patches-20170815 DEFINED_PHASES=compile configure install prepare -DEPEND=dev-libs/libxdg-basedir media-libs/libdvdnav media-video/ffmpeg:= sys-libs/zlib:= virtual/libiconv a52? ( media-libs/a52dec ) aac? ( media-libs/faad2 ) aalib? ( media-libs/aalib ) alsa? ( media-libs/alsa-lib ) bluray? ( >=media-libs/libbluray-0.2.1:= ) css? ( >=media-libs/libdvdcss-1.2.10 ) dav1d? ( media-libs/dav1d:= ) dts? ( media-libs/libdca ) dxr3? ( media-libs/libfame ) flac? ( media-libs/flac:= ) gtk? ( x11-libs/gdk-pixbuf:2 ) imagemagick? ( virtual/imagemagick-tools ) jack? ( virtual/jack ) jpeg? ( media-libs/libjpeg-turbo:= ) libcaca? ( media-libs/libcaca ) mad? ( media-libs/libmad ) mng? ( media-libs/libmng:= ) modplug? ( >=media-libs/libmodplug-0.8.8.1 ) musepack? ( >=media-sound/musepack-tools-444 ) nfs? ( net-fs/libnfs:= ) opengl? ( virtual/glu virtual/opengl ) pulseaudio? ( media-libs/libpulse ) samba? ( net-fs/samba ) sftp? ( net-libs/libssh2 ) sdl? ( media-libs/libsdl ) speex? ( media-libs/libogg media-libs/speex ) theora? ( media-libs/libogg media-libs/libtheora ) truetype? ( media-libs/fontconfig media-libs/freetype:2 ) v4l? ( media-libs/libv4l ) vaapi? ( media-libs/libva:=[opengl,X] ) vcd? ( >=media-video/vcdimager-0.7.23 dev-libs/libcdio:=[-minimal] ) vdpau? ( x11-libs/libvdpau ) vorbis? ( media-libs/libogg media-libs/libvorbis ) vpx? ( media-libs/libvpx:= ) wavpack? ( media-sound/wavpack ) wayland? ( dev-libs/wayland ) X? ( x11-libs/libX11 x11-libs/libXext x11-libs/libxcb:= ) xinerama? ( x11-libs/libXinerama ) xv? ( x11-libs/libXv ) xvmc? ( x11-libs/libXvMC ) oss? ( virtual/os-headers ) v4l? ( virtual/os-headers ) X? ( x11-base/xorg-proto x11-libs/libXt ) xv? ( x11-base/xorg-proto ) xvmc? ( x11-base/xorg-proto ) xinerama? ( x11-base/xorg-proto ) +DEPEND=dev-libs/libxdg-basedir media-libs/libdvdnav media-video/ffmpeg:= sys-libs/zlib:= virtual/libiconv a52? ( media-libs/a52dec ) aac? ( media-libs/faad2 ) aalib? ( media-libs/aalib ) alsa? ( media-libs/alsa-lib ) bluray? ( >=media-libs/libbluray-0.2.1:= ) css? ( >=media-libs/libdvdcss-1.2.10 ) dav1d? ( media-libs/dav1d:= ) dts? ( media-libs/libdca ) dxr3? ( media-libs/libfame ) flac? ( media-libs/flac:= ) gtk? ( x11-libs/gdk-pixbuf:2 ) imagemagick? ( virtual/imagemagick-tools ) jack? ( virtual/jack ) jpeg? ( media-libs/libjpeg-turbo:= ) libcaca? ( media-libs/libcaca ) mad? ( media-libs/libmad ) mng? ( media-libs/libmng:= ) modplug? ( >=media-libs/libmodplug-0.8.8.1 ) musepack? ( >=media-sound/musepack-tools-444 ) nfs? ( net-fs/libnfs:= ) opengl? ( virtual/glu virtual/opengl ) pulseaudio? ( media-libs/libpulse ) samba? ( net-fs/samba ) sftp? ( net-libs/libssh2 ) sdl? ( media-libs/libsdl ) speex? ( media-libs/libogg media-libs/speex ) theora? ( media-libs/libogg media-libs/libtheora ) truetype? ( media-libs/fontconfig media-libs/freetype:2 ) v4l? ( media-libs/libv4l ) vaapi? ( media-libs/libva:=[X] ) vcd? ( >=media-video/vcdimager-0.7.23 dev-libs/libcdio:=[-minimal] ) vdpau? ( x11-libs/libvdpau ) vorbis? ( media-libs/libogg media-libs/libvorbis ) vpx? ( media-libs/libvpx:= ) wavpack? ( media-sound/wavpack ) wayland? ( dev-libs/wayland ) X? ( x11-libs/libX11 x11-libs/libXext x11-libs/libxcb:= ) xinerama? ( x11-libs/libXinerama ) xv? ( x11-libs/libXv ) xvmc? ( x11-libs/libXvMC ) oss? ( virtual/os-headers ) v4l? ( virtual/os-headers ) X? ( x11-base/xorg-proto x11-libs/libXt ) xv? ( x11-base/xorg-proto ) xvmc? ( x11-base/xorg-proto ) xinerama? ( x11-base/xorg-proto ) DESCRIPTION=Core libraries for Xine movie player EAPI=8 HOMEPAGE=https://xine.sourceforge.net/ @@ -8,9 +8,9 @@ INHERIT=flag-o-matic libtool multilib IUSE=a52 aac aalib +alsa bluray cpu_flags_ppc_altivec +css dav1d dts dvb dxr3 fbcon flac gtk imagemagick jack jpeg libcaca mad +mmap mng modplug musepack nfs opengl oss pulseaudio samba sftp sdl speex theora truetype v4l vaapi vcd vdpau vdr vidix +vis vorbis vpx wavpack wayland +X xinerama +xv xvmc nls KEYWORDS=~amd64 ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86 LICENSE=GPL-2 -RDEPEND=dev-libs/libxdg-basedir media-libs/libdvdnav media-video/ffmpeg:= sys-libs/zlib:= virtual/libiconv a52? ( media-libs/a52dec ) aac? ( media-libs/faad2 ) aalib? ( media-libs/aalib ) alsa? ( media-libs/alsa-lib ) bluray? ( >=media-libs/libbluray-0.2.1:= ) css? ( >=media-libs/libdvdcss-1.2.10 ) dav1d? ( media-libs/dav1d:= ) dts? ( media-libs/libdca ) dxr3? ( media-libs/libfame ) flac? ( media-libs/flac:= ) gtk? ( x11-libs/gdk-pixbuf:2 ) imagemagick? ( virtual/imagemagick-tools ) jack? ( virtual/jack ) jpeg? ( media-libs/libjpeg-turbo:= ) libcaca? ( media-libs/libcaca ) mad? ( media-libs/libmad ) mng? ( media-libs/libmng:= ) modplug? ( >=media-libs/libmodplug-0.8.8.1 ) musepack? ( >=media-sound/musepack-tools-444 ) nfs? ( net-fs/libnfs:= ) opengl? ( virtual/glu virtual/opengl ) pulseaudio? ( media-libs/libpulse ) samba? ( net-fs/samba ) sftp? ( net-libs/libssh2 ) sdl? ( media-libs/libsdl ) speex? ( media-libs/libogg media-libs/speex ) theora? ( media-libs/libogg media-libs/libtheora ) truetype? ( media-libs/fontconfig media-libs/freetype:2 ) v4l? ( media-libs/libv4l ) vaapi? ( media-libs/libva:=[opengl,X] ) vcd? ( >=media-video/vcdimager-0.7.23 dev-libs/libcdio:=[-minimal] ) vdpau? ( x11-libs/libvdpau ) vorbis? ( media-libs/libogg media-libs/libvorbis ) vpx? ( media-libs/libvpx:= ) wavpack? ( media-sound/wavpack ) wayland? ( dev-libs/wayland ) X? ( x11-libs/libX11 x11-libs/libXext x11-libs/libxcb:= ) xinerama? ( x11-libs/libXinerama ) xv? ( x11-libs/libXv ) xvmc? ( x11-libs/libXvMC ) +RDEPEND=dev-libs/libxdg-basedir media-libs/libdvdnav media-video/ffmpeg:= sys-libs/zlib:= virtual/libiconv a52? ( media-libs/a52dec ) aac? ( media-libs/faad2 ) aalib? ( media-libs/aalib ) alsa? ( media-libs/alsa-lib ) bluray? ( >=media-libs/libbluray-0.2.1:= ) css? ( >=media-libs/libdvdcss-1.2.10 ) dav1d? ( media-libs/dav1d:= ) dts? ( media-libs/libdca ) dxr3? ( media-libs/libfame ) flac? ( media-libs/flac:= ) gtk? ( x11-libs/gdk-pixbuf:2 ) imagemagick? ( virtual/imagemagick-tools ) jack? ( virtual/jack ) jpeg? ( media-libs/libjpeg-turbo:= ) libcaca? ( media-libs/libcaca ) mad? ( media-libs/libmad ) mng? ( media-libs/libmng:= ) modplug? ( >=media-libs/libmodplug-0.8.8.1 ) musepack? ( >=media-sound/musepack-tools-444 ) nfs? ( net-fs/libnfs:= ) opengl? ( virtual/glu virtual/opengl ) pulseaudio? ( media-libs/libpulse ) samba? ( net-fs/samba ) sftp? ( net-libs/libssh2 ) sdl? ( media-libs/libsdl ) speex? ( media-libs/libogg media-libs/speex ) theora? ( media-libs/libogg media-libs/libtheora ) truetype? ( media-libs/fontconfig media-libs/freetype:2 ) v4l? ( media-libs/libv4l ) vaapi? ( media-libs/libva:=[X] ) vcd? ( >=media-video/vcdimager-0.7.23 dev-libs/libcdio:=[-minimal] ) vdpau? ( x11-libs/libvdpau ) vorbis? ( media-libs/libogg media-libs/libvorbis ) vpx? ( media-libs/libvpx:= ) wavpack? ( media-sound/wavpack ) wayland? ( dev-libs/wayland ) X? ( x11-libs/libX11 x11-libs/libXext x11-libs/libxcb:= ) xinerama? ( x11-libs/libXinerama ) xv? ( x11-libs/libXv ) xvmc? ( x11-libs/libXvMC ) REQUIRED_USE=vidix? ( || ( X fbcon ) ) wayland? ( opengl ) xv? ( X ) xinerama? ( X ) SLOT=1 SRC_URI=mirror://sourceforge/xine/xine-lib-1.2.13.tar.xz _eclasses_=flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=75cf8204d6949c7ce38cc9f612bc4ebb +_md5_=5178a5ebd54aae95c1fe2b9342785f85 diff --git a/metadata/md5-cache/media-libs/xine-lib-1.2.9999 b/metadata/md5-cache/media-libs/xine-lib-1.2.9999 index 26f32b12f513..d5620352f5e9 100644 --- a/metadata/md5-cache/media-libs/xine-lib-1.2.9999 +++ b/metadata/md5-cache/media-libs/xine-lib-1.2.9999 @@ -1,6 +1,6 @@ BDEPEND=app-arch/xz-utils >=sys-devel/libtool-2.2.6b virtual/pkgconfig >=app-portage/elt-patches-20170815 sys-devel/gnuconfig || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 dev-vcs/mercurial DEFINED_PHASES=compile configure install prepare unpack -DEPEND=dev-libs/libxdg-basedir media-libs/libdvdnav media-video/ffmpeg:= sys-libs/zlib:= virtual/libiconv a52? ( media-libs/a52dec ) aac? ( media-libs/faad2 ) aalib? ( media-libs/aalib ) alsa? ( media-libs/alsa-lib ) bluray? ( >=media-libs/libbluray-0.2.1:= ) css? ( >=media-libs/libdvdcss-1.2.10 ) dav1d? ( media-libs/dav1d:= ) dts? ( media-libs/libdca ) dxr3? ( media-libs/libfame ) flac? ( media-libs/flac:= ) gtk? ( x11-libs/gdk-pixbuf:2 ) imagemagick? ( virtual/imagemagick-tools ) jack? ( virtual/jack ) jpeg? ( media-libs/libjpeg-turbo:= ) libcaca? ( media-libs/libcaca ) mad? ( media-libs/libmad ) mng? ( media-libs/libmng:= ) modplug? ( >=media-libs/libmodplug-0.8.8.1 ) musepack? ( >=media-sound/musepack-tools-444 ) nfs? ( net-fs/libnfs:= ) opengl? ( virtual/glu virtual/opengl ) pulseaudio? ( media-libs/libpulse ) samba? ( net-fs/samba ) sftp? ( net-libs/libssh2 ) sdl? ( media-libs/libsdl ) speex? ( media-libs/libogg media-libs/speex ) theora? ( media-libs/libogg media-libs/libtheora ) truetype? ( media-libs/fontconfig media-libs/freetype:2 ) v4l? ( media-libs/libv4l ) vaapi? ( media-libs/libva:=[opengl,X] ) vcd? ( >=media-video/vcdimager-0.7.23 dev-libs/libcdio:=[-minimal] ) vdpau? ( x11-libs/libvdpau ) vorbis? ( media-libs/libogg media-libs/libvorbis ) vpx? ( media-libs/libvpx:= ) wavpack? ( media-sound/wavpack ) wayland? ( dev-libs/wayland ) X? ( x11-libs/libX11 x11-libs/libXext x11-libs/libxcb:= ) xinerama? ( x11-libs/libXinerama ) xv? ( x11-libs/libXv ) xvmc? ( x11-libs/libXvMC ) oss? ( virtual/os-headers ) v4l? ( virtual/os-headers ) X? ( x11-base/xorg-proto x11-libs/libXt ) xv? ( x11-base/xorg-proto ) xvmc? ( x11-base/xorg-proto ) xinerama? ( x11-base/xorg-proto ) +DEPEND=dev-libs/libxdg-basedir media-libs/libdvdnav media-video/ffmpeg:= sys-libs/zlib:= virtual/libiconv a52? ( media-libs/a52dec ) aac? ( media-libs/faad2 ) aalib? ( media-libs/aalib ) alsa? ( media-libs/alsa-lib ) bluray? ( >=media-libs/libbluray-0.2.1:= ) css? ( >=media-libs/libdvdcss-1.2.10 ) dav1d? ( media-libs/dav1d:= ) dts? ( media-libs/libdca ) dxr3? ( media-libs/libfame ) flac? ( media-libs/flac:= ) gtk? ( x11-libs/gdk-pixbuf:2 ) imagemagick? ( virtual/imagemagick-tools ) jack? ( virtual/jack ) jpeg? ( media-libs/libjpeg-turbo:= ) libcaca? ( media-libs/libcaca ) mad? ( media-libs/libmad ) mng? ( media-libs/libmng:= ) modplug? ( >=media-libs/libmodplug-0.8.8.1 ) musepack? ( >=media-sound/musepack-tools-444 ) nfs? ( net-fs/libnfs:= ) opengl? ( virtual/glu virtual/opengl ) pulseaudio? ( media-libs/libpulse ) samba? ( net-fs/samba ) sftp? ( net-libs/libssh2 ) sdl? ( media-libs/libsdl ) speex? ( media-libs/libogg media-libs/speex ) theora? ( media-libs/libogg media-libs/libtheora ) truetype? ( media-libs/fontconfig media-libs/freetype:2 ) v4l? ( media-libs/libv4l ) vaapi? ( media-libs/libva:=[X] ) vcd? ( >=media-video/vcdimager-0.7.23 dev-libs/libcdio:=[-minimal] ) vdpau? ( x11-libs/libvdpau ) vorbis? ( media-libs/libogg media-libs/libvorbis ) vpx? ( media-libs/libvpx:= ) wavpack? ( media-sound/wavpack ) wayland? ( dev-libs/wayland ) X? ( x11-libs/libX11 x11-libs/libXext x11-libs/libxcb:= ) xinerama? ( x11-libs/libXinerama ) xv? ( x11-libs/libXv ) xvmc? ( x11-libs/libXvMC ) oss? ( virtual/os-headers ) v4l? ( virtual/os-headers ) X? ( x11-base/xorg-proto x11-libs/libXt ) xv? ( x11-base/xorg-proto ) xvmc? ( x11-base/xorg-proto ) xinerama? ( x11-base/xorg-proto ) DESCRIPTION=Core libraries for Xine movie player EAPI=8 HOMEPAGE=https://xine.sourceforge.net/ @@ -8,8 +8,8 @@ INHERIT=flag-o-matic libtool multilib autotools mercurial IUSE=a52 aac aalib +alsa bluray cpu_flags_ppc_altivec +css dav1d dts dvb dxr3 fbcon flac gtk imagemagick jack jpeg libcaca mad +mmap mng modplug musepack nfs opengl oss pulseaudio samba sftp sdl speex theora truetype v4l vaapi vcd vdpau vdr vidix +vis vorbis vpx wavpack wayland +X xinerama +xv xvmc LICENSE=GPL-2 PROPERTIES=live -RDEPEND=dev-libs/libxdg-basedir media-libs/libdvdnav media-video/ffmpeg:= sys-libs/zlib:= virtual/libiconv a52? ( media-libs/a52dec ) aac? ( media-libs/faad2 ) aalib? ( media-libs/aalib ) alsa? ( media-libs/alsa-lib ) bluray? ( >=media-libs/libbluray-0.2.1:= ) css? ( >=media-libs/libdvdcss-1.2.10 ) dav1d? ( media-libs/dav1d:= ) dts? ( media-libs/libdca ) dxr3? ( media-libs/libfame ) flac? ( media-libs/flac:= ) gtk? ( x11-libs/gdk-pixbuf:2 ) imagemagick? ( virtual/imagemagick-tools ) jack? ( virtual/jack ) jpeg? ( media-libs/libjpeg-turbo:= ) libcaca? ( media-libs/libcaca ) mad? ( media-libs/libmad ) mng? ( media-libs/libmng:= ) modplug? ( >=media-libs/libmodplug-0.8.8.1 ) musepack? ( >=media-sound/musepack-tools-444 ) nfs? ( net-fs/libnfs:= ) opengl? ( virtual/glu virtual/opengl ) pulseaudio? ( media-libs/libpulse ) samba? ( net-fs/samba ) sftp? ( net-libs/libssh2 ) sdl? ( media-libs/libsdl ) speex? ( media-libs/libogg media-libs/speex ) theora? ( media-libs/libogg media-libs/libtheora ) truetype? ( media-libs/fontconfig media-libs/freetype:2 ) v4l? ( media-libs/libv4l ) vaapi? ( media-libs/libva:=[opengl,X] ) vcd? ( >=media-video/vcdimager-0.7.23 dev-libs/libcdio:=[-minimal] ) vdpau? ( x11-libs/libvdpau ) vorbis? ( media-libs/libogg media-libs/libvorbis ) vpx? ( media-libs/libvpx:= ) wavpack? ( media-sound/wavpack ) wayland? ( dev-libs/wayland ) X? ( x11-libs/libX11 x11-libs/libXext x11-libs/libxcb:= ) xinerama? ( x11-libs/libXinerama ) xv? ( x11-libs/libXv ) xvmc? ( x11-libs/libXvMC ) +RDEPEND=dev-libs/libxdg-basedir media-libs/libdvdnav media-video/ffmpeg:= sys-libs/zlib:= virtual/libiconv a52? ( media-libs/a52dec ) aac? ( media-libs/faad2 ) aalib? ( media-libs/aalib ) alsa? ( media-libs/alsa-lib ) bluray? ( >=media-libs/libbluray-0.2.1:= ) css? ( >=media-libs/libdvdcss-1.2.10 ) dav1d? ( media-libs/dav1d:= ) dts? ( media-libs/libdca ) dxr3? ( media-libs/libfame ) flac? ( media-libs/flac:= ) gtk? ( x11-libs/gdk-pixbuf:2 ) imagemagick? ( virtual/imagemagick-tools ) jack? ( virtual/jack ) jpeg? ( media-libs/libjpeg-turbo:= ) libcaca? ( media-libs/libcaca ) mad? ( media-libs/libmad ) mng? ( media-libs/libmng:= ) modplug? ( >=media-libs/libmodplug-0.8.8.1 ) musepack? ( >=media-sound/musepack-tools-444 ) nfs? ( net-fs/libnfs:= ) opengl? ( virtual/glu virtual/opengl ) pulseaudio? ( media-libs/libpulse ) samba? ( net-fs/samba ) sftp? ( net-libs/libssh2 ) sdl? ( media-libs/libsdl ) speex? ( media-libs/libogg media-libs/speex ) theora? ( media-libs/libogg media-libs/libtheora ) truetype? ( media-libs/fontconfig media-libs/freetype:2 ) v4l? ( media-libs/libv4l ) vaapi? ( media-libs/libva:=[X] ) vcd? ( >=media-video/vcdimager-0.7.23 dev-libs/libcdio:=[-minimal] ) vdpau? ( x11-libs/libvdpau ) vorbis? ( media-libs/libogg media-libs/libvorbis ) vpx? ( media-libs/libvpx:= ) wavpack? ( media-sound/wavpack ) wayland? ( dev-libs/wayland ) X? ( x11-libs/libX11 x11-libs/libXext x11-libs/libxcb:= ) xinerama? ( x11-libs/libXinerama ) xv? ( x11-libs/libXv ) xvmc? ( x11-libs/libXvMC ) REQUIRED_USE=vidix? ( || ( X fbcon ) ) wayland? ( opengl ) xv? ( X ) xinerama? ( X ) SLOT=1 _eclasses_=autotools f0d3196128225dee3220e65f3371bc7a flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b mercurial 32c6bad6428a38951696c75f3b9a955a multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=75cf8204d6949c7ce38cc9f612bc4ebb +_md5_=b2ecbe01149320f093106b22b81458a5 diff --git a/metadata/md5-cache/media-sound/Manifest.gz b/metadata/md5-cache/media-sound/Manifest.gz index 7cba44d2fbbd..733cd3f45017 100644 Binary files a/metadata/md5-cache/media-sound/Manifest.gz and b/metadata/md5-cache/media-sound/Manifest.gz differ diff --git a/metadata/md5-cache/media-sound/lilypond-2.22.0-r1 b/metadata/md5-cache/media-sound/lilypond-2.22.0-r1 index 4ca72eb730ad..075f44b0e2af 100644 --- a/metadata/md5-cache/media-sound/lilypond-2.22.0-r1 +++ b/metadata/md5-cache/media-sound/lilypond-2.22.0-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=test SLOT=0 SRC_URI=http://lilypond.org/download/sources/v2.22/lilypond-2.22.0.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a eapi8-dosym 741bfa77afb2a9321261501aca58c208 elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a eapi8-dosym 741bfa77afb2a9321261501aca58c208 elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=fac593d2dbd7518eca24dfb20af9b3fd diff --git a/metadata/md5-cache/media-sound/lilypond-2.22.1-r1 b/metadata/md5-cache/media-sound/lilypond-2.22.1-r1 index b38cc0084435..f2851453e198 100644 --- a/metadata/md5-cache/media-sound/lilypond-2.22.1-r1 +++ b/metadata/md5-cache/media-sound/lilypond-2.22.1-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=test SLOT=0 SRC_URI=http://lilypond.org/download/sources/v2.22/lilypond-2.22.1.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a eapi8-dosym 741bfa77afb2a9321261501aca58c208 elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a eapi8-dosym 741bfa77afb2a9321261501aca58c208 elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=73f1e250b9af412429753d1ed230679a diff --git a/metadata/md5-cache/media-sound/lilypond-2.23.0-r1 b/metadata/md5-cache/media-sound/lilypond-2.23.0-r1 index bf90bd2a6882..bbd54ecd9a57 100644 --- a/metadata/md5-cache/media-sound/lilypond-2.23.0-r1 +++ b/metadata/md5-cache/media-sound/lilypond-2.23.0-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=test SLOT=0 SRC_URI=http://lilypond.org/download/sources/v2.23/lilypond-2.23.0.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a eapi8-dosym 741bfa77afb2a9321261501aca58c208 elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a eapi8-dosym 741bfa77afb2a9321261501aca58c208 elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=0e6b5709db8c4c02e6000037cb8f7413 diff --git a/metadata/md5-cache/media-sound/lilypond-2.23.2-r1 b/metadata/md5-cache/media-sound/lilypond-2.23.2-r1 index 59f47f83534b..880fe7e8b1d8 100644 --- a/metadata/md5-cache/media-sound/lilypond-2.23.2-r1 +++ b/metadata/md5-cache/media-sound/lilypond-2.23.2-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=test SLOT=0 SRC_URI=http://lilypond.org/download/sources/v2.23/lilypond-2.23.2.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a eapi8-dosym 741bfa77afb2a9321261501aca58c208 elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a eapi8-dosym 741bfa77afb2a9321261501aca58c208 elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=03ff9d7ca5f02ab3a9ec4904c7722900 diff --git a/metadata/md5-cache/media-sound/lilypond-2.24.0 b/metadata/md5-cache/media-sound/lilypond-2.24.0 index e842fc156e1a..854693e22a55 100644 --- a/metadata/md5-cache/media-sound/lilypond-2.24.0 +++ b/metadata/md5-cache/media-sound/lilypond-2.24.0 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=test SLOT=0 SRC_URI=http://lilypond.org/download/sources/v2.24/lilypond-2.24.0.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=4bfbcd76930948f58127a5061cea56a0 diff --git a/metadata/md5-cache/media-sound/lilypond-9999 b/metadata/md5-cache/media-sound/lilypond-9999 index cadc9521ca6e..0f8e05bdce92 100644 --- a/metadata/md5-cache/media-sound/lilypond-9999 +++ b/metadata/md5-cache/media-sound/lilypond-9999 @@ -12,5 +12,5 @@ RDEPEND=app-text/ghostscript-gpl dev-scheme/guile:12=[deprecated,regex] media-fo REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) RESTRICT=test SLOT=0 -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 git-r3 27e13c09a4c7e4c78ac812f74727e676 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 git-r3 27e13c09a4c7e4c78ac812f74727e676 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=4fb04779b5916f5e752644ff4f4cde01 diff --git a/metadata/md5-cache/media-sound/pavucontrol-qt-1.3.0 b/metadata/md5-cache/media-sound/pavucontrol-qt-1.3.0 new file mode 100644 index 000000000000..ceb7b499dac3 --- /dev/null +++ b/metadata/md5-cache/media-sound/pavucontrol-qt-1.3.0 @@ -0,0 +1,14 @@ +BDEPEND=>=dev-qt/linguist-tools-5.15:5 >=dev-util/lxqt-build-tools-0.13.0 virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-libs/glib:2 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtwidgets-5.15:5 media-sound/pulseaudio[glib] +DESCRIPTION=Qt GUI Pulseaudio Mixer +EAPI=8 +HOMEPAGE=https://lxqt-project.org/ +INHERIT=cmake +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~loong ~riscv ~x86 +LICENSE=GPL-2 GPL-2+ +RDEPEND=dev-libs/glib:2 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtwidgets-5.15:5 media-sound/pulseaudio[glib] +SLOT=0 +SRC_URI=https://github.com/lxqt/pavucontrol-qt/releases/download/1.3.0/pavucontrol-qt-1.3.0.tar.xz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=6d7919e2dcc1de2d18745d7293003e7c diff --git a/metadata/md5-cache/media-sound/rhythmbox-3.4.7 b/metadata/md5-cache/media-sound/rhythmbox-3.4.7 new file mode 100644 index 000000000000..0926830c4094 --- /dev/null +++ b/metadata/md5-cache/media-sound/rhythmbox-3.4.7 @@ -0,0 +1,18 @@ +BDEPEND=gtk-doc? ( dev-util/gtk-doc ) >=dev-util/intltool-0.35 dev-util/itstool virtual/pkgconfig test? ( dev-libs/check ) app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +DEFINED_PHASES=compile configure install postinst postrm preinst setup test +DEPEND=x11-libs/cairo >=x11-libs/gdk-pixbuf-2.18:2 >=dev-libs/glib-2.66.0:2 >=dev-libs/gobject-introspection-0.10:= >=media-libs/gstreamer-1.4.0:1.0[introspection] >=media-libs/gst-plugins-base-1.4.0:1.0[introspection] >=x11-libs/gtk+-3.20.0:3[introspection] dev-libs/json-glib >=dev-libs/libpeas-0.7.3[gtk] >=net-libs/libsoup-3.0.7:3.0 >=dev-libs/libxml2-2.7.8:2 x11-libs/pango >=sys-libs/tdb-1.2.6 >=dev-libs/totem-pl-parser-3.2:= cdr? ( >=app-cdr/brasero-2.91.90 ) daap? ( >=net-libs/libdmapsharing-3.9.11:4.0= >=media-plugins/gst-plugins-soup-1.4:1.0 ) gnome-keyring? ( >=app-crypt/libsecret-0.18 ) libnotify? ( >=x11-libs/libnotify-0.7.0 ) lirc? ( app-misc/lirc ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[xml(+)] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[xml(+)] ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[xml(+)] ) python_single_target_python3_9? ( >=dev-python/pygobject-3.0:3[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/pygobject-3.0:3[python_targets_python3_10(-)] ) python_single_target_python3_11? ( >=dev-python/pygobject-3.0:3[python_targets_python3_11(-)] ) ) udev? ( dev-libs/libgudev:= ipod? ( >=media-libs/libgpod-0.7.92[udev] ) mtp? ( >=media-libs/libmtp-0.3 ) ) +DESCRIPTION=Music management and playback software for GNOME +EAPI=8 +HOMEPAGE=https://wiki.gnome.org/Apps/Rhythmbox +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=gnome.org gnome2-utils python-single-r1 meson virtualx xdg +IUSE=cdr daap dbus gnome-keyring gtk-doc ipod libnotify lirc mtp +python test +udev upnp-av python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 test +KEYWORDS=~amd64 +LICENSE=GPL-2 +RDEPEND=x11-libs/cairo >=x11-libs/gdk-pixbuf-2.18:2 >=dev-libs/glib-2.66.0:2 >=dev-libs/gobject-introspection-0.10:= >=media-libs/gstreamer-1.4.0:1.0[introspection] >=media-libs/gst-plugins-base-1.4.0:1.0[introspection] >=x11-libs/gtk+-3.20.0:3[introspection] dev-libs/json-glib >=dev-libs/libpeas-0.7.3[gtk] >=net-libs/libsoup-3.0.7:3.0 >=dev-libs/libxml2-2.7.8:2 x11-libs/pango >=sys-libs/tdb-1.2.6 >=dev-libs/totem-pl-parser-3.2:= cdr? ( >=app-cdr/brasero-2.91.90 ) daap? ( >=net-libs/libdmapsharing-3.9.11:4.0= >=media-plugins/gst-plugins-soup-1.4:1.0 ) gnome-keyring? ( >=app-crypt/libsecret-0.18 ) libnotify? ( >=x11-libs/libnotify-0.7.0 ) lirc? ( app-misc/lirc ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[xml(+)] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[xml(+)] ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[xml(+)] ) python_single_target_python3_9? ( >=dev-python/pygobject-3.0:3[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/pygobject-3.0:3[python_targets_python3_10(-)] ) python_single_target_python3_11? ( >=dev-python/pygobject-3.0:3[python_targets_python3_11(-)] ) ) udev? ( dev-libs/libgudev:= ipod? ( >=media-libs/libgpod-0.7.92[udev] ) mtp? ( >=media-libs/libmtp-0.3 ) ) media-plugins/gst-plugins-soup:1.0 media-plugins/gst-plugins-libmms:1.0 || ( media-plugins/gst-plugins-cdparanoia:1.0 media-plugins/gst-plugins-cdio:1.0 ) media-plugins/gst-plugins-meta:1.0 media-plugins/gst-plugins-taglib:1.0 x11-themes/adwaita-icon-theme python? ( >=dev-libs/libpeas-0.7.3[python,python_single_target_python3_9(-)?,python_single_target_python3_10(-)?,python_single_target_python3_11(-)?] net-libs/libsoup:3.0[introspection] x11-libs/gdk-pixbuf:2[introspection] x11-libs/gtk+:3[introspection] x11-libs/pango[introspection] dbus? ( sys-apps/dbus ) gnome-keyring? ( >=app-crypt/libsecret-0.18[introspection] ) ) upnp-av? ( >=media-libs/grilo-0.3.15-r1:0.3 >=media-plugins/grilo-plugins-0.3.16:0.3[upnp-av] ) +REQUIRED_USE=ipod? ( udev ) mtp? ( udev ) dbus? ( python ) python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=0 +SRC_URI=mirror://gnome/sources/rhythmbox/3.4/rhythmbox-3.4.7.tar.xz +_eclasses_=gnome.org 6b39404f1491c60a2d32e3c693a683fe gnome2-utils b0183db3b2e07b18f3b77bffec72e116 meson 915ec7c25e08d7886558215e6809ca1e multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e virtualx 817571665ee28575da44ee08135089e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=1e27f9c1447f859544971549045946e0 diff --git a/metadata/md5-cache/media-sound/timidity++-2.15.0-r6 b/metadata/md5-cache/media-sound/timidity++-2.15.0-r6 index 6c3a98a33493..ebe51d99655d 100644 --- a/metadata/md5-cache/media-sound/timidity++-2.15.0-r6 +++ b/metadata/md5-cache/media-sound/timidity++-2.15.0-r6 @@ -13,5 +13,5 @@ RDEPEND=alsa? ( media-libs/alsa-lib ) ao? ( >=media-libs/libao-0.8.5 ) emacs? ( REQUIRED_USE=tk? ( X ) SLOT=0 SRC_URI=mirror://sourceforge/timidity/TiMidity++-2.15.0.tar.xz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 1d6e8d43be4713f04a441f721d890d48 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common dcd21c5d379fc2217e95f529504c5fe0 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=50e49ef847c09a39246fac4ee648f114 diff --git a/metadata/md5-cache/media-tv/Manifest.gz b/metadata/md5-cache/media-tv/Manifest.gz index add33e81247b..126cb06e3435 100644 Binary files a/metadata/md5-cache/media-tv/Manifest.gz and b/metadata/md5-cache/media-tv/Manifest.gz differ diff --git a/metadata/md5-cache/media-tv/kodi-19.4-r3 b/metadata/md5-cache/media-tv/kodi-19.4-r3 deleted file mode 100644 index 69acfb6a42bd..000000000000 --- a/metadata/md5-cache/media-tv/kodi-19.4-r3 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=>=dev-libs/lzo-2.04 >=dev-libs/flatbuffers-1.12.0:= >=media-libs/libjpeg-turbo-2.0.4:= >=media-libs/libpng-1.6.26:0= dev-lang/swig dev-util/cmake media-libs/giflib >=dev-libs/flatbuffers-1.11.0 >=media-libs/libjpeg-turbo-2.0.4:= >=media-libs/libpng-1.6.26:0= virtual/pkgconfig virtual/jre sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=dev-libs/lzo-2.04 >=dev-libs/flatbuffers-1.12.0:= >=media-libs/libjpeg-turbo-2.0.4:= >=media-libs/libpng-1.6.26:0= python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite,ssl] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite,ssl] ) airplay? ( >=app-pda/libplist-2.0.0 net-libs/shairplay ) alsa? ( >=media-libs/alsa-lib-1.1.4.1 ) bluetooth? ( net-wireless/bluez ) bluray? ( >=media-libs/libbluray-1.1.2 ) caps? ( sys-libs/libcap ) dbus? ( sys-apps/dbus ) dev-db/sqlite =dev-libs/fribidi-1.0.5 cec? ( >=dev-libs/libcec-4.0[raspberry-pi?] ) dev-libs/libpcre[cxx] >=dev-libs/spdlog-1.5.0:= dev-libs/tinyxml[stl] python_single_target_python3_9? ( dev-python/pillow[python_targets_python3_9(-)] dev-python/pycryptodome[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pillow[python_targets_python3_10(-)] dev-python/pycryptodome[python_targets_python3_10(-)] ) >=dev-libs/libcdio-2.1.0[cxx] >=dev-libs/libfmt-6.1.2 dev-libs/libfstrcmp gbm? ( >=dev-libs/libinput-1.10.5 media-libs/mesa[gbm(+)] x11-libs/libxkbcommon ) gles? ( !raspberry-pi? ( media-libs/mesa[gles2] ) ) lcms? ( media-libs/lcms:2 ) libusb? ( virtual/libusb:1 ) virtual/ttf-fonts media-fonts/roboto >=media-libs/freetype-2.10.1 >=media-libs/libass-0.13.4 !raspberry-pi? ( media-libs/mesa[egl(+)] ) >=media-libs/taglib-1.11.1 system-ffmpeg? ( >=media-video/ffmpeg-4.3.2:=[dav1d?,encode,postproc] =media-video/ffmpeg-4*[openssl] ) !system-ffmpeg? ( app-arch/bzip2 dav1d? ( media-libs/dav1d:= ) ) mysql? ( dev-db/mysql-connector-c:= ) mariadb? ( dev-db/mariadb-connector-c:= ) >=net-misc/curl-7.68.0[http2] nfs? ( >=net-fs/libnfs-2.0.0:= ) !gles? ( media-libs/glu ) >=dev-libs/openssl-1.1.1k:0= raspberry-pi? ( || ( media-libs/raspberrypi-userland media-libs/raspberrypi-userland-bin media-libs/mesa[egl(+),gles2,video_cards_vc4] ) ) pulseaudio? ( media-sound/pulseaudio ) samba? ( >=net-fs/samba-3.4.6[smbclient(+)] ) >=sys-libs/zlib-1.2.11 udf? ( >=dev-libs/libudfread-1.0.0 ) udev? ( virtual/udev ) vaapi? ( media-libs/libva:= !gles? ( media-libs/libva[opengl] ) system-ffmpeg? ( media-video/ffmpeg[vaapi] ) wayland? ( media-libs/libva[wayland] ) X? ( media-libs/libva[X] ) ) virtual/libiconv vdpau? ( || ( >=x11-libs/libvdpau-1.1 >=x11-drivers/nvidia-drivers-180.51 ) system-ffmpeg? ( media-video/ffmpeg[vdpau] ) ) wayland? ( >=dev-cpp/waylandpp-0.2.3:= media-libs/mesa[wayland] >=dev-libs/wayland-protocols-1.7 >=x11-libs/libxkbcommon-0.4.1 ) webserver? ( >=net-libs/libmicrohttpd-0.9.55[messages(+)] ) X? ( media-libs/mesa[X] !gles? ( media-libs/libglvnd[X] ) x11-libs/libX11 x11-libs/libXrandr x11-libs/libXrender system-ffmpeg? ( media-video/ffmpeg[X] ) ) x11-libs/libdrm xslt? ( dev-libs/libxslt >=dev-libs/libxml2-2.9.4 ) zeroconf? ( net-dns/avahi[dbus] ) dev-libs/rapidjson test? ( >=dev-cpp/gtest-1.10.0 ) dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=A free and open source media-player and entertainment hub -EAPI=7 -HOMEPAGE=https://kodi.tv/ https://kodi.wiki/ -INHERIT=autotools cmake desktop libtool linux-info pax-utils python-single-r1 xdg -IUSE=airplay alsa bluetooth bluray caps cec +css dav1d dbus eventclients gbm gles lcms libusb lirc mariadb mysql nfs +optical power-control pulseaudio raspberry-pi samba +system-ffmpeg test udf udev udisks upnp upower vaapi vdpau wayland webserver +X +xslt zeroconf cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_sse4_1 cpu_flags_x86_sse4_2 cpu_flags_x86_avx cpu_flags_x86_avx2 cpu_flags_arm_neon python_single_target_python3_9 python_single_target_python3_10 -KEYWORDS=amd64 ~arm arm64 x86 -LICENSE=GPL-2+ -RDEPEND=>=dev-libs/lzo-2.04 >=dev-libs/flatbuffers-1.12.0:= >=media-libs/libjpeg-turbo-2.0.4:= >=media-libs/libpng-1.6.26:0= python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite,ssl] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite,ssl] ) airplay? ( >=app-pda/libplist-2.0.0 net-libs/shairplay ) alsa? ( >=media-libs/alsa-lib-1.1.4.1 ) bluetooth? ( net-wireless/bluez ) bluray? ( >=media-libs/libbluray-1.1.2 ) caps? ( sys-libs/libcap ) dbus? ( sys-apps/dbus ) dev-db/sqlite =dev-libs/fribidi-1.0.5 cec? ( >=dev-libs/libcec-4.0[raspberry-pi?] ) dev-libs/libpcre[cxx] >=dev-libs/spdlog-1.5.0:= dev-libs/tinyxml[stl] python_single_target_python3_9? ( dev-python/pillow[python_targets_python3_9(-)] dev-python/pycryptodome[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pillow[python_targets_python3_10(-)] dev-python/pycryptodome[python_targets_python3_10(-)] ) >=dev-libs/libcdio-2.1.0[cxx] >=dev-libs/libfmt-6.1.2 dev-libs/libfstrcmp gbm? ( >=dev-libs/libinput-1.10.5 media-libs/mesa[gbm(+)] x11-libs/libxkbcommon ) gles? ( !raspberry-pi? ( media-libs/mesa[gles2] ) ) lcms? ( media-libs/lcms:2 ) libusb? ( virtual/libusb:1 ) virtual/ttf-fonts media-fonts/roboto >=media-libs/freetype-2.10.1 >=media-libs/libass-0.13.4 !raspberry-pi? ( media-libs/mesa[egl(+)] ) >=media-libs/taglib-1.11.1 system-ffmpeg? ( >=media-video/ffmpeg-4.3.2:=[dav1d?,encode,postproc] =media-video/ffmpeg-4*[openssl] ) !system-ffmpeg? ( app-arch/bzip2 dav1d? ( media-libs/dav1d:= ) ) mysql? ( dev-db/mysql-connector-c:= ) mariadb? ( dev-db/mariadb-connector-c:= ) >=net-misc/curl-7.68.0[http2] nfs? ( >=net-fs/libnfs-2.0.0:= ) !gles? ( media-libs/glu ) >=dev-libs/openssl-1.1.1k:0= raspberry-pi? ( || ( media-libs/raspberrypi-userland media-libs/raspberrypi-userland-bin media-libs/mesa[egl(+),gles2,video_cards_vc4] ) ) pulseaudio? ( media-sound/pulseaudio ) samba? ( >=net-fs/samba-3.4.6[smbclient(+)] ) >=sys-libs/zlib-1.2.11 udf? ( >=dev-libs/libudfread-1.0.0 ) udev? ( virtual/udev ) vaapi? ( media-libs/libva:= !gles? ( media-libs/libva[opengl] ) system-ffmpeg? ( media-video/ffmpeg[vaapi] ) wayland? ( media-libs/libva[wayland] ) X? ( media-libs/libva[X] ) ) virtual/libiconv vdpau? ( || ( >=x11-libs/libvdpau-1.1 >=x11-drivers/nvidia-drivers-180.51 ) system-ffmpeg? ( media-video/ffmpeg[vdpau] ) ) wayland? ( >=dev-cpp/waylandpp-0.2.3:= media-libs/mesa[wayland] >=dev-libs/wayland-protocols-1.7 >=x11-libs/libxkbcommon-0.4.1 ) webserver? ( >=net-libs/libmicrohttpd-0.9.55[messages(+)] ) X? ( media-libs/mesa[X] !gles? ( media-libs/libglvnd[X] ) x11-libs/libX11 x11-libs/libXrandr x11-libs/libXrender system-ffmpeg? ( media-video/ffmpeg[X] ) ) x11-libs/libdrm xslt? ( dev-libs/libxslt >=dev-libs/libxml2-2.9.4 ) zeroconf? ( net-dns/avahi[dbus] ) lirc? ( app-misc/lirc ) power-control? ( || ( sys-apps/systemd sys-auth/elogind ) ) udisks? ( sys-fs/udisks:2 ) upower? ( sys-power/upower ) -REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 ) || ( gbm wayland X ) ?? ( mariadb mysql ) bluray? ( udf ) udev? ( !libusb ) udisks? ( dbus ) upower? ( dbus ) power-control? ( dbus ) vdpau? ( X !gles !gbm ) zeroconf? ( dbus ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/xbmc/libdvdcss/archive/1.4.2-Leia-Beta-5.tar.gz -> libdvdcss-1.4.2-Leia-Beta-5.tar.gz https://github.com/xbmc/libdvdread/archive/6.0.0-Leia-Alpha-3.tar.gz -> libdvdread-6.0.0-Leia-Alpha-3.tar.gz https://github.com/xbmc/libdvdnav/archive/6.0.0-Leia-Alpha-3.tar.gz -> libdvdnav-6.0.0-Leia-Alpha-3.tar.gz !system-ffmpeg? ( https://github.com/xbmc/FFmpeg/archive/4.3.2-Matrix-19.1.tar.gz -> ffmpeg-kodi-4.3.2-Matrix-19.1.tar.gz ) https://github.com/xbmc/xbmc/archive/19.4-Matrix.tar.gz -> kodi-19.4-Matrix.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a cmake 7fb5980de96325cbab639f5b2187357c desktop 021728fdc1b03b36357dbc89489e0f0d eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 pax-utils 91d47e5d20627c717aa878b9167c62a8 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=b08e14c062ad1b6eaa630237e45d5c68 diff --git a/metadata/md5-cache/media-tv/mythtv-31.0_p20210731-r2 b/metadata/md5-cache/media-tv/mythtv-31.0_p20210731-r3 similarity index 71% rename from metadata/md5-cache/media-tv/mythtv-31.0_p20210731-r2 rename to metadata/md5-cache/media-tv/mythtv-31.0_p20210731-r3 index 57a3df6dea04..e7272dff23eb 100644 --- a/metadata/md5-cache/media-tv/mythtv-31.0_p20210731-r2 +++ b/metadata/md5-cache/media-tv/mythtv-31.0_p20210731-r3 @@ -1,6 +1,6 @@ BDEPEND=virtual/pkgconfig opengl? ( virtual/opengl ) python? ( || ( >=dev-lang/python-3.9.16-r1:3.9 ) ) virtual/pkgconfig DEFINED_PHASES=config configure info install postinst prepare setup -DEPEND=acct-user/mythtv dev-libs/glib:2 dev-libs/lzo dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5[jpeg] dev-qt/qtnetwork:5 dev-qt/qtscript:5 dev-qt/qtsql:5[mysql] dev-qt/qtwidgets:5 dev-qt/qtxml:5 media-fonts/corefonts media-fonts/dejavu media-fonts/liberation-fonts media-fonts/tex-gyre media-gfx/exiv2:= =dev-lang/python-3.9.16-r1:3.9 dev-python/python-dateutil[python_targets_python3_9(-)] dev-python/future[python_targets_python3_9(-)] dev-python/lxml[python_targets_python3_9(-)] dev-python/mysqlclient[python_targets_python3_9(-)] dev-python/requests-cache[python_targets_python3_9(-)] dev-python/simplejson[python_targets_python3_9(-)] ) ) ) +DEPEND=acct-user/mythtv dev-libs/glib:2 dev-libs/lzo dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5[jpeg] dev-qt/qtnetwork:5 dev-qt/qtscript:5 dev-qt/qtsql:5[mysql] dev-qt/qtwidgets:5 dev-qt/qtxml:5 media-fonts/corefonts media-fonts/dejavu media-fonts/liberation-fonts media-fonts/tex-gyre media-gfx/exiv2:= =dev-lang/python-3.9.16-r1:3.9 dev-python/python-dateutil[python_targets_python3_9(-)] dev-python/future[python_targets_python3_9(-)] dev-python/lxml[python_targets_python3_9(-)] dev-python/mysqlclient[python_targets_python3_9(-)] dev-python/requests-cache[python_targets_python3_9(-)] dev-python/simplejson[python_targets_python3_9(-)] ) ) ) DESCRIPTION=Open Source DVR and media center hub EAPI=7 HOMEPAGE=https://www.mythtv.org https://github.com/MythTV/mythtv @@ -8,9 +8,9 @@ INHERIT=eutils flag-o-matic python-any-r1 qmake-utils readme.gentoo-r1 systemd u IUSE=alsa asi autostart bluray cdda cdr cec cpu_flags_ppc_altivec debug dvd dvb egl exif fftw jack java +lame lcd libass lirc nvdec +opengl oss perl pulseaudio python raw systemd vaapi vdpau vpx +wrapper x264 x265 +xml xmltv +xvid +X zeroconf input_devices_joystick v4l ivtv ieee1394 hdpvr hdhomerun vbox ceton KEYWORDS=~amd64 ~x86 LICENSE=GPL-2+ -RDEPEND=acct-user/mythtv dev-libs/glib:2 dev-libs/lzo dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5[jpeg] dev-qt/qtnetwork:5 dev-qt/qtscript:5 dev-qt/qtsql:5[mysql] dev-qt/qtwidgets:5 dev-qt/qtxml:5 media-fonts/corefonts media-fonts/dejavu media-fonts/liberation-fonts media-fonts/tex-gyre media-gfx/exiv2:= mythtv-31.0_p20210731.tar.gz _eclasses_=eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 qmake-utils 59420c906278d16deaaa629f9d115707 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e user-info 83547b4df3e1ba5a6bf91a0837eaa664 wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=0425155df6b4b089edd17ebbadff2b3c +_md5_=810f29bd6ca92df76ac031da1e0d2bc6 diff --git a/metadata/md5-cache/media-tv/mythtv-32.0-r2 b/metadata/md5-cache/media-tv/mythtv-32.0-r4 similarity index 64% rename from metadata/md5-cache/media-tv/mythtv-32.0-r2 rename to metadata/md5-cache/media-tv/mythtv-32.0-r4 index 5e8ba6656648..52f4c1b6cf2c 100644 --- a/metadata/md5-cache/media-tv/mythtv-32.0-r2 +++ b/metadata/md5-cache/media-tv/mythtv-32.0-r4 @@ -1,6 +1,6 @@ BDEPEND=virtual/pkgconfig opengl? ( virtual/opengl ) python? ( || ( >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) ) virtual/pkgconfig DEFINED_PHASES=config configure install postinst preinst prepare setup -DEPEND=acct-user/mythtv dev-libs/glib:2 dev-libs/lzo dev-libs/libzip:= dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5[jpeg] dev-qt/qtnetwork:5 dev-qt/qtscript:5 dev-qt/qtsql:5[mysql] dev-qt/qtwidgets:5 dev-qt/qtxml:5 media-fonts/corefonts media-fonts/dejavu media-fonts/liberation-fonts media-fonts/tex-gyre media-gfx/exiv2:= media-libs/freetype:2 media-libs/libbluray:=[java?] media-libs/libsamplerate media-libs/libsoundtouch media-libs/taglib sys-libs/zlib alsa? ( media-libs/alsa-lib ) autostart? ( net-dialup/mingetty x11-apps/xset x11-wm/evilwm ) cec? ( dev-libs/libcec ) dvd? ( dev-libs/libcdio:= media-libs/libdvdcss sys-fs/udisks:2 ) fftw? ( sci-libs/fftw:3.0=[threads] ) hdhomerun? ( media-libs/libhdhomerun ) ieee1394? ( media-libs/libiec61883 sys-libs/libavc1394 sys-libs/libraw1394 ) jack? ( virtual/jack ) lame? ( media-sound/lame ) lcd? ( app-misc/lcdproc ) libass? ( media-libs/libass:= ) lirc? ( app-misc/lirc ) nvdec? ( x11-drivers/nvidia-drivers ) opengl? ( dev-qt/qtopengl:5 ) pulseaudio? ( media-sound/pulseaudio ) systemd? ( sys-apps/systemd:= ) vaapi? ( media-libs/libva:=[opengl] ) vdpau? ( x11-libs/libvdpau ) vpx? ( media-libs/libvpx:= ) x264? ( media-libs/x264:= ) X? ( x11-apps/xinit x11-libs/libX11:= x11-libs/libXext:= x11-libs/libXinerama:= x11-libs/libXrandr:= x11-libs/libXv:= x11-libs/libXxf86vm:= x11-misc/wmctrl:= ) x265? ( media-libs/x265 ) xml? ( dev-libs/libxml2:2 ) xmltv? ( dev-perl/XML-LibXML media-tv/xmltv ) xvid? ( media-libs/xvid ) zeroconf? ( dev-libs/openssl:= net-dns/avahi[mdnsresponder-compat] ) dev-lang/yasm x11-base/xorg-proto perl? ( dev-perl/DBD-mysql dev-perl/DBI dev-perl/HTTP-Message dev-perl/IO-Socket-INET6 dev-perl/LWP-Protocol-https dev-perl/Net-UPnP dev-perl/XML-Simple ) python? ( || ( ( >=dev-lang/python-3.10.9-r1:3.10 dev-python/python-dateutil[python_targets_python3_10(-)] dev-python/future[python_targets_python3_10(-)] dev-python/lxml[python_targets_python3_10(-)] dev-python/mysqlclient[python_targets_python3_10(-)] dev-python/requests-cache[python_targets_python3_10(-)] dev-python/simplejson[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 dev-python/python-dateutil[python_targets_python3_9(-)] dev-python/future[python_targets_python3_9(-)] dev-python/lxml[python_targets_python3_9(-)] dev-python/mysqlclient[python_targets_python3_9(-)] dev-python/requests-cache[python_targets_python3_9(-)] dev-python/simplejson[python_targets_python3_9(-)] ) ) ) java? ( >=dev-java/java-config-2.2.0-r3 ) java? ( >=dev-java/ant-core-1.8.2:0 dev-java/javatoolkit ) +DEPEND=acct-user/mythtv dev-libs/glib:2 dev-libs/lzo dev-libs/libzip:= dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5[jpeg] dev-qt/qtnetwork:5 dev-qt/qtscript:5 dev-qt/qtsql:5[mysql] dev-qt/qtwidgets:5 dev-qt/qtxml:5 media-fonts/corefonts media-fonts/dejavu media-fonts/liberation-fonts media-fonts/tex-gyre media-gfx/exiv2:= media-libs/freetype:2 media-libs/libbluray:=[java?] media-libs/libsamplerate media-libs/libsoundtouch media-libs/taglib sys-libs/zlib alsa? ( media-libs/alsa-lib ) autostart? ( net-dialup/mingetty x11-apps/xset x11-wm/evilwm ) cec? ( dev-libs/libcec ) dvd? ( dev-libs/libcdio:= media-libs/libdvdcss sys-fs/udisks:2 ) fftw? ( sci-libs/fftw:3.0=[threads] ) hdhomerun? ( media-libs/libhdhomerun ) ieee1394? ( media-libs/libiec61883 sys-libs/libavc1394 sys-libs/libraw1394 ) jack? ( virtual/jack ) lame? ( media-sound/lame ) lcd? ( app-misc/lcdproc ) libass? ( media-libs/libass:= ) lirc? ( app-misc/lirc ) nvdec? ( x11-drivers/nvidia-drivers ) opengl? ( dev-qt/qtopengl:5 ) pulseaudio? ( media-sound/pulseaudio ) systemd? ( sys-apps/systemd:= ) vaapi? ( media-libs/libva:= ) vdpau? ( x11-libs/libvdpau ) vpx? ( media-libs/libvpx:= ) x264? ( media-libs/x264:= ) X? ( x11-apps/xinit x11-libs/libX11:= x11-libs/libXext:= x11-libs/libXinerama:= x11-libs/libXrandr:= x11-libs/libXv:= x11-libs/libXxf86vm:= x11-misc/wmctrl:= ) x265? ( media-libs/x265 ) xml? ( dev-libs/libxml2:2 ) xmltv? ( dev-perl/XML-LibXML media-tv/xmltv ) xvid? ( media-libs/xvid ) zeroconf? ( dev-libs/openssl:= net-dns/avahi[mdnsresponder-compat] ) dev-lang/yasm x11-base/xorg-proto perl? ( dev-perl/DBD-mysql dev-perl/DBI dev-perl/HTTP-Message dev-perl/IO-Socket-INET6 dev-perl/LWP-Protocol-https dev-perl/Net-UPnP dev-perl/XML-Simple ) python? ( || ( ( >=dev-lang/python-3.10.9-r1:3.10 dev-python/python-dateutil[python_targets_python3_10(-)] dev-python/future[python_targets_python3_10(-)] dev-python/lxml[python_targets_python3_10(-)] dev-python/mysqlclient[python_targets_python3_10(-)] dev-python/requests-cache[python_targets_python3_10(-)] dev-python/simplejson[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 dev-python/python-dateutil[python_targets_python3_9(-)] dev-python/future[python_targets_python3_9(-)] dev-python/lxml[python_targets_python3_9(-)] dev-python/mysqlclient[python_targets_python3_9(-)] dev-python/requests-cache[python_targets_python3_9(-)] dev-python/simplejson[python_targets_python3_9(-)] ) ) ) java? ( >=dev-java/java-config-2.2.0-r3 ) java? ( >=dev-java/ant-core-1.8.2:0 dev-java/javatoolkit ) DESCRIPTION=Open Source DVR and media center hub EAPI=8 HOMEPAGE=https://www.mythtv.org https://github.com/MythTV/mythtv @@ -8,9 +8,9 @@ INHERIT=flag-o-matic java-pkg-opt-2 java-ant-2 python-any-r1 qmake-utils readme. IUSE=alsa asi autostart cdda cdr cec cpu_flags_ppc_altivec debug dvd dvb exif fftw jack java +lame lcd libass lirc nvdec +opengl oss perl pulseaudio python raw systemd vaapi vdpau vpx +wrapper x264 x265 +xml xmltv +xvid +X zeroconf input_devices_joystick v4l ieee1394 hdhomerun vbox ceton java KEYWORDS=~amd64 ~x86 LICENSE=GPL-2+ -RDEPEND=acct-user/mythtv dev-libs/glib:2 dev-libs/lzo dev-libs/libzip:= dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5[jpeg] dev-qt/qtnetwork:5 dev-qt/qtscript:5 dev-qt/qtsql:5[mysql] dev-qt/qtwidgets:5 dev-qt/qtxml:5 media-fonts/corefonts media-fonts/dejavu media-fonts/liberation-fonts media-fonts/tex-gyre media-gfx/exiv2:= media-libs/freetype:2 media-libs/libbluray:=[java?] media-libs/libsamplerate media-libs/libsoundtouch media-libs/taglib sys-libs/zlib alsa? ( media-libs/alsa-lib ) autostart? ( net-dialup/mingetty x11-apps/xset x11-wm/evilwm ) cec? ( dev-libs/libcec ) dvd? ( dev-libs/libcdio:= media-libs/libdvdcss sys-fs/udisks:2 ) fftw? ( sci-libs/fftw:3.0=[threads] ) hdhomerun? ( media-libs/libhdhomerun ) ieee1394? ( media-libs/libiec61883 sys-libs/libavc1394 sys-libs/libraw1394 ) jack? ( virtual/jack ) lame? ( media-sound/lame ) lcd? ( app-misc/lcdproc ) libass? ( media-libs/libass:= ) lirc? ( app-misc/lirc ) nvdec? ( x11-drivers/nvidia-drivers ) opengl? ( dev-qt/qtopengl:5 ) pulseaudio? ( media-sound/pulseaudio ) systemd? ( sys-apps/systemd:= ) vaapi? ( media-libs/libva:=[opengl] ) vdpau? ( x11-libs/libvdpau ) vpx? ( media-libs/libvpx:= ) x264? ( media-libs/x264:= ) X? ( x11-apps/xinit x11-libs/libX11:= x11-libs/libXext:= x11-libs/libXinerama:= x11-libs/libXrandr:= x11-libs/libXv:= x11-libs/libXxf86vm:= x11-misc/wmctrl:= ) x265? ( media-libs/x265 ) xml? ( dev-libs/libxml2:2 ) xmltv? ( dev-perl/XML-LibXML media-tv/xmltv ) xvid? ( media-libs/xvid ) zeroconf? ( dev-libs/openssl:= net-dns/avahi[mdnsresponder-compat] ) java? ( >=dev-java/java-config-2.2.0-r3 ) +RDEPEND=acct-user/mythtv dev-libs/glib:2 dev-libs/lzo dev-libs/libzip:= dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5[jpeg] dev-qt/qtnetwork:5 dev-qt/qtscript:5 dev-qt/qtsql:5[mysql] dev-qt/qtwidgets:5 dev-qt/qtxml:5 media-fonts/corefonts media-fonts/dejavu media-fonts/liberation-fonts media-fonts/tex-gyre media-gfx/exiv2:= media-libs/freetype:2 media-libs/libbluray:=[java?] media-libs/libsamplerate media-libs/libsoundtouch media-libs/taglib sys-libs/zlib alsa? ( media-libs/alsa-lib ) autostart? ( net-dialup/mingetty x11-apps/xset x11-wm/evilwm ) cec? ( dev-libs/libcec ) dvd? ( dev-libs/libcdio:= media-libs/libdvdcss sys-fs/udisks:2 ) fftw? ( sci-libs/fftw:3.0=[threads] ) hdhomerun? ( media-libs/libhdhomerun ) ieee1394? ( media-libs/libiec61883 sys-libs/libavc1394 sys-libs/libraw1394 ) jack? ( virtual/jack ) lame? ( media-sound/lame ) lcd? ( app-misc/lcdproc ) libass? ( media-libs/libass:= ) lirc? ( app-misc/lirc ) nvdec? ( x11-drivers/nvidia-drivers ) opengl? ( dev-qt/qtopengl:5 ) pulseaudio? ( media-sound/pulseaudio ) systemd? ( sys-apps/systemd:= ) vaapi? ( media-libs/libva:= ) vdpau? ( x11-libs/libvdpau ) vpx? ( media-libs/libvpx:= ) x264? ( media-libs/x264:= ) X? ( x11-apps/xinit x11-libs/libX11:= x11-libs/libXext:= x11-libs/libXinerama:= x11-libs/libXrandr:= x11-libs/libXv:= x11-libs/libXxf86vm:= x11-misc/wmctrl:= ) x265? ( media-libs/x265 ) xml? ( dev-libs/libxml2:2 ) xmltv? ( dev-perl/XML-LibXML media-tv/xmltv ) xvid? ( media-libs/xvid ) zeroconf? ( dev-libs/openssl:= net-dns/avahi[mdnsresponder-compat] ) java? ( >=dev-java/java-config-2.2.0-r3 ) REQUIRED_USE=cdr? ( cdda ) SLOT=0 SRC_URI=https://github.com/MythTV/mythtv/archive/v32.0.tar.gz -> mythtv-32.0.tar.gz _eclasses_=flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a java-ant-2 5a1b508f2544b7cac8ec27c170676de0 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 qmake-utils 59420c906278d16deaaa629f9d115707 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e user-info 83547b4df3e1ba5a6bf91a0837eaa664 -_md5_=9462057c479fbd0c4db289aa07799f6d +_md5_=e6284cb5337148c6e015a3fa1071a952 diff --git a/metadata/md5-cache/media-video/Manifest.gz b/metadata/md5-cache/media-video/Manifest.gz index 30fcd8849e7b..044b3133fb7e 100644 Binary files a/metadata/md5-cache/media-video/Manifest.gz and b/metadata/md5-cache/media-video/Manifest.gz differ diff --git a/metadata/md5-cache/media-video/cheese-44.0.1 b/metadata/md5-cache/media-video/cheese-44.0.1 new file mode 100644 index 000000000000..85302b60fd2d --- /dev/null +++ b/metadata/md5-cache/media-video/cheese-44.0.1 @@ -0,0 +1,17 @@ +BDEPEND=gtk-doc? ( dev-util/gtk-doc ) dev-libs/libxslt app-text/docbook-xml-dtd:4.3 dev-util/itstool dev-libs/appstream-glib dev-libs/libxml2:2 dev-util/glib-utils >=sys-devel/gettext-0.19.8 virtual/pkgconfig x11-base/xorg-proto test? ( x11-libs/libXtst ) || ( dev-lang/vala:0.56 ) app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test +DEPEND=>=media-libs/clutter-1.13.2:1.0[introspection?] media-libs/clutter-gst:3.0 >=media-libs/clutter-gtk-0.91.8:1.0 x11-libs/gdk-pixbuf:2[jpeg,introspection?] >=dev-libs/glib-2.39.90:2 >=gnome-base/gnome-desktop-2.91.6:3= >=media-libs/gstreamer-1.4:1.0[introspection?] >=media-libs/gst-plugins-base-1.4:1.0[ogg,pango,theora,vorbis] >=media-libs/gst-plugins-bad-1.4:1.0 >=x11-libs/gtk+-3.13.4:3 >=media-libs/libcanberra-0.26[gtk3] x11-libs/libX11 sys-apps/dbus media-video/gnome-video-effects introspection? ( >=dev-libs/gobject-introspection-1.56:= ) media-libs/cogl:1.0=[introspection?] +DESCRIPTION=A cheesy program to take pictures and videos from your webcam +EAPI=8 +HOMEPAGE=https://wiki.gnome.org/Apps/Cheese +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=gnome.org gnome2-utils meson vala virtualx xdg +IUSE=gtk-doc +introspection test test +KEYWORDS=~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=GPL-2+ +RDEPEND=>=media-libs/clutter-1.13.2:1.0[introspection?] media-libs/clutter-gst:3.0 >=media-libs/clutter-gtk-0.91.8:1.0 x11-libs/gdk-pixbuf:2[jpeg,introspection?] >=dev-libs/glib-2.39.90:2 >=gnome-base/gnome-desktop-2.91.6:3= >=media-libs/gstreamer-1.4:1.0[introspection?] >=media-libs/gst-plugins-base-1.4:1.0[ogg,pango,theora,vorbis] >=media-libs/gst-plugins-bad-1.4:1.0 >=x11-libs/gtk+-3.13.4:3 >=media-libs/libcanberra-0.26[gtk3] x11-libs/libX11 sys-apps/dbus media-video/gnome-video-effects introspection? ( >=dev-libs/gobject-introspection-1.56:= ) media-libs/cogl:1.0=[introspection?] >=media-libs/gst-plugins-good-1.4:1.0 >=media-plugins/gst-plugins-jpeg-1.4:1.0 || ( >=media-plugins/gst-plugins-v4l2-1.4:1.0 media-video/pipewire[gstreamer,v4l] ) >=media-plugins/gst-plugins-vpx-1.4:1.0 +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=0/8 +SRC_URI=mirror://gnome/sources/cheese/44/cheese-44.0.1.tar.xz +_eclasses_=gnome.org 6b39404f1491c60a2d32e3c693a683fe gnome2-utils b0183db3b2e07b18f3b77bffec72e116 meson 915ec7c25e08d7886558215e6809ca1e multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e vala 1343f639cc74d2aa8b36fc08677da58d virtualx 817571665ee28575da44ee08135089e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=c3c74fa1b37a8bb3682267d50b87d094 diff --git a/metadata/md5-cache/media-video/pipewire-0.3.69 b/metadata/md5-cache/media-video/pipewire-0.3.69-r1 similarity index 100% rename from metadata/md5-cache/media-video/pipewire-0.3.69 rename to metadata/md5-cache/media-video/pipewire-0.3.69-r1 diff --git a/metadata/md5-cache/net-analyzer/Manifest.gz b/metadata/md5-cache/net-analyzer/Manifest.gz index 51b164646841..69acc472cb98 100644 Binary files a/metadata/md5-cache/net-analyzer/Manifest.gz and b/metadata/md5-cache/net-analyzer/Manifest.gz differ diff --git a/metadata/md5-cache/net-analyzer/chronograf-1.8.5 b/metadata/md5-cache/net-analyzer/chronograf-1.8.5 index 6b42760b5744..c7554dc2b1ef 100644 --- a/metadata/md5-cache/net-analyzer/chronograf-1.8.5 +++ b/metadata/md5-cache/net-analyzer/chronograf-1.8.5 @@ -11,5 +11,5 @@ RDEPEND=acct-group/chronograf acct-user/chronograf RESTRICT=strip SLOT=0 SRC_URI=https://github.com/influxdata/chronograf/archive/1.8.5.tar.gz -> chronograf-1.8.5.tar.gz https://dev.gentoo.org/~williamh/dist/chronograf-1.8.5-deps.tar.xz https://dev.gentoo.org/~williamh/dist/chronograf-1.8.5-gen.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=c4d1aa8b528951721a14b78255bf7dbb diff --git a/metadata/md5-cache/net-analyzer/linkchecker-10.2.1 b/metadata/md5-cache/net-analyzer/linkchecker-10.2.1 index a15875d447b7..d796ccb26bd4 100644 --- a/metadata/md5-cache/net-analyzer/linkchecker-10.2.1 +++ b/metadata/md5-cache/net-analyzer/linkchecker-10.2.1 @@ -5,7 +5,7 @@ EAPI=8 HOMEPAGE=https://github.com/linkcheck/linkchecker INHERIT=bash-completion-r1 distutils-r1 multiprocessing optfeature IUSE=sqlite test python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-2 RDEPEND=python_single_target_python3_9? ( dev-python/beautifulsoup4[python_targets_python3_9(-)] dev-python/dnspython[python_targets_python3_9(-)] dev-python/requests[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/beautifulsoup4[python_targets_python3_10(-)] dev-python/dnspython[python_targets_python3_10(-)] dev-python/requests[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/beautifulsoup4[python_targets_python3_11(-)] dev-python/dnspython[python_targets_python3_11(-)] dev-python/requests[python_targets_python3_11(-)] ) python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite?] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite?] ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[sqlite?] ) REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/linkchecker/linkchecker/releases/download/v10.2.1/LinkChecker-10.2.1.tar.gz _eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=5861ea245b2d03a9b32d77fff4d8cfe7 +_md5_=c40295d3c854dd57e4e0471fb0ee9656 diff --git a/metadata/md5-cache/net-analyzer/monitoring-plugins-2.3.3-r1 b/metadata/md5-cache/net-analyzer/monitoring-plugins-2.3.3-r1 index f45a3e629eac..8da67e456110 100644 --- a/metadata/md5-cache/net-analyzer/monitoring-plugins-2.3.3-r1 +++ b/metadata/md5-cache/net-analyzer/monitoring-plugins-2.3.3-r1 @@ -5,11 +5,11 @@ EAPI=8 HOMEPAGE=https://www.monitoring-plugins.org/ INHERIT=flag-o-matic IUSE=curl gnutls ipv6 ldap mysql dns fping game postgres radius samba snmp ssh +ssl -KEYWORDS=~amd64 ~arm ~arm64 ~sparc ~x86 +KEYWORDS=amd64 ~arm ~arm64 sparc x86 LICENSE=GPL-3 RDEPEND=dev-lang/perl curl? ( dev-libs/uriparser net-misc/curl ) ldap? ( net-nds/openldap:= ) mysql? ( || ( dev-db/mysql-connector-c dev-db/mariadb-connector-c ) ) postgres? ( dev-db/postgresql:= ) ssl? ( !gnutls? ( dev-libs/openssl:0= ) gnutls? ( net-libs/gnutls ) ) radius? ( net-dialup/freeradius-client ) dns? ( net-dns/bind-tools ) game? ( games-util/qstat ) fping? ( net-analyzer/fping ) samba? ( net-fs/samba ) ssh? ( net-misc/openssh ) snmp? ( dev-perl/Net-SNMP net-analyzer/net-snmp[-minimal] ) acct-group/nagios acct-user/nagios !net-analyzer/nagios-plugins RESTRICT=test SLOT=0 SRC_URI=https://www.monitoring-plugins.org/download/monitoring-plugins-2.3.3.tar.gz _eclasses_=flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=decacd481ffd0db990c8fc8a576da127 +_md5_=61da39593170bde1080ca1fb0eb4a857 diff --git a/metadata/md5-cache/net-analyzer/suricata-6.0.9 b/metadata/md5-cache/net-analyzer/suricata-6.0.11 similarity index 91% rename from metadata/md5-cache/net-analyzer/suricata-6.0.9 rename to metadata/md5-cache/net-analyzer/suricata-6.0.11 index b6d9bcfd413d..f8916d0b10b6 100644 --- a/metadata/md5-cache/net-analyzer/suricata-6.0.9 +++ b/metadata/md5-cache/net-analyzer/suricata-6.0.11 @@ -1,6 +1,6 @@ BDEPEND=verify-sig? ( >=sec-keys/openpgp-keys-oisf-20200807 ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 virtual/pkgconfig verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=config configure install postinst prepare pretend setup unpack -DEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) acct-group/suricata acct-user/suricata dev-libs/jansson:= dev-libs/libpcre dev-libs/libyaml net-libs/libnet:* net-libs/libnfnetlink dev-libs/nspr dev-libs/nss python_single_target_python3_9? ( dev-python/pyyaml[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pyyaml[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pyyaml[python_targets_python3_11(-)] ) >=net-libs/libhtp-0.5.42 net-libs/libpcap sys-apps/file sys-libs/libcap-ng bpf? ( =sys-devel/autoconf-2.69-r5 virtual/rust +DEFINED_PHASES=configure install postinst prepare pretend setup unpack +DEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) acct-group/suricata acct-user/suricata dev-libs/jansson:= dev-libs/libpcre dev-libs/libyaml net-libs/libnet:* net-libs/libnfnetlink dev-libs/nspr dev-libs/nss python_single_target_python3_9? ( dev-python/pyyaml[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pyyaml[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pyyaml[python_targets_python3_11(-)] ) >=net-libs/libhtp-0.5.43 net-libs/libpcap sys-apps/file sys-libs/libcap-ng bpf? ( =sys-devel/autoconf-2.69-r5 virtual/rust DESCRIPTION=High performance Network IDS, IPS and Network Security Monitoring engine EAPI=8 HOMEPAGE=https://suricata.io/ @@ -8,10 +8,10 @@ INHERIT=autotools flag-o-matic linux-info lua-single python-single-r1 systemd tm IUSE=+af-packet bpf control-socket cuda debug +detection geoip hardened hyperscan lua lz4 nflog +nfqueue redis systemd test lua_single_target_luajit lua_single_target_lua5-1 python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 verify-sig KEYWORDS=~amd64 ~riscv ~x86 LICENSE=GPL-2 -RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) acct-group/suricata acct-user/suricata dev-libs/jansson:= dev-libs/libpcre dev-libs/libyaml net-libs/libnet:* net-libs/libnfnetlink dev-libs/nspr dev-libs/nss python_single_target_python3_9? ( dev-python/pyyaml[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pyyaml[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pyyaml[python_targets_python3_11(-)] ) >=net-libs/libhtp-0.5.42 net-libs/libpcap sys-apps/file sys-libs/libcap-ng bpf? ( =dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) acct-group/suricata acct-user/suricata dev-libs/jansson:= dev-libs/libpcre dev-libs/libyaml net-libs/libnet:* net-libs/libnfnetlink dev-libs/nspr dev-libs/nss python_single_target_python3_9? ( dev-python/pyyaml[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pyyaml[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pyyaml[python_targets_python3_11(-)] ) >=net-libs/libhtp-0.5.43 net-libs/libpcap sys-apps/file sys-libs/libcap-ng bpf? ( telegraf-1.18.3.tar.gz https://dev.gentoo.org/~williamh/dist/telegraf-1.18.3-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=7c2151c06e26b1e47021db6925bef3ea diff --git a/metadata/md5-cache/net-analyzer/termshark-2.4.0 b/metadata/md5-cache/net-analyzer/termshark-2.4.0 index 1e6c65d5e300..8a210653762f 100644 --- a/metadata/md5-cache/net-analyzer/termshark-2.4.0 +++ b/metadata/md5-cache/net-analyzer/termshark-2.4.0 @@ -10,5 +10,5 @@ RDEPEND=net-analyzer/wireshark[dumpcap,pcap,tshark] RESTRICT=strip SLOT=0 SRC_URI=https://github.com/gcla/termshark/archive/v2.4.0.tar.gz -> termshark-2.4.0.tar.gz https://dev.gentoo.org/~sam/distfiles/net-analyzer/termshark/termshark-2.4.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=98d2a70d70adda62e905ebbda4c7b3ed diff --git a/metadata/md5-cache/net-analyzer/zabbix-5.0.31 b/metadata/md5-cache/net-analyzer/zabbix-5.0.31 index 520e6ee58672..0df1a87d6660 100644 --- a/metadata/md5-cache/net-analyzer/zabbix-5.0.31 +++ b/metadata/md5-cache/net-analyzer/zabbix-5.0.31 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( agent agent2 frontend proxy server ) ?? ( gnutls openssl ) pro RESTRICT=test strip SLOT=0/5.0 SRC_URI=https://cdn.zabbix.com/zabbix/sources/stable/5.0/zabbix-5.0.31.tar.gz agent2? ( https://dev.gentoo.org/~fordfrog/distfiles/zabbix-5.0.31-go-deps.tar.xz ) -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e user-info 83547b4df3e1ba5a6bf91a0837eaa664 webapp 1aad5c010cfdf11d0376c80467b0de4c +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e user-info 83547b4df3e1ba5a6bf91a0837eaa664 webapp 1aad5c010cfdf11d0376c80467b0de4c _md5_=298122298ca64ce54e030cd444d5a26d diff --git a/metadata/md5-cache/net-analyzer/zabbix-5.0.32 b/metadata/md5-cache/net-analyzer/zabbix-5.0.32 index f45126a5bc84..f03c62a35624 100644 --- a/metadata/md5-cache/net-analyzer/zabbix-5.0.32 +++ b/metadata/md5-cache/net-analyzer/zabbix-5.0.32 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( agent agent2 frontend proxy server ) ?? ( gnutls openssl ) pro RESTRICT=test strip SLOT=0/5.0 SRC_URI=https://cdn.zabbix.com/zabbix/sources/stable/5.0/zabbix-5.0.32.tar.gz agent2? ( https://dev.gentoo.org/~fordfrog/distfiles/zabbix-5.0.32-go-deps.tar.xz ) -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e user-info 83547b4df3e1ba5a6bf91a0837eaa664 webapp 1aad5c010cfdf11d0376c80467b0de4c +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e user-info 83547b4df3e1ba5a6bf91a0837eaa664 webapp 1aad5c010cfdf11d0376c80467b0de4c _md5_=7c51764fccf32eccb36a57b549d56c17 diff --git a/metadata/md5-cache/net-analyzer/zabbix-5.0.33 b/metadata/md5-cache/net-analyzer/zabbix-5.0.33 index 53ef1e48e5d5..03ea6f035454 100644 --- a/metadata/md5-cache/net-analyzer/zabbix-5.0.33 +++ b/metadata/md5-cache/net-analyzer/zabbix-5.0.33 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( agent agent2 frontend proxy server ) ?? ( gnutls openssl ) pro RESTRICT=test strip SLOT=0/5.0 SRC_URI=https://cdn.zabbix.com/zabbix/sources/stable/5.0/zabbix-5.0.33.tar.gz agent2? ( https://dev.gentoo.org/~fordfrog/distfiles/zabbix-5.0.33-go-deps.tar.xz ) -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e user-info 83547b4df3e1ba5a6bf91a0837eaa664 webapp 1aad5c010cfdf11d0376c80467b0de4c +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e user-info 83547b4df3e1ba5a6bf91a0837eaa664 webapp 1aad5c010cfdf11d0376c80467b0de4c _md5_=adf22fe05b267bf8c5f91f029d55a61c diff --git a/metadata/md5-cache/net-analyzer/zabbix-6.0.13 b/metadata/md5-cache/net-analyzer/zabbix-6.0.13 index ca6d54c6f843..5b9fce5cd136 100644 --- a/metadata/md5-cache/net-analyzer/zabbix-6.0.13 +++ b/metadata/md5-cache/net-analyzer/zabbix-6.0.13 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( agent agent2 frontend proxy server ) ?? ( gnutls openssl ) pro RESTRICT=test strip SLOT=0/6.0 SRC_URI=https://cdn.zabbix.com/zabbix/sources/stable/6.0/zabbix-6.0.13.tar.gz agent2? ( https://dev.gentoo.org/~fordfrog/distfiles/zabbix-6.0.13-go-deps.tar.xz ) -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e user-info 83547b4df3e1ba5a6bf91a0837eaa664 webapp 1aad5c010cfdf11d0376c80467b0de4c +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e user-info 83547b4df3e1ba5a6bf91a0837eaa664 webapp 1aad5c010cfdf11d0376c80467b0de4c _md5_=db11d917da5f7f812530bd5a6ad31dd6 diff --git a/metadata/md5-cache/net-analyzer/zabbix-6.0.14 b/metadata/md5-cache/net-analyzer/zabbix-6.0.14 index 8cc9cab6dfd5..de8e85f99437 100644 --- a/metadata/md5-cache/net-analyzer/zabbix-6.0.14 +++ b/metadata/md5-cache/net-analyzer/zabbix-6.0.14 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( agent agent2 frontend proxy server ) ?? ( gnutls openssl ) pro RESTRICT=test strip SLOT=0/6.0 SRC_URI=https://cdn.zabbix.com/zabbix/sources/stable/6.0/zabbix-6.0.14.tar.gz agent2? ( https://dev.gentoo.org/~fordfrog/distfiles/zabbix-6.0.14-go-deps.tar.xz ) -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e user-info 83547b4df3e1ba5a6bf91a0837eaa664 webapp 1aad5c010cfdf11d0376c80467b0de4c +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e user-info 83547b4df3e1ba5a6bf91a0837eaa664 webapp 1aad5c010cfdf11d0376c80467b0de4c _md5_=49a7c8cdcae29c595e5f5adbea587093 diff --git a/metadata/md5-cache/net-analyzer/zabbix-6.0.15 b/metadata/md5-cache/net-analyzer/zabbix-6.0.15 index 77774323ecfa..0c9f3397bc00 100644 --- a/metadata/md5-cache/net-analyzer/zabbix-6.0.15 +++ b/metadata/md5-cache/net-analyzer/zabbix-6.0.15 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( agent agent2 frontend proxy server ) ?? ( gnutls openssl ) pro RESTRICT=test strip SLOT=0/6.0 SRC_URI=https://cdn.zabbix.com/zabbix/sources/stable/6.0/zabbix-6.0.15.tar.gz agent2? ( https://dev.gentoo.org/~fordfrog/distfiles/zabbix-6.0.15-go-deps.tar.xz ) -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e user-info 83547b4df3e1ba5a6bf91a0837eaa664 webapp 1aad5c010cfdf11d0376c80467b0de4c +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e user-info 83547b4df3e1ba5a6bf91a0837eaa664 webapp 1aad5c010cfdf11d0376c80467b0de4c _md5_=33a048596fcccf3bfd46f4fd45e87ec6 diff --git a/metadata/md5-cache/net-analyzer/zabbix-6.0.16 b/metadata/md5-cache/net-analyzer/zabbix-6.0.16 index d506098975ef..e6a71fb0922c 100644 --- a/metadata/md5-cache/net-analyzer/zabbix-6.0.16 +++ b/metadata/md5-cache/net-analyzer/zabbix-6.0.16 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( agent agent2 frontend proxy server ) ?? ( gnutls openssl ) pro RESTRICT=test strip SLOT=0/6.0 SRC_URI=https://cdn.zabbix.com/zabbix/sources/stable/6.0/zabbix-6.0.16.tar.gz agent2? ( https://dev.gentoo.org/~fordfrog/distfiles/zabbix-6.0.16-go-deps.tar.xz ) -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e user-info 83547b4df3e1ba5a6bf91a0837eaa664 webapp 1aad5c010cfdf11d0376c80467b0de4c +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e user-info 83547b4df3e1ba5a6bf91a0837eaa664 webapp 1aad5c010cfdf11d0376c80467b0de4c _md5_=33a048596fcccf3bfd46f4fd45e87ec6 diff --git a/metadata/md5-cache/net-analyzer/zabbix-6.2.7 b/metadata/md5-cache/net-analyzer/zabbix-6.2.7 deleted file mode 100644 index 546fead705b7..000000000000 --- a/metadata/md5-cache/net-analyzer/zabbix-6.2.7 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=virtual/pkgconfig agent2? ( >=dev-lang/go-1.12 app-arch/unzip ) virtual/pkgconfig -DEFINED_PHASES=compile configure install postinst preinst prepare prerm setup -DEPEND=curl? ( net-misc/curl ) gnutls? ( net-libs/gnutls:0= ) java? ( >=virtual/jdk-1.8:* ) ldap? ( =dev-libs/cyrus-sasl-2* net-libs/gnutls:= net-nds/openldap:= ) libxml2? ( dev-libs/libxml2 ) mysql? ( dev-db/mysql-connector-c:= ) odbc? ( dev-db/unixODBC ) openipmi? ( sys-libs/openipmi ) openssl? ( dev-libs/openssl:=[-bindist(-)] ) oracle? ( dev-db/oracle-instantclient[odbc,sdk] ) postgres? ( dev-db/postgresql:* ) proxy? ( dev-libs/libevent:= sys-libs/zlib ) server? ( dev-libs/libevent:= sys-libs/zlib ) snmp? ( net-analyzer/net-snmp:= ) sqlite? ( dev-db/sqlite ) ssh? ( net-libs/libssh2 ) static? ( curl? ( net-misc/curl[static-libs] ) ldap? ( =dev-libs/cyrus-sasl-2*[static-libs] net-libs/gnutls[static-libs] net-nds/openldap[static-libs] ) libxml2? ( dev-libs/libxml2[static-libs] ) mysql? ( dev-db/mysql-connector-c[static-libs] ) odbc? ( dev-db/unixODBC[static-libs] ) postgres? ( dev-db/postgresql:*[static-libs] ) sqlite? ( dev-db/sqlite[static-libs] ) ssh? ( net-libs/libssh2 ) ) java? ( >=dev-java/java-config-2.2.0-r3 ) -DESCRIPTION=ZABBIX is software for monitoring of your applications, network and servers -EAPI=8 -HOMEPAGE=https://www.zabbix.com/ -INHERIT=webapp java-pkg-opt-2 systemd tmpfiles toolchain-funcs go-module user-info -IUSE=agent +agent2 curl frontend gnutls ipv6 java ldap libxml2 mysql odbc openipmi +openssl oracle +postgres proxy server snmp sqlite ssh static java -KEYWORDS=amd64 x86 -LICENSE=GPL-2 -RDEPEND=curl? ( net-misc/curl ) gnutls? ( net-libs/gnutls:0= ) java? ( >=virtual/jdk-1.8:* ) ldap? ( =dev-libs/cyrus-sasl-2* net-libs/gnutls:= net-nds/openldap:= ) libxml2? ( dev-libs/libxml2 ) mysql? ( dev-db/mysql-connector-c:= ) odbc? ( dev-db/unixODBC ) openipmi? ( sys-libs/openipmi ) openssl? ( dev-libs/openssl:=[-bindist(-)] ) oracle? ( dev-db/oracle-instantclient[odbc,sdk] ) postgres? ( dev-db/postgresql:* ) proxy? ( dev-libs/libevent:= sys-libs/zlib ) server? ( dev-libs/libevent:= sys-libs/zlib ) snmp? ( net-analyzer/net-snmp:= ) sqlite? ( dev-db/sqlite ) ssh? ( net-libs/libssh2 ) acct-group/zabbix acct-user/zabbix java? ( >=virtual/jre-1.8:* ) mysql? ( virtual/mysql ) proxy? ( dev-libs/libpcre2:= net-analyzer/fping[suid] ) server? ( app-admin/webapp-config dev-libs/libpcre2:= net-analyzer/fping[suid] ) frontend? ( app-admin/webapp-config dev-lang/php:*[bcmath,ctype,sockets,gd,truetype,xml,session,xmlreader,xmlwriter,nls,sysvipc,unicode] media-libs/gd[png] virtual/httpd-php:* mysql? ( dev-lang/php[mysqli] ) odbc? ( dev-lang/php[odbc] ) oracle? ( dev-lang/php[oci8-instant-client] ) postgres? ( dev-lang/php[postgres] ) sqlite? ( dev-lang/php[sqlite] ) ) java? ( >=dev-java/java-config-2.2.0-r3 ) virtual/tmpfiles -REQUIRED_USE=|| ( agent agent2 frontend proxy server ) ?? ( gnutls openssl ) proxy? ( ^^ ( mysql oracle postgres sqlite ) ) server? ( ^^ ( mysql oracle postgres ) !sqlite ) static? ( !oracle !snmp ) -RESTRICT=test strip -SLOT=0/6.2 -SRC_URI=https://cdn.zabbix.com/zabbix/sources/stable/6.2/zabbix-6.2.7.tar.gz agent2? ( https://dev.gentoo.org/~fordfrog/distfiles/zabbix-6.2.7-go-deps.tar.xz ) -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e user-info 83547b4df3e1ba5a6bf91a0837eaa664 webapp 1aad5c010cfdf11d0376c80467b0de4c -_md5_=db11d917da5f7f812530bd5a6ad31dd6 diff --git a/metadata/md5-cache/net-analyzer/zabbix-6.2.8 b/metadata/md5-cache/net-analyzer/zabbix-6.2.8 deleted file mode 100644 index 8b592cf98564..000000000000 --- a/metadata/md5-cache/net-analyzer/zabbix-6.2.8 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=virtual/pkgconfig agent2? ( >=dev-lang/go-1.12 app-arch/unzip ) virtual/pkgconfig -DEFINED_PHASES=compile configure install postinst preinst prepare prerm setup -DEPEND=curl? ( net-misc/curl ) gnutls? ( net-libs/gnutls:0= ) java? ( >=virtual/jdk-1.8:* ) ldap? ( =dev-libs/cyrus-sasl-2* net-libs/gnutls:= net-nds/openldap:= ) libxml2? ( dev-libs/libxml2 ) mysql? ( dev-db/mysql-connector-c:= ) odbc? ( dev-db/unixODBC ) openipmi? ( sys-libs/openipmi ) openssl? ( dev-libs/openssl:=[-bindist(-)] ) oracle? ( dev-db/oracle-instantclient[odbc,sdk] ) postgres? ( dev-db/postgresql:* ) proxy? ( dev-libs/libevent:= sys-libs/zlib ) server? ( dev-libs/libevent:= sys-libs/zlib ) snmp? ( net-analyzer/net-snmp:= ) sqlite? ( dev-db/sqlite ) ssh? ( net-libs/libssh2 ) static? ( curl? ( net-misc/curl[static-libs] ) ldap? ( =dev-libs/cyrus-sasl-2*[static-libs] net-libs/gnutls[static-libs] net-nds/openldap[static-libs] ) libxml2? ( dev-libs/libxml2[static-libs] ) mysql? ( dev-db/mysql-connector-c[static-libs] ) odbc? ( dev-db/unixODBC[static-libs] ) postgres? ( dev-db/postgresql:*[static-libs] ) sqlite? ( dev-db/sqlite[static-libs] ) ssh? ( net-libs/libssh2 ) ) java? ( >=dev-java/java-config-2.2.0-r3 ) -DESCRIPTION=ZABBIX is software for monitoring of your applications, network and servers -EAPI=8 -HOMEPAGE=https://www.zabbix.com/ -INHERIT=webapp java-pkg-opt-2 systemd tmpfiles toolchain-funcs go-module user-info -IUSE=agent +agent2 curl frontend gnutls ipv6 java ldap libxml2 mysql odbc openipmi +openssl oracle +postgres proxy server snmp sqlite ssh static java -KEYWORDS=amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=curl? ( net-misc/curl ) gnutls? ( net-libs/gnutls:0= ) java? ( >=virtual/jdk-1.8:* ) ldap? ( =dev-libs/cyrus-sasl-2* net-libs/gnutls:= net-nds/openldap:= ) libxml2? ( dev-libs/libxml2 ) mysql? ( dev-db/mysql-connector-c:= ) odbc? ( dev-db/unixODBC ) openipmi? ( sys-libs/openipmi ) openssl? ( dev-libs/openssl:=[-bindist(-)] ) oracle? ( dev-db/oracle-instantclient[odbc,sdk] ) postgres? ( dev-db/postgresql:* ) proxy? ( dev-libs/libevent:= sys-libs/zlib ) server? ( dev-libs/libevent:= sys-libs/zlib ) snmp? ( net-analyzer/net-snmp:= ) sqlite? ( dev-db/sqlite ) ssh? ( net-libs/libssh2 ) acct-group/zabbix acct-user/zabbix java? ( >=virtual/jre-1.8:* ) mysql? ( virtual/mysql ) proxy? ( dev-libs/libpcre2:= net-analyzer/fping[suid] ) server? ( app-admin/webapp-config dev-libs/libpcre2:= net-analyzer/fping[suid] ) frontend? ( app-admin/webapp-config dev-lang/php:*[bcmath,ctype,sockets,gd,truetype,xml,session,xmlreader,xmlwriter,nls,sysvipc,unicode] media-libs/gd[png] virtual/httpd-php:* mysql? ( dev-lang/php[mysqli] ) odbc? ( dev-lang/php[odbc] ) oracle? ( dev-lang/php[oci8-instant-client] ) postgres? ( dev-lang/php[postgres] ) sqlite? ( dev-lang/php[sqlite] ) ) java? ( >=dev-java/java-config-2.2.0-r3 ) virtual/tmpfiles -REQUIRED_USE=|| ( agent agent2 frontend proxy server ) ?? ( gnutls openssl ) proxy? ( ^^ ( mysql oracle postgres sqlite ) ) server? ( ^^ ( mysql oracle postgres ) !sqlite ) static? ( !oracle !snmp ) -RESTRICT=test strip -SLOT=0/6.2 -SRC_URI=https://cdn.zabbix.com/zabbix/sources/stable/6.2/zabbix-6.2.8.tar.gz agent2? ( https://dev.gentoo.org/~fordfrog/distfiles/zabbix-6.2.8-go-deps.tar.xz ) -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e user-info 83547b4df3e1ba5a6bf91a0837eaa664 webapp 1aad5c010cfdf11d0376c80467b0de4c -_md5_=49a7c8cdcae29c595e5f5adbea587093 diff --git a/metadata/md5-cache/net-analyzer/zabbix-6.2.9 b/metadata/md5-cache/net-analyzer/zabbix-6.2.9 deleted file mode 100644 index 34325c9677e3..000000000000 --- a/metadata/md5-cache/net-analyzer/zabbix-6.2.9 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=virtual/pkgconfig agent2? ( >=dev-lang/go-1.12 app-arch/unzip ) virtual/pkgconfig -DEFINED_PHASES=compile configure install postinst preinst prepare prerm setup -DEPEND=curl? ( net-misc/curl ) gnutls? ( net-libs/gnutls:0= ) java? ( >=virtual/jdk-1.8:* ) ldap? ( =dev-libs/cyrus-sasl-2* net-libs/gnutls:= net-nds/openldap:= ) libxml2? ( dev-libs/libxml2 ) mysql? ( dev-db/mysql-connector-c:= ) odbc? ( dev-db/unixODBC ) openipmi? ( sys-libs/openipmi ) openssl? ( dev-libs/openssl:=[-bindist(-)] ) oracle? ( dev-db/oracle-instantclient[odbc,sdk] ) postgres? ( dev-db/postgresql:* ) proxy? ( dev-libs/libevent:= sys-libs/zlib ) server? ( dev-libs/libevent:= sys-libs/zlib ) snmp? ( net-analyzer/net-snmp:= ) sqlite? ( dev-db/sqlite ) ssh? ( net-libs/libssh2 ) static? ( curl? ( net-misc/curl[static-libs] ) ldap? ( =dev-libs/cyrus-sasl-2*[static-libs] net-libs/gnutls[static-libs] net-nds/openldap[static-libs] ) libxml2? ( dev-libs/libxml2[static-libs] ) mysql? ( dev-db/mysql-connector-c[static-libs] ) odbc? ( dev-db/unixODBC[static-libs] ) postgres? ( dev-db/postgresql:*[static-libs] ) sqlite? ( dev-db/sqlite[static-libs] ) ssh? ( net-libs/libssh2 ) ) java? ( >=dev-java/java-config-2.2.0-r3 ) -DESCRIPTION=ZABBIX is software for monitoring of your applications, network and servers -EAPI=8 -HOMEPAGE=https://www.zabbix.com/ -INHERIT=webapp java-pkg-opt-2 systemd tmpfiles toolchain-funcs go-module user-info -IUSE=agent +agent2 curl frontend gnutls ipv6 java ldap libxml2 mysql odbc openipmi +openssl oracle +postgres proxy server snmp sqlite ssh static java -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=curl? ( net-misc/curl ) gnutls? ( net-libs/gnutls:0= ) java? ( >=virtual/jdk-1.8:* ) ldap? ( =dev-libs/cyrus-sasl-2* net-libs/gnutls:= net-nds/openldap:= ) libxml2? ( dev-libs/libxml2 ) mysql? ( dev-db/mysql-connector-c:= ) odbc? ( dev-db/unixODBC ) openipmi? ( sys-libs/openipmi ) openssl? ( dev-libs/openssl:=[-bindist(-)] ) oracle? ( dev-db/oracle-instantclient[odbc,sdk] ) postgres? ( dev-db/postgresql:* ) proxy? ( dev-libs/libevent:= sys-libs/zlib ) server? ( dev-libs/libevent:= sys-libs/zlib ) snmp? ( net-analyzer/net-snmp:= ) sqlite? ( dev-db/sqlite ) ssh? ( net-libs/libssh2 ) acct-group/zabbix acct-user/zabbix java? ( >=virtual/jre-1.8:* ) mysql? ( virtual/mysql ) proxy? ( dev-libs/libpcre2:= net-analyzer/fping[suid] ) server? ( app-admin/webapp-config dev-libs/libpcre2:= net-analyzer/fping[suid] ) frontend? ( app-admin/webapp-config dev-lang/php:*[bcmath,ctype,sockets,gd,truetype,xml,session,xmlreader,xmlwriter,nls,sysvipc,unicode] media-libs/gd[png] virtual/httpd-php:* mysql? ( dev-lang/php[mysqli] ) odbc? ( dev-lang/php[odbc] ) oracle? ( dev-lang/php[oci8-instant-client] ) postgres? ( dev-lang/php[postgres] ) sqlite? ( dev-lang/php[sqlite] ) ) java? ( >=dev-java/java-config-2.2.0-r3 ) virtual/tmpfiles -REQUIRED_USE=|| ( agent agent2 frontend proxy server ) ?? ( gnutls openssl ) proxy? ( ^^ ( mysql oracle postgres sqlite ) ) server? ( ^^ ( mysql oracle postgres ) !sqlite ) static? ( !oracle !snmp ) -RESTRICT=test strip -SLOT=0/6.2 -SRC_URI=https://cdn.zabbix.com/zabbix/sources/stable/6.2/zabbix-6.2.9.tar.gz agent2? ( https://dev.gentoo.org/~fordfrog/distfiles/zabbix-6.2.9-go-deps.tar.xz ) -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e user-info 83547b4df3e1ba5a6bf91a0837eaa664 webapp 1aad5c010cfdf11d0376c80467b0de4c -_md5_=33a048596fcccf3bfd46f4fd45e87ec6 diff --git a/metadata/md5-cache/net-analyzer/zabbix-6.4.0 b/metadata/md5-cache/net-analyzer/zabbix-6.4.0 index f3a03395feca..60e0998f9b7e 100644 --- a/metadata/md5-cache/net-analyzer/zabbix-6.4.0 +++ b/metadata/md5-cache/net-analyzer/zabbix-6.4.0 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( agent agent2 frontend proxy server ) ?? ( gnutls openssl ) pro RESTRICT=test strip SLOT=0/6.4 SRC_URI=https://cdn.zabbix.com/zabbix/sources/stable/6.4/zabbix-6.4.0.tar.gz agent2? ( https://dev.gentoo.org/~fordfrog/distfiles/zabbix-6.4.0-go-deps.tar.xz ) -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e user-info 83547b4df3e1ba5a6bf91a0837eaa664 webapp 1aad5c010cfdf11d0376c80467b0de4c +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e user-info 83547b4df3e1ba5a6bf91a0837eaa664 webapp 1aad5c010cfdf11d0376c80467b0de4c _md5_=db11d917da5f7f812530bd5a6ad31dd6 diff --git a/metadata/md5-cache/net-analyzer/zabbix-6.4.1 b/metadata/md5-cache/net-analyzer/zabbix-6.4.1 index 21c3f964e7bd..905f23382b24 100644 --- a/metadata/md5-cache/net-analyzer/zabbix-6.4.1 +++ b/metadata/md5-cache/net-analyzer/zabbix-6.4.1 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( agent agent2 frontend proxy server ) ?? ( gnutls openssl ) pro RESTRICT=test strip SLOT=0/6.4 SRC_URI=https://cdn.zabbix.com/zabbix/sources/stable/6.4/zabbix-6.4.1.tar.gz agent2? ( https://dev.gentoo.org/~fordfrog/distfiles/zabbix-6.4.1-go-deps.tar.xz ) -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e user-info 83547b4df3e1ba5a6bf91a0837eaa664 webapp 1aad5c010cfdf11d0376c80467b0de4c +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e user-info 83547b4df3e1ba5a6bf91a0837eaa664 webapp 1aad5c010cfdf11d0376c80467b0de4c _md5_=33a048596fcccf3bfd46f4fd45e87ec6 diff --git a/metadata/md5-cache/net-dns/Manifest.gz b/metadata/md5-cache/net-dns/Manifest.gz index 4dfbe7d39d1b..4c0773536171 100644 Binary files a/metadata/md5-cache/net-dns/Manifest.gz and b/metadata/md5-cache/net-dns/Manifest.gz differ diff --git a/metadata/md5-cache/net-dns/coredns-1.10.0 b/metadata/md5-cache/net-dns/coredns-1.10.0 index dce8c4350217..7e51091bb47d 100644 --- a/metadata/md5-cache/net-dns/coredns-1.10.0 +++ b/metadata/md5-cache/net-dns/coredns-1.10.0 @@ -11,5 +11,5 @@ RDEPEND=acct-user/coredns acct-group/coredns filecaps? ( sys-libs/libcap ) virtu RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/coredns/coredns/archive/v1.10.0.tar.gz -> coredns-1.10.0.tar.gz https://dev.gentoo.org/~zmedico/dist/coredns-1.10.0-deps.tar.xz -_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=62da6f46c66ae016a070adb6bb36927a diff --git a/metadata/md5-cache/net-dns/coredns-1.10.1 b/metadata/md5-cache/net-dns/coredns-1.10.1 index adaa4ea65214..4ef428034cfc 100644 --- a/metadata/md5-cache/net-dns/coredns-1.10.1 +++ b/metadata/md5-cache/net-dns/coredns-1.10.1 @@ -12,5 +12,5 @@ RDEPEND=acct-user/coredns acct-group/coredns virtual/tmpfiles RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/coredns/coredns/archive/v1.10.1.tar.gz -> coredns-1.10.1.tar.gz https://dev.gentoo.org/~zmedico/dist/coredns-1.10.1-deps.tar.xz -_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=c24f7631ea11c8c968f735dcd2282668 diff --git a/metadata/md5-cache/net-dns/coredns-1.9.3 b/metadata/md5-cache/net-dns/coredns-1.9.3 index 5f1143d577b3..42aefd77e89b 100644 --- a/metadata/md5-cache/net-dns/coredns-1.9.3 +++ b/metadata/md5-cache/net-dns/coredns-1.9.3 @@ -11,5 +11,5 @@ RDEPEND=acct-user/coredns acct-group/coredns filecaps? ( sys-libs/libcap ) virtu RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/coredns/coredns/archive/v1.9.3.tar.gz -> coredns-1.9.3.tar.gz https://dev.gentoo.org/~zmedico/dist/coredns-1.9.3-deps.tar.xz -_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=12602d342e40a170fa633432d7686ff3 diff --git a/metadata/md5-cache/net-dns/dnscrypt-proxy-2.1.2 b/metadata/md5-cache/net-dns/dnscrypt-proxy-2.1.2 index 65dc49096714..40146479c94d 100644 --- a/metadata/md5-cache/net-dns/dnscrypt-proxy-2.1.2 +++ b/metadata/md5-cache/net-dns/dnscrypt-proxy-2.1.2 @@ -12,5 +12,5 @@ RDEPEND=acct-group/dnscrypt-proxy acct-user/dnscrypt-proxy RESTRICT=strip SLOT=0 SRC_URI=https://github.com/DNSCrypt/dnscrypt-proxy/archive/2.1.2.tar.gz -> dnscrypt-proxy-2.1.2.tar.gz -_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=50a3bc3940570ee7b1ee1378c3288120 diff --git a/metadata/md5-cache/net-dns/dnscrypt-proxy-2.1.3 b/metadata/md5-cache/net-dns/dnscrypt-proxy-2.1.3 index d68c459ed66a..1fd80abb4571 100644 --- a/metadata/md5-cache/net-dns/dnscrypt-proxy-2.1.3 +++ b/metadata/md5-cache/net-dns/dnscrypt-proxy-2.1.3 @@ -12,5 +12,5 @@ RDEPEND=acct-group/dnscrypt-proxy acct-user/dnscrypt-proxy RESTRICT=strip SLOT=0 SRC_URI=https://github.com/DNSCrypt/dnscrypt-proxy/archive/2.1.3.tar.gz -> dnscrypt-proxy-2.1.3.tar.gz -_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=7fed53c3bb1dde7c83685d28f0187cc9 diff --git a/metadata/md5-cache/net-dns/dnscrypt-proxy-2.1.4 b/metadata/md5-cache/net-dns/dnscrypt-proxy-2.1.4 index b737e594968e..591f98191c5b 100644 --- a/metadata/md5-cache/net-dns/dnscrypt-proxy-2.1.4 +++ b/metadata/md5-cache/net-dns/dnscrypt-proxy-2.1.4 @@ -12,5 +12,5 @@ RDEPEND=acct-group/dnscrypt-proxy acct-user/dnscrypt-proxy RESTRICT=strip SLOT=0 SRC_URI=https://github.com/DNSCrypt/dnscrypt-proxy/archive/2.1.4.tar.gz -> dnscrypt-proxy-2.1.4.tar.gz -_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=7fed53c3bb1dde7c83685d28f0187cc9 diff --git a/metadata/md5-cache/net-dns/dnscrypt-proxy-9999 b/metadata/md5-cache/net-dns/dnscrypt-proxy-9999 index 53d8ec57b138..479472919174 100644 --- a/metadata/md5-cache/net-dns/dnscrypt-proxy-9999 +++ b/metadata/md5-cache/net-dns/dnscrypt-proxy-9999 @@ -11,5 +11,5 @@ PROPERTIES=live RDEPEND=acct-group/dnscrypt-proxy acct-user/dnscrypt-proxy RESTRICT=strip SLOT=0 -_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 git-r3 27e13c09a4c7e4c78ac812f74727e676 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 git-r3 27e13c09a4c7e4c78ac812f74727e676 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=637644a937aa78acca0db692edc78021 diff --git a/metadata/md5-cache/net-dns/libidn-1.41 b/metadata/md5-cache/net-dns/libidn-1.41 index 42fc9f720f4c..aa096bae7b66 100644 --- a/metadata/md5-cache/net-dns/libidn-1.41 +++ b/metadata/md5-cache/net-dns/libidn-1.41 @@ -11,5 +11,5 @@ LICENSE=GPL-2 GPL-3 LGPL-3 RDEPEND=nls? ( >=virtual/libintl-0-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(-)?] ) SLOT=0/12 SRC_URI=mirror://gnu/libidn/libidn-1.41.tar.gz verify-sig? ( mirror://gnu/libidn/libidn-1.41.tar.gz.sig ) -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e verify-sig ed3712fa46ee0fdc2dbbad539e20ff26 +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e verify-sig ed3712fa46ee0fdc2dbbad539e20ff26 _md5_=dc49814329fcd6ade4721e2ddf8bcd50 diff --git a/metadata/md5-cache/net-dns/pdns-4.7.4 b/metadata/md5-cache/net-dns/pdns-4.7.4 new file mode 100644 index 000000000000..7de22de051b1 --- /dev/null +++ b/metadata/md5-cache/net-dns/pdns-4.7.4 @@ -0,0 +1,17 @@ +BDEPEND=virtual/pkgconfig doc? ( app-doc/doxygen[dot] ) +DEFINED_PHASES=compile configure install postinst setup +DEPEND=lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) lua_single_target_lua5-3? ( dev-lang/lua:5.3 ) lua_single_target_lua5-4? ( dev-lang/lua:5.4 ) dev-libs/openssl:= dev-libs/boost:= lmdb? ( >=dev-db/lmdb-0.9.29 ) lua-records? ( >=net-misc/curl-7.21.3 ) mysql? ( dev-db/mysql-connector-c:= ) postgres? ( dev-db/postgresql:= ) ldap? ( >=net-nds/openldap-2.0.27-r4:= app-crypt/mit-krb5 ) sqlite? ( dev-db/sqlite:3 ) geoip? ( >=dev-cpp/yaml-cpp-0.5.1:= dev-libs/geoip ) sodium? ( dev-libs/libsodium:= ) tinydns? ( >=dev-db/tinycdb-0.77 ) elibc_glibc? ( x86? ( >=sys-libs/glibc-2.34 ) ) +DESCRIPTION=The PowerDNS Daemon +EAPI=7 +HOMEPAGE=https://www.powerdns.com/ +INHERIT=flag-o-matic lua-single +IUSE=debug doc geoip ldap lmdb lua-records mydns mysql postgres remote sodium sqlite systemd tools tinydns test lua_single_target_luajit lua_single_target_lua5-1 lua_single_target_lua5-3 lua_single_target_lua5-4 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) lua_single_target_lua5-3? ( dev-lang/lua:5.3 ) lua_single_target_lua5-4? ( dev-lang/lua:5.4 ) dev-libs/openssl:= dev-libs/boost:= lmdb? ( >=dev-db/lmdb-0.9.29 ) lua-records? ( >=net-misc/curl-7.21.3 ) mysql? ( dev-db/mysql-connector-c:= ) postgres? ( dev-db/postgresql:= ) ldap? ( >=net-nds/openldap-2.0.27-r4:= app-crypt/mit-krb5 ) sqlite? ( dev-db/sqlite:3 ) geoip? ( >=dev-cpp/yaml-cpp-0.5.1:= dev-libs/geoip ) sodium? ( dev-libs/libsodium:= ) tinydns? ( >=dev-db/tinycdb-0.77 ) elibc_glibc? ( x86? ( >=sys-libs/glibc-2.34 ) ) acct-user/pdns acct-group/pdns +REQUIRED_USE=^^ ( lua_single_target_luajit lua_single_target_lua5-1 lua_single_target_lua5-3 lua_single_target_lua5-4 ) mydns? ( mysql ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://downloads.powerdns.com/releases/pdns-4.7.4.tar.bz2 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib d1408425c7c4a7669b9b17735404b693 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c +_md5_=f37e2db7ab769d0487cc7221e98fdd54 diff --git a/metadata/md5-cache/net-fs/Manifest.gz b/metadata/md5-cache/net-fs/Manifest.gz index 123d23abb3ad..9da7f5ed6521 100644 Binary files a/metadata/md5-cache/net-fs/Manifest.gz and b/metadata/md5-cache/net-fs/Manifest.gz differ diff --git a/metadata/md5-cache/net-fs/mc-2021.03.23.05.46.11 b/metadata/md5-cache/net-fs/mc-2021.03.23.05.46.11 index 7a5fafa9d37f..08cf1d1913e5 100644 --- a/metadata/md5-cache/net-fs/mc-2021.03.23.05.46.11 +++ b/metadata/md5-cache/net-fs/mc-2021.03.23.05.46.11 @@ -10,5 +10,5 @@ RDEPEND=!!app-misc/mc RESTRICT=strip SLOT=0 SRC_URI=https://github.com/minio/mc/archive/RELEASE.2021-03-23T05-46-11Z.tar.gz -> mc-2021.03.23.05.46.11.tar.gz https://dev.gentoo.org/~williamh/dist/mc-2021.03.23.05.46.11-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=30a98b4bc6b800cf72dc6e89f54c97f2 diff --git a/metadata/md5-cache/net-fs/minio-2021.04.18.19.26.29-r2 b/metadata/md5-cache/net-fs/minio-2021.04.18.19.26.29-r2 index fcc266a68966..ef72db72e14d 100644 --- a/metadata/md5-cache/net-fs/minio-2021.04.18.19.26.29-r2 +++ b/metadata/md5-cache/net-fs/minio-2021.04.18.19.26.29-r2 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 BSD BSD-2 MIT MPL-2.0 RESTRICT=test SLOT=0 SRC_URI=https://github.com/minio/minio/archive/RELEASE.2021-04-18T19-26-29Z.tar.gz -> minio-2021.04.18.19.26.29.tar.gz https://dev.gentoo.org/~williamh/dist/minio-2021.04.18.19.26.29-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=a70e8ca9cc0131ca831e052d3c4a7399 diff --git a/metadata/md5-cache/net-im/Manifest.gz b/metadata/md5-cache/net-im/Manifest.gz index 3453acb5ceaf..1f51e4cde802 100644 Binary files a/metadata/md5-cache/net-im/Manifest.gz and b/metadata/md5-cache/net-im/Manifest.gz differ diff --git a/metadata/md5-cache/net-im/gajim-1.4.7-r1 b/metadata/md5-cache/net-im/gajim-1.4.7-r1 deleted file mode 100644 index 50fab24ff6b6..000000000000 --- a/metadata/md5-cache/net-im/gajim-1.4.7-r1 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite,xml(+)] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite,xml(+)] ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[sqlite,xml(+)] ) python_single_target_python3_9? ( >=dev-python/setuptools-65.7.0[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/setuptools-65.7.0[python_targets_python3_10(-)] ) python_single_target_python3_11? ( >=dev-python/setuptools-65.7.0[python_targets_python3_11(-)] ) -DEFINED_PHASES=compile configure install postinst postrm prepare setup test -DEPEND=dev-libs/gobject-introspection[cairo(+)] >=x11-libs/gtk+-3.22:3[introspection] x11-libs/gtksourceview:4 app-arch/unzip virtual/pkgconfig >=sys-devel/gettext-0.17-r1 -DESCRIPTION=Jabber client written in PyGTK -EAPI=7 -HOMEPAGE=https://gajim.org/ -INHERIT=distutils-r1 xdg-utils -IUSE=+crypt geolocation jingle omemo remote rst +spell upnp +webp python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 -KEYWORDS=amd64 ~arm64 ~riscv x86 -LICENSE=GPL-3 -RDEPEND=dev-libs/gobject-introspection[cairo(+)] >=x11-libs/gtk+-3.22:3[introspection] x11-libs/gtksourceview:4 python_single_target_python3_9? ( dev-python/idna[python_targets_python3_9(-)] >=dev-python/nbxmpp-3.0.0[python_targets_python3_9(-)] =dev-python/secretstorage-3.1.1[python_targets_python3_9(-)] dev-python/css-parser[python_targets_python3_9(-)] dev-python/packaging[python_targets_python3_9(-)] net-libs/libsoup:2.4[introspection] media-libs/gsound[introspection] dev-python/pillow[python_targets_python3_9(-)] crypt? ( dev-python/pycryptodome[python_targets_python3_9(-)] >=dev-python/python-gnupg-0.4.0[python_targets_python3_9(-)] ) geolocation? ( app-misc/geoclue[introspection] ) jingle? ( net-libs/farstream:0.2[introspection] media-libs/gstreamer:1.0[introspection] media-libs/gst-plugins-base:1.0[introspection] media-libs/gst-plugins-ugly:1.0 media-plugins/gst-plugins-gtk ) omemo? ( dev-python/jaraco-classes[python_targets_python3_9(-)] dev-python/python-axolotl[python_targets_python3_9(-)] dev-python/qrcode[python_targets_python3_9(-)] dev-python/cryptography[python_targets_python3_9(-)] ) remote? ( >=dev-python/dbus-python-1.2.0[python_targets_python3_9(-)] sys-apps/dbus[X] ) rst? ( dev-python/docutils[python_targets_python3_9(-)] ) spell? ( app-text/gspell[introspection] app-text/hunspell ) upnp? ( net-libs/gupnp-igd[introspection] ) ) python_single_target_python3_10? ( dev-python/idna[python_targets_python3_10(-)] >=dev-python/nbxmpp-3.0.0[python_targets_python3_10(-)] =dev-python/secretstorage-3.1.1[python_targets_python3_10(-)] dev-python/css-parser[python_targets_python3_10(-)] dev-python/packaging[python_targets_python3_10(-)] net-libs/libsoup:2.4[introspection] media-libs/gsound[introspection] dev-python/pillow[python_targets_python3_10(-)] crypt? ( dev-python/pycryptodome[python_targets_python3_10(-)] >=dev-python/python-gnupg-0.4.0[python_targets_python3_10(-)] ) geolocation? ( app-misc/geoclue[introspection] ) jingle? ( net-libs/farstream:0.2[introspection] media-libs/gstreamer:1.0[introspection] media-libs/gst-plugins-base:1.0[introspection] media-libs/gst-plugins-ugly:1.0 media-plugins/gst-plugins-gtk ) omemo? ( dev-python/jaraco-classes[python_targets_python3_10(-)] dev-python/python-axolotl[python_targets_python3_10(-)] dev-python/qrcode[python_targets_python3_10(-)] dev-python/cryptography[python_targets_python3_10(-)] ) remote? ( >=dev-python/dbus-python-1.2.0[python_targets_python3_10(-)] sys-apps/dbus[X] ) rst? ( dev-python/docutils[python_targets_python3_10(-)] ) spell? ( app-text/gspell[introspection] app-text/hunspell ) upnp? ( net-libs/gupnp-igd[introspection] ) ) python_single_target_python3_11? ( dev-python/idna[python_targets_python3_11(-)] >=dev-python/nbxmpp-3.0.0[python_targets_python3_11(-)] =dev-python/secretstorage-3.1.1[python_targets_python3_11(-)] dev-python/css-parser[python_targets_python3_11(-)] dev-python/packaging[python_targets_python3_11(-)] net-libs/libsoup:2.4[introspection] media-libs/gsound[introspection] dev-python/pillow[python_targets_python3_11(-)] crypt? ( dev-python/pycryptodome[python_targets_python3_11(-)] >=dev-python/python-gnupg-0.4.0[python_targets_python3_11(-)] ) geolocation? ( app-misc/geoclue[introspection] ) jingle? ( net-libs/farstream:0.2[introspection] media-libs/gstreamer:1.0[introspection] media-libs/gst-plugins-base:1.0[introspection] media-libs/gst-plugins-ugly:1.0 media-plugins/gst-plugins-gtk ) omemo? ( dev-python/jaraco-classes[python_targets_python3_11(-)] dev-python/python-axolotl[python_targets_python3_11(-)] dev-python/qrcode[python_targets_python3_11(-)] dev-python/cryptography[python_targets_python3_11(-)] ) remote? ( >=dev-python/dbus-python-1.2.0[python_targets_python3_11(-)] sys-apps/dbus[X] ) rst? ( dev-python/docutils[python_targets_python3_11(-)] ) spell? ( app-text/gspell[introspection] app-text/hunspell ) upnp? ( net-libs/gupnp-igd[introspection] ) ) python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite,xml(+)] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite,xml(+)] ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[sqlite,xml(+)] ) -REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) -RESTRICT=test -SLOT=0 -SRC_URI=https://gajim.org/downloads/1.4/gajim-1.4.7.tar.gz -_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e eapi8-dosym 741bfa77afb2a9321261501aca58c208 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=e3bc01b2227ab8a307483cfb2e30c228 diff --git a/metadata/md5-cache/net-im/gajim-1.4.7-r2 b/metadata/md5-cache/net-im/gajim-1.4.7-r2 new file mode 100644 index 000000000000..64a72582e871 --- /dev/null +++ b/metadata/md5-cache/net-im/gajim-1.4.7-r2 @@ -0,0 +1,17 @@ +BDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite,xml(+)] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite,xml(+)] ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[sqlite,xml(+)] ) python_single_target_python3_9? ( >=dev-python/setuptools-65.7.0[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/setuptools-65.7.0[python_targets_python3_10(-)] ) python_single_target_python3_11? ( >=dev-python/setuptools-65.7.0[python_targets_python3_11(-)] ) +DEFINED_PHASES=compile configure install postinst postrm prepare setup test +DEPEND=dev-libs/gobject-introspection[cairo(+)] >=x11-libs/gtk+-3.22:3[introspection] x11-libs/gtksourceview:4 app-arch/unzip virtual/pkgconfig >=sys-devel/gettext-0.17-r1 +DESCRIPTION=Jabber client written in PyGTK +EAPI=7 +HOMEPAGE=https://gajim.org/ +INHERIT=distutils-r1 xdg-utils +IUSE=+crypt geolocation jingle omemo remote rst +spell upnp +webp python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 +KEYWORDS=amd64 ~arm64 ~riscv x86 +LICENSE=GPL-3 +RDEPEND=dev-libs/gobject-introspection[cairo(+)] >=x11-libs/gtk+-3.22:3[introspection] x11-libs/gtksourceview:4 python_single_target_python3_9? ( dev-python/idna[python_targets_python3_9(-)] >=dev-python/nbxmpp-3.0.0[python_targets_python3_9(-)] =dev-python/secretstorage-3.1.1[python_targets_python3_9(-)] dev-python/css-parser[python_targets_python3_9(-)] dev-python/packaging[python_targets_python3_9(-)] net-libs/libsoup:2.4[introspection] media-libs/gsound[introspection] dev-python/pillow[python_targets_python3_9(-)] crypt? ( dev-python/pycryptodome[python_targets_python3_9(-)] >=dev-python/python-gnupg-0.4.0[python_targets_python3_9(-)] ) geolocation? ( app-misc/geoclue[introspection] ) jingle? ( net-libs/farstream:0.2[introspection] media-libs/gstreamer:1.0[introspection] media-libs/gst-plugins-base:1.0[introspection] media-libs/gst-plugins-ugly:1.0 media-plugins/gst-plugins-gtk ) omemo? ( dev-python/jaraco-classes[python_targets_python3_9(-)] dev-python/python-axolotl[python_targets_python3_9(-)] dev-python/qrcode[python_targets_python3_9(-)] dev-python/cryptography[python_targets_python3_9(-)] ) remote? ( >=dev-python/dbus-python-1.2.0[python_targets_python3_9(-)] sys-apps/dbus[X] ) rst? ( dev-python/docutils[python_targets_python3_9(-)] ) spell? ( app-text/gspell[introspection] app-text/hunspell ) upnp? ( net-libs/gupnp-igd:0[introspection] ) ) python_single_target_python3_10? ( dev-python/idna[python_targets_python3_10(-)] >=dev-python/nbxmpp-3.0.0[python_targets_python3_10(-)] =dev-python/secretstorage-3.1.1[python_targets_python3_10(-)] dev-python/css-parser[python_targets_python3_10(-)] dev-python/packaging[python_targets_python3_10(-)] net-libs/libsoup:2.4[introspection] media-libs/gsound[introspection] dev-python/pillow[python_targets_python3_10(-)] crypt? ( dev-python/pycryptodome[python_targets_python3_10(-)] >=dev-python/python-gnupg-0.4.0[python_targets_python3_10(-)] ) geolocation? ( app-misc/geoclue[introspection] ) jingle? ( net-libs/farstream:0.2[introspection] media-libs/gstreamer:1.0[introspection] media-libs/gst-plugins-base:1.0[introspection] media-libs/gst-plugins-ugly:1.0 media-plugins/gst-plugins-gtk ) omemo? ( dev-python/jaraco-classes[python_targets_python3_10(-)] dev-python/python-axolotl[python_targets_python3_10(-)] dev-python/qrcode[python_targets_python3_10(-)] dev-python/cryptography[python_targets_python3_10(-)] ) remote? ( >=dev-python/dbus-python-1.2.0[python_targets_python3_10(-)] sys-apps/dbus[X] ) rst? ( dev-python/docutils[python_targets_python3_10(-)] ) spell? ( app-text/gspell[introspection] app-text/hunspell ) upnp? ( net-libs/gupnp-igd:0[introspection] ) ) python_single_target_python3_11? ( dev-python/idna[python_targets_python3_11(-)] >=dev-python/nbxmpp-3.0.0[python_targets_python3_11(-)] =dev-python/secretstorage-3.1.1[python_targets_python3_11(-)] dev-python/css-parser[python_targets_python3_11(-)] dev-python/packaging[python_targets_python3_11(-)] net-libs/libsoup:2.4[introspection] media-libs/gsound[introspection] dev-python/pillow[python_targets_python3_11(-)] crypt? ( dev-python/pycryptodome[python_targets_python3_11(-)] >=dev-python/python-gnupg-0.4.0[python_targets_python3_11(-)] ) geolocation? ( app-misc/geoclue[introspection] ) jingle? ( net-libs/farstream:0.2[introspection] media-libs/gstreamer:1.0[introspection] media-libs/gst-plugins-base:1.0[introspection] media-libs/gst-plugins-ugly:1.0 media-plugins/gst-plugins-gtk ) omemo? ( dev-python/jaraco-classes[python_targets_python3_11(-)] dev-python/python-axolotl[python_targets_python3_11(-)] dev-python/qrcode[python_targets_python3_11(-)] dev-python/cryptography[python_targets_python3_11(-)] ) remote? ( >=dev-python/dbus-python-1.2.0[python_targets_python3_11(-)] sys-apps/dbus[X] ) rst? ( dev-python/docutils[python_targets_python3_11(-)] ) spell? ( app-text/gspell[introspection] app-text/hunspell ) upnp? ( net-libs/gupnp-igd:0[introspection] ) ) python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[sqlite,xml(+)] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[sqlite,xml(+)] ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[sqlite,xml(+)] ) +REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) +RESTRICT=test +SLOT=0 +SRC_URI=https://gajim.org/downloads/1.4/gajim-1.4.7.tar.gz +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e eapi8-dosym 741bfa77afb2a9321261501aca58c208 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=536f4160d204f4e14f720205bb20682c diff --git a/metadata/md5-cache/net-im/neochat-23.03.90 b/metadata/md5-cache/net-im/neochat-23.03.90 new file mode 100644 index 000000000000..aec3f99e18b8 --- /dev/null +++ b/metadata/md5-cache/net-im/neochat-23.03.90 @@ -0,0 +1,17 @@ +BDEPEND=virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 handbook? ( >=kde-frameworks/kdoctools-5.104.0:5 ) dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-5.104.0:5 +DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack +DEPEND=app-text/cmark:= >=dev-libs/kirigami-addons-0.7.2:5 dev-libs/qcoro5 dev-libs/qtkeychain:=[qt5(+)] >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtmultimedia-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtquickcontrols2-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.104.0:5 >=kde-frameworks/kconfigwidgets-5.104.0:5 >=kde-frameworks/kcoreaddons-5.104.0:5 >=kde-frameworks/kdbusaddons-5.104.0:5 >=kde-frameworks/ki18n-5.104.0:5 >=kde-frameworks/kio-5.104.0:5 >=kde-frameworks/kirigami-5.104.0:5 >=kde-frameworks/kitemmodels-5.104.0:5[qml] >=kde-frameworks/knotifications-5.104.0:5[qml] >=kde-frameworks/kwindowsystem-5.104.0:5 >=kde-frameworks/qqc2-desktop-style-5.104.0:5 >=kde-frameworks/sonnet-5.104.0:5[qml] media-libs/kquickimageeditor:5 >=net-libs/libquotient-0.6:= test? ( dev-qt/qttest:5 ) dev-qt/qtcore:5 +DESCRIPTION=Client for Matrix, the decentralized communication protocol +EAPI=8 +HOMEPAGE=https://apps.kde.org/neochat/ +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=ecm gear.kde.org +IUSE=debug +handbook test +KEYWORDS=~amd64 ~arm64 ~ppc64 +LICENSE=GPL-3+ handbook? ( CC-BY-SA-4.0 ) +RDEPEND=app-text/cmark:= >=dev-libs/kirigami-addons-0.7.2:5 dev-libs/qcoro5 dev-libs/qtkeychain:=[qt5(+)] >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtmultimedia-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtquickcontrols2-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.104.0:5 >=kde-frameworks/kconfigwidgets-5.104.0:5 >=kde-frameworks/kcoreaddons-5.104.0:5 >=kde-frameworks/kdbusaddons-5.104.0:5 >=kde-frameworks/ki18n-5.104.0:5 >=kde-frameworks/kio-5.104.0:5 >=kde-frameworks/kirigami-5.104.0:5 >=kde-frameworks/kitemmodels-5.104.0:5[qml] >=kde-frameworks/knotifications-5.104.0:5[qml] >=kde-frameworks/kwindowsystem-5.104.0:5 >=kde-frameworks/qqc2-desktop-style-5.104.0:5 >=kde-frameworks/sonnet-5.104.0:5[qml] media-libs/kquickimageeditor:5 >=net-libs/libquotient-0.6:= >=dev-qt/qtgraphicaleffects-5.15.5:5 >=dev-qt/qtmultimedia-5.15.5:5[qml] >=kde-frameworks/purpose-5.104.0:5 || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 +RESTRICT=!test? ( test ) mirror +SLOT=0 +SRC_URI=mirror://kde/unstable/release-service/23.03.90/src/neochat-23.03.90.tar.xz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c ecm 15862358f80ef4da6fd9d7dde64e9148 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc60243572471279b11120514b85b558 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e virtualx 817571665ee28575da44ee08135089e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=66f3011efa051bef9853b7384ba6805a diff --git a/metadata/md5-cache/net-im/synapse-1.79.0 b/metadata/md5-cache/net-im/synapse-1.79.0 index 5f824417ae31..5e00cd6e1f0c 100644 --- a/metadata/md5-cache/net-im/synapse-1.79.0 +++ b/metadata/md5-cache/net-im/synapse-1.79.0 @@ -6,7 +6,7 @@ EAPI=8 HOMEPAGE=https://matrix.org/ https://github.com/matrix-org/synapse/ INHERIT=cargo distutils-r1 multiprocessing optfeature systemd IUSE=postgres systemd test debug python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 -KEYWORDS=~amd64 ~ppc64 +KEYWORDS=amd64 ~ppc64 LICENSE=Apache-2.0 Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD MIT Unicode-DFS-2016 RDEPEND=acct-user/synapse acct-group/synapse dev-python/attrs[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/bcrypt[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/bleach[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] =dev-python/jinja-3.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/jsonschema[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/matrix-common-1.3.0[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/msgpack[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/netaddr[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/packaging[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/phonenumbers[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pillow[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?,webp] dev-python/prometheus_client[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pyasn1-modules[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pyasn1[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pydantic[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pymacaroons[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pyopenssl[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pyyaml[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/service_identity[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/signedjson[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/sortedcontainers[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/treq[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/twisted[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/typing-extensions[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/unpaddedbase64[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] postgres? ( dev-python/psycopg:2[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) systemd? ( dev-python/python-systemd[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/matrix-org/synapse/archive/v1.79.0.tar.gz -> synapse-1.79.0.gh.tar.gz https://crates.io/api/v1/crates/aho-corasick/0.7.19/download -> aho-corasick-0.7.19.crate https://crates.io/api/v1/crates/anyhow/1.0.69/download -> anyhow-1.0.69.crate https://crates.io/api/v1/crates/arc-swap/1.5.1/download -> arc-swap-1.5.1.crate https://crates.io/api/v1/crates/autocfg/1.1.0/download -> autocfg-1.1.0.crate https://crates.io/api/v1/crates/bitflags/1.3.2/download -> bitflags-1.3.2.crate https://crates.io/api/v1/crates/blake2/0.10.6/download -> blake2-0.10.6.crate https://crates.io/api/v1/crates/block-buffer/0.10.3/download -> block-buffer-0.10.3.crate https://crates.io/api/v1/crates/cfg-if/1.0.0/download -> cfg-if-1.0.0.crate https://crates.io/api/v1/crates/crypto-common/0.1.6/download -> crypto-common-0.1.6.crate https://crates.io/api/v1/crates/digest/0.10.5/download -> digest-0.10.5.crate https://crates.io/api/v1/crates/generic-array/0.14.6/download -> generic-array-0.14.6.crate https://crates.io/api/v1/crates/hex/0.4.3/download -> hex-0.4.3.crate https://crates.io/api/v1/crates/indoc/1.0.7/download -> indoc-1.0.7.crate https://crates.io/api/v1/crates/itoa/1.0.4/download -> itoa-1.0.4.crate https://crates.io/api/v1/crates/lazy_static/1.4.0/download -> lazy_static-1.4.0.crate https://crates.io/api/v1/crates/libc/0.2.135/download -> libc-0.2.135.crate https://crates.io/api/v1/crates/lock_api/0.4.9/download -> lock_api-0.4.9.crate https://crates.io/api/v1/crates/log/0.4.17/download -> log-0.4.17.crate https://crates.io/api/v1/crates/memchr/2.5.0/download -> memchr-2.5.0.crate https://crates.io/api/v1/crates/memoffset/0.6.5/download -> memoffset-0.6.5.crate https://crates.io/api/v1/crates/once_cell/1.15.0/download -> once_cell-1.15.0.crate https://crates.io/api/v1/crates/parking_lot/0.12.1/download -> parking_lot-0.12.1.crate https://crates.io/api/v1/crates/parking_lot_core/0.9.3/download -> parking_lot_core-0.9.3.crate https://crates.io/api/v1/crates/proc-macro2/1.0.46/download -> proc-macro2-1.0.46.crate https://crates.io/api/v1/crates/pyo3/0.17.3/download -> pyo3-0.17.3.crate https://crates.io/api/v1/crates/pyo3-build-config/0.17.3/download -> pyo3-build-config-0.17.3.crate https://crates.io/api/v1/crates/pyo3-ffi/0.17.3/download -> pyo3-ffi-0.17.3.crate https://crates.io/api/v1/crates/pyo3-log/0.8.1/download -> pyo3-log-0.8.1.crate https://crates.io/api/v1/crates/pyo3-macros/0.17.3/download -> pyo3-macros-0.17.3.crate https://crates.io/api/v1/crates/pyo3-macros-backend/0.17.3/download -> pyo3-macros-backend-0.17.3.crate https://crates.io/api/v1/crates/pythonize/0.17.0/download -> pythonize-0.17.0.crate https://crates.io/api/v1/crates/quote/1.0.21/download -> quote-1.0.21.crate https://crates.io/api/v1/crates/redox_syscall/0.2.16/download -> redox_syscall-0.2.16.crate https://crates.io/api/v1/crates/regex/1.7.1/download -> regex-1.7.1.crate https://crates.io/api/v1/crates/regex-syntax/0.6.27/download -> regex-syntax-0.6.27.crate https://crates.io/api/v1/crates/ryu/1.0.11/download -> ryu-1.0.11.crate https://crates.io/api/v1/crates/scopeguard/1.1.0/download -> scopeguard-1.1.0.crate https://crates.io/api/v1/crates/serde/1.0.152/download -> serde-1.0.152.crate https://crates.io/api/v1/crates/serde_derive/1.0.152/download -> serde_derive-1.0.152.crate https://crates.io/api/v1/crates/serde_json/1.0.94/download -> serde_json-1.0.94.crate https://crates.io/api/v1/crates/smallvec/1.10.0/download -> smallvec-1.10.0.crate https://crates.io/api/v1/crates/subtle/2.4.1/download -> subtle-2.4.1.crate https://crates.io/api/v1/crates/syn/1.0.104/download -> syn-1.0.104.crate https://crates.io/api/v1/crates/target-lexicon/0.12.4/download -> target-lexicon-0.12.4.crate https://crates.io/api/v1/crates/typenum/1.15.0/download -> typenum-1.15.0.crate https://crates.io/api/v1/crates/unicode-ident/1.0.5/download -> unicode-ident-1.0.5.crate https://crates.io/api/v1/crates/unindent/0.1.10/download -> unindent-0.1.10.crate https://crates.io/api/v1/crates/version_check/0.9.4/download -> version_check-0.9.4.crate https://crates.io/api/v1/crates/windows-sys/0.36.1/download -> windows-sys-0.36.1.crate https://crates.io/api/v1/crates/windows_aarch64_msvc/0.36.1/download -> windows_aarch64_msvc-0.36.1.crate https://crates.io/api/v1/crates/windows_i686_gnu/0.36.1/download -> windows_i686_gnu-0.36.1.crate https://crates.io/api/v1/crates/windows_i686_msvc/0.36.1/download -> windows_i686_msvc-0.36.1.crate https://crates.io/api/v1/crates/windows_x86_64_gnu/0.36.1/download -> windows_x86_64_gnu-0.36.1.crate https://crates.io/api/v1/crates/windows_x86_64_msvc/0.36.1/download -> windows_x86_64_msvc-0.36.1.crate _eclasses_=cargo 2e0a4a329a7dc5dfe20dcb05e6c36935 distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=40818c9f79853071a7f30a2e35f9f089 +_md5_=b2ed6dba8045c55e9174abd1ebfa6412 diff --git a/metadata/md5-cache/net-im/telegram-desktop-4.4.1 b/metadata/md5-cache/net-im/telegram-desktop-4.4.1 deleted file mode 100644 index c210befabb4d..000000000000 --- a/metadata/md5-cache/net-im/telegram-desktop-4.4.1 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) >=dev-util/cmake-3.16 virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test -DEPEND=!net-im/telegram-desktop-bin app-arch/lz4:= dev-cpp/abseil-cpp:= dev-libs/glib:2 dev-libs/libdispatch dev-libs/libsigc++:2 dev-libs/openssl:= dev-libs/xxhash media-libs/fontconfig:= media-libs/libjpeg-turbo:= ~media-libs/libtgvoip-2.4.4_p20220503 media-libs/openal media-libs/opus:= media-libs/rnnoise ~media-libs/tg_owt-0_pre20220507:=[screencast=,X=] media-video/ffmpeg:=[opus] sys-libs/zlib:=[minizip] virtual/opengl dbus? ( dev-cpp/glibmm:2.68 ) enchant? ( app-text/enchant:= ) hunspell? ( >=app-text/hunspell-1.7:= ) jemalloc? ( dev-libs/jemalloc:=[-lazy-lock] ) !qt6? ( >=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5[dbus?,jpeg,png,wayland?,X?] >=dev-qt/qtimageformats-5.15:5 >=dev-qt/qtnetwork-5.15:5[ssl] >=dev-qt/qtsvg-5.15:5 >=dev-qt/qtwidgets-5.15:5[png,X?] kde-frameworks/kcoreaddons:= ) qt6? ( dev-qt/qt5compat:6 dev-qt/qtbase:6[dbus?,gui,network,opengl,widgets,X?] dev-qt/qtimageformats:6 dev-qt/qtsvg:6 wayland? ( dev-qt/qtwayland:6 ) qt6-imageformats? ( media-libs/libavif:= media-libs/libheif:= media-libs/libjxl ) ) X? ( x11-libs/libxcb:= x11-libs/xcb-util-keysyms ) dev-cpp/range-v3 dev-cpp/ms-gsl -DESCRIPTION=Official desktop client for Telegram -EAPI=8 -HOMEPAGE=https://desktop.telegram.org -IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=xdg cmake python-any-r1 optfeature flag-o-matic -IUSE=+dbus enchant +fonts +hunspell +jemalloc screencast +spell qt6 qt6-imageformats wayland +X -KEYWORDS=amd64 ~arm64 ~ppc64 ~riscv -LICENSE=BSD GPL-3-with-openssl-exception LGPL-2+ -RDEPEND=!net-im/telegram-desktop-bin app-arch/lz4:= dev-cpp/abseil-cpp:= dev-libs/glib:2 dev-libs/libdispatch dev-libs/libsigc++:2 dev-libs/openssl:= dev-libs/xxhash media-libs/fontconfig:= media-libs/libjpeg-turbo:= ~media-libs/libtgvoip-2.4.4_p20220503 media-libs/openal media-libs/opus:= media-libs/rnnoise ~media-libs/tg_owt-0_pre20220507:=[screencast=,X=] media-video/ffmpeg:=[opus] sys-libs/zlib:=[minizip] virtual/opengl dbus? ( dev-cpp/glibmm:2.68 ) enchant? ( app-text/enchant:= ) hunspell? ( >=app-text/hunspell-1.7:= ) jemalloc? ( dev-libs/jemalloc:=[-lazy-lock] ) !qt6? ( >=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5[dbus?,jpeg,png,wayland?,X?] >=dev-qt/qtimageformats-5.15:5 >=dev-qt/qtnetwork-5.15:5[ssl] >=dev-qt/qtsvg-5.15:5 >=dev-qt/qtwidgets-5.15:5[png,X?] kde-frameworks/kcoreaddons:= ) qt6? ( dev-qt/qt5compat:6 dev-qt/qtbase:6[dbus?,gui,network,opengl,widgets,X?] dev-qt/qtimageformats:6 dev-qt/qtsvg:6 wayland? ( dev-qt/qtwayland:6 ) qt6-imageformats? ( media-libs/libavif:= media-libs/libheif:= media-libs/libjxl ) ) X? ( x11-libs/libxcb:= x11-libs/xcb-util-keysyms ) -REQUIRED_USE=spell? ( ^^ ( enchant hunspell ) ) qt6-imageformats? ( qt6 ) -SLOT=0 -SRC_URI=https://github.com/telegramdesktop/tdesktop/releases/download/v4.4.1/tdesktop-4.4.1-full.tar.gz -_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=0109de5e780cfdd002fbcf418cbc5dc0 diff --git a/metadata/md5-cache/net-im/telegram-desktop-4.5.3 b/metadata/md5-cache/net-im/telegram-desktop-4.5.3 deleted file mode 100644 index 2ee6310ed08c..000000000000 --- a/metadata/md5-cache/net-im/telegram-desktop-4.5.3 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) >=dev-util/cmake-3.16 virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 -DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test -DEPEND=!net-im/telegram-desktop-bin app-arch/lz4:= dev-cpp/abseil-cpp:= dev-libs/glib:2 dev-libs/libdispatch dev-libs/libsigc++:2 dev-libs/openssl:= dev-libs/xxhash media-libs/fontconfig:= media-libs/libjpeg-turbo:= ~media-libs/libtgvoip-2.4.4_p20221208 media-libs/openal media-libs/opus:= media-libs/rnnoise ~media-libs/tg_owt-0_pre20230105:=[screencast=,X=] media-video/ffmpeg:=[opus] sys-libs/zlib:=[minizip] virtual/opengl dbus? ( dev-cpp/glibmm:2.68 ) enchant? ( app-text/enchant:= ) hunspell? ( >=app-text/hunspell-1.7:= ) jemalloc? ( dev-libs/jemalloc:=[-lazy-lock] ) !qt6? ( >=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5[dbus?,jpeg,png,wayland?,X?] >=dev-qt/qtimageformats-5.15:5 >=dev-qt/qtnetwork-5.15:5[ssl] >=dev-qt/qtsvg-5.15:5 >=dev-qt/qtwidgets-5.15:5[png,X?] kde-frameworks/kcoreaddons:= ) qt6? ( dev-qt/qt5compat:6 dev-qt/qtbase:6[dbus?,gui,network,opengl,widgets,X?] dev-qt/qtimageformats:6 dev-qt/qtsvg:6 wayland? ( dev-qt/qtwayland:6 ) qt6-imageformats? ( media-libs/libavif:= media-libs/libheif:= media-libs/libjxl ) ) X? ( x11-libs/libxcb:= x11-libs/xcb-util-keysyms ) dev-cpp/range-v3 dev-cpp/ms-gsl -DESCRIPTION=Official desktop client for Telegram -EAPI=8 -HOMEPAGE=https://desktop.telegram.org -IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=xdg cmake python-any-r1 optfeature flag-o-matic -IUSE=+dbus enchant +fonts +hunspell +jemalloc screencast +spell qt6 qt6-imageformats wayland +X -KEYWORDS=~amd64 ~arm64 ~ppc64 ~riscv -LICENSE=BSD GPL-3-with-openssl-exception LGPL-2+ -RDEPEND=!net-im/telegram-desktop-bin app-arch/lz4:= dev-cpp/abseil-cpp:= dev-libs/glib:2 dev-libs/libdispatch dev-libs/libsigc++:2 dev-libs/openssl:= dev-libs/xxhash media-libs/fontconfig:= media-libs/libjpeg-turbo:= ~media-libs/libtgvoip-2.4.4_p20221208 media-libs/openal media-libs/opus:= media-libs/rnnoise ~media-libs/tg_owt-0_pre20230105:=[screencast=,X=] media-video/ffmpeg:=[opus] sys-libs/zlib:=[minizip] virtual/opengl dbus? ( dev-cpp/glibmm:2.68 ) enchant? ( app-text/enchant:= ) hunspell? ( >=app-text/hunspell-1.7:= ) jemalloc? ( dev-libs/jemalloc:=[-lazy-lock] ) !qt6? ( >=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5[dbus?,jpeg,png,wayland?,X?] >=dev-qt/qtimageformats-5.15:5 >=dev-qt/qtnetwork-5.15:5[ssl] >=dev-qt/qtsvg-5.15:5 >=dev-qt/qtwidgets-5.15:5[png,X?] kde-frameworks/kcoreaddons:= ) qt6? ( dev-qt/qt5compat:6 dev-qt/qtbase:6[dbus?,gui,network,opengl,widgets,X?] dev-qt/qtimageformats:6 dev-qt/qtsvg:6 wayland? ( dev-qt/qtwayland:6 ) qt6-imageformats? ( media-libs/libavif:= media-libs/libheif:= media-libs/libjxl ) ) X? ( x11-libs/libxcb:= x11-libs/xcb-util-keysyms ) -REQUIRED_USE=spell? ( ^^ ( enchant hunspell ) ) qt6-imageformats? ( qt6 ) -SLOT=0 -SRC_URI=https://github.com/telegramdesktop/tdesktop/releases/download/v4.5.3/tdesktop-4.5.3-full.tar.gz -_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=184b927d92922602219ec3f64193562e diff --git a/metadata/md5-cache/net-im/telegram-desktop-4.7.1 b/metadata/md5-cache/net-im/telegram-desktop-4.7.1 new file mode 100644 index 000000000000..23bbde00300e --- /dev/null +++ b/metadata/md5-cache/net-im/telegram-desktop-4.7.1 @@ -0,0 +1,17 @@ +BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) >=dev-util/cmake-3.16 virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test +DEPEND=!net-im/telegram-desktop-bin app-arch/lz4:= dev-cpp/abseil-cpp:= dev-libs/glib:2 dev-libs/libdispatch dev-libs/libsigc++:2 dev-libs/openssl:= dev-libs/protobuf dev-libs/xxhash media-libs/fontconfig:= media-libs/libjpeg-turbo:= ~media-libs/libtgvoip-2.4.4_p20221208 media-libs/openal media-libs/opus:= media-libs/rnnoise ~media-libs/tg_owt-0_pre20230105:=[screencast=,X=] media-video/ffmpeg:=[opus,vpx] sys-libs/zlib:=[minizip] virtual/opengl dbus? ( >=dev-cpp/glibmm-2.76:2.68 ) !enchant? ( >=app-text/hunspell-1.7:= ) enchant? ( app-text/enchant:= ) jemalloc? ( dev-libs/jemalloc:=[-lazy-lock] ) !qt6? ( >=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5[dbus?,jpeg,png,wayland?,X?] >=dev-qt/qtimageformats-5.15:5 >=dev-qt/qtnetwork-5.15:5[ssl] >=dev-qt/qtsvg-5.15:5 >=dev-qt/qtwidgets-5.15:5[png,X?] kde-frameworks/kcoreaddons:= ) qt6? ( dev-qt/qt5compat:6 dev-qt/qtbase:6[dbus?,gui,network,opengl,widgets,X?] dev-qt/qtimageformats:6 dev-qt/qtsvg:6 wayland? ( dev-qt/qtwayland:6 ) qt6-imageformats? ( media-libs/libavif:= media-libs/libheif:= media-libs/libjxl ) ) X? ( x11-libs/libxcb:= x11-libs/xcb-util-keysyms ) dev-cpp/range-v3 >=dev-cpp/ms-gsl-4 +DESCRIPTION=Official desktop client for Telegram +EAPI=8 +HOMEPAGE=https://desktop.telegram.org +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=xdg cmake python-any-r1 optfeature flag-o-matic +IUSE=+dbus enchant +fonts +jemalloc screencast qt6 qt6-imageformats wayland +X +KEYWORDS=~amd64 ~arm64 ~ppc64 ~riscv +LICENSE=BSD GPL-3-with-openssl-exception LGPL-2+ +RDEPEND=!net-im/telegram-desktop-bin app-arch/lz4:= dev-cpp/abseil-cpp:= dev-libs/glib:2 dev-libs/libdispatch dev-libs/libsigc++:2 dev-libs/openssl:= dev-libs/protobuf dev-libs/xxhash media-libs/fontconfig:= media-libs/libjpeg-turbo:= ~media-libs/libtgvoip-2.4.4_p20221208 media-libs/openal media-libs/opus:= media-libs/rnnoise ~media-libs/tg_owt-0_pre20230105:=[screencast=,X=] media-video/ffmpeg:=[opus,vpx] sys-libs/zlib:=[minizip] virtual/opengl dbus? ( >=dev-cpp/glibmm-2.76:2.68 ) !enchant? ( >=app-text/hunspell-1.7:= ) enchant? ( app-text/enchant:= ) jemalloc? ( dev-libs/jemalloc:=[-lazy-lock] ) !qt6? ( >=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5[dbus?,jpeg,png,wayland?,X?] >=dev-qt/qtimageformats-5.15:5 >=dev-qt/qtnetwork-5.15:5[ssl] >=dev-qt/qtsvg-5.15:5 >=dev-qt/qtwidgets-5.15:5[png,X?] kde-frameworks/kcoreaddons:= ) qt6? ( dev-qt/qt5compat:6 dev-qt/qtbase:6[dbus?,gui,network,opengl,widgets,X?] dev-qt/qtimageformats:6 dev-qt/qtsvg:6 wayland? ( dev-qt/qtwayland:6 ) qt6-imageformats? ( media-libs/libavif:= media-libs/libheif:= media-libs/libjxl ) ) X? ( x11-libs/libxcb:= x11-libs/xcb-util-keysyms ) +REQUIRED_USE=qt6-imageformats? ( qt6 ) +SLOT=0 +SRC_URI=https://github.com/telegramdesktop/tdesktop/releases/download/v4.7.1/tdesktop-4.7.1-full.tar.gz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=951b9d954c5709d788819cef9c5db998 diff --git a/metadata/md5-cache/net-im/tokodon-23.03.90 b/metadata/md5-cache/net-im/tokodon-23.03.90 new file mode 100644 index 000000000000..6fa3ae7df0ab --- /dev/null +++ b/metadata/md5-cache/net-im/tokodon-23.03.90 @@ -0,0 +1,17 @@ +BDEPEND=virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 dev-libs/libpcre2:* >=kde-frameworks/extra-cmake-modules-5.104.0:5 +DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack +DEPEND=>=dev-libs/kirigami-addons-0.7.2:5 dev-libs/qtkeychain:=[qt5(+)] >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtmultimedia-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtquickcontrols2-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwebsockets-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.104.0:5 >=kde-frameworks/kconfigwidgets-5.104.0:5 >=kde-frameworks/kcoreaddons-5.104.0:5 >=kde-frameworks/kdbusaddons-5.104.0:5 >=kde-frameworks/ki18n-5.104.0:5 >=kde-frameworks/kio-5.104.0:5 >=kde-frameworks/kirigami-5.104.0:5 >=kde-frameworks/kitemmodels-5.104.0:5[qml] >=kde-frameworks/knotifications-5.104.0:5 >=kde-frameworks/kwindowsystem-5.104.0:5 >=kde-frameworks/qqc2-desktop-style-5.104.0:5 >=kde-frameworks/sonnet-5.104.0:5[qml] test? ( dev-qt/qttest:5 ) dev-qt/qtcore:5 +DESCRIPTION=Mastodon client for Plasma and Plasma Mobile +EAPI=8 +HOMEPAGE=https://apps.kde.org/tokodon/ +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=ecm gear.kde.org +IUSE=debug test +KEYWORDS=~amd64 +LICENSE=CC-BY-SA-4.0 GPL-2+ GPL-3+ || ( LGPL-2.1+ LGPL-3+ ) MIT +RDEPEND=>=dev-libs/kirigami-addons-0.7.2:5 dev-libs/qtkeychain:=[qt5(+)] >=dev-qt/qtdeclarative-5.15.5:5 >=dev-qt/qtgui-5.15.5:5 >=dev-qt/qtmultimedia-5.15.5:5 >=dev-qt/qtnetwork-5.15.5:5 >=dev-qt/qtquickcontrols2-5.15.5:5 >=dev-qt/qtsvg-5.15.5:5 >=dev-qt/qtwebsockets-5.15.5:5 >=dev-qt/qtwidgets-5.15.5:5 >=kde-frameworks/kconfig-5.104.0:5 >=kde-frameworks/kconfigwidgets-5.104.0:5 >=kde-frameworks/kcoreaddons-5.104.0:5 >=kde-frameworks/kdbusaddons-5.104.0:5 >=kde-frameworks/ki18n-5.104.0:5 >=kde-frameworks/kio-5.104.0:5 >=kde-frameworks/kirigami-5.104.0:5 >=kde-frameworks/kitemmodels-5.104.0:5[qml] >=kde-frameworks/knotifications-5.104.0:5 >=kde-frameworks/kwindowsystem-5.104.0:5 >=kde-frameworks/qqc2-desktop-style-5.104.0:5 >=kde-frameworks/sonnet-5.104.0:5[qml] || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 +RESTRICT=!test? ( test ) mirror +SLOT=0 +SRC_URI=mirror://kde/unstable/release-service/23.03.90/src/tokodon-23.03.90.tar.xz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c ecm 15862358f80ef4da6fd9d7dde64e9148 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gear.kde.org 46a3a684cf1499799618bf7194102e69 kde.org dc60243572471279b11120514b85b558 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e virtualx 817571665ee28575da44ee08135089e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=88a9fdbef1e8fc5b4a52c5b78bd78d4c diff --git a/metadata/md5-cache/net-irc/Manifest.gz b/metadata/md5-cache/net-irc/Manifest.gz index 1e7ac933052b..fc2528b02df4 100644 Binary files a/metadata/md5-cache/net-irc/Manifest.gz and b/metadata/md5-cache/net-irc/Manifest.gz differ diff --git a/metadata/md5-cache/net-irc/ergo-2.11.1 b/metadata/md5-cache/net-irc/ergo-2.11.1 index dcd7fbcd76d8..2e0474b4f859 100644 --- a/metadata/md5-cache/net-irc/ergo-2.11.1 +++ b/metadata/md5-cache/net-irc/ergo-2.11.1 @@ -10,5 +10,5 @@ RDEPEND=acct-user/oragono acct-group/oragono RESTRICT=strip SLOT=0 SRC_URI=https://github.com/ergochat/ergo/archive/v2.11.1.tar.gz -> ergo-2.11.1.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=c2fd0382a9475c6248ca3a427d453bc1 diff --git a/metadata/md5-cache/net-irc/soju-0.5.2 b/metadata/md5-cache/net-irc/soju-0.5.2 index e331328684ad..2a6b86569989 100644 --- a/metadata/md5-cache/net-irc/soju-0.5.2 +++ b/metadata/md5-cache/net-irc/soju-0.5.2 @@ -12,5 +12,5 @@ RDEPEND=acct-user/soju acct-group/soju sqlite? ( dev-db/sqlite:3 ) RESTRICT=strip SLOT=0 SRC_URI=https://git.sr.ht/~emersion/soju/refs/download/v0.5.2/soju-0.5.2.tar.gz https://dev.gentoo.org/~sam/distfiles/net-irc/soju/soju-0.5.2-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=fedfb20a6acc1c90ce99aee9b0f34676 diff --git a/metadata/md5-cache/net-irc/soju-0.6.0 b/metadata/md5-cache/net-irc/soju-0.6.0 index eb803bdb46af..c9901d57f159 100644 --- a/metadata/md5-cache/net-irc/soju-0.6.0 +++ b/metadata/md5-cache/net-irc/soju-0.6.0 @@ -12,5 +12,5 @@ RDEPEND=acct-user/soju acct-group/soju RESTRICT=strip SLOT=0 SRC_URI=https://git.sr.ht/~emersion/soju/refs/download/v0.6.0/soju-0.6.0.tar.gz https://github.com/alfredfo/soju-deps/raw/master/soju-0.6.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=3f7a4e18669bf66468f12be46d20aa37 diff --git a/metadata/md5-cache/net-libs/Manifest.gz b/metadata/md5-cache/net-libs/Manifest.gz index e82b53019f29..26e9cc67de01 100644 Binary files a/metadata/md5-cache/net-libs/Manifest.gz and b/metadata/md5-cache/net-libs/Manifest.gz differ diff --git a/metadata/md5-cache/net-libs/farstream-0.2.9 b/metadata/md5-cache/net-libs/farstream-0.2.9-r1 similarity index 78% rename from metadata/md5-cache/net-libs/farstream-0.2.9 rename to metadata/md5-cache/net-libs/farstream-0.2.9-r1 index a6edfd37dd8f..e4acc71e7905 100644 --- a/metadata/md5-cache/net-libs/farstream-0.2.9 +++ b/metadata/md5-cache/net-libs/farstream-0.2.9-r1 @@ -1,6 +1,6 @@ BDEPEND=dev-util/glib-utils >=dev-util/gtk-doc-am-1.18 virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 app-arch/xz-utils DEFINED_PHASES=compile configure install postinst postrm preinst prepare -DEPEND=>=media-libs/gstreamer-1.4:1.0 >=media-libs/gst-plugins-base-1.4:1.0 >=dev-libs/glib-2.40:2 >=net-libs/libnice-0.1.8 introspection? ( >=dev-libs/gobject-introspection-0.10.11:= ) upnp? ( >=net-libs/gupnp-igd-0.2:= ) test? ( media-libs/gst-plugins-base:1.0[vorbis] media-libs/gst-plugins-good:1.0 ) valgrind? ( dev-util/valgrind ) dev-util/desktop-file-utils x11-misc/shared-mime-info +DEPEND=>=media-libs/gstreamer-1.4:1.0 >=media-libs/gst-plugins-base-1.4:1.0 >=dev-libs/glib-2.40:2 >=net-libs/libnice-0.1.8 introspection? ( >=dev-libs/gobject-introspection-0.10.11:= ) upnp? ( >=net-libs/gupnp-igd-0.2:0= ) test? ( media-libs/gst-plugins-base:1.0[vorbis] media-libs/gst-plugins-good:1.0 ) valgrind? ( dev-util/valgrind ) dev-util/desktop-file-utils x11-misc/shared-mime-info DESCRIPTION=Audio/video conferencing framework specifically designed for instant messengers EAPI=7 HOMEPAGE=https://www.freedesktop.org/wiki/Software/Farstream @@ -8,9 +8,9 @@ INHERIT=gnome2 IUSE=+introspection test upnp valgrind KEYWORDS=~alpha amd64 arm arm64 ~ia64 ~loong ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux LICENSE=LGPL-2.1+ -RDEPEND=>=media-libs/gstreamer-1.4:1.0 >=media-libs/gst-plugins-base-1.4:1.0 >=dev-libs/glib-2.40:2 >=net-libs/libnice-0.1.8 introspection? ( >=dev-libs/gobject-introspection-0.10.11:= ) upnp? ( >=net-libs/gupnp-igd-0.2:= ) >=media-libs/gst-plugins-bad-1.4:1.0 >=media-libs/gst-plugins-good-1.4:1.0 media-plugins/gst-plugins-srtp:1.0 media-plugins/gst-plugins-libnice:1.0 +RDEPEND=>=media-libs/gstreamer-1.4:1.0 >=media-libs/gst-plugins-base-1.4:1.0 >=dev-libs/glib-2.40:2 >=net-libs/libnice-0.1.8 introspection? ( >=dev-libs/gobject-introspection-0.10.11:= ) upnp? ( >=net-libs/gupnp-igd-0.2:0= ) >=media-libs/gst-plugins-bad-1.4:1.0 >=media-libs/gst-plugins-good-1.4:1.0 media-plugins/gst-plugins-srtp:1.0 media-plugins/gst-plugins-libnice:1.0 RESTRICT=test SLOT=0.2/5 SRC_URI=https://freedesktop.org/software/farstream/releases/farstream/farstream-0.2.9.tar.gz _eclasses_=autotools f0d3196128225dee3220e65f3371bc7a gnome.org 6b39404f1491c60a2d32e3c693a683fe gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils b0183db3b2e07b18f3b77bffec72e116 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=7317bc88d3052b0cf8add8cdab68c3eb +_md5_=ee2904fb1ad1c6f3595e1c23e47cc921 diff --git a/metadata/md5-cache/net-libs/libhtp-0.5.42 b/metadata/md5-cache/net-libs/libhtp-0.5.43 similarity index 84% rename from metadata/md5-cache/net-libs/libhtp-0.5.42 rename to metadata/md5-cache/net-libs/libhtp-0.5.43 index 64fd18b41c93..71d0c56c4cdd 100644 --- a/metadata/md5-cache/net-libs/libhtp-0.5.42 +++ b/metadata/md5-cache/net-libs/libhtp-0.5.43 @@ -10,6 +10,6 @@ KEYWORDS=~amd64 ~arm ~arm64 ~mips ~riscv ~x86 LICENSE=BSD RDEPEND=sys-libs/zlib SLOT=0 -SRC_URI=https://github.com/OISF/libhtp/archive/0.5.42.tar.gz -> libhtp-0.5.42.tar.gz +SRC_URI=https://github.com/OISF/libhtp/archive/0.5.43.tar.gz -> libhtp-0.5.43.tar.gz _eclasses_=autotools f0d3196128225dee3220e65f3371bc7a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=e4d87259d9b4deb6d808bd063acae54e +_md5_=fb139996ef58388c98772abb4e9a7aba diff --git a/metadata/md5-cache/net-libs/nodejs-18.16.0 b/metadata/md5-cache/net-libs/nodejs-18.16.0 new file mode 100644 index 000000000000..0a500f2a02f2 --- /dev/null +++ b/metadata/md5-cache/net-libs/nodejs-18.16.0 @@ -0,0 +1,17 @@ +BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11[threads(+)] >=dev-lang/python-3.10.9-r1:3.10[threads(+)] >=dev-lang/python-3.9.16-r1:3.9[threads(+)] ) sys-apps/coreutils virtual/pkgconfig systemtap? ( dev-util/systemtap ) test? ( net-misc/curl ) pax-kernel? ( sys-apps/elfix ) +DEFINED_PHASES=compile configure install postinst prepare pretend setup test +DEPEND=>=app-arch/brotli-1.0.9:= >=dev-libs/libuv-1.44.0:= >=net-dns/c-ares-1.17.2:= >=net-libs/nghttp2-1.41.0:= sys-libs/zlib system-icu? ( >=dev-libs/icu-67:= ) system-ssl? ( >=dev-libs/openssl-1.1.1:0= ) sys-devel/gcc:* +DESCRIPTION=A JavaScript runtime built on Chrome's V8 JavaScript engine +EAPI=8 +HOMEPAGE=https://nodejs.org/ +INHERIT=bash-completion-r1 check-reqs flag-o-matic linux-info pax-utils python-any-r1 toolchain-funcs xdg-utils +IUSE=cpu_flags_x86_sse2 debug doc +icu inspector lto +npm pax-kernel +snapshot +ssl +system-icu +system-ssl systemtap test +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86 ~amd64-linux ~x64-macos +LICENSE=Apache-1.1 Apache-2.0 BSD BSD-2 MIT +RDEPEND=>=app-arch/brotli-1.0.9:= >=dev-libs/libuv-1.44.0:= >=net-dns/c-ares-1.17.2:= >=net-libs/nghttp2-1.41.0:= sys-libs/zlib system-icu? ( >=dev-libs/icu-67:= ) system-ssl? ( >=dev-libs/openssl-1.1.1:0= ) sys-devel/gcc:* +REQUIRED_USE=inspector? ( icu ssl ) npm? ( ssl ) system-icu? ( icu ) system-ssl? ( ssl ) +RESTRICT=!test? ( test ) +SLOT=0/18 +SRC_URI=https://nodejs.org/dist/v18.16.0/node-v18.16.0.tar.xz +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 pax-utils 91d47e5d20627c717aa878b9167c62a8 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=1dbeaa10c5d47716c1f109fa57677828 diff --git a/metadata/md5-cache/net-libs/webkit-gtk-2.40.0 b/metadata/md5-cache/net-libs/webkit-gtk-2.40.0 index fe15bdc20fa9..1c2d3a109b58 100644 --- a/metadata/md5-cache/net-libs/webkit-gtk-2.40.0 +++ b/metadata/md5-cache/net-libs/webkit-gtk-2.40.0 @@ -1,4 +1,4 @@ -BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11[xml(+)] >=dev-lang/python-3.10.9-r1:3.10[xml(+)] >=dev-lang/python-3.9.16-r1:3.9[xml(+)] ) || ( ( dev-lang/ruby:3.0 virtual/rubygems[ruby_targets_ruby30(-)] ) ( dev-lang/ruby:3.1 virtual/rubygems[ruby_targets_ruby31(-)] ) ) >=app-accessibility/at-spi2-core-2.5.3 dev-util/gdbus-codegen dev-util/glib-utils >=dev-util/gperf-3.0.1 dev-util/unifdef >=sys-devel/bison-2.4.3 || ( >=sys-devel/gcc-7.3 >=sys-devel/clang-5 ) sys-devel/gettext virtual/pkgconfig >=dev-lang/perl-5.10 virtual/perl-Data-Dumper virtual/perl-Carp virtual/perl-JSON-PP >=app-portage/elt-patches-20170815 app-arch/xz-utils >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11[xml(+)] >=dev-lang/python-3.10.9-r1:3.10[xml(+)] >=dev-lang/python-3.9.16-r1:3.9[xml(+)] ) || ( ( dev-lang/ruby:3.0 virtual/rubygems[ruby_targets_ruby30(-)] ) ( dev-lang/ruby:3.1 virtual/rubygems[ruby_targets_ruby31(-)] ) ( dev-lang/ruby:3.2 virtual/rubygems[ruby_targets_ruby32(-)] ) ) >=app-accessibility/at-spi2-core-2.5.3 dev-util/gdbus-codegen dev-util/glib-utils >=dev-util/gperf-3.0.1 dev-util/unifdef >=sys-devel/bison-2.4.3 || ( >=sys-devel/gcc-7.3 >=sys-devel/clang-5 ) sys-devel/gettext virtual/pkgconfig >=dev-lang/perl-5.10 virtual/perl-Data-Dumper virtual/perl-Carp virtual/perl-JSON-PP >=app-portage/elt-patches-20170815 app-arch/xz-utils >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test DEPEND=>=x11-libs/cairo-1.16.0[X?] >=media-libs/fontconfig-2.13.0:1.0 >=media-libs/freetype-2.9.0:2 >=dev-libs/libgcrypt-1.7.0:0= >=x11-libs/gtk+-3.22.0:3[aqua?,introspection?,wayland?,X?] >=media-libs/harfbuzz-1.4.2:=[icu(+)] >=dev-libs/icu-61.2:= media-libs/libjpeg-turbo:0= >=media-libs/libepoxy-1.4.0 >=net-libs/libsoup-2.54:2.4[introspection?] >=dev-libs/libxml2-2.8.0:2 >=media-libs/libpng-1.4:0= dev-db/sqlite:3 sys-libs/zlib:0 >=app-accessibility/at-spi2-core-2.46.0:2 media-libs/libwebp:= >=dev-libs/glib-2.70.0:2 >=dev-libs/libxslt-1.1.7 media-libs/woff2 gnome-keyring? ( app-crypt/libsecret ) introspection? ( >=dev-libs/gobject-introspection-1.59.1:= ) dev-libs/libtasn1:= spell? ( >=app-text/enchant-0.22:2 ) gstreamer? ( >=media-libs/gstreamer-1.20:1.0 >=media-libs/gst-plugins-base-1.20:1.0[egl,X?] gles2-only? ( media-libs/gst-plugins-base:1.0[gles2] ) !gles2-only? ( media-libs/gst-plugins-base:1.0[opengl] ) >=media-plugins/gst-plugins-opus-1.20:1.0 >=media-libs/gst-plugins-bad-1.20:1.0 ) X? ( x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXrender x11-libs/libXt ) dev-libs/hyphen jpeg2k? ( >=media-libs/openjpeg-2.2.0:2= ) avif? ( >=media-libs/libavif-0.9.0:= ) lcms? ( media-libs/lcms:2 ) media-libs/mesa media-libs/libglvnd wayland? ( dev-libs/wayland >=dev-libs/wayland-protocols-1.12 >=gui-libs/libwpe-1.5.0:1.0 >=gui-libs/wpebackend-fdo-1.7.0:1.0 ) seccomp? ( >=sys-apps/bubblewrap-0.3.1 sys-libs/libseccomp sys-apps/xdg-dbus-proxy ) systemd? ( sys-apps/systemd:= ) gamepad? ( >=dev-libs/libmanette-0.2.4 ) DESCRIPTION=Open source web browser engine @@ -15,4 +15,4 @@ RESTRICT=test SLOT=4/37 SRC_URI=https://www.webkitgtk.org/releases/webkitgtk-2.40.0.tar.xz _eclasses_=check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnome.org 6b39404f1491c60a2d32e3c693a683fe gnome2 9bd787a54d31405e742ae7537eed650b gnome2-utils b0183db3b2e07b18f3b77bffec72e116 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 ruby-single 291cec9036393ebb5b11a4199edce193 ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=ea8e4bf3d438869ad56869ce2bcaec6f +_md5_=e519651ec76114aa7cb1a06074fb536d diff --git a/metadata/md5-cache/net-libs/webkit-gtk-2.40.0-r410 b/metadata/md5-cache/net-libs/webkit-gtk-2.40.0-r410 index 5a64f8753567..37b11b200389 100644 --- a/metadata/md5-cache/net-libs/webkit-gtk-2.40.0-r410 +++ b/metadata/md5-cache/net-libs/webkit-gtk-2.40.0-r410 @@ -1,4 +1,4 @@ -BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11[xml(+)] >=dev-lang/python-3.10.9-r1:3.10[xml(+)] >=dev-lang/python-3.9.16-r1:3.9[xml(+)] ) || ( ( dev-lang/ruby:3.0 virtual/rubygems[ruby_targets_ruby30(-)] ) ( dev-lang/ruby:3.1 virtual/rubygems[ruby_targets_ruby31(-)] ) ) >=app-accessibility/at-spi2-core-2.5.3 dev-util/gdbus-codegen dev-util/glib-utils >=dev-util/gperf-3.0.1 dev-util/unifdef >=sys-devel/bison-2.4.3 || ( >=sys-devel/gcc-7.3 >=sys-devel/clang-5 ) sys-devel/gettext virtual/pkgconfig >=dev-lang/perl-5.10 virtual/perl-Data-Dumper virtual/perl-Carp virtual/perl-JSON-PP >=app-portage/elt-patches-20170815 app-arch/xz-utils >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11[xml(+)] >=dev-lang/python-3.10.9-r1:3.10[xml(+)] >=dev-lang/python-3.9.16-r1:3.9[xml(+)] ) || ( ( dev-lang/ruby:3.0 virtual/rubygems[ruby_targets_ruby30(-)] ) ( dev-lang/ruby:3.1 virtual/rubygems[ruby_targets_ruby31(-)] ) ( dev-lang/ruby:3.2 virtual/rubygems[ruby_targets_ruby32(-)] ) ) >=app-accessibility/at-spi2-core-2.5.3 dev-util/gdbus-codegen dev-util/glib-utils >=dev-util/gperf-3.0.1 dev-util/unifdef >=sys-devel/bison-2.4.3 || ( >=sys-devel/gcc-7.3 >=sys-devel/clang-5 ) sys-devel/gettext virtual/pkgconfig >=dev-lang/perl-5.10 virtual/perl-Data-Dumper virtual/perl-Carp virtual/perl-JSON-PP >=app-portage/elt-patches-20170815 app-arch/xz-utils >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test DEPEND=>=x11-libs/cairo-1.16.0[X?] >=media-libs/fontconfig-2.13.0:1.0 >=media-libs/freetype-2.9.0:2 >=dev-libs/libgcrypt-1.7.0:0= >=x11-libs/gtk+-3.22.0:3[aqua?,introspection?,wayland?,X?] >=media-libs/harfbuzz-1.4.2:=[icu(+)] >=dev-libs/icu-61.2:= media-libs/libjpeg-turbo:0= >=media-libs/libepoxy-1.4.0 >=net-libs/libsoup-3.0.8:3.0[introspection?] >=dev-libs/libxml2-2.8.0:2 >=media-libs/libpng-1.4:0= dev-db/sqlite:3 sys-libs/zlib:0 >=app-accessibility/at-spi2-core-2.46.0:2 media-libs/libwebp:= >=dev-libs/glib-2.70.0:2 >=dev-libs/libxslt-1.1.7 media-libs/woff2 gnome-keyring? ( app-crypt/libsecret ) introspection? ( >=dev-libs/gobject-introspection-1.59.1:= ) dev-libs/libtasn1:= spell? ( >=app-text/enchant-0.22:2 ) gstreamer? ( >=media-libs/gstreamer-1.20:1.0 >=media-libs/gst-plugins-base-1.20:1.0[egl,X?] gles2-only? ( media-libs/gst-plugins-base:1.0[gles2] ) !gles2-only? ( media-libs/gst-plugins-base:1.0[opengl] ) >=media-plugins/gst-plugins-opus-1.20:1.0 >=media-libs/gst-plugins-bad-1.20:1.0 ) X? ( x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXrender x11-libs/libXt ) dev-libs/hyphen jpeg2k? ( >=media-libs/openjpeg-2.2.0:2= ) avif? ( >=media-libs/libavif-0.9.0:= ) lcms? ( media-libs/lcms:2 ) media-libs/mesa media-libs/libglvnd wayland? ( dev-libs/wayland >=dev-libs/wayland-protocols-1.12 >=gui-libs/libwpe-1.5.0:1.0 >=gui-libs/wpebackend-fdo-1.7.0:1.0 ) seccomp? ( >=sys-apps/bubblewrap-0.3.1 sys-libs/libseccomp sys-apps/xdg-dbus-proxy ) systemd? ( sys-apps/systemd:= ) gamepad? ( >=dev-libs/libmanette-0.2.4 ) !=dev-lang/python-3.11.1-r1:3.11[xml(+)] >=dev-lang/python-3.10.9-r1:3.10[xml(+)] >=dev-lang/python-3.9.16-r1:3.9[xml(+)] ) || ( ( dev-lang/ruby:3.0 virtual/rubygems[ruby_targets_ruby30(-)] ) ( dev-lang/ruby:3.1 virtual/rubygems[ruby_targets_ruby31(-)] ) ) >=app-accessibility/at-spi2-core-2.5.3 dev-util/gdbus-codegen dev-util/glib-utils >=dev-util/gperf-3.0.1 dev-util/unifdef >=sys-devel/bison-2.4.3 || ( >=sys-devel/gcc-7.3 >=sys-devel/clang-5 ) sys-devel/gettext virtual/pkgconfig >=dev-lang/perl-5.10 virtual/perl-Data-Dumper virtual/perl-Carp virtual/perl-JSON-PP >=app-portage/elt-patches-20170815 app-arch/xz-utils >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11[xml(+)] >=dev-lang/python-3.10.9-r1:3.10[xml(+)] >=dev-lang/python-3.9.16-r1:3.9[xml(+)] ) || ( ( dev-lang/ruby:3.0 virtual/rubygems[ruby_targets_ruby30(-)] ) ( dev-lang/ruby:3.1 virtual/rubygems[ruby_targets_ruby31(-)] ) ( dev-lang/ruby:3.2 virtual/rubygems[ruby_targets_ruby32(-)] ) ) >=app-accessibility/at-spi2-core-2.5.3 dev-util/gdbus-codegen dev-util/glib-utils >=dev-util/gperf-3.0.1 dev-util/unifdef >=sys-devel/bison-2.4.3 || ( >=sys-devel/gcc-7.3 >=sys-devel/clang-5 ) sys-devel/gettext virtual/pkgconfig >=dev-lang/perl-5.10 virtual/perl-Data-Dumper virtual/perl-Carp virtual/perl-JSON-PP >=app-portage/elt-patches-20170815 app-arch/xz-utils >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test DEPEND=>=x11-libs/cairo-1.16.0[X?] >=media-libs/fontconfig-2.13.0:1.0 >=media-libs/freetype-2.9.0:2 >=dev-libs/libgcrypt-1.7.0:0= >=x11-libs/gtk+-3.22.0:3[aqua?,introspection?,wayland?,X?] gui-libs/gtk:4 >=media-libs/harfbuzz-1.4.2:=[icu(+)] >=dev-libs/icu-61.2:= media-libs/libjpeg-turbo:0= >=media-libs/libepoxy-1.4.0 >=net-libs/libsoup-3.0.8:3.0[introspection?] >=dev-libs/libxml2-2.8.0:2 >=media-libs/libpng-1.4:0= dev-db/sqlite:3 sys-libs/zlib:0 >=app-accessibility/at-spi2-core-2.46.0:2 media-libs/libwebp:= >=dev-libs/glib-2.70.0:2 >=dev-libs/libxslt-1.1.7 media-libs/woff2 gnome-keyring? ( app-crypt/libsecret ) introspection? ( >=dev-libs/gobject-introspection-1.59.1:= ) dev-libs/libtasn1:= spell? ( >=app-text/enchant-0.22:2 ) gstreamer? ( >=media-libs/gstreamer-1.20:1.0 >=media-libs/gst-plugins-base-1.20:1.0[egl,X?] gles2-only? ( media-libs/gst-plugins-base:1.0[gles2] ) !gles2-only? ( media-libs/gst-plugins-base:1.0[opengl] ) >=media-plugins/gst-plugins-opus-1.20:1.0 >=media-libs/gst-plugins-bad-1.20:1.0 ) X? ( x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXrender x11-libs/libXt ) dev-libs/hyphen jpeg2k? ( >=media-libs/openjpeg-2.2.0:2= ) avif? ( >=media-libs/libavif-0.9.0:= ) lcms? ( media-libs/lcms:2 ) media-libs/mesa media-libs/libglvnd wayland? ( dev-libs/wayland >=dev-libs/wayland-protocols-1.12 >=gui-libs/libwpe-1.5.0:1.0 >=gui-libs/wpebackend-fdo-1.7.0:1.0 ) seccomp? ( >=sys-apps/bubblewrap-0.3.1 sys-libs/libseccomp sys-apps/xdg-dbus-proxy ) systemd? ( sys-apps/systemd:= ) gamepad? ( >=dev-libs/libmanette-0.2.4 ) !=dev-libs/xapian-1.4:= emacs? ( >=app-editors/emacs-25.3:* ) readline? ( sys-libs/readline:= ) SLOT=0 SRC_URI=https://github.com/djcb/mu/releases/download/v1.10.2/mu-1.10.2.tar.xz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 meson 915ec7c25e08d7886558215e6809ca1e multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 meson 915ec7c25e08d7886558215e6809ca1e multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=a95f2e374972d478eac50b29c2c9e897 diff --git a/metadata/md5-cache/net-mail/mu-1.8.14 b/metadata/md5-cache/net-mail/mu-1.8.14 index 49de7eb5db23..74a9a178e2b3 100644 --- a/metadata/md5-cache/net-mail/mu-1.8.14 +++ b/metadata/md5-cache/net-mail/mu-1.8.14 @@ -11,5 +11,5 @@ LICENSE=GPL-3+ RDEPEND=dev-libs/glib:2 dev-libs/gmime:3.0 >=dev-libs/xapian-1.4:= emacs? ( >=app-editors/emacs-25.3:* ) readline? ( sys-libs/readline:= ) SLOT=0 SRC_URI=https://github.com/djcb/mu/releases/download/v1.8.14/mu-1.8.14.tar.xz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 meson 915ec7c25e08d7886558215e6809ca1e multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 meson 915ec7c25e08d7886558215e6809ca1e multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=90803e51ddace410769549d159105bbe diff --git a/metadata/md5-cache/net-mail/notmuch-0.32.2-r1 b/metadata/md5-cache/net-mail/notmuch-0.32.2-r1 index f09da07967de..a87ee63a1e82 100644 --- a/metadata/md5-cache/net-mail/notmuch-0.32.2-r1 +++ b/metadata/md5-cache/net-mail/notmuch-0.32.2-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=apidoc? ( doc ) nmbug? ( python ) python? ( || ( python_targets_pyp RESTRICT=!test? ( test ) SLOT=0/5 SRC_URI=https://notmuchmail.org/releases/notmuch-0.32.2.tar.xz test? ( https://notmuchmail.org/releases/test-databases/database-v1.tar.xz ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff desktop 021728fdc1b03b36357dbc89489e0f0d distutils-r1 05bcfd9823be251f6e9f211ca285094e eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 1d6e8d43be4713f04a441f721d890d48 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pax-utils 91d47e5d20627c717aa878b9167c62a8 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff desktop 021728fdc1b03b36357dbc89489e0f0d distutils-r1 05bcfd9823be251f6e9f211ca285094e eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common dcd21c5d379fc2217e95f529504c5fe0 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pax-utils 91d47e5d20627c717aa878b9167c62a8 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=7aec1783a7cad3c1bb09a3f6f83636c5 diff --git a/metadata/md5-cache/net-mail/notmuch-0.37 b/metadata/md5-cache/net-mail/notmuch-0.37 index e5066c613c4e..8a30d7611412 100644 --- a/metadata/md5-cache/net-mail/notmuch-0.37 +++ b/metadata/md5-cache/net-mail/notmuch-0.37 @@ -13,5 +13,5 @@ REQUIRED_USE=apidoc? ( doc ) nmbug? ( python ) python? ( || ( python_targets_pyp RESTRICT=!test? ( test ) SLOT=0/5 SRC_URI=https://notmuchmail.org/releases/notmuch-0.37.tar.xz test? ( https://notmuchmail.org/releases/test-databases/database-v1.tar.xz ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff desktop 021728fdc1b03b36357dbc89489e0f0d distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pax-utils 91d47e5d20627c717aa878b9167c62a8 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff desktop 021728fdc1b03b36357dbc89489e0f0d distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pax-utils 91d47e5d20627c717aa878b9167c62a8 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=0f111a789ef2f6e43a8b8680c356f6ca diff --git a/metadata/md5-cache/net-mail/notmuch-0.37-r1 b/metadata/md5-cache/net-mail/notmuch-0.37-r1 index 78eab95892a6..b0664e3e80bc 100644 --- a/metadata/md5-cache/net-mail/notmuch-0.37-r1 +++ b/metadata/md5-cache/net-mail/notmuch-0.37-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=apidoc? ( doc ) nmbug? ( python ) python? ( || ( python_targets_pyp RESTRICT=!test? ( test ) SLOT=0/5 SRC_URI=https://notmuchmail.org/releases/notmuch-0.37.tar.xz test? ( https://notmuchmail.org/releases/test-databases/database-v1.tar.xz ) -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff desktop 021728fdc1b03b36357dbc89489e0f0d distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pax-utils 91d47e5d20627c717aa878b9167c62a8 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff desktop 021728fdc1b03b36357dbc89489e0f0d distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pax-utils 91d47e5d20627c717aa878b9167c62a8 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=06bd4f67455ae500c67a91f65be3d986 diff --git a/metadata/md5-cache/net-misc/Manifest.gz b/metadata/md5-cache/net-misc/Manifest.gz index d948ae13d5f2..b9ce9f15995a 100644 Binary files a/metadata/md5-cache/net-misc/Manifest.gz and b/metadata/md5-cache/net-misc/Manifest.gz differ diff --git a/metadata/md5-cache/net-misc/croc-9.6.0 b/metadata/md5-cache/net-misc/croc-9.6.0 index c9a96629eea0..4ec706f84e6f 100644 --- a/metadata/md5-cache/net-misc/croc-9.6.0 +++ b/metadata/md5-cache/net-misc/croc-9.6.0 @@ -10,5 +10,5 @@ RDEPEND=acct-group/croc acct-user/croc RESTRICT=strip SLOT=0 SRC_URI=https://github.com/schollz/croc/releases/download/v9.6.0/croc_9.6.0_src.tar.gz -> croc-9.6.0.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=8eb516b0ae5096bac81c0b50d74a314b diff --git a/metadata/md5-cache/net-misc/croc-9.6.2 b/metadata/md5-cache/net-misc/croc-9.6.2 index 4eddd570ec45..63864b4e48a3 100644 --- a/metadata/md5-cache/net-misc/croc-9.6.2 +++ b/metadata/md5-cache/net-misc/croc-9.6.2 @@ -10,5 +10,5 @@ RDEPEND=acct-group/croc acct-user/croc RESTRICT=strip SLOT=0 SRC_URI=https://github.com/schollz/croc/archive/refs/tags/v9.6.2.tar.gz -> croc-9.6.2.tar.gz https://dev.gentoo.org/~sultan/distfiles/net-misc/croc/croc-9.6.2-deps.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=9c804fc02d258110076d32ad5c6329ca diff --git a/metadata/md5-cache/net-misc/drive-0.4.0_p20210208 b/metadata/md5-cache/net-misc/drive-0.4.0_p20210208 index 019c464c355b..9ed9698db0dc 100644 --- a/metadata/md5-cache/net-misc/drive-0.4.0_p20210208 +++ b/metadata/md5-cache/net-misc/drive-0.4.0_p20210208 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD MIT RESTRICT=strip SLOT=0 SRC_URI=https://github.com/odeke-em/drive/archive/bede608f250a9333d55c43396fc5e72827e806fd.tar.gz -> drive-0.4.0_p20210208.tar.gz https://dev.gentoo.org/~zmedico/dist/drive-0.4.0_p20210208-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=52987d8ade4cc8e35f5995985f18a99e diff --git a/metadata/md5-cache/net-misc/geoipupdate-4.9.0 b/metadata/md5-cache/net-misc/geoipupdate-4.9.0 index 0db78e69be25..dd0c9dba280f 100644 --- a/metadata/md5-cache/net-misc/geoipupdate-4.9.0 +++ b/metadata/md5-cache/net-misc/geoipupdate-4.9.0 @@ -9,5 +9,5 @@ LICENSE=ISC BSD BSD-2 MIT Apache-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/maxmind/geoipupdate/archive/v4.9.0.tar.gz -> geoipupdate-4.9.0.tar.gz https://dev.gentoo.org/~sam/distfiles/net-misc/geoipupdate/geoipupdate-4.9.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=8f7b5fe84ed4cd31974272e500559a8e diff --git a/metadata/md5-cache/net-misc/icingadb-1.0.0 b/metadata/md5-cache/net-misc/icingadb-1.0.0 index 64b3e2faad0a..ee77cf9e658c 100644 --- a/metadata/md5-cache/net-misc/icingadb-1.0.0 +++ b/metadata/md5-cache/net-misc/icingadb-1.0.0 @@ -10,5 +10,5 @@ RDEPEND=acct-user/icinga acct-group/icinga RESTRICT=strip SLOT=0 SRC_URI=https://github.com/Icinga/icingadb/archive/refs/tags/v1.0.0.tar.gz -> icingadb-1.0.0.tar.gz https://github.com/hydrapolic/gentoo-dist/raw/master/icinga/icingadb-1.0.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=b3c3c656a1ee0814763ad9a8b9d84ce6 diff --git a/metadata/md5-cache/net-misc/icingadb-1.1.0 b/metadata/md5-cache/net-misc/icingadb-1.1.0 index 869062be6a4a..c6a949b6893e 100644 --- a/metadata/md5-cache/net-misc/icingadb-1.1.0 +++ b/metadata/md5-cache/net-misc/icingadb-1.1.0 @@ -10,5 +10,5 @@ RDEPEND=acct-user/icinga acct-group/icinga RESTRICT=strip SLOT=0 SRC_URI=https://github.com/Icinga/icingadb/archive/refs/tags/v1.1.0.tar.gz -> icingadb-1.1.0.tar.gz https://github.com/hydrapolic/gentoo-dist/raw/master/icinga/icingadb-1.1.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=b3c3c656a1ee0814763ad9a8b9d84ce6 diff --git a/metadata/md5-cache/net-misc/mobile-broadband-provider-info-20230416 b/metadata/md5-cache/net-misc/mobile-broadband-provider-info-20230416 new file mode 100644 index 000000000000..4e4be2c51934 --- /dev/null +++ b/metadata/md5-cache/net-misc/mobile-broadband-provider-info-20230416 @@ -0,0 +1,14 @@ +BDEPEND=dev-libs/libxslt test? ( dev-libs/libxml2 ) app-arch/xz-utils +DEFINED_PHASES=- +DESCRIPTION=Database of mobile broadband service providers +EAPI=8 +HOMEPAGE=https://wiki.gnome.org/Projects/NetworkManager/MobileBroadband +INHERIT=gnome.org +IUSE=test +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=CC-PD +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://gnome/sources/mobile-broadband-provider-info/20230416/mobile-broadband-provider-info-20230416.tar.xz +_eclasses_=gnome.org 6b39404f1491c60a2d32e3c693a683fe +_md5_=8af5c47d421a6583664be88d6a76c815 diff --git a/metadata/md5-cache/net-misc/netevent-2.2.1 b/metadata/md5-cache/net-misc/netevent-2.2.1 index 7a602b7a337d..4417731bd8e4 100644 --- a/metadata/md5-cache/net-misc/netevent-2.2.1 +++ b/metadata/md5-cache/net-misc/netevent-2.2.1 @@ -10,4 +10,4 @@ LICENSE=GPL-2+ SLOT=0 SRC_URI=https://github.com/Blub/netevent/archive/refs/tags/2.2.1.tar.gz -> netevent-2.2.1.tar.gz _eclasses_=multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=5d3ec54f2f26233eb8c5d1c2130d3bb7 +_md5_=17dfbbee0ab8d532f442dfa79891e9c1 diff --git a/metadata/md5-cache/net-misc/netifrc-0.7.3-r1 b/metadata/md5-cache/net-misc/netifrc-0.7.3-r1 index 609eb316c94b..cf30eba696ff 100644 --- a/metadata/md5-cache/net-misc/netifrc-0.7.3-r1 +++ b/metadata/md5-cache/net-misc/netifrc-0.7.3-r1 @@ -5,10 +5,10 @@ EAPI=7 HOMEPAGE=https://www.gentoo.org/proj/en/base/openrc/ INHERIT=systemd udev IUSE=+dhcp -KEYWORDS=~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 ~riscv ~s390 sparc x86 +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 LICENSE=BSD-2 RDEPEND=sys-apps/gentoo-functions >=sys-apps/openrc-0.15 dhcp? ( || ( net-misc/dhcpcd net-misc/dhcp[client] ) ) SLOT=0 SRC_URI=https://gitweb.gentoo.org/proj/netifrc.git/snapshot/netifrc-0.7.3.tar.gz _eclasses_=multilib d1408425c7c4a7669b9b17735404b693 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e udev eec0bbab06977f1cfc5597269c1fa152 -_md5_=ff21181e65e2dc1e94fce6c1223f5b12 +_md5_=e755793009fdcd6d50555ef7aa28dd8b diff --git a/metadata/md5-cache/net-misc/netifrc-0.7.4 b/metadata/md5-cache/net-misc/netifrc-0.7.4 new file mode 100644 index 000000000000..77a1ed22f6fb --- /dev/null +++ b/metadata/md5-cache/net-misc/netifrc-0.7.4 @@ -0,0 +1,14 @@ +BDEPEND=kernel_linux? ( virtual/pkgconfig ) virtual/pkgconfig virtual/pkgconfig +DEFINED_PHASES=compile install postinst prepare +DESCRIPTION=Gentoo Network Interface Management Scripts +EAPI=7 +HOMEPAGE=https://www.gentoo.org/proj/en/base/openrc/ +INHERIT=systemd udev +IUSE=+dhcp +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=BSD-2 +RDEPEND=sys-apps/gentoo-functions >=sys-apps/openrc-0.15 dhcp? ( || ( net-misc/dhcpcd net-misc/dhcp[client] ) ) +SLOT=0 +SRC_URI=https://gitweb.gentoo.org/proj/netifrc.git/snapshot/netifrc-0.7.4.tar.bz2 +_eclasses_=multilib d1408425c7c4a7669b9b17735404b693 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e udev eec0bbab06977f1cfc5597269c1fa152 +_md5_=86b1032e633de8d1132af613c3918b3a diff --git a/metadata/md5-cache/net-misc/ntpsec-1.2.1-r6 b/metadata/md5-cache/net-misc/ntpsec-1.2.1-r6 deleted file mode 100644 index 9232b9ed26ca..000000000000 --- a/metadata/md5-cache/net-misc/ntpsec-1.2.1-r6 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=>=app-text/asciidoc-8.6.8 dev-libs/libxslt app-text/docbook-xsl-stylesheets sys-devel/bison python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[threads(+)] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[threads(+)] ) virtual/pkgconfig -DEFINED_PHASES=compile configure install postinst prepare test -DEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[threads(+)] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[threads(+)] ) =dev-lang/python-3.9.16-r1:3.9[threads(+)] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[threads(+)] ) =dev-lang/python-3.9.16-r1:3.9[threads(+)] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[threads(+)] ) -REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 ) nist? ( rclock_local ) || ( python_targets_python3_9 python_targets_python3_10 ) -SLOT=0 -SRC_URI=ftp://ftp.ntpsec.org/pub/releases/ntpsec-1.2.1.tar.gz -_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e waf-utils 5abcf99e5070e9e32e7b4d64ad438a65 wrapper 4a1902f969e5718126434fc35f3a0d9c -_md5_=1196eb7e62e414c4ff4fe995d29c43eb diff --git a/metadata/md5-cache/net-misc/ntpsec-1.2.2-r1 b/metadata/md5-cache/net-misc/ntpsec-1.2.2-r1 new file mode 100644 index 000000000000..08d295a3014a --- /dev/null +++ b/metadata/md5-cache/net-misc/ntpsec-1.2.2-r1 @@ -0,0 +1,16 @@ +BDEPEND=>=app-text/asciidoc-8.6.8 dev-libs/libxslt app-text/docbook-xsl-stylesheets sys-devel/bison python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[threads(+)] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[threads(+)] ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[threads(+)] ) virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst prepare test +DEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[threads(+)] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[threads(+)] ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[threads(+)] ) dev-libs/openssl:= dev-python/psutil[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] sys-libs/libcap libbsd? ( dev-libs/libbsd:0= ) seccomp? ( sys-libs/libseccomp ) rclock_oncore? ( net-misc/pps-tools ) rclock_pps? ( net-misc/pps-tools ) +DESCRIPTION=The NTP reference implementation, refactored +EAPI=8 +HOMEPAGE=https://www.ntpsec.org/ +INHERIT=distutils-r1 flag-o-matic waf-utils systemd +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_modem rclock_local debug doc early gdb heat libbsd nist ntpviz samba seccomp smear python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 +KEYWORDS=~amd64 ~arm ~arm64 ~riscv ~x86 +LICENSE=HPND MIT BSD-2 BSD CC-BY-SA-4.0 +RDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[threads(+)] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[threads(+)] ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[threads(+)] ) dev-libs/openssl:= dev-python/psutil[python_targets_python3_9(-)?,python_targets_python3_10(-)?,python_targets_python3_11(-)?] sys-libs/libcap libbsd? ( dev-libs/libbsd:0= ) seccomp? ( sys-libs/libseccomp ) rclock_oncore? ( net-misc/pps-tools ) rclock_pps? ( net-misc/pps-tools ) !net-misc/ntp !net-misc/openntpd acct-group/ntp acct-user/ntp ntpviz? ( sci-visualization/gnuplot media-fonts/liberation-fonts ) python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[threads(+)] ) python_targets_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10[threads(+)] ) python_targets_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11[threads(+)] ) +REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) nist? ( rclock_local ) || ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) +SLOT=0 +SRC_URI=ftp://ftp.ntpsec.org/pub/releases/ntpsec-1.2.2.tar.gz +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e waf-utils 5abcf99e5070e9e32e7b4d64ad438a65 +_md5_=bfe4cbde0cbad0a06a349cc5b0a7bece diff --git a/metadata/md5-cache/net-misc/ntpsec-9999 b/metadata/md5-cache/net-misc/ntpsec-9999 index a15c9dc2cf4f..0bd90b4cb517 100644 --- a/metadata/md5-cache/net-misc/ntpsec-9999 +++ b/metadata/md5-cache/net-misc/ntpsec-9999 @@ -12,4 +12,4 @@ RDEPEND=python_targets_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9[threads(+)] REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) nist? ( rclock_local ) || ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) SLOT=0 _eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a git-r3 27e13c09a4c7e4c78ac812f74727e676 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e waf-utils 5abcf99e5070e9e32e7b4d64ad438a65 -_md5_=da4928f3e6f5d9d2dc126129cbb14c90 +_md5_=bfe4cbde0cbad0a06a349cc5b0a7bece diff --git a/metadata/md5-cache/net-misc/openrdap-0.9.0_p20191017-r1 b/metadata/md5-cache/net-misc/openrdap-0.9.0_p20191017-r1 index 719bbad0b0f3..9ad689abdca5 100644 --- a/metadata/md5-cache/net-misc/openrdap-0.9.0_p20191017-r1 +++ b/metadata/md5-cache/net-misc/openrdap-0.9.0_p20191017-r1 @@ -9,5 +9,5 @@ LICENSE=BSD MIT RESTRICT=strip SLOT=0 SRC_URI=https://github.com/openrdap/rdap/archive/af93e7ef17b78dee3e346814731377d5ef7b89f3.tar.gz -> openrdap-0.9.0_p20191017.tar.gz https://dev.gentoo.org/~conikost/distfiles/openrdap-0.9.0_p20191017-deps.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=a3b4f97d45810ea61d968a14d9b956b9 diff --git a/metadata/md5-cache/net-misc/rclone-1.61.1 b/metadata/md5-cache/net-misc/rclone-1.61.1 index 8efb2e8a9cd4..e14792b236e4 100644 --- a/metadata/md5-cache/net-misc/rclone-1.61.1 +++ b/metadata/md5-cache/net-misc/rclone-1.61.1 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD BSD-2 ISC MIT MPL-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/rclone/rclone/archive/v1.61.1.tar.gz -> rclone-1.61.1.tar.gz https://dev.gentoo.org/~slashbeast/distfiles/rclone/rclone-1.61.1-deps.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=f69753c19d0e84617802722d64e5fb6d diff --git a/metadata/md5-cache/net-misc/rclone-1.62.2-r1 b/metadata/md5-cache/net-misc/rclone-1.62.2-r1 index 9760abd99676..13bdc670b04f 100644 --- a/metadata/md5-cache/net-misc/rclone-1.62.2-r1 +++ b/metadata/md5-cache/net-misc/rclone-1.62.2-r1 @@ -10,5 +10,5 @@ RDEPEND=sys-fs/fuse:3 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/rclone/rclone/archive/v1.62.2.tar.gz -> rclone-1.62.2.tar.gz https://dev.gentoo.org/~slashbeast/distfiles/rclone/rclone-1.62.2-deps.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=c7ba787a198ae6d787f76a59c91dfefc diff --git a/metadata/md5-cache/net-misc/trurl-0.2 b/metadata/md5-cache/net-misc/trurl-0.2 deleted file mode 100644 index c78a69b718ed..000000000000 --- a/metadata/md5-cache/net-misc/trurl-0.2 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( dev-lang/perl ) -DEFINED_PHASES=compile install -DEPEND=>=net-misc/curl-7.62.0 -DESCRIPTION=Command line tool for URL parsing and manipulation -EAPI=8 -HOMEPAGE=https://daniel.haxx.se/blog/2023/04/03/introducing-trurl/ https://github.com/curl/trurl -INHERIT=toolchain-funcs -IUSE=test -KEYWORDS=~amd64 -LICENSE=curl -RDEPEND=>=net-misc/curl-7.62.0 -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/curl/trurl/archive/refs/tags/trurl-0.2.tar.gz -_eclasses_=multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=6a7c17ad7253de0e2724fb96e7b5916f diff --git a/metadata/md5-cache/net-misc/trurl-0.3 b/metadata/md5-cache/net-misc/trurl-0.3 deleted file mode 100644 index e1539f2c9bb6..000000000000 --- a/metadata/md5-cache/net-misc/trurl-0.3 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( dev-lang/perl virtual/perl-JSON-PP ) -DEFINED_PHASES=compile install -DEPEND=>=net-misc/curl-7.62.0 -DESCRIPTION=Command line tool for URL parsing and manipulation -EAPI=8 -HOMEPAGE=https://curl.se/trurl/ https://daniel.haxx.se/blog/2023/04/03/introducing-trurl/ -INHERIT=toolchain-funcs -IUSE=test -KEYWORDS=~amd64 -LICENSE=curl -RDEPEND=>=net-misc/curl-7.62.0 -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/curl/trurl/archive/refs/tags/trurl-0.3.tar.gz -_eclasses_=multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=8cf6e9cd06a75b533613bcf6169bc16e diff --git a/metadata/md5-cache/net-misc/trurl-0.5 b/metadata/md5-cache/net-misc/trurl-0.5 new file mode 100644 index 000000000000..ba3774d52a15 --- /dev/null +++ b/metadata/md5-cache/net-misc/trurl-0.5 @@ -0,0 +1,16 @@ +BDEPEND=test? ( || ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) ) +DEFINED_PHASES=compile install setup test +DEPEND=>=net-misc/curl-7.81.0 +DESCRIPTION=Command line tool for URL parsing and manipulation +EAPI=8 +HOMEPAGE=https://curl.se/trurl/ https://daniel.haxx.se/blog/2023/04/03/introducing-trurl/ +INHERIT=toolchain-funcs python-any-r1 +IUSE=test +KEYWORDS=~amd64 +LICENSE=curl +RDEPEND=>=net-misc/curl-7.81.0 +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/curl/trurl/archive/refs/tags/trurl-0.5.tar.gz +_eclasses_=multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=fb46a50d1736735eac7256328075ea63 diff --git a/metadata/md5-cache/net-misc/trurl-9999 b/metadata/md5-cache/net-misc/trurl-9999 index 9ec8d8e3cdf2..0bc8b4cfd17c 100644 --- a/metadata/md5-cache/net-misc/trurl-9999 +++ b/metadata/md5-cache/net-misc/trurl-9999 @@ -1,15 +1,15 @@ -BDEPEND=test? ( dev-lang/perl virtual/perl-JSON-PP ) >=dev-vcs/git-1.8.2.1[curl] -DEFINED_PHASES=compile install unpack +BDEPEND=test? ( || ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) ) >=dev-vcs/git-1.8.2.1[curl] +DEFINED_PHASES=compile install setup test unpack DEPEND=>=net-misc/curl-7.81.0 DESCRIPTION=Command line tool for URL parsing and manipulation EAPI=8 HOMEPAGE=https://curl.se/trurl/ https://daniel.haxx.se/blog/2023/04/03/introducing-trurl/ -INHERIT=toolchain-funcs git-r3 +INHERIT=toolchain-funcs python-any-r1 git-r3 IUSE=test LICENSE=curl PROPERTIES=live RDEPEND=>=net-misc/curl-7.81.0 RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=git-r3 27e13c09a4c7e4c78ac812f74727e676 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=65a75f8eefda2fbd8189d06e03b83a68 +_eclasses_=git-r3 27e13c09a4c7e4c78ac812f74727e676 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=fb46a50d1736735eac7256328075ea63 diff --git a/metadata/md5-cache/net-misc/websocketd-0.4.1 b/metadata/md5-cache/net-misc/websocketd-0.4.1 index fdd402ffe7eb..21c5e9de7307 100644 --- a/metadata/md5-cache/net-misc/websocketd-0.4.1 +++ b/metadata/md5-cache/net-misc/websocketd-0.4.1 @@ -9,5 +9,5 @@ LICENSE=BSD-2 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/joewalnes/websocketd/archive/refs/tags/v0.4.1.tar.gz -> websocketd-0.4.1.tar.gz https://dev.gentoo.org/~zmedico/dist/websocketd-0.4.1-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=53a16859ce7766bc550bf0d484e17cdd diff --git a/metadata/md5-cache/net-p2p/Manifest.gz b/metadata/md5-cache/net-p2p/Manifest.gz index facc8d88e0d1..c1aa626ebf40 100644 Binary files a/metadata/md5-cache/net-p2p/Manifest.gz and b/metadata/md5-cache/net-p2p/Manifest.gz differ diff --git a/metadata/md5-cache/net-p2p/energi3-3.0.8 b/metadata/md5-cache/net-p2p/energi3-3.0.8 index 7bc7d3fcd5cb..c3cf31a83d45 100644 --- a/metadata/md5-cache/net-p2p/energi3-3.0.8 +++ b/metadata/md5-cache/net-p2p/energi3-3.0.8 @@ -10,5 +10,5 @@ RDEPEND=acct-user/energi3 RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/energicryptocurrency/energi3/archive/refs/tags/v3.0.8.tar.gz -> energi3-3.0.8.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=5ba7ca77e462f65ea1f93966004c182f diff --git a/metadata/md5-cache/net-p2p/energi3-3.1.0 b/metadata/md5-cache/net-p2p/energi3-3.1.0 index c2d03c9f72e0..fefcc85a9294 100644 --- a/metadata/md5-cache/net-p2p/energi3-3.1.0 +++ b/metadata/md5-cache/net-p2p/energi3-3.1.0 @@ -10,5 +10,5 @@ RDEPEND=acct-user/energi3 RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/energicryptocurrency/energi3/archive/refs/tags/v3.1.0.tar.gz -> energi3-3.1.0.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=55bf469fb678a729fd3bcb69d58773d7 diff --git a/metadata/md5-cache/net-p2p/energi3-9999 b/metadata/md5-cache/net-p2p/energi3-9999 index 54903f50cb66..ab5ec8f16752 100644 --- a/metadata/md5-cache/net-p2p/energi3-9999 +++ b/metadata/md5-cache/net-p2p/energi3-9999 @@ -9,5 +9,5 @@ PROPERTIES=live RDEPEND=acct-user/energi3 RESTRICT=strip test SLOT=0 -_eclasses_=git-r3 27e13c09a4c7e4c78ac812f74727e676 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=git-r3 27e13c09a4c7e4c78ac812f74727e676 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=5ba7ca77e462f65ea1f93966004c182f diff --git a/metadata/md5-cache/net-p2p/go-ethereum-1.10.17 b/metadata/md5-cache/net-p2p/go-ethereum-1.10.17 index 2389cbe66cac..4b2b808c68e0 100644 --- a/metadata/md5-cache/net-p2p/go-ethereum-1.10.17 +++ b/metadata/md5-cache/net-p2p/go-ethereum-1.10.17 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ LGPL-3+ RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/ethereum/go-ethereum/archive/v1.10.17.tar.gz -> go-ethereum-1.10.17.tar.gz https://dev.gentoo.org/~sam/distfiles/net-p2p/go-ethereum/go-ethereum-1.10.17-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=55dd1f03593b8afc37d0d612010a43a4 diff --git a/metadata/md5-cache/net-p2p/go-ethereum-1.10.18 b/metadata/md5-cache/net-p2p/go-ethereum-1.10.18 index d0c85eda9514..cf641f62e0e8 100644 --- a/metadata/md5-cache/net-p2p/go-ethereum-1.10.18 +++ b/metadata/md5-cache/net-p2p/go-ethereum-1.10.18 @@ -10,5 +10,5 @@ LICENSE=GPL-3+ LGPL-3+ RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/ethereum/go-ethereum/archive/v1.10.18.tar.gz -> go-ethereum-1.10.18.tar.gz https://dev.gentoo.org/~sam/distfiles/net-p2p/go-ethereum/go-ethereum-1.10.18-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=55dd1f03593b8afc37d0d612010a43a4 diff --git a/metadata/md5-cache/net-p2p/kubo-0.15.0 b/metadata/md5-cache/net-p2p/kubo-0.15.0 index 19557f696f7d..529640258cde 100644 --- a/metadata/md5-cache/net-p2p/kubo-0.15.0 +++ b/metadata/md5-cache/net-p2p/kubo-0.15.0 @@ -11,5 +11,5 @@ RDEPEND=acct-group/ipfs acct-user/ipfs sys-fs/fuse:0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/ipfs/kubo/releases/download/v0.15.0/kubo-source.tar.gz -> kubo-0.15.0.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=4843a8f7a721fed92d1c2d3d1a6cf198 diff --git a/metadata/md5-cache/net-p2p/kubo-0.18.1 b/metadata/md5-cache/net-p2p/kubo-0.18.1 index ab0a8234e667..25d1643afbef 100644 --- a/metadata/md5-cache/net-p2p/kubo-0.18.1 +++ b/metadata/md5-cache/net-p2p/kubo-0.18.1 @@ -11,5 +11,5 @@ RDEPEND=acct-group/ipfs acct-user/ipfs sys-fs/fuse:0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/ipfs/kubo/releases/download/v0.18.1/kubo-source.tar.gz -> kubo-0.18.1.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=0c9340c2db7cfa181f5efba7aaa41813 diff --git a/metadata/md5-cache/net-p2p/syncthing-1.21.0 b/metadata/md5-cache/net-p2p/syncthing-1.21.0 deleted file mode 100644 index c91e33921af8..000000000000 --- a/metadata/md5-cache/net-p2p/syncthing-1.21.0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND==dev-lang/go-1.18 app-arch/unzip virtual/pkgconfig -DEFINED_PHASES=compile install postinst postrm prepare test unpack -DESCRIPTION=Open Source Continuous File Synchronization -EAPI=8 -HOMEPAGE=https://syncthing.net -INHERIT=desktop go-module systemd xdg-utils -IUSE=selinux tools -KEYWORDS=amd64 arm arm64 ppc64 x86 -LICENSE=Apache-2.0 BSD BSD-2 CC0-1.0 ISC MIT MPL-2.0 Unlicense -RDEPEND=acct-group/syncthing acct-user/syncthing tools? ( >=acct-user/stdiscosrv-1 >=acct-user/strelaysrv-1 ) selinux? ( sec-policy/selinux-syncthing ) -RESTRICT=strip -SLOT=0 -SRC_URI=https://github.com/syncthing/syncthing/archive/v1.21.0.tar.gz -> syncthing-1.21.0.tar.gz https://dev.gentoo.org/~marecki/dists/net-p2p/syncthing/syncthing-1.21.0-deps.tar.xz -_eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=0b8d14da2247bf1f570898d4f1629eb5 diff --git a/metadata/md5-cache/net-p2p/syncthing-1.23.2 b/metadata/md5-cache/net-p2p/syncthing-1.23.2 index 0adee8e6e963..704d4d9c39fb 100644 --- a/metadata/md5-cache/net-p2p/syncthing-1.23.2 +++ b/metadata/md5-cache/net-p2p/syncthing-1.23.2 @@ -11,5 +11,5 @@ RDEPEND=acct-group/syncthing acct-user/syncthing tools? ( >=acct-user/stdiscosrv RESTRICT=strip SLOT=0 SRC_URI=https://github.com/syncthing/syncthing/archive/v1.23.2.tar.gz -> syncthing-1.23.2.tar.gz https://dev.gentoo.org/~marecki/dists/net-p2p/syncthing/syncthing-1.23.2-deps.tar.xz -_eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=cf95cefa1e9290a770b57189b5c857e6 diff --git a/metadata/md5-cache/net-p2p/syncthing-1.23.4 b/metadata/md5-cache/net-p2p/syncthing-1.23.4 index 90dc0e681d47..130d517b1a6d 100644 --- a/metadata/md5-cache/net-p2p/syncthing-1.23.4 +++ b/metadata/md5-cache/net-p2p/syncthing-1.23.4 @@ -11,5 +11,5 @@ RDEPEND=acct-group/syncthing acct-user/syncthing tools? ( >=acct-user/stdiscosrv RESTRICT=strip SLOT=0 SRC_URI=https://github.com/syncthing/syncthing/releases/download/v1.23.4/syncthing-source-v1.23.4.tar.gz -> syncthing-1.23.4.tar.gz -_eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=de0cf4328e029d155031c4468ac6dac8 diff --git a/metadata/md5-cache/net-proxy/Manifest.gz b/metadata/md5-cache/net-proxy/Manifest.gz index 395b6228d4fd..ceba7eaa7022 100644 Binary files a/metadata/md5-cache/net-proxy/Manifest.gz and b/metadata/md5-cache/net-proxy/Manifest.gz differ diff --git a/metadata/md5-cache/net-proxy/haproxy-dataplaneapi-2.5.1 b/metadata/md5-cache/net-proxy/haproxy-dataplaneapi-2.5.1 index ef7b89b78b84..2df7759d2603 100644 --- a/metadata/md5-cache/net-proxy/haproxy-dataplaneapi-2.5.1 +++ b/metadata/md5-cache/net-proxy/haproxy-dataplaneapi-2.5.1 @@ -9,5 +9,5 @@ LICENSE=BSD RESTRICT=strip SLOT=0 SRC_URI=https://github.com/haproxytech/dataplaneapi/archive/v2.5.1.tar.gz -> haproxy-dataplaneapi-2.5.1.tar.gz http://gentooexperimental.org/~patrick/haproxy-dataplaneapi-2.5.1-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=e45bae94bb1690c6ba2dc0583b85fa54 diff --git a/metadata/md5-cache/net-proxy/obfs4proxy-0.0.14 b/metadata/md5-cache/net-proxy/obfs4proxy-0.0.14 index a9aa092a7cc4..59fb71205897 100644 --- a/metadata/md5-cache/net-proxy/obfs4proxy-0.0.14 +++ b/metadata/md5-cache/net-proxy/obfs4proxy-0.0.14 @@ -9,5 +9,5 @@ LICENSE=BSD CC0-1.0 BZIP2 GPL-3+ MIT public-domain RESTRICT=strip SLOT=0 SRC_URI=https://gitlab.com/yawning/obfs4/-/archive/obfs4proxy-0.0.14/obfs4-obfs4proxy-0.0.14.tar.gz -> obfs4proxy-0.0.14.tar.gz https://dev.gentoo.org/~marecki/dists/net-proxy/obfs4proxy/obfs4proxy-0.0.14-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=56bb9a309d1db7bf5f909887d05d8c1c diff --git a/metadata/md5-cache/net-vpn/Manifest.gz b/metadata/md5-cache/net-vpn/Manifest.gz index 9610cab36666..c89f3c12b9e9 100644 Binary files a/metadata/md5-cache/net-vpn/Manifest.gz and b/metadata/md5-cache/net-vpn/Manifest.gz differ diff --git a/metadata/md5-cache/net-vpn/fp-multiuser-0.0.2 b/metadata/md5-cache/net-vpn/fp-multiuser-0.0.2 index c46b378373e5..9ee8891f904b 100644 --- a/metadata/md5-cache/net-vpn/fp-multiuser-0.0.2 +++ b/metadata/md5-cache/net-vpn/fp-multiuser-0.0.2 @@ -11,5 +11,5 @@ RDEPEND=acct-user/fp-multiuser acct-group/fp-multiuser RESTRICT=strip SLOT=0 SRC_URI=https://github.com/gofrp/fp-multiuser/archive/v0.0.2.tar.gz -> fp-multiuser-0.0.2.tar.gz https://dev.gentoo.org/~zmedico/dist/fp-multiuser-0.0.2-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=a65b2e9cdf5f6188f235c04573c119e9 diff --git a/metadata/md5-cache/net-vpn/frp-0.42.0 b/metadata/md5-cache/net-vpn/frp-0.42.0 index 9bc05519fd6f..f593966e5f8b 100644 --- a/metadata/md5-cache/net-vpn/frp-0.42.0 +++ b/metadata/md5-cache/net-vpn/frp-0.42.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD BSD-2 ISC MIT MPL-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/fatedier/frp/archive/v0.42.0.tar.gz -> frp-0.42.0.tar.gz https://dev.gentoo.org/~zmedico/dist/frp-0.42.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=bead530d8bc586d56afbb0debfdf5460 diff --git a/metadata/md5-cache/net-vpn/frp-0.43.0 b/metadata/md5-cache/net-vpn/frp-0.43.0 index 0a8d7e980369..bb25770f070a 100644 --- a/metadata/md5-cache/net-vpn/frp-0.43.0 +++ b/metadata/md5-cache/net-vpn/frp-0.43.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD BSD-2 ISC MIT MPL-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/fatedier/frp/archive/v0.43.0.tar.gz -> frp-0.43.0.tar.gz https://dev.gentoo.org/~zmedico/dist/frp-0.42.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=ae748b2d608e9a5d79e02e52f13c2eae diff --git a/metadata/md5-cache/net-vpn/frp-0.44.0 b/metadata/md5-cache/net-vpn/frp-0.44.0 index e3033530ffdd..c8e2c3a4f2ce 100644 --- a/metadata/md5-cache/net-vpn/frp-0.44.0 +++ b/metadata/md5-cache/net-vpn/frp-0.44.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD BSD-2 ISC MIT MPL-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/fatedier/frp/archive/v0.44.0.tar.gz -> frp-0.44.0.tar.gz https://dev.gentoo.org/~zmedico/dist/frp-0.42.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=ae748b2d608e9a5d79e02e52f13c2eae diff --git a/metadata/md5-cache/net-vpn/frp-0.45.0 b/metadata/md5-cache/net-vpn/frp-0.45.0 index 292168243ae7..33a7db7be31d 100644 --- a/metadata/md5-cache/net-vpn/frp-0.45.0 +++ b/metadata/md5-cache/net-vpn/frp-0.45.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD BSD-2 ISC MIT MPL-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/zmedico/frp/archive/v0.45.0-vendor.tar.gz -> frp-0.45.0-vendor.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=496f903e4bbfa0f4605b80dc3ab1fc7b diff --git a/metadata/md5-cache/net-vpn/headscale-0.20.0 b/metadata/md5-cache/net-vpn/headscale-0.20.0 index e002e52ee259..40b5b260ce7e 100644 --- a/metadata/md5-cache/net-vpn/headscale-0.20.0 +++ b/metadata/md5-cache/net-vpn/headscale-0.20.0 @@ -11,5 +11,5 @@ RDEPEND=acct-group/headscale acct-user/headscale net-firewall/iptables RESTRICT=strip SLOT=0 SRC_URI=https://github.com/juanfont/headscale/archive/v0.20.0.tar.gz -> headscale-0.20.0.tar.gz https://github.com/slchris/gentoo-go-deps/releases/download/headscale-0.20.0/headscale-0.20.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=d46c8601fd768df67ebbc68b75536694 diff --git a/metadata/md5-cache/net-vpn/openconnect-9.01 b/metadata/md5-cache/net-vpn/openconnect-9.01-r2 similarity index 80% rename from metadata/md5-cache/net-vpn/openconnect-9.01 rename to metadata/md5-cache/net-vpn/openconnect-9.01-r2 index 117db5e238d6..76751b30541a 100644 --- a/metadata/md5-cache/net-vpn/openconnect-9.01 +++ b/metadata/md5-cache/net-vpn/openconnect-9.01-r2 @@ -1,6 +1,6 @@ BDEPEND=virtual/pkgconfig doc? ( || ( >=dev-lang/python-3.10.9-r1:3.10[xml(+)] >=dev-lang/python-3.9.16-r1:3.9[xml(+)] ) sys-apps/groff ) nls? ( sys-devel/gettext ) test? ( net-vpn/ocserv ) DEFINED_PHASES=configure install prepare pretend setup test unpack -DEPEND=dev-libs/libxml2 sys-libs/zlib app-crypt/p11-kit !gnutls? ( >=dev-libs/openssl-1.0.1h:0= dev-libs/libp11 ) gnutls? ( app-crypt/trousers app-misc/ca-certificates dev-libs/nettle >=net-libs/gnutls-3.6.13:0= dev-libs/libtasn1:0= app-crypt/tpm2-tss:= ) gssapi? ( virtual/krb5 ) libproxy? ( net-libs/libproxy ) lz4? ( app-arch/lz4:= ) nls? ( virtual/libintl ) pskc? ( sys-auth/oath-toolkit[pskc] ) smartcard? ( sys-apps/pcsc-lite:0= ) stoken? ( app-crypt/stoken ) test? ( net-libs/socket_wrapper sys-libs/uid_wrapper !gnutls? ( dev-libs/openssl:0[weak-ssl-ciphers(-)] ) ) +DEPEND=dev-libs/libxml2 sys-libs/zlib app-crypt/p11-kit !gnutls? ( >=dev-libs/openssl-1.0.1h:0= dev-libs/libp11 ) gnutls? ( app-crypt/trousers app-misc/ca-certificates dev-libs/nettle >=net-libs/gnutls-3.6.13:0= dev-libs/libtasn1:0= app-crypt/tpm2-tss:= ) gssapi? ( virtual/krb5 ) libproxy? ( net-libs/libproxy ) lz4? ( app-arch/lz4:= ) nls? ( virtual/libintl ) pskc? ( sys-auth/oath-toolkit[pskc(+)] ) smartcard? ( sys-apps/pcsc-lite:0= ) stoken? ( app-crypt/stoken ) test? ( net-libs/socket_wrapper sys-libs/uid_wrapper !gnutls? ( dev-libs/openssl:0[weak-ssl-ciphers(-)] ) ) DESCRIPTION=Free client for Cisco AnyConnect SSL VPN software EAPI=8 HOMEPAGE=https://www.infradead.org/openconnect/ @@ -8,9 +8,9 @@ INHERIT=linux-info python-any-r1 IUSE=doc +gnutls gssapi libproxy lz4 nls pskc selinux smartcard stoken test KEYWORDS=amd64 arm arm64 ppc64 ~riscv x86 LICENSE=LGPL-2.1 GPL-2 -RDEPEND=dev-libs/libxml2 sys-libs/zlib app-crypt/p11-kit !gnutls? ( >=dev-libs/openssl-1.0.1h:0= dev-libs/libp11 ) gnutls? ( app-crypt/trousers app-misc/ca-certificates dev-libs/nettle >=net-libs/gnutls-3.6.13:0= dev-libs/libtasn1:0= app-crypt/tpm2-tss:= ) gssapi? ( virtual/krb5 ) libproxy? ( net-libs/libproxy ) lz4? ( app-arch/lz4:= ) nls? ( virtual/libintl ) pskc? ( sys-auth/oath-toolkit[pskc] ) smartcard? ( sys-apps/pcsc-lite:0= ) stoken? ( app-crypt/stoken ) sys-apps/iproute2 >=net-vpn/vpnc-scripts-20210402-r1 selinux? ( sec-policy/selinux-vpn ) +RDEPEND=dev-libs/libxml2 sys-libs/zlib app-crypt/p11-kit !gnutls? ( >=dev-libs/openssl-1.0.1h:0= dev-libs/libp11 ) gnutls? ( app-crypt/trousers app-misc/ca-certificates dev-libs/nettle >=net-libs/gnutls-3.6.13:0= dev-libs/libtasn1:0= app-crypt/tpm2-tss:= ) gssapi? ( virtual/krb5 ) libproxy? ( net-libs/libproxy ) lz4? ( app-arch/lz4:= ) nls? ( virtual/libintl ) pskc? ( sys-auth/oath-toolkit[pskc(+)] ) smartcard? ( sys-apps/pcsc-lite:0= ) stoken? ( app-crypt/stoken ) sys-apps/iproute2 >=net-vpn/vpnc-scripts-20210402-r1 selinux? ( sec-policy/selinux-vpn ) RESTRICT=!test? ( test ) SLOT=0/5 SRC_URI=ftp://ftp.infradead.org/pub/openconnect/openconnect-9.01.tar.gz _eclasses_=linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=9d91e2ce509172e6638a6fcd84eff617 +_md5_=3f63f69d0d952ab8cb691210f62f3ef2 diff --git a/metadata/md5-cache/net-vpn/openconnect-9.01-r1 b/metadata/md5-cache/net-vpn/openconnect-9.01-r3 similarity index 79% rename from metadata/md5-cache/net-vpn/openconnect-9.01-r1 rename to metadata/md5-cache/net-vpn/openconnect-9.01-r3 index d6c08d7e7f5d..0b8224a9d6b9 100644 --- a/metadata/md5-cache/net-vpn/openconnect-9.01-r1 +++ b/metadata/md5-cache/net-vpn/openconnect-9.01-r3 @@ -1,6 +1,6 @@ BDEPEND=virtual/pkgconfig doc? ( || ( >=dev-lang/python-3.10.9-r1:3.10[xml(+)] >=dev-lang/python-3.9.16-r1:3.9[xml(+)] ) sys-apps/groff ) nls? ( sys-devel/gettext ) test? ( net-vpn/ocserv ) DEFINED_PHASES=configure install prepare pretend setup test unpack -DEPEND=dev-libs/json-parser:0= dev-libs/libxml2 sys-libs/zlib app-crypt/p11-kit !gnutls? ( >=dev-libs/openssl-1.0.1h:0= dev-libs/libp11 ) gnutls? ( app-crypt/trousers app-misc/ca-certificates dev-libs/nettle >=net-libs/gnutls-3.6.13:0= dev-libs/libtasn1:0= app-crypt/tpm2-tss:= ) gssapi? ( virtual/krb5 ) libproxy? ( net-libs/libproxy ) lz4? ( app-arch/lz4:= ) nls? ( virtual/libintl ) pskc? ( sys-auth/oath-toolkit[pskc] ) smartcard? ( sys-apps/pcsc-lite:0= ) stoken? ( app-crypt/stoken ) test? ( net-libs/socket_wrapper sys-libs/uid_wrapper !gnutls? ( dev-libs/openssl:0[weak-ssl-ciphers(-)] ) ) +DEPEND=dev-libs/json-parser:0= dev-libs/libxml2 sys-libs/zlib app-crypt/p11-kit !gnutls? ( >=dev-libs/openssl-1.0.1h:0= dev-libs/libp11 ) gnutls? ( app-crypt/trousers app-misc/ca-certificates dev-libs/nettle >=net-libs/gnutls-3.6.13:0= dev-libs/libtasn1:0= app-crypt/tpm2-tss:= ) gssapi? ( virtual/krb5 ) libproxy? ( net-libs/libproxy ) lz4? ( app-arch/lz4:= ) nls? ( virtual/libintl ) pskc? ( sys-auth/oath-toolkit[pskc(+)] ) smartcard? ( sys-apps/pcsc-lite:0= ) stoken? ( app-crypt/stoken ) test? ( net-libs/socket_wrapper sys-libs/uid_wrapper !gnutls? ( dev-libs/openssl:0[weak-ssl-ciphers(-)] ) ) DESCRIPTION=Free client for Cisco AnyConnect SSL VPN software EAPI=8 HOMEPAGE=https://www.infradead.org/openconnect/ @@ -8,9 +8,9 @@ INHERIT=linux-info python-any-r1 IUSE=doc +gnutls gssapi libproxy lz4 nls pskc selinux smartcard stoken test KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86 LICENSE=LGPL-2.1 GPL-2 -RDEPEND=dev-libs/json-parser:0= dev-libs/libxml2 sys-libs/zlib app-crypt/p11-kit !gnutls? ( >=dev-libs/openssl-1.0.1h:0= dev-libs/libp11 ) gnutls? ( app-crypt/trousers app-misc/ca-certificates dev-libs/nettle >=net-libs/gnutls-3.6.13:0= dev-libs/libtasn1:0= app-crypt/tpm2-tss:= ) gssapi? ( virtual/krb5 ) libproxy? ( net-libs/libproxy ) lz4? ( app-arch/lz4:= ) nls? ( virtual/libintl ) pskc? ( sys-auth/oath-toolkit[pskc] ) smartcard? ( sys-apps/pcsc-lite:0= ) stoken? ( app-crypt/stoken ) sys-apps/iproute2 >=net-vpn/vpnc-scripts-20210402-r1 selinux? ( sec-policy/selinux-vpn ) +RDEPEND=dev-libs/json-parser:0= dev-libs/libxml2 sys-libs/zlib app-crypt/p11-kit !gnutls? ( >=dev-libs/openssl-1.0.1h:0= dev-libs/libp11 ) gnutls? ( app-crypt/trousers app-misc/ca-certificates dev-libs/nettle >=net-libs/gnutls-3.6.13:0= dev-libs/libtasn1:0= app-crypt/tpm2-tss:= ) gssapi? ( virtual/krb5 ) libproxy? ( net-libs/libproxy ) lz4? ( app-arch/lz4:= ) nls? ( virtual/libintl ) pskc? ( sys-auth/oath-toolkit[pskc(+)] ) smartcard? ( sys-apps/pcsc-lite:0= ) stoken? ( app-crypt/stoken ) sys-apps/iproute2 >=net-vpn/vpnc-scripts-20210402-r1 selinux? ( sec-policy/selinux-vpn ) RESTRICT=!test? ( test ) SLOT=0/5 SRC_URI=ftp://ftp.infradead.org/pub/openconnect/openconnect-9.01.tar.gz _eclasses_=linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=9984b19bae0bf134bf4457e60eb38351 +_md5_=a8a8bd3bb2fa1f85c3643fcb188355ac diff --git a/metadata/md5-cache/net-vpn/openconnect-9999 b/metadata/md5-cache/net-vpn/openconnect-9999 index 208b39158a97..81dbef53594b 100644 --- a/metadata/md5-cache/net-vpn/openconnect-9999 +++ b/metadata/md5-cache/net-vpn/openconnect-9999 @@ -1,6 +1,6 @@ BDEPEND=virtual/pkgconfig doc? ( || ( >=dev-lang/python-3.10.9-r1:3.10[xml(+)] >=dev-lang/python-3.9.16-r1:3.9[xml(+)] ) sys-apps/groff ) nls? ( sys-devel/gettext ) test? ( net-vpn/ocserv ) >=dev-vcs/git-1.8.2.1[curl] sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 DEFINED_PHASES=configure install prepare pretend setup test unpack -DEPEND=dev-libs/json-parser:0= dev-libs/libxml2 sys-libs/zlib app-crypt/p11-kit !gnutls? ( >=dev-libs/openssl-1.0.1h:0= dev-libs/libp11 ) gnutls? ( app-crypt/trousers app-misc/ca-certificates dev-libs/nettle >=net-libs/gnutls-3.6.13:0= dev-libs/libtasn1:0= app-crypt/tpm2-tss:= ) gssapi? ( virtual/krb5 ) libproxy? ( net-libs/libproxy ) lz4? ( app-arch/lz4:= ) nls? ( virtual/libintl ) pskc? ( sys-auth/oath-toolkit[pskc] ) smartcard? ( sys-apps/pcsc-lite:0= ) stoken? ( app-crypt/stoken ) test? ( net-libs/socket_wrapper sys-libs/uid_wrapper !gnutls? ( dev-libs/openssl:0[weak-ssl-ciphers(-)] ) ) +DEPEND=dev-libs/json-parser:0= dev-libs/libxml2 sys-libs/zlib app-crypt/p11-kit !gnutls? ( >=dev-libs/openssl-1.0.1h:0= dev-libs/libp11 ) gnutls? ( app-crypt/trousers app-misc/ca-certificates dev-libs/nettle >=net-libs/gnutls-3.6.13:0= dev-libs/libtasn1:0= app-crypt/tpm2-tss:= ) gssapi? ( virtual/krb5 ) libproxy? ( net-libs/libproxy ) lz4? ( app-arch/lz4:= ) nls? ( virtual/libintl ) pskc? ( sys-auth/oath-toolkit[pskc(+)] ) smartcard? ( sys-apps/pcsc-lite:0= ) stoken? ( app-crypt/stoken ) test? ( net-libs/socket_wrapper sys-libs/uid_wrapper !gnutls? ( dev-libs/openssl:0[weak-ssl-ciphers(-)] ) ) DESCRIPTION=Free client for Cisco AnyConnect SSL VPN software EAPI=8 HOMEPAGE=https://www.infradead.org/openconnect/ @@ -8,8 +8,8 @@ INHERIT=linux-info python-any-r1 git-r3 autotools IUSE=doc +gnutls gssapi libproxy lz4 nls pskc selinux smartcard stoken test LICENSE=LGPL-2.1 GPL-2 PROPERTIES=live -RDEPEND=dev-libs/json-parser:0= dev-libs/libxml2 sys-libs/zlib app-crypt/p11-kit !gnutls? ( >=dev-libs/openssl-1.0.1h:0= dev-libs/libp11 ) gnutls? ( app-crypt/trousers app-misc/ca-certificates dev-libs/nettle >=net-libs/gnutls-3.6.13:0= dev-libs/libtasn1:0= app-crypt/tpm2-tss:= ) gssapi? ( virtual/krb5 ) libproxy? ( net-libs/libproxy ) lz4? ( app-arch/lz4:= ) nls? ( virtual/libintl ) pskc? ( sys-auth/oath-toolkit[pskc] ) smartcard? ( sys-apps/pcsc-lite:0= ) stoken? ( app-crypt/stoken ) sys-apps/iproute2 >=net-vpn/vpnc-scripts-20210402-r1 selinux? ( sec-policy/selinux-vpn ) +RDEPEND=dev-libs/json-parser:0= dev-libs/libxml2 sys-libs/zlib app-crypt/p11-kit !gnutls? ( >=dev-libs/openssl-1.0.1h:0= dev-libs/libp11 ) gnutls? ( app-crypt/trousers app-misc/ca-certificates dev-libs/nettle >=net-libs/gnutls-3.6.13:0= dev-libs/libtasn1:0= app-crypt/tpm2-tss:= ) gssapi? ( virtual/krb5 ) libproxy? ( net-libs/libproxy ) lz4? ( app-arch/lz4:= ) nls? ( virtual/libintl ) pskc? ( sys-auth/oath-toolkit[pskc(+)] ) smartcard? ( sys-apps/pcsc-lite:0= ) stoken? ( app-crypt/stoken ) sys-apps/iproute2 >=net-vpn/vpnc-scripts-20210402-r1 selinux? ( sec-policy/selinux-vpn ) RESTRICT=!test? ( test ) SLOT=0/5 _eclasses_=autotools f0d3196128225dee3220e65f3371bc7a git-r3 27e13c09a4c7e4c78ac812f74727e676 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=c412c7a4d9fa699f1fe4f644902b9740 +_md5_=96b6397eab35d5fe50d63d4dd268ad97 diff --git a/metadata/md5-cache/net-vpn/riseup-vpn-0.21.11 b/metadata/md5-cache/net-vpn/riseup-vpn-0.21.11 index bf414bdd01ad..5dde03c88893 100644 --- a/metadata/md5-cache/net-vpn/riseup-vpn-0.21.11 +++ b/metadata/md5-cache/net-vpn/riseup-vpn-0.21.11 @@ -15,5 +15,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=test strip !test? ( test ) SLOT=0 SRC_URI=https://0xacab.org/leap/bitmask-vpn/-/archive/0.21.11/bitmask-vpn-0.21.11.tar.gz -> riseup-vpn-0.21.11.tar.gz https://dev.gentoo.org/~andrewammerlaan/riseup-vpn-0.21.11-deps.tar.xz -_eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e virtualx 817571665ee28575da44ee08135089e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e virtualx 817571665ee28575da44ee08135089e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=0eaacdbd222a6cb269c3dc55652eccf4 diff --git a/metadata/md5-cache/net-vpn/riseup-vpn-0.21.11_p20221113 b/metadata/md5-cache/net-vpn/riseup-vpn-0.21.11_p20221113 index 8debc285bbb8..f7c192344067 100644 --- a/metadata/md5-cache/net-vpn/riseup-vpn-0.21.11_p20221113 +++ b/metadata/md5-cache/net-vpn/riseup-vpn-0.21.11_p20221113 @@ -15,5 +15,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=test strip !test? ( test ) SLOT=0 SRC_URI=https://0xacab.org/leap/bitmask-vpn/-/archive/d7749dca00983fa9240e146ebf036c44cf67b9cd.tar.gz -> riseup-vpn-0.21.11_p20221113.tar.gz https://dev.gentoo.org/~andrewammerlaan/riseup-vpn-0.21.11_p20221113-deps.tar.xz -_eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e virtualx 817571665ee28575da44ee08135089e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 qmake-utils 59420c906278d16deaaa629f9d115707 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e virtualx 817571665ee28575da44ee08135089e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=50d9ed4c8eebec16f7f4c327a6d02359 diff --git a/metadata/md5-cache/net-vpn/tailscale-1.36.2 b/metadata/md5-cache/net-vpn/tailscale-1.36.2 index 86772559c3f0..a3933a9f8f62 100644 --- a/metadata/md5-cache/net-vpn/tailscale-1.36.2 +++ b/metadata/md5-cache/net-vpn/tailscale-1.36.2 @@ -10,5 +10,5 @@ RDEPEND=net-firewall/iptables virtual/tmpfiles RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/tailscale/tailscale/archive/v1.36.2.tar.gz -> tailscale-1.36.2.tar.gz https://dev.gentoo.org/~williamh/dist/tailscale-1.36.2-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=411aa59f9ae09a78e257fd18df82f048 diff --git a/metadata/md5-cache/net-vpn/tailscale-1.38.4 b/metadata/md5-cache/net-vpn/tailscale-1.38.4 index 4f6f9b169873..8edddab654ec 100644 --- a/metadata/md5-cache/net-vpn/tailscale-1.38.4 +++ b/metadata/md5-cache/net-vpn/tailscale-1.38.4 @@ -10,5 +10,5 @@ RDEPEND=net-firewall/iptables virtual/tmpfiles RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/tailscale/tailscale/archive/v1.38.4.tar.gz -> tailscale-1.38.4.tar.gz https://dev.gentoo.org/~williamh/dist/tailscale-1.38.4-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=8afd9f055943ec88175e09a9ac743cf1 diff --git a/metadata/md5-cache/sci-biology/Manifest.gz b/metadata/md5-cache/sci-biology/Manifest.gz index 0a2a81f71871..40f86f787f48 100644 Binary files a/metadata/md5-cache/sci-biology/Manifest.gz and b/metadata/md5-cache/sci-biology/Manifest.gz differ diff --git a/metadata/md5-cache/sci-biology/bedtools-2.30.0 b/metadata/md5-cache/sci-biology/bedtools-2.30.0 index 0225c9c55698..b19afaaa5035 100644 --- a/metadata/md5-cache/sci-biology/bedtools-2.30.0 +++ b/metadata/md5-cache/sci-biology/bedtools-2.30.0 @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/arq5x/bedtools2/releases/download/v2.30.0/bedtools-2.30.0.tar.gz _eclasses_=multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=a8923ba46d6cb3a1840954c1b014568c +_md5_=6362b2cc40163766b0448cea57894c3a diff --git a/metadata/md5-cache/sci-chemistry/Manifest.gz b/metadata/md5-cache/sci-chemistry/Manifest.gz index 57d5b779e3bd..c1512d4ef3a7 100644 Binary files a/metadata/md5-cache/sci-chemistry/Manifest.gz and b/metadata/md5-cache/sci-chemistry/Manifest.gz differ diff --git a/metadata/md5-cache/sci-chemistry/chemex-2022.2.0 b/metadata/md5-cache/sci-chemistry/chemex-2022.2.0 deleted file mode 100644 index d7b6972e186a..000000000000 --- a/metadata/md5-cache/sci-chemistry/chemex-2022.2.0 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=test? ( python_single_target_python3_9? ( >=dev-python/asteval-0.9.25[python_targets_python3_9(-)] >=dev-python/cachetools-5.2.0[python_targets_python3_9(-)] >=dev-python/lmfit-1.1.0[python_targets_python3_9(-)] >=dev-python/matplotlib-3.6.2[python_targets_python3_9(-)] >=dev-python/numpy-1.24.0[python_targets_python3_9(-)] >=dev-python/pydantic-1.10.4[python_targets_python3_9(-)] >=dev-python/rapidfuzz-2.13.7[python_targets_python3_9(-)] >=dev-python/rich-13.0.0[python_targets_python3_9(-)] >=dev-python/scipy-1.10.0[python_targets_python3_9(-)] >=dev-python/tomli-2.0.1[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/asteval-0.9.25[python_targets_python3_10(-)] >=dev-python/cachetools-5.2.0[python_targets_python3_10(-)] >=dev-python/lmfit-1.1.0[python_targets_python3_10(-)] >=dev-python/matplotlib-3.6.2[python_targets_python3_10(-)] >=dev-python/numpy-1.24.0[python_targets_python3_10(-)] >=dev-python/pydantic-1.10.4[python_targets_python3_10(-)] >=dev-python/rapidfuzz-2.13.7[python_targets_python3_10(-)] >=dev-python/rich-13.0.0[python_targets_python3_10(-)] >=dev-python/scipy-1.10.0[python_targets_python3_10(-)] >=dev-python/tomli-2.0.1[python_targets_python3_10(-)] ) python_single_target_python3_11? ( >=dev-python/asteval-0.9.25[python_targets_python3_11(-)] >=dev-python/cachetools-5.2.0[python_targets_python3_11(-)] >=dev-python/lmfit-1.1.0[python_targets_python3_11(-)] >=dev-python/matplotlib-3.6.2[python_targets_python3_11(-)] >=dev-python/numpy-1.24.0[python_targets_python3_11(-)] >=dev-python/pydantic-1.10.4[python_targets_python3_11(-)] >=dev-python/rapidfuzz-2.13.7[python_targets_python3_11(-)] >=dev-python/rich-13.0.0[python_targets_python3_11(-)] >=dev-python/scipy-1.10.0[python_targets_python3_11(-)] >=dev-python/tomli-2.0.1[python_targets_python3_11(-)] ) python_single_target_python3_9? ( >=dev-python/pytest-7.2.1[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/pytest-7.2.1[python_targets_python3_10(-)] ) python_single_target_python3_11? ( >=dev-python/pytest-7.2.1[python_targets_python3_11(-)] ) ) python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) python_single_target_python3_9? ( >=dev-python/gpep517-13[python_targets_python3_9(-)] >=dev-python/poetry-core-1.4.0[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/gpep517-13[python_targets_python3_10(-)] >=dev-python/poetry-core-1.4.0[python_targets_python3_10(-)] ) python_single_target_python3_11? ( >=dev-python/gpep517-13[python_targets_python3_11(-)] >=dev-python/poetry-core-1.4.0[python_targets_python3_11(-)] ) -DEFINED_PHASES=compile configure install prepare setup test -DEPEND=python_single_target_python3_9? ( >=dev-python/asteval-0.9.25[python_targets_python3_9(-)] >=dev-python/cachetools-5.2.0[python_targets_python3_9(-)] >=dev-python/lmfit-1.1.0[python_targets_python3_9(-)] >=dev-python/matplotlib-3.6.2[python_targets_python3_9(-)] >=dev-python/numpy-1.24.0[python_targets_python3_9(-)] >=dev-python/pydantic-1.10.4[python_targets_python3_9(-)] >=dev-python/rapidfuzz-2.13.7[python_targets_python3_9(-)] >=dev-python/rich-13.0.0[python_targets_python3_9(-)] >=dev-python/scipy-1.10.0[python_targets_python3_9(-)] >=dev-python/tomli-2.0.1[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/asteval-0.9.25[python_targets_python3_10(-)] >=dev-python/cachetools-5.2.0[python_targets_python3_10(-)] >=dev-python/lmfit-1.1.0[python_targets_python3_10(-)] >=dev-python/matplotlib-3.6.2[python_targets_python3_10(-)] >=dev-python/numpy-1.24.0[python_targets_python3_10(-)] >=dev-python/pydantic-1.10.4[python_targets_python3_10(-)] >=dev-python/rapidfuzz-2.13.7[python_targets_python3_10(-)] >=dev-python/rich-13.0.0[python_targets_python3_10(-)] >=dev-python/scipy-1.10.0[python_targets_python3_10(-)] >=dev-python/tomli-2.0.1[python_targets_python3_10(-)] ) python_single_target_python3_11? ( >=dev-python/asteval-0.9.25[python_targets_python3_11(-)] >=dev-python/cachetools-5.2.0[python_targets_python3_11(-)] >=dev-python/lmfit-1.1.0[python_targets_python3_11(-)] >=dev-python/matplotlib-3.6.2[python_targets_python3_11(-)] >=dev-python/numpy-1.24.0[python_targets_python3_11(-)] >=dev-python/pydantic-1.10.4[python_targets_python3_11(-)] >=dev-python/rapidfuzz-2.13.7[python_targets_python3_11(-)] >=dev-python/rich-13.0.0[python_targets_python3_11(-)] >=dev-python/scipy-1.10.0[python_targets_python3_11(-)] >=dev-python/tomli-2.0.1[python_targets_python3_11(-)] ) -DESCRIPTION=Program to fit chemical exchange induced shift and relaxation data -EAPI=8 -HOMEPAGE=https://github.com/gbouvignies/chemex -INHERIT=distutils-r1 -IUSE=test test python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 -KEYWORDS=~amd64 -LICENSE=BSD -RDEPEND=python_single_target_python3_9? ( >=dev-python/asteval-0.9.25[python_targets_python3_9(-)] >=dev-python/cachetools-5.2.0[python_targets_python3_9(-)] >=dev-python/lmfit-1.1.0[python_targets_python3_9(-)] >=dev-python/matplotlib-3.6.2[python_targets_python3_9(-)] >=dev-python/numpy-1.24.0[python_targets_python3_9(-)] >=dev-python/pydantic-1.10.4[python_targets_python3_9(-)] >=dev-python/rapidfuzz-2.13.7[python_targets_python3_9(-)] >=dev-python/rich-13.0.0[python_targets_python3_9(-)] >=dev-python/scipy-1.10.0[python_targets_python3_9(-)] >=dev-python/tomli-2.0.1[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/asteval-0.9.25[python_targets_python3_10(-)] >=dev-python/cachetools-5.2.0[python_targets_python3_10(-)] >=dev-python/lmfit-1.1.0[python_targets_python3_10(-)] >=dev-python/matplotlib-3.6.2[python_targets_python3_10(-)] >=dev-python/numpy-1.24.0[python_targets_python3_10(-)] >=dev-python/pydantic-1.10.4[python_targets_python3_10(-)] >=dev-python/rapidfuzz-2.13.7[python_targets_python3_10(-)] >=dev-python/rich-13.0.0[python_targets_python3_10(-)] >=dev-python/scipy-1.10.0[python_targets_python3_10(-)] >=dev-python/tomli-2.0.1[python_targets_python3_10(-)] ) python_single_target_python3_11? ( >=dev-python/asteval-0.9.25[python_targets_python3_11(-)] >=dev-python/cachetools-5.2.0[python_targets_python3_11(-)] >=dev-python/lmfit-1.1.0[python_targets_python3_11(-)] >=dev-python/matplotlib-3.6.2[python_targets_python3_11(-)] >=dev-python/numpy-1.24.0[python_targets_python3_11(-)] >=dev-python/pydantic-1.10.4[python_targets_python3_11(-)] >=dev-python/rapidfuzz-2.13.7[python_targets_python3_11(-)] >=dev-python/rich-13.0.0[python_targets_python3_11(-)] >=dev-python/scipy-1.10.0[python_targets_python3_11(-)] >=dev-python/tomli-2.0.1[python_targets_python3_11(-)] ) python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) -REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) -RESTRICT=test !test? ( test ) -SLOT=0 -SRC_URI=https://github.com/gbouvignies/ChemEx/archive/refs/tags/v2022.2.0.tar.gz -> chemex-2022.2.0.tar.gz -_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=e9807f45005b71a10ecd9d52313414ad diff --git a/metadata/md5-cache/sci-chemistry/chemex-2022.3.1 b/metadata/md5-cache/sci-chemistry/chemex-2022.3.1 new file mode 100644 index 000000000000..7586eaf6c35d --- /dev/null +++ b/metadata/md5-cache/sci-chemistry/chemex-2022.3.1 @@ -0,0 +1,17 @@ +BDEPEND=test? ( python_single_target_python3_9? ( >=dev-python/asteval-0.9.25[python_targets_python3_9(-)] >=dev-python/cachetools-5.3.0[python_targets_python3_9(-)] >=dev-python/lmfit-1.2.0[python_targets_python3_9(-)] >=dev-python/matplotlib-3.7.1[python_targets_python3_9(-)] >=dev-python/numpy-1.24.2[python_targets_python3_9(-)] >=dev-python/pydantic-1.10.7[python_targets_python3_9(-)] >=dev-python/rapidfuzz-2.15.1[python_targets_python3_9(-)] >=dev-python/rich-13.3.4[python_targets_python3_9(-)] >=dev-python/scipy-1.10.1[python_targets_python3_9(-)] >=dev-python/tomli-2.0.1[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/asteval-0.9.25[python_targets_python3_10(-)] >=dev-python/cachetools-5.3.0[python_targets_python3_10(-)] >=dev-python/lmfit-1.2.0[python_targets_python3_10(-)] >=dev-python/matplotlib-3.7.1[python_targets_python3_10(-)] >=dev-python/numpy-1.24.2[python_targets_python3_10(-)] >=dev-python/pydantic-1.10.7[python_targets_python3_10(-)] >=dev-python/rapidfuzz-2.15.1[python_targets_python3_10(-)] >=dev-python/rich-13.3.4[python_targets_python3_10(-)] >=dev-python/scipy-1.10.1[python_targets_python3_10(-)] >=dev-python/tomli-2.0.1[python_targets_python3_10(-)] ) python_single_target_python3_11? ( >=dev-python/asteval-0.9.25[python_targets_python3_11(-)] >=dev-python/cachetools-5.3.0[python_targets_python3_11(-)] >=dev-python/lmfit-1.2.0[python_targets_python3_11(-)] >=dev-python/matplotlib-3.7.1[python_targets_python3_11(-)] >=dev-python/numpy-1.24.2[python_targets_python3_11(-)] >=dev-python/pydantic-1.10.7[python_targets_python3_11(-)] >=dev-python/rapidfuzz-2.15.1[python_targets_python3_11(-)] >=dev-python/rich-13.3.4[python_targets_python3_11(-)] >=dev-python/scipy-1.10.1[python_targets_python3_11(-)] >=dev-python/tomli-2.0.1[python_targets_python3_11(-)] ) python_single_target_python3_9? ( >=dev-python/pytest-7.2.1[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/pytest-7.2.1[python_targets_python3_10(-)] ) python_single_target_python3_11? ( >=dev-python/pytest-7.2.1[python_targets_python3_11(-)] ) ) python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) python_single_target_python3_9? ( >=dev-python/gpep517-13[python_targets_python3_9(-)] >=dev-python/poetry-core-1.4.0[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/gpep517-13[python_targets_python3_10(-)] >=dev-python/poetry-core-1.4.0[python_targets_python3_10(-)] ) python_single_target_python3_11? ( >=dev-python/gpep517-13[python_targets_python3_11(-)] >=dev-python/poetry-core-1.4.0[python_targets_python3_11(-)] ) +DEFINED_PHASES=compile configure install prepare setup test +DEPEND=python_single_target_python3_9? ( >=dev-python/asteval-0.9.25[python_targets_python3_9(-)] >=dev-python/cachetools-5.3.0[python_targets_python3_9(-)] >=dev-python/lmfit-1.2.0[python_targets_python3_9(-)] >=dev-python/matplotlib-3.7.1[python_targets_python3_9(-)] >=dev-python/numpy-1.24.2[python_targets_python3_9(-)] >=dev-python/pydantic-1.10.7[python_targets_python3_9(-)] >=dev-python/rapidfuzz-2.15.1[python_targets_python3_9(-)] >=dev-python/rich-13.3.4[python_targets_python3_9(-)] >=dev-python/scipy-1.10.1[python_targets_python3_9(-)] >=dev-python/tomli-2.0.1[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/asteval-0.9.25[python_targets_python3_10(-)] >=dev-python/cachetools-5.3.0[python_targets_python3_10(-)] >=dev-python/lmfit-1.2.0[python_targets_python3_10(-)] >=dev-python/matplotlib-3.7.1[python_targets_python3_10(-)] >=dev-python/numpy-1.24.2[python_targets_python3_10(-)] >=dev-python/pydantic-1.10.7[python_targets_python3_10(-)] >=dev-python/rapidfuzz-2.15.1[python_targets_python3_10(-)] >=dev-python/rich-13.3.4[python_targets_python3_10(-)] >=dev-python/scipy-1.10.1[python_targets_python3_10(-)] >=dev-python/tomli-2.0.1[python_targets_python3_10(-)] ) python_single_target_python3_11? ( >=dev-python/asteval-0.9.25[python_targets_python3_11(-)] >=dev-python/cachetools-5.3.0[python_targets_python3_11(-)] >=dev-python/lmfit-1.2.0[python_targets_python3_11(-)] >=dev-python/matplotlib-3.7.1[python_targets_python3_11(-)] >=dev-python/numpy-1.24.2[python_targets_python3_11(-)] >=dev-python/pydantic-1.10.7[python_targets_python3_11(-)] >=dev-python/rapidfuzz-2.15.1[python_targets_python3_11(-)] >=dev-python/rich-13.3.4[python_targets_python3_11(-)] >=dev-python/scipy-1.10.1[python_targets_python3_11(-)] >=dev-python/tomli-2.0.1[python_targets_python3_11(-)] ) +DESCRIPTION=Program to fit chemical exchange induced shift and relaxation data +EAPI=8 +HOMEPAGE=https://github.com/gbouvignies/chemex +INHERIT=distutils-r1 +IUSE=test test python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 +KEYWORDS=~amd64 +LICENSE=BSD +RDEPEND=python_single_target_python3_9? ( >=dev-python/asteval-0.9.25[python_targets_python3_9(-)] >=dev-python/cachetools-5.3.0[python_targets_python3_9(-)] >=dev-python/lmfit-1.2.0[python_targets_python3_9(-)] >=dev-python/matplotlib-3.7.1[python_targets_python3_9(-)] >=dev-python/numpy-1.24.2[python_targets_python3_9(-)] >=dev-python/pydantic-1.10.7[python_targets_python3_9(-)] >=dev-python/rapidfuzz-2.15.1[python_targets_python3_9(-)] >=dev-python/rich-13.3.4[python_targets_python3_9(-)] >=dev-python/scipy-1.10.1[python_targets_python3_9(-)] >=dev-python/tomli-2.0.1[python_targets_python3_9(-)] ) python_single_target_python3_10? ( >=dev-python/asteval-0.9.25[python_targets_python3_10(-)] >=dev-python/cachetools-5.3.0[python_targets_python3_10(-)] >=dev-python/lmfit-1.2.0[python_targets_python3_10(-)] >=dev-python/matplotlib-3.7.1[python_targets_python3_10(-)] >=dev-python/numpy-1.24.2[python_targets_python3_10(-)] >=dev-python/pydantic-1.10.7[python_targets_python3_10(-)] >=dev-python/rapidfuzz-2.15.1[python_targets_python3_10(-)] >=dev-python/rich-13.3.4[python_targets_python3_10(-)] >=dev-python/scipy-1.10.1[python_targets_python3_10(-)] >=dev-python/tomli-2.0.1[python_targets_python3_10(-)] ) python_single_target_python3_11? ( >=dev-python/asteval-0.9.25[python_targets_python3_11(-)] >=dev-python/cachetools-5.3.0[python_targets_python3_11(-)] >=dev-python/lmfit-1.2.0[python_targets_python3_11(-)] >=dev-python/matplotlib-3.7.1[python_targets_python3_11(-)] >=dev-python/numpy-1.24.2[python_targets_python3_11(-)] >=dev-python/pydantic-1.10.7[python_targets_python3_11(-)] >=dev-python/rapidfuzz-2.15.1[python_targets_python3_11(-)] >=dev-python/rich-13.3.4[python_targets_python3_11(-)] >=dev-python/scipy-1.10.1[python_targets_python3_11(-)] >=dev-python/tomli-2.0.1[python_targets_python3_11(-)] ) python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) +REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) +RESTRICT=test !test? ( test ) +SLOT=0 +SRC_URI=https://github.com/gbouvignies/ChemEx/archive/refs/tags/v2022.3.1.tar.gz -> chemex-2022.3.1.tar.gz +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=359f5bdf7ba30097e0c1c63c09ad8740 diff --git a/metadata/md5-cache/sci-chemistry/chemical-mime-data-0.1.95_pre20171122 b/metadata/md5-cache/sci-chemistry/chemical-mime-data-0.1.95_pre20171122 index f3f03310ee03..4fad3ef80d8d 100644 --- a/metadata/md5-cache/sci-chemistry/chemical-mime-data-0.1.95_pre20171122 +++ b/metadata/md5-cache/sci-chemistry/chemical-mime-data-0.1.95_pre20171122 @@ -6,10 +6,10 @@ EAPI=8 HOMEPAGE=https://github.com/dleidert/chemical-mime IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info INHERIT=autotools xdg -KEYWORDS=~amd64 ~arm ~arm64 ~x86 +KEYWORDS=amd64 arm arm64 x86 LICENSE=LGPL-2.1 RDEPEND=x11-misc/shared-mime-info SLOT=0 SRC_URI=https://github.com/dleidert/chemical-mime/archive/4fd66e3b3b7d922555d1e25587908b036805c45b.tar.gz -> chemical-mime-data-0.1.95_pre20171122.tar.gz _eclasses_=autotools f0d3196128225dee3220e65f3371bc7a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=539a6cc98bda1a8dd57da941a90d6ff7 +_md5_=9ce375c7d4ec0b92d83b9e566a5c9505 diff --git a/metadata/md5-cache/sci-libs/Manifest.gz b/metadata/md5-cache/sci-libs/Manifest.gz index 0836b5ee7ee9..b04c43582b6c 100644 Binary files a/metadata/md5-cache/sci-libs/Manifest.gz and b/metadata/md5-cache/sci-libs/Manifest.gz differ diff --git a/metadata/md5-cache/sci-libs/hdf5-1.14.0 b/metadata/md5-cache/sci-libs/hdf5-1.14.0 new file mode 100644 index 000000000000..fdcae0a9f4f3 --- /dev/null +++ b/metadata/md5-cache/sci-libs/hdf5-1.14.0 @@ -0,0 +1,17 @@ +BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 fortran? ( virtual/fortran ) +DEFINED_PHASES=configure install prepare setup +DEPEND=mpi? ( virtual/mpi[romio] ) szip? ( virtual/szip ) zlib? ( sys-libs/zlib:0= ) fortran? ( virtual/fortran ) +DESCRIPTION=General purpose library and file format for storing scientific data +EAPI=8 +HOMEPAGE=https://www.hdfgroup.org/HDF5/ +INHERIT=autotools fortran-2 flag-o-matic toolchain-funcs prefix +IUSE=cxx debug examples fortran +hl mpi szip test threads unsupported zlib +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux +LICENSE=NCSA-HDF +RDEPEND=mpi? ( virtual/mpi[romio] ) szip? ( virtual/szip ) zlib? ( sys-libs/zlib:0= ) fortran? ( virtual/fortran ) +REQUIRED_USE=!unsupported? ( cxx? ( !mpi ) mpi? ( !cxx ) threads? ( !cxx !mpi !fortran !hl ) ) +RESTRICT=!test? ( test ) +SLOT=0/1.14.0 +SRC_URI=https://www.hdfgroup.org/ftp/HDF5/releases/hdf5-1.14/hdf5-1.14.0/src/hdf5-1.14.0.tar.bz2 +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a fortran-2 40c4450f1c4ecb2ee694d96e1958d4ea gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 prefix eab3c99d77fe00506c109c8a736186f7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=ea9d89286916a5f7cc3341c04d9f4b85 diff --git a/metadata/md5-cache/sci-mathematics/4ti2-1.6.7-r1 b/metadata/md5-cache/sci-mathematics/4ti2-1.6.7-r1 index 31f91d5af586..d8766cccd702 100644 --- a/metadata/md5-cache/sci-mathematics/4ti2-1.6.7-r1 +++ b/metadata/md5-cache/sci-mathematics/4ti2-1.6.7-r1 @@ -11,4 +11,4 @@ RDEPEND=sci-mathematics/glpk:=[gmp] dev-libs/gmp:0=[cxx(+)] SLOT=0 SRC_URI=http://4ti2.de/version_1.6.7/4ti2-1.6.7.tar.gz _eclasses_=autotools f0d3196128225dee3220e65f3371bc7a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=56b3088e91e890b85e9c9882b4212c51 +_md5_=df00a64ac5488c2ed292d62e020df1e0 diff --git a/metadata/md5-cache/sci-mathematics/Manifest.gz b/metadata/md5-cache/sci-mathematics/Manifest.gz index cc641375c512..aa2f5315d462 100644 Binary files a/metadata/md5-cache/sci-mathematics/Manifest.gz and b/metadata/md5-cache/sci-mathematics/Manifest.gz differ diff --git a/metadata/md5-cache/sci-mathematics/acl2-8.5 b/metadata/md5-cache/sci-mathematics/acl2-8.5 index cdd334fc2721..42d719cf3636 100644 --- a/metadata/md5-cache/sci-mathematics/acl2-8.5 +++ b/metadata/md5-cache/sci-mathematics/acl2-8.5 @@ -11,5 +11,5 @@ RDEPEND=dev-lisp/sbcl emacs? ( >=app-editors/emacs-25:* ) REQUIRED_USE=emacs? ( doc ) SLOT=0 SRC_URI=https://github.com/acl2/acl2/archive/8.5/acl2-8.5.tar.gz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=37c262df6c43768a59bd2aae74b28a1a diff --git a/metadata/md5-cache/sci-mathematics/alectryon-1.4.0-r1 b/metadata/md5-cache/sci-mathematics/alectryon-1.4.0-r1 index a639c19ba1e5..b90ee7b3a315 100644 --- a/metadata/md5-cache/sci-mathematics/alectryon-1.4.0-r1 +++ b/metadata/md5-cache/sci-mathematics/alectryon-1.4.0-r1 @@ -12,5 +12,5 @@ RDEPEND=dev-python/beautifulsoup4[python_targets_python3_9(-)?,python_targets_py REQUIRED_USE=|| ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) SLOT=0 SRC_URI=https://github.com/cpitclaudel/alectryon/archive/v1.4.0.tar.gz -> alectryon-1.4.0.tar.gz -_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp-common 1d6e8d43be4713f04a441f721d890d48 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=distutils-r1 05bcfd9823be251f6e9f211ca285094e elisp-common dcd21c5d379fc2217e95f529504c5fe0 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=2719a82a6b6dab21e7ac6f0b4bb05675 diff --git a/metadata/md5-cache/sci-mathematics/coq-serapi-0.16.1 b/metadata/md5-cache/sci-mathematics/coq-serapi-0.16.1 index d3b1df84ca06..68ee05e5bb4d 100644 --- a/metadata/md5-cache/sci-mathematics/coq-serapi-0.16.1 +++ b/metadata/md5-cache/sci-mathematics/coq-serapi-0.16.1 @@ -12,5 +12,5 @@ RDEPEND=>=sci-mathematics/coq-8.16.0:= =dev-ml/ppx_ RESTRICT=!test? ( test ) SLOT=0/0.16.1 SRC_URI=https://github.com/ejgallego/coq-serapi/archive/8.16.0+0.16.1.tar.gz -> coq-serapi-0.16.1.tar.gz -_eclasses_=dune beddc7cde467b2e48afc78a87d042c01 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 elisp-common 1d6e8d43be4713f04a441f721d890d48 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 +_eclasses_=dune beddc7cde467b2e48afc78a87d042c01 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 elisp-common dcd21c5d379fc2217e95f529504c5fe0 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 _md5_=868e7b3972f5c5e8dd8e659c1f2593e3 diff --git a/metadata/md5-cache/sci-mathematics/coq-serapi-0.16.2-r1 b/metadata/md5-cache/sci-mathematics/coq-serapi-0.16.2-r1 index 46269a303b13..129e164a9287 100644 --- a/metadata/md5-cache/sci-mathematics/coq-serapi-0.16.2-r1 +++ b/metadata/md5-cache/sci-mathematics/coq-serapi-0.16.2-r1 @@ -12,5 +12,5 @@ RDEPEND=>=sci-mathematics/coq-8.16.0:= =dev-ml/ppx_ RESTRICT=!test? ( test ) SLOT=0/0.16.2 SRC_URI=https://github.com/ejgallego/coq-serapi/archive/8.16.0+0.16.2.tar.gz -> coq-serapi-0.16.2.tar.gz -_eclasses_=dune beddc7cde467b2e48afc78a87d042c01 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 elisp-common 1d6e8d43be4713f04a441f721d890d48 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 +_eclasses_=dune beddc7cde467b2e48afc78a87d042c01 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 elisp-common dcd21c5d379fc2217e95f529504c5fe0 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 _md5_=192ec700b3e6be5b5f885884dfa21f59 diff --git a/metadata/md5-cache/sci-mathematics/coq-serapi-0.16.3 b/metadata/md5-cache/sci-mathematics/coq-serapi-0.16.3 index ab6ec1edaa6b..6234955bfeb8 100644 --- a/metadata/md5-cache/sci-mathematics/coq-serapi-0.16.3 +++ b/metadata/md5-cache/sci-mathematics/coq-serapi-0.16.3 @@ -12,5 +12,5 @@ RDEPEND=>=sci-mathematics/coq-8.16.0:= =dev-ml/pp RESTRICT=!test? ( test ) SLOT=0/0.16.3 SRC_URI=https://github.com/ejgallego/coq-serapi/archive/8.16.0+0.16.3.tar.gz -> coq-serapi-0.16.3.tar.gz -_eclasses_=dune beddc7cde467b2e48afc78a87d042c01 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 elisp-common 1d6e8d43be4713f04a441f721d890d48 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 +_eclasses_=dune beddc7cde467b2e48afc78a87d042c01 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 elisp-common dcd21c5d379fc2217e95f529504c5fe0 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 _md5_=e77e0b3330ffe3ef2ab69e3e61580fa2 diff --git a/metadata/md5-cache/sci-mathematics/coq-serapi-0.17.0 b/metadata/md5-cache/sci-mathematics/coq-serapi-0.17.0 index 7c00cd207c7c..49644f55eb14 100644 --- a/metadata/md5-cache/sci-mathematics/coq-serapi-0.17.0 +++ b/metadata/md5-cache/sci-mathematics/coq-serapi-0.17.0 @@ -12,5 +12,5 @@ RDEPEND=>=sci-mathematics/coq-8.17.0:= =dev-ml/pp RESTRICT=!test? ( test ) SLOT=0/0.17.0 SRC_URI=https://github.com/ejgallego/coq-serapi/archive/8.17.0+0.17.0.tar.gz -> coq-serapi-0.17.0.tar.gz -_eclasses_=dune beddc7cde467b2e48afc78a87d042c01 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 elisp-common 1d6e8d43be4713f04a441f721d890d48 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 +_eclasses_=dune beddc7cde467b2e48afc78a87d042c01 edo c0eb9cbe6b0bd01fcb4918f12598a4d3 elisp-common dcd21c5d379fc2217e95f529504c5fe0 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 _md5_=23e75861df0e6ab4488206048389f9c9 diff --git a/metadata/md5-cache/sci-mathematics/cubicle-1.2.0-r2 b/metadata/md5-cache/sci-mathematics/cubicle-1.2.0-r2 index bd39398951dc..1e606e1e4fdd 100644 --- a/metadata/md5-cache/sci-mathematics/cubicle-1.2.0-r2 +++ b/metadata/md5-cache/sci-mathematics/cubicle-1.2.0-r2 @@ -11,5 +11,5 @@ LICENSE=Apache-2.0 RDEPEND=>=dev-lang/ocaml-4.09.0:=[ocamlopt] dev-ml/num:= emacs? ( >=app-editors/emacs-23.1:* ) SLOT=0/1.2.0 SRC_URI=https://github.com/cubicle-model-checker/cubicle/archive/1.2.0.tar.gz -> cubicle-1.2.0.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=2b7622b8a6c6806f840896a8f6e6d82b diff --git a/metadata/md5-cache/sci-mathematics/form-4.3.0-r1 b/metadata/md5-cache/sci-mathematics/form-4.3.0-r1 index 0d6d6cbe8737..f14048bfd823 100644 --- a/metadata/md5-cache/sci-mathematics/form-4.3.0-r1 +++ b/metadata/md5-cache/sci-mathematics/form-4.3.0-r1 @@ -11,5 +11,5 @@ LICENSE=GPL-3 RDEPEND=gmp? ( dev-libs/gmp:0= ) mpi? ( virtual/mpi ) zlib? ( sys-libs/zlib ) SLOT=0 SRC_URI=https://github.com/vermaseren/form/releases/download/v4.3.0/form-4.3.0.tar.gz emacs? ( https://dev.gentoo.org/~grozin/form-mode.el.gz ) -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=f67932276ba5c823975cb80e68bdfcdd diff --git a/metadata/md5-cache/sci-mathematics/fricas-1.3.8-r1 b/metadata/md5-cache/sci-mathematics/fricas-1.3.8-r1 index d3a42a779923..7d53bfaec86a 100644 --- a/metadata/md5-cache/sci-mathematics/fricas-1.3.8-r1 +++ b/metadata/md5-cache/sci-mathematics/fricas-1.3.8-r1 @@ -11,5 +11,5 @@ RDEPEND=X? ( x11-libs/libXpm x11-libs/libICE ) emacs? ( >=app-editors/emacs-23.1 RESTRICT=strip SLOT=0 SRC_URI=mirror://sourceforge/fricas/fricas-1.3.8-full.tar.bz2 -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=efc689a0b694274078d3ceb749068adb diff --git a/metadata/md5-cache/sci-mathematics/geomview-1.9.5-r1 b/metadata/md5-cache/sci-mathematics/geomview-1.9.5-r1 index 1a7e64ab7611..9e3b616a0b43 100644 --- a/metadata/md5-cache/sci-mathematics/geomview-1.9.5-r1 +++ b/metadata/md5-cache/sci-mathematics/geomview-1.9.5-r1 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 RDEPEND=virtual/glu virtual/opengl x11-libs/motif:0 emacs? ( >=app-editors/emacs-23.1:* ) zlib? ( sys-libs/zlib ) x11-misc/xdg-utils SLOT=0 SRC_URI=mirror://sourceforge/geomview/geomview-1.9.5.tar.bz2 https://dev.gentoo.org/~jlec/distfiles/geomview.png.tar -_eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 1d6e8d43be4713f04a441f721d890d48 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common dcd21c5d379fc2217e95f529504c5fe0 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=1832af9bce2969c9d5ec5ff33060e9d3 diff --git a/metadata/md5-cache/sci-mathematics/gretl-2021d b/metadata/md5-cache/sci-mathematics/gretl-2021d index d1ce09550957..20d1c800c3cf 100644 --- a/metadata/md5-cache/sci-mathematics/gretl-2021d +++ b/metadata/md5-cache/sci-mathematics/gretl-2021d @@ -12,5 +12,5 @@ RDEPEND=dev-libs/glib:2= >=dev-libs/gmp-4.0.1:0= dev-libs/json-glib:0= dev-libs/ REQUIRED_USE=emacs? ( gtk ) SLOT=0/40 SRC_URI=mirror://sourceforge/project/gretl/gretl/2021d/gretl-2021d.tar.xz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=9e2447542b4c60ef587a6f9835afe54d diff --git a/metadata/md5-cache/sci-mathematics/maxima-5.46.0 b/metadata/md5-cache/sci-mathematics/maxima-5.46.0 index 56f43e4a362c..0b05cc51c3f3 100644 --- a/metadata/md5-cache/sci-mathematics/maxima-5.46.0 +++ b/metadata/md5-cache/sci-mathematics/maxima-5.46.0 @@ -13,5 +13,5 @@ REQUIRED_USE=vtk? ( ^^ ( python_single_target_python3_9 python_single_target_pyt RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/maxima/maxima-5.46.0.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 1d6e8d43be4713f04a441f721d890d48 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common dcd21c5d379fc2217e95f529504c5fe0 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=bf464369318c933c7c4e12af2c8b4551 diff --git a/metadata/md5-cache/sci-mathematics/maxima-5.46.0-r1 b/metadata/md5-cache/sci-mathematics/maxima-5.46.0-r1 index d505ec1b849b..e112335997fb 100644 --- a/metadata/md5-cache/sci-mathematics/maxima-5.46.0-r1 +++ b/metadata/md5-cache/sci-mathematics/maxima-5.46.0-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=vtk? ( ^^ ( python_single_target_python3_9 python_single_target_pyt RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/maxima/maxima-5.46.0.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=01f2246376b0276971d939eaf4fb53de diff --git a/metadata/md5-cache/sci-mathematics/singular-4.3.1_p1 b/metadata/md5-cache/sci-mathematics/singular-4.3.1_p1 index 7cd563b12891..a4894837511f 100644 --- a/metadata/md5-cache/sci-mathematics/singular-4.3.1_p1 +++ b/metadata/md5-cache/sci-mathematics/singular-4.3.1_p1 @@ -10,5 +10,5 @@ LICENSE=BSD GPL-2 GPL-3 RDEPEND=dev-lang/perl dev-libs/gmp:0 dev-libs/ntl:= sci-libs/cddlib sci-mathematics/flint emacs? ( >=app-editors/emacs-23.1:* ) polymake? ( sci-mathematics/polymake ) readline? ( sys-libs/readline ) SLOT=0 SRC_URI=ftp://jim.mathematik.uni-kl.de/pub/Math/Singular/SOURCES/4-3-1/singular-4.3.1p1.tar.gz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=de19fbfff28ed21e9a73ec5d6a988a0b diff --git a/metadata/md5-cache/sci-mathematics/singular-4.3.1_p3 b/metadata/md5-cache/sci-mathematics/singular-4.3.1_p3 index 82b8ae0ec01c..6c1fe07ebb04 100644 --- a/metadata/md5-cache/sci-mathematics/singular-4.3.1_p3 +++ b/metadata/md5-cache/sci-mathematics/singular-4.3.1_p3 @@ -10,5 +10,5 @@ LICENSE=BSD GPL-2 GPL-3 RDEPEND=dev-lang/perl dev-libs/gmp:0 dev-libs/ntl:= sci-libs/cddlib sci-mathematics/flint emacs? ( >=app-editors/emacs-23.1:* ) polymake? ( sci-mathematics/polymake ) readline? ( sys-libs/readline ) SLOT=0 SRC_URI=https://www.singular.uni-kl.de/ftp/pub/Math/Singular/SOURCES/4-3-1/singular-4.3.1p3.tar.gz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=482c3be3568a289378390a7b7692aa3b diff --git a/metadata/md5-cache/sci-mathematics/twelf-1.7.1-r2 b/metadata/md5-cache/sci-mathematics/twelf-1.7.1-r2 index 2841233aca55..8c7cf7b6ac6d 100644 --- a/metadata/md5-cache/sci-mathematics/twelf-1.7.1-r2 +++ b/metadata/md5-cache/sci-mathematics/twelf-1.7.1-r2 @@ -11,5 +11,5 @@ RDEPEND=>=dev-lang/mlton-20180207 doc? ( virtual/latex-base app-text/texi2html ) RESTRICT=test SLOT=0/1.7.1 SRC_URI=http://twelf.plparty.org/releases/twelf-src-1.7.1.tar.gz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 _md5_=71800e353bd7603fad6982201a69f30a diff --git a/metadata/md5-cache/sci-physics/Manifest.gz b/metadata/md5-cache/sci-physics/Manifest.gz index 00facd826b34..7c85a7aa893a 100644 Binary files a/metadata/md5-cache/sci-physics/Manifest.gz and b/metadata/md5-cache/sci-physics/Manifest.gz differ diff --git a/metadata/md5-cache/sci-physics/root-6.26.08 b/metadata/md5-cache/sci-physics/root-6.26.08 index 5eb981486710..35a471220670 100644 --- a/metadata/md5-cache/sci-physics/root-6.26.08 +++ b/metadata/md5-cache/sci-physics/root-6.26.08 @@ -14,5 +14,5 @@ REQUIRED_USE=^^ ( c++14 c++17 ) cuda? ( tmva ) cudnn? ( cuda ) !X? ( !asimage !o RESTRICT=test SLOT=6.26/08 SRC_URI=https://root.cern/download/root_v6.26.08.source.tar.gz -_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c cuda 13d76baf0dc95e560610c6b7dfa79db4 elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a fortran-2 40c4450f1c4ecb2ee694d96e1958d4ea multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c cuda 13d76baf0dc95e560610c6b7dfa79db4 elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a fortran-2 40c4450f1c4ecb2ee694d96e1958d4ea multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=9e661f402c99843b60d67b184b19067f diff --git a/metadata/md5-cache/sci-physics/root-6.26.9999 b/metadata/md5-cache/sci-physics/root-6.26.9999 index 5b5ab4459347..082f5a55d74c 100644 --- a/metadata/md5-cache/sci-physics/root-6.26.9999 +++ b/metadata/md5-cache/sci-physics/root-6.26.9999 @@ -12,5 +12,5 @@ RDEPEND=app-arch/lz4 app-arch/zstd app-arch/xz-utils fortran? ( dev-lang/cfortra REQUIRED_USE=^^ ( c++14 c++17 ) cuda? ( tmva ) cudnn? ( cuda ) !X? ( !asimage !opengl !qt5 ) davix? ( ssl xml ) python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 ) ) qt5? ( root7 ) root7? ( || ( c++17 ) ) tmva? ( gsl python ) uring? ( root7 ) RESTRICT=test SLOT=6.26/9999 -_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c cuda 13d76baf0dc95e560610c6b7dfa79db4 elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a fortran-2 40c4450f1c4ecb2ee694d96e1958d4ea git-r3 27e13c09a4c7e4c78ac812f74727e676 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c cuda 13d76baf0dc95e560610c6b7dfa79db4 elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a fortran-2 40c4450f1c4ecb2ee694d96e1958d4ea git-r3 27e13c09a4c7e4c78ac812f74727e676 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=9e661f402c99843b60d67b184b19067f diff --git a/metadata/md5-cache/sci-physics/thepeg-2.2.2-r1 b/metadata/md5-cache/sci-physics/thepeg-2.2.2-r1 index 2e3356934e12..3023474bbc5c 100644 --- a/metadata/md5-cache/sci-physics/thepeg-2.2.2-r1 +++ b/metadata/md5-cache/sci-physics/thepeg-2.2.2-r1 @@ -12,5 +12,5 @@ RDEPEND=sci-libs/gsl:0= emacs? ( >=app-editors/emacs-23.1:* ) fastjet? ( sci-phy RESTRICT=!test? ( test ) SLOT=0/20 SRC_URI=https://www.hepforge.org/archive/thepeg/ThePEG-2.2.2.tar.bz2 test? ( hepmc? ( https://www.hepforge.org/archive/lhapdf/pdfsets/current/cteq6ll.LHpdf https://www.hepforge.org/archive/lhapdf/pdfsets/current/cteq5l.LHgrid https://www.hepforge.org/archive/lhapdf/pdfsets/current/GRV98nlo.LHgrid https://www.hepforge.org/archive/lhapdf/pdfsets/current/MRST2001nlo.LHgrid ) ) -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=dde15c1cca8789141ea5def1a8cc23eb diff --git a/metadata/md5-cache/sci-physics/thepeg-2.2.3 b/metadata/md5-cache/sci-physics/thepeg-2.2.3 index 5f06a00a9493..9c2d36b2c821 100644 --- a/metadata/md5-cache/sci-physics/thepeg-2.2.3 +++ b/metadata/md5-cache/sci-physics/thepeg-2.2.3 @@ -12,5 +12,5 @@ RDEPEND=sci-libs/gsl:0= emacs? ( >=app-editors/emacs-23.1:* ) fastjet? ( sci-phy RESTRICT=!test? ( test ) SLOT=0/30 SRC_URI=https://www.hepforge.org/archive/thepeg/ThePEG-2.2.3.tar.bz2 test? ( hepmc? ( https://www.hepforge.org/archive/lhapdf/pdfsets/current/cteq6ll.LHpdf https://www.hepforge.org/archive/lhapdf/pdfsets/current/cteq5l.LHgrid https://www.hepforge.org/archive/lhapdf/pdfsets/current/GRV98nlo.LHgrid https://www.hepforge.org/archive/lhapdf/pdfsets/current/MRST2001nlo.LHgrid ) ) -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 java-pkg-opt-2 4d26f2efd4c5ec82b66d1e8816f421b2 java-utils-2 8c72ea36a4935f626b13a30141d0d39c libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=af4a383a085d345c42b73a6be44d190a diff --git a/metadata/md5-cache/sci-visualization/Manifest.gz b/metadata/md5-cache/sci-visualization/Manifest.gz index 85b0ba7148c5..8c44bb692d09 100644 Binary files a/metadata/md5-cache/sci-visualization/Manifest.gz and b/metadata/md5-cache/sci-visualization/Manifest.gz differ diff --git a/metadata/md5-cache/sci-visualization/epix-1.2.19 b/metadata/md5-cache/sci-visualization/epix-1.2.19 index 7e80496c59f1..48b6fe1035e0 100644 --- a/metadata/md5-cache/sci-visualization/epix-1.2.19 +++ b/metadata/md5-cache/sci-visualization/epix-1.2.19 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=virtual/latex-base dev-texlive/texlive-pstricks dev-texlive/texlive-pictures dev-texlive/texlive-latexextra dev-texlive/texlive-latexrecommended emacs? ( >=app-editors/emacs-23.1:* ) SLOT=0 SRC_URI=https://mathcs.holycross.edu/~ahwang/epix/epix-1.2.19_withpdf.tar.bz2 -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=8480bbdb077f2795290ba57c3ecd8c7e diff --git a/metadata/md5-cache/sci-visualization/gle-4.2.5-r4 b/metadata/md5-cache/sci-visualization/gle-4.2.5-r4 index 49477c9e5fb8..b667365e23f4 100644 --- a/metadata/md5-cache/sci-visualization/gle-4.2.5-r4 +++ b/metadata/md5-cache/sci-visualization/gle-4.2.5-r4 @@ -11,5 +11,5 @@ LICENSE=BSD-2 emacs? ( GPL-2 ) RDEPEND=sys-libs/ncurses:= emacs? ( >=app-editors/emacs-23.1:* ) jpeg? ( media-libs/libjpeg-turbo:= ) png? ( media-libs/libpng:= ) tiff? ( media-libs/tiff:= ) X? ( x11-libs/libX11 ) app-text/ghostscript-gpl virtual/latex-base vim-syntax? ( || ( app-editors/vim app-editors/gvim ) ) SLOT=0 SRC_URI=mirror://sourceforge/glx/gle-graphics-4.2.5f-src.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 1d6e8d43be4713f04a441f721d890d48 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common dcd21c5d379fc2217e95f529504c5fe0 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=654da22a1a7802e0a5412b6c62ce6b80 diff --git a/metadata/md5-cache/sci-visualization/gle-4.3.3-r3 b/metadata/md5-cache/sci-visualization/gle-4.3.3-r3 index 736ecf318a7c..79642a0e25a5 100644 --- a/metadata/md5-cache/sci-visualization/gle-4.3.3-r3 +++ b/metadata/md5-cache/sci-visualization/gle-4.3.3-r3 @@ -11,5 +11,5 @@ LICENSE=BSD GPL-2+ RDEPEND=app-text/ghostscript-gpl dev-libs/boost dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtwidgets:5 media-libs/freeglut media-libs/glu media-libs/libpng media-libs/tiff sys-libs/zlib media-libs/libjpeg-turbo x11-libs/cairo x11-libs/pixman emacs? ( app-editors/emacs:* ) virtual/latex-base SLOT=0 SRC_URI=https://github.com/vlabella/GLE/archive/refs/tags/4.3.3.tar.gz -> gle-4.3.3.tar.gz https://github.com/vlabella/gle-library/archive/d476418f006b001dc7f47dcafb413c0557fa44a7.tar.gz -> gle-library.tar.gz https://dev.gentoo.org/~grozin/gle-c++17.patch.gz doc? ( https://dev.gentoo.org/~grozin/gle-manual.pdf.gz ) emacs? ( https://dev.gentoo.org/~grozin/gle-mode.el.gz ) -_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 1d6e8d43be4713f04a441f721d890d48 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common dcd21c5d379fc2217e95f529504c5fe0 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=b7647ca0080039744d68c1aa0011267a diff --git a/metadata/md5-cache/sys-apps/Manifest.gz b/metadata/md5-cache/sys-apps/Manifest.gz index 2d5f3a3ca7d1..aa335f618ac7 100644 Binary files a/metadata/md5-cache/sys-apps/Manifest.gz and b/metadata/md5-cache/sys-apps/Manifest.gz differ diff --git a/metadata/md5-cache/sys-apps/earlyoom-1.7 b/metadata/md5-cache/sys-apps/earlyoom-1.7 index 9cd80092ecb5..8efd1b8b31c6 100644 --- a/metadata/md5-cache/sys-apps/earlyoom-1.7 +++ b/metadata/md5-cache/sys-apps/earlyoom-1.7 @@ -10,5 +10,5 @@ LICENSE=MIT-with-advertising RESTRICT=!test? ( test ) strip SLOT=0 SRC_URI=https://github.com/rfjakob/earlyoom/archive/v1.7.tar.gz -> earlyoom-1.7.tar.gz test? ( https://dev.gentoo.org/~sam/distfiles/sys-apps/earlyoom/earlyoom-1.7-deps.tar.xz ) -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=5f8dcfcaffef40d4cc368783a4eff8da diff --git a/metadata/md5-cache/sys-apps/earlyoom-9999 b/metadata/md5-cache/sys-apps/earlyoom-9999 index da2bbb08d6b2..ae035f2890ee 100644 --- a/metadata/md5-cache/sys-apps/earlyoom-9999 +++ b/metadata/md5-cache/sys-apps/earlyoom-9999 @@ -9,5 +9,5 @@ LICENSE=MIT-with-advertising PROPERTIES=live RESTRICT=!test? ( test ) strip SLOT=0 -_eclasses_=git-r3 27e13c09a4c7e4c78ac812f74727e676 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=git-r3 27e13c09a4c7e4c78ac812f74727e676 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=5f8dcfcaffef40d4cc368783a4eff8da diff --git a/metadata/md5-cache/sys-apps/goawk-1.21.0 b/metadata/md5-cache/sys-apps/goawk-1.21.0 index 4ba8d354a268..20ad067948e4 100644 --- a/metadata/md5-cache/sys-apps/goawk-1.21.0 +++ b/metadata/md5-cache/sys-apps/goawk-1.21.0 @@ -9,5 +9,5 @@ LICENSE=MIT RESTRICT=strip SLOT=0 SRC_URI=https://github.com/benhoyt/goawk/archive/v1.21.0.tar.gz -> goawk-1.21.0.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=66a5dd3b7fe102e94e5f9aaf545443a0 diff --git a/metadata/md5-cache/sys-apps/goawk-1.22.0 b/metadata/md5-cache/sys-apps/goawk-1.22.0 index 5b3166baadf9..da312790d90a 100644 --- a/metadata/md5-cache/sys-apps/goawk-1.22.0 +++ b/metadata/md5-cache/sys-apps/goawk-1.22.0 @@ -9,5 +9,5 @@ LICENSE=MIT RESTRICT=strip SLOT=0 SRC_URI=https://github.com/benhoyt/goawk/archive/v1.22.0.tar.gz -> goawk-1.22.0.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=1e711223af2fda06f7affd361a142af4 diff --git a/metadata/md5-cache/sys-apps/moar-1.12.0 b/metadata/md5-cache/sys-apps/moar-1.12.0 index 0bd6e98925c9..ece0eed63aa5 100644 --- a/metadata/md5-cache/sys-apps/moar-1.12.0 +++ b/metadata/md5-cache/sys-apps/moar-1.12.0 @@ -10,5 +10,5 @@ RDEPEND=!dev-lang/moarvm RESTRICT=strip SLOT=0 SRC_URI=https://github.com/walles/moar/archive/refs/tags/v1.12.0.tar.gz -> moar-1.12.0.tar.gz https://dev.gentoo.org/~sam/distfiles/sys-apps/moar/moar-1.12.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=c10fc1c90c4e26f38f30f26d4cb1751c diff --git a/metadata/md5-cache/sys-apps/moar-1.13.0 b/metadata/md5-cache/sys-apps/moar-1.13.0 index 4d1d89b05df7..96280837bbf5 100644 --- a/metadata/md5-cache/sys-apps/moar-1.13.0 +++ b/metadata/md5-cache/sys-apps/moar-1.13.0 @@ -10,5 +10,5 @@ RDEPEND=!dev-lang/moarvm RESTRICT=strip SLOT=0 SRC_URI=https://github.com/walles/moar/archive/refs/tags/v1.13.0.tar.gz -> moar-1.13.0.tar.gz https://dev.gentoo.org/~sam/distfiles/sys-apps/moar/moar-1.13.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=c10fc1c90c4e26f38f30f26d4cb1751c diff --git a/metadata/md5-cache/sys-apps/openrc-0.47 b/metadata/md5-cache/sys-apps/openrc-0.47 new file mode 100644 index 000000000000..b3ed68660f6e --- /dev/null +++ b/metadata/md5-cache/sys-apps/openrc-0.47 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install postinst preinst test +DEPEND=ncurses? ( sys-libs/ncurses:0= ) pam? ( sys-libs/pam ) audit? ( sys-process/audit ) sys-process/psmisc selinux? ( sys-apps/policycoreutils >=sys-libs/libselinux-2.6 ) virtual/os-headers ncurses? ( virtual/pkgconfig ) +DESCRIPTION=OpenRC manages the services, startup and shutdown of a host +EAPI=8 +HOMEPAGE=https://github.com/openrc/openrc/ +INHERIT=meson pam +IUSE=audit bash debug ncurses pam newnet +netifrc selinux sysv-utils unicode +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=BSD-2 +PDEPEND=netifrc? ( net-misc/netifrc ) +RDEPEND=ncurses? ( sys-libs/ncurses:0= ) pam? ( sys-libs/pam ) audit? ( sys-process/audit ) sys-process/psmisc selinux? ( sys-apps/policycoreutils >=sys-libs/libselinux-2.6 ) bash? ( app-shells/bash ) !prefix? ( sysv-utils? ( !sys-apps/systemd[sysv-utils(-)] !sys-apps/sysvinit ) !sysv-utils? ( || ( >=sys-apps/sysvinit-2.86-r6[selinux?] sys-apps/s6-linux-init[sysv-utils(-)] ) ) virtual/tmpfiles ) selinux? ( >=sec-policy/selinux-base-policy-2.20170204-r4 >=sec-policy/selinux-openrc-2.20170204-r4 ) +SLOT=0 +SRC_URI=https://github.com/OpenRC/openrc/archive/0.47.tar.gz -> openrc-0.47.tar.gz +_eclasses_=flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a meson 915ec7c25e08d7886558215e6809ca1e multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 pam 4efe951aa8ce2c16288d7c915196fe29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=846a10fdfe3212e767cc57cba89eb139 diff --git a/metadata/md5-cache/sys-apps/qingy-1.0.0-r6 b/metadata/md5-cache/sys-apps/qingy-1.0.0-r6 index 2e5e83ca5887..4b7026e70ff5 100644 --- a/metadata/md5-cache/sys-apps/qingy-1.0.0-r6 +++ b/metadata/md5-cache/sys-apps/qingy-1.0.0-r6 @@ -11,5 +11,5 @@ LICENSE=GPL-2 RDEPEND=pam? ( sys-auth/pambase ) SLOT=0 SRC_URI=mirror://sourceforge/qingy/qingy-1.0.0.tar.bz2 mirror://gentoo/qingy-gentoo-theme-2.1.tar.bz2 https://dev.gentoo.org/~gienah/2big4tree/sys-apps/qingy/qingy-1.0.0-screensavers.patch.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pam 4efe951aa8ce2c16288d7c915196fe29 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pam 4efe951aa8ce2c16288d7c915196fe29 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=1ae2a343056dead1540f8644723a5b3c diff --git a/metadata/md5-cache/sys-apps/rootlesskit-0.14.2 b/metadata/md5-cache/sys-apps/rootlesskit-0.14.2 index e673ff62aaa4..2db8e379fd68 100644 --- a/metadata/md5-cache/sys-apps/rootlesskit-0.14.2 +++ b/metadata/md5-cache/sys-apps/rootlesskit-0.14.2 @@ -11,5 +11,5 @@ RDEPEND=selinux? ( sec-policy/selinux-rootlesskit ) RESTRICT=strip SLOT=0 SRC_URI=https://github.com/rootless-containers/rootlesskit/archive/refs/tags/v0.14.2.tar.gz -> rootlesskit-0.14.2.tar.gz https://dev.gentoo.org/~zmedico/dist/rootlesskit-0.14.2-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=dd92e3806ac629070c168bd6c6d0289e diff --git a/metadata/md5-cache/sys-auth/Manifest.gz b/metadata/md5-cache/sys-auth/Manifest.gz index e10b26c0563d..39c4eec8e6c6 100644 Binary files a/metadata/md5-cache/sys-auth/Manifest.gz and b/metadata/md5-cache/sys-auth/Manifest.gz differ diff --git a/metadata/md5-cache/sys-auth/docker_auth-1.9.0 b/metadata/md5-cache/sys-auth/docker_auth-1.9.0 index 33788a4b5440..b087cc8a61d6 100644 --- a/metadata/md5-cache/sys-auth/docker_auth-1.9.0 +++ b/metadata/md5-cache/sys-auth/docker_auth-1.9.0 @@ -11,5 +11,5 @@ RDEPEND=acct-group/docker_auth acct-user/docker_auth RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/cesanta/docker_auth/archive/1.9.0.tar.gz -> docker_auth-1.9.0.tar.gz https://dev.gentoo.org/~williamh/dist/docker_auth-1.9.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=60d75075496bd640c43f2ef97ae29103 diff --git a/metadata/md5-cache/sys-auth/oath-toolkit-2.6.7-r1 b/metadata/md5-cache/sys-auth/oath-toolkit-2.6.7-r2 similarity index 67% rename from metadata/md5-cache/sys-auth/oath-toolkit-2.6.7-r1 rename to metadata/md5-cache/sys-auth/oath-toolkit-2.6.7-r2 index 2aeb736798b4..6bf0e6f1e522 100644 --- a/metadata/md5-cache/sys-auth/oath-toolkit-2.6.7-r1 +++ b/metadata/md5-cache/sys-auth/oath-toolkit-2.6.7-r2 @@ -1,17 +1,16 @@ BDEPEND=dev-util/gtk-doc-am test? ( dev-libs/libxml2 ) DEFINED_PHASES=configure install test -DEPEND=dev-libs/icu:= pam? ( sys-libs/pam ) pskc? ( dev-libs/libxml2 ceph-xsimd-17.2.5.tar.gz ) _eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=8fc1ae1b6649c83a7cc86b72fb51d9d4 +_md5_=8e59697bbee418cb6f73704bbbbcd2b7 diff --git a/metadata/md5-cache/sys-cluster/ceph-17.2.6 b/metadata/md5-cache/sys-cluster/ceph-17.2.6 index 523d47086ef1..d9fddb8d40a6 100644 --- a/metadata/md5-cache/sys-cluster/ceph-17.2.6 +++ b/metadata/md5-cache/sys-cluster/ceph-17.2.6 @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) test SLOT=0 SRC_URI=https://download.ceph.com/tarballs/ceph-17.2.6.tar.gz parquet? ( https://github.com/xtensor-stack/xsimd/archive/aeec9c872c8b475dedd7781336710f2dd2666cb2.tar.gz -> ceph-xsimd-17.2.6.tar.gz ) _eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 readme.gentoo-r1 204091a2cde6179cd9d3db26d09412d3 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e udev eec0bbab06977f1cfc5597269c1fa152 xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=1c15f2c117286732088eb306ef786771 +_md5_=dcfb1d1e237dc5a0e063ead0e9ebfb04 diff --git a/metadata/md5-cache/sys-cluster/cilium-cli-0.12.1 b/metadata/md5-cache/sys-cluster/cilium-cli-0.12.1 index 50667eacf202..ff1330ee35f8 100644 --- a/metadata/md5-cache/sys-cluster/cilium-cli-0.12.1 +++ b/metadata/md5-cache/sys-cluster/cilium-cli-0.12.1 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/cilium/cilium-cli/archive/v0.12.1.tar.gz -> cilium-cli-0.12.1.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=c759cf8fd4b1dc5d60207ee8129c7654 diff --git a/metadata/md5-cache/sys-cluster/cilium-cli-0.13.0 b/metadata/md5-cache/sys-cluster/cilium-cli-0.13.0 index 9d35780e8300..d01ef74963e2 100644 --- a/metadata/md5-cache/sys-cluster/cilium-cli-0.13.0 +++ b/metadata/md5-cache/sys-cluster/cilium-cli-0.13.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/cilium/cilium-cli/archive/v0.13.0.tar.gz -> cilium-cli-0.13.0.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=60066175a7c5c15f7652d2fd975d5ca5 diff --git a/metadata/md5-cache/sys-cluster/flux-0.41.2 b/metadata/md5-cache/sys-cluster/flux-0.41.2 index 0fc569b0ee49..81a5a30daaac 100644 --- a/metadata/md5-cache/sys-cluster/flux-0.41.2 +++ b/metadata/md5-cache/sys-cluster/flux-0.41.2 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 BSD BSD-2 ISC MIT MPL-2.0 RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/fluxcd/flux2/archive/v0.41.2.tar.gz -> flux-0.41.2.tar.gz https://dev.gentoo.org/~concord/distfiles/flux2-0.41.2-deps.tar.xz https://dev.gentoo.org/~concord/distfiles/flux2-0.41.2-manifests.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=af7df9dbabc5601c55887e388109497f diff --git a/metadata/md5-cache/sys-cluster/glusterfs-10.1-r1 b/metadata/md5-cache/sys-cluster/glusterfs-10.1-r1 index c031be4e484f..a02de868df86 100644 --- a/metadata/md5-cache/sys-cluster/glusterfs-10.1-r1 +++ b/metadata/md5-cache/sys-cluster/glusterfs-10.1-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=georeplication? ( ^^ ( python_single_target_python3_9 python_single RESTRICT=test SLOT=0/10 SRC_URI=https://download.gluster.org/pub/gluster/glusterfs/10/10.1/glusterfs-10.1.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a eapi8-dosym 741bfa77afb2a9321261501aca58c208 elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a eapi8-dosym 741bfa77afb2a9321261501aca58c208 elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=9e51c281296f730238189ea60b89d9ac diff --git a/metadata/md5-cache/sys-cluster/glusterfs-10.2-r1 b/metadata/md5-cache/sys-cluster/glusterfs-10.2-r1 index f5d59ce0d6d9..8a500260b244 100644 --- a/metadata/md5-cache/sys-cluster/glusterfs-10.2-r1 +++ b/metadata/md5-cache/sys-cluster/glusterfs-10.2-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=georeplication? ( ^^ ( python_single_target_python3_9 python_single RESTRICT=test SLOT=0/10 SRC_URI=https://download.gluster.org/pub/gluster/glusterfs/10/10.2/glusterfs-10.2.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a eapi8-dosym 741bfa77afb2a9321261501aca58c208 elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a eapi8-dosym 741bfa77afb2a9321261501aca58c208 elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=f5b7a424045a3ac0b744cee44c68139f diff --git a/metadata/md5-cache/sys-cluster/glusterfs-10.2-r2 b/metadata/md5-cache/sys-cluster/glusterfs-10.2-r2 index af564fff138b..b4d07004016f 100644 --- a/metadata/md5-cache/sys-cluster/glusterfs-10.2-r2 +++ b/metadata/md5-cache/sys-cluster/glusterfs-10.2-r2 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=test SLOT=0/10 SRC_URI=https://download.gluster.org/pub/gluster/glusterfs/10/10.2/glusterfs-10.2.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a eapi8-dosym 741bfa77afb2a9321261501aca58c208 elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a eapi8-dosym 741bfa77afb2a9321261501aca58c208 elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=fa343928f5120176ae80ef3097af3870 diff --git a/metadata/md5-cache/sys-cluster/glusterfs-8.6-r1 b/metadata/md5-cache/sys-cluster/glusterfs-8.6-r1 index 4a24a1057149..e83323ff6e1d 100644 --- a/metadata/md5-cache/sys-cluster/glusterfs-8.6-r1 +++ b/metadata/md5-cache/sys-cluster/glusterfs-8.6-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=georeplication? ( ^^ ( python_single_target_python3_9 ) xml ) ipv6? RESTRICT=test SLOT=0/8 SRC_URI=https://download.gluster.org/pub/gluster/glusterfs/8/8.6/glusterfs-8.6.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a eapi8-dosym 741bfa77afb2a9321261501aca58c208 elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a eapi8-dosym 741bfa77afb2a9321261501aca58c208 elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=511d45c62780cd2297a28e83c1a56c9f diff --git a/metadata/md5-cache/sys-cluster/glusterfs-9.4-r1 b/metadata/md5-cache/sys-cluster/glusterfs-9.4-r1 index bcd8f8c85993..465ea9945f1d 100644 --- a/metadata/md5-cache/sys-cluster/glusterfs-9.4-r1 +++ b/metadata/md5-cache/sys-cluster/glusterfs-9.4-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=georeplication? ( ^^ ( python_single_target_python3_9 python_single RESTRICT=test SLOT=0/9 SRC_URI=https://download.gluster.org/pub/gluster/glusterfs/9/9.4/glusterfs-9.4.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a eapi8-dosym 741bfa77afb2a9321261501aca58c208 elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a eapi8-dosym 741bfa77afb2a9321261501aca58c208 elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=bdb4790b6ce9e594a5f72f89cebb2ac2 diff --git a/metadata/md5-cache/sys-cluster/glusterfs-9.5-r1 b/metadata/md5-cache/sys-cluster/glusterfs-9.5-r1 index 9dc84e955983..8c8ae5144b7c 100644 --- a/metadata/md5-cache/sys-cluster/glusterfs-9.5-r1 +++ b/metadata/md5-cache/sys-cluster/glusterfs-9.5-r1 @@ -13,5 +13,5 @@ REQUIRED_USE=georeplication? ( ^^ ( python_single_target_python3_9 python_single RESTRICT=test SLOT=0/9 SRC_URI=https://download.gluster.org/pub/gluster/glusterfs/9/9.5/glusterfs-9.5.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a eapi8-dosym 741bfa77afb2a9321261501aca58c208 elisp-common 1d6e8d43be4713f04a441f721d890d48 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a eapi8-dosym 741bfa77afb2a9321261501aca58c208 elisp-common dcd21c5d379fc2217e95f529504c5fe0 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=eb59c7be18f655c56176d5191f02512b diff --git a/metadata/md5-cache/sys-cluster/gmqtt-0.4.1 b/metadata/md5-cache/sys-cluster/gmqtt-0.4.1 index fd9d6c76a2d1..556434a65ede 100644 --- a/metadata/md5-cache/sys-cluster/gmqtt-0.4.1 +++ b/metadata/md5-cache/sys-cluster/gmqtt-0.4.1 @@ -9,5 +9,5 @@ LICENSE=MIT Apache-2.0 BSD BSD-2 ISC MPL-2.0 RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/DrmagicE/gmqtt/archive/v0.4.1.tar.gz -> gmqtt-0.4.1.tar.gz https://dev.gentoo.org/~zmedico/dist/gmqtt-0.4.1-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=e975b41b066864551f8e58f8f139e986 diff --git a/metadata/md5-cache/sys-cluster/hubble-0.10.0 b/metadata/md5-cache/sys-cluster/hubble-0.10.0 index 22c9f293a8ac..fa30e475d5ac 100644 --- a/metadata/md5-cache/sys-cluster/hubble-0.10.0 +++ b/metadata/md5-cache/sys-cluster/hubble-0.10.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/cilium/hubble/archive/v0.10.0.tar.gz -> hubble-0.10.0.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=80abaebe768052742b60807b8920cee4 diff --git a/metadata/md5-cache/sys-cluster/k3s-1.25.4_p1 b/metadata/md5-cache/sys-cluster/k3s-1.25.4_p1 index 512964b8cbc5..43c615fe6ea0 100644 --- a/metadata/md5-cache/sys-cluster/k3s-1.25.4_p1 +++ b/metadata/md5-cache/sys-cluster/k3s-1.25.4_p1 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( amd64 ) RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/zmedico/k3s/archive/refs/tags/v1.25.4+k3s1-vendor.tar.gz -> k3s-1.25.4_p1-vendor.tar.gz https://github.com/k3s-io/containerd/archive/refs/tags/v1.6.8-k3s1.tar.gz -> k3s-containerd-1.6.8-k3s1.tar.gz https://github.com/opencontainers/runc/archive/refs/tags/v1.1.4.tar.gz -> k3s-runc-v1.1.4.tar.gz https://traefik.github.io/charts/traefik/traefik-19.0.4.tgz https://github.com/rancher/plugins/archive/refs/tags/v1.1.1-k3s1.tar.gz -> k3s-cni-plugins-1.1.1.tar.gz amd64? ( https://github.com/rancher/k3s-root/releases/download/v0.11.0/k3s-root-amd64.tar -> k3s-root-amd64-0.11.0.tar ) -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=32edd1b3370f60bd527bcc9d5bab377f diff --git a/metadata/md5-cache/sys-cluster/k9scli-0.25.18-r1 b/metadata/md5-cache/sys-cluster/k9scli-0.25.18-r1 index b1bc982ff314..788b28ec1d4a 100644 --- a/metadata/md5-cache/sys-cluster/k9scli-0.25.18-r1 +++ b/metadata/md5-cache/sys-cluster/k9scli-0.25.18-r1 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/derailed/k9s/archive/v0.25.18.tar.gz -> k9scli-0.25.18.tar.gz https://dev.gentoo.org/~williamh/dist/k9scli-0.25.18-vendor.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=b421f85fc2442bdcfbf3fc2c8442acfa diff --git a/metadata/md5-cache/sys-cluster/k9scli-0.27.3 b/metadata/md5-cache/sys-cluster/k9scli-0.27.3 index 1d947072253a..e50895f90ec5 100644 --- a/metadata/md5-cache/sys-cluster/k9scli-0.27.3 +++ b/metadata/md5-cache/sys-cluster/k9scli-0.27.3 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/derailed/k9s/archive/v0.27.3.tar.gz -> k9scli-0.27.3.tar.gz https://dev.gentoo.org/~williamh/dist/k9scli-0.27.3-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=08d1a1b38fd91026b25cff123480d782 diff --git a/metadata/md5-cache/sys-cluster/kops-1.23.2 b/metadata/md5-cache/sys-cluster/kops-1.23.2 index 6087754ed30f..9dd8825e2a00 100644 --- a/metadata/md5-cache/sys-cluster/kops-1.23.2 +++ b/metadata/md5-cache/sys-cluster/kops-1.23.2 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD-2 BSD-4 ECL-2.0 imagemagick ISC JSON MIT MIT-with-adverti RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kops/archive/refs/tags/v1.23.2.tar.gz -> kops-1.23.2.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=fef3264e4a76d018f5442fe2cb417586 diff --git a/metadata/md5-cache/sys-cluster/kube-apiserver-1.23.17 b/metadata/md5-cache/sys-cluster/kube-apiserver-1.23.17 index a37a753852ee..d8a1846bac8e 100644 --- a/metadata/md5-cache/sys-cluster/kube-apiserver-1.23.17 +++ b/metadata/md5-cache/sys-cluster/kube-apiserver-1.23.17 @@ -12,5 +12,5 @@ RDEPEND=acct-group/kube-apiserver acct-user/kube-apiserver RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.23.17.tar.gz -> kubernetes-1.23.17.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=a345c3c786da7b23496863cdc8e0a656 diff --git a/metadata/md5-cache/sys-cluster/kube-apiserver-1.24.11 b/metadata/md5-cache/sys-cluster/kube-apiserver-1.24.11 index cec2619e9fde..f6f5da48c959 100644 --- a/metadata/md5-cache/sys-cluster/kube-apiserver-1.24.11 +++ b/metadata/md5-cache/sys-cluster/kube-apiserver-1.24.11 @@ -12,5 +12,5 @@ RDEPEND=acct-group/kube-apiserver acct-user/kube-apiserver RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.24.11.tar.gz -> kubernetes-1.24.11.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=8b056d18443353fb05af12e6bfa49cd1 diff --git a/metadata/md5-cache/sys-cluster/kube-apiserver-1.24.12 b/metadata/md5-cache/sys-cluster/kube-apiserver-1.24.12 index 393209f3a8d2..b8ed6b6b838e 100644 --- a/metadata/md5-cache/sys-cluster/kube-apiserver-1.24.12 +++ b/metadata/md5-cache/sys-cluster/kube-apiserver-1.24.12 @@ -12,5 +12,5 @@ RDEPEND=acct-group/kube-apiserver acct-user/kube-apiserver RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.24.12.tar.gz -> kubernetes-1.24.12.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=6b1647a8a3ca657444fb8bf921c6c477 diff --git a/metadata/md5-cache/sys-cluster/kube-apiserver-1.25.7 b/metadata/md5-cache/sys-cluster/kube-apiserver-1.25.7 index a8d082a35891..09b5af27ca91 100644 --- a/metadata/md5-cache/sys-cluster/kube-apiserver-1.25.7 +++ b/metadata/md5-cache/sys-cluster/kube-apiserver-1.25.7 @@ -12,5 +12,5 @@ RDEPEND=acct-group/kube-apiserver acct-user/kube-apiserver RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.25.7.tar.gz -> kubernetes-1.25.7.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=568892010c4c4394551119661b51a4f6 diff --git a/metadata/md5-cache/sys-cluster/kube-apiserver-1.25.8 b/metadata/md5-cache/sys-cluster/kube-apiserver-1.25.8 index 925b7294e38a..88eab810309f 100644 --- a/metadata/md5-cache/sys-cluster/kube-apiserver-1.25.8 +++ b/metadata/md5-cache/sys-cluster/kube-apiserver-1.25.8 @@ -12,5 +12,5 @@ RDEPEND=acct-group/kube-apiserver acct-user/kube-apiserver RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.25.8.tar.gz -> kubernetes-1.25.8.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=4cd4947a68a2a8004bd2a53e2d46b9ee diff --git a/metadata/md5-cache/sys-cluster/kube-apiserver-1.26.2 b/metadata/md5-cache/sys-cluster/kube-apiserver-1.26.2 index 2da60b98fb53..d4dc455a30de 100644 --- a/metadata/md5-cache/sys-cluster/kube-apiserver-1.26.2 +++ b/metadata/md5-cache/sys-cluster/kube-apiserver-1.26.2 @@ -12,5 +12,5 @@ RDEPEND=acct-group/kube-apiserver acct-user/kube-apiserver RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.26.2.tar.gz -> kubernetes-1.26.2.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=568892010c4c4394551119661b51a4f6 diff --git a/metadata/md5-cache/sys-cluster/kube-apiserver-1.26.3 b/metadata/md5-cache/sys-cluster/kube-apiserver-1.26.3 index c7a4a2e1761a..45fdb44750a3 100644 --- a/metadata/md5-cache/sys-cluster/kube-apiserver-1.26.3 +++ b/metadata/md5-cache/sys-cluster/kube-apiserver-1.26.3 @@ -12,5 +12,5 @@ RDEPEND=acct-group/kube-apiserver acct-user/kube-apiserver RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.26.3.tar.gz -> kubernetes-1.26.3.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=4cd4947a68a2a8004bd2a53e2d46b9ee diff --git a/metadata/md5-cache/sys-cluster/kube-controller-manager-1.23.17 b/metadata/md5-cache/sys-cluster/kube-controller-manager-1.23.17 index 9ac9122ca582..64ddecc27f52 100644 --- a/metadata/md5-cache/sys-cluster/kube-controller-manager-1.23.17 +++ b/metadata/md5-cache/sys-cluster/kube-controller-manager-1.23.17 @@ -12,5 +12,5 @@ RDEPEND=acct-group/kube-controller-manager acct-user/kube-controller-manager RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.23.17.tar.gz -> kubernetes-1.23.17.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=7b6799ec38cfa5a70a302ef71a197af9 diff --git a/metadata/md5-cache/sys-cluster/kube-controller-manager-1.24.11 b/metadata/md5-cache/sys-cluster/kube-controller-manager-1.24.11 index 5e3d27b1540a..4660db1fbd38 100644 --- a/metadata/md5-cache/sys-cluster/kube-controller-manager-1.24.11 +++ b/metadata/md5-cache/sys-cluster/kube-controller-manager-1.24.11 @@ -12,5 +12,5 @@ RDEPEND=acct-group/kube-controller-manager acct-user/kube-controller-manager RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.24.11.tar.gz -> kubernetes-1.24.11.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=ce10ba3ae5bd3c69df7e356bb79338df diff --git a/metadata/md5-cache/sys-cluster/kube-controller-manager-1.24.12 b/metadata/md5-cache/sys-cluster/kube-controller-manager-1.24.12 index 6ee99c533a16..b04a78b52b67 100644 --- a/metadata/md5-cache/sys-cluster/kube-controller-manager-1.24.12 +++ b/metadata/md5-cache/sys-cluster/kube-controller-manager-1.24.12 @@ -12,5 +12,5 @@ RDEPEND=acct-group/kube-controller-manager acct-user/kube-controller-manager RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.24.12.tar.gz -> kubernetes-1.24.12.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=93d5d80c64c44d7d183756279aa1c7e3 diff --git a/metadata/md5-cache/sys-cluster/kube-controller-manager-1.25.7 b/metadata/md5-cache/sys-cluster/kube-controller-manager-1.25.7 index e967e5ccf2fb..c8de040860a6 100644 --- a/metadata/md5-cache/sys-cluster/kube-controller-manager-1.25.7 +++ b/metadata/md5-cache/sys-cluster/kube-controller-manager-1.25.7 @@ -12,5 +12,5 @@ RDEPEND=acct-group/kube-controller-manager acct-user/kube-controller-manager RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.25.7.tar.gz -> kubernetes-1.25.7.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=7e66467d2517afe515e9ea13cd6d0975 diff --git a/metadata/md5-cache/sys-cluster/kube-controller-manager-1.25.8 b/metadata/md5-cache/sys-cluster/kube-controller-manager-1.25.8 index 22e06903dff8..0ff18686f66b 100644 --- a/metadata/md5-cache/sys-cluster/kube-controller-manager-1.25.8 +++ b/metadata/md5-cache/sys-cluster/kube-controller-manager-1.25.8 @@ -12,5 +12,5 @@ RDEPEND=acct-group/kube-controller-manager acct-user/kube-controller-manager RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.25.8.tar.gz -> kubernetes-1.25.8.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=72c01f80663487d145745735cb43ad55 diff --git a/metadata/md5-cache/sys-cluster/kube-controller-manager-1.26.2 b/metadata/md5-cache/sys-cluster/kube-controller-manager-1.26.2 index e61575c1bb81..2cdaccee1a55 100644 --- a/metadata/md5-cache/sys-cluster/kube-controller-manager-1.26.2 +++ b/metadata/md5-cache/sys-cluster/kube-controller-manager-1.26.2 @@ -12,5 +12,5 @@ RDEPEND=acct-group/kube-controller-manager acct-user/kube-controller-manager RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.26.2.tar.gz -> kubernetes-1.26.2.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=7e66467d2517afe515e9ea13cd6d0975 diff --git a/metadata/md5-cache/sys-cluster/kube-controller-manager-1.26.3 b/metadata/md5-cache/sys-cluster/kube-controller-manager-1.26.3 index 057bccfe26c5..e0b7ae9148b5 100644 --- a/metadata/md5-cache/sys-cluster/kube-controller-manager-1.26.3 +++ b/metadata/md5-cache/sys-cluster/kube-controller-manager-1.26.3 @@ -12,5 +12,5 @@ RDEPEND=acct-group/kube-controller-manager acct-user/kube-controller-manager RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.26.3.tar.gz -> kubernetes-1.26.3.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=72c01f80663487d145745735cb43ad55 diff --git a/metadata/md5-cache/sys-cluster/kube-proxy-1.23.17 b/metadata/md5-cache/sys-cluster/kube-proxy-1.23.17 index c59be716d7c7..7c7b5f9fe305 100644 --- a/metadata/md5-cache/sys-cluster/kube-proxy-1.23.17 +++ b/metadata/md5-cache/sys-cluster/kube-proxy-1.23.17 @@ -11,5 +11,5 @@ RDEPEND=net-firewall/conntrack-tools RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.23.17.tar.gz -> kubernetes-1.23.17.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=09ac3ece47910a781592bc5312444b4a diff --git a/metadata/md5-cache/sys-cluster/kube-proxy-1.24.11 b/metadata/md5-cache/sys-cluster/kube-proxy-1.24.11 index bdbd5395222a..b3f2e3e56985 100644 --- a/metadata/md5-cache/sys-cluster/kube-proxy-1.24.11 +++ b/metadata/md5-cache/sys-cluster/kube-proxy-1.24.11 @@ -11,5 +11,5 @@ RDEPEND=net-firewall/conntrack-tools RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.24.11.tar.gz -> kubernetes-1.24.11.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=528423a95b0c1cb892fd67052bc580a3 diff --git a/metadata/md5-cache/sys-cluster/kube-proxy-1.24.12 b/metadata/md5-cache/sys-cluster/kube-proxy-1.24.12 index a235907bb222..2b1a7f50fdcb 100644 --- a/metadata/md5-cache/sys-cluster/kube-proxy-1.24.12 +++ b/metadata/md5-cache/sys-cluster/kube-proxy-1.24.12 @@ -11,5 +11,5 @@ RDEPEND=net-firewall/conntrack-tools RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.24.12.tar.gz -> kubernetes-1.24.12.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=efec6f66b408d40de804fd660132df36 diff --git a/metadata/md5-cache/sys-cluster/kube-proxy-1.25.7 b/metadata/md5-cache/sys-cluster/kube-proxy-1.25.7 index 5b38d0159c83..c6ec517532fd 100644 --- a/metadata/md5-cache/sys-cluster/kube-proxy-1.25.7 +++ b/metadata/md5-cache/sys-cluster/kube-proxy-1.25.7 @@ -11,5 +11,5 @@ RDEPEND=net-firewall/conntrack-tools RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.25.7.tar.gz -> kubernetes-1.25.7.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=dc5e9d2646ae373f813081396ff53bfb diff --git a/metadata/md5-cache/sys-cluster/kube-proxy-1.25.8 b/metadata/md5-cache/sys-cluster/kube-proxy-1.25.8 index d959ccb8e48c..58ed77eb7a82 100644 --- a/metadata/md5-cache/sys-cluster/kube-proxy-1.25.8 +++ b/metadata/md5-cache/sys-cluster/kube-proxy-1.25.8 @@ -11,5 +11,5 @@ RDEPEND=net-firewall/conntrack-tools RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.25.8.tar.gz -> kubernetes-1.25.8.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=4d07d6e6a85f4283214166e3e03bd6da diff --git a/metadata/md5-cache/sys-cluster/kube-proxy-1.26.2 b/metadata/md5-cache/sys-cluster/kube-proxy-1.26.2 index 9409bab35e27..162124eff96f 100644 --- a/metadata/md5-cache/sys-cluster/kube-proxy-1.26.2 +++ b/metadata/md5-cache/sys-cluster/kube-proxy-1.26.2 @@ -11,5 +11,5 @@ RDEPEND=net-firewall/conntrack-tools RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.26.2.tar.gz -> kubernetes-1.26.2.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=dc5e9d2646ae373f813081396ff53bfb diff --git a/metadata/md5-cache/sys-cluster/kube-proxy-1.26.3 b/metadata/md5-cache/sys-cluster/kube-proxy-1.26.3 index 7cfce1025ce9..c75617b6d53c 100644 --- a/metadata/md5-cache/sys-cluster/kube-proxy-1.26.3 +++ b/metadata/md5-cache/sys-cluster/kube-proxy-1.26.3 @@ -11,5 +11,5 @@ RDEPEND=net-firewall/conntrack-tools RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.26.3.tar.gz -> kubernetes-1.26.3.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=4d07d6e6a85f4283214166e3e03bd6da diff --git a/metadata/md5-cache/sys-cluster/kube-router-1.1.1 b/metadata/md5-cache/sys-cluster/kube-router-1.1.1 index 4883513642e4..5e5ebd3357dc 100644 --- a/metadata/md5-cache/sys-cluster/kube-router-1.1.1 +++ b/metadata/md5-cache/sys-cluster/kube-router-1.1.1 @@ -10,5 +10,5 @@ RDEPEND=net-firewall/iptables[conntrack] net-firewall/ipset sys-cluster/ipvsadm RESTRICT=strip SLOT=0 SRC_URI=https://github.com/cloudnativelabs/kube-router/archive/v1.1.1.tar.gz -> kube-router-1.1.1.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=fc1e8bf1c883993a970d95919de25268 diff --git a/metadata/md5-cache/sys-cluster/kube-router-1.2.2 b/metadata/md5-cache/sys-cluster/kube-router-1.2.2 index 8b8e5a229efe..324bcf0b05fb 100644 --- a/metadata/md5-cache/sys-cluster/kube-router-1.2.2 +++ b/metadata/md5-cache/sys-cluster/kube-router-1.2.2 @@ -10,5 +10,5 @@ RDEPEND=net-firewall/iptables[conntrack] net-firewall/ipset sys-cluster/ipvsadm RESTRICT=strip SLOT=0 SRC_URI=https://github.com/cloudnativelabs/kube-router/archive/v1.2.2.tar.gz -> kube-router-1.2.2.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=fc1e8bf1c883993a970d95919de25268 diff --git a/metadata/md5-cache/sys-cluster/kube-router-1.5.0 b/metadata/md5-cache/sys-cluster/kube-router-1.5.0 index c2117e9dae8b..885d1c1a283a 100644 --- a/metadata/md5-cache/sys-cluster/kube-router-1.5.0 +++ b/metadata/md5-cache/sys-cluster/kube-router-1.5.0 @@ -10,5 +10,5 @@ RDEPEND=net-firewall/iptables[conntrack] net-firewall/ipset sys-cluster/ipvsadm RESTRICT=strip SLOT=0 SRC_URI=https://github.com/cloudnativelabs/kube-router/archive/v1.5.0.tar.gz -> kube-router-1.5.0.tar.gz https://dev.gentoo.org/~williamh/dist/kube-router-1.5.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=314245426211f398e85403d19ed25da4 diff --git a/metadata/md5-cache/sys-cluster/kube-scheduler-1.23.17 b/metadata/md5-cache/sys-cluster/kube-scheduler-1.23.17 index 1a3a8822c152..9466a9952888 100644 --- a/metadata/md5-cache/sys-cluster/kube-scheduler-1.23.17 +++ b/metadata/md5-cache/sys-cluster/kube-scheduler-1.23.17 @@ -12,5 +12,5 @@ RDEPEND=acct-group/kube-scheduler acct-user/kube-scheduler RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.23.17.tar.gz -> kubernetes-1.23.17.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=89d77857f3cb363b8b04a118f4dd90ce diff --git a/metadata/md5-cache/sys-cluster/kube-scheduler-1.24.11 b/metadata/md5-cache/sys-cluster/kube-scheduler-1.24.11 index 4e9d2924c0d3..afac4fe2864e 100644 --- a/metadata/md5-cache/sys-cluster/kube-scheduler-1.24.11 +++ b/metadata/md5-cache/sys-cluster/kube-scheduler-1.24.11 @@ -12,5 +12,5 @@ RDEPEND=acct-group/kube-scheduler acct-user/kube-scheduler RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.24.11.tar.gz -> kubernetes-1.24.11.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=89efe7f05e5372117ac5e1dd931c8ad1 diff --git a/metadata/md5-cache/sys-cluster/kube-scheduler-1.24.12 b/metadata/md5-cache/sys-cluster/kube-scheduler-1.24.12 index 38ac7b2ba443..5ce7eb2ab334 100644 --- a/metadata/md5-cache/sys-cluster/kube-scheduler-1.24.12 +++ b/metadata/md5-cache/sys-cluster/kube-scheduler-1.24.12 @@ -12,5 +12,5 @@ RDEPEND=acct-group/kube-scheduler acct-user/kube-scheduler RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.24.12.tar.gz -> kubernetes-1.24.12.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=f8c4b21f370d76e38c776fecb43d97bd diff --git a/metadata/md5-cache/sys-cluster/kube-scheduler-1.25.7 b/metadata/md5-cache/sys-cluster/kube-scheduler-1.25.7 index ce6e0e915f25..bfc01286eefe 100644 --- a/metadata/md5-cache/sys-cluster/kube-scheduler-1.25.7 +++ b/metadata/md5-cache/sys-cluster/kube-scheduler-1.25.7 @@ -12,5 +12,5 @@ RDEPEND=acct-group/kube-scheduler acct-user/kube-scheduler RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.25.7.tar.gz -> kubernetes-1.25.7.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=d00c6dbc8f577db9007e1ca64579a741 diff --git a/metadata/md5-cache/sys-cluster/kube-scheduler-1.25.8 b/metadata/md5-cache/sys-cluster/kube-scheduler-1.25.8 index f68b7112633a..ebe6921ac69e 100644 --- a/metadata/md5-cache/sys-cluster/kube-scheduler-1.25.8 +++ b/metadata/md5-cache/sys-cluster/kube-scheduler-1.25.8 @@ -12,5 +12,5 @@ RDEPEND=acct-group/kube-scheduler acct-user/kube-scheduler RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.25.8.tar.gz -> kubernetes-1.25.8.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=27109a0647e998e2663cfeb27fd9d8df diff --git a/metadata/md5-cache/sys-cluster/kube-scheduler-1.26.2 b/metadata/md5-cache/sys-cluster/kube-scheduler-1.26.2 index 8f9b0e54a856..4997100b35ee 100644 --- a/metadata/md5-cache/sys-cluster/kube-scheduler-1.26.2 +++ b/metadata/md5-cache/sys-cluster/kube-scheduler-1.26.2 @@ -12,5 +12,5 @@ RDEPEND=acct-group/kube-scheduler acct-user/kube-scheduler RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.26.2.tar.gz -> kubernetes-1.26.2.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=d00c6dbc8f577db9007e1ca64579a741 diff --git a/metadata/md5-cache/sys-cluster/kube-scheduler-1.26.3 b/metadata/md5-cache/sys-cluster/kube-scheduler-1.26.3 index 53d3d8973615..069fcaf6798a 100644 --- a/metadata/md5-cache/sys-cluster/kube-scheduler-1.26.3 +++ b/metadata/md5-cache/sys-cluster/kube-scheduler-1.26.3 @@ -12,5 +12,5 @@ RDEPEND=acct-group/kube-scheduler acct-user/kube-scheduler RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.26.3.tar.gz -> kubernetes-1.26.3.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=27109a0647e998e2663cfeb27fd9d8df diff --git a/metadata/md5-cache/sys-cluster/kubeadm-1.23.17 b/metadata/md5-cache/sys-cluster/kubeadm-1.23.17 index d24d0171bef9..0bf3a4cb67a3 100644 --- a/metadata/md5-cache/sys-cluster/kubeadm-1.23.17 +++ b/metadata/md5-cache/sys-cluster/kubeadm-1.23.17 @@ -11,5 +11,5 @@ RDEPEND=app-containers/cri-tools selinux? ( sec-policy/selinux-kubernetes ) RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.23.17.tar.gz -> kubernetes-1.23.17.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=b6f97b3c97261505c8cdd62024c1d4ba diff --git a/metadata/md5-cache/sys-cluster/kubeadm-1.24.11 b/metadata/md5-cache/sys-cluster/kubeadm-1.24.11 index 131a9e7bcb87..011e5d7d353d 100644 --- a/metadata/md5-cache/sys-cluster/kubeadm-1.24.11 +++ b/metadata/md5-cache/sys-cluster/kubeadm-1.24.11 @@ -11,5 +11,5 @@ RDEPEND=app-containers/cri-tools selinux? ( sec-policy/selinux-kubernetes ) RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.24.11.tar.gz -> kubernetes-1.24.11.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=21341ede70d5e0b86ada648e49ef3896 diff --git a/metadata/md5-cache/sys-cluster/kubeadm-1.24.12 b/metadata/md5-cache/sys-cluster/kubeadm-1.24.12 index d72765bca85c..af1cdd7009ac 100644 --- a/metadata/md5-cache/sys-cluster/kubeadm-1.24.12 +++ b/metadata/md5-cache/sys-cluster/kubeadm-1.24.12 @@ -11,5 +11,5 @@ RDEPEND=app-containers/cri-tools selinux? ( sec-policy/selinux-kubernetes ) RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.24.12.tar.gz -> kubernetes-1.24.12.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=fe95d0269667cc7f10422ff8d11a734a diff --git a/metadata/md5-cache/sys-cluster/kubeadm-1.25.7 b/metadata/md5-cache/sys-cluster/kubeadm-1.25.7 index 15953239eea9..f8ab2cd4dbe0 100644 --- a/metadata/md5-cache/sys-cluster/kubeadm-1.25.7 +++ b/metadata/md5-cache/sys-cluster/kubeadm-1.25.7 @@ -11,5 +11,5 @@ RDEPEND=app-containers/cri-tools selinux? ( sec-policy/selinux-kubernetes ) RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.25.7.tar.gz -> kubernetes-1.25.7.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=a1d6e48fff34b8182a7cf41e408c0de9 diff --git a/metadata/md5-cache/sys-cluster/kubeadm-1.25.8 b/metadata/md5-cache/sys-cluster/kubeadm-1.25.8 index 709bc724ceca..b6bb786f3f04 100644 --- a/metadata/md5-cache/sys-cluster/kubeadm-1.25.8 +++ b/metadata/md5-cache/sys-cluster/kubeadm-1.25.8 @@ -11,5 +11,5 @@ RDEPEND=app-containers/cri-tools selinux? ( sec-policy/selinux-kubernetes ) RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.25.8.tar.gz -> kubernetes-1.25.8.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=9134c716e4a64b1e49b242943c6f147a diff --git a/metadata/md5-cache/sys-cluster/kubeadm-1.26.2 b/metadata/md5-cache/sys-cluster/kubeadm-1.26.2 index 668d163d1a77..f0616b76dfcd 100644 --- a/metadata/md5-cache/sys-cluster/kubeadm-1.26.2 +++ b/metadata/md5-cache/sys-cluster/kubeadm-1.26.2 @@ -11,5 +11,5 @@ RDEPEND=app-containers/cri-tools selinux? ( sec-policy/selinux-kubernetes ) RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.26.2.tar.gz -> kubernetes-1.26.2.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=a1d6e48fff34b8182a7cf41e408c0de9 diff --git a/metadata/md5-cache/sys-cluster/kubeadm-1.26.3 b/metadata/md5-cache/sys-cluster/kubeadm-1.26.3 index d9b8a37da493..7f8b1339e2c9 100644 --- a/metadata/md5-cache/sys-cluster/kubeadm-1.26.3 +++ b/metadata/md5-cache/sys-cluster/kubeadm-1.26.3 @@ -11,5 +11,5 @@ RDEPEND=app-containers/cri-tools selinux? ( sec-policy/selinux-kubernetes ) RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.26.3.tar.gz -> kubernetes-1.26.3.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=9134c716e4a64b1e49b242943c6f147a diff --git a/metadata/md5-cache/sys-cluster/kubectl-1.23.17 b/metadata/md5-cache/sys-cluster/kubectl-1.23.17 index 675cf8cfb2da..d31a6bc3bc9d 100644 --- a/metadata/md5-cache/sys-cluster/kubectl-1.23.17 +++ b/metadata/md5-cache/sys-cluster/kubectl-1.23.17 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.23.17.tar.gz -> kubernetes-1.23.17.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=e1a8d85f09fff055b131d807f7caf46b diff --git a/metadata/md5-cache/sys-cluster/kubectl-1.24.11 b/metadata/md5-cache/sys-cluster/kubectl-1.24.11 index b2a2bbbac196..b6f43831b675 100644 --- a/metadata/md5-cache/sys-cluster/kubectl-1.24.11 +++ b/metadata/md5-cache/sys-cluster/kubectl-1.24.11 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.24.11.tar.gz -> kubernetes-1.24.11.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=e2d032be9496ce0453643631710c406d diff --git a/metadata/md5-cache/sys-cluster/kubectl-1.24.12 b/metadata/md5-cache/sys-cluster/kubectl-1.24.12 index 21ac2c2cc12f..76b8cbd85690 100644 --- a/metadata/md5-cache/sys-cluster/kubectl-1.24.12 +++ b/metadata/md5-cache/sys-cluster/kubectl-1.24.12 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.24.12.tar.gz -> kubernetes-1.24.12.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=248acdbaaaeb65f61e297ffd2f4cc4f7 diff --git a/metadata/md5-cache/sys-cluster/kubectl-1.25.7 b/metadata/md5-cache/sys-cluster/kubectl-1.25.7 index 0318719ccc3d..90510932d50a 100644 --- a/metadata/md5-cache/sys-cluster/kubectl-1.25.7 +++ b/metadata/md5-cache/sys-cluster/kubectl-1.25.7 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.25.7.tar.gz -> kubernetes-1.25.7.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=e33bf31ad700a1488df20de29f4be865 diff --git a/metadata/md5-cache/sys-cluster/kubectl-1.25.8 b/metadata/md5-cache/sys-cluster/kubectl-1.25.8 index e14e826f65f1..0d6f51bc816a 100644 --- a/metadata/md5-cache/sys-cluster/kubectl-1.25.8 +++ b/metadata/md5-cache/sys-cluster/kubectl-1.25.8 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.25.8.tar.gz -> kubernetes-1.25.8.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=8d7568fac85c8036aac1e62b6f4ea63f diff --git a/metadata/md5-cache/sys-cluster/kubectl-1.26.2 b/metadata/md5-cache/sys-cluster/kubectl-1.26.2 index 1e70f86bb2fb..babbcad323bd 100644 --- a/metadata/md5-cache/sys-cluster/kubectl-1.26.2 +++ b/metadata/md5-cache/sys-cluster/kubectl-1.26.2 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.26.2.tar.gz -> kubernetes-1.26.2.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=e33bf31ad700a1488df20de29f4be865 diff --git a/metadata/md5-cache/sys-cluster/kubectl-1.26.3 b/metadata/md5-cache/sys-cluster/kubectl-1.26.3 index 0616e09bd372..eebf0177c554 100644 --- a/metadata/md5-cache/sys-cluster/kubectl-1.26.3 +++ b/metadata/md5-cache/sys-cluster/kubectl-1.26.3 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.26.3.tar.gz -> kubernetes-1.26.3.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=8d7568fac85c8036aac1e62b6f4ea63f diff --git a/metadata/md5-cache/sys-cluster/kubelet-1.23.17 b/metadata/md5-cache/sys-cluster/kubelet-1.23.17 index 02b794bbc156..f73d483768fc 100644 --- a/metadata/md5-cache/sys-cluster/kubelet-1.23.17 +++ b/metadata/md5-cache/sys-cluster/kubelet-1.23.17 @@ -11,5 +11,5 @@ RDEPEND=selinux? ( sec-policy/selinux-kubernetes ) RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.23.17.tar.gz -> kubernetes-1.23.17.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=6c1e2e5cc7cb84e80adc8eed71ff1ed9 diff --git a/metadata/md5-cache/sys-cluster/kubelet-1.24.11 b/metadata/md5-cache/sys-cluster/kubelet-1.24.11 index a09a1ee8aee7..753b333c7d4f 100644 --- a/metadata/md5-cache/sys-cluster/kubelet-1.24.11 +++ b/metadata/md5-cache/sys-cluster/kubelet-1.24.11 @@ -11,5 +11,5 @@ RDEPEND=selinux? ( sec-policy/selinux-kubernetes ) RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.24.11.tar.gz -> kubernetes-1.24.11.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=e01050717f23091bc5aefc5ef93e498b diff --git a/metadata/md5-cache/sys-cluster/kubelet-1.24.12 b/metadata/md5-cache/sys-cluster/kubelet-1.24.12 index b154372d659a..c0ddd3d5fa5e 100644 --- a/metadata/md5-cache/sys-cluster/kubelet-1.24.12 +++ b/metadata/md5-cache/sys-cluster/kubelet-1.24.12 @@ -11,5 +11,5 @@ RDEPEND=selinux? ( sec-policy/selinux-kubernetes ) RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.24.12.tar.gz -> kubernetes-1.24.12.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=f3f5358d449d67021cb414c8a182e2ab diff --git a/metadata/md5-cache/sys-cluster/kubelet-1.25.7 b/metadata/md5-cache/sys-cluster/kubelet-1.25.7 index 66612d441192..c377e0d59c16 100644 --- a/metadata/md5-cache/sys-cluster/kubelet-1.25.7 +++ b/metadata/md5-cache/sys-cluster/kubelet-1.25.7 @@ -11,5 +11,5 @@ RDEPEND=selinux? ( sec-policy/selinux-kubernetes ) RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.25.7.tar.gz -> kubernetes-1.25.7.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=07f9ce5b96157561e08be78f63243777 diff --git a/metadata/md5-cache/sys-cluster/kubelet-1.25.8 b/metadata/md5-cache/sys-cluster/kubelet-1.25.8 index f64b43f2bad6..f0d169ca5c82 100644 --- a/metadata/md5-cache/sys-cluster/kubelet-1.25.8 +++ b/metadata/md5-cache/sys-cluster/kubelet-1.25.8 @@ -11,5 +11,5 @@ RDEPEND=selinux? ( sec-policy/selinux-kubernetes ) RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.25.8.tar.gz -> kubernetes-1.25.8.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=5af1a3c3e2ecac0c7e0ebb16fbfff2da diff --git a/metadata/md5-cache/sys-cluster/kubelet-1.26.2 b/metadata/md5-cache/sys-cluster/kubelet-1.26.2 index da5832d32258..14a2e80984f7 100644 --- a/metadata/md5-cache/sys-cluster/kubelet-1.26.2 +++ b/metadata/md5-cache/sys-cluster/kubelet-1.26.2 @@ -11,5 +11,5 @@ RDEPEND=selinux? ( sec-policy/selinux-kubernetes ) RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.26.2.tar.gz -> kubernetes-1.26.2.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=07f9ce5b96157561e08be78f63243777 diff --git a/metadata/md5-cache/sys-cluster/kubelet-1.26.3 b/metadata/md5-cache/sys-cluster/kubelet-1.26.3 index 2ff7fa65c6bf..86af517272c5 100644 --- a/metadata/md5-cache/sys-cluster/kubelet-1.26.3 +++ b/metadata/md5-cache/sys-cluster/kubelet-1.26.3 @@ -11,5 +11,5 @@ RDEPEND=selinux? ( sec-policy/selinux-kubernetes ) RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/kubernetes/kubernetes/archive/v1.26.3.tar.gz -> kubernetes-1.26.3.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=5af1a3c3e2ecac0c7e0ebb16fbfff2da diff --git a/metadata/md5-cache/sys-cluster/kubeletctl-1.6 b/metadata/md5-cache/sys-cluster/kubeletctl-1.6 index 1af1f655e8a2..89d8f43e1827 100644 --- a/metadata/md5-cache/sys-cluster/kubeletctl-1.6 +++ b/metadata/md5-cache/sys-cluster/kubeletctl-1.6 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/cyberark/kubeletctl/archive/v1.6.tar.gz -> kubeletctl-1.6.tar.gz https://dev.gentoo.org/~zmedico/dist/kubeletctl-1.6-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=113ccbe7ee7d7bed29df4d9d8d8932b1 diff --git a/metadata/md5-cache/sys-cluster/kubelogin-1.27.0 b/metadata/md5-cache/sys-cluster/kubelogin-1.27.0 index 6d1a7b0cbb91..f809b1f24bba 100644 --- a/metadata/md5-cache/sys-cluster/kubelogin-1.27.0 +++ b/metadata/md5-cache/sys-cluster/kubelogin-1.27.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 BSD BSD-2 ISC MIT RESTRICT=strip SLOT=0 SRC_URI=https://github.com/int128/kubelogin/archive/v1.27.0.tar.gz -> kubelogin-1.27.0.tar.gz https://dev.gentoo.org/~concord/distfiles/kubelogin-1.27.0-deps.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=8cce02b41f70beb8812e7a2aaa158759 diff --git a/metadata/md5-cache/sys-cluster/kubeseal-0.20.2 b/metadata/md5-cache/sys-cluster/kubeseal-0.20.2 index 73e6df1b1843..884454dae163 100644 --- a/metadata/md5-cache/sys-cluster/kubeseal-0.20.2 +++ b/metadata/md5-cache/sys-cluster/kubeseal-0.20.2 @@ -10,5 +10,5 @@ LICENSE=Apache-2.0 BSD ISC MIT RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/bitnami-labs/sealed-secrets/archive/v0.20.2.tar.gz -> sealed-secrets-0.20.2.tar.gz https://dev.gentoo.org/~concord/distfiles/sealed-secrets-0.20.2-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=bc125b33e4227687e9999191106b1daa diff --git a/metadata/md5-cache/sys-cluster/legion-23.03.0 b/metadata/md5-cache/sys-cluster/legion-23.03.0 new file mode 100644 index 000000000000..1cf6be659767 --- /dev/null +++ b/metadata/md5-cache/sys-cluster/legion-23.03.0 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install prepare test +DEPEND=examples? ( virtual/mpi[cxx] ) gasnet? ( >=sys-cluster/gasnet-1.26.4-r1 ) hwloc? ( =sys-cluster/gasnet-1.26.4-r1 ) hwloc? ( =dev-lua/luafilesystem-1.8.0[lua_targets_lua5-1(-)] dev-lua/luajson[lua_targets_lua5-1(-)] dev-lua/luaposix[lua_targets_lua5-1(-)] dev-lua/lua-term[lua_targets_lua5-1(-)] ) lua_single_target_lua5-3? ( >=dev-lua/luafilesystem-1.8.0[lua_targets_lua5-3(-)] dev-lua/luajson[lua_targets_lua5-3(-)] dev-lua/luaposix[lua_targets_lua5-3(-)] dev-lua/lua-term[lua_targets_lua5-3(-)] ) virtual/pkgconfig test? ( lua_single_target_lua5-1? ( dev-util/hermes[lua_single_target_lua5-1(-)?,lua_single_target_lua5-3(-)?] ) lua_single_target_lua5-3? ( dev-util/hermes[lua_single_target_lua5-1(-)?,lua_single_target_lua5-3(-)?] ) app-shells/tcsh ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 +BDEPEND=lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) lua_single_target_lua5-3? ( dev-lang/lua:5.3 ) dev-lang/tcl dev-lang/tk lua_single_target_lua5-1? ( >=dev-lua/luafilesystem-1.8.0[lua_targets_lua5-1(-)] dev-lua/luajson[lua_targets_lua5-1(-)] dev-lua/luaposix[lua_targets_lua5-1(-)] dev-lua/lua-term[lua_targets_lua5-1(-)] ) lua_single_target_lua5-3? ( >=dev-lua/luafilesystem-1.8.0[lua_targets_lua5-3(-)] dev-lua/luajson[lua_targets_lua5-3(-)] dev-lua/luaposix[lua_targets_lua5-3(-)] dev-lua/lua-term[lua_targets_lua5-3(-)] ) virtual/pkgconfig sys-devel/bc test? ( lua_single_target_lua5-1? ( dev-util/hermes[lua_single_target_lua5-1(-)?,lua_single_target_lua5-3(-)?] ) lua_single_target_lua5-3? ( dev-util/hermes[lua_single_target_lua5-1(-)?,lua_single_target_lua5-3(-)?] ) app-shells/tcsh ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 DEFINED_PHASES=compile configure install postinst prepare pretend setup test DEPEND=lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) lua_single_target_lua5-3? ( dev-lang/lua:5.3 ) dev-lang/tcl dev-lang/tk lua_single_target_lua5-1? ( >=dev-lua/luafilesystem-1.8.0[lua_targets_lua5-1(-)] dev-lua/luajson[lua_targets_lua5-1(-)] dev-lua/luaposix[lua_targets_lua5-1(-)] dev-lua/lua-term[lua_targets_lua5-1(-)] ) lua_single_target_lua5-3? ( >=dev-lua/luafilesystem-1.8.0[lua_targets_lua5-3(-)] dev-lua/luajson[lua_targets_lua5-3(-)] dev-lua/luaposix[lua_targets_lua5-3(-)] dev-lua/lua-term[lua_targets_lua5-3(-)] ) virtual/pkgconfig DESCRIPTION=Environment Module System based on Lua @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/TACC/Lmod/archive/8.7.23.tar.gz -> lmod-8.7.23.tar.gz _eclasses_=autotools f0d3196128225dee3220e65f3371bc7a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multilib d1408425c7c4a7669b9b17735404b693 prefix eab3c99d77fe00506c109c8a736186f7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=499acab297fd422c699c6dfe921d5a61 +_md5_=3534113311d3df5b26fbee5525efc5dc diff --git a/metadata/md5-cache/sys-cluster/minikube-1.26.1 b/metadata/md5-cache/sys-cluster/minikube-1.26.1 index 37773ad30d53..a5e7e3d60478 100644 --- a/metadata/md5-cache/sys-cluster/minikube-1.26.1 +++ b/metadata/md5-cache/sys-cluster/minikube-1.26.1 @@ -12,5 +12,5 @@ RDEPEND=libvirt? ( app-emulation/libvirt:=[qemu] ) RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/zmedico/minikube/archive/refs/tags/v1.26.1-vendor.tar.gz -> minikube-1.26.1-vendor.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=c365582772d7fec63d3feb481b3ce693 diff --git a/metadata/md5-cache/sys-cluster/minikube-1.27.1 b/metadata/md5-cache/sys-cluster/minikube-1.27.1 index 3d36ab7e20f3..a65947bbc795 100644 --- a/metadata/md5-cache/sys-cluster/minikube-1.27.1 +++ b/metadata/md5-cache/sys-cluster/minikube-1.27.1 @@ -12,5 +12,5 @@ RDEPEND=libvirt? ( app-emulation/libvirt:=[qemu] ) RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/zmedico/minikube/archive/refs/tags/v1.27.1-vendor.tar.gz -> minikube-1.27.1-vendor.tar.gz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=9b4d3e1e3e64aa3794f36c3b1dd56bea diff --git a/metadata/md5-cache/sys-cluster/nomad-1.4.3 b/metadata/md5-cache/sys-cluster/nomad-1.4.3 index cd46f0a15e56..83c2b6e5991b 100644 --- a/metadata/md5-cache/sys-cluster/nomad-1.4.3 +++ b/metadata/md5-cache/sys-cluster/nomad-1.4.3 @@ -10,5 +10,5 @@ LICENSE=MPL-2.0 RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/hashicorp/nomad/archive/v1.4.3.tar.gz -> nomad-1.4.3.tar.gz https://dev.gentoo.org/~williamh/dist/nomad-1.4.3-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=a067253455819cb6f7d28db69a33a1dc diff --git a/metadata/md5-cache/sys-cluster/rocm-k8s-device-plugin-0.3.0 b/metadata/md5-cache/sys-cluster/rocm-k8s-device-plugin-0.3.0 index 0c91af2fbded..0f7e1ab50ef2 100644 --- a/metadata/md5-cache/sys-cluster/rocm-k8s-device-plugin-0.3.0 +++ b/metadata/md5-cache/sys-cluster/rocm-k8s-device-plugin-0.3.0 @@ -11,5 +11,5 @@ RDEPEND=sys-apps/hwloc x11-libs/libdrm[video_cards_amdgpu] sys-cluster/kubelet RESTRICT=strip SLOT=0 SRC_URI=https://github.com/RadeonOpenCompute/k8s-device-plugin/archive/amd-gpu-helm-0.3.0.tar.gz -> rocm-k8s-device-plugin-0.3.0.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=dd9b4f939c42bcb30c725f771a8fec3f diff --git a/metadata/md5-cache/sys-cluster/rocm-k8s-device-plugin-0.5.0 b/metadata/md5-cache/sys-cluster/rocm-k8s-device-plugin-0.5.0 index e0618d68504a..33e712b1bb77 100644 --- a/metadata/md5-cache/sys-cluster/rocm-k8s-device-plugin-0.5.0 +++ b/metadata/md5-cache/sys-cluster/rocm-k8s-device-plugin-0.5.0 @@ -11,5 +11,5 @@ RDEPEND=sys-apps/hwloc x11-libs/libdrm[video_cards_amdgpu] sys-cluster/kubelet RESTRICT=strip SLOT=0 SRC_URI=https://github.com/RadeonOpenCompute/k8s-device-plugin/archive/amd-gpu-helm-0.5.0.tar.gz -> rocm-k8s-device-plugin-0.5.0.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=f922952b975541aac739f688e45af8a2 diff --git a/metadata/md5-cache/sys-devel/Manifest.gz b/metadata/md5-cache/sys-devel/Manifest.gz index b71d89d42de5..88dac991bf72 100644 Binary files a/metadata/md5-cache/sys-devel/Manifest.gz and b/metadata/md5-cache/sys-devel/Manifest.gz differ diff --git a/metadata/md5-cache/sys-devel/gcc-10.4.0 b/metadata/md5-cache/sys-devel/gcc-10.4.0 deleted file mode 100644 index 2c5ea35ec16b..000000000000 --- a/metadata/md5-cache/sys-devel/gcc-10.4.0 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=sys-devel/binutils sys-devel/gnuconfig >=app-portage/elt-patches-20170815 >=sys-devel/bison-1.875 >=sys-devel/flex-2.5.4 nls? ( sys-devel/gettext ) test? ( >=dev-util/dejagnu-1.4.4 >=sys-devel/autogen-5.5.4 ) -DEFINED_PHASES=compile configure install postinst postrm prepare pretend setup test unpack -DEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) sanitize? ( virtual/libcrypt ) systemtap? ( dev-util/systemtap ) zstd? ( app-arch/zstd:= ) -DESCRIPTION=The GNU Compiler Collection -EAPI=8 -HOMEPAGE=https://gcc.gnu.org/ -INHERIT=toolchain -IUSE=test vanilla +nls debug +cxx +nptl +fortran doc hardened multilib objc pgo objc-gc libssp objc++ +openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp +pch systemtap d lto cet zstd -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 -LICENSE=GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ -PDEPEND=>=sys-devel/gcc-config-2.3 -RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) zstd? ( app-arch/zstd:= ) -RESTRICT=!test? ( test ) -SLOT=10 -SRC_URI=mirror://gcc/gcc-10.4.0/gcc-10.4.0.tar.xz mirror://gnu/gcc/gcc-10.4.0/gcc-10.4.0.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-10.4.0-patches-5.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-10.4.0-musl-patches-1.tar.xz -_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain 39096b494432e505dfd5af92401f7de4 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=49018706229782e33cdfe9210c897205 diff --git a/metadata/md5-cache/sys-devel/gcc-10.4.1_p20230119-r1 b/metadata/md5-cache/sys-devel/gcc-10.4.1_p20230119-r1 index bcd04ce5df95..d326f049e7d2 100644 --- a/metadata/md5-cache/sys-devel/gcc-10.4.1_p20230119-r1 +++ b/metadata/md5-cache/sys-devel/gcc-10.4.1_p20230119-r1 @@ -13,5 +13,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) SLOT=10 SRC_URI=mirror://gcc/snapshots/10-20230119/gcc-10-20230119.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-10.5.0-patches-4.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-10.5.0-musl-patches-2.tar.xz -_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain 39096b494432e505dfd5af92401f7de4 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain cb15ce1344fceac0d0436457e22e5992 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=859fc024f63564e30edcf07f4eb56cea diff --git a/metadata/md5-cache/sys-devel/gcc-10.4.1_p20230302 b/metadata/md5-cache/sys-devel/gcc-10.4.1_p20230302 index 050d6f38add9..fec46892e808 100644 --- a/metadata/md5-cache/sys-devel/gcc-10.4.1_p20230302 +++ b/metadata/md5-cache/sys-devel/gcc-10.4.1_p20230302 @@ -13,5 +13,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) SLOT=10 SRC_URI=mirror://gcc/snapshots/10-20230302/gcc-10-20230302.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-10.5.0-patches-5.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-10.5.0-musl-patches-2.tar.xz -_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain 39096b494432e505dfd5af92401f7de4 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain cb15ce1344fceac0d0436457e22e5992 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=b09223099fd84a26e39d6710871effa9 diff --git a/metadata/md5-cache/sys-devel/gcc-10.4.1_p20230406 b/metadata/md5-cache/sys-devel/gcc-10.4.1_p20230406 deleted file mode 100644 index 9359126dc705..000000000000 --- a/metadata/md5-cache/sys-devel/gcc-10.4.1_p20230406 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=sys-devel/binutils sys-devel/gnuconfig >=app-portage/elt-patches-20170815 >=sys-devel/bison-1.875 >=sys-devel/flex-2.5.4 nls? ( sys-devel/gettext ) test? ( >=dev-util/dejagnu-1.4.4 >=sys-devel/autogen-5.5.4 ) sys-apps/texinfo -DEFINED_PHASES=compile configure install postinst postrm prepare pretend setup test unpack -DEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) sanitize? ( virtual/libcrypt ) systemtap? ( dev-util/systemtap ) zstd? ( app-arch/zstd:= ) -DESCRIPTION=The GNU Compiler Collection -EAPI=8 -HOMEPAGE=https://gcc.gnu.org/ -INHERIT=toolchain -IUSE=test vanilla +nls debug +cxx +nptl +fortran doc hardened multilib objc pgo objc-gc libssp objc++ +openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp +pch systemtap d lto cet zstd -LICENSE=GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ -PDEPEND=>=sys-devel/gcc-config-2.3 -RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) zstd? ( app-arch/zstd:= ) -RESTRICT=!test? ( test ) -SLOT=10 -SRC_URI=mirror://gcc/snapshots/10-20230406/gcc-10-20230406.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-10.5.0-patches-5.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-10.5.0-musl-patches-2.tar.xz -_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain 39096b494432e505dfd5af92401f7de4 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=155bf158e7b00b2adad27fd8b3701c85 diff --git a/metadata/md5-cache/sys-devel/gcc-10.4.1_p20230413 b/metadata/md5-cache/sys-devel/gcc-10.4.1_p20230413 index fa2b2b767ce4..00af0c26949b 100644 --- a/metadata/md5-cache/sys-devel/gcc-10.4.1_p20230413 +++ b/metadata/md5-cache/sys-devel/gcc-10.4.1_p20230413 @@ -12,5 +12,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) SLOT=10 SRC_URI=mirror://gcc/snapshots/10-20230413/gcc-10-20230413.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-10.5.0-patches-5.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-10.5.0-musl-patches-2.tar.xz -_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain 39096b494432e505dfd5af92401f7de4 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain cb15ce1344fceac0d0436457e22e5992 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=155bf158e7b00b2adad27fd8b3701c85 diff --git a/metadata/md5-cache/sys-devel/gcc-10.5.9999 b/metadata/md5-cache/sys-devel/gcc-10.5.9999 index 984ff0bf88d1..e1e752a4c91c 100644 --- a/metadata/md5-cache/sys-devel/gcc-10.5.9999 +++ b/metadata/md5-cache/sys-devel/gcc-10.5.9999 @@ -12,5 +12,5 @@ PROPERTIES=live RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) zstd? ( app-arch/zstd:= ) RESTRICT=!test? ( test ) SLOT=10 -_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a git-r3 27e13c09a4c7e4c78ac812f74727e676 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain 39096b494432e505dfd5af92401f7de4 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a git-r3 27e13c09a4c7e4c78ac812f74727e676 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain cb15ce1344fceac0d0436457e22e5992 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=75005114e3f30bc1159bdb4a6ed13376 diff --git a/metadata/md5-cache/sys-devel/gcc-11.3.1_p20221209 b/metadata/md5-cache/sys-devel/gcc-11.3.1_p20221209 index 5efbbb68a2de..8fe232b9e9df 100644 --- a/metadata/md5-cache/sys-devel/gcc-11.3.1_p20221209 +++ b/metadata/md5-cache/sys-devel/gcc-11.3.1_p20221209 @@ -13,5 +13,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv RESTRICT=!test? ( test ) SLOT=11 SRC_URI=mirror://gcc/snapshots/11-20221209/gcc-11-20221209.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-11.4.0-patches-3.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-11.4.0-musl-patches-2.tar.xz -_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain 39096b494432e505dfd5af92401f7de4 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain cb15ce1344fceac0d0436457e22e5992 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=5aee7d80f188404437007e329f9f83e0 diff --git a/metadata/md5-cache/sys-devel/gcc-11.3.1_p20230120-r1 b/metadata/md5-cache/sys-devel/gcc-11.3.1_p20230120-r1 index 9c276dff5805..8daa8fa39a5f 100644 --- a/metadata/md5-cache/sys-devel/gcc-11.3.1_p20230120-r1 +++ b/metadata/md5-cache/sys-devel/gcc-11.3.1_p20230120-r1 @@ -13,5 +13,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv RESTRICT=!test? ( test ) SLOT=11 SRC_URI=mirror://gcc/snapshots/11-20230120/gcc-11-20230120.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-11.4.0-patches-7.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-11.4.0-musl-patches-2.tar.xz -_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain 39096b494432e505dfd5af92401f7de4 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain cb15ce1344fceac0d0436457e22e5992 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=094510208f49cd15b357e1eada02c69f diff --git a/metadata/md5-cache/sys-devel/gcc-11.3.1_p20230303 b/metadata/md5-cache/sys-devel/gcc-11.3.1_p20230303 index 3a846ceadc53..4a26ee8f2730 100644 --- a/metadata/md5-cache/sys-devel/gcc-11.3.1_p20230303 +++ b/metadata/md5-cache/sys-devel/gcc-11.3.1_p20230303 @@ -13,5 +13,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv RESTRICT=!test? ( test ) SLOT=11 SRC_URI=mirror://gcc/snapshots/11-20230303/gcc-11-20230303.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-11.4.0-patches-8.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-11.4.0-musl-patches-2.tar.xz -_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain 39096b494432e505dfd5af92401f7de4 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain cb15ce1344fceac0d0436457e22e5992 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=77184cbbc1a054b04e8c3e9ad60b4b52 diff --git a/metadata/md5-cache/sys-devel/gcc-11.3.1_p20230414 b/metadata/md5-cache/sys-devel/gcc-11.3.1_p20230414 index f3feb45d2d08..041d9e3582b8 100644 --- a/metadata/md5-cache/sys-devel/gcc-11.3.1_p20230414 +++ b/metadata/md5-cache/sys-devel/gcc-11.3.1_p20230414 @@ -12,5 +12,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv RESTRICT=!test? ( test ) SLOT=11 SRC_URI=mirror://gcc/snapshots/11-20230414/gcc-11-20230414.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-11.4.0-patches-8.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-11.4.0-musl-patches-2.tar.xz -_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain 39096b494432e505dfd5af92401f7de4 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain cb15ce1344fceac0d0436457e22e5992 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=4ef0d5aa26969e62e27873f2cf54366d diff --git a/metadata/md5-cache/sys-devel/gcc-11.4.9999 b/metadata/md5-cache/sys-devel/gcc-11.4.9999 index 7406a610ad9b..aa27b37edf10 100644 --- a/metadata/md5-cache/sys-devel/gcc-11.4.9999 +++ b/metadata/md5-cache/sys-devel/gcc-11.4.9999 @@ -12,5 +12,5 @@ PROPERTIES=live RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) zstd? ( app-arch/zstd:= ) RESTRICT=!test? ( test ) SLOT=11 -_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a git-r3 27e13c09a4c7e4c78ac812f74727e676 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain 39096b494432e505dfd5af92401f7de4 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a git-r3 27e13c09a4c7e4c78ac812f74727e676 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain cb15ce1344fceac0d0436457e22e5992 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=e8f227e90de4f05f456f4d3ce56ac2d9 diff --git a/metadata/md5-cache/sys-devel/gcc-12.2.0 b/metadata/md5-cache/sys-devel/gcc-12.2.0 deleted file mode 100644 index 5dd60b1c1b0b..000000000000 --- a/metadata/md5-cache/sys-devel/gcc-12.2.0 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=>=sys-devel/binutils-2.30[cet(-)?] sys-devel/gnuconfig >=app-portage/elt-patches-20170815 >=sys-devel/bison-1.875 >=sys-devel/flex-2.5.4 nls? ( sys-devel/gettext ) test? ( >=dev-util/dejagnu-1.4.4 >=sys-devel/autogen-5.5.4 ) valgrind? ( dev-util/valgrind ) d? ( || ( sys-devel/gcc[d(-)] =dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) sanitize? ( virtual/libcrypt ) systemtap? ( dev-util/systemtap ) zstd? ( app-arch/zstd:= ) -DESCRIPTION=The GNU Compiler Collection -EAPI=8 -HOMEPAGE=https://gcc.gnu.org/ -INHERIT=toolchain -IUSE=test vanilla +nls debug +cxx +nptl +fortran doc hardened multilib objc pgo objc-gc libssp objc++ +openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp +pch systemtap d lto cet zstd valgrind custom-cflags ieee-long-double -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 -LICENSE=GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ -PDEPEND=>=sys-devel/gcc-config-2.3 -RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) zstd? ( app-arch/zstd:= ) -RESTRICT=!test? ( test ) -SLOT=12 -SRC_URI=mirror://gcc/gcc-12.2.0/gcc-12.2.0.tar.xz mirror://gnu/gcc/gcc-12.2.0/gcc-12.2.0.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.2.0-patches-1.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.2.0-musl-patches-7.tar.xz -_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain 39096b494432e505dfd5af92401f7de4 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=bd6e37bf4424a972fd586e0e103e7642 diff --git a/metadata/md5-cache/sys-devel/gcc-12.2.1_p20230121-r1 b/metadata/md5-cache/sys-devel/gcc-12.2.1_p20230121-r1 index 48b79ebbac03..41d1d3a6a9f5 100644 --- a/metadata/md5-cache/sys-devel/gcc-12.2.1_p20230121-r1 +++ b/metadata/md5-cache/sys-devel/gcc-12.2.1_p20230121-r1 @@ -13,5 +13,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv RESTRICT=!test? ( test ) SLOT=12 SRC_URI=mirror://gcc/snapshots/12-20230121/gcc-12-20230121.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.2.0-patches-10.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.2.0-musl-patches-7.tar.xz -_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain 39096b494432e505dfd5af92401f7de4 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain cb15ce1344fceac0d0436457e22e5992 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=6aac9e6430b7a51fef22802dd5496b51 diff --git a/metadata/md5-cache/sys-devel/gcc-12.2.1_p20230304 b/metadata/md5-cache/sys-devel/gcc-12.2.1_p20230304 index b342d916d278..819967ddfb1c 100644 --- a/metadata/md5-cache/sys-devel/gcc-12.2.1_p20230304 +++ b/metadata/md5-cache/sys-devel/gcc-12.2.1_p20230304 @@ -13,5 +13,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv RESTRICT=!test? ( test ) SLOT=12 SRC_URI=mirror://gcc/snapshots/12-20230304/gcc-12-20230304.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.2.0-patches-13.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.2.0-musl-patches-7.tar.xz -_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain 39096b494432e505dfd5af92401f7de4 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain cb15ce1344fceac0d0436457e22e5992 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=29ec1f04764c10fe361e6d5acefb29dd diff --git a/metadata/md5-cache/sys-devel/gcc-12.2.1_p20230408 b/metadata/md5-cache/sys-devel/gcc-12.2.1_p20230408 deleted file mode 100644 index 70174447241e..000000000000 --- a/metadata/md5-cache/sys-devel/gcc-12.2.1_p20230408 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=>=sys-devel/binutils-2.30[cet(-)?] sys-devel/gnuconfig >=app-portage/elt-patches-20170815 >=sys-devel/bison-1.875 >=sys-devel/flex-2.5.4 nls? ( sys-devel/gettext ) test? ( >=dev-util/dejagnu-1.4.4 >=sys-devel/autogen-5.5.4 ) sys-apps/texinfo valgrind? ( dev-util/valgrind ) d? ( || ( sys-devel/gcc[d(-)] =dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) sanitize? ( virtual/libcrypt ) systemtap? ( dev-util/systemtap ) zstd? ( app-arch/zstd:= ) -DESCRIPTION=The GNU Compiler Collection -EAPI=8 -HOMEPAGE=https://gcc.gnu.org/ -INHERIT=toolchain -IUSE=test vanilla +nls debug +cxx +nptl +fortran doc hardened multilib objc pgo objc-gc libssp objc++ +openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp +pch systemtap d lto cet zstd valgrind custom-cflags ieee-long-double default-znow default-stack-clash-protection -LICENSE=GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ -PDEPEND=>=sys-devel/gcc-config-2.3 -RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) zstd? ( app-arch/zstd:= ) -RESTRICT=!test? ( test ) -SLOT=12 -SRC_URI=mirror://gcc/snapshots/12-20230408/gcc-12-20230408.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.2.0-patches-14.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.2.0-musl-patches-7.tar.xz -_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain 39096b494432e505dfd5af92401f7de4 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=137a58a3b3f72cc8da2adc53a866f58e diff --git a/metadata/md5-cache/sys-devel/gcc-12.2.1_p20230415 b/metadata/md5-cache/sys-devel/gcc-12.2.1_p20230415 index 23d6e29d8b0b..a7d5d6990a9e 100644 --- a/metadata/md5-cache/sys-devel/gcc-12.2.1_p20230415 +++ b/metadata/md5-cache/sys-devel/gcc-12.2.1_p20230415 @@ -12,5 +12,5 @@ RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv RESTRICT=!test? ( test ) SLOT=12 SRC_URI=mirror://gcc/snapshots/12-20230415/gcc-12-20230415.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.2.0-patches-14.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.2.0-musl-patches-7.tar.xz -_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain 39096b494432e505dfd5af92401f7de4 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain cb15ce1344fceac0d0436457e22e5992 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=137a58a3b3f72cc8da2adc53a866f58e diff --git a/metadata/md5-cache/sys-devel/gcc-12.3.9999 b/metadata/md5-cache/sys-devel/gcc-12.3.9999 index eedc7088346f..f39ebc59601e 100644 --- a/metadata/md5-cache/sys-devel/gcc-12.3.9999 +++ b/metadata/md5-cache/sys-devel/gcc-12.3.9999 @@ -12,5 +12,5 @@ PROPERTIES=live RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) zstd? ( app-arch/zstd:= ) RESTRICT=!test? ( test ) SLOT=12 -_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a git-r3 27e13c09a4c7e4c78ac812f74727e676 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain 39096b494432e505dfd5af92401f7de4 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a git-r3 27e13c09a4c7e4c78ac812f74727e676 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain cb15ce1344fceac0d0436457e22e5992 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=634990e7f937cc7c13c57c3e070116f9 diff --git a/metadata/md5-cache/sys-devel/gcc-13.0.1.9999 b/metadata/md5-cache/sys-devel/gcc-13.0.1.9999 index 17a7ede37515..5e5b4ab47058 100644 --- a/metadata/md5-cache/sys-devel/gcc-13.0.1.9999 +++ b/metadata/md5-cache/sys-devel/gcc-13.0.1.9999 @@ -5,12 +5,12 @@ DESCRIPTION=The GNU Compiler Collection EAPI=8 HOMEPAGE=https://gcc.gnu.org/ INHERIT=toolchain -IUSE=test vanilla +nls debug +cxx +nptl +fortran doc hardened multilib objc pgo objc-gc libssp objc++ +openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp +pch systemtap d lto cet zstd valgrind custom-cflags ieee-long-double default-znow default-stack-clash-protection rust +IUSE=test vanilla +nls debug +cxx +nptl +fortran doc hardened multilib objc pgo objc-gc libssp objc++ +openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp +pch systemtap d lto cet zstd valgrind custom-cflags ieee-long-double default-znow default-stack-clash-protection modula2 LICENSE=GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ PDEPEND=>=sys-devel/gcc-config-2.3 PROPERTIES=live RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) zstd? ( app-arch/zstd:= ) RESTRICT=!test? ( test ) SLOT=13 -_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a git-r3 27e13c09a4c7e4c78ac812f74727e676 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain 39096b494432e505dfd5af92401f7de4 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=5d3117e8a419b1117928a90a56f19139 +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a git-r3 27e13c09a4c7e4c78ac812f74727e676 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain cb15ce1344fceac0d0436457e22e5992 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=e201ae52769a1ba7aed674abcd3acee9 diff --git a/metadata/md5-cache/sys-devel/gcc-13.0.1_pre20230409-r1 b/metadata/md5-cache/sys-devel/gcc-13.0.1_pre20230409-r1 deleted file mode 100644 index 311a925fd9e1..000000000000 --- a/metadata/md5-cache/sys-devel/gcc-13.0.1_pre20230409-r1 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=>=sys-devel/binutils-2.30[cet(-)?] sys-devel/gnuconfig >=app-portage/elt-patches-20170815 >=sys-devel/bison-1.875 >=sys-devel/flex-2.5.4 nls? ( sys-devel/gettext ) test? ( >=dev-util/dejagnu-1.4.4 >=sys-devel/autogen-5.5.4 ) sys-apps/texinfo valgrind? ( dev-util/valgrind ) d? ( || ( sys-devel/gcc[d(-)] =dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) sanitize? ( virtual/libcrypt ) systemtap? ( dev-util/systemtap ) zstd? ( app-arch/zstd:= ) -DESCRIPTION=The GNU Compiler Collection -EAPI=8 -HOMEPAGE=https://gcc.gnu.org/ -INHERIT=toolchain -IUSE=test vanilla +nls debug +cxx +nptl +fortran doc hardened multilib objc pgo objc-gc libssp objc++ +openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp +pch systemtap d lto cet zstd valgrind custom-cflags ieee-long-double default-znow default-stack-clash-protection rust -KEYWORDS=~loong -LICENSE=GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ -PDEPEND=>=sys-devel/gcc-config-2.3 -RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) zstd? ( app-arch/zstd:= ) -RESTRICT=!test? ( test ) -SLOT=13 -SRC_URI=mirror://gcc/snapshots/13-20230409/gcc-13-20230409.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.1.0-patches-9.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.1.0-musl-patches-1.tar.xz -_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain 39096b494432e505dfd5af92401f7de4 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=fefa93195c0e2849e6d21ab9c7579c84 diff --git a/metadata/md5-cache/sys-devel/gcc-13.0.1_pre20230409-r2 b/metadata/md5-cache/sys-devel/gcc-13.0.1_pre20230409-r2 deleted file mode 100644 index 85738d859bd4..000000000000 --- a/metadata/md5-cache/sys-devel/gcc-13.0.1_pre20230409-r2 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=>=sys-devel/binutils-2.30[cet(-)?] sys-devel/gnuconfig >=app-portage/elt-patches-20170815 >=sys-devel/bison-1.875 >=sys-devel/flex-2.5.4 nls? ( sys-devel/gettext ) test? ( >=dev-util/dejagnu-1.4.4 >=sys-devel/autogen-5.5.4 ) sys-apps/texinfo valgrind? ( dev-util/valgrind ) d? ( || ( sys-devel/gcc[d(-)] =dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) sanitize? ( virtual/libcrypt ) systemtap? ( dev-util/systemtap ) zstd? ( app-arch/zstd:= ) -DESCRIPTION=The GNU Compiler Collection -EAPI=8 -HOMEPAGE=https://gcc.gnu.org/ -INHERIT=toolchain -IUSE=test vanilla +nls debug +cxx +nptl +fortran doc hardened multilib objc pgo objc-gc libssp objc++ +openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp +pch systemtap d lto cet zstd valgrind custom-cflags ieee-long-double default-znow default-stack-clash-protection rust -KEYWORDS=~loong -LICENSE=GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ -PDEPEND=>=sys-devel/gcc-config-2.3 -RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) zstd? ( app-arch/zstd:= ) -RESTRICT=!test? ( test ) -SLOT=13 -SRC_URI=mirror://gcc/snapshots/13-20230409/gcc-13-20230409.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.1.0-patches-9.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.1.0-musl-patches-1.tar.xz -_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain 39096b494432e505dfd5af92401f7de4 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=d02521916f3e74a3853cf67b1110bf94 diff --git a/metadata/md5-cache/sys-devel/gcc-13.0.1_pre20230409-r3 b/metadata/md5-cache/sys-devel/gcc-13.0.1_pre20230409-r3 deleted file mode 100644 index 7f2fb30cd37e..000000000000 --- a/metadata/md5-cache/sys-devel/gcc-13.0.1_pre20230409-r3 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=>=sys-devel/binutils-2.30[cet(-)?] sys-devel/gnuconfig >=app-portage/elt-patches-20170815 >=sys-devel/bison-1.875 >=sys-devel/flex-2.5.4 nls? ( sys-devel/gettext ) test? ( >=dev-util/dejagnu-1.4.4 >=sys-devel/autogen-5.5.4 ) sys-apps/texinfo valgrind? ( dev-util/valgrind ) d? ( || ( sys-devel/gcc[d(-)] =dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) sanitize? ( virtual/libcrypt ) systemtap? ( dev-util/systemtap ) zstd? ( app-arch/zstd:= ) -DESCRIPTION=The GNU Compiler Collection -EAPI=8 -HOMEPAGE=https://gcc.gnu.org/ -INHERIT=toolchain -IUSE=test vanilla +nls debug +cxx +nptl +fortran doc hardened multilib objc pgo objc-gc libssp objc++ +openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp +pch systemtap d lto cet zstd valgrind custom-cflags ieee-long-double default-znow default-stack-clash-protection rust -KEYWORDS=~loong -LICENSE=GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ -PDEPEND=>=sys-devel/gcc-config-2.3 -RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) zstd? ( app-arch/zstd:= ) -RESTRICT=!test? ( test ) -SLOT=13 -SRC_URI=mirror://gcc/snapshots/13-20230409/gcc-13-20230409.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.1.0-patches-9.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.1.0-musl-patches-1.tar.xz -_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain 39096b494432e505dfd5af92401f7de4 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=4192a4cb1545cb476444422f5a3b8776 diff --git a/metadata/md5-cache/sys-devel/gcc-13.0.1_pre20230409-r4 b/metadata/md5-cache/sys-devel/gcc-13.0.1_pre20230409-r4 deleted file mode 100644 index 7c5f8df7dfeb..000000000000 --- a/metadata/md5-cache/sys-devel/gcc-13.0.1_pre20230409-r4 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=>=sys-devel/binutils-2.30[cet(-)?] sys-devel/gnuconfig >=app-portage/elt-patches-20170815 >=sys-devel/bison-1.875 >=sys-devel/flex-2.5.4 nls? ( sys-devel/gettext ) test? ( >=dev-util/dejagnu-1.4.4 >=sys-devel/autogen-5.5.4 ) sys-apps/texinfo valgrind? ( dev-util/valgrind ) d? ( || ( sys-devel/gcc[d(-)] =dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) sanitize? ( virtual/libcrypt ) systemtap? ( dev-util/systemtap ) zstd? ( app-arch/zstd:= ) -DESCRIPTION=The GNU Compiler Collection -EAPI=8 -HOMEPAGE=https://gcc.gnu.org/ -INHERIT=toolchain -IUSE=test vanilla +nls debug +cxx +nptl +fortran doc hardened multilib objc pgo objc-gc libssp objc++ +openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp +pch systemtap d lto cet zstd valgrind custom-cflags ieee-long-double default-znow default-stack-clash-protection rust -KEYWORDS=~loong -LICENSE=GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ -PDEPEND=>=sys-devel/gcc-config-2.3 -RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) zstd? ( app-arch/zstd:= ) -RESTRICT=!test? ( test ) -SLOT=13 -SRC_URI=mirror://gcc/snapshots/13-20230409/gcc-13-20230409.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.1.0-patches-9.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.1.0-musl-patches-1.tar.xz -_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain 39096b494432e505dfd5af92401f7de4 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=2d2d8c5f6783fca8d22b0996509c9100 diff --git a/metadata/md5-cache/sys-devel/gcc-13.0.1_pre20230409 b/metadata/md5-cache/sys-devel/gcc-13.0.1_pre20230416 similarity index 90% rename from metadata/md5-cache/sys-devel/gcc-13.0.1_pre20230409 rename to metadata/md5-cache/sys-devel/gcc-13.0.1_pre20230416 index 311a925fd9e1..e71569eac774 100644 --- a/metadata/md5-cache/sys-devel/gcc-13.0.1_pre20230409 +++ b/metadata/md5-cache/sys-devel/gcc-13.0.1_pre20230416 @@ -5,13 +5,13 @@ DESCRIPTION=The GNU Compiler Collection EAPI=8 HOMEPAGE=https://gcc.gnu.org/ INHERIT=toolchain -IUSE=test vanilla +nls debug +cxx +nptl +fortran doc hardened multilib objc pgo objc-gc libssp objc++ +openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp +pch systemtap d lto cet zstd valgrind custom-cflags ieee-long-double default-znow default-stack-clash-protection rust +IUSE=test vanilla +nls debug +cxx +nptl +fortran doc hardened multilib objc pgo objc-gc libssp objc++ +openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp +pch systemtap d lto cet zstd valgrind custom-cflags ieee-long-double default-znow default-stack-clash-protection modula2 KEYWORDS=~loong LICENSE=GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ PDEPEND=>=sys-devel/gcc-config-2.3 RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) zstd? ( app-arch/zstd:= ) RESTRICT=!test? ( test ) SLOT=13 -SRC_URI=mirror://gcc/snapshots/13-20230409/gcc-13-20230409.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.1.0-patches-9.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.1.0-musl-patches-1.tar.xz -_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain 39096b494432e505dfd5af92401f7de4 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +SRC_URI=mirror://gcc/snapshots/13-20230416/gcc-13-20230416.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.1.0-patches-9.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-13.1.0-musl-patches-1.tar.xz +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain cb15ce1344fceac0d0436457e22e5992 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=fefa93195c0e2849e6d21ab9c7579c84 diff --git a/metadata/md5-cache/sys-devel/gcc-11.3.1_p20230407 b/metadata/md5-cache/sys-devel/gcc-14.0.0.9999 similarity index 60% rename from metadata/md5-cache/sys-devel/gcc-11.3.1_p20230407 rename to metadata/md5-cache/sys-devel/gcc-14.0.0.9999 index d25b393813e2..bfff368be118 100644 --- a/metadata/md5-cache/sys-devel/gcc-11.3.1_p20230407 +++ b/metadata/md5-cache/sys-devel/gcc-14.0.0.9999 @@ -1,16 +1,16 @@ -BDEPEND=>=sys-devel/binutils-2.30[cet(-)?] sys-devel/gnuconfig >=app-portage/elt-patches-20170815 >=sys-devel/bison-1.875 >=sys-devel/flex-2.5.4 nls? ( sys-devel/gettext ) test? ( >=dev-util/dejagnu-1.4.4 >=sys-devel/autogen-5.5.4 ) sys-apps/texinfo valgrind? ( dev-util/valgrind ) +BDEPEND=>=sys-devel/binutils-2.30[cet(-)?] sys-devel/gnuconfig >=app-portage/elt-patches-20170815 >=dev-vcs/git-1.8.2.1[curl] >=sys-devel/bison-1.875 >=sys-devel/flex-2.5.4 nls? ( sys-devel/gettext ) test? ( >=dev-util/dejagnu-1.4.4 >=sys-devel/autogen-5.5.4 ) valgrind? ( dev-util/valgrind ) d? ( || ( sys-devel/gcc[d(-)] =dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) sanitize? ( virtual/libcrypt ) systemtap? ( dev-util/systemtap ) zstd? ( app-arch/zstd:= ) DESCRIPTION=The GNU Compiler Collection EAPI=8 HOMEPAGE=https://gcc.gnu.org/ INHERIT=toolchain -IUSE=test vanilla +nls debug +cxx +nptl +fortran doc hardened multilib objc pgo objc-gc libssp objc++ +openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp +pch systemtap d lto cet zstd valgrind custom-cflags +IUSE=test vanilla +nls debug +cxx +nptl +fortran doc hardened multilib objc pgo objc-gc libssp objc++ +openmp fixed-point go +sanitize graphite ada vtv jit +pie +ssp +pch systemtap d lto cet zstd valgrind custom-cflags ieee-long-double default-znow default-stack-clash-protection modula2 rust LICENSE=GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ PDEPEND=>=sys-devel/gcc-config-2.3 +PROPERTIES=live RDEPEND=elibc_glibc? ( sys-libs/glibc[cet(-)?] ) sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) zstd? ( app-arch/zstd:= ) RESTRICT=!test? ( test ) -SLOT=11 -SRC_URI=mirror://gcc/snapshots/11-20230407/gcc-11-20230407.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-11.4.0-patches-8.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-11.4.0-musl-patches-2.tar.xz -_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain 39096b494432e505dfd5af92401f7de4 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=4ef0d5aa26969e62e27873f2cf54366d +SLOT=14 +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a git-r3 27e13c09a4c7e4c78ac812f74727e676 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain cb15ce1344fceac0d0436457e22e5992 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=d62aa7e7ad210aa36740ba2ab281fa86 diff --git a/metadata/md5-cache/sys-devel/gcc-8.5.0-r1 b/metadata/md5-cache/sys-devel/gcc-8.5.0-r1 index e74fc7bb55f4..0b1b708d34cb 100644 --- a/metadata/md5-cache/sys-devel/gcc-8.5.0-r1 +++ b/metadata/md5-cache/sys-devel/gcc-8.5.0-r1 @@ -13,5 +13,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) SLOT=8.5.0 SRC_URI=mirror://gcc/gcc-8.5.0/gcc-8.5.0.tar.xz mirror://gnu/gcc/gcc-8.5.0/gcc-8.5.0.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-8.5.0-patches-4.tar.xz -_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain 39096b494432e505dfd5af92401f7de4 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain cb15ce1344fceac0d0436457e22e5992 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=c5cf996504618e2980ca95c875a06841 diff --git a/metadata/md5-cache/sys-devel/gcc-9.5.0 b/metadata/md5-cache/sys-devel/gcc-9.5.0 index 6b7682252d85..b55b786eee9c 100644 --- a/metadata/md5-cache/sys-devel/gcc-9.5.0 +++ b/metadata/md5-cache/sys-devel/gcc-9.5.0 @@ -13,5 +13,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) SLOT=9.5.0 SRC_URI=mirror://gcc/gcc-9.5.0/gcc-9.5.0.tar.xz mirror://gnu/gcc/gcc-9.5.0/gcc-9.5.0.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-9.5.0-patches-2.tar.xz -_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain 39096b494432e505dfd5af92401f7de4 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain cb15ce1344fceac0d0436457e22e5992 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=deffd40437ee4aacbc389aa17904e0ef diff --git a/metadata/md5-cache/sys-devel/gcc-apple-4.2.1_p5666-r3 b/metadata/md5-cache/sys-devel/gcc-apple-4.2.1_p5666-r3 index 1ff485f1abf3..91214bac97d2 100644 --- a/metadata/md5-cache/sys-devel/gcc-apple-4.2.1_p5666-r3 +++ b/metadata/md5-cache/sys-devel/gcc-apple-4.2.1_p5666-r3 @@ -13,5 +13,5 @@ RDEPEND=>=sys-libs/zlib-1.1.4 >=sys-libs/ncurses-5.2-r2 nls? ( sys-devel/gettext RESTRICT=!test? ( test ) SLOT=42 SRC_URI=http://www.opensource.apple.com/darwinsource/tarballs/other/gcc-5666.3.tar.gz http://www.opensource.apple.com/darwinsource/tarballs/other/libstdcxx-39.tar.gz fortran? ( mirror://gnu/gcc/gcc-4.2.4/gcc-fortran-4.2.4.tar.bz2 https://dev.gentoo.org/~grobian/distfiles/gcc-apple-4.2.1_p5646-gfortran.patch ) -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a edo c0eb9cbe6b0bd01fcb4918f12598a4d3 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain 39096b494432e505dfd5af92401f7de4 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a edo c0eb9cbe6b0bd01fcb4918f12598a4d3 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain cb15ce1344fceac0d0436457e22e5992 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=a985071b860d5fe91f55bc2183ff0c0e diff --git a/metadata/md5-cache/sys-devel/kgcc64-10.4.0 b/metadata/md5-cache/sys-devel/kgcc64-10.4.0 index e56663a3398a..636124558bcd 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-10.4.0 +++ b/metadata/md5-cache/sys-devel/kgcc64-10.4.0 @@ -13,5 +13,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) SLOT=10 SRC_URI=mirror://gcc/gcc-10.4.0/gcc-10.4.0.tar.xz mirror://gnu/gcc/gcc-10.4.0/gcc-10.4.0.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-10.4.0-patches-5.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-10.4.0-musl-patches-1.tar.xz -_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain 39096b494432e505dfd5af92401f7de4 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain cb15ce1344fceac0d0436457e22e5992 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=fbef3a9e4334c1a710e5663ed2089b96 diff --git a/metadata/md5-cache/sys-devel/kgcc64-11.3.0 b/metadata/md5-cache/sys-devel/kgcc64-11.3.0 index 25969bbc969e..6110bc20598c 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-11.3.0 +++ b/metadata/md5-cache/sys-devel/kgcc64-11.3.0 @@ -13,5 +13,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) SLOT=11 SRC_URI=mirror://gcc/gcc-11.3.0/gcc-11.3.0.tar.xz mirror://gnu/gcc/gcc-11.3.0/gcc-11.3.0.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-11.3.0-patches-4.tar.bz2 -_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain 39096b494432e505dfd5af92401f7de4 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain cb15ce1344fceac0d0436457e22e5992 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c _md5_=17f07a9e9509bb6251bcc010a9d0d3b0 diff --git a/metadata/md5-cache/sys-devel/kgcc64-12.2.0 b/metadata/md5-cache/sys-devel/kgcc64-12.2.0 index 8da26f1c88dd..771d37c26212 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-12.2.0 +++ b/metadata/md5-cache/sys-devel/kgcc64-12.2.0 @@ -13,5 +13,5 @@ RDEPEND=sys-libs/zlib virtual/libiconv nls? ( virtual/libintl ) >=dev-libs/gmp-4 RESTRICT=!test? ( test ) SLOT=12 SRC_URI=mirror://gcc/gcc-12.2.0/gcc-12.2.0.tar.xz mirror://gnu/gcc/gcc-12.2.0/gcc-12.2.0.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.2.0-patches-1.tar.xz https://dev.gentoo.org/~sam/distfiles/sys-devel/gcc/gcc-12.2.0-musl-patches-1.tar.xz -_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain 39096b494432e505dfd5af92401f7de4 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=edo c0eb9cbe6b0bd01fcb4918f12598a4d3 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 pax-utils 91d47e5d20627c717aa878b9167c62a8 prefix eab3c99d77fe00506c109c8a736186f7 toolchain cb15ce1344fceac0d0436457e22e5992 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=e546054e5684443e8b1f3326230810fe diff --git a/metadata/md5-cache/sys-devel/lld-17.0.0.9999 b/metadata/md5-cache/sys-devel/lld-17.0.0.9999 index af4999ff9d83..d7ae29efa8f9 100644 --- a/metadata/md5-cache/sys-devel/lld-17.0.0.9999 +++ b/metadata/md5-cache/sys-devel/lld-17.0.0.9999 @@ -1,6 +1,6 @@ BDEPEND=sys-devel/llvm:17 test? ( >=dev-util/cmake-3.16 || ( ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-python/lit-17.0.0.9999[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 >=dev-python/lit-17.0.0.9999[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 >=dev-python/lit-17.0.0.9999[python_targets_python3_9(-)] ) ) ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=~sys-devel/llvm-17.0.0.9999[zstd=] sys-libs/zlib:= zstd? ( app-arch/zstd:= ) !!sys-devel/llvm:0 +DEPEND=~sys-devel/llvm-17.0.0.9999[debug=,zstd=] sys-libs/zlib:= zstd? ( app-arch/zstd:= ) !!sys-devel/llvm:0 DESCRIPTION=The LLVM linker (link editor) EAPI=8 HOMEPAGE=https://llvm.org/ @@ -9,8 +9,8 @@ IUSE=debug test zstd LICENSE=Apache-2.0-with-LLVM-exceptions UoI-NCSA PDEPEND=>=sys-devel/lld-toolchain-symlinks-16-r2:17 PROPERTIES=live -RDEPEND=~sys-devel/llvm-17.0.0.9999[zstd=] sys-libs/zlib:= zstd? ( app-arch/zstd:= ) !sys-devel/lld:0 +RDEPEND=~sys-devel/llvm-17.0.0.9999[debug=,zstd=] sys-libs/zlib:= zstd? ( app-arch/zstd:= ) !sys-devel/lld:0 RESTRICT=!test? ( test ) SLOT=17/17.0.0.9999 _eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a git-r3 27e13c09a4c7e4c78ac812f74727e676 llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org ce14899d290c9eb1f3af2945e489b027 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=2aef7cd1f03a5f8c85179c598fa6b22b +_md5_=d7f2c2eabc9c701f5580ef1113487f1c diff --git a/metadata/md5-cache/sys-devel/lld-17.0.0_pre20230414 b/metadata/md5-cache/sys-devel/lld-17.0.0_pre20230414 index 301b2ccc00cb..fe94cf8acaff 100644 --- a/metadata/md5-cache/sys-devel/lld-17.0.0_pre20230414 +++ b/metadata/md5-cache/sys-devel/lld-17.0.0_pre20230414 @@ -1,6 +1,6 @@ BDEPEND=sys-devel/llvm:17 test? ( >=dev-util/cmake-3.16 || ( ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-python/lit-17.0.0_pre20230414[python_targets_python3_11(-)] ) ( >=dev-lang/python-3.10.9-r1:3.10 >=dev-python/lit-17.0.0_pre20230414[python_targets_python3_10(-)] ) ( >=dev-lang/python-3.9.16-r1:3.9 >=dev-python/lit-17.0.0_pre20230414[python_targets_python3_9(-)] ) ) ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=~sys-devel/llvm-17.0.0_pre20230414[zstd=] sys-libs/zlib:= zstd? ( app-arch/zstd:= ) !!sys-devel/llvm:0 +DEPEND=~sys-devel/llvm-17.0.0_pre20230414[debug=,zstd=] sys-libs/zlib:= zstd? ( app-arch/zstd:= ) !!sys-devel/llvm:0 DESCRIPTION=The LLVM linker (link editor) EAPI=8 HOMEPAGE=https://llvm.org/ @@ -8,9 +8,9 @@ INHERIT=cmake flag-o-matic llvm llvm.org python-any-r1 toolchain-funcs IUSE=debug test zstd LICENSE=Apache-2.0-with-LLVM-exceptions UoI-NCSA PDEPEND=>=sys-devel/lld-toolchain-symlinks-16-r2:17 -RDEPEND=~sys-devel/llvm-17.0.0_pre20230414[zstd=] sys-libs/zlib:= zstd? ( app-arch/zstd:= ) !sys-devel/lld:0 +RDEPEND=~sys-devel/llvm-17.0.0_pre20230414[debug=,zstd=] sys-libs/zlib:= zstd? ( app-arch/zstd:= ) !sys-devel/lld:0 RESTRICT=!test? ( test ) SLOT=17/17.0.0_pre20230414 SRC_URI=https://github.com/llvm/llvm-project/archive/5c60a08c696c0420ddc5fdad5b8e50a7528cb3bf.tar.gz -> llvm-project-5c60a08c696c0420ddc5fdad5b8e50a7528cb3bf.tar.gz _eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a llvm 4cc6f8e29d24a8011266413e74c728bb llvm.org ce14899d290c9eb1f3af2945e489b027 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=2aef7cd1f03a5f8c85179c598fa6b22b +_md5_=d7f2c2eabc9c701f5580ef1113487f1c diff --git a/metadata/md5-cache/sys-fs/Manifest.gz b/metadata/md5-cache/sys-fs/Manifest.gz index d275356c0862..7027d7e07b2f 100644 Binary files a/metadata/md5-cache/sys-fs/Manifest.gz and b/metadata/md5-cache/sys-fs/Manifest.gz differ diff --git a/metadata/md5-cache/sys-fs/android-file-transfer-linux-4.2 b/metadata/md5-cache/sys-fs/android-file-transfer-linux-4.2 index 582bcf601431..74eb253e4367 100644 --- a/metadata/md5-cache/sys-fs/android-file-transfer-linux-4.2 +++ b/metadata/md5-cache/sys-fs/android-file-transfer-linux-4.2 @@ -1,16 +1,17 @@ BDEPEND=virtual/pkgconfig qt5? ( dev-qt/linguist-tools:5 ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test -DEPEND=sys-apps/file sys-libs/readline:0= fuse? ( sys-fs/fuse:0 ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_9? ( dev-python/pybind11[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pybind11[python_targets_python3_10(-)] ) ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 ) taglib? ( media-libs/taglib ) zune? ( dev-libs/openssl:0= ) dev-util/desktop-file-utils x11-misc/shared-mime-info +DEPEND=sys-apps/file sys-libs/readline:0= fuse? ( sys-fs/fuse:0 ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) python_single_target_python3_9? ( dev-python/pybind11[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pybind11[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pybind11[python_targets_python3_11(-)] ) ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 ) taglib? ( media-libs/taglib ) zune? ( dev-libs/openssl:0= ) DESCRIPTION=Android File Transfer for Linux -EAPI=7 +EAPI=8 HOMEPAGE=https://github.com/whoozle/android-file-transfer-linux +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info INHERIT=cmake python-single-r1 xdg -IUSE=fuse python qt5 taglib zune python_single_target_python3_9 python_single_target_python3_10 +IUSE=fuse python qt5 taglib zune python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 KEYWORDS=amd64 ~x86 LICENSE=LGPL-2.1 -RDEPEND=sys-apps/file sys-libs/readline:0= fuse? ( sys-fs/fuse:0 ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_9? ( dev-python/pybind11[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pybind11[python_targets_python3_10(-)] ) ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 ) taglib? ( media-libs/taglib ) zune? ( dev-libs/openssl:0= ) -REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 ) ) +RDEPEND=sys-apps/file sys-libs/readline:0= fuse? ( sys-fs/fuse:0 ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) python_single_target_python3_9? ( dev-python/pybind11[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pybind11[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pybind11[python_targets_python3_11(-)] ) ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 ) taglib? ( media-libs/taglib ) zune? ( dev-libs/openssl:0= ) +REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) SLOT=0 SRC_URI=https://github.com/whoozle/android-file-transfer-linux/archive/v4.2.tar.gz -> android-file-transfer-linux-4.2.tar.gz -_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c eapi8-dosym 741bfa77afb2a9321261501aca58c208 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=26ef28ad608e769faf7c7cae632df596 +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=fa1e90b024f180df4dc2cccdef2bc7bc diff --git a/metadata/md5-cache/sys-fs/android-file-transfer-linux-9999 b/metadata/md5-cache/sys-fs/android-file-transfer-linux-9999 index 120aac13d71f..04bdcbfbd306 100644 --- a/metadata/md5-cache/sys-fs/android-file-transfer-linux-9999 +++ b/metadata/md5-cache/sys-fs/android-file-transfer-linux-9999 @@ -1,16 +1,16 @@ BDEPEND=virtual/pkgconfig qt5? ( dev-qt/linguist-tools:5 ) >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=sys-apps/file sys-libs/readline:0= fuse? ( sys-fs/fuse:0 ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_9? ( dev-python/pybind11[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pybind11[python_targets_python3_10(-)] ) ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 ) taglib? ( media-libs/taglib ) zune? ( dev-libs/openssl:0= ) +DEPEND=sys-apps/file sys-libs/readline:0= fuse? ( sys-fs/fuse:0 ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) python_single_target_python3_9? ( dev-python/pybind11[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pybind11[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pybind11[python_targets_python3_11(-)] ) ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 ) taglib? ( media-libs/taglib ) zune? ( dev-libs/openssl:0= ) DESCRIPTION=Android File Transfer for Linux EAPI=8 HOMEPAGE=https://github.com/whoozle/android-file-transfer-linux IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info INHERIT=cmake python-single-r1 xdg git-r3 -IUSE=fuse python qt5 taglib zune python_single_target_python3_9 python_single_target_python3_10 +IUSE=fuse python qt5 taglib zune python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 LICENSE=LGPL-2.1 PROPERTIES=live -RDEPEND=sys-apps/file sys-libs/readline:0= fuse? ( sys-fs/fuse:0 ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_9? ( dev-python/pybind11[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pybind11[python_targets_python3_10(-)] ) ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 ) taglib? ( media-libs/taglib ) zune? ( dev-libs/openssl:0= ) -REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 ) ) +RDEPEND=sys-apps/file sys-libs/readline:0= fuse? ( sys-fs/fuse:0 ) python? ( python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) python_single_target_python3_9? ( dev-python/pybind11[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pybind11[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pybind11[python_targets_python3_11(-)] ) ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 ) taglib? ( media-libs/taglib ) zune? ( dev-libs/openssl:0= ) +REQUIRED_USE=python? ( ^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) ) SLOT=0 _eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a git-r3 27e13c09a4c7e4c78ac812f74727e676 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=6442ab51b89e38c935d89f88e0e0a377 +_md5_=c6ea09da6cbe93fd9caf52c9c146cb38 diff --git a/metadata/md5-cache/sys-fs/duf-0.8.1 b/metadata/md5-cache/sys-fs/duf-0.8.1 index b7160dac8c18..2bcfedb45b4b 100644 --- a/metadata/md5-cache/sys-fs/duf-0.8.1 +++ b/metadata/md5-cache/sys-fs/duf-0.8.1 @@ -10,5 +10,5 @@ LICENSE=MIT BSD Apache-2.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/muesli/duf/archive/refs/tags/v0.8.1.tar.gz -> duf-0.8.1.tar.gz https://github.com/mrmagic223325/deps/releases/download/duf-0.8.1/duf-0.8.1-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=a37ad77290de2df30e551f9ce45617df diff --git a/metadata/md5-cache/sys-fs/fscrypt-0.3.3 b/metadata/md5-cache/sys-fs/fscrypt-0.3.3 index b34bc4d3c7d1..4ef963e99468 100644 --- a/metadata/md5-cache/sys-fs/fscrypt-0.3.3 +++ b/metadata/md5-cache/sys-fs/fscrypt-0.3.3 @@ -11,5 +11,5 @@ RDEPEND=sys-libs/pam RESTRICT=strip SLOT=0 SRC_URI=https://github.com/google/fscrypt/archive/v0.3.3.tar.gz -> fscrypt-0.3.3.tar.gz https://dev.gentoo.org/~williamh/dist/fscrypt-0.3.3-deps.tar.xz -_eclasses_=flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 pam 4efe951aa8ce2c16288d7c915196fe29 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 pam 4efe951aa8ce2c16288d7c915196fe29 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=022c6b3df733dde2e77f21195ba1e39d diff --git a/metadata/md5-cache/sys-fs/go-mtpfs-1.0.0 b/metadata/md5-cache/sys-fs/go-mtpfs-1.0.0 index 6955be8278a6..a36e6bcaec67 100644 --- a/metadata/md5-cache/sys-fs/go-mtpfs-1.0.0 +++ b/metadata/md5-cache/sys-fs/go-mtpfs-1.0.0 @@ -11,5 +11,5 @@ RDEPEND=virtual/libusb:1 virtual/udev RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/hanwen/go-mtpfs/archive/v1.0.0.tar.gz -> go-mtpfs-1.0.0.tar.gz https://dev.gentoo.org/~williamh/dist/go-mtpfs-1.0.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=9cd3bf689422866253112b7cf8319f75 diff --git a/metadata/md5-cache/sys-kernel/Manifest.gz b/metadata/md5-cache/sys-kernel/Manifest.gz index 6805a376e62b..c6bc1ee2815a 100644 Binary files a/metadata/md5-cache/sys-kernel/Manifest.gz and b/metadata/md5-cache/sys-kernel/Manifest.gz differ diff --git a/metadata/md5-cache/sys-kernel/git-sources-6.3_rc7 b/metadata/md5-cache/sys-kernel/git-sources-6.3_rc7 new file mode 100644 index 000000000000..b6e68792491b --- /dev/null +++ b/metadata/md5-cache/sys-kernel/git-sources-6.3_rc7 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DEPEND=>=sys-devel/patch-2.7.6-r4 +DESCRIPTION=The very latest -git version of the Linux kernel +EAPI=8 +HOMEPAGE=https://www.kernel.org +INHERIT=kernel-2 +IUSE=symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~s390 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=!build? ( app-arch/cpio 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=6.3_rc7 +SRC_URI=https://git.kernel.org/torvalds/p/v6.3-rc7/v6.2 -> patch-6.3-rc7.patch https://www.kernel.org/pub/linux/kernel/v6.x/linux-6.2.tar.xz +_eclasses_=estack 055c42df72f76a4f45ec92b35e83cd56 kernel-2 5ec69098eb726d07eec2cf05ce4fbdfe multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=c152b1e7ab9fc06fdb114e19543dd1eb diff --git a/metadata/md5-cache/sys-power/Manifest.gz b/metadata/md5-cache/sys-power/Manifest.gz index b8eab518f44d..88a58edd72fd 100644 Binary files a/metadata/md5-cache/sys-power/Manifest.gz and b/metadata/md5-cache/sys-power/Manifest.gz differ diff --git a/metadata/md5-cache/sys-power/power-profiles-daemon-0.12 b/metadata/md5-cache/sys-power/power-profiles-daemon-0.12 deleted file mode 100644 index 6738b42689ce..000000000000 --- a/metadata/md5-cache/sys-power/power-profiles-daemon-0.12 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=gtk-doc? ( dev-util/gi-docgen ) test? ( dev-util/umockdev python_single_target_python3_9? ( dev-python/pygobject:3[python_targets_python3_9(-)] dev-python/python-dbusmock[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pygobject:3[python_targets_python3_10(-)] dev-python/python-dbusmock[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pygobject:3[python_targets_python3_11(-)] dev-python/python-dbusmock[python_targets_python3_11(-)] ) ) >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array virtual/pkgconfig -DEFINED_PHASES=compile configure install postinst setup test -DEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) python_single_target_python3_9? ( dev-python/pygobject:3[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pygobject:3[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pygobject:3[python_targets_python3_11(-)] ) dev-libs/glib:2 >=dev-libs/libgudev-234 >=sys-auth/polkit-0.114 sys-power/upower -DESCRIPTION=Makes power profiles handling available over D-Bus -EAPI=8 -HOMEPAGE=https://gitlab.freedesktop.org/hadess/power-profiles-daemon/ -INHERIT=meson python-single-r1 systemd -IUSE=gtk-doc test python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 -KEYWORDS=~amd64 -LICENSE=GPL-3+ -RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) python_single_target_python3_9? ( dev-python/pygobject:3[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pygobject:3[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pygobject:3[python_targets_python3_11(-)] ) dev-libs/glib:2 >=dev-libs/libgudev-234 >=sys-auth/polkit-0.114 sys-power/upower -REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://gitlab.freedesktop.org/hadess/power-profiles-daemon/-/archive/0.12/power-profiles-daemon-0.12.tar.bz2 -_eclasses_=meson 915ec7c25e08d7886558215e6809ca1e multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=3ff2c3aef75ffe6cdc0e1af287ce4ed4 diff --git a/metadata/md5-cache/sys-power/power-profiles-daemon-0.12-r1 b/metadata/md5-cache/sys-power/power-profiles-daemon-0.12-r1 index 8378c66b43ba..84ad7dab019a 100644 --- a/metadata/md5-cache/sys-power/power-profiles-daemon-0.12-r1 +++ b/metadata/md5-cache/sys-power/power-profiles-daemon-0.12-r1 @@ -1,4 +1,4 @@ -BDEPEND=gtk-doc? ( dev-util/gi-docgen ) test? ( dev-util/umockdev python_single_target_python3_9? ( dev-python/pygobject:3[python_targets_python3_9(-)] dev-python/python-dbusmock[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pygobject:3[python_targets_python3_10(-)] dev-python/python-dbusmock[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pygobject:3[python_targets_python3_11(-)] dev-python/python-dbusmock[python_targets_python3_11(-)] ) ) >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array virtual/pkgconfig +BDEPEND=gtk-doc? ( dev-util/gi-docgen dev-util/gtk-doc ) test? ( dev-util/umockdev python_single_target_python3_9? ( dev-python/pygobject:3[python_targets_python3_9(-)] dev-python/python-dbusmock[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pygobject:3[python_targets_python3_10(-)] dev-python/python-dbusmock[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pygobject:3[python_targets_python3_11(-)] dev-python/python-dbusmock[python_targets_python3_11(-)] ) ) >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array virtual/pkgconfig DEFINED_PHASES=compile configure install postinst setup test DEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) python_single_target_python3_9? ( dev-python/pygobject:3[python_targets_python3_9(-)] ) python_single_target_python3_10? ( dev-python/pygobject:3[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pygobject:3[python_targets_python3_11(-)] ) dev-libs/glib:2 >=dev-libs/libgudev-234 >=sys-auth/polkit-0.114 sys-power/upower DESCRIPTION=Makes power profiles handling available over D-Bus @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://gitlab.freedesktop.org/hadess/power-profiles-daemon/-/archive/0.12/power-profiles-daemon-0.12.tar.bz2 _eclasses_=meson 915ec7c25e08d7886558215e6809ca1e multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=7dc0ede1b9039bd36fd0a42d73795836 +_md5_=a8f5ac341f5a0a2063e3389de452cc64 diff --git a/metadata/md5-cache/sys-process/Manifest.gz b/metadata/md5-cache/sys-process/Manifest.gz index 54900abca80a..41382441bd0f 100644 Binary files a/metadata/md5-cache/sys-process/Manifest.gz and b/metadata/md5-cache/sys-process/Manifest.gz differ diff --git a/metadata/md5-cache/sys-process/ctop-0.7.7 b/metadata/md5-cache/sys-process/ctop-0.7.7 index 78b5e2d17b1e..6640433caf95 100644 --- a/metadata/md5-cache/sys-process/ctop-0.7.7 +++ b/metadata/md5-cache/sys-process/ctop-0.7.7 @@ -10,5 +10,5 @@ LICENSE=MIT RESTRICT=strip SLOT=0 SRC_URI=https://github.com/bcicen/ctop/archive/v0.7.7.tar.gz -> ctop-0.7.7.tar.gz https://dev.gentoo.org/~sam/distfiles/sys-process/ctop/ctop-0.7.7-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=1bda38f97bf2250e7ae4b70cfaae6057 diff --git a/metadata/md5-cache/www-apps/Manifest.gz b/metadata/md5-cache/www-apps/Manifest.gz index 9c000d81c9b7..36cea78cee9d 100644 Binary files a/metadata/md5-cache/www-apps/Manifest.gz and b/metadata/md5-cache/www-apps/Manifest.gz differ diff --git a/metadata/md5-cache/www-apps/gitea-1.18.3 b/metadata/md5-cache/www-apps/gitea-1.18.3 index 0d92a4a49b33..7ccca6466f88 100644 --- a/metadata/md5-cache/www-apps/gitea-1.18.3 +++ b/metadata/md5-cache/www-apps/gitea-1.18.3 @@ -13,5 +13,5 @@ RDEPEND=acct? ( acct-group/git acct-user/git[gitea] ) pam? ( sys-libs/pam ) dev- RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/go-gitea/gitea/releases/download/v1.18.3/gitea-src-1.18.3.tar.gz -> gitea-1.18.3.tar.gz -_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=00d825b58b5efc42dcb59004ee9d8eb2 diff --git a/metadata/md5-cache/www-apps/gitea-1.18.5 b/metadata/md5-cache/www-apps/gitea-1.18.5 index f000c732699a..ad55fefaaf49 100644 --- a/metadata/md5-cache/www-apps/gitea-1.18.5 +++ b/metadata/md5-cache/www-apps/gitea-1.18.5 @@ -13,5 +13,5 @@ RDEPEND=acct? ( acct-group/git acct-user/git[gitea] ) pam? ( sys-libs/pam ) dev- RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/go-gitea/gitea/releases/download/v1.18.5/gitea-src-1.18.5.tar.gz -> gitea-1.18.5.tar.gz -_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=c36caa91ba2d300f0d65d411c1aa031c diff --git a/metadata/md5-cache/www-apps/gitea-1.19.1 b/metadata/md5-cache/www-apps/gitea-1.19.1 index afe3ebbfa591..5fd84c9f4b0d 100644 --- a/metadata/md5-cache/www-apps/gitea-1.19.1 +++ b/metadata/md5-cache/www-apps/gitea-1.19.1 @@ -7,11 +7,11 @@ HOMEPAGE=https://gitea.io https://github.com/go-gitea/gitea IDEPEND=filecaps? ( sys-libs/libcap ) INHERIT=fcaps go-module tmpfiles systemd flag-o-matic IUSE=+acct pam sqlite pie +filecaps -KEYWORDS=~amd64 ~arm ~arm64 ~riscv ~x86 +KEYWORDS=amd64 ~arm ~arm64 ~riscv ~x86 LICENSE=Apache-2.0 BSD BSD-2 ISC MIT MPL-2.0 RDEPEND=acct? ( acct-group/git acct-user/git[gitea] ) pam? ( sys-libs/pam ) dev-vcs/git virtual/tmpfiles RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/go-gitea/gitea/releases/download/v1.19.1/gitea-src-1.19.1.tar.gz -> gitea-1.19.1.tar.gz -_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=c36caa91ba2d300f0d65d411c1aa031c +_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca tmpfiles 216aa76c3a6fcb5d893c23a0de86048f toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=00d825b58b5efc42dcb59004ee9d8eb2 diff --git a/metadata/md5-cache/www-apps/hugo-0.110.0-r2 b/metadata/md5-cache/www-apps/hugo-0.110.0-r2 index aab52795c058..fbcd73539b2d 100644 --- a/metadata/md5-cache/www-apps/hugo-0.110.0-r2 +++ b/metadata/md5-cache/www-apps/hugo-0.110.0-r2 @@ -12,5 +12,5 @@ RDEPEND=>=media-libs/libwebp-1.2.3-r1:= sass? ( dev-libs/libsass:= ) RESTRICT=!test? ( test ) strip SLOT=0 SRC_URI=https://github.com/gohugoio/hugo/archive/v0.110.0.tar.gz -> hugo-0.110.0.tar.gz https://tastytea.de/files/gentoo/hugo-0.110.0-vendor.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=6330286e6a76d535da724b54b383f931 diff --git a/metadata/md5-cache/www-apps/hugo-0.111.3 b/metadata/md5-cache/www-apps/hugo-0.111.3 index 9d2962778218..cf61d80010b1 100644 --- a/metadata/md5-cache/www-apps/hugo-0.111.3 +++ b/metadata/md5-cache/www-apps/hugo-0.111.3 @@ -12,5 +12,5 @@ RDEPEND=>=media-libs/libwebp-1.2.3-r1:= sass? ( dev-libs/libsass:= ) RESTRICT=!test? ( test ) strip SLOT=0 SRC_URI=https://github.com/gohugoio/hugo/archive/v0.111.3.tar.gz -> hugo-0.111.3.tar.gz https://tastytea.de/files/gentoo/hugo-0.111.3-vendor.tar.xz -_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=f75687e998b817fc3097acd3efe6e4be diff --git a/metadata/md5-cache/www-apps/miniflux-2.0.41-r1 b/metadata/md5-cache/www-apps/miniflux-2.0.41-r1 index d6f287a5b822..4010bdadb401 100644 --- a/metadata/md5-cache/www-apps/miniflux-2.0.41-r1 +++ b/metadata/md5-cache/www-apps/miniflux-2.0.41-r1 @@ -11,5 +11,5 @@ RDEPEND=acct-user/miniflux >=dev-db/postgresql-9.5 RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/miniflux/v2/archive/2.0.41.tar.gz -> miniflux-2.0.41.tar.gz https://dev.gentoo.org/~concord/distfiles/miniflux-2.0.41-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=fa3db32a5272d0cd5a4b77dd090ed7dc diff --git a/metadata/md5-cache/www-apps/miniflux-2.0.42-r1 b/metadata/md5-cache/www-apps/miniflux-2.0.42-r1 index 520e65eed121..eefdcec31716 100644 --- a/metadata/md5-cache/www-apps/miniflux-2.0.42-r1 +++ b/metadata/md5-cache/www-apps/miniflux-2.0.42-r1 @@ -11,5 +11,5 @@ RDEPEND=acct-user/miniflux >=dev-db/postgresql-9.5 RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/miniflux/v2/archive/2.0.42.tar.gz -> miniflux-2.0.42.tar.gz https://dev.gentoo.org/~concord/distfiles/miniflux-2.0.42-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=fa3db32a5272d0cd5a4b77dd090ed7dc diff --git a/metadata/md5-cache/www-apps/miniflux-2.0.43-r1 b/metadata/md5-cache/www-apps/miniflux-2.0.43-r1 index c868ed740f71..1e348fd2fd9a 100644 --- a/metadata/md5-cache/www-apps/miniflux-2.0.43-r1 +++ b/metadata/md5-cache/www-apps/miniflux-2.0.43-r1 @@ -11,5 +11,5 @@ RDEPEND=acct-user/miniflux >=dev-db/postgresql-9.5 RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/miniflux/v2/archive/2.0.43.tar.gz -> miniflux-2.0.43.tar.gz https://dev.gentoo.org/~concord/distfiles/miniflux-2.0.43-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=8c52af3b503dc5a2a601b48235589766 diff --git a/metadata/md5-cache/www-apps/radarr-4.4.3.7030 b/metadata/md5-cache/www-apps/radarr-4.4.4.7068 similarity index 62% rename from metadata/md5-cache/www-apps/radarr-4.4.3.7030 rename to metadata/md5-cache/www-apps/radarr-4.4.4.7068 index 85320a6ed96b..58525af8f185 100644 --- a/metadata/md5-cache/www-apps/radarr-4.4.3.7030 +++ b/metadata/md5-cache/www-apps/radarr-4.4.4.7068 @@ -9,6 +9,6 @@ LICENSE=GPL-3 RDEPEND=acct-group/radarr acct-user/radarr media-video/mediainfo dev-libs/icu dev-util/lttng-ust:0 dev-db/sqlite sys-libs/glibc RESTRICT=bindist strip test SLOT=0 -SRC_URI=amd64? ( https://github.com/Radarr/Radarr/releases/download/v4.4.3.7030/Radarr.develop.4.4.3.7030.linux-core-x64.tar.gz ) arm? ( https://github.com/Radarr/Radarr/releases/download/v4.4.3.7030/Radarr.develop.4.4.3.7030.linux-core-arm.tar.gz ) arm64? ( https://github.com/Radarr/Radarr/releases/download/v4.4.3.7030/Radarr.develop.4.4.3.7030.linux-core-arm64.tar.gz ) +SRC_URI=amd64? ( https://github.com/Radarr/Radarr/releases/download/v4.4.4.7068/Radarr.master.4.4.4.7068.linux-core-x64.tar.gz ) arm? ( https://github.com/Radarr/Radarr/releases/download/v4.4.4.7068/Radarr.master.4.4.4.7068.linux-core-arm.tar.gz ) arm64? ( https://github.com/Radarr/Radarr/releases/download/v4.4.4.7068/Radarr.master.4.4.4.7068.linux-core-arm64.tar.gz ) _eclasses_=multilib d1408425c7c4a7669b9b17735404b693 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e -_md5_=325d4e1de0226c5f13bee63edf3db8a9 +_md5_=21d8baec02da64169896f27b1ba8e38e diff --git a/metadata/md5-cache/www-apps/trickster-1.1.5 b/metadata/md5-cache/www-apps/trickster-1.1.5 index 34a71b9a1db8..5d8595a0c5f4 100644 --- a/metadata/md5-cache/www-apps/trickster-1.1.5 +++ b/metadata/md5-cache/www-apps/trickster-1.1.5 @@ -11,5 +11,5 @@ RDEPEND=acct-group/trickster acct-user/trickster RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/tricksterproxy/trickster/archive/v1.1.5.tar.gz -> trickster-1.1.5.tar.gz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=3d3783b6cc3c55465389120dcadb2886 diff --git a/metadata/md5-cache/www-client/Manifest.gz b/metadata/md5-cache/www-client/Manifest.gz index 38a95ea4c22c..895d60ef1120 100644 Binary files a/metadata/md5-cache/www-client/Manifest.gz and b/metadata/md5-cache/www-client/Manifest.gz differ diff --git a/metadata/md5-cache/www-client/firefox-112.0.1 b/metadata/md5-cache/www-client/firefox-112.0.1 new file mode 100644 index 000000000000..102b934fe0d1 --- /dev/null +++ b/metadata/md5-cache/www-client/firefox-112.0.1 @@ -0,0 +1,17 @@ +BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11[ncurses,sqlite,ssl] >=dev-lang/python-3.10.9-r1:3.10[ncurses,sqlite,ssl] >=dev-lang/python-3.9.16-r1:3.9[ncurses,sqlite,ssl] ) sys-devel/clang:15 sys-devel/llvm:15 clang? ( || ( sys-devel/lld:15 sys-devel/mold ) virtual/rust:0/llvm-15 pgo? ( =sys-libs/compiler-rt-sanitizers-15*[profile] ) ) app-alternatives/awk app-arch/unzip app-arch/zip >=dev-util/cbindgen-0.24.3 net-libs/nodejs virtual/pkgconfig !clang? ( >=virtual/rust-1.65 ) amd64? ( >=dev-lang/nasm-2.14 ) x86? ( >=dev-lang/nasm-2.14 ) pgo? ( X? ( sys-devel/gettext x11-base/xorg-server[xvfb] x11-apps/xhost ) wayland? ( >=gui-libs/wlroots-0.15.1-r1[tinywl] x11-misc/xkeyboard-config ) ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.13-r7:2.1 >=sys-devel/libtool-2.4.7 +DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup unpack +DEPEND=!www-client/firefox:0 !www-client/firefox:esr screencast? ( media-video/pipewire:= ) selinux? ( sec-policy/selinux-mozilla ) >=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/expat dev-libs/glib:2 dev-libs/libffi:= >=dev-libs/nss-3.89 >=dev-libs/nspr-4.35 media-libs/alsa-lib media-libs/fontconfig media-libs/freetype media-libs/mesa media-video/ffmpeg sys-libs/zlib virtual/freedesktop-icon-theme x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/pango x11-libs/pixman dbus? ( dev-libs/dbus-glib sys-apps/dbus ) jack? ( virtual/jack ) pulseaudio? ( || ( media-libs/libpulse >=media-sound/apulse-0.1.12-r4[sdk] ) ) libproxy? ( net-libs/libproxy ) selinux? ( sec-policy/selinux-mozilla ) sndio? ( >=media-sound/sndio-1.8.0-r1 ) screencast? ( media-video/pipewire:= ) system-av1? ( >=media-libs/dav1d-1.0.0:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-gfx/graphite2-1.3.13 >=media-libs/harfbuzz-2.8.1:0= ) system-icu? ( >=dev-libs/icu-72.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-libevent? ( >=dev-libs/libevent-2.1.12:0=[threads(+)] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-png? ( >=media-libs/libpng-1.6.35:0=[apng] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) wayland? ( >=media-libs/libepoxy-1.5.10-r1 x11-libs/gtk+:3[wayland] x11-libs/libdrm x11-libs/libxkbcommon[wayland] ) wifi? ( kernel_linux? ( dev-libs/dbus-glib net-misc/networkmanager sys-apps/dbus ) ) X? ( virtual/opengl x11-libs/cairo[X] x11-libs/gtk+:3[X] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libxkbcommon[X] x11-libs/libXrandr x11-libs/libXtst x11-libs/libxcb:= ) X? ( x11-base/xorg-proto x11-libs/libICE x11-libs/libSM ) !!sys-devel/llvm:0 +DESCRIPTION=Firefox Web Browser +EAPI=8 +HOMEPAGE=https://www.mozilla.com/firefox +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=autotools check-reqs desktop flag-o-matic gnome2-utils linux-info llvm multiprocessing optfeature pax-utils python-any-r1 toolchain-funcs virtualx xdg +IUSE=+clang cpu_flags_arm_neon dbus debug eme-free hardened hwaccel jack libproxy lto +openh264 pgo pulseaudio sndio selinux +system-av1 +system-harfbuzz +system-icu +system-jpeg +system-libevent +system-libvpx system-png system-python-libs +system-webp wayland wifi +X geckodriver +gmp-autoupdate screencast l10n_af l10n_ar l10n_ast l10n_be l10n_bg l10n_br l10n_ca l10n_cak l10n_cs l10n_cy l10n_da l10n_de l10n_dsb l10n_el l10n_en-CA l10n_en-GB l10n_es-AR l10n_es-ES l10n_et l10n_eu l10n_fi l10n_fr l10n_fy l10n_ga l10n_gd l10n_gl l10n_he l10n_hr l10n_hsb l10n_hu l10n_id l10n_is l10n_it l10n_ja l10n_ka l10n_kab l10n_kk l10n_ko l10n_lt l10n_lv l10n_ms l10n_nb l10n_nl l10n_nn l10n_pa l10n_pl l10n_pt-BR l10n_pt-PT l10n_rm l10n_ro l10n_ru l10n_sk l10n_sl l10n_sq l10n_sr l10n_sv l10n_th l10n_tr l10n_uk l10n_uz l10n_vi l10n_zh-CN l10n_zh-TW l10n_ach l10n_an l10n_az l10n_bn l10n_bs l10n_ca-valencia l10n_eo l10n_es-CL l10n_es-MX l10n_fa l10n_ff l10n_fur l10n_gn l10n_gu l10n_hi l10n_hy l10n_ia l10n_km l10n_kn l10n_lij l10n_mk l10n_mr l10n_my l10n_ne l10n_oc l10n_sc l10n_sco l10n_si l10n_son l10n_szl l10n_ta l10n_te l10n_tl l10n_trs l10n_ur l10n_xh +KEYWORDS=~amd64 ~arm64 ~ppc64 ~riscv ~x86 +LICENSE=MPL-2.0 GPL-2 LGPL-2.1 +RDEPEND=!www-client/firefox:0 !www-client/firefox:esr screencast? ( media-video/pipewire:= ) selinux? ( sec-policy/selinux-mozilla ) >=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/expat dev-libs/glib:2 dev-libs/libffi:= >=dev-libs/nss-3.89 >=dev-libs/nspr-4.35 media-libs/alsa-lib media-libs/fontconfig media-libs/freetype media-libs/mesa media-video/ffmpeg sys-libs/zlib virtual/freedesktop-icon-theme x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/pango x11-libs/pixman dbus? ( dev-libs/dbus-glib sys-apps/dbus ) jack? ( virtual/jack ) pulseaudio? ( || ( media-libs/libpulse >=media-sound/apulse-0.1.12-r4[sdk] ) ) libproxy? ( net-libs/libproxy ) selinux? ( sec-policy/selinux-mozilla ) sndio? ( >=media-sound/sndio-1.8.0-r1 ) screencast? ( media-video/pipewire:= ) system-av1? ( >=media-libs/dav1d-1.0.0:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-gfx/graphite2-1.3.13 >=media-libs/harfbuzz-2.8.1:0= ) system-icu? ( >=dev-libs/icu-72.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-libevent? ( >=dev-libs/libevent-2.1.12:0=[threads(+)] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-png? ( >=media-libs/libpng-1.6.35:0=[apng] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) wayland? ( >=media-libs/libepoxy-1.5.10-r1 x11-libs/gtk+:3[wayland] x11-libs/libdrm x11-libs/libxkbcommon[wayland] ) wifi? ( kernel_linux? ( dev-libs/dbus-glib net-misc/networkmanager sys-apps/dbus ) ) X? ( virtual/opengl x11-libs/cairo[X] x11-libs/gtk+:3[X] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libxkbcommon[X] x11-libs/libXrandr x11-libs/libXtst x11-libs/libxcb:= ) jack? ( virtual/jack ) openh264? ( media-libs/openh264:*[plugin] ) +REQUIRED_USE=|| ( X wayland ) debug? ( !system-av1 ) pgo? ( lto ) wifi? ( dbus ) +SLOT=rapid +SRC_URI=https://archive.mozilla.org/pub/firefox/releases/112.0.1/source/firefox-112.0.1.source.tar.xz -> firefox-112.0.1.source.tar.xz https://dev.gentoo.org/~juippis/mozilla/patchsets/firefox-112-patches-03j.tar.xz https://dev.gentoo.org/~whissi/mozilla/patchsets/firefox-112-patches-03j.tar.xz https://dev.gentoo.org/~slashbeast/mozilla/patchsets/firefox-112-patches-03j.tar.xz l10n_af? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/af.xpi -> firefox-112.0.1-af.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ar.xpi -> firefox-112.0.1-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ast.xpi -> firefox-112.0.1-ast.xpi ) l10n_be? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/be.xpi -> firefox-112.0.1-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/bg.xpi -> firefox-112.0.1-bg.xpi ) l10n_br? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/br.xpi -> firefox-112.0.1-br.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ca.xpi -> firefox-112.0.1-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/cak.xpi -> firefox-112.0.1-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/cs.xpi -> firefox-112.0.1-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/cy.xpi -> firefox-112.0.1-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/da.xpi -> firefox-112.0.1-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/de.xpi -> firefox-112.0.1-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/dsb.xpi -> firefox-112.0.1-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/el.xpi -> firefox-112.0.1-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/en-CA.xpi -> firefox-112.0.1-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/en-GB.xpi -> firefox-112.0.1-en-GB.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/es-AR.xpi -> firefox-112.0.1-es-AR.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/es-ES.xpi -> firefox-112.0.1-es-ES.xpi ) l10n_et? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/et.xpi -> firefox-112.0.1-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/eu.xpi -> firefox-112.0.1-eu.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/fi.xpi -> firefox-112.0.1-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/fr.xpi -> firefox-112.0.1-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/fy-NL.xpi -> firefox-112.0.1-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ga-IE.xpi -> firefox-112.0.1-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/gd.xpi -> firefox-112.0.1-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/gl.xpi -> firefox-112.0.1-gl.xpi ) l10n_he? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/he.xpi -> firefox-112.0.1-he.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/hr.xpi -> firefox-112.0.1-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/hsb.xpi -> firefox-112.0.1-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/hu.xpi -> firefox-112.0.1-hu.xpi ) l10n_id? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/id.xpi -> firefox-112.0.1-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/is.xpi -> firefox-112.0.1-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/it.xpi -> firefox-112.0.1-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ja.xpi -> firefox-112.0.1-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ka.xpi -> firefox-112.0.1-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/kab.xpi -> firefox-112.0.1-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/kk.xpi -> firefox-112.0.1-kk.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ko.xpi -> firefox-112.0.1-ko.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/lt.xpi -> firefox-112.0.1-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/lv.xpi -> firefox-112.0.1-lv.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ms.xpi -> firefox-112.0.1-ms.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/nb-NO.xpi -> firefox-112.0.1-nb-NO.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/nl.xpi -> firefox-112.0.1-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/nn-NO.xpi -> firefox-112.0.1-nn-NO.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/pa-IN.xpi -> firefox-112.0.1-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/pl.xpi -> firefox-112.0.1-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/pt-BR.xpi -> firefox-112.0.1-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/pt-PT.xpi -> firefox-112.0.1-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/rm.xpi -> firefox-112.0.1-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ro.xpi -> firefox-112.0.1-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ru.xpi -> firefox-112.0.1-ru.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/sk.xpi -> firefox-112.0.1-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/sl.xpi -> firefox-112.0.1-sl.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/sq.xpi -> firefox-112.0.1-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/sr.xpi -> firefox-112.0.1-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/sv-SE.xpi -> firefox-112.0.1-sv-SE.xpi ) l10n_th? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/th.xpi -> firefox-112.0.1-th.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/tr.xpi -> firefox-112.0.1-tr.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/uk.xpi -> firefox-112.0.1-uk.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/uz.xpi -> firefox-112.0.1-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/vi.xpi -> firefox-112.0.1-vi.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/zh-CN.xpi -> firefox-112.0.1-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/zh-TW.xpi -> firefox-112.0.1-zh-TW.xpi ) l10n_ach? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ach.xpi -> firefox-112.0.1-ach.xpi ) l10n_an? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/an.xpi -> firefox-112.0.1-an.xpi ) l10n_az? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/az.xpi -> firefox-112.0.1-az.xpi ) l10n_bn? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/bn.xpi -> firefox-112.0.1-bn.xpi ) l10n_bs? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/bs.xpi -> firefox-112.0.1-bs.xpi ) l10n_ca-valencia? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ca-valencia.xpi -> firefox-112.0.1-ca-valencia.xpi ) l10n_eo? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/eo.xpi -> firefox-112.0.1-eo.xpi ) l10n_es-CL? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/es-CL.xpi -> firefox-112.0.1-es-CL.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/es-MX.xpi -> firefox-112.0.1-es-MX.xpi ) l10n_fa? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/fa.xpi -> firefox-112.0.1-fa.xpi ) l10n_ff? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ff.xpi -> firefox-112.0.1-ff.xpi ) l10n_fur? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/fur.xpi -> firefox-112.0.1-fur.xpi ) l10n_gn? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/gn.xpi -> firefox-112.0.1-gn.xpi ) l10n_gu? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/gu-IN.xpi -> firefox-112.0.1-gu-IN.xpi ) l10n_hi? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/hi-IN.xpi -> firefox-112.0.1-hi-IN.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/hy-AM.xpi -> firefox-112.0.1-hy-AM.xpi ) l10n_ia? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ia.xpi -> firefox-112.0.1-ia.xpi ) l10n_km? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/km.xpi -> firefox-112.0.1-km.xpi ) l10n_kn? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/kn.xpi -> firefox-112.0.1-kn.xpi ) l10n_lij? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/lij.xpi -> firefox-112.0.1-lij.xpi ) l10n_mk? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/mk.xpi -> firefox-112.0.1-mk.xpi ) l10n_mr? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/mr.xpi -> firefox-112.0.1-mr.xpi ) l10n_my? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/my.xpi -> firefox-112.0.1-my.xpi ) l10n_ne? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ne-NP.xpi -> firefox-112.0.1-ne-NP.xpi ) l10n_oc? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/oc.xpi -> firefox-112.0.1-oc.xpi ) l10n_sc? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/sc.xpi -> firefox-112.0.1-sc.xpi ) l10n_sco? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/sco.xpi -> firefox-112.0.1-sco.xpi ) l10n_si? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/si.xpi -> firefox-112.0.1-si.xpi ) l10n_son? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/son.xpi -> firefox-112.0.1-son.xpi ) l10n_szl? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/szl.xpi -> firefox-112.0.1-szl.xpi ) l10n_ta? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ta.xpi -> firefox-112.0.1-ta.xpi ) l10n_te? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/te.xpi -> firefox-112.0.1-te.xpi ) l10n_tl? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/tl.xpi -> firefox-112.0.1-tl.xpi ) l10n_trs? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/trs.xpi -> firefox-112.0.1-trs.xpi ) l10n_ur? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ur.xpi -> firefox-112.0.1-ur.xpi ) l10n_xh? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/xh.xpi -> firefox-112.0.1-xh.xpi ) +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a check-reqs a5f1e025c53d62f98bc24bd63d7d95e1 desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnome2-utils b0183db3b2e07b18f3b77bffec72e116 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 llvm 4cc6f8e29d24a8011266413e74c728bb multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 pax-utils 91d47e5d20627c717aa878b9167c62a8 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e virtualx 817571665ee28575da44ee08135089e5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=b527422cbf19ce65e02954412a3297a5 diff --git a/metadata/md5-cache/www-client/firefox-bin-112.0 b/metadata/md5-cache/www-client/firefox-bin-112.0 deleted file mode 100644 index 6d2ce57f15f8..000000000000 --- a/metadata/md5-cache/www-client/firefox-bin-112.0 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=app-arch/unzip alsa? ( !pulseaudio? ( dev-util/patchelf ) ) -DEFINED_PHASES=install postinst postrm preinst setup unpack -DEPEND=alsa? ( !pulseaudio? ( media-sound/apulse ) ) -DESCRIPTION=Firefox Web Browser -EAPI=8 -HOMEPAGE=https://www.mozilla.com/firefox -IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info -INHERIT=desktop linux-info optfeature pax-utils xdg -IUSE=+alsa +ffmpeg +gmp-autoupdate +pulseaudio selinux wayland 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_sco 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 -KEYWORDS=-* amd64 x86 -LICENSE=MPL-2.0 GPL-2 LGPL-2.1 -RDEPEND=alsa? ( !pulseaudio? ( media-sound/apulse ) ) !www-client/firefox-bin:0 !www-client/firefox-bin:esr >=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/dbus-glib >=dev-libs/glib-2.26:2 media-libs/alsa-lib media-libs/fontconfig >=media-libs/freetype-2.4.10 sys-apps/dbus virtual/freedesktop-icon-theme >=x11-libs/cairo-1.10[X] x11-libs/gdk-pixbuf:2 >=x11-libs/gtk+-3.11:3[wayland?] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXtst x11-libs/libxcb >=x11-libs/pango-1.22.0 alsa? ( !pulseaudio? ( media-sound/apulse ) ) ffmpeg? ( media-video/ffmpeg ) pulseaudio? ( media-libs/libpulse ) selinux? ( sec-policy/selinux-mozilla ) -RESTRICT=strip -SLOT=rapid -SRC_URI=amd64? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/en-US/firefox-112.0.tar.bz2 -> firefox-bin_x86_64-112.0.tar.bz2 ) x86? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-i686/en-US/firefox-112.0.tar.bz2 -> firefox-bin_i686-112.0.tar.bz2 ) l10n_ach? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/ach.xpi -> firefox-112.0-ach.xpi ) l10n_af? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/af.xpi -> firefox-112.0-af.xpi ) l10n_an? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/an.xpi -> firefox-112.0-an.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/ar.xpi -> firefox-112.0-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/ast.xpi -> firefox-112.0-ast.xpi ) l10n_az? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/az.xpi -> firefox-112.0-az.xpi ) l10n_be? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/be.xpi -> firefox-112.0-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/bg.xpi -> firefox-112.0-bg.xpi ) l10n_bn? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/bn.xpi -> firefox-112.0-bn.xpi ) l10n_br? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/br.xpi -> firefox-112.0-br.xpi ) l10n_bs? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/bs.xpi -> firefox-112.0-bs.xpi ) l10n_ca-valencia? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/ca-valencia.xpi -> firefox-112.0-ca-valencia.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/ca.xpi -> firefox-112.0-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/cak.xpi -> firefox-112.0-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/cs.xpi -> firefox-112.0-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/cy.xpi -> firefox-112.0-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/da.xpi -> firefox-112.0-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/de.xpi -> firefox-112.0-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/dsb.xpi -> firefox-112.0-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/el.xpi -> firefox-112.0-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/en-CA.xpi -> firefox-112.0-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/en-GB.xpi -> firefox-112.0-en-GB.xpi ) l10n_eo? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/eo.xpi -> firefox-112.0-eo.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/es-AR.xpi -> firefox-112.0-es-AR.xpi ) l10n_es-CL? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/es-CL.xpi -> firefox-112.0-es-CL.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/es-ES.xpi -> firefox-112.0-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/es-MX.xpi -> firefox-112.0-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/et.xpi -> firefox-112.0-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/eu.xpi -> firefox-112.0-eu.xpi ) l10n_fa? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/fa.xpi -> firefox-112.0-fa.xpi ) l10n_ff? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/ff.xpi -> firefox-112.0-ff.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/fi.xpi -> firefox-112.0-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/fr.xpi -> firefox-112.0-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/fy-NL.xpi -> firefox-112.0-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/ga-IE.xpi -> firefox-112.0-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/gd.xpi -> firefox-112.0-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/gl.xpi -> firefox-112.0-gl.xpi ) l10n_gn? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/gn.xpi -> firefox-112.0-gn.xpi ) l10n_gu? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/gu-IN.xpi -> firefox-112.0-gu-IN.xpi ) l10n_he? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/he.xpi -> firefox-112.0-he.xpi ) l10n_hi? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/hi-IN.xpi -> firefox-112.0-hi-IN.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/hr.xpi -> firefox-112.0-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/hsb.xpi -> firefox-112.0-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/hu.xpi -> firefox-112.0-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/hy-AM.xpi -> firefox-112.0-hy-AM.xpi ) l10n_ia? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/ia.xpi -> firefox-112.0-ia.xpi ) l10n_id? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/id.xpi -> firefox-112.0-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/is.xpi -> firefox-112.0-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/it.xpi -> firefox-112.0-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/ja.xpi -> firefox-112.0-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/ka.xpi -> firefox-112.0-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/kab.xpi -> firefox-112.0-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/kk.xpi -> firefox-112.0-kk.xpi ) l10n_km? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/km.xpi -> firefox-112.0-km.xpi ) l10n_kn? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/kn.xpi -> firefox-112.0-kn.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/ko.xpi -> firefox-112.0-ko.xpi ) l10n_lij? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/lij.xpi -> firefox-112.0-lij.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/lt.xpi -> firefox-112.0-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/lv.xpi -> firefox-112.0-lv.xpi ) l10n_mk? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/mk.xpi -> firefox-112.0-mk.xpi ) l10n_mr? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/mr.xpi -> firefox-112.0-mr.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/ms.xpi -> firefox-112.0-ms.xpi ) l10n_my? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/my.xpi -> firefox-112.0-my.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/nb-NO.xpi -> firefox-112.0-nb-NO.xpi ) l10n_ne? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/ne-NP.xpi -> firefox-112.0-ne-NP.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/nl.xpi -> firefox-112.0-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/nn-NO.xpi -> firefox-112.0-nn-NO.xpi ) l10n_oc? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/oc.xpi -> firefox-112.0-oc.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/pa-IN.xpi -> firefox-112.0-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/pl.xpi -> firefox-112.0-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/pt-BR.xpi -> firefox-112.0-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/pt-PT.xpi -> firefox-112.0-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/rm.xpi -> firefox-112.0-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/ro.xpi -> firefox-112.0-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/ru.xpi -> firefox-112.0-ru.xpi ) l10n_sco? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/sco.xpi -> firefox-112.0-sco.xpi ) l10n_si? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/si.xpi -> firefox-112.0-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/sk.xpi -> firefox-112.0-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/sl.xpi -> firefox-112.0-sl.xpi ) l10n_son? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/son.xpi -> firefox-112.0-son.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/sq.xpi -> firefox-112.0-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/sr.xpi -> firefox-112.0-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/sv-SE.xpi -> firefox-112.0-sv-SE.xpi ) l10n_ta? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/ta.xpi -> firefox-112.0-ta.xpi ) l10n_te? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/te.xpi -> firefox-112.0-te.xpi ) l10n_th? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/th.xpi -> firefox-112.0-th.xpi ) l10n_tl? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/tl.xpi -> firefox-112.0-tl.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/tr.xpi -> firefox-112.0-tr.xpi ) l10n_trs? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/trs.xpi -> firefox-112.0-trs.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/uk.xpi -> firefox-112.0-uk.xpi ) l10n_ur? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/ur.xpi -> firefox-112.0-ur.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/uz.xpi -> firefox-112.0-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/vi.xpi -> firefox-112.0-vi.xpi ) l10n_xh? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/xh.xpi -> firefox-112.0-xh.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/zh-CN.xpi -> firefox-112.0-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/firefox/releases/112.0/linux-x86_64/xpi/zh-TW.xpi -> firefox-112.0-zh-TW.xpi ) -_eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 pax-utils 91d47e5d20627c717aa878b9167c62a8 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=6c3f45567d09154f57717d871a81cade diff --git a/metadata/md5-cache/www-client/firefox-bin-112.0.1 b/metadata/md5-cache/www-client/firefox-bin-112.0.1 new file mode 100644 index 000000000000..b5e0e4afe3b0 --- /dev/null +++ b/metadata/md5-cache/www-client/firefox-bin-112.0.1 @@ -0,0 +1,17 @@ +BDEPEND=app-arch/unzip alsa? ( !pulseaudio? ( dev-util/patchelf ) ) +DEFINED_PHASES=install postinst postrm preinst setup unpack +DEPEND=alsa? ( !pulseaudio? ( media-sound/apulse ) ) +DESCRIPTION=Firefox Web Browser +EAPI=8 +HOMEPAGE=https://www.mozilla.com/firefox +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=desktop linux-info optfeature pax-utils xdg +IUSE=+alsa +ffmpeg +gmp-autoupdate +pulseaudio selinux wayland 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_sco 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 +KEYWORDS=-* amd64 x86 +LICENSE=MPL-2.0 GPL-2 LGPL-2.1 +RDEPEND=alsa? ( !pulseaudio? ( media-sound/apulse ) ) !www-client/firefox-bin:0 !www-client/firefox-bin:esr >=app-accessibility/at-spi2-core-2.46.0:2 dev-libs/dbus-glib >=dev-libs/glib-2.26:2 media-libs/alsa-lib media-libs/fontconfig >=media-libs/freetype-2.4.10 sys-apps/dbus virtual/freedesktop-icon-theme >=x11-libs/cairo-1.10[X] x11-libs/gdk-pixbuf:2 >=x11-libs/gtk+-3.11:3[wayland?] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXtst x11-libs/libxcb >=x11-libs/pango-1.22.0 alsa? ( !pulseaudio? ( media-sound/apulse ) ) ffmpeg? ( media-video/ffmpeg ) pulseaudio? ( media-libs/libpulse ) selinux? ( sec-policy/selinux-mozilla ) +RESTRICT=strip +SLOT=rapid +SRC_URI=amd64? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/en-US/firefox-112.0.1.tar.bz2 -> firefox-bin_x86_64-112.0.1.tar.bz2 ) x86? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-i686/en-US/firefox-112.0.1.tar.bz2 -> firefox-bin_i686-112.0.1.tar.bz2 ) l10n_ach? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ach.xpi -> firefox-112.0.1-ach.xpi ) l10n_af? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/af.xpi -> firefox-112.0.1-af.xpi ) l10n_an? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/an.xpi -> firefox-112.0.1-an.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ar.xpi -> firefox-112.0.1-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ast.xpi -> firefox-112.0.1-ast.xpi ) l10n_az? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/az.xpi -> firefox-112.0.1-az.xpi ) l10n_be? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/be.xpi -> firefox-112.0.1-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/bg.xpi -> firefox-112.0.1-bg.xpi ) l10n_bn? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/bn.xpi -> firefox-112.0.1-bn.xpi ) l10n_br? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/br.xpi -> firefox-112.0.1-br.xpi ) l10n_bs? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/bs.xpi -> firefox-112.0.1-bs.xpi ) l10n_ca-valencia? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ca-valencia.xpi -> firefox-112.0.1-ca-valencia.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ca.xpi -> firefox-112.0.1-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/cak.xpi -> firefox-112.0.1-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/cs.xpi -> firefox-112.0.1-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/cy.xpi -> firefox-112.0.1-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/da.xpi -> firefox-112.0.1-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/de.xpi -> firefox-112.0.1-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/dsb.xpi -> firefox-112.0.1-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/el.xpi -> firefox-112.0.1-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/en-CA.xpi -> firefox-112.0.1-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/en-GB.xpi -> firefox-112.0.1-en-GB.xpi ) l10n_eo? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/eo.xpi -> firefox-112.0.1-eo.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/es-AR.xpi -> firefox-112.0.1-es-AR.xpi ) l10n_es-CL? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/es-CL.xpi -> firefox-112.0.1-es-CL.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/es-ES.xpi -> firefox-112.0.1-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/es-MX.xpi -> firefox-112.0.1-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/et.xpi -> firefox-112.0.1-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/eu.xpi -> firefox-112.0.1-eu.xpi ) l10n_fa? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/fa.xpi -> firefox-112.0.1-fa.xpi ) l10n_ff? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ff.xpi -> firefox-112.0.1-ff.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/fi.xpi -> firefox-112.0.1-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/fr.xpi -> firefox-112.0.1-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/fy-NL.xpi -> firefox-112.0.1-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ga-IE.xpi -> firefox-112.0.1-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/gd.xpi -> firefox-112.0.1-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/gl.xpi -> firefox-112.0.1-gl.xpi ) l10n_gn? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/gn.xpi -> firefox-112.0.1-gn.xpi ) l10n_gu? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/gu-IN.xpi -> firefox-112.0.1-gu-IN.xpi ) l10n_he? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/he.xpi -> firefox-112.0.1-he.xpi ) l10n_hi? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/hi-IN.xpi -> firefox-112.0.1-hi-IN.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/hr.xpi -> firefox-112.0.1-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/hsb.xpi -> firefox-112.0.1-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/hu.xpi -> firefox-112.0.1-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/hy-AM.xpi -> firefox-112.0.1-hy-AM.xpi ) l10n_ia? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ia.xpi -> firefox-112.0.1-ia.xpi ) l10n_id? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/id.xpi -> firefox-112.0.1-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/is.xpi -> firefox-112.0.1-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/it.xpi -> firefox-112.0.1-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ja.xpi -> firefox-112.0.1-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ka.xpi -> firefox-112.0.1-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/kab.xpi -> firefox-112.0.1-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/kk.xpi -> firefox-112.0.1-kk.xpi ) l10n_km? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/km.xpi -> firefox-112.0.1-km.xpi ) l10n_kn? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/kn.xpi -> firefox-112.0.1-kn.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ko.xpi -> firefox-112.0.1-ko.xpi ) l10n_lij? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/lij.xpi -> firefox-112.0.1-lij.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/lt.xpi -> firefox-112.0.1-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/lv.xpi -> firefox-112.0.1-lv.xpi ) l10n_mk? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/mk.xpi -> firefox-112.0.1-mk.xpi ) l10n_mr? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/mr.xpi -> firefox-112.0.1-mr.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ms.xpi -> firefox-112.0.1-ms.xpi ) l10n_my? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/my.xpi -> firefox-112.0.1-my.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/nb-NO.xpi -> firefox-112.0.1-nb-NO.xpi ) l10n_ne? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ne-NP.xpi -> firefox-112.0.1-ne-NP.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/nl.xpi -> firefox-112.0.1-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/nn-NO.xpi -> firefox-112.0.1-nn-NO.xpi ) l10n_oc? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/oc.xpi -> firefox-112.0.1-oc.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/pa-IN.xpi -> firefox-112.0.1-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/pl.xpi -> firefox-112.0.1-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/pt-BR.xpi -> firefox-112.0.1-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/pt-PT.xpi -> firefox-112.0.1-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/rm.xpi -> firefox-112.0.1-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ro.xpi -> firefox-112.0.1-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ru.xpi -> firefox-112.0.1-ru.xpi ) l10n_sco? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/sco.xpi -> firefox-112.0.1-sco.xpi ) l10n_si? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/si.xpi -> firefox-112.0.1-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/sk.xpi -> firefox-112.0.1-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/sl.xpi -> firefox-112.0.1-sl.xpi ) l10n_son? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/son.xpi -> firefox-112.0.1-son.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/sq.xpi -> firefox-112.0.1-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/sr.xpi -> firefox-112.0.1-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/sv-SE.xpi -> firefox-112.0.1-sv-SE.xpi ) l10n_ta? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ta.xpi -> firefox-112.0.1-ta.xpi ) l10n_te? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/te.xpi -> firefox-112.0.1-te.xpi ) l10n_th? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/th.xpi -> firefox-112.0.1-th.xpi ) l10n_tl? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/tl.xpi -> firefox-112.0.1-tl.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/tr.xpi -> firefox-112.0.1-tr.xpi ) l10n_trs? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/trs.xpi -> firefox-112.0.1-trs.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/uk.xpi -> firefox-112.0.1-uk.xpi ) l10n_ur? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/ur.xpi -> firefox-112.0.1-ur.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/uz.xpi -> firefox-112.0.1-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/vi.xpi -> firefox-112.0.1-vi.xpi ) l10n_xh? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/xh.xpi -> firefox-112.0.1-xh.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/zh-CN.xpi -> firefox-112.0.1-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/firefox/releases/112.0.1/linux-x86_64/xpi/zh-TW.xpi -> firefox-112.0.1-zh-TW.xpi ) +_eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 pax-utils 91d47e5d20627c717aa878b9167c62a8 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=6c3f45567d09154f57717d871a81cade diff --git a/metadata/md5-cache/www-client/google-chrome-112.0.5615.49 b/metadata/md5-cache/www-client/google-chrome-112.0.5615.121 similarity index 97% rename from metadata/md5-cache/www-client/google-chrome-112.0.5615.49 rename to metadata/md5-cache/www-client/google-chrome-112.0.5615.121 index 939345994454..7e43c8ea17a7 100644 --- a/metadata/md5-cache/www-client/google-chrome-112.0.5615.49 +++ b/metadata/md5-cache/www-client/google-chrome-112.0.5615.121 @@ -10,6 +10,6 @@ LICENSE=google-chrome RDEPEND=>=app-accessibility/at-spi2-core-2.46.0:2 app-misc/ca-certificates 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/glibc sys-libs/libcap x11-libs/cairo x11-libs/gdk-pixbuf:2 || ( x11-libs/gtk+:3[X] gui-libs/gtk:4[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 qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5[X] dev-qt/qtwidgets:5 ) 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-stable/google-chrome-stable_112.0.5615.49-1_amd64.deb +SRC_URI=https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_112.0.5615.121-1_amd64.deb _eclasses_=chromium-2 93690d770dc2e27deaa89794e2f9fe3f desktop 021728fdc1b03b36357dbc89489e0f0d linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 pax-utils 91d47e5d20627c717aa878b9167c62a8 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e unpacker aa6a4e924009232d8b78b31e932c30b5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=832f633722d2fe1864b0c2632e551f52 diff --git a/metadata/md5-cache/www-client/google-chrome-beta-113.0.5672.24 b/metadata/md5-cache/www-client/google-chrome-beta-113.0.5672.37 similarity index 97% rename from metadata/md5-cache/www-client/google-chrome-beta-113.0.5672.24 rename to metadata/md5-cache/www-client/google-chrome-beta-113.0.5672.37 index c8921155e0e3..32994b2c71a5 100644 --- a/metadata/md5-cache/www-client/google-chrome-beta-113.0.5672.24 +++ b/metadata/md5-cache/www-client/google-chrome-beta-113.0.5672.37 @@ -10,6 +10,6 @@ LICENSE=google-chrome RDEPEND=>=app-accessibility/at-spi2-core-2.46.0:2 app-misc/ca-certificates 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/glibc sys-libs/libcap x11-libs/cairo x11-libs/gdk-pixbuf:2 || ( x11-libs/gtk+:3[X] gui-libs/gtk:4[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 qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5[X] dev-qt/qtwidgets:5 ) 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_113.0.5672.24-1_amd64.deb +SRC_URI=https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-beta/google-chrome-beta_113.0.5672.37-1_amd64.deb _eclasses_=chromium-2 93690d770dc2e27deaa89794e2f9fe3f desktop 021728fdc1b03b36357dbc89489e0f0d linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 pax-utils 91d47e5d20627c717aa878b9167c62a8 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e unpacker aa6a4e924009232d8b78b31e932c30b5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=af0793b63d0070684d513c0045380acb diff --git a/metadata/md5-cache/www-client/microsoft-edge-111.0.1661.62 b/metadata/md5-cache/www-client/microsoft-edge-112.0.1722.48 similarity index 96% rename from metadata/md5-cache/www-client/microsoft-edge-111.0.1661.62 rename to metadata/md5-cache/www-client/microsoft-edge-112.0.1722.48 index 11d661ddb4a6..6b4b163dd6a2 100644 --- a/metadata/md5-cache/www-client/microsoft-edge-111.0.1661.62 +++ b/metadata/md5-cache/www-client/microsoft-edge-112.0.1722.48 @@ -10,6 +10,6 @@ LICENSE=microsoft-edge RDEPEND=>=app-accessibility/at-spi2-core-2.46.0:2 app-misc/ca-certificates 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 sys-libs/glibc 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 mip? ( app-crypt/libsecret ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5[X] dev-qt/qtwidgets:5 ) RESTRICT=bindist mirror strip SLOT=0 -SRC_URI=https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-stable/microsoft-edge-stable_111.0.1661.62-1_amd64.deb +SRC_URI=https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-stable/microsoft-edge-stable_112.0.1722.48-1_amd64.deb _eclasses_=chromium-2 93690d770dc2e27deaa89794e2f9fe3f desktop 021728fdc1b03b36357dbc89489e0f0d linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 pax-utils 91d47e5d20627c717aa878b9167c62a8 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e unpacker aa6a4e924009232d8b78b31e932c30b5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=e3faf660236342ed84650dbc4c099195 diff --git a/metadata/md5-cache/www-client/microsoft-edge-beta-112.0.1722.23 b/metadata/md5-cache/www-client/microsoft-edge-beta-112.0.1722.33 similarity index 96% rename from metadata/md5-cache/www-client/microsoft-edge-beta-112.0.1722.23 rename to metadata/md5-cache/www-client/microsoft-edge-beta-112.0.1722.33 index b39031b883a1..61ef6c447e4a 100644 --- a/metadata/md5-cache/www-client/microsoft-edge-beta-112.0.1722.23 +++ b/metadata/md5-cache/www-client/microsoft-edge-beta-112.0.1722.33 @@ -10,6 +10,6 @@ LICENSE=microsoft-edge RDEPEND=>=app-accessibility/at-spi2-core-2.46.0:2 app-misc/ca-certificates 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 sys-libs/glibc 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 mip? ( app-crypt/libsecret ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5[X] dev-qt/qtwidgets:5 ) RESTRICT=bindist mirror strip SLOT=0 -SRC_URI=https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-beta/microsoft-edge-beta_112.0.1722.23-1_amd64.deb +SRC_URI=https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-beta/microsoft-edge-beta_112.0.1722.33-1_amd64.deb _eclasses_=chromium-2 93690d770dc2e27deaa89794e2f9fe3f desktop 021728fdc1b03b36357dbc89489e0f0d linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 pax-utils 91d47e5d20627c717aa878b9167c62a8 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e unpacker aa6a4e924009232d8b78b31e932c30b5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=c35de9f6a641eab8e5a8a8dc008143f6 diff --git a/metadata/md5-cache/www-client/microsoft-edge-beta-112.0.1722.31 b/metadata/md5-cache/www-client/microsoft-edge-beta-112.0.1722.39 similarity index 96% rename from metadata/md5-cache/www-client/microsoft-edge-beta-112.0.1722.31 rename to metadata/md5-cache/www-client/microsoft-edge-beta-112.0.1722.39 index 99502d4f3ad3..dde2f5bd7938 100644 --- a/metadata/md5-cache/www-client/microsoft-edge-beta-112.0.1722.31 +++ b/metadata/md5-cache/www-client/microsoft-edge-beta-112.0.1722.39 @@ -10,6 +10,6 @@ LICENSE=microsoft-edge RDEPEND=>=app-accessibility/at-spi2-core-2.46.0:2 app-misc/ca-certificates 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 sys-libs/glibc 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 mip? ( app-crypt/libsecret ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5[X] dev-qt/qtwidgets:5 ) RESTRICT=bindist mirror strip SLOT=0 -SRC_URI=https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-beta/microsoft-edge-beta_112.0.1722.31-1_amd64.deb +SRC_URI=https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-beta/microsoft-edge-beta_112.0.1722.39-1_amd64.deb _eclasses_=chromium-2 93690d770dc2e27deaa89794e2f9fe3f desktop 021728fdc1b03b36357dbc89489e0f0d linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 pax-utils 91d47e5d20627c717aa878b9167c62a8 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e unpacker aa6a4e924009232d8b78b31e932c30b5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=c35de9f6a641eab8e5a8a8dc008143f6 diff --git a/metadata/md5-cache/www-client/microsoft-edge-beta-112.0.1722.15 b/metadata/md5-cache/www-client/microsoft-edge-beta-113.0.1774.9 similarity index 96% rename from metadata/md5-cache/www-client/microsoft-edge-beta-112.0.1722.15 rename to metadata/md5-cache/www-client/microsoft-edge-beta-113.0.1774.9 index c09ec26bf79d..19a09415090c 100644 --- a/metadata/md5-cache/www-client/microsoft-edge-beta-112.0.1722.15 +++ b/metadata/md5-cache/www-client/microsoft-edge-beta-113.0.1774.9 @@ -10,6 +10,6 @@ LICENSE=microsoft-edge RDEPEND=>=app-accessibility/at-spi2-core-2.46.0:2 app-misc/ca-certificates 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 sys-libs/glibc 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 mip? ( app-crypt/libsecret ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5[X] dev-qt/qtwidgets:5 ) RESTRICT=bindist mirror strip SLOT=0 -SRC_URI=https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-beta/microsoft-edge-beta_112.0.1722.15-1_amd64.deb +SRC_URI=https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-beta/microsoft-edge-beta_113.0.1774.9-1_amd64.deb _eclasses_=chromium-2 93690d770dc2e27deaa89794e2f9fe3f desktop 021728fdc1b03b36357dbc89489e0f0d linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 pax-utils 91d47e5d20627c717aa878b9167c62a8 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e unpacker aa6a4e924009232d8b78b31e932c30b5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=c35de9f6a641eab8e5a8a8dc008143f6 diff --git a/metadata/md5-cache/www-client/microsoft-edge-dev-113.0.1741.1 b/metadata/md5-cache/www-client/microsoft-edge-dev-113.0.1774.3 similarity index 96% rename from metadata/md5-cache/www-client/microsoft-edge-dev-113.0.1741.1 rename to metadata/md5-cache/www-client/microsoft-edge-dev-113.0.1774.3 index 2646266a113c..5a5e6cec388b 100644 --- a/metadata/md5-cache/www-client/microsoft-edge-dev-113.0.1741.1 +++ b/metadata/md5-cache/www-client/microsoft-edge-dev-113.0.1774.3 @@ -10,6 +10,6 @@ LICENSE=microsoft-edge RDEPEND=>=app-accessibility/at-spi2-core-2.46.0:2 app-misc/ca-certificates 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 sys-libs/glibc 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 mip? ( app-crypt/libsecret ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5[X] dev-qt/qtwidgets:5 ) RESTRICT=bindist mirror strip SLOT=0 -SRC_URI=https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-dev/microsoft-edge-dev_113.0.1741.1-1_amd64.deb +SRC_URI=https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-dev/microsoft-edge-dev_113.0.1774.3-1_amd64.deb _eclasses_=chromium-2 93690d770dc2e27deaa89794e2f9fe3f desktop 021728fdc1b03b36357dbc89489e0f0d linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 pax-utils 91d47e5d20627c717aa878b9167c62a8 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e unpacker aa6a4e924009232d8b78b31e932c30b5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=c35de9f6a641eab8e5a8a8dc008143f6 diff --git a/metadata/md5-cache/www-client/microsoft-edge-dev-113.0.1754.0 b/metadata/md5-cache/www-client/microsoft-edge-dev-113.0.1774.7 similarity index 96% rename from metadata/md5-cache/www-client/microsoft-edge-dev-113.0.1754.0 rename to metadata/md5-cache/www-client/microsoft-edge-dev-113.0.1774.7 index 687caca7f4b2..d3ef4fe73901 100644 --- a/metadata/md5-cache/www-client/microsoft-edge-dev-113.0.1754.0 +++ b/metadata/md5-cache/www-client/microsoft-edge-dev-113.0.1774.7 @@ -10,6 +10,6 @@ LICENSE=microsoft-edge RDEPEND=>=app-accessibility/at-spi2-core-2.46.0:2 app-misc/ca-certificates 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 sys-libs/glibc 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 mip? ( app-crypt/libsecret ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5[X] dev-qt/qtwidgets:5 ) RESTRICT=bindist mirror strip SLOT=0 -SRC_URI=https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-dev/microsoft-edge-dev_113.0.1754.0-1_amd64.deb +SRC_URI=https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-dev/microsoft-edge-dev_113.0.1774.7-1_amd64.deb _eclasses_=chromium-2 93690d770dc2e27deaa89794e2f9fe3f desktop 021728fdc1b03b36357dbc89489e0f0d linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 pax-utils 91d47e5d20627c717aa878b9167c62a8 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e unpacker aa6a4e924009232d8b78b31e932c30b5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=c35de9f6a641eab8e5a8a8dc008143f6 diff --git a/metadata/md5-cache/www-client/microsoft-edge-dev-112.0.1722.7 b/metadata/md5-cache/www-client/microsoft-edge-dev-114.0.1788.0 similarity index 96% rename from metadata/md5-cache/www-client/microsoft-edge-dev-112.0.1722.7 rename to metadata/md5-cache/www-client/microsoft-edge-dev-114.0.1788.0 index d3262a1cdc66..dcd71fd28590 100644 --- a/metadata/md5-cache/www-client/microsoft-edge-dev-112.0.1722.7 +++ b/metadata/md5-cache/www-client/microsoft-edge-dev-114.0.1788.0 @@ -10,6 +10,6 @@ LICENSE=microsoft-edge RDEPEND=>=app-accessibility/at-spi2-core-2.46.0:2 app-misc/ca-certificates 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 sys-libs/glibc 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 mip? ( app-crypt/libsecret ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5[X] dev-qt/qtwidgets:5 ) RESTRICT=bindist mirror strip SLOT=0 -SRC_URI=https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-dev/microsoft-edge-dev_112.0.1722.7-1_amd64.deb +SRC_URI=https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-dev/microsoft-edge-dev_114.0.1788.0-1_amd64.deb _eclasses_=chromium-2 93690d770dc2e27deaa89794e2f9fe3f desktop 021728fdc1b03b36357dbc89489e0f0d linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 pax-utils 91d47e5d20627c717aa878b9167c62a8 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e unpacker aa6a4e924009232d8b78b31e932c30b5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=c35de9f6a641eab8e5a8a8dc008143f6 diff --git a/metadata/md5-cache/www-client/vivaldi-snapshot-5.8.2978.3 b/metadata/md5-cache/www-client/vivaldi-snapshot-6.0.2979.9 similarity index 60% rename from metadata/md5-cache/www-client/vivaldi-snapshot-5.8.2978.3 rename to metadata/md5-cache/www-client/vivaldi-snapshot-6.0.2979.9 index 0bccc042525f..9e1cb838ffa2 100644 --- a/metadata/md5-cache/www-client/vivaldi-snapshot-5.8.2978.3 +++ b/metadata/md5-cache/www-client/vivaldi-snapshot-6.0.2979.9 @@ -4,12 +4,12 @@ EAPI=8 HOMEPAGE=https://vivaldi.com/ IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info INHERIT=chromium-2 desktop linux-info unpacker xdg -IUSE=gtk proprietary-codecs qt5 widevine +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_ur +l10n_vi +l10n_zh-CN +l10n_zh-TW +IUSE=gtk proprietary-codecs qt5 widevine +l10n_af +l10n_am +l10n_ar +l10n_az +l10n_be +l10n_bg +l10n_bn +l10n_ca +l10n_ca-valencia +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_ur +l10n_vi +l10n_zh-CN +l10n_zh-TW KEYWORDS=-* ~amd64 ~arm ~arm64 LICENSE=Vivaldi RDEPEND=|| ( >=app-accessibility/at-spi2-core-2.46.0:2 ( app-accessibility/at-spi2-atk dev-libs/atk ) ) dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/mesa[gbm(+)] net-print/cups sys-apps/dbus x11-libs/cairo x11-libs/libdrm x11-libs/libX11 x11-libs/libxcb x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libxkbcommon x11-libs/libXrandr x11-libs/pango[X] gtk? ( gui-libs/gtk:4 x11-libs/gtk+:3 ) proprietary-codecs? ( media-video/ffmpeg-chromium:106 ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) widevine? ( www-plugins/chrome-binary-plugins ) RESTRICT=bindist mirror SLOT=0 -SRC_URI=amd64? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_5.8.2978.3-1_amd64.deb ) arm? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_5.8.2978.3-1_armhf.deb ) arm64? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_5.8.2978.3-1_arm64.deb ) +SRC_URI=amd64? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_6.0.2979.9-1_amd64.deb ) arm? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_6.0.2979.9-1_armhf.deb ) arm64? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_6.0.2979.9-1_arm64.deb ) _eclasses_=chromium-2 93690d770dc2e27deaa89794e2f9fe3f desktop 021728fdc1b03b36357dbc89489e0f0d linux-info c4f1201b96a8a2c1f3b86cc8b2c71c91 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e unpacker aa6a4e924009232d8b78b31e932c30b5 xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=852e141799e1d86c69358233638f2118 +_md5_=9baf2a81a21e7f9875a56355fc4f3d9a diff --git a/metadata/md5-cache/www-plugins/Manifest.gz b/metadata/md5-cache/www-plugins/Manifest.gz index 7f93c94e9147..01615ea7911d 100644 Binary files a/metadata/md5-cache/www-plugins/Manifest.gz and b/metadata/md5-cache/www-plugins/Manifest.gz differ diff --git a/metadata/md5-cache/www-plugins/browserpass-3.0.10 b/metadata/md5-cache/www-plugins/browserpass-3.0.10 index d642631fd6ec..2b35b35ef192 100644 --- a/metadata/md5-cache/www-plugins/browserpass-3.0.10 +++ b/metadata/md5-cache/www-plugins/browserpass-3.0.10 @@ -10,5 +10,5 @@ RDEPEND=app-crypt/gnupg RESTRICT=strip SLOT=0 SRC_URI=https://github.com/browserpass/browserpass-native/archive/3.0.10.tar.gz -> browserpass-3.0.10.tar.gz https://dev.gentoo.org/~mattst88/distfiles/browserpass-3.0.10-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=d668fb0e0e216fc265a78c722c21b3ce diff --git a/metadata/md5-cache/www-plugins/browserpass-3.1.0 b/metadata/md5-cache/www-plugins/browserpass-3.1.0 index d2450ca7268e..35e784b5adfe 100644 --- a/metadata/md5-cache/www-plugins/browserpass-3.1.0 +++ b/metadata/md5-cache/www-plugins/browserpass-3.1.0 @@ -10,5 +10,5 @@ RDEPEND=app-crypt/gnupg RESTRICT=strip SLOT=0 SRC_URI=https://github.com/browserpass/browserpass-native/archive/3.1.0.tar.gz -> browserpass-3.1.0.tar.gz https://dev.gentoo.org/~mattst88/distfiles/browserpass-3.1.0-deps.tar.xz -_eclasses_=go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=e430d59d34c0e9ae8567de8c86fe4eb7 diff --git a/metadata/md5-cache/www-plugins/chrome-binary-plugins-112.0.5615.49 b/metadata/md5-cache/www-plugins/chrome-binary-plugins-112.0.5615.121 similarity index 91% rename from metadata/md5-cache/www-plugins/chrome-binary-plugins-112.0.5615.49 rename to metadata/md5-cache/www-plugins/chrome-binary-plugins-112.0.5615.121 index bb15b1f15c9c..e9a7dd07e6aa 100644 --- a/metadata/md5-cache/www-plugins/chrome-binary-plugins-112.0.5615.49 +++ b/metadata/md5-cache/www-plugins/chrome-binary-plugins-112.0.5615.121 @@ -8,6 +8,6 @@ LICENSE=google-chrome RDEPEND=dev-libs/glib:2 dev-libs/nspr dev-libs/nss sys-libs/glibc !www-plugins/chrome-binary-plugins:0 !www-plugins/chrome-binary-plugins:beta !www-plugins/chrome-binary-plugins:unstable RESTRICT=bindist mirror strip SLOT=stable -SRC_URI=https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_112.0.5615.49-1_amd64.deb +SRC_URI=https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_112.0.5615.121-1_amd64.deb _eclasses_=multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e unpacker aa6a4e924009232d8b78b31e932c30b5 _md5_=56740527e70db7fbbcef87ad68552159 diff --git a/metadata/md5-cache/www-plugins/chrome-binary-plugins-113.0.5672.24_beta b/metadata/md5-cache/www-plugins/chrome-binary-plugins-113.0.5672.37_beta similarity index 92% rename from metadata/md5-cache/www-plugins/chrome-binary-plugins-113.0.5672.24_beta rename to metadata/md5-cache/www-plugins/chrome-binary-plugins-113.0.5672.37_beta index ecb0ef6d3749..964c454410ba 100644 --- a/metadata/md5-cache/www-plugins/chrome-binary-plugins-113.0.5672.24_beta +++ b/metadata/md5-cache/www-plugins/chrome-binary-plugins-113.0.5672.37_beta @@ -8,6 +8,6 @@ LICENSE=google-chrome RDEPEND=dev-libs/glib:2 dev-libs/nspr dev-libs/nss sys-libs/glibc !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_113.0.5672.24-1_amd64.deb +SRC_URI=https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-beta/google-chrome-beta_113.0.5672.37-1_amd64.deb _eclasses_=multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e unpacker aa6a4e924009232d8b78b31e932c30b5 _md5_=eaa785838d85936e9a01ebeaaf056ec1 diff --git a/metadata/md5-cache/www-servers/Manifest.gz b/metadata/md5-cache/www-servers/Manifest.gz index 244fed7fbb81..d7bdf64e8d9d 100644 Binary files a/metadata/md5-cache/www-servers/Manifest.gz and b/metadata/md5-cache/www-servers/Manifest.gz differ diff --git a/metadata/md5-cache/www-servers/caddy-2.5.2 b/metadata/md5-cache/www-servers/caddy-2.5.2 index 1e425b7cf72f..6b9f11590d59 100644 --- a/metadata/md5-cache/www-servers/caddy-2.5.2 +++ b/metadata/md5-cache/www-servers/caddy-2.5.2 @@ -12,5 +12,5 @@ RDEPEND=acct-user/http acct-group/http filecaps? ( sys-libs/libcap ) RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/caddyserver/caddy/archive/v2.5.2.tar.gz -> caddy-2.5.2.tar.gz https://dev.gentoo.org/~zmedico/dist/caddy-2.5.2-deps.tar.xz -_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=499482260efe71ce132da30cb0667c5a diff --git a/metadata/md5-cache/www-servers/caddy-2.6.2 b/metadata/md5-cache/www-servers/caddy-2.6.2 index a6cc8d5fafca..c8b6dea817fa 100644 --- a/metadata/md5-cache/www-servers/caddy-2.6.2 +++ b/metadata/md5-cache/www-servers/caddy-2.6.2 @@ -12,5 +12,5 @@ RDEPEND=acct-user/http acct-group/http filecaps? ( sys-libs/libcap ) RESTRICT=strip test SLOT=0 SRC_URI=https://github.com/caddyserver/caddy/archive/v2.6.2.tar.gz -> caddy-2.6.2.tar.gz https://dev.gentoo.org/~zmedico/dist/caddy-2.6.2-deps.tar.xz -_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=499482260efe71ce132da30cb0667c5a diff --git a/metadata/md5-cache/www-servers/caddy-2.6.4 b/metadata/md5-cache/www-servers/caddy-2.6.4 index 318c6864794b..a917569859b2 100644 --- a/metadata/md5-cache/www-servers/caddy-2.6.4 +++ b/metadata/md5-cache/www-servers/caddy-2.6.4 @@ -13,5 +13,5 @@ RDEPEND=acct-user/http acct-group/http RESTRICT=test strip SLOT=0 SRC_URI=https://github.com/caddyserver/caddy/archive/v2.6.4.tar.gz -> caddy-2.6.4.tar.gz https://dev.gentoo.org/~zmedico/dist/caddy-2.6.4-deps.tar.xz -_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module f9700c7efec1fd4955363169e9930c1c multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=fcaps c0a086b957a1b183a8d136eabf02f191 go-module 9c75e51a48520b2f01471c1f91762882 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=de29f2ad14c8cfa064b33f0d70a19287 diff --git a/metadata/md5-cache/www-servers/uwsgi-2.0.21 b/metadata/md5-cache/www-servers/uwsgi-2.0.21 index 4cd2ee5e9df7..18b90769104a 100644 --- a/metadata/md5-cache/www-servers/uwsgi-2.0.21 +++ b/metadata/md5-cache/www-servers/uwsgi-2.0.21 @@ -12,5 +12,5 @@ RDEPEND=sys-libs/zlib virtual/libcrypt:= caps? ( sys-libs/libcap ) json? ( !yajl REQUIRED_USE=|| ( cgi mono perl go lua php python python-asyncio ruby ) uwsgi_plugins_logcrypto? ( ssl ) uwsgi_plugins_sslrouter? ( ssl ) routing? ( pcre ) uwsgi_plugins_emperor_pg? ( || ( postgres_targets_postgres15 postgres_targets_postgres14 postgres_targets_postgres13 ) ) uwsgi_plugins_emperor_zeromq? ( zeromq ) uwsgi_plugins_forkptyrouter? ( uwsgi_plugins_corerouter ) uwsgi_plugins_router_xmldir? ( xml !expat ) lua? ( ^^ ( lua_single_target_lua5-1 ) ) python? ( || ( python_targets_python3_9 python_targets_python3_10 python_targets_python3_11 ) ) python-asyncio? ( python ) expat? ( xml ) php? ( || ( php_targets_php7-4 php_targets_php8-0 php_targets_php8-1 php_targets_php8-2 ) ) SLOT=0 SRC_URI=https://github.com/unbit/uwsgi/archive/2.0.21.tar.gz -> uwsgi-2.0.21.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a eapi8-dosym 741bfa77afb2a9321261501aca58c208 estack 055c42df72f76a4f45ec92b35e83cd56 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pax-utils 91d47e5d20627c717aa878b9167c62a8 php-ext-source-r3 3a4893beb5327f4519ae3278ef151fa7 postgres 7233fc439696bbab8442204f0f284645 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 ruby-ng 76a677328d71b04b457f26be67717028 ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a eapi8-dosym 741bfa77afb2a9321261501aca58c208 estack 055c42df72f76a4f45ec92b35e83cd56 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b lua-single 86d497a20c93c7ce83af442f627515c1 lua-utils d37a16dbcc1f07f71bc48da75ed7a0cb multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 pax-utils 91d47e5d20627c717aa878b9167c62a8 php-ext-source-r3 3a4893beb5327f4519ae3278ef151fa7 postgres 43fa70d2d8740e8e0149e6da1995ea28 python-r1 3c6cd0f418ba702c186a9865b85e704d python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 ruby-ng 76a677328d71b04b457f26be67717028 ruby-utils 2412b1152083f1e866ae6df229d51d30 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=aa9e358a7641c3d3129141a7c9bec051 diff --git a/metadata/md5-cache/x11-libs/Manifest.gz b/metadata/md5-cache/x11-libs/Manifest.gz index 76fbde52fa6e..4f62f2bc35fb 100644 Binary files a/metadata/md5-cache/x11-libs/Manifest.gz and b/metadata/md5-cache/x11-libs/Manifest.gz differ diff --git a/metadata/md5-cache/x11-libs/libXft-2.3.8 b/metadata/md5-cache/x11-libs/libXft-2.3.8 new file mode 100644 index 000000000000..8ce41d0843cb --- /dev/null +++ b/metadata/md5-cache/x11-libs/libXft-2.3.8 @@ -0,0 +1,15 @@ +BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 x86-winnt? ( >=sys-devel/libtool-2.2.6a sys-devel/m4 >=x11-misc/util-macros-1.18 >=media-fonts/font-util-1.2.0 ) virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=>=media-libs/fontconfig-2.10.92[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/freetype-2.5.0.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(-)?] virtual/ttf-fonts >=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXrender-0.9.8[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-base/xorg-proto +DESCRIPTION=X.Org Xft library +EAPI=8 +HOMEPAGE=https://www.x.org/wiki/ https://gitlab.freedesktop.org/xorg/lib/libXft +INHERIT=xorg-3 +IUSE=doc 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 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt +LICENSE=MIT +RDEPEND=>=media-libs/fontconfig-2.10.92[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/freetype-2.5.0.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(-)?] virtual/ttf-fonts >=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXrender-0.9.8[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.x.org/releases/individual/lib/libXft-2.3.8.tar.xz +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xorg-3 5a9d0eaf387b253edab4a38cd6cfdfe3 +_md5_=abb80e1fe8c1448bbdc07594fd00d5d1 diff --git a/metadata/md5-cache/x11-libs/libXpm-3.5.16 b/metadata/md5-cache/x11-libs/libXpm-3.5.16 new file mode 100644 index 000000000000..55e5560202e3 --- /dev/null +++ b/metadata/md5-cache/x11-libs/libXpm-3.5.16 @@ -0,0 +1,16 @@ +BDEPEND=sys-devel/gettext test? ( app-arch/gzip app-arch/ncompress ) sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 x86-winnt? ( >=sys-devel/libtool-2.2.6a sys-devel/m4 >=x11-misc/util-macros-1.18 >=media-fonts/font-util-1.2.0 ) virtual/pkgconfig doc? ( doc? ( || ( app-text/asciidoc dev-ruby/asciidoctor ) app-text/xmlto app-text/docbook-xml-dtd:4.1.2 app-text/docbook-xml-dtd:4.2 app-text/docbook-xml-dtd:4.3 ) ) +DEFINED_PHASES=compile configure install postinst postrm prepare test unpack +DEPEND=>=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXt-1.1.4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] app-arch/gzip app-arch/ncompress x11-base/xorg-proto test? ( >=dev-libs/glib-2.46:2 ) +DESCRIPTION=X.Org Xpm library +EAPI=8 +HOMEPAGE=https://www.x.org/wiki/ https://gitlab.freedesktop.org/xorg/lib/libXpm +INHERIT=xorg-3 +IUSE=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 doc +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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=>=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXt-1.1.4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] app-arch/gzip app-arch/ncompress +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://www.x.org/releases/individual/lib/libXpm-3.5.16.tar.xz +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b out-of-source-utils 1a9007554652a6e627edbccb3c25a439 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xorg-3 5a9d0eaf387b253edab4a38cd6cfdfe3 +_md5_=73c962dd09ae118bb83d7d1dbff19977 diff --git a/metadata/md5-cache/x11-libs/libfm-qt-1.3.0 b/metadata/md5-cache/x11-libs/libfm-qt-1.3.0 new file mode 100644 index 000000000000..501ecbec8d2d --- /dev/null +++ b/metadata/md5-cache/x11-libs/libfm-qt-1.3.0 @@ -0,0 +1,14 @@ +BDEPEND=>=dev-qt/linguist-tools-5.15:5 >=dev-util/lxqt-build-tools-0.13.0 virtual/pkgconfig >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install postinst postrm prepare test +DEPEND=dev-libs/glib:2 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5= >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 >=lxde-base/menu-cache-1.1.0:= media-libs/libexif x11-libs/libxcb:= +DESCRIPTION=Qt Library for Building File Managers +EAPI=8 +HOMEPAGE=https://lxqt-project.org/ +INHERIT=cmake xdg-utils +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86 +LICENSE=BSD GPL-2+ LGPL-2.1+ +RDEPEND=dev-libs/glib:2 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5= >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 >=lxde-base/menu-cache-1.1.0:= media-libs/libexif x11-libs/libxcb:= +SLOT=0/7 +SRC_URI=https://github.com/lxqt/libfm-qt/releases/download/1.3.0/libfm-qt-1.3.0.tar.xz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=f87c2a1c9a2d62c83ea70829be448e5f diff --git a/metadata/md5-cache/x11-libs/qtermwidget-1.3.0 b/metadata/md5-cache/x11-libs/qtermwidget-1.3.0 new file mode 100644 index 000000000000..f4dd0de16c16 --- /dev/null +++ b/metadata/md5-cache/x11-libs/qtermwidget-1.3.0 @@ -0,0 +1,14 @@ +BDEPEND=>=dev-qt/linguist-tools-5.15:5 >=dev-util/lxqt-build-tools-0.13.0 >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 +DESCRIPTION=Qt terminal emulator widget +EAPI=8 +HOMEPAGE=https://lxqt-project.org/ +INHERIT=cmake +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86 +LICENSE=BSD GPL-2 LGPL-2+ +RDEPEND=>=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 +SLOT=0/1.3.0 +SRC_URI=https://github.com/lxqt/qtermwidget/releases/download/1.3.0/qtermwidget-1.3.0.tar.xz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=4abfa3171ea862c69473b1d81d9ce607 diff --git a/metadata/md5-cache/x11-libs/vte-0.72.1 b/metadata/md5-cache/x11-libs/vte-0.72.1 new file mode 100644 index 000000000000..5fe90c0edb18 --- /dev/null +++ b/metadata/md5-cache/x11-libs/vte-0.72.1 @@ -0,0 +1,17 @@ +BDEPEND=|| ( >=dev-lang/python-3.11.1-r1:3.11 >=dev-lang/python-3.10.9-r1:3.10 >=dev-lang/python-3.9.16-r1:3.9 ) dev-libs/libxml2:2 dev-util/glib-utils gtk-doc? ( dev-util/gi-docgen ) >=sys-devel/gettext-0.19.8 virtual/pkgconfig vala? ( || ( dev-lang/vala:0.56 ) ) app-arch/xz-utils >=dev-util/meson-0.62.2 >=dev-util/ninja-1.8.2 dev-util/meson-format-array +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test +DEPEND=>=x11-libs/gtk+-3.24.22:3[introspection?] >=dev-libs/fribidi-1.0.0 >=dev-libs/glib-2.60:2 crypt? ( >=net-libs/gnutls-3.2.7:0= ) icu? ( dev-libs/icu:= ) >=x11-libs/pango-1.22.0 >=dev-libs/libpcre2-10.21:= systemd? ( >=sys-apps/systemd-220:= ) sys-libs/zlib introspection? ( >=dev-libs/gobject-introspection-1.56:= ) x11-libs/pango[introspection?] +DESCRIPTION=Library providing a virtual terminal emulator widget +EAPI=8 +HOMEPAGE=https://wiki.gnome.org/Apps/Terminal/VTE +IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +INHERIT=gnome.org meson python-any-r1 vala xdg +IUSE=+crypt debug gtk-doc +icu +introspection systemd +vala vanilla +KEYWORDS=~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 +LICENSE=LGPL-3+ GPL-3+ +RDEPEND=>=x11-libs/gtk+-3.24.22:3[introspection?] >=dev-libs/fribidi-1.0.0 >=dev-libs/glib-2.60:2 crypt? ( >=net-libs/gnutls-3.2.7:0= ) icu? ( dev-libs/icu:= ) >=x11-libs/pango-1.22.0 >=dev-libs/libpcre2-10.21:= systemd? ( >=sys-apps/systemd-220:= ) sys-libs/zlib introspection? ( >=dev-libs/gobject-introspection-1.56:= ) x11-libs/pango[introspection?] ~gui-libs/vte-common-0.72.1[systemd?] +REQUIRED_USE=gtk-doc? ( introspection ) vala? ( introspection ) +SLOT=2.91 +SRC_URI=https://gitlab.gnome.org/GNOME/vte/-/archive/0.72.1/vte-0.72.1.tar.bz2 !vanilla? ( https://dev.gentoo.org/~mattst88/distfiles/vte-0.70.0-command-notify.patch.xz ) +_eclasses_=gnome.org 6b39404f1491c60a2d32e3c693a683fe meson 915ec7c25e08d7886558215e6809ca1e multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-any-r1 d2955aaac8daaaa69fcc6dc93ed19f29 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e vala 1343f639cc74d2aa8b36fc08677da58d xdg 4a14c5c24f121e7da66e5aab4a168c6e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=f68fbd63d4f19ae31e0fe15f3891c441 diff --git a/metadata/md5-cache/x11-misc/Manifest.gz b/metadata/md5-cache/x11-misc/Manifest.gz index 25efd545c5c9..f45ac377aab8 100644 Binary files a/metadata/md5-cache/x11-misc/Manifest.gz and b/metadata/md5-cache/x11-misc/Manifest.gz differ diff --git a/metadata/md5-cache/x11-misc/albert-0.20.13 b/metadata/md5-cache/x11-misc/albert-0.20.13 new file mode 100644 index 000000000000..9f6e6113e88b --- /dev/null +++ b/metadata/md5-cache/x11-misc/albert-0.20.13 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install postinst postrm prepare setup test +DEPEND=dev-cpp/muParser dev-qt/qtbase:6[concurrent,dbus,gui,network,sql,sqlite,widgets] dev-qt/qtscxml:6 dev-qt/qtsvg:6 python? ( python_single_target_python3_10? ( dev-python/urllib3[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/urllib3[python_targets_python3_11(-)] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) dev-libs/qhotkey[qt6] python? ( python_single_target_python3_10? ( dev-python/pybind11[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pybind11[python_targets_python3_11(-)] ) ) sci-libs/libqalculate +DESCRIPTION=A fast and flexible keyboard launcher +EAPI=8 +HOMEPAGE=https://albertlauncher.github.io/ +INHERIT=cmake python-single-r1 xdg-utils +IUSE=debug +python +python-extensions python_single_target_python3_10 python_single_target_python3_11 +KEYWORDS=~amd64 +LICENSE=all-rights-reserved +RDEPEND=dev-cpp/muParser dev-qt/qtbase:6[concurrent,dbus,gui,network,sql,sqlite,widgets] dev-qt/qtscxml:6 dev-qt/qtsvg:6 python? ( python_single_target_python3_10? ( dev-python/urllib3[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/urllib3[python_targets_python3_11(-)] ) python_single_target_python3_10? ( >=dev-lang/python-3.10.9-r1:3.10 ) python_single_target_python3_11? ( >=dev-lang/python-3.11.1-r1:3.11 ) ) +REQUIRED_USE=python-extensions? ( python ) python? ( ^^ ( python_single_target_python3_10 python_single_target_python3_11 ) ) +SLOT=0 +SRC_URI=https://github.com/albertlauncher/albert/archive/v0.20.13.tar.gz -> albert-0.20.13.tar.gz https://github.com/albertlauncher/plugins/archive/7eebb033005f2aab74f59cadecb7ec185a1cfcbe.tar.gz -> albert-plugins-7eebb033005f2aab74f59cadecb7ec185a1cfcbe.tar.gz python-extensions? ( https://github.com/albertlauncher/python/archive/29582644bfc992f66d306ff91057b7fdb9d0682e.tar.gz -> albert-python-extensions-29582644bfc992f66d306ff91057b7fdb9d0682e.tar.gz ) +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=c62128e53898d8762b025a80b5f0c5c3 diff --git a/metadata/md5-cache/x11-misc/emacs-desktop-mail-1.2 b/metadata/md5-cache/x11-misc/emacs-desktop-mail-1.2 index 82b0069d183e..af710f635e35 100644 --- a/metadata/md5-cache/x11-misc/emacs-desktop-mail-1.2 +++ b/metadata/md5-cache/x11-misc/emacs-desktop-mail-1.2 @@ -1,5 +1,5 @@ BDEPEND=>=app-editors/emacs-28:* -DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DESCRIPTION=Desktop entries for handling mailto URIs with GNU Emacs EAPI=8 HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Emacs @@ -8,5 +8,5 @@ KEYWORDS=~amd64 ~x86 LICENSE=GPL-2+ RDEPEND=>=app-editors/emacs-28:* SLOT=0 -_eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d elisp 4885a6bf2026d3a2d5b9789f3b76d1f3 elisp-common 1d6e8d43be4713f04a441f721d890d48 xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d elisp 7190c722d9e06fabcae26ef1e1dc9183 elisp-common dcd21c5d379fc2217e95f529504c5fe0 xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=1d0d1ccf9bd0737cacf2d4aab055b56c diff --git a/metadata/md5-cache/x11-misc/j4-dmenu-desktop-2.18-r1 b/metadata/md5-cache/x11-misc/j4-dmenu-desktop-2.18-r1 index 6f534eddcd33..01e1d4f016bb 100644 --- a/metadata/md5-cache/x11-misc/j4-dmenu-desktop-2.18-r1 +++ b/metadata/md5-cache/x11-misc/j4-dmenu-desktop-2.18-r1 @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/enkore/j4-dmenu-desktop/archive/r2.18.tar.gz -> j4-dmenu-desktop-2.18.tar.gz _eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=a738522db4e11270298ce3e9295abc2f +_md5_=aff544585b4f72f977df1a8d7206aee9 diff --git a/metadata/md5-cache/x11-misc/pcmanfm-qt-1.3.0 b/metadata/md5-cache/x11-misc/pcmanfm-qt-1.3.0 new file mode 100644 index 000000000000..921e4e38d684 --- /dev/null +++ b/metadata/md5-cache/x11-misc/pcmanfm-qt-1.3.0 @@ -0,0 +1,14 @@ +BDEPEND=>=dev-qt/linguist-tools-5.15:5 >=dev-util/lxqt-build-tools-0.13.0 >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install postinst postrm prepare test +DEPEND=dev-libs/glib:2 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 sys-apps/util-linux virtual/freedesktop-icon-theme =x11-libs/libfm-qt-1.3*:= x11-libs/libxcb:= x11-misc/xdg-utils +DESCRIPTION=Qt GUI Tabbed Filemanager +EAPI=8 +HOMEPAGE=https://lxqt-project.org/ +INHERIT=cmake optfeature xdg-utils +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86 +LICENSE=GPL-2 GPL-2+ LGPL-2.1+ +RDEPEND=dev-libs/glib:2 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 sys-apps/util-linux virtual/freedesktop-icon-theme =x11-libs/libfm-qt-1.3*:= x11-libs/libxcb:= x11-misc/xdg-utils >=lxde-base/lxmenu-data-0.1.5 +SLOT=0 +SRC_URI=https://github.com/lxqt/pcmanfm-qt/releases/download/1.3.0/pcmanfm-qt-1.3.0.tar.xz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=542ac1aea43edcea9c18e56bb6ec033c diff --git a/metadata/md5-cache/x11-misc/qps-2.7.0 b/metadata/md5-cache/x11-misc/qps-2.7.0 new file mode 100644 index 000000000000..a8e4b21407c9 --- /dev/null +++ b/metadata/md5-cache/x11-misc/qps-2.7.0 @@ -0,0 +1,14 @@ +BDEPEND=>=dev-qt/linguist-tools-5.15:5 >=dev-util/lxqt-build-tools-0.13.0 >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install postinst postrm prepare test +DEPEND=>=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=lxqt-base/liblxqt-1.3:= +DESCRIPTION=Qt GUI Process Manager +EAPI=8 +HOMEPAGE=https://lxqt-project.org/ +INHERIT=cmake xdg-utils +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~riscv ~x86 +LICENSE=GPL-2 GPL-2+ LGPL-2.1+ QPL-1.0 +RDEPEND=>=dev-qt/qtcore-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=lxqt-base/liblxqt-1.3:= +SLOT=0 +SRC_URI=https://github.com/lxqt/qps/releases/download/2.7.0/qps-2.7.0.tar.xz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=3923e559303c5bfc08349e3bc48e9f51 diff --git a/metadata/md5-cache/x11-misc/screengrab-2.6.0 b/metadata/md5-cache/x11-misc/screengrab-2.6.0 new file mode 100644 index 000000000000..e4d619a343b5 --- /dev/null +++ b/metadata/md5-cache/x11-misc/screengrab-2.6.0 @@ -0,0 +1,14 @@ +BDEPEND=dev-qt/linguist-tools:5 >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install postinst postrm prepare test +DEPEND=>=dev-libs/libqtxdg-3.11.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtnetwork-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 kde-frameworks/kwindowsystem:5[X] x11-libs/libX11 x11-libs/libxcb:= +DESCRIPTION=Qt GUI Screenshot Utility +EAPI=8 +HOMEPAGE=https://lxqt.github.io/ +INHERIT=cmake xdg-utils +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~riscv ~x86 +LICENSE=GPL-2 GPL-2+ LGPL-2.1+ +RDEPEND=>=dev-libs/libqtxdg-3.11.0 >=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtnetwork-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 kde-frameworks/kwindowsystem:5[X] x11-libs/libX11 x11-libs/libxcb:= +SLOT=0 +SRC_URI=https://github.com/lxqt/screengrab/releases/download/2.6.0/screengrab-2.6.0.tar.xz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=a51f5fe9b56e5f44a60249db7711c376 diff --git a/metadata/md5-cache/x11-misc/synergy-1.14.1.32 b/metadata/md5-cache/x11-misc/synergy-1.14.1.32 index 318d3ef45337..9ef8b07ffb7f 100644 --- a/metadata/md5-cache/x11-misc/synergy-1.14.1.32 +++ b/metadata/md5-cache/x11-misc/synergy-1.14.1.32 @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/symless/synergy-core/archive/1.14.1.32-stable.tar.gz -> synergy-core-1.14.1.32-stable.tar.gz https://dev.gentoo.org/~mgorny/dist/synergy-1.12.0.png test? ( https://github.com/google/googletest/archive/18f8200e3079b0e54fa00cb7ac55d4c39dcf6da6.tar.gz -> googletest-18f8200e3079b0e54fa00cb7ac55d4c39dcf6da6.tar.gz ) _eclasses_=cmake 7fb5980de96325cbab639f5b2187357c desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 8f942ebdcf04334697649d4a0bf65a32 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e virtualx 817571665ee28575da44ee08135089e5 wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=a44640ea53aca19a228a3a69a722f4cb +_md5_=a587d3b6799ea3cb6e06453f54d21227 diff --git a/metadata/md5-cache/x11-misc/virtualgl-3.0.1 b/metadata/md5-cache/x11-misc/virtualgl-3.0.1 deleted file mode 100644 index 50375bd62fa6..000000000000 --- a/metadata/md5-cache/x11-misc/virtualgl-3.0.1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 virtual/pkgconfig -DEFINED_PHASES=compile configure install prepare test -DEPEND=ssl? ( dev-libs/openssl: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(-)?] ) media-libs/libjpeg-turbo[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(-)?] x11-libs/libXtst[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/libXv[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/xcb-util-keysyms[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/glu[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] amd64? ( abi_x86_32? ( >=media-libs/libjpeg-turbo-1.3.0-r3[abi_x86_32] >=x11-libs/libX11-1.6.2[abi_x86_32] >=x11-libs/libXext-1.3.2[abi_x86_32] >=x11-libs/libXtst-1.2.3[abi_x86_32] >=x11-libs/libXv-1.0.10[abi_x86_32] x11-libs/xcb-util-keysyms[abi_x86_32] >=virtual/glu-9.0-r1[abi_x86_32] virtual/opencl[abi_x86_32] >=virtual/opengl-7.0-r1[abi_x86_32] ) ) -DESCRIPTION=Run OpenGL applications remotely with full 3D hardware acceleration -EAPI=8 -HOMEPAGE=https://www.virtualgl.org/ -INHERIT=cmake-multilib flag-o-matic systemd -IUSE=ssl 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 x86 -LICENSE=LGPL-2.1 wxWinLL-3.1 FLTK -RDEPEND=ssl? ( dev-libs/openssl: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(-)?] ) media-libs/libjpeg-turbo[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(-)?] x11-libs/libXtst[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/libXv[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/xcb-util-keysyms[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/glu[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] amd64? ( abi_x86_32? ( >=media-libs/libjpeg-turbo-1.3.0-r3[abi_x86_32] >=x11-libs/libX11-1.6.2[abi_x86_32] >=x11-libs/libXext-1.3.2[abi_x86_32] >=x11-libs/libXtst-1.2.3[abi_x86_32] >=x11-libs/libXv-1.0.10[abi_x86_32] x11-libs/xcb-util-keysyms[abi_x86_32] >=virtual/glu-9.0-r1[abi_x86_32] virtual/opencl[abi_x86_32] >=virtual/opengl-7.0-r1[abi_x86_32] ) ) -SLOT=0 -SRC_URI=mirror://sourceforge/project/virtualgl/3.0.1/VirtualGL-3.0.1.tar.gz -_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c cmake-multilib 37d23064f303dcf23453353ab8c77059 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 -_md5_=b65faed1693b4aa4ba1eadd2ce8135b2 diff --git a/metadata/md5-cache/x11-misc/virtualgl-3.1 b/metadata/md5-cache/x11-misc/virtualgl-3.1 new file mode 100644 index 000000000000..95ec3396c6ea --- /dev/null +++ b/metadata/md5-cache/x11-misc/virtualgl-3.1 @@ -0,0 +1,15 @@ +BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 virtual/pkgconfig +DEFINED_PHASES=compile configure install prepare test +DEPEND=media-libs/libjpeg-turbo[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(-)?] x11-libs/libXtst[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/libXv[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/xcb-util-keysyms[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/glu[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] amd64? ( abi_x86_32? ( >=media-libs/libjpeg-turbo-1.3.0-r3[abi_x86_32] >=x11-libs/libX11-1.6.2[abi_x86_32] >=x11-libs/libXext-1.3.2[abi_x86_32] >=x11-libs/libXtst-1.2.3[abi_x86_32] >=x11-libs/libXv-1.0.10[abi_x86_32] x11-libs/xcb-util-keysyms[abi_x86_32] >=virtual/glu-9.0-r1[abi_x86_32] virtual/opencl[abi_x86_32] >=virtual/opengl-7.0-r1[abi_x86_32] ) ) +DESCRIPTION=Run OpenGL applications remotely with full 3D hardware acceleration +EAPI=8 +HOMEPAGE=https://www.virtualgl.org/ +INHERIT=cmake-multilib flag-o-matic systemd +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=~amd64 ~x86 +LICENSE=LGPL-2.1 wxWinLL-3.1 FLTK +RDEPEND=media-libs/libjpeg-turbo[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(-)?] x11-libs/libXtst[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/libXv[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/xcb-util-keysyms[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/glu[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/opencl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] amd64? ( abi_x86_32? ( >=media-libs/libjpeg-turbo-1.3.0-r3[abi_x86_32] >=x11-libs/libX11-1.6.2[abi_x86_32] >=x11-libs/libXext-1.3.2[abi_x86_32] >=x11-libs/libXtst-1.2.3[abi_x86_32] >=x11-libs/libXv-1.0.10[abi_x86_32] x11-libs/xcb-util-keysyms[abi_x86_32] >=virtual/glu-9.0-r1[abi_x86_32] virtual/opencl[abi_x86_32] >=virtual/opengl-7.0-r1[abi_x86_32] ) ) +SLOT=0 +SRC_URI=mirror://sourceforge/project/virtualgl/3.1/VirtualGL-3.1.tar.gz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c cmake-multilib 37d23064f303dcf23453353ab8c77059 flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib d1408425c7c4a7669b9b17735404b693 multilib-build e8aed98bd43dbd25694310a660ad562c multilib-minimal 4b0f1857965db8869a729948d5277e0b multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 systemd 5f4bb0758df2e483babf68cd517078ca toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=b5a2c9e6c81032cbfbeb4ddce1135aac diff --git a/metadata/md5-cache/x11-misc/xsel-1.2.0_p20220310 b/metadata/md5-cache/x11-misc/xsel-1.2.0_p20220310 new file mode 100644 index 000000000000..b4e6620502f5 --- /dev/null +++ b/metadata/md5-cache/x11-misc/xsel-1.2.0_p20220310 @@ -0,0 +1,14 @@ +BDEPEND=virtual/pkgconfig sys-devel/gnuconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.5:1.16 ) >=sys-devel/autoconf-2.71-r5 >=sys-devel/libtool-2.4.7 +DEFINED_PHASES=prepare +DEPEND=x11-libs/libX11 +DESCRIPTION=Command-line program for getting and setting the contents of the X selection +EAPI=8 +HOMEPAGE=https://vergenet.net/~conrad/software/xsel +INHERIT=autotools +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris +LICENSE=HPND +RDEPEND=x11-libs/libX11 +SLOT=0 +SRC_URI=https://github.com/kfish/xsel/archive/9fc4e3e4e3f1231cabfdc2e1438155f9390bc517.tar.gz -> xsel-1.2.0_p20220310.tar.gz +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_md5_=d0c07ec0aa748353df4b32e97016795f diff --git a/metadata/md5-cache/x11-terms/Manifest.gz b/metadata/md5-cache/x11-terms/Manifest.gz index 903a92b4622c..6453271b83d8 100644 Binary files a/metadata/md5-cache/x11-terms/Manifest.gz and b/metadata/md5-cache/x11-terms/Manifest.gz differ diff --git a/metadata/md5-cache/x11-terms/mlterm-3.9.3 b/metadata/md5-cache/x11-terms/mlterm-3.9.3-r1 similarity index 94% rename from metadata/md5-cache/x11-terms/mlterm-3.9.3 rename to metadata/md5-cache/x11-terms/mlterm-3.9.3-r1 index c83ec83254fd..780131f1b423 100644 --- a/metadata/md5-cache/x11-terms/mlterm-3.9.3 +++ b/metadata/md5-cache/x11-terms/mlterm-3.9.3-r1 @@ -1,5 +1,6 @@ +BDEPEND=virtual/pkgconfig nls? ( sys-devel/gettext ) DEFINED_PHASES=configure install prepare test -DEPEND=virtual/libcrypt:= X? ( x11-libs/libICE x11-libs/libSM x11-libs/libX11 ) bidi? ( dev-libs/fribidi ) brltty? ( app-accessibility/brltty[api(+)] ) cairo? ( x11-libs/cairo[X(+)] ) fbcon? ( media-fonts/unifont ) fcitx? ( app-i18n/fcitx ) freewnn? ( app-i18n/freewnn ) gtk? ( x11-libs/gtk+:3 ) harfbuzz? ( media-libs/harfbuzz[truetype(+)] ) ibus? ( app-i18n/ibus ) libssh2? ( net-libs/libssh2 ) m17n-lib? ( dev-libs/m17n-lib ) nls? ( virtual/libintl ) regis? ( || ( media-libs/sdl-ttf media-libs/sdl2-ttf ) ) scim? ( app-i18n/scim ) skk? ( || ( virtual/skkserv app-i18n/skk-jisyo ) ) uim? ( app-i18n/uim ) utempter? ( sys-libs/libutempter ) wayland? ( dev-libs/wayland x11-libs/libxkbcommon ) xft? ( x11-libs/libXft ) virtual/pkgconfig nls? ( sys-devel/gettext ) +DEPEND=virtual/libcrypt:= X? ( x11-libs/libICE x11-libs/libSM x11-libs/libX11 ) bidi? ( dev-libs/fribidi ) brltty? ( app-accessibility/brltty[api(+)] ) cairo? ( x11-libs/cairo[X(+)] ) fbcon? ( media-fonts/unifont ) fcitx? ( app-i18n/fcitx ) freewnn? ( app-i18n/freewnn ) gtk? ( x11-libs/gtk+:3 ) harfbuzz? ( media-libs/harfbuzz[truetype(+)] ) ibus? ( app-i18n/ibus ) libssh2? ( net-libs/libssh2 ) m17n-lib? ( dev-libs/m17n-lib ) nls? ( virtual/libintl ) regis? ( || ( media-libs/sdl-ttf media-libs/sdl2-ttf ) ) scim? ( app-i18n/scim ) skk? ( || ( virtual/skkserv app-i18n/skk-jisyo ) ) uim? ( app-i18n/uim ) utempter? ( sys-libs/libutempter ) wayland? ( dev-libs/wayland x11-libs/libxkbcommon ) xft? ( x11-libs/libXft ) DESCRIPTION=A multi-lingual terminal emulator EAPI=8 HOMEPAGE=http://mlterm.sourceforge.net/ @@ -12,4 +13,4 @@ REQUIRED_USE=|| ( X fbcon wayland ) SLOT=0 SRC_URI=mirror://sourceforge/mlterm/mlterm-3.9.3.tar.gz _eclasses_=desktop 021728fdc1b03b36357dbc89489e0f0d -_md5_=734854f4e03a3206c71204807be38f24 +_md5_=dfe5eed5aeb4c593fe2d98fcc4ce0ed5 diff --git a/metadata/md5-cache/x11-terms/qterminal-1.3.0 b/metadata/md5-cache/x11-terms/qterminal-1.3.0 new file mode 100644 index 000000000000..3c78cd6b49b4 --- /dev/null +++ b/metadata/md5-cache/x11-terms/qterminal-1.3.0 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-util/lxqt-build-tools-0.13.0 >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install postinst postrm prepare test +DEPEND=>=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 x11-libs/libX11 ~x11-libs/qtermwidget-1.3.0:= test? ( dev-qt/qttest:5 ) +DESCRIPTION=Qt-based multitab terminal emulator +EAPI=8 +HOMEPAGE=https://lxqt-project.org/ +INHERIT=cmake xdg-utils +IUSE=test +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86 +LICENSE=GPL-2 GPL-2+ +RDEPEND=>=dev-qt/qtcore-5.15:5 >=dev-qt/qtdbus-5.15:5 >=dev-qt/qtgui-5.15:5 >=dev-qt/qtwidgets-5.15:5 >=dev-qt/qtx11extras-5.15:5 x11-libs/libX11 ~x11-libs/qtermwidget-1.3.0:= test? ( dev-qt/qttest:5 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/lxqt/qterminal/releases/download/1.3.0/qterminal-1.3.0.tar.xz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=845d07c45171c072ddacdd2c4bcc5c9d diff --git a/metadata/md5-cache/x11-themes/Manifest.gz b/metadata/md5-cache/x11-themes/Manifest.gz index a26ea9e42984..0710aff09cc6 100644 Binary files a/metadata/md5-cache/x11-themes/Manifest.gz and b/metadata/md5-cache/x11-themes/Manifest.gz differ diff --git a/metadata/md5-cache/x11-themes/lxqt-themes-1.3.0 b/metadata/md5-cache/x11-themes/lxqt-themes-1.3.0 new file mode 100644 index 000000000000..d349d412acf9 --- /dev/null +++ b/metadata/md5-cache/x11-themes/lxqt-themes-1.3.0 @@ -0,0 +1,12 @@ +BDEPEND=>=dev-util/lxqt-build-tools-0.13.0 >=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5 +DEFINED_PHASES=compile configure install postinst postrm prepare test +DESCRIPTION=LXQt Themes +EAPI=8 +HOMEPAGE=https://lxqt-project.org/ +INHERIT=cmake xdg-utils +KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86 +LICENSE=LGPL-2.1+ +SLOT=0 +SRC_URI=https://github.com/lxqt/lxqt-themes/releases/download/1.3.0/lxqt-themes-1.3.0.tar.xz +_eclasses_=cmake 7fb5980de96325cbab639f5b2187357c flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=ad13b7745cf3cc3af4b62108b812e808 diff --git a/metadata/md5-cache/x11-wm/Manifest.gz b/metadata/md5-cache/x11-wm/Manifest.gz index 7b6abe26ea85..9d9a1cd2c9d8 100644 Binary files a/metadata/md5-cache/x11-wm/Manifest.gz and b/metadata/md5-cache/x11-wm/Manifest.gz differ diff --git a/metadata/md5-cache/x11-wm/fvwm3-1.0.4-r2 b/metadata/md5-cache/x11-wm/fvwm3-1.0.4-r2 index 7a17480ed1c7..97416f878da5 100644 --- a/metadata/md5-cache/x11-wm/fvwm3-1.0.4-r2 +++ b/metadata/md5-cache/x11-wm/fvwm3-1.0.4-r2 @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/fvwmorg/fvwm3/releases/download/1.0.4/fvwm3-1.0.4.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 go-module f9700c7efec1fd4955363169e9930c1c libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 go-module 9c75e51a48520b2f01471c1f91762882 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=9f290e0d7822b309ddcf57fd120d78f4 diff --git a/metadata/md5-cache/x11-wm/fvwm3-1.0.6a b/metadata/md5-cache/x11-wm/fvwm3-1.0.6a index 81c0a9343f8a..d0292d2d7e79 100644 --- a/metadata/md5-cache/x11-wm/fvwm3-1.0.6a +++ b/metadata/md5-cache/x11-wm/fvwm3-1.0.6a @@ -13,5 +13,5 @@ REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/fvwmorg/fvwm3/releases/download/1.0.6a/fvwm3-1.0.6a.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 go-module f9700c7efec1fd4955363169e9930c1c libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a gnuconfig b6b3e92f8b8c996400074b5f61a59256 go-module 9c75e51a48520b2f01471c1f91762882 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=35979427b08e81305023f77fdd258213 diff --git a/metadata/md5-cache/x11-wm/fvwm3-9999 b/metadata/md5-cache/x11-wm/fvwm3-9999 index 98a631358a4d..eac801284a9c 100644 --- a/metadata/md5-cache/x11-wm/fvwm3-9999 +++ b/metadata/md5-cache/x11-wm/fvwm3-9999 @@ -12,5 +12,5 @@ RDEPEND=python_single_target_python3_9? ( >=dev-lang/python-3.9.16-r1:3.9 ) pyth REQUIRED_USE=^^ ( python_single_target_python3_9 python_single_target_python3_10 python_single_target_python3_11 ) RESTRICT=strip SLOT=0 -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a git-r3 27e13c09a4c7e4c78ac812f74727e676 gnuconfig b6b3e92f8b8c996400074b5f61a59256 go-module f9700c7efec1fd4955363169e9930c1c libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a desktop 021728fdc1b03b36357dbc89489e0f0d flag-o-matic 514815b1cc0dd4aeac177c2e812b3b1a git-r3 27e13c09a4c7e4c78ac812f74727e676 gnuconfig b6b3e92f8b8c996400074b5f61a59256 go-module 9c75e51a48520b2f01471c1f91762882 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 python-single-r1 75118e916668a74c660a13b0ecb22562 python-utils-r1 429bfd4e8d8e39db5385ba5744f30788 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=591a94bf695e90e12f7e2581f23e2139 diff --git a/metadata/md5-cache/x11-wm/ratpoison-1.4.9-r3 b/metadata/md5-cache/x11-wm/ratpoison-1.4.9-r3 index d709b78c473f..b755efdc8433 100644 --- a/metadata/md5-cache/x11-wm/ratpoison-1.4.9-r3 +++ b/metadata/md5-cache/x11-wm/ratpoison-1.4.9-r3 @@ -11,5 +11,5 @@ LICENSE=GPL-2+ || ( GPL-2+ FDL-1.2+ ) RDEPEND=emacs? ( >=app-editors/emacs-23.1:* ) history? ( sys-libs/readline:= ) xft? ( x11-libs/libXft ) xrandr? ( x11-libs/libXrandr ) dev-perl/Pod-Parser x11-libs/libX11 x11-libs/libXtst SLOT=0 SRC_URI=https://download.savannah.gnu.org/releases/ratpoison/ratpoison-1.4.9.tar.xz -_eclasses_=elisp-common 1d6e8d43be4713f04a441f721d890d48 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=elisp-common dcd21c5d379fc2217e95f529504c5fe0 multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=c33e217d0acc36ce9b06dd31b0ce2123 diff --git a/metadata/md5-cache/x11-wm/ratpoison-9999 b/metadata/md5-cache/x11-wm/ratpoison-9999 index 776ff9d6a0be..c82aa19e0db3 100644 --- a/metadata/md5-cache/x11-wm/ratpoison-9999 +++ b/metadata/md5-cache/x11-wm/ratpoison-9999 @@ -10,5 +10,5 @@ LICENSE=GPL-2+ || ( GPL-2+ FDL-1.2+ ) PROPERTIES=live RDEPEND=emacs? ( >=app-editors/emacs-23.1:* ) history? ( sys-libs/readline:= ) xft? ( x11-libs/libXft ) xrandr? ( x11-libs/libXrandr ) dev-perl/Pod-Parser x11-libs/libX11 x11-libs/libXtst SLOT=0 -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common 1d6e8d43be4713f04a441f721d890d48 git-r3 27e13c09a4c7e4c78ac812f74727e676 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a elisp-common dcd21c5d379fc2217e95f529504c5fe0 git-r3 27e13c09a4c7e4c78ac812f74727e676 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e _md5_=1be8590b138ef0e9470afb4b62a558d5 diff --git a/metadata/md5-cache/x11-wm/stumpwm-22.05_p20220818 b/metadata/md5-cache/x11-wm/stumpwm-22.05_p20220818 index 388719276c9b..d53c9a578cce 100644 --- a/metadata/md5-cache/x11-wm/stumpwm-22.05_p20220818 +++ b/metadata/md5-cache/x11-wm/stumpwm-22.05_p20220818 @@ -13,5 +13,5 @@ RDEPEND=dev-lisp/alexandria dev-lisp/cl-ppcre dev-lisp/clx >=dev-lisp/sbcl-1.3.0 RESTRICT=strip SLOT=0 SRC_URI=https://github.com/stumpwm/stumpwm/archive/740e945d742d85aef36e0ed9467de9bbbf5eafd2.tar.gz -> stumpwm-740e945d742d85aef36e0ed9467de9bbbf5eafd2.tar.gz -_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a common-lisp-3 b7398dbbcc8c345a9f7de45daae3ed26 desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 1d6e8d43be4713f04a441f721d890d48 eutils 8f942ebdcf04334697649d4a0bf65a32 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 +_eclasses_=autotools f0d3196128225dee3220e65f3371bc7a common-lisp-3 b7398dbbcc8c345a9f7de45daae3ed26 desktop 021728fdc1b03b36357dbc89489e0f0d edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common dcd21c5d379fc2217e95f529504c5fe0 eutils 8f942ebdcf04334697649d4a0bf65a32 gnuconfig b6b3e92f8b8c996400074b5f61a59256 libtool 9d3a9a889a6fa62ae794f817c156491b multilib d1408425c7c4a7669b9b17735404b693 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 strip-linguas ac3ee41ee2d31d8c41a77c0838320cc7 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e wrapper 4a1902f969e5718126434fc35f3a0d9c xdg-utils baea6080dd821f5562d715887954c9d3 _md5_=c63d500ea969907cb45769be1bd4c100 diff --git a/metadata/md5-cache/xfce-base/Manifest.gz b/metadata/md5-cache/xfce-base/Manifest.gz index 6bd8b6c0fbdc..87dad2b0aafa 100644 Binary files a/metadata/md5-cache/xfce-base/Manifest.gz and b/metadata/md5-cache/xfce-base/Manifest.gz differ diff --git a/metadata/md5-cache/xfce-base/libxfce4ui-4.19.0 b/metadata/md5-cache/xfce-base/libxfce4ui-4.19.0 new file mode 100644 index 000000000000..b1c5adf5877c --- /dev/null +++ b/metadata/md5-cache/xfce-base/libxfce4ui-4.19.0 @@ -0,0 +1,16 @@ +BDEPEND=dev-lang/perl >=sys-devel/gettext-0.19.8 virtual/pkgconfig vala? ( || ( dev-lang/vala:0.56 ) ) +DEFINED_PHASES=configure install postinst postrm +DEPEND=>=dev-libs/glib-2.66.0 >=x11-libs/gtk+-3.24.0:3[introspection?,X] x11-libs/libX11 x11-libs/libICE x11-libs/libSM >=xfce-base/libxfce4util-4.17.2:=[introspection?] >=xfce-base/xfconf-4.12:= glade? ( dev-util/glade:3.10 ) introspection? ( >=dev-libs/gobject-introspection-1.66:= ) startup-notification? ( x11-libs/startup-notification ) system-info? ( dev-libs/libgudev gnome-base/libgtop >=media-libs/libepoxy-1.2 ) +DESCRIPTION=Unified widget and session management libs for Xfce +EAPI=8 +HOMEPAGE=https://docs.xfce.org/xfce/libxfce4ui/start https://gitlab.xfce.org/xfce/libxfce4ui/ +INHERIT=xdg-utils vala +IUSE=glade +introspection startup-notification system-info vala +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris +LICENSE=LGPL-2+ GPL-2+ +RDEPEND=>=dev-libs/glib-2.66.0 >=x11-libs/gtk+-3.24.0:3[introspection?,X] x11-libs/libX11 x11-libs/libICE x11-libs/libSM >=xfce-base/libxfce4util-4.17.2:=[introspection?] >=xfce-base/xfconf-4.12:= glade? ( dev-util/glade:3.10 ) introspection? ( >=dev-libs/gobject-introspection-1.66:= ) startup-notification? ( x11-libs/startup-notification ) system-info? ( dev-libs/libgudev gnome-base/libgtop >=media-libs/libepoxy-1.2 ) +REQUIRED_USE=vala? ( introspection ) +SLOT=0 +SRC_URI=https://archive.xfce.org/src/xfce/libxfce4ui/4.19/libxfce4ui-4.19.0.tar.bz2 +_eclasses_=vala 1343f639cc74d2aa8b36fc08677da58d xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=32c12b4e707ce38ef382942f01c64c04 diff --git a/metadata/md5-cache/xfce-base/libxfce4util-4.19.0 b/metadata/md5-cache/xfce-base/libxfce4util-4.19.0 new file mode 100644 index 000000000000..76edfb314308 --- /dev/null +++ b/metadata/md5-cache/xfce-base/libxfce4util-4.19.0 @@ -0,0 +1,16 @@ +BDEPEND=dev-util/gtk-doc-am >=sys-devel/gettext-0.19.8 virtual/pkgconfig vala? ( || ( dev-lang/vala:0.56 ) ) +DEFINED_PHASES=configure install +DEPEND=>=dev-libs/glib-2.66.0 introspection? ( >=dev-libs/gobject-introspection-1.66:= ) +DESCRIPTION=A basic utility library for the Xfce desktop environment +EAPI=8 +HOMEPAGE=https://docs.xfce.org/xfce/libxfce4util/start https://gitlab.xfce.org/xfce/libxfce4util/ +INHERIT=vala +IUSE=+introspection vala +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris +LICENSE=LGPL-2+ GPL-2+ +RDEPEND=>=dev-libs/glib-2.66.0 introspection? ( >=dev-libs/gobject-introspection-1.66:= ) +REQUIRED_USE=vala? ( introspection ) +SLOT=0/7 +SRC_URI=https://archive.xfce.org/src/xfce/libxfce4util/4.19/libxfce4util-4.19.0.tar.bz2 +_eclasses_=vala 1343f639cc74d2aa8b36fc08677da58d +_md5_=3a8399620be92a3dded3e7186c66be17 diff --git a/metadata/md5-cache/xfce-base/tumbler-4.18.1 b/metadata/md5-cache/xfce-base/tumbler-4.18.1 new file mode 100644 index 000000000000..63dad2dd2f9a --- /dev/null +++ b/metadata/md5-cache/xfce-base/tumbler-4.18.1 @@ -0,0 +1,15 @@ +BDEPEND=dev-util/gdbus-codegen dev-util/glib-utils dev-util/gtk-doc-am dev-util/intltool sys-devel/gettext virtual/pkgconfig +DEFINED_PHASES=configure install postinst postrm +DEPEND=>=dev-libs/glib-2.66.0 media-libs/freetype:2= media-libs/libpng:0= >=sys-apps/dbus-1.6 >=xfce-base/libxfce4util-4.17.1:= >=x11-libs/gdk-pixbuf-2.40.0 curl? ( >=net-misc/curl-7.32.0:= ) epub? ( app-text/libgepub ) ffmpeg? ( >=media-video/ffmpegthumbnailer-2.0.8:= ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) jpeg? ( media-libs/libjpeg-turbo:0= ) odf? ( >=gnome-extra/libgsf-1.14.20:= ) pdf? ( >=app-text/poppler-0.12.4[cairo] ) raw? ( >=media-libs/libopenraw-0.0.8:=[gtk] ) +DESCRIPTION=A thumbnail service for Thunar +EAPI=8 +HOMEPAGE=https://docs.xfce.org/xfce/tumbler/start https://gitlab.xfce.org/xfce/tumbler/ +INHERIT=xdg-utils +IUSE=curl epub ffmpeg gstreamer jpeg odf pdf raw +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux +LICENSE=GPL-2+ +RDEPEND=>=dev-libs/glib-2.66.0 media-libs/freetype:2= media-libs/libpng:0= >=sys-apps/dbus-1.6 >=xfce-base/libxfce4util-4.17.1:= >=x11-libs/gdk-pixbuf-2.40.0 curl? ( >=net-misc/curl-7.32.0:= ) epub? ( app-text/libgepub ) ffmpeg? ( >=media-video/ffmpegthumbnailer-2.0.8:= ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) jpeg? ( media-libs/libjpeg-turbo:0= ) odf? ( >=gnome-extra/libgsf-1.14.20:= ) pdf? ( >=app-text/poppler-0.12.4[cairo] ) raw? ( >=media-libs/libopenraw-0.0.8:=[gtk] ) gstreamer? ( media-plugins/gst-plugins-meta:1.0 ) +SLOT=0 +SRC_URI=https://archive.xfce.org/src/xfce/tumbler/4.18/tumbler-4.18.1.tar.bz2 +_eclasses_=xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=ff7a0f6ac5d159e4ea4ce3498d3e3423 diff --git a/metadata/md5-cache/xfce-base/tumbler-4.19.0 b/metadata/md5-cache/xfce-base/tumbler-4.19.0 new file mode 100644 index 000000000000..04f1bfb7a57c --- /dev/null +++ b/metadata/md5-cache/xfce-base/tumbler-4.19.0 @@ -0,0 +1,15 @@ +BDEPEND=dev-util/gdbus-codegen dev-util/glib-utils dev-util/gtk-doc-am >=sys-devel/gettext-0.19.8 virtual/pkgconfig +DEFINED_PHASES=configure install postinst postrm +DEPEND=>=dev-libs/glib-2.66.0 media-libs/freetype:2= media-libs/libpng:0= >=sys-apps/dbus-1.6 >=xfce-base/libxfce4util-4.17.1:= >=x11-libs/gdk-pixbuf-2.40.0 curl? ( >=net-misc/curl-7.32.0:= ) epub? ( app-text/libgepub ) ffmpeg? ( >=media-video/ffmpegthumbnailer-2.0.8:= ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) jpeg? ( media-libs/libjpeg-turbo:0= ) odf? ( >=gnome-extra/libgsf-1.14.20:= ) pdf? ( >=app-text/poppler-0.12.4[cairo] ) raw? ( >=media-libs/libopenraw-0.0.8:=[gtk] ) +DESCRIPTION=A thumbnail service for Thunar +EAPI=8 +HOMEPAGE=https://docs.xfce.org/xfce/tumbler/start https://gitlab.xfce.org/xfce/tumbler/ +INHERIT=xdg-utils +IUSE=curl epub ffmpeg gstreamer jpeg odf pdf raw +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux +LICENSE=GPL-2+ +RDEPEND=>=dev-libs/glib-2.66.0 media-libs/freetype:2= media-libs/libpng:0= >=sys-apps/dbus-1.6 >=xfce-base/libxfce4util-4.17.1:= >=x11-libs/gdk-pixbuf-2.40.0 curl? ( >=net-misc/curl-7.32.0:= ) epub? ( app-text/libgepub ) ffmpeg? ( >=media-video/ffmpegthumbnailer-2.0.8:= ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) jpeg? ( media-libs/libjpeg-turbo:0= ) odf? ( >=gnome-extra/libgsf-1.14.20:= ) pdf? ( >=app-text/poppler-0.12.4[cairo] ) raw? ( >=media-libs/libopenraw-0.0.8:=[gtk] ) gstreamer? ( media-plugins/gst-plugins-meta:1.0 ) +SLOT=0 +SRC_URI=https://archive.xfce.org/src/xfce/tumbler/4.19/tumbler-4.19.0.tar.bz2 +_eclasses_=xdg-utils baea6080dd821f5562d715887954c9d3 +_md5_=0fa81d3c9e3c94c2e08cc8a652cb337e diff --git a/metadata/md5-cache/xfce-base/xfconf-4.18.1 b/metadata/md5-cache/xfce-base/xfconf-4.18.1 new file mode 100644 index 000000000000..6975b1d6c3a1 --- /dev/null +++ b/metadata/md5-cache/xfce-base/xfconf-4.18.1 @@ -0,0 +1,16 @@ +BDEPEND=dev-util/gdbus-codegen dev-util/glib-utils dev-util/intltool sys-devel/gettext virtual/pkgconfig vala? ( || ( dev-lang/vala:0.56 ) ) +DEFINED_PHASES=configure install test +DEPEND=>=dev-libs/glib-2.66.0 sys-apps/dbus >=xfce-base/libxfce4util-4.17.3:= introspection? ( >=dev-libs/gobject-introspection-1.66:= ) +DESCRIPTION=A configuration management system for Xfce +EAPI=8 +HOMEPAGE=https://docs.xfce.org/xfce/xfconf/start https://gitlab.xfce.org/xfce/xfconf/ +INHERIT=bash-completion-r1 vala +IUSE=debug +introspection vala +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-solaris +LICENSE=GPL-2+ +RDEPEND=>=dev-libs/glib-2.66.0 sys-apps/dbus >=xfce-base/libxfce4util-4.17.3:= introspection? ( >=dev-libs/gobject-introspection-1.66:= ) +REQUIRED_USE=vala? ( introspection ) +SLOT=0/3 +SRC_URI=https://archive.xfce.org/src/xfce/xfconf/4.18/xfconf-4.18.1.tar.bz2 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e vala 1343f639cc74d2aa8b36fc08677da58d +_md5_=ff52e75a216de4cb88f9f51e7bf35c39 diff --git a/metadata/md5-cache/xfce-base/xfconf-4.19.0 b/metadata/md5-cache/xfce-base/xfconf-4.19.0 new file mode 100644 index 000000000000..e6a5af735b00 --- /dev/null +++ b/metadata/md5-cache/xfce-base/xfconf-4.19.0 @@ -0,0 +1,16 @@ +BDEPEND=dev-util/gdbus-codegen dev-util/glib-utils >=sys-devel/gettext-0.19.8 virtual/pkgconfig vala? ( || ( dev-lang/vala:0.56 ) ) +DEFINED_PHASES=configure install test +DEPEND=>=dev-libs/glib-2.66.0 sys-apps/dbus >=xfce-base/libxfce4util-4.17.3:= introspection? ( >=dev-libs/gobject-introspection-1.66:= ) +DESCRIPTION=A configuration management system for Xfce +EAPI=8 +HOMEPAGE=https://docs.xfce.org/xfce/xfconf/start https://gitlab.xfce.org/xfce/xfconf/ +INHERIT=bash-completion-r1 vala +IUSE=debug +introspection vala +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-solaris +LICENSE=GPL-2+ +RDEPEND=>=dev-libs/glib-2.66.0 sys-apps/dbus >=xfce-base/libxfce4util-4.17.3:= introspection? ( >=dev-libs/gobject-introspection-1.66:= ) +REQUIRED_USE=vala? ( introspection ) +SLOT=0/3 +SRC_URI=https://archive.xfce.org/src/xfce/xfconf/4.19/xfconf-4.19.0.tar.bz2 +_eclasses_=bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff multilib d1408425c7c4a7669b9b17735404b693 toolchain-funcs 14a8ae365191b518fad51caad7a08f3e vala 1343f639cc74d2aa8b36fc08677da58d +_md5_=b83f7432b110d90eade263f58496ba72 diff --git a/metadata/news/timestamp.chk b/metadata/news/timestamp.chk index 413fb97d34b3..f89790580ce7 100644 --- a/metadata/news/timestamp.chk +++ b/metadata/news/timestamp.chk @@ -1 +1 @@ -Sun, 16 Apr 2023 17:39:45 +0000 +Tue, 18 Apr 2023 11:39:51 +0000 diff --git a/metadata/timestamp b/metadata/timestamp index 9a7973d11e02..2a445fef40ef 100644 --- a/metadata/timestamp +++ b/metadata/timestamp @@ -1 +1 @@ -Sun Apr 16 05:39:45 PM UTC 2023 +Tue Apr 18 11:39:51 AM UTC 2023 diff --git a/metadata/timestamp.chk b/metadata/timestamp.chk index c97ef37f7c82..7442ed948ede 100644 --- a/metadata/timestamp.chk +++ b/metadata/timestamp.chk @@ -1 +1 @@ -Sun, 16 Apr 2023 18:00:01 +0000 +Tue, 18 Apr 2023 12:00:01 +0000 diff --git a/metadata/timestamp.commit b/metadata/timestamp.commit index e4f24538960d..e0221e112c1b 100644 --- a/metadata/timestamp.commit +++ b/metadata/timestamp.commit @@ -1 +1 @@ -14619e192444cd36b20bce926462d4d176bcece2 1681665665 2023-04-16T17:21:05+00:00 +790927a7ccf40f62ce7b5f62ddcd88f69ca83d76 1681817437 2023-04-18T11:30:37+00:00 diff --git a/metadata/timestamp.x b/metadata/timestamp.x index a1ecbe858f2d..382e52ffb540 100644 --- a/metadata/timestamp.x +++ b/metadata/timestamp.x @@ -1 +1 @@ -1681666801 Sun 16 Apr 2023 05:40:01 PM UTC +1681818001 Tue 18 Apr 2023 11:40:01 AM UTC diff --git a/metadata/xml-schema/timestamp.chk b/metadata/xml-schema/timestamp.chk index 413fb97d34b3..f89790580ce7 100644 --- a/metadata/xml-schema/timestamp.chk +++ b/metadata/xml-schema/timestamp.chk @@ -1 +1 @@ -Sun, 16 Apr 2023 17:39:45 +0000 +Tue, 18 Apr 2023 11:39:51 +0000 diff --git a/net-analyzer/Manifest.gz b/net-analyzer/Manifest.gz index fc5325474ece..5cd1d2a41e46 100644 Binary files a/net-analyzer/Manifest.gz and b/net-analyzer/Manifest.gz differ diff --git a/net-analyzer/linkchecker/linkchecker-10.2.1.ebuild b/net-analyzer/linkchecker/linkchecker-10.2.1.ebuild index 832366f8fa28..6104711625d0 100644 --- a/net-analyzer/linkchecker/linkchecker-10.2.1.ebuild +++ b/net-analyzer/linkchecker/linkchecker-10.2.1.ebuild @@ -13,7 +13,7 @@ inherit bash-completion-r1 distutils-r1 multiprocessing optfeature DESCRIPTION="Check websites for broken links" HOMEPAGE="https://github.com/linkcheck/linkchecker" SRC_URI="https://github.com/linkchecker/linkchecker/releases/download/v${PV}/LinkChecker-${PV}.tar.gz" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" LICENSE="GPL-2" SLOT="0" diff --git a/net-analyzer/monitoring-plugins/monitoring-plugins-2.3.3-r1.ebuild b/net-analyzer/monitoring-plugins/monitoring-plugins-2.3.3-r1.ebuild index 555d75dae179..ac7b44413cab 100644 --- a/net-analyzer/monitoring-plugins/monitoring-plugins-2.3.3-r1.ebuild +++ b/net-analyzer/monitoring-plugins/monitoring-plugins-2.3.3-r1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://www.monitoring-plugins.org/download/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~sparc ~x86" +KEYWORDS="amd64 ~arm ~arm64 sparc x86" IUSE="curl gnutls ipv6 ldap mysql dns fping game postgres radius samba snmp ssh +ssl" # Most of the plugins use automagic dependencies, i.e. the plugin will diff --git a/net-analyzer/suricata/Manifest b/net-analyzer/suricata/Manifest index d74a829df4e1..6d54b18e09db 100644 --- a/net-analyzer/suricata/Manifest +++ b/net-analyzer/suricata/Manifest @@ -1,4 +1,4 @@ DIST suricata-6.0.10.tar.gz 27374715 BLAKE2B a2b334c0139ead0b914ba6039c116ebad30dd3b5c0d4bb751f608af83e1487a67b96224ffe61635468dc49a9e44f03a76facf2af66582ba18e364f233029b532 SHA512 3e49d491cf1fb56a6773308380cae826016041018c18753d18529572712a6ffa415df2798805bffdf8482312fdb69c3f2e05f38870a5b725d333f928b840e1e2 DIST suricata-6.0.10.tar.gz.sig 566 BLAKE2B 911c3587911dd6b8fbf0932608b2eb80928223d5ed6636abfd9355fcdf6fcb2ff0e3d064d472d2c89417679c68d496ee105dd0cee1f3e8c33de9cd6c90290d9d SHA512 5c6ab8937d82472b0bccae00c94094ee503ac423884d958947f276a4f2d7e9a88646e5ca8deb4b03cb4d035238774a6cd20ddbea9a08a6c5b45b646c1458dca8 -DIST suricata-6.0.9.tar.gz 27352128 BLAKE2B 966657eeff216894f6357989f0317b7c5eed82602ca2381269446cbe4c015be449f5598726b2f58924f20aca30c4e130ecafe642ea4ce39f1671f46093292551 SHA512 09a24a90db11e74da2d584904987c2d751243a95cf237d13a8b57cdffc6659281c9d572404caea657e637d7eed01ecfe40bdfcfc79c09e1ca8eb26637dddbb6c -DIST suricata-6.0.9.tar.gz.sig 566 BLAKE2B 1ac1bb67caef5e5827127befd269de03ec697a351e80575d1f0f729c491be3601cc2e9372e87f762aefcb8c15403f94f122e3d626061e2215b8edcda38c46f37 SHA512 0df7d1f83bd1adb4e87b0afeada99c64b2aa50fdfb9eda5d44043f4447bceda50a057e78db2397f882efbe7440ba7e3f5db9e610f679938e5ed461f175d70c6f +DIST suricata-6.0.11.tar.gz 27408130 BLAKE2B 41b37168e6c50b32971ad8c0541f3bc1981152c8360bbfc261a9abab5dc229425bef92fe19db5d0ec7cf32abff71acca62934c411aea79f5c8f9b38bd6422ee4 SHA512 b9b23aa9f71e9ce9c15312d14624133f772a0df82059a7c911cfb028ff00ba0eb39c7c263cb7f4612d2199c262cef1682c06f8b416a36e37dfb4277f12cb2ce9 +DIST suricata-6.0.11.tar.gz.sig 566 BLAKE2B fb6854b4bade28d4ff5850d2222ace2e71955d587a3a0346bd158796564a3d3440940b90edc85be330ca8f8f903b35c9a7abf01dc2a570f7a74f492ca0bda70b SHA512 4ab0b2823d0260cbb17c1dc25dcf1511b772fd5369555b6f1db9db1cc5bbb66092f1b6c4e4b6f01ee76a6003c51444b44e8529ea6f994a554c42e267295e8dc3 diff --git a/net-analyzer/suricata/suricata-6.0.9.ebuild b/net-analyzer/suricata/suricata-6.0.11.ebuild similarity index 96% rename from net-analyzer/suricata/suricata-6.0.9.ebuild rename to net-analyzer/suricata/suricata-6.0.11.ebuild index 7f150ca4dc8d..9b453e9fdbc6 100644 --- a/net-analyzer/suricata/suricata-6.0.9.ebuild +++ b/net-analyzer/suricata/suricata-6.0.11.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -38,7 +38,7 @@ RDEPEND="${PYTHON_DEPS} $(python_gen_cond_dep ' dev-python/pyyaml[${PYTHON_USEDEP}] ') - >=net-libs/libhtp-0.5.42 + >=net-libs/libhtp-0.5.43 net-libs/libpcap sys-apps/file sys-libs/libcap-ng @@ -119,6 +119,7 @@ src_configure() { if use debug; then myeconfargs+=( $(use_enable debug) ) # so we can get a backtrace according to "reporting bugs" on upstream web site + QA_FLAGS_IGNORED="usr/bin/${PN}" CFLAGS="-ggdb -O0" econf ${myeconfargs[@]} else econf ${myeconfargs[@]} @@ -145,7 +146,7 @@ src_install() { fowners -R ${PN}: "/var/lib/${PN}" "/var/log/${PN}" "/etc/${PN}" fperms 750 "/var/lib/${PN}" "/var/log/${PN}" "/etc/${PN}" - fperms 2750 "/var/lib/${PN}/rules" "/var/lib/${PN}/update" + fperms 6750 "/var/lib/${PN}/rules" "/var/lib/${PN}/update" newinitd "${FILESDIR}/${PN}.initd" ${PN} newconfd "${FILESDIR}/${PN}.confd" ${PN} @@ -205,11 +206,7 @@ pkg_postinst() { elog if [[ -z "${REPLACING_VERSIONS}" ]]; then elog "To download and install an initial set of rules, run:" - elog " emerge --config =${CATEGORY}/${PF}" + elog " suricata-update" fi elog } - -pkg_config() { - suricata-update -} diff --git a/net-analyzer/zabbix/Manifest b/net-analyzer/zabbix/Manifest index eec33b0dab47..7ccadf697a88 100644 --- a/net-analyzer/zabbix/Manifest +++ b/net-analyzer/zabbix/Manifest @@ -14,12 +14,6 @@ DIST zabbix-6.0.15-go-deps.tar.xz 18724120 BLAKE2B bba750a6edf0ee9fa2f0696332f5d DIST zabbix-6.0.15.tar.gz 41474632 BLAKE2B dfef2036df2afbc50f4706a98105311e859f21cd01b430bc26f960bc650ff2d83c0db2977a85561cc75ddeb5fbb7a6704948dfa17749b238583f4f50e15f18a7 SHA512 c4b06308e08d630ca5af756a07f86b60562847ad0e2520ca6224724b76067cc83d7f38af21979c902dc3658b208b3d49069f42792b6bf204b71adffa0283fdb9 DIST zabbix-6.0.16-go-deps.tar.xz 18723124 BLAKE2B 711afae215a3e158280d77aab09342e7d34fab58333446c807183a7388c4de7a6e58ff05df983a5f4660b12125308ff2df4c10fde8ddcdf4003260f255b8a832 SHA512 edb6e7839e318e0fbd1810ac91bd5be26942e5e2b27bfc38127fbc6b8f3a63ff57bcff5293027e1569fe3e1ce825b5e152d3f8b1112ac3b2b5cb29a2723b7370 DIST zabbix-6.0.16.tar.gz 41566655 BLAKE2B 87f7c043f30ef9902b3673e2d444e37b32ef998d178fa5718ed9aa098f841f23237d79e54985ba3a415a86433a685387af33810f53a78837be6a1aa2870ed65a SHA512 256c634fee53cdc9b898774499b6853aad3f9b27a045bac4dbed8bf1013fb478a1c5596f8db95346faf86a0350aff5623b3ac5161536cd7f3b85292a688e3360 -DIST zabbix-6.2.7-go-deps.tar.xz 17973952 BLAKE2B f7e155040a60ac48236084b404d469bc5c34ab0dd986d3d647960bb6313f8080298f359680d6be23d2cb4c5f7d30bbab773c7fe81e4bde3873215f5e4072bed7 SHA512 e83dcd5cd6a07febf9c6380d311c84a319e3c45314266217837f6b35e540a6c9d4c980ceb7bb995ca8366247ea67d7d3c1b10beab677e4c24c69d83ba9977862 -DIST zabbix-6.2.7.tar.gz 41462274 BLAKE2B 52d82c1eb00f003f53758840af4621b15dcc0c4dbb09f051fa323a53fada303dc5123d3fc99238688e73eb9506a54ec88890d48bd7f21ecfccd5f8b0dd02e102 SHA512 5cafae600d7a83729ac2d28c1cace2a6fb0ac1bdca06ac89e7fd272f1227d2d19e3aa3ccfaefb00229a61f55c608c4d97a5595724c600d8a46950a92c6e20fd0 -DIST zabbix-6.2.8-go-deps.tar.xz 17973508 BLAKE2B b0aa8bd692a6572d65daeb41ab36daaa6af6fc4c64692e9617dbd90bd0a14ba5031253bd7d326474dfb5b6a730785fba1ef8f1acd783b028de1d725ff2c657b7 SHA512 631e2d9d9f9f9b5504f8ba580b46fcf32dca1c5eb4308d2beff1a836f2b392924b481690c78fe43ff5332739746ddb75e2db89f9b1195f4f7390b01c1df8b942 -DIST zabbix-6.2.8.tar.gz 41784711 BLAKE2B eb5ebe5647a115da138336315b7af81fa39feb4428c609f604a6d13821226db65443faa49e3dbf3c2668ae917b37df9e7946ed79deb4e79f9a91f00fc18cc90b SHA512 0d77fd07128d3a20959385b458fb58408b0e1fd9673c4156286ef2dee6772d217ea285108470458fc6388510e897fb32cf7b046d2e28dc9d2e17ecb484cf3dde -DIST zabbix-6.2.9-go-deps.tar.xz 17974816 BLAKE2B a942d2ee65aaee0286d335951f8641e7f03db09c76ec5a2c421a5967773c1432280f61690630922d3eb55b9a492ac3cc37fa68b2ae765aec111f47f5f53c654c SHA512 7e025baedcb23a8139873429cb7fa8aa1dd0d8302f0426d9d55ae7b67fee120e3dbc5465d1851fab4c7f84471afb630f56bd90f5d6781a3fe5337c87cf2c0ae2 -DIST zabbix-6.2.9.tar.gz 41776052 BLAKE2B 59f103883e982296cb7b400db81c02e602b5cf39c9ed10670d0c8017c77331e2a378d1a0f716671d1a9a0670a5800fde2f9b6663eaae85fce9a1c0a91a3487d9 SHA512 a2712bc194adfc707831f32360984332591fe0b9e2f72a92f96c2d4994b1539d27ca53963a98b68c7f94cf13c1afc0438d9bbc7db733773fdb05d507873f09a9 DIST zabbix-6.4.0-go-deps.tar.xz 21481908 BLAKE2B 83280695c1f47c9d5c794e8da0e4140ff2c432aa2d2ff14e755f855a621472c81d2dbd5dfad7fd0d735d784f834e0a2c220acb35cb5c3dddeba22494a5a0d674 SHA512 f07faa620d885a3fb81ec1e273de44831f6e95295c309997cc650958b870a9d458289e3dfaf9cea97f1e8067a9b624d2e9a5125394ac3a3117c0875f9f76f8ea DIST zabbix-6.4.0.tar.gz 42787621 BLAKE2B defb3819e5320488f5f35d6fbc52877a30313e9f745447559eea40b74d786a55d4a3971b1ff6072eedf805296c9b5bfe98fa3395affb50e2ba5be439091212d6 SHA512 e572c6de1a7e2f1cf5ea4a56886aabe0915d41c0f8fb6e6812dba6f7766deebe8cd743dbc8a80839fc49a794b799b93cd30dfa0741cf6fa7e1652058211f97bb DIST zabbix-6.4.1-go-deps.tar.xz 21571696 BLAKE2B e312fdfdc5687b94c6b2368a42d9189e7671624100d908af8ecca55fd8d590cbbea986301e638ab6b423a2b3f58bd2e1a1719b4dc6535564ba65e5aed476f3d3 SHA512 9db079435e6ececf692c9ba4d3b2af4eaedf79c742def69566e285ddd065fe9647e2472464a7a28eb99c3e6008142d7df3f5a49d71d1fb5eb73203a9996faf93 diff --git a/net-analyzer/zabbix/zabbix-6.2.7.ebuild b/net-analyzer/zabbix/zabbix-6.2.7.ebuild deleted file mode 100644 index 21333f63c79d..000000000000 --- a/net-analyzer/zabbix/zabbix-6.2.7.ebuild +++ /dev/null @@ -1,397 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -# To create the go modules tarball: -# cd src/go -# GOMODCACHE="${PWD}"/go-mod go mod download -modcacherw -# tar -acf zabbix-${PV}-go-deps.tar.xz go-mod - -EAPI=8 - -GO_OPTIONAL="yes" -# needed to make webapp-config dep optional -WEBAPP_OPTIONAL="yes" -inherit webapp java-pkg-opt-2 systemd tmpfiles toolchain-funcs go-module user-info - -DESCRIPTION="ZABBIX is software for monitoring of your applications, network and servers" -HOMEPAGE="https://www.zabbix.com/" -MY_P=${P/_/} -MY_PV=${PV/_/} -SRC_URI="https://cdn.zabbix.com/${PN}/sources/stable/$(ver_cut 1-2)/${P}.tar.gz - agent2? ( https://dev.gentoo.org/~fordfrog/distfiles/${P}-go-deps.tar.xz ) -" - -LICENSE="GPL-2" -SLOT="0/$(ver_cut 1-2)" -WEBAPP_MANUAL_SLOT="yes" -KEYWORDS="amd64 x86" -IUSE="agent +agent2 curl frontend gnutls ipv6 java ldap libxml2 mysql odbc openipmi +openssl oracle +postgres proxy server snmp sqlite ssh static" -REQUIRED_USE="|| ( agent agent2 frontend proxy server ) - ?? ( gnutls openssl ) - proxy? ( ^^ ( mysql oracle postgres sqlite ) ) - server? ( ^^ ( mysql oracle postgres ) !sqlite ) - static? ( !oracle !snmp )" - -COMMON_DEPEND=" - curl? ( net-misc/curl ) - gnutls? ( net-libs/gnutls:0= ) - java? ( >=virtual/jdk-1.8:* ) - ldap? ( - =dev-libs/cyrus-sasl-2* - net-libs/gnutls:= - net-nds/openldap:= - ) - libxml2? ( dev-libs/libxml2 ) - mysql? ( dev-db/mysql-connector-c:= ) - odbc? ( dev-db/unixODBC ) - openipmi? ( sys-libs/openipmi ) - openssl? ( dev-libs/openssl:=[-bindist(-)] ) - oracle? ( dev-db/oracle-instantclient[odbc,sdk] ) - postgres? ( dev-db/postgresql:* ) - proxy? ( - dev-libs/libevent:= - sys-libs/zlib - ) - server? ( - dev-libs/libevent:= - sys-libs/zlib - ) - snmp? ( net-analyzer/net-snmp:= ) - sqlite? ( dev-db/sqlite ) - ssh? ( net-libs/libssh2 ) -" - -RDEPEND="${COMMON_DEPEND} - acct-group/zabbix - acct-user/zabbix - java? ( >=virtual/jre-1.8:* ) - mysql? ( virtual/mysql ) - proxy? ( - dev-libs/libpcre2:= - net-analyzer/fping[suid] - ) - server? ( - app-admin/webapp-config - dev-libs/libpcre2:= - net-analyzer/fping[suid] - ) - frontend? ( - app-admin/webapp-config - dev-lang/php:*[bcmath,ctype,sockets,gd,truetype,xml,session,xmlreader,xmlwriter,nls,sysvipc,unicode] - media-libs/gd[png] - virtual/httpd-php:* - mysql? ( dev-lang/php[mysqli] ) - odbc? ( dev-lang/php[odbc] ) - oracle? ( dev-lang/php[oci8-instant-client] ) - postgres? ( dev-lang/php[postgres] ) - sqlite? ( dev-lang/php[sqlite] ) - ) -" -DEPEND="${COMMON_DEPEND} - static? ( - curl? ( net-misc/curl[static-libs] ) - ldap? ( - =dev-libs/cyrus-sasl-2*[static-libs] - net-libs/gnutls[static-libs] - net-nds/openldap[static-libs] - ) - libxml2? ( dev-libs/libxml2[static-libs] ) - mysql? ( dev-db/mysql-connector-c[static-libs] ) - odbc? ( dev-db/unixODBC[static-libs] ) - postgres? ( dev-db/postgresql:*[static-libs] ) - sqlite? ( dev-db/sqlite[static-libs] ) - ssh? ( net-libs/libssh2 ) - ) -" -BDEPEND=" - virtual/pkgconfig - agent2? ( - >=dev-lang/go-1.12 - app-arch/unzip - ) -" - -# upstream tests fail for agent2 -RESTRICT="test" - -PATCHES=( - "${FILESDIR}/${PN}-4.0.18-modulepathfix.patch" - "${FILESDIR}/${PN}-3.0.30-security-disable-PidFile.patch" - "${FILESDIR}/${PN}-6.0.3-system.sw.packages.patch" -) - -S=${WORKDIR}/${MY_P} - -ZABBIXJAVA_BASE="opt/zabbix_java" - -pkg_setup() { - if use oracle; then - if [ -z "${ORACLE_HOME}" ]; then - eerror - eerror "The environment variable ORACLE_HOME must be set" - eerror "and point to the correct location." - eerror "It looks like you don't have Oracle installed." - eerror - die "Environment variable ORACLE_HOME is not set" - fi - fi - - if use frontend; then - webapp_pkg_setup - fi - - java-pkg-opt-2_pkg_setup -} - -src_configure() { - local econf_args=( - --with-libpcre2 - "$(use_enable agent)" - "$(use_enable agent2)" - "$(use_enable ipv6)" - "$(use_enable java)" - "$(use_enable proxy)" - "$(use_enable server)" - "$(use_enable static)" - "$(use_with curl libcurl)" - "$(use_with gnutls)" - "$(use_with ldap)" - "$(use_with libxml2)" - "$(use_with mysql)" - "$(use_with odbc unixodbc)" - "$(use_with openipmi openipmi)" - "$(use_with openssl)" - "$(use_with oracle)" - "$(use_with postgres postgresql)" - "$(use_with snmp net-snmp)" - "$(use_with sqlite sqlite3)" - "$(use_with ssh ssh2)" - ) - - econf ${econf_args[@]} -} - -src_compile() { - if [ -f Makefile ] || [ -f GNUmakefile ] || [ -f makefile ]; then - emake AR="$(tc-getAR)" RANLIB="$(tc-getRANLIB)" - fi -} - -src_install() { - local dirs=( - /etc/zabbix - /var/lib/zabbix - /var/lib/zabbix/home - /var/lib/zabbix/scripts - /var/lib/zabbix/alertscripts - /var/lib/zabbix/externalscripts - /var/log/zabbix - ) - - for dir in "${dirs[@]}"; do - keepdir "${dir}" - done - - if use server; then - insinto /etc/zabbix - doins "${S}"/conf/zabbix_server.conf - fperms 0640 /etc/zabbix/zabbix_server.conf - fowners root:zabbix /etc/zabbix/zabbix_server.conf - - newinitd "${FILESDIR}"/zabbix-server-r1.init zabbix-server - - dosbin src/zabbix_server/zabbix_server - - insinto /usr/share/zabbix - doins -r "${S}"/database/ - - systemd_dounit "${FILESDIR}"/zabbix-server.service - newtmpfiles "${FILESDIR}"/zabbix-server.tmpfiles zabbix-server.conf - fi - - if use proxy; then - insinto /etc/zabbix - doins "${S}"/conf/zabbix_proxy.conf - fperms 0640 /etc/zabbix/zabbix_proxy.conf - fowners root:zabbix /etc/zabbix/zabbix_proxy.conf - - newinitd "${FILESDIR}"/zabbix-proxy.init zabbix-proxy - - dosbin src/zabbix_proxy/zabbix_proxy - - insinto /usr/share/zabbix - doins -r "${S}"/database/ - - systemd_dounit "${FILESDIR}"/zabbix-proxy.service - newtmpfiles "${FILESDIR}"/zabbix-proxy.tmpfiles zabbix-proxy.conf - fi - - if use agent; then - insinto /etc/zabbix - doins "${S}"/conf/zabbix_agentd.conf - fperms 0640 /etc/zabbix/zabbix_agentd.conf - fowners root:zabbix /etc/zabbix/zabbix_agentd.conf - - newinitd "${FILESDIR}"/zabbix-agentd.init zabbix-agentd - - dosbin src/zabbix_agent/zabbix_agentd - dobin \ - src/zabbix_sender/zabbix_sender \ - src/zabbix_get/zabbix_get - - systemd_dounit "${FILESDIR}"/zabbix-agentd.service - newtmpfiles "${FILESDIR}"/zabbix-agentd.tmpfiles zabbix-agentd.conf - fi - if use agent2; then - insinto /etc/zabbix - doins "${S}"/src/go/conf/zabbix_agent2.conf - fperms 0640 /etc/zabbix/zabbix_agent2.conf - fowners root:zabbix /etc/zabbix/zabbix_agent2.conf - keepdir /etc/zabbix/zabbix_agent2.d/plugins.d - - newinitd "${FILESDIR}"/zabbix-agent2.init zabbix-agent2 - - dosbin src/go/bin/zabbix_agent2 - - systemd_dounit "${FILESDIR}"/zabbix-agent2.service - newtmpfiles "${FILESDIR}"/zabbix-agent2.tmpfiles zabbix-agent2.conf - fi - - fowners root:zabbix /etc/zabbix - fowners zabbix:zabbix \ - /var/lib/zabbix \ - /var/lib/zabbix/home \ - /var/lib/zabbix/scripts \ - /var/lib/zabbix/alertscripts \ - /var/lib/zabbix/externalscripts \ - /var/log/zabbix - fperms 0750 \ - /etc/zabbix \ - /var/lib/zabbix \ - /var/lib/zabbix/home \ - /var/lib/zabbix/scripts \ - /var/lib/zabbix/alertscripts \ - /var/lib/zabbix/externalscripts \ - /var/log/zabbix - - dodoc README INSTALL NEWS ChangeLog \ - conf/zabbix_agentd.conf \ - conf/zabbix_proxy.conf \ - conf/zabbix_agentd/userparameter_examples.conf \ - conf/zabbix_agentd/userparameter_mysql.conf \ - conf/zabbix_server.conf - - if use frontend; then - webapp_src_preinst - cp -R ui/* "${D}/${MY_HTDOCSDIR}" - webapp_configfile \ - "${MY_HTDOCSDIR}"/include/db.inc.php \ - "${MY_HTDOCSDIR}"/include/config.inc.php - webapp_src_install - fi - - if use java; then - dodir \ - /${ZABBIXJAVA_BASE} \ - /${ZABBIXJAVA_BASE}/bin \ - /${ZABBIXJAVA_BASE}/lib - keepdir /${ZABBIXJAVA_BASE} - exeinto /${ZABBIXJAVA_BASE}/bin - doexe src/zabbix_java/bin/zabbix-java-gateway-"${MY_PV}".jar - exeinto /${ZABBIXJAVA_BASE}/lib - doexe \ - src/zabbix_java/lib/logback-classic-1.2.9.jar \ - src/zabbix_java/lib/logback-console.xml \ - src/zabbix_java/lib/logback-core-1.2.9.jar \ - src/zabbix_java/lib/logback.xml \ - src/zabbix_java/lib/android-json-4.3_r3.1.jar \ - src/zabbix_java/lib/slf4j-api-1.7.32.jar - newinitd "${FILESDIR}"/zabbix-jmx-proxy.init zabbix-jmx-proxy - newconfd "${FILESDIR}"/zabbix-jmx-proxy.conf zabbix-jmx-proxy - fi -} - -pkg_postinst() { - if use server || use proxy ; then - elog - elog "You may need to configure your database for Zabbix" - elog "if you have not already done so." - elog - - zabbix_homedir=$(egethome zabbix) - if [ -n "${zabbix_homedir}" ] && \ - [ "${zabbix_homedir}" != "/var/lib/zabbix/home" ]; then - ewarn - ewarn "The user 'zabbix' should have his homedir changed" - ewarn "to /var/lib/zabbix/home if you want to use" - ewarn "custom alert scripts." - ewarn - ewarn "A real homedir might be needed for configfiles" - ewarn "for custom alert scripts." - ewarn - ewarn "To change the homedir use:" - ewarn " usermod -d /var/lib/zabbix/home zabbix" - ewarn - fi - fi - - if use server; then - tmpfiles_process zabbix-server.conf - - elog - elog "For distributed monitoring you have to run:" - elog - elog "zabbix_server -n " - elog - elog "This will convert database data for use with Node ID" - elog "and also adds a local node." - elog - fi - - if use proxy; then - tmpfiles_process zabbix-proxy.conf - fi - - if use agent; then - tmpfiles_process zabbix-agentd.conf - fi - - if use agent2; then - tmpfiles_process zabbix-agent2.conf - fi - - elog "--" - elog - elog "You may need to add these lines to /etc/services:" - elog - elog "zabbix-agent 10050/tcp Zabbix Agent" - elog "zabbix-agent 10050/udp Zabbix Agent" - elog "zabbix-trapper 10051/tcp Zabbix Trapper" - elog "zabbix-trapper 10051/udp Zabbix Trapper" - elog - - if use server || use proxy ; then - # check for fping - fping_perms=$(stat -c %a /usr/sbin/fping 2>/dev/null) - case "${fping_perms}" in - 4[157][157][157]) - ;; - *) - ewarn - ewarn "If you want to use the checks 'icmpping' and 'icmppingsec'," - ewarn "you have to make /usr/sbin/fping setuid root and executable" - ewarn "by everyone. Run the following command to fix it:" - ewarn - ewarn " chmod u=rwsx,g=rx,o=rx /usr/sbin/fping" - ewarn - ewarn "Please be aware that this might impose a security risk," - ewarn "depending on the code quality of fping." - ewarn - ;; - esac - fi -} - -pkg_prerm() { - (use frontend || use server) && webapp_pkg_prerm -} diff --git a/net-analyzer/zabbix/zabbix-6.2.8.ebuild b/net-analyzer/zabbix/zabbix-6.2.8.ebuild deleted file mode 100644 index da72c61d9417..000000000000 --- a/net-analyzer/zabbix/zabbix-6.2.8.ebuild +++ /dev/null @@ -1,397 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -# To create the go modules tarball: -# cd src/go -# GOMODCACHE="${PWD}"/go-mod go mod download -modcacherw -# tar -acf zabbix-${PV}-go-deps.tar.xz go-mod - -EAPI=8 - -GO_OPTIONAL="yes" -# needed to make webapp-config dep optional -WEBAPP_OPTIONAL="yes" -inherit webapp java-pkg-opt-2 systemd tmpfiles toolchain-funcs go-module user-info - -DESCRIPTION="ZABBIX is software for monitoring of your applications, network and servers" -HOMEPAGE="https://www.zabbix.com/" -MY_P=${P/_/} -MY_PV=${PV/_/} -SRC_URI="https://cdn.zabbix.com/${PN}/sources/stable/$(ver_cut 1-2)/${P}.tar.gz - agent2? ( https://dev.gentoo.org/~fordfrog/distfiles/${P}-go-deps.tar.xz ) -" - -LICENSE="GPL-2" -SLOT="0/$(ver_cut 1-2)" -WEBAPP_MANUAL_SLOT="yes" -KEYWORDS="amd64 ~x86" -IUSE="agent +agent2 curl frontend gnutls ipv6 java ldap libxml2 mysql odbc openipmi +openssl oracle +postgres proxy server snmp sqlite ssh static" -REQUIRED_USE="|| ( agent agent2 frontend proxy server ) - ?? ( gnutls openssl ) - proxy? ( ^^ ( mysql oracle postgres sqlite ) ) - server? ( ^^ ( mysql oracle postgres ) !sqlite ) - static? ( !oracle !snmp )" - -COMMON_DEPEND=" - curl? ( net-misc/curl ) - gnutls? ( net-libs/gnutls:0= ) - java? ( >=virtual/jdk-1.8:* ) - ldap? ( - =dev-libs/cyrus-sasl-2* - net-libs/gnutls:= - net-nds/openldap:= - ) - libxml2? ( dev-libs/libxml2 ) - mysql? ( dev-db/mysql-connector-c:= ) - odbc? ( dev-db/unixODBC ) - openipmi? ( sys-libs/openipmi ) - openssl? ( dev-libs/openssl:=[-bindist(-)] ) - oracle? ( dev-db/oracle-instantclient[odbc,sdk] ) - postgres? ( dev-db/postgresql:* ) - proxy? ( - dev-libs/libevent:= - sys-libs/zlib - ) - server? ( - dev-libs/libevent:= - sys-libs/zlib - ) - snmp? ( net-analyzer/net-snmp:= ) - sqlite? ( dev-db/sqlite ) - ssh? ( net-libs/libssh2 ) -" - -RDEPEND="${COMMON_DEPEND} - acct-group/zabbix - acct-user/zabbix - java? ( >=virtual/jre-1.8:* ) - mysql? ( virtual/mysql ) - proxy? ( - dev-libs/libpcre2:= - net-analyzer/fping[suid] - ) - server? ( - app-admin/webapp-config - dev-libs/libpcre2:= - net-analyzer/fping[suid] - ) - frontend? ( - app-admin/webapp-config - dev-lang/php:*[bcmath,ctype,sockets,gd,truetype,xml,session,xmlreader,xmlwriter,nls,sysvipc,unicode] - media-libs/gd[png] - virtual/httpd-php:* - mysql? ( dev-lang/php[mysqli] ) - odbc? ( dev-lang/php[odbc] ) - oracle? ( dev-lang/php[oci8-instant-client] ) - postgres? ( dev-lang/php[postgres] ) - sqlite? ( dev-lang/php[sqlite] ) - ) -" -DEPEND="${COMMON_DEPEND} - static? ( - curl? ( net-misc/curl[static-libs] ) - ldap? ( - =dev-libs/cyrus-sasl-2*[static-libs] - net-libs/gnutls[static-libs] - net-nds/openldap[static-libs] - ) - libxml2? ( dev-libs/libxml2[static-libs] ) - mysql? ( dev-db/mysql-connector-c[static-libs] ) - odbc? ( dev-db/unixODBC[static-libs] ) - postgres? ( dev-db/postgresql:*[static-libs] ) - sqlite? ( dev-db/sqlite[static-libs] ) - ssh? ( net-libs/libssh2 ) - ) -" -BDEPEND=" - virtual/pkgconfig - agent2? ( - >=dev-lang/go-1.12 - app-arch/unzip - ) -" - -# upstream tests fail for agent2 -RESTRICT="test" - -PATCHES=( - "${FILESDIR}/${PN}-4.0.18-modulepathfix.patch" - "${FILESDIR}/${PN}-3.0.30-security-disable-PidFile.patch" - "${FILESDIR}/${PN}-6.0.3-system.sw.packages.patch" -) - -S=${WORKDIR}/${MY_P} - -ZABBIXJAVA_BASE="opt/zabbix_java" - -pkg_setup() { - if use oracle; then - if [ -z "${ORACLE_HOME}" ]; then - eerror - eerror "The environment variable ORACLE_HOME must be set" - eerror "and point to the correct location." - eerror "It looks like you don't have Oracle installed." - eerror - die "Environment variable ORACLE_HOME is not set" - fi - fi - - if use frontend; then - webapp_pkg_setup - fi - - java-pkg-opt-2_pkg_setup -} - -src_configure() { - local econf_args=( - --with-libpcre2 - "$(use_enable agent)" - "$(use_enable agent2)" - "$(use_enable ipv6)" - "$(use_enable java)" - "$(use_enable proxy)" - "$(use_enable server)" - "$(use_enable static)" - "$(use_with curl libcurl)" - "$(use_with gnutls)" - "$(use_with ldap)" - "$(use_with libxml2)" - "$(use_with mysql)" - "$(use_with odbc unixodbc)" - "$(use_with openipmi openipmi)" - "$(use_with openssl)" - "$(use_with oracle)" - "$(use_with postgres postgresql)" - "$(use_with snmp net-snmp)" - "$(use_with sqlite sqlite3)" - "$(use_with ssh ssh2)" - ) - - econf ${econf_args[@]} -} - -src_compile() { - if [ -f Makefile ] || [ -f GNUmakefile ] || [ -f makefile ]; then - emake AR="$(tc-getAR)" RANLIB="$(tc-getRANLIB)" - fi -} - -src_install() { - local dirs=( - /etc/zabbix - /var/lib/zabbix - /var/lib/zabbix/home - /var/lib/zabbix/scripts - /var/lib/zabbix/alertscripts - /var/lib/zabbix/externalscripts - /var/log/zabbix - ) - - for dir in "${dirs[@]}"; do - keepdir "${dir}" - done - - if use server; then - insinto /etc/zabbix - doins "${S}"/conf/zabbix_server.conf - fperms 0640 /etc/zabbix/zabbix_server.conf - fowners root:zabbix /etc/zabbix/zabbix_server.conf - - newinitd "${FILESDIR}"/zabbix-server-r1.init zabbix-server - - dosbin src/zabbix_server/zabbix_server - - insinto /usr/share/zabbix - doins -r "${S}"/database/ - - systemd_dounit "${FILESDIR}"/zabbix-server.service - newtmpfiles "${FILESDIR}"/zabbix-server.tmpfiles zabbix-server.conf - fi - - if use proxy; then - insinto /etc/zabbix - doins "${S}"/conf/zabbix_proxy.conf - fperms 0640 /etc/zabbix/zabbix_proxy.conf - fowners root:zabbix /etc/zabbix/zabbix_proxy.conf - - newinitd "${FILESDIR}"/zabbix-proxy.init zabbix-proxy - - dosbin src/zabbix_proxy/zabbix_proxy - - insinto /usr/share/zabbix - doins -r "${S}"/database/ - - systemd_dounit "${FILESDIR}"/zabbix-proxy.service - newtmpfiles "${FILESDIR}"/zabbix-proxy.tmpfiles zabbix-proxy.conf - fi - - if use agent; then - insinto /etc/zabbix - doins "${S}"/conf/zabbix_agentd.conf - fperms 0640 /etc/zabbix/zabbix_agentd.conf - fowners root:zabbix /etc/zabbix/zabbix_agentd.conf - - newinitd "${FILESDIR}"/zabbix-agentd.init zabbix-agentd - - dosbin src/zabbix_agent/zabbix_agentd - dobin \ - src/zabbix_sender/zabbix_sender \ - src/zabbix_get/zabbix_get - - systemd_dounit "${FILESDIR}"/zabbix-agentd.service - newtmpfiles "${FILESDIR}"/zabbix-agentd.tmpfiles zabbix-agentd.conf - fi - if use agent2; then - insinto /etc/zabbix - doins "${S}"/src/go/conf/zabbix_agent2.conf - fperms 0640 /etc/zabbix/zabbix_agent2.conf - fowners root:zabbix /etc/zabbix/zabbix_agent2.conf - keepdir /etc/zabbix/zabbix_agent2.d/plugins.d - - newinitd "${FILESDIR}"/zabbix-agent2.init zabbix-agent2 - - dosbin src/go/bin/zabbix_agent2 - - systemd_dounit "${FILESDIR}"/zabbix-agent2.service - newtmpfiles "${FILESDIR}"/zabbix-agent2.tmpfiles zabbix-agent2.conf - fi - - fowners root:zabbix /etc/zabbix - fowners zabbix:zabbix \ - /var/lib/zabbix \ - /var/lib/zabbix/home \ - /var/lib/zabbix/scripts \ - /var/lib/zabbix/alertscripts \ - /var/lib/zabbix/externalscripts \ - /var/log/zabbix - fperms 0750 \ - /etc/zabbix \ - /var/lib/zabbix \ - /var/lib/zabbix/home \ - /var/lib/zabbix/scripts \ - /var/lib/zabbix/alertscripts \ - /var/lib/zabbix/externalscripts \ - /var/log/zabbix - - dodoc README INSTALL NEWS ChangeLog \ - conf/zabbix_agentd.conf \ - conf/zabbix_proxy.conf \ - conf/zabbix_agentd/userparameter_examples.conf \ - conf/zabbix_agentd/userparameter_mysql.conf \ - conf/zabbix_server.conf - - if use frontend; then - webapp_src_preinst - cp -R ui/* "${D}/${MY_HTDOCSDIR}" - webapp_configfile \ - "${MY_HTDOCSDIR}"/include/db.inc.php \ - "${MY_HTDOCSDIR}"/include/config.inc.php - webapp_src_install - fi - - if use java; then - dodir \ - /${ZABBIXJAVA_BASE} \ - /${ZABBIXJAVA_BASE}/bin \ - /${ZABBIXJAVA_BASE}/lib - keepdir /${ZABBIXJAVA_BASE} - exeinto /${ZABBIXJAVA_BASE}/bin - doexe src/zabbix_java/bin/zabbix-java-gateway-"${MY_PV}".jar - exeinto /${ZABBIXJAVA_BASE}/lib - doexe \ - src/zabbix_java/lib/logback-classic-1.2.9.jar \ - src/zabbix_java/lib/logback-console.xml \ - src/zabbix_java/lib/logback-core-1.2.9.jar \ - src/zabbix_java/lib/logback.xml \ - src/zabbix_java/lib/android-json-4.3_r3.1.jar \ - src/zabbix_java/lib/slf4j-api-1.7.32.jar - newinitd "${FILESDIR}"/zabbix-jmx-proxy.init zabbix-jmx-proxy - newconfd "${FILESDIR}"/zabbix-jmx-proxy.conf zabbix-jmx-proxy - fi -} - -pkg_postinst() { - if use server || use proxy ; then - elog - elog "You may need to configure your database for Zabbix" - elog "if you have not already done so." - elog - - zabbix_homedir=$(egethome zabbix) - if [ -n "${zabbix_homedir}" ] && \ - [ "${zabbix_homedir}" != "/var/lib/zabbix/home" ]; then - ewarn - ewarn "The user 'zabbix' should have his homedir changed" - ewarn "to /var/lib/zabbix/home if you want to use" - ewarn "custom alert scripts." - ewarn - ewarn "A real homedir might be needed for configfiles" - ewarn "for custom alert scripts." - ewarn - ewarn "To change the homedir use:" - ewarn " usermod -d /var/lib/zabbix/home zabbix" - ewarn - fi - fi - - if use server; then - tmpfiles_process zabbix-server.conf - - elog - elog "For distributed monitoring you have to run:" - elog - elog "zabbix_server -n " - elog - elog "This will convert database data for use with Node ID" - elog "and also adds a local node." - elog - fi - - if use proxy; then - tmpfiles_process zabbix-proxy.conf - fi - - if use agent; then - tmpfiles_process zabbix-agentd.conf - fi - - if use agent2; then - tmpfiles_process zabbix-agent2.conf - fi - - elog "--" - elog - elog "You may need to add these lines to /etc/services:" - elog - elog "zabbix-agent 10050/tcp Zabbix Agent" - elog "zabbix-agent 10050/udp Zabbix Agent" - elog "zabbix-trapper 10051/tcp Zabbix Trapper" - elog "zabbix-trapper 10051/udp Zabbix Trapper" - elog - - if use server || use proxy ; then - # check for fping - fping_perms=$(stat -c %a /usr/sbin/fping 2>/dev/null) - case "${fping_perms}" in - 4[157][157][157]) - ;; - *) - ewarn - ewarn "If you want to use the checks 'icmpping' and 'icmppingsec'," - ewarn "you have to make /usr/sbin/fping setuid root and executable" - ewarn "by everyone. Run the following command to fix it:" - ewarn - ewarn " chmod u=rwsx,g=rx,o=rx /usr/sbin/fping" - ewarn - ewarn "Please be aware that this might impose a security risk," - ewarn "depending on the code quality of fping." - ewarn - ;; - esac - fi -} - -pkg_prerm() { - (use frontend || use server) && webapp_pkg_prerm -} diff --git a/net-analyzer/zabbix/zabbix-6.2.9.ebuild b/net-analyzer/zabbix/zabbix-6.2.9.ebuild deleted file mode 100644 index f3edadcff0ce..000000000000 --- a/net-analyzer/zabbix/zabbix-6.2.9.ebuild +++ /dev/null @@ -1,397 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -# To create the go modules tarball: -# cd src/go -# GOMODCACHE="${PWD}"/go-mod go mod download -modcacherw -# tar -acf zabbix-${PV}-go-deps.tar.xz go-mod - -EAPI=8 - -GO_OPTIONAL="yes" -# needed to make webapp-config dep optional -WEBAPP_OPTIONAL="yes" -inherit webapp java-pkg-opt-2 systemd tmpfiles toolchain-funcs go-module user-info - -DESCRIPTION="ZABBIX is software for monitoring of your applications, network and servers" -HOMEPAGE="https://www.zabbix.com/" -MY_P=${P/_/} -MY_PV=${PV/_/} -SRC_URI="https://cdn.zabbix.com/${PN}/sources/stable/$(ver_cut 1-2)/${P}.tar.gz - agent2? ( https://dev.gentoo.org/~fordfrog/distfiles/${P}-go-deps.tar.xz ) -" - -LICENSE="GPL-2" -SLOT="0/$(ver_cut 1-2)" -WEBAPP_MANUAL_SLOT="yes" -KEYWORDS="~amd64 ~x86" -IUSE="agent +agent2 curl frontend gnutls ipv6 java ldap libxml2 mysql odbc openipmi +openssl oracle +postgres proxy server snmp sqlite ssh static" -REQUIRED_USE="|| ( agent agent2 frontend proxy server ) - ?? ( gnutls openssl ) - proxy? ( ^^ ( mysql oracle postgres sqlite ) ) - server? ( ^^ ( mysql oracle postgres ) !sqlite ) - static? ( !oracle !snmp )" - -COMMON_DEPEND=" - curl? ( net-misc/curl ) - gnutls? ( net-libs/gnutls:0= ) - java? ( >=virtual/jdk-1.8:* ) - ldap? ( - =dev-libs/cyrus-sasl-2* - net-libs/gnutls:= - net-nds/openldap:= - ) - libxml2? ( dev-libs/libxml2 ) - mysql? ( dev-db/mysql-connector-c:= ) - odbc? ( dev-db/unixODBC ) - openipmi? ( sys-libs/openipmi ) - openssl? ( dev-libs/openssl:=[-bindist(-)] ) - oracle? ( dev-db/oracle-instantclient[odbc,sdk] ) - postgres? ( dev-db/postgresql:* ) - proxy? ( - dev-libs/libevent:= - sys-libs/zlib - ) - server? ( - dev-libs/libevent:= - sys-libs/zlib - ) - snmp? ( net-analyzer/net-snmp:= ) - sqlite? ( dev-db/sqlite ) - ssh? ( net-libs/libssh2 ) -" - -RDEPEND="${COMMON_DEPEND} - acct-group/zabbix - acct-user/zabbix - java? ( >=virtual/jre-1.8:* ) - mysql? ( virtual/mysql ) - proxy? ( - dev-libs/libpcre2:= - net-analyzer/fping[suid] - ) - server? ( - app-admin/webapp-config - dev-libs/libpcre2:= - net-analyzer/fping[suid] - ) - frontend? ( - app-admin/webapp-config - dev-lang/php:*[bcmath,ctype,sockets,gd,truetype,xml,session,xmlreader,xmlwriter,nls,sysvipc,unicode] - media-libs/gd[png] - virtual/httpd-php:* - mysql? ( dev-lang/php[mysqli] ) - odbc? ( dev-lang/php[odbc] ) - oracle? ( dev-lang/php[oci8-instant-client] ) - postgres? ( dev-lang/php[postgres] ) - sqlite? ( dev-lang/php[sqlite] ) - ) -" -DEPEND="${COMMON_DEPEND} - static? ( - curl? ( net-misc/curl[static-libs] ) - ldap? ( - =dev-libs/cyrus-sasl-2*[static-libs] - net-libs/gnutls[static-libs] - net-nds/openldap[static-libs] - ) - libxml2? ( dev-libs/libxml2[static-libs] ) - mysql? ( dev-db/mysql-connector-c[static-libs] ) - odbc? ( dev-db/unixODBC[static-libs] ) - postgres? ( dev-db/postgresql:*[static-libs] ) - sqlite? ( dev-db/sqlite[static-libs] ) - ssh? ( net-libs/libssh2 ) - ) -" -BDEPEND=" - virtual/pkgconfig - agent2? ( - >=dev-lang/go-1.12 - app-arch/unzip - ) -" - -# upstream tests fail for agent2 -RESTRICT="test" - -PATCHES=( - "${FILESDIR}/${PN}-4.0.18-modulepathfix.patch" - "${FILESDIR}/${PN}-3.0.30-security-disable-PidFile.patch" - "${FILESDIR}/${PN}-6.0.3-system.sw.packages.patch" -) - -S=${WORKDIR}/${MY_P} - -ZABBIXJAVA_BASE="opt/zabbix_java" - -pkg_setup() { - if use oracle; then - if [ -z "${ORACLE_HOME}" ]; then - eerror - eerror "The environment variable ORACLE_HOME must be set" - eerror "and point to the correct location." - eerror "It looks like you don't have Oracle installed." - eerror - die "Environment variable ORACLE_HOME is not set" - fi - fi - - if use frontend; then - webapp_pkg_setup - fi - - java-pkg-opt-2_pkg_setup -} - -src_configure() { - local econf_args=( - --with-libpcre2 - "$(use_enable agent)" - "$(use_enable agent2)" - "$(use_enable ipv6)" - "$(use_enable java)" - "$(use_enable proxy)" - "$(use_enable server)" - "$(use_enable static)" - "$(use_with curl libcurl)" - "$(use_with gnutls)" - "$(use_with ldap)" - "$(use_with libxml2)" - "$(use_with mysql)" - "$(use_with odbc unixodbc)" - "$(use_with openipmi openipmi)" - "$(use_with openssl)" - "$(use_with oracle)" - "$(use_with postgres postgresql)" - "$(use_with snmp net-snmp)" - "$(use_with sqlite sqlite3)" - "$(use_with ssh ssh2)" - ) - - econf ${econf_args[@]} -} - -src_compile() { - if [ -f Makefile ] || [ -f GNUmakefile ] || [ -f makefile ]; then - emake AR="$(tc-getAR)" RANLIB="$(tc-getRANLIB)" - fi -} - -src_install() { - local dirs=( - /etc/zabbix - /var/lib/zabbix - /var/lib/zabbix/home - /var/lib/zabbix/scripts - /var/lib/zabbix/alertscripts - /var/lib/zabbix/externalscripts - /var/log/zabbix - ) - - for dir in "${dirs[@]}"; do - keepdir "${dir}" - done - - if use server; then - insinto /etc/zabbix - doins "${S}"/conf/zabbix_server.conf - fperms 0640 /etc/zabbix/zabbix_server.conf - fowners root:zabbix /etc/zabbix/zabbix_server.conf - - newinitd "${FILESDIR}"/zabbix-server-r1.init zabbix-server - - dosbin src/zabbix_server/zabbix_server - - insinto /usr/share/zabbix - doins -r "${S}"/database/ - - systemd_dounit "${FILESDIR}"/zabbix-server.service - newtmpfiles "${FILESDIR}"/zabbix-server.tmpfiles zabbix-server.conf - fi - - if use proxy; then - insinto /etc/zabbix - doins "${S}"/conf/zabbix_proxy.conf - fperms 0640 /etc/zabbix/zabbix_proxy.conf - fowners root:zabbix /etc/zabbix/zabbix_proxy.conf - - newinitd "${FILESDIR}"/zabbix-proxy.init zabbix-proxy - - dosbin src/zabbix_proxy/zabbix_proxy - - insinto /usr/share/zabbix - doins -r "${S}"/database/ - - systemd_dounit "${FILESDIR}"/zabbix-proxy.service - newtmpfiles "${FILESDIR}"/zabbix-proxy.tmpfiles zabbix-proxy.conf - fi - - if use agent; then - insinto /etc/zabbix - doins "${S}"/conf/zabbix_agentd.conf - fperms 0640 /etc/zabbix/zabbix_agentd.conf - fowners root:zabbix /etc/zabbix/zabbix_agentd.conf - - newinitd "${FILESDIR}"/zabbix-agentd.init zabbix-agentd - - dosbin src/zabbix_agent/zabbix_agentd - dobin \ - src/zabbix_sender/zabbix_sender \ - src/zabbix_get/zabbix_get - - systemd_dounit "${FILESDIR}"/zabbix-agentd.service - newtmpfiles "${FILESDIR}"/zabbix-agentd.tmpfiles zabbix-agentd.conf - fi - if use agent2; then - insinto /etc/zabbix - doins "${S}"/src/go/conf/zabbix_agent2.conf - fperms 0640 /etc/zabbix/zabbix_agent2.conf - fowners root:zabbix /etc/zabbix/zabbix_agent2.conf - keepdir /etc/zabbix/zabbix_agent2.d/plugins.d - - newinitd "${FILESDIR}"/zabbix-agent2.init zabbix-agent2 - - dosbin src/go/bin/zabbix_agent2 - - systemd_dounit "${FILESDIR}"/zabbix-agent2.service - newtmpfiles "${FILESDIR}"/zabbix-agent2.tmpfiles zabbix-agent2.conf - fi - - fowners root:zabbix /etc/zabbix - fowners zabbix:zabbix \ - /var/lib/zabbix \ - /var/lib/zabbix/home \ - /var/lib/zabbix/scripts \ - /var/lib/zabbix/alertscripts \ - /var/lib/zabbix/externalscripts \ - /var/log/zabbix - fperms 0750 \ - /etc/zabbix \ - /var/lib/zabbix \ - /var/lib/zabbix/home \ - /var/lib/zabbix/scripts \ - /var/lib/zabbix/alertscripts \ - /var/lib/zabbix/externalscripts \ - /var/log/zabbix - - dodoc README INSTALL NEWS ChangeLog \ - conf/zabbix_agentd.conf \ - conf/zabbix_proxy.conf \ - conf/zabbix_agentd/userparameter_examples.conf \ - conf/zabbix_agentd/userparameter_mysql.conf \ - conf/zabbix_server.conf - - if use frontend; then - webapp_src_preinst - cp -R ui/* "${D}/${MY_HTDOCSDIR}" - webapp_configfile \ - "${MY_HTDOCSDIR}"/include/db.inc.php \ - "${MY_HTDOCSDIR}"/include/config.inc.php - webapp_src_install - fi - - if use java; then - dodir \ - /${ZABBIXJAVA_BASE} \ - /${ZABBIXJAVA_BASE}/bin \ - /${ZABBIXJAVA_BASE}/lib - keepdir /${ZABBIXJAVA_BASE} - exeinto /${ZABBIXJAVA_BASE}/bin - doexe src/zabbix_java/bin/zabbix-java-gateway-"${MY_PV}".jar - exeinto /${ZABBIXJAVA_BASE}/lib - doexe \ - src/zabbix_java/lib/logback-classic-1.2.9.jar \ - src/zabbix_java/lib/logback-console.xml \ - src/zabbix_java/lib/logback-core-1.2.9.jar \ - src/zabbix_java/lib/logback.xml \ - src/zabbix_java/lib/android-json-4.3_r3.1.jar \ - src/zabbix_java/lib/slf4j-api-1.7.32.jar - newinitd "${FILESDIR}"/zabbix-jmx-proxy.init zabbix-jmx-proxy - newconfd "${FILESDIR}"/zabbix-jmx-proxy.conf zabbix-jmx-proxy - fi -} - -pkg_postinst() { - if use server || use proxy ; then - elog - elog "You may need to configure your database for Zabbix" - elog "if you have not already done so." - elog - - zabbix_homedir=$(egethome zabbix) - if [ -n "${zabbix_homedir}" ] && \ - [ "${zabbix_homedir}" != "/var/lib/zabbix/home" ]; then - ewarn - ewarn "The user 'zabbix' should have his homedir changed" - ewarn "to /var/lib/zabbix/home if you want to use" - ewarn "custom alert scripts." - ewarn - ewarn "A real homedir might be needed for configfiles" - ewarn "for custom alert scripts." - ewarn - ewarn "To change the homedir use:" - ewarn " usermod -d /var/lib/zabbix/home zabbix" - ewarn - fi - fi - - if use server; then - tmpfiles_process zabbix-server.conf - - elog - elog "For distributed monitoring you have to run:" - elog - elog "zabbix_server -n " - elog - elog "This will convert database data for use with Node ID" - elog "and also adds a local node." - elog - fi - - if use proxy; then - tmpfiles_process zabbix-proxy.conf - fi - - if use agent; then - tmpfiles_process zabbix-agentd.conf - fi - - if use agent2; then - tmpfiles_process zabbix-agent2.conf - fi - - elog "--" - elog - elog "You may need to add these lines to /etc/services:" - elog - elog "zabbix-agent 10050/tcp Zabbix Agent" - elog "zabbix-agent 10050/udp Zabbix Agent" - elog "zabbix-trapper 10051/tcp Zabbix Trapper" - elog "zabbix-trapper 10051/udp Zabbix Trapper" - elog - - if use server || use proxy ; then - # check for fping - fping_perms=$(stat -c %a /usr/sbin/fping 2>/dev/null) - case "${fping_perms}" in - 4[157][157][157]) - ;; - *) - ewarn - ewarn "If you want to use the checks 'icmpping' and 'icmppingsec'," - ewarn "you have to make /usr/sbin/fping setuid root and executable" - ewarn "by everyone. Run the following command to fix it:" - ewarn - ewarn " chmod u=rwsx,g=rx,o=rx /usr/sbin/fping" - ewarn - ewarn "Please be aware that this might impose a security risk," - ewarn "depending on the code quality of fping." - ewarn - ;; - esac - fi -} - -pkg_prerm() { - (use frontend || use server) && webapp_pkg_prerm -} diff --git a/net-dns/Manifest.gz b/net-dns/Manifest.gz index ce70d31f6bd4..545c79514023 100644 Binary files a/net-dns/Manifest.gz and b/net-dns/Manifest.gz differ diff --git a/net-dns/dnsdist/metadata.xml b/net-dns/dnsdist/metadata.xml index 82ea726b8593..208d832c0856 100644 --- a/net-dns/dnsdist/metadata.xml +++ b/net-dns/dnsdist/metadata.xml @@ -17,4 +17,7 @@ Enable support for dnstap Enable support for lmdb + + PowerDNS/pdns + diff --git a/net-dns/pdns/Manifest b/net-dns/pdns/Manifest index 0dccd6cb037b..22352d07d478 100644 --- a/net-dns/pdns/Manifest +++ b/net-dns/pdns/Manifest @@ -1 +1,2 @@ DIST pdns-4.7.3.tar.bz2 1353333 BLAKE2B 9dc693c940af08755dcf2c77d103bf219e453684f1714eb0790bc06b68ee01872fafc29ab7ba62a8d2cde9dc0035c527d9f241afe7fb170821dfeb5b6c32242d SHA512 25ca5ef04297efc56f6b88e06177d0db5ed390844225dbc53bff6a9299ba3f711aa27642adca31df0f04e6af7059280690a3793458090cd6b2703cbc4fc9072a +DIST pdns-4.7.4.tar.bz2 1339609 BLAKE2B b5aebad86cf43d87939dcaf1f31cf95969ce3fe5cf55237117eb455c980f6b617ad2d4769d002698b87161a04c5c9e9cefad709cdae703756d6660aef82af6de SHA512 7b666bba72adb2058aa28cff9962bbbf5ddc77860e5f55f74629e2ba27787595347584b7881a846d6c7a698221de785a9dce45992b80313977bbe1e5e5d0d05c diff --git a/net-dns/pdns/pdns-4.7.4.ebuild b/net-dns/pdns/pdns-4.7.4.ebuild new file mode 100644 index 000000000000..06946373e433 --- /dev/null +++ b/net-dns/pdns/pdns-4.7.4.ebuild @@ -0,0 +1,170 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +LUA_COMPAT=( lua5-{1..4} luajit ) + +inherit flag-o-matic lua-single + +DESCRIPTION="The PowerDNS Daemon" +HOMEPAGE="https://www.powerdns.com/" +SRC_URI="https://downloads.powerdns.com/releases/${P/_/-}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +# other possible flags: +# db2: we lack the dep +# oracle: dito (need Oracle Client Libraries) +# xdb: (almost) dead, surely not supported + +IUSE="debug doc geoip ldap lmdb lua-records mydns mysql postgres remote sodium sqlite systemd tools tinydns test" +RESTRICT="!test? ( test )" + +REQUIRED_USE="${LUA_REQUIRED_USE} + mydns? ( mysql )" + +DEPEND="${LUA_DEPS} + dev-libs/openssl:= + dev-libs/boost:= + lmdb? ( >=dev-db/lmdb-0.9.29 ) + lua-records? ( >=net-misc/curl-7.21.3 ) + mysql? ( dev-db/mysql-connector-c:= ) + postgres? ( dev-db/postgresql:= ) + ldap? ( >=net-nds/openldap-2.0.27-r4:= app-crypt/mit-krb5 ) + sqlite? ( dev-db/sqlite:3 ) + geoip? ( >=dev-cpp/yaml-cpp-0.5.1:= dev-libs/geoip ) + sodium? ( dev-libs/libsodium:= ) + tinydns? ( >=dev-db/tinycdb-0.77 ) + elibc_glibc? ( x86? ( >=sys-libs/glibc-2.34 ) )" +RDEPEND="${DEPEND} + acct-user/pdns + acct-group/pdns" + +BDEPEND="virtual/pkgconfig + doc? ( app-doc/doxygen[dot] )" + +S="${WORKDIR}"/${P/_/-} + +pkg_setup() { + lua-single_pkg_setup + append-lfs-flags + append-cppflags -D_TIME_BITS=64 +} + +src_configure() { + local cnf_dynmodules="pipe bind" # the default backends, always enabled + + #use db2 && cnf_dynmodules+=" db2" + use ldap && cnf_dynmodules+=" ldap" + use lmdb && cnf_dynmodules+=" lmdb" + use mydns && cnf_dynmodules+=" mydns" + use mysql && cnf_dynmodules+=" gmysql" + #use oracle && cnf_dynmodules+=" goracle oracle" + use postgres && cnf_dynmodules+=" gpgsql" + use remote && cnf_dynmodules+=" remote" + use sqlite && cnf_dynmodules+=" gsqlite3" + use tinydns && cnf_dynmodules+=" tinydns" + use geoip && cnf_dynmodules+=" geoip" + #use xdb && cnf_dynmodules+=" xdb" + + econf \ + --disable-static \ + --sysconfdir=/etc/powerdns \ + --libdir=/usr/$(get_libdir)/powerdns \ + --with-service-user=pdns \ + --with-service-group=pdns \ + --with-modules= \ + --with-dynmodules="${cnf_dynmodules}" \ + --with-mysql-lib=/usr/$(get_libdir) \ + --with-lua="${ELUA}" \ + $(use_enable debug verbose-logging) \ + $(use_enable lua-records) \ + $(use_enable test unit-tests) \ + $(use_enable tools) \ + $(use_enable systemd) \ + $(use_with sodium libsodium) \ + ${myconf} +} + +src_compile() { + default + use doc && emake -C codedocs codedocs +} + +src_install() { + default + + mv "${D}"/etc/powerdns/pdns.conf{-dist,} + + fperms 0700 /etc/powerdns + fperms 0600 /etc/powerdns/pdns.conf + + # set defaults: setuid=pdns, setgid=pdns + sed -i \ + -e 's/^# set\([ug]\)id=$/set\1id=pdns/g' \ + "${D}"/etc/powerdns/pdns.conf + + newinitd "${FILESDIR}"/pdns-r1 pdns + + keepdir /var/empty + + if use doc; then + docinto html + dodoc -r codedocs/html/. + fi + + # Install development headers + insinto /usr/include/pdns + doins pdns/*.hh + insinto /usr/include/pdns/backends/gsql + doins pdns/backends/gsql/*.hh + + if use ldap ; then + insinto /etc/openldap/schema + doins "${FILESDIR}"/dnsdomain2.schema + fi + + find "${D}" -name '*.la' -delete || die +} + +pkg_postinst() { + elog "PowerDNS provides multiple instances support. You can create more instances" + elog "by symlinking the pdns init script to another name." + elog + elog "The name must be in the format pdns. and PowerDNS will use the" + elog "/etc/powerdns/pdns-.conf configuration file instead of the default." + + local old + for old in ${REPLACING_VERSIONS}; do + ver_test ${old} -lt 3.2 || continue + + echo + ewarn "To fix a security bug (bug #458018) had the following" + ewarn "files/directories the world-readable bit removed (if set):" + ewarn " ${EPREFIX}/etc/powerdns" + ewarn " ${EPREFIX}/etc/powerdns/pdns.conf" + ewarn "Check if this is correct for your setup" + ewarn "This is a one-time change and will not happen on subsequent updates." + chmod o-rwx "${EPREFIX}"/etc/powerdns/{,pdns.conf} + + break + done + + if use postgres; then + for old in ${REPLACING_VERSIONS}; do + ver_test ${old} -lt 4.1.11-r1 || continue + + echo + ewarn "PowerDNS 4.1.11 contains a security fix for the PostgreSQL backend." + ewarn "This security fix needs to be applied manually to the database schema." + ewarn "Please refer to the official security advisory for more information:" + ewarn + ewarn " https://doc.powerdns.com/authoritative/security-advisories/powerdns-advisory-2019-06.html" + + break + done + fi +} diff --git a/net-im/Manifest.gz b/net-im/Manifest.gz index 8d2b2df71b6e..3558d982b642 100644 Binary files a/net-im/Manifest.gz and b/net-im/Manifest.gz differ diff --git a/net-im/gajim/gajim-1.4.7-r1.ebuild b/net-im/gajim/gajim-1.4.7-r2.ebuild similarity index 98% rename from net-im/gajim/gajim-1.4.7-r1.ebuild rename to net-im/gajim/gajim-1.4.7-r2.ebuild index 1d8927da3dcc..0c1f9e76c74a 100644 --- a/net-im/gajim/gajim-1.4.7-r1.ebuild +++ b/net-im/gajim/gajim-1.4.7-r2.ebuild @@ -73,7 +73,7 @@ RDEPEND="${COMMON_DEPEND} app-text/gspell[introspection] app-text/hunspell ) - upnp? ( net-libs/gupnp-igd[introspection] ) + upnp? ( net-libs/gupnp-igd:0[introspection] ) ')" src_install() { diff --git a/net-im/neochat/Manifest b/net-im/neochat/Manifest index 210d6ed3abdc..6fb2faa8eaad 100644 --- a/net-im/neochat/Manifest +++ b/net-im/neochat/Manifest @@ -1 +1,2 @@ DIST neochat-22.11.tar.xz 465660 BLAKE2B bbd391a97cf4ea886042f3983798b766b4bd4fcf75513e4adf808227cc03ae6b533426b0f3ab000dc22593ce0be1ea7d284fac654db5bf66844633001300babd SHA512 7e10d2512dd60b76340a84b2daab1e020d75c0ec9d79c87d5f96ce2c394bf93e557b9c96606abe643a787db1136861c25826f9dc7680d3a43d218654ef864519 +DIST neochat-23.03.90.tar.xz 565068 BLAKE2B 18f21f5ce09719bddfae18ed2e376dcd2cf6c9b07dc889eaca03ea2ddc5e8f70bc28ce306500d062ea0bed52df9ae50ac995c3d1c1e849b57c82590dc07f3a78 SHA512 b08fdb6c4e3c266d47f399204927fe4b6e99c6947014447512e0a0ed6e1741a20d954046d6b9f1d5d3dba6b6ff6d7ace913d989a0e11a3f3e92be96866042f22 diff --git a/net-im/neochat/neochat-23.03.90.ebuild b/net-im/neochat/neochat-23.03.90.ebuild new file mode 100644 index 000000000000..2b46794ffafd --- /dev/null +++ b/net-im/neochat/neochat-23.03.90.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +ECM_HANDBOOK="optional" +ECM_TEST="true" +KFMIN=5.104.0 +QTMIN=5.15.5 +inherit ecm gear.kde.org + +DESCRIPTION="Client for Matrix, the decentralized communication protocol" +HOMEPAGE="https://apps.kde.org/neochat/" + +LICENSE="GPL-3+ handbook? ( CC-BY-SA-4.0 )" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc64" + +DEPEND=" + app-text/cmark:= + >=dev-libs/kirigami-addons-0.7.2:5 + dev-libs/qcoro5 + dev-libs/qtkeychain:=[qt5(+)] + >=dev-qt/qtdeclarative-${QTMIN}:5 + >=dev-qt/qtgui-${QTMIN}:5 + >=dev-qt/qtmultimedia-${QTMIN}:5 + >=dev-qt/qtnetwork-${QTMIN}:5 + >=dev-qt/qtquickcontrols2-${QTMIN}:5 + >=dev-qt/qtsvg-${QTMIN}:5 + >=dev-qt/qtwidgets-${QTMIN}:5 + >=kde-frameworks/kconfig-${KFMIN}:5 + >=kde-frameworks/kconfigwidgets-${KFMIN}:5 + >=kde-frameworks/kcoreaddons-${KFMIN}:5 + >=kde-frameworks/kdbusaddons-${KFMIN}:5 + >=kde-frameworks/ki18n-${KFMIN}:5 + >=kde-frameworks/kio-${KFMIN}:5 + >=kde-frameworks/kirigami-${KFMIN}:5 + >=kde-frameworks/kitemmodels-${KFMIN}:5[qml] + >=kde-frameworks/knotifications-${KFMIN}:5[qml] + >=kde-frameworks/kwindowsystem-${KFMIN}:5 + >=kde-frameworks/qqc2-desktop-style-${KFMIN}:5 + >=kde-frameworks/sonnet-${KFMIN}:5[qml] + media-libs/kquickimageeditor:5 + >=net-libs/libquotient-0.6:= +" +RDEPEND="${DEPEND} + >=dev-qt/qtgraphicaleffects-${QTMIN}:5 + >=dev-qt/qtmultimedia-${QTMIN}:5[qml] + >=kde-frameworks/purpose-${KFMIN}:5 +" +BDEPEND="virtual/pkgconfig" diff --git a/net-im/skypeforlinux/Manifest b/net-im/skypeforlinux/Manifest index 4135cac8976b..3f9949865a1c 100644 --- a/net-im/skypeforlinux/Manifest +++ b/net-im/skypeforlinux/Manifest @@ -1,4 +1,4 @@ DIST skypeforlinux_8.94.0.428-1.x86_64.rpm 126374668 BLAKE2B e90c5207c1ec0d2835158fd9a7382d8c412ab4f880200b4570195d1453f81b6a5aea26edb49eac153dd680a270fd8ef4f43b4c7a4bf1abd802f2cacef18256c3 SHA512 6623384ee97274cca43fa1013eeab14508e47b4b649b4b633025f658116147c3a4cce9eb584ed6b4f51e5dcb7e323b61c01c7fbd2bdd7a33224131941bb8a727 DIST skypeforlinux_8.95.0.408-1.x86_64.rpm 126523292 BLAKE2B 5e6018b7a2aef8a8cf4311cb50475af7f7799e93d2a1e8b4755428b0ce670819db9c106ac830121b75543c03fed7fc08c910544eb7d3dfb57c11fd7f30df9319 SHA512 c4acdb94e962753e61386e0c0ff18e217a395d5f919ed70ef83e655ca5bd7758f53391dbe977f0b0ffc27c5ea7ec465bf168fec557de3040db425cc365e8eff7 DIST skypeforlinux_8.96.0.207-1.x86_64.rpm 124580688 BLAKE2B 8bd2dfecee6730d4aeb49bef0e08fd1fd17aecf31a8cd81b5d0ba3d4a8bc6808bd6e08d7c91d39aa46982502b23c8e37c5f4ce2ae87da963cc0df8a8b8ed430d SHA512 27406615892a12a390d47e2a2087149c29a195e942d9fb1748ad1f7cb39012fdad0836b01c4bfe6e690e1a27f67ccdd6d0da2f4baa3cf6567733d95b5a35be17 -DIST skypeforlinux_8.96.0.408-1.x86_64.rpm 124598879 BLAKE2B 22dabd44f7465a777d15ddfd9b234df331e381c84dda60b44c6f6681c455cd7c1a8244b7b7b521d8ca43938d5ba68378232c983b2aae4efe1561927060009192 SHA512 46a1e29023ee784f5d541884d7482a9d6910b9ae6b159fb7e9d9b85d9f9bec608709963ce265c1f5516a3ee561a215935e817bf40fb2a6e6f0f4b118e6ea72a1 +DIST skypeforlinux_8.96.0.408-1.x86_64.rpm 124598879 BLAKE2B b3dcce3cbe8e51ebbe0f6478e8934890fae8c34051ebb2ba87b809353db69b50d7005db621cb198e960186f08eb82e4339f936423c65630c46c6bd9619c90ba3 SHA512 9d2c77157cba9db33182e5083f44009d06e9cb951bdee43d686e1029590ef13ac604fcf15b1b6899ab1f4bc8ef04c90509231fc3d7ad0ca500963affeb09eb12 diff --git a/net-im/synapse/synapse-1.79.0.ebuild b/net-im/synapse/synapse-1.79.0.ebuild index 5818877e2d32..62bcc9cf0a92 100644 --- a/net-im/synapse/synapse-1.79.0.ebuild +++ b/net-im/synapse/synapse-1.79.0.ebuild @@ -85,7 +85,7 @@ LICENSE+=" Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD MIT Unicode-DFS-2016 " SLOT="0" -KEYWORDS="~amd64 ~ppc64" +KEYWORDS="amd64 ~ppc64" IUSE="postgres systemd test" RESTRICT="!test? ( test )" diff --git a/net-im/telegram-desktop/Manifest b/net-im/telegram-desktop/Manifest index 0462a3422ba7..4cb576408f34 100644 --- a/net-im/telegram-desktop/Manifest +++ b/net-im/telegram-desktop/Manifest @@ -1,3 +1,2 @@ -DIST tdesktop-4.4.1-full.tar.gz 50077498 BLAKE2B 6196c474c0771197c56b386bbfd67e4a014569cb8bd9676990e323005f06cb6938aad0c0dd00fd74cab9fca1ac50c7bf7227f34aa39ae598b4f003199fa8cd00 SHA512 91038f0a615ef7ae1050cbfa614041a3d6a45fdbd26d120ef98cca3c31377612c3bb1e80f9aff58c4853a1726bf2cfb427f752a4f88a796f05b381516c981563 -DIST tdesktop-4.5.3-full.tar.gz 63718129 BLAKE2B 85492ad92ea2643dd5e74c831609a4f7be9671648d2b542c24f415dbb19b66521ccecb2a545eadfbf9fa7f934d35d32de085b5b8403dce54bed0b85c54ea98fe SHA512 58a9c5d096e236090347388e1ed480527f841045a80771079dc0c3e35e12ce8ac11753987e87bb57870d9bd8488fc6a4734114648ecec7823d8544744b06c6b1 DIST tdesktop-4.6.5-full.tar.gz 63793549 BLAKE2B a425aaf8d1f1c633b3b8ddacff5bb7cc26e6063d4238413fea76db6a4608497d229061a614c79464373e7f1aa3bb854d9718083638e119538e989a202741b3d6 SHA512 4a337e375d7746cb1fa652f5851f8be5718b7b9d9676bba8ab040489b8492b2a665a51848adba28117a910789aa942c386318a01f6c99b4caa12a1eac682c780 +DIST tdesktop-4.7.1-full.tar.gz 63990659 BLAKE2B 0d734dd5a5aebdafbef68d80249b88502a0ea77e37399603a42b86170e51b87dc0dc005d844a6e6c5e28f79880ae574695b70c14d9075cefcfeb8f7d95088a4f SHA512 1e83bcb56cbc84d1d7385b81b411273f4d26235ecff41b288fccfab75a848f80a80fff063212fc058a2ec923bf48a366311c7ccd678b079861ac15702a993f64 diff --git a/net-im/telegram-desktop/files/tdesktop-4.3.4-qt5-incompatibility-2.patch b/net-im/telegram-desktop/files/tdesktop-4.3.4-qt5-incompatibility-2.patch deleted file mode 100644 index ae5c84763c8d..000000000000 --- a/net-im/telegram-desktop/files/tdesktop-4.3.4-qt5-incompatibility-2.patch +++ /dev/null @@ -1,28 +0,0 @@ -Disable unused incompatible overload with qt5 - -Neither Qt nore C++ are my forte, but this code is unused with the packaged -distro version, anyway. - -/var/tmp/portage/net-im/telegram-desktop-4.3.4/work/tdesktop-4.3.4-full/Telegram/SourceFiles/platform/linux/specific_linux.cpp: In lambda function: -/var/tmp/portage/net-im/telegram-desktop-4.3.4/work/tdesktop-4.3.4-full/Telegram/SourceFiles/platform/linux/specific_linux.cpp:705:74: error: call of overloaded ‘arg(QByteArray&)’ is ambiguous - 705 | return qsl("org.telegram.desktop.%1.desktop").arg(md5Hash); - | ^ - ---- tdesktop-4.3.4-full.orig/Telegram/SourceFiles/platform/linux/specific_linux.cpp -+++ tdesktop-4.3.4-full/Telegram/SourceFiles/platform/linux/specific_linux.cpp -@@ -692,6 +692,7 @@ - + qsl(".desktop"); - } - -+#if !(defined(TDESKTOP_DISABLE_AUTOUPDATE) && QT_VERSION < QT_VERSION_CHECK(6, 2, 0)) - if (!Core::UpdaterDisabled()) { - QByteArray md5Hash(h); - if (!Launcher::Instance().customWorkingDir()) { -@@ -706,6 +707,7 @@ - - return qsl("org.telegram.desktop.%1.desktop").arg(md5Hash); - } -+#endif // !(defined(TDESKTOP_DISABLE_AUTOUPDATE) && QT_VERSION < QT_VERSION_CHECK(6, 2, 0)) - - return qsl("org.telegram.desktop.desktop"); - }()); diff --git a/net-im/telegram-desktop/metadata.xml b/net-im/telegram-desktop/metadata.xml index cd141868ce56..f99bd5fb5e94 100644 --- a/net-im/telegram-desktop/metadata.xml +++ b/net-im/telegram-desktop/metadata.xml @@ -11,7 +11,6 @@ Use the app-text/aspell spell-checking backend instead of app-text/hunspell - Enable the app-text/hunspell spell-checking backend (old flag) Use builtin patched copy of open-sans fonts (overrides fontconfig) Build with Qt6 support Add support for HEIF, AVIF and JpegXL by bundling kde-frameworks/kimageformats diff --git a/net-im/telegram-desktop/telegram-desktop-4.4.1.ebuild b/net-im/telegram-desktop/telegram-desktop-4.4.1.ebuild deleted file mode 100644 index 48b724704d43..000000000000 --- a/net-im/telegram-desktop/telegram-desktop-4.4.1.ebuild +++ /dev/null @@ -1,211 +0,0 @@ -# Copyright 2020-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) - -inherit xdg cmake python-any-r1 optfeature flag-o-matic - -DESCRIPTION="Official desktop client for Telegram" -HOMEPAGE="https://desktop.telegram.org" - -MY_P="tdesktop-${PV}-full" -SRC_URI="https://github.com/telegramdesktop/tdesktop/releases/download/v${PV}/${MY_P}.tar.gz" -S="${WORKDIR}/${MY_P}" - -LICENSE="BSD GPL-3-with-openssl-exception LGPL-2+" -SLOT="0" -KEYWORDS="amd64 ~arm64 ~ppc64 ~riscv" -IUSE="+dbus enchant +fonts +hunspell +jemalloc screencast +spell qt6 qt6-imageformats wayland +X" -REQUIRED_USE=" - spell? ( - ^^ ( enchant hunspell ) - ) - qt6-imageformats? ( qt6 ) -" - -KIMAGEFORMATS_RDEPEND=" - media-libs/libavif:= - media-libs/libheif:= - media-libs/libjxl -" -RDEPEND=" - !net-im/telegram-desktop-bin - app-arch/lz4:= - dev-cpp/abseil-cpp:= - dev-libs/glib:2 - dev-libs/libdispatch - dev-libs/libsigc++:2 - dev-libs/openssl:= - dev-libs/xxhash - media-libs/fontconfig:= - media-libs/libjpeg-turbo:= - ~media-libs/libtgvoip-2.4.4_p20220503 - media-libs/openal - media-libs/opus:= - media-libs/rnnoise - ~media-libs/tg_owt-0_pre20220507:=[screencast=,X=] - media-video/ffmpeg:=[opus] - sys-libs/zlib:=[minizip] - virtual/opengl - dbus? ( dev-cpp/glibmm:2.68 ) - enchant? ( app-text/enchant:= ) - hunspell? ( >=app-text/hunspell-1.7:= ) - jemalloc? ( dev-libs/jemalloc:=[-lazy-lock] ) - !qt6? ( - >=dev-qt/qtcore-5.15:5 - >=dev-qt/qtgui-5.15:5[dbus?,jpeg,png,wayland?,X?] - >=dev-qt/qtimageformats-5.15:5 - >=dev-qt/qtnetwork-5.15:5[ssl] - >=dev-qt/qtsvg-5.15:5 - >=dev-qt/qtwidgets-5.15:5[png,X?] - kde-frameworks/kcoreaddons:= - ) - qt6? ( - dev-qt/qt5compat:6 - dev-qt/qtbase:6[dbus?,gui,network,opengl,widgets,X?] - dev-qt/qtimageformats:6 - dev-qt/qtsvg:6 - wayland? ( dev-qt/qtwayland:6 ) - qt6-imageformats? ( ${KIMAGEFORMATS_RDEPEND} ) - ) - X? ( - x11-libs/libxcb:= - x11-libs/xcb-util-keysyms - ) -" -DEPEND="${RDEPEND} - dev-cpp/range-v3 - dev-cpp/ms-gsl -" -BDEPEND=" - ${PYTHON_DEPS} - >=dev-util/cmake-3.16 - virtual/pkgconfig -" -# dev-libs/jemalloc:=[-lazy-lock] -> https://bugs.gentoo.org/803233 - -PATCHES=( - "${FILESDIR}/tdesktop-4.2.4-jemalloc-only-telegram.patch" - "${FILESDIR}/tdesktop-4.3.4-qt5-incompatibility-2.patch" - "${FILESDIR}/tdesktop-4.4.1-fix-dupe-main-decl.patch" -) - -# Current desktop-file-utils-0.26 does not understand Version=1.5 -QA_DESKTOP_FILE="usr/share/applications/${PN}.desktop" - -pkg_pretend() { - if has ccache ${FEATURES}; then - ewarn "ccache does not work with ${PN} out of the box" - ewarn "due to usage of precompiled headers" - ewarn "check bug https://bugs.gentoo.org/715114 for more info" - ewarn - fi -} - -src_prepare() { - # Bundle kde-frameworks/kimageformats for qt6, since it's impossible to - # build in gentoo right now. - if use qt6-imageformats; then - sed -e 's/DESKTOP_APP_USE_PACKAGED_LAZY/TRUE/' -i \ - cmake/external/kimageformats/CMakeLists.txt || die - printf "%s\n" \ - 'Q_IMPORT_PLUGIN(QAVIFPlugin)' \ - 'Q_IMPORT_PLUGIN(HEIFPlugin)' \ - 'Q_IMPORT_PLUGIN(QJpegXLPlugin)' \ - >> cmake/external/qt/qt_static_plugins/qt_static_plugins.cpp || die - fi - - # kde-frameworks/kcoreaddons is bundled when using qt6, see: - # cmake/external/kcoreaddons/CMakeLists.txt - - cmake_src_prepare -} - -src_configure() { - # The ABI of media-libs/tg_owt breaks if the -DNDEBUG flag doesn't keep - # the same state across both projects. - # See https://bugs.gentoo.org/866055 - append-cppflags '-DNDEBUG' - - local mycmakeargs=( - -DCMAKE_DISABLE_FIND_PACKAGE_tl-expected=ON # header only lib, some git version. prevents warnings. - -DQT_VERSION_MAJOR=$(usex qt6 6 5) - - -DDESKTOP_APP_DISABLE_DBUS_INTEGRATION=$(usex !dbus) - -DDESKTOP_APP_DISABLE_X11_INTEGRATION=$(usex !X) - -DDESKTOP_APP_DISABLE_WAYLAND_INTEGRATION=$(usex !wayland) - -DDESKTOP_APP_DISABLE_JEMALLOC=$(usex !jemalloc) - -DDESKTOP_APP_DISABLE_SPELLCHECK=$(usex !spell) # enables hunspell (recommended) - -DDESKTOP_APP_USE_ENCHANT=$(usex enchant) # enables enchant and disables hunspell - -DDESKTOP_APP_USE_PACKAGED_FONTS=$(usex !fonts) # use system fonts instead of bundled ones - ) - - if [[ -n ${MY_TDESKTOP_API_ID} && -n ${MY_TDESKTOP_API_HASH} ]]; then - einfo "Found custom API credentials" - mycmakeargs+=( - -DTDESKTOP_API_ID="${MY_TDESKTOP_API_ID}" - -DTDESKTOP_API_HASH="${MY_TDESKTOP_API_HASH}" - ) - else - # https://github.com/telegramdesktop/tdesktop/blob/dev/snap/snapcraft.yaml - # Building with snapcraft API credentials by default - # Custom API credentials can be obtained here: - # https://github.com/telegramdesktop/tdesktop/blob/dev/docs/api_credentials.md - # After getting credentials you can export variables: - # export MY_TDESKTOP_API_ID="17349"" - # export MY_TDESKTOP_API_HASH="344583e45741c457fe1862106095a5eb" - # and restart the build" - # you can set above variables (without export) in /etc/portage/env/net-im/telegram-desktop - # portage will use custom variable every build automatically - mycmakeargs+=( - -DTDESKTOP_API_ID="611335" - -DTDESKTOP_API_HASH="d524b414d21f4d37f08684c1df41ac9c" - ) - fi - - cmake_src_configure -} - -pkg_postinst() { - xdg_pkg_postinst - if ! use X && ! use screencast; then - ewarn "both the 'X' and 'screencast' USE flags are disabled, screen sharing won't work!" - ewarn - fi - if has_version '=dev-cpp/glibmm-2.76:2.68 ) + !enchant? ( >=app-text/hunspell-1.7:= ) enchant? ( app-text/enchant:= ) - hunspell? ( >=app-text/hunspell-1.7:= ) jemalloc? ( dev-libs/jemalloc:=[-lazy-lock] ) !qt6? ( >=dev-qt/qtcore-5.15:5 @@ -77,7 +75,7 @@ RDEPEND=" " DEPEND="${RDEPEND} dev-cpp/range-v3 - dev-cpp/ms-gsl + >=dev-cpp/ms-gsl-4 " BDEPEND=" ${PYTHON_DEPS} @@ -109,7 +107,7 @@ src_prepare() { if use qt6-imageformats; then sed -e 's/DESKTOP_APP_USE_PACKAGED_LAZY/TRUE/' -i \ cmake/external/kimageformats/CMakeLists.txt || die - printf "%s\n" \ + printf '%s\n' \ 'Q_IMPORT_PLUGIN(QAVIFPlugin)' \ 'Q_IMPORT_PLUGIN(HEIFPlugin)' \ 'Q_IMPORT_PLUGIN(QJpegXLPlugin)' \ @@ -136,7 +134,6 @@ src_configure() { -DDESKTOP_APP_DISABLE_X11_INTEGRATION=$(usex !X) -DDESKTOP_APP_DISABLE_WAYLAND_INTEGRATION=$(usex !wayland) -DDESKTOP_APP_DISABLE_JEMALLOC=$(usex !jemalloc) - -DDESKTOP_APP_DISABLE_SPELLCHECK=$(usex !spell) # enables hunspell (recommended) -DDESKTOP_APP_USE_ENCHANT=$(usex enchant) # enables enchant and disables hunspell -DDESKTOP_APP_USE_PACKAGED_FONTS=$(usex !fonts) # use system fonts instead of bundled ones ) diff --git a/net-im/tokodon/Manifest b/net-im/tokodon/Manifest new file mode 100644 index 000000000000..c77c2e2d416b --- /dev/null +++ b/net-im/tokodon/Manifest @@ -0,0 +1 @@ +DIST tokodon-23.03.90.tar.xz 226728 BLAKE2B a30323b4239c6a3f61a99d25482fb6171ddd065ba69a15d100a4b02f29b526be94f8dc73c8137f48d976646c602f1ae7e57acc0784d854a47f9dabf937a70589 SHA512 237531eb46668905cc0cb797c312379cd10fc513403f028f00b1230fe4761e173f67c736a6bb4c8811925480adc0105a6fca1be61a1240b37dae655bb63fa1d8 diff --git a/net-im/tokodon/metadata.xml b/net-im/tokodon/metadata.xml new file mode 100644 index 000000000000..02ce3e9d31e3 --- /dev/null +++ b/net-im/tokodon/metadata.xml @@ -0,0 +1,12 @@ + + + + + kde@gentoo.org + Gentoo KDE Project + + + network/tokodon + https://bugs.kde.org/ + + diff --git a/net-im/tokodon/tokodon-23.03.90.ebuild b/net-im/tokodon/tokodon-23.03.90.ebuild new file mode 100644 index 000000000000..db87f4e02693 --- /dev/null +++ b/net-im/tokodon/tokodon-23.03.90.ebuild @@ -0,0 +1,48 @@ +# Copyright 2022-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +ECM_TEST="forceoptional" +KFMIN=5.104.0 +QTMIN=5.15.5 +inherit ecm gear.kde.org + +DESCRIPTION="Mastodon client for Plasma and Plasma Mobile" +HOMEPAGE="https://apps.kde.org/tokodon/" + +LICENSE="CC-BY-SA-4.0 GPL-2+ GPL-3+ || ( LGPL-2.1+ LGPL-3+ ) MIT" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND=" + >=dev-libs/kirigami-addons-0.7.2:5 + dev-libs/qtkeychain:=[qt5(+)] + >=dev-qt/qtdeclarative-${QTMIN}:5 + >=dev-qt/qtgui-${QTMIN}:5 + >=dev-qt/qtmultimedia-${QTMIN}:5 + >=dev-qt/qtnetwork-${QTMIN}:5 + >=dev-qt/qtquickcontrols2-${QTMIN}:5 + >=dev-qt/qtsvg-${QTMIN}:5 + >=dev-qt/qtwebsockets-${QTMIN}:5 + >=dev-qt/qtwidgets-${QTMIN}:5 + >=kde-frameworks/kconfig-${KFMIN}:5 + >=kde-frameworks/kconfigwidgets-${KFMIN}:5 + >=kde-frameworks/kcoreaddons-${KFMIN}:5 + >=kde-frameworks/kdbusaddons-${KFMIN}:5 + >=kde-frameworks/ki18n-${KFMIN}:5 + >=kde-frameworks/kio-${KFMIN}:5 + >=kde-frameworks/kirigami-${KFMIN}:5 + >=kde-frameworks/kitemmodels-${KFMIN}:5[qml] + >=kde-frameworks/knotifications-${KFMIN}:5 + >=kde-frameworks/kwindowsystem-${KFMIN}:5 + >=kde-frameworks/qqc2-desktop-style-${KFMIN}:5 + >=kde-frameworks/sonnet-${KFMIN}:5[qml] +" +RDEPEND="${DEPEND}" +BDEPEND="virtual/pkgconfig" + +src_test() { + local -x QT_QPA_PLATFORM=offscreen + ecm_src_test +} diff --git a/net-libs/Manifest.gz b/net-libs/Manifest.gz index 6f4152106505..ea5941abc598 100644 Binary files a/net-libs/Manifest.gz and b/net-libs/Manifest.gz differ diff --git a/net-libs/farstream/farstream-0.2.9.ebuild b/net-libs/farstream/farstream-0.2.9-r1.ebuild similarity index 98% rename from net-libs/farstream/farstream-0.2.9.ebuild rename to net-libs/farstream/farstream-0.2.9-r1.ebuild index e9c168e952c2..f3c7655535a9 100644 --- a/net-libs/farstream/farstream-0.2.9.ebuild +++ b/net-libs/farstream/farstream-0.2.9-r1.ebuild @@ -25,7 +25,7 @@ COMMON_DEPEND=" >=dev-libs/glib-2.40:2 >=net-libs/libnice-0.1.8 introspection? ( >=dev-libs/gobject-introspection-0.10.11:= ) - upnp? ( >=net-libs/gupnp-igd-0.2:= ) + upnp? ( >=net-libs/gupnp-igd-0.2:0= ) " RDEPEND="${COMMON_DEPEND} >=media-libs/gst-plugins-bad-1.4:1.0 diff --git a/net-libs/libhtp/Manifest b/net-libs/libhtp/Manifest index bdec27bf50da..42547b31cfd5 100644 --- a/net-libs/libhtp/Manifest +++ b/net-libs/libhtp/Manifest @@ -1 +1 @@ -DIST libhtp-0.5.42.tar.gz 500458 BLAKE2B 8e1446992c40c2c2e9e7dd096803752245eebf3b5e48e0215430dbfe225ae029b2e01fadca61bdd994b534a0ed140b0a0149aa9a0dde64409ebf0afdd2bf6fd7 SHA512 2d8e759bf3598f91e505732ef526b9a9120472e72131972b91aa3ac896d99a21c9e07b925ba1a7fb2068e4724f8b2efd187d541cc52e45b577ba5c5a6a80419d +DIST libhtp-0.5.43.tar.gz 500631 BLAKE2B 071cadc254b7af55bf410db5689429ca7588005b2f74fbd8468f2d6eeaf00c55ae99e8dd78552a5bf11ace5c8047b28a844db343937827a428b6d8b8d9036d29 SHA512 6d24f4510b0a444895b6dcc601b9e4560fba0da5db591efa58874d2fc8f7c5d6598b6caddc908824ce294e69cdd8ff8bf0d9147f22d395810844cad48f23557d diff --git a/net-libs/libhtp/files/libhtp-0.5.43-configure_fortify_source.patch b/net-libs/libhtp/files/libhtp-0.5.43-configure_fortify_source.patch new file mode 100644 index 000000000000..7fc605f14a38 --- /dev/null +++ b/net-libs/libhtp/files/libhtp-0.5.43-configure_fortify_source.patch @@ -0,0 +1,23 @@ +Hardened profiles now set -D_FORTIFY_SOURCE=3, do not let upstream weaken it. + +--- a/configure.ac ++++ b/configure.ac +@@ -206,18 +206,6 @@ + fi + + dnl ----------------------------------------------- +-dnl Check for GCC -D_FORTIFY_SOURCE support +-dnl ----------------------------------------------- +-AC_MSG_CHECKING(for gcc support of FORTIFY_SOURCE) +-TMPCFLAGS="${CFLAGS}" +-CFLAGS="${CFLAGS} -D_FORTIFY_SOURCE=2" +-AC_TRY_COMPILE(,,[gcc_have_fortify_source=yes],[gcc_have_fortify_source=no]) +-AC_MSG_RESULT($gcc_have_fortify_source) +-if test "$gcc_have_fortify_source" != "yes"; then +- CFLAGS="${TMPCFLAGS}" +-fi +- +-dnl ----------------------------------------------- + dnl Check for GCC -Wformat-security support + dnl ----------------------------------------------- + AC_MSG_CHECKING(for gcc support of -Wformat -Wformat-security) diff --git a/net-libs/libhtp/libhtp-0.5.42.ebuild b/net-libs/libhtp/libhtp-0.5.43.ebuild similarity index 86% rename from net-libs/libhtp/libhtp-0.5.42.ebuild rename to net-libs/libhtp/libhtp-0.5.43.ebuild index 5bbe9e699afb..d2e4c61d4762 100644 --- a/net-libs/libhtp/libhtp-0.5.42.ebuild +++ b/net-libs/libhtp/libhtp-0.5.43.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -17,6 +17,10 @@ IUSE="debug" RDEPEND="sys-libs/zlib" DEPEND="${RDEPEND}" +PATCHES=( + "${FILESDIR}"/${PN}-0.5.43-configure_fortify_source.patch +) + src_prepare() { default eautoreconf diff --git a/net-libs/nodejs/Manifest b/net-libs/nodejs/Manifest index 16aeb4845923..e89465ec5597 100644 --- a/net-libs/nodejs/Manifest +++ b/net-libs/nodejs/Manifest @@ -3,3 +3,4 @@ DIST node-v16.19.1.tar.xz 35465252 BLAKE2B 717cf15ab6fa5a2a643138959c4e539ef5417 DIST node-v16.20.0.tar.xz 35546884 BLAKE2B 5bdb1fb7365e07f13d0a58a8d052d11efaadcf1b0792af0517b78b1ecf01e50eabe26e31588ae410ee63b7494a4eb9d23f70d4dd157a452d0bbf8bd548865255 SHA512 b155acdff0244307afcc334844f113b5c321f7764ebb69326d60a6a79d0e0d38d55257a38b815f5933aa4071e6a788e01c466476ef012cec648c84d74adda406 DIST node-v18.14.2.tar.xz 40330824 BLAKE2B d18cf6a23f091633e5298727eeee15dec65ca83e688ff9fbed78385102aa44707ff4b33bcb034f6d10aab9a81a646ad7e8c28a239de151b816ff7072977df0de SHA512 72bb788b40d83bc42850dd9e2d00ffc06d9bcb17d24280d4721038038d1632846f859864328c849498255d1095296402b9b3c6b8910bbd399f7f516a43b9c86f DIST node-v18.15.0.tar.xz 40355624 BLAKE2B 56337de0b6e3c2421e6d9add81d30ada821525e0bb05fc977c91b7162f6dc075610ec53af50d6596cab6c0f647d61fb243896b25f0a768eeeefedf1a8bde1c05 SHA512 e41fcda469809186fd724ef4691e25f4a5bd81357ee99acf3d7faa1190a69c19cb62bd14aea199ca6f8b5cf9687af7d898cdf605ea2414d2c04db87ddb3b4dc8 +DIST node-v18.16.0.tar.xz 40467860 BLAKE2B b16749c0212f3aa196ec9fc0f999a023adeb9031b3332939330ba5a3edb5bc2ed6dc21bf861509696e19ed0cc5d5c54bb882018f0e54eb1ad8e9b0ba3bb64bff SHA512 608ce5db97ce2d851f381c7991f635c5e0927ae79037649b482c7e197479341b7c6560644e25f4d65ece8aa80c5763a0e044349a5be210fa33fbbf97a96462bd diff --git a/net-libs/nodejs/files/nodejs-18.16.0-paxmarking.patch b/net-libs/nodejs/files/nodejs-18.16.0-paxmarking.patch new file mode 100644 index 000000000000..9decb13ec47b --- /dev/null +++ b/net-libs/nodejs/files/nodejs-18.16.0-paxmarking.patch @@ -0,0 +1,101 @@ +From 4c910c45a73c61f908f85661a1568a614afde081 Mon Sep 17 00:00:00 2001 +From: William Hubbs +Date: Mon, 17 Apr 2023 11:43:17 -0500 +Subject: [PATCH] pax marking + +--- + node.gyp | 17 ++++++++++++++++- + tools/v8_gypfiles/v8.gyp | 24 +++++++++++++++++++++++- + 2 files changed, 39 insertions(+), 2 deletions(-) + +diff --git a/node.gyp b/node.gyp +index cf52281bb4..80352dfcc5 100644 +--- a/node.gyp ++++ b/node.gyp +@@ -54,6 +54,7 @@ + '<@(node_builtin_shareable_builtins)', + ], + 'node_mksnapshot_exec': '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)node_mksnapshot<(EXECUTABLE_SUFFIX)', ++ 'node_mksnapshot_u_exec': '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)node_mksnapshot_u<(EXECUTABLE_SUFFIX)', + 'conditions': [ + ['GENERATOR == "ninja"', { + 'node_text_start_object_path': 'src/large_pages/node_text_start.node_text_start.o' +@@ -337,11 +338,25 @@ + ], + }, { + 'actions': [ ++ { ++ 'action_name': 'run_pax_mksnapshot', ++ 'inputs': [ ++ '<(node_mksnapshot_exec)', ++ ], ++ 'outputs': [ ++ '<(node_mksnapshot_u_exec)', ++ ], ++ 'action': [ ++ 'bash', ++ '-c', ++ 'mv <(node_mksnapshot_exec) <(node_mksnapshot_u_exec) && paxmark.sh m <(node_mksnapshot_u_exec)', ++ ], ++ }, + { + 'action_name': 'node_mksnapshot', + 'process_outputs_as_sources': 1, + 'inputs': [ +- '<(node_mksnapshot_exec)', ++ '<(node_mksnapshot_u_exec)', + ], + 'outputs': [ + '<(SHARED_INTERMEDIATE_DIR)/node_snapshot.cc', +diff --git a/tools/v8_gypfiles/v8.gyp b/tools/v8_gypfiles/v8.gyp +index a721ffb41a..4a52a1f822 100644 +--- a/tools/v8_gypfiles/v8.gyp ++++ b/tools/v8_gypfiles/v8.gyp +@@ -9,6 +9,7 @@ + 'v8_vector_stores%': 0, + 'v8_embed_script%': "", + 'mksnapshot_exec': '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)mksnapshot<(EXECUTABLE_SUFFIX)', ++ 'mksnapshot_u_exec': '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)mksnapshot_u<(EXECUTABLE_SUFFIX)', + 'v8_os_page_size%': 0, + 'generate_bytecode_output_root': '<(SHARED_INTERMEDIATE_DIR)/generate-bytecode-output-root', + 'generate_bytecode_builtins_list_output': '<(generate_bytecode_output_root)/builtins-generated/bytecodes-builtins-list.h', +@@ -1419,7 +1420,7 @@ + ], + }, # bytecode_builtins_list_generator + { +- 'target_name': 'mksnapshot', ++ 'target_name': 'mksnapshot_u', + 'type': 'executable', + 'dependencies': [ + 'v8_base_without_compiler', +@@ -1446,6 +1447,27 @@ + ], + }], + ], ++ }, # mksnapshot_u ++ { ++ 'target_name': 'mksnapshot', ++ 'type': 'none', ++ 'dependencies': ['mksnapshot_u'], ++ 'actions': [ ++ { ++ 'action_name': 'paxmark_mksnapshot', ++ 'inputs': [ ++ '<(mksnapshot_u_exec)', ++ ], ++ 'outputs': [ ++ '<(mksnapshot_exec)', ++ ], ++ 'action': [ ++ 'bash', ++ '-c', ++ 'cp <(mksnapshot_u_exec) <(mksnapshot_exec) && paxmark.sh m <(mksnapshot_exec)' ++ ], ++ }, ++ ], + }, # mksnapshot + { + 'target_name': 'torque', +-- +2.39.2 + diff --git a/net-libs/nodejs/nodejs-18.16.0.ebuild b/net-libs/nodejs/nodejs-18.16.0.ebuild new file mode 100644 index 000000000000..aa505edb748c --- /dev/null +++ b/net-libs/nodejs/nodejs-18.16.0.ebuild @@ -0,0 +1,255 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +CONFIG_CHECK="~ADVISE_SYSCALLS" +PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_REQ_USE="threads(+)" + +inherit bash-completion-r1 check-reqs flag-o-matic linux-info pax-utils python-any-r1 toolchain-funcs xdg-utils + +DESCRIPTION="A JavaScript runtime built on Chrome's V8 JavaScript engine" +HOMEPAGE="https://nodejs.org/" +LICENSE="Apache-1.1 Apache-2.0 BSD BSD-2 MIT" + +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/nodejs/node" + SLOT="0" +else + SRC_URI="https://nodejs.org/dist/v${PV}/node-v${PV}.tar.xz" + SLOT="0/$(ver_cut 1)" + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86 ~amd64-linux ~x64-macos" + S="${WORKDIR}/node-v${PV}" +fi + +IUSE="cpu_flags_x86_sse2 debug doc +icu inspector lto +npm pax-kernel +snapshot +ssl +system-icu +system-ssl systemtap test" +REQUIRED_USE="inspector? ( icu ssl ) + npm? ( ssl ) + system-icu? ( icu ) + system-ssl? ( ssl )" + +RESTRICT="!test? ( test )" + +RDEPEND=">=app-arch/brotli-1.0.9:= + >=dev-libs/libuv-1.44.0:= + >=net-dns/c-ares-1.17.2:= + >=net-libs/nghttp2-1.41.0:= + sys-libs/zlib + system-icu? ( >=dev-libs/icu-67:= ) + system-ssl? ( >=dev-libs/openssl-1.1.1:0= ) + sys-devel/gcc:*" +BDEPEND="${PYTHON_DEPS} + sys-apps/coreutils + virtual/pkgconfig + systemtap? ( dev-util/systemtap ) + test? ( net-misc/curl ) + pax-kernel? ( sys-apps/elfix )" +DEPEND="${RDEPEND}" + +# These are measured on a loong machine with -ggdb on, and only checked +# if debugging flags are present in CFLAGS. +# +# The final link consumed a little more than 7GiB alone, so 8GiB is the lower +# limit for memory usage. Disk usage was 19.1GiB for the build directory and +# 1.2GiB for the installed image, so we leave some room for architectures with +# fatter binaries and set the disk requirement to 22GiB. +CHECKREQS_MEMORY="8G" +CHECKREQS_DISK_BUILD="22G" + +pkg_pretend() { + (use x86 && ! use cpu_flags_x86_sse2) && \ + die "Your CPU doesn't support the required SSE2 instruction." + + if [[ ${MERGE_TYPE} != "binary" ]]; then + if is-flagq "-g*" && ! is-flagq "-g*0" ; then + einfo "Checking for sufficient disk space and memory to build ${PN} with debugging CFLAGS" + check-reqs_pkg_pretend + fi + fi +} + +pkg_setup() { + python-any-r1_pkg_setup + linux-info_pkg_setup +} + +src_prepare() { + tc-export AR CC CXX PKG_CONFIG + export V=1 + export BUILDTYPE=Release + + # fix compilation on Darwin + # https://code.google.com/p/gyp/issues/detail?id=260 + sed -i -e "/append('-arch/d" tools/gyp/pylib/gyp/xcode_emulation.py || die + + # less verbose install output (stating the same as portage, basically) + sed -i -e "/print/d" tools/install.py || die + + # proper libdir, hat tip @ryanpcmcquen https://github.com/iojs/io.js/issues/504 + local LIBDIR=$(get_libdir) + sed -i -e "s|lib/|${LIBDIR}/|g" tools/install.py || die + sed -i -e "s/'lib'/'${LIBDIR}'/" deps/npm/lib/npm.js || die + + # Avoid writing a depfile, not useful + sed -i -e "/DEPFLAGS =/d" tools/gyp/pylib/gyp/generator/make.py || die + + sed -i -e "/'-O3'/d" common.gypi node.gypi || die + + # debug builds. change install path, remove optimisations and override buildtype + if use debug; then + sed -i -e "s|out/Release/|out/Debug/|g" tools/install.py || die + BUILDTYPE=Debug + fi + + # We need to disable mprotect on two files when it builds Bug 694100. + use pax-kernel && PATCHES+=( "${FILESDIR}"/${P}-paxmarking.patch ) + + # All this test does is check if the npm CLI produces warnings of any sort, + # failing if it does. Overkill, much? Especially given one possible warning + # is that there is a newer version of npm available upstream (yes, it does + # use the network if available), thus making it a real possibility for this + # test to begin failing one day even though it was fine before. + rm -f test/parallel/test-release-npm.js + + default +} + +src_configure() { + xdg_environment_reset + + # LTO compiler flags are handled by configure.py itself + filter-flags '-flto*' + # nodejs unconditionally links to libatomic #869992 + # specifically it requires __atomic_is_lock_free which + # is not yet implemented by sys-libs/compiler-rt (see + # https://reviews.llvm.org/D85044?id=287068), therefore + # we depend on gcc and force using libgcc as the support lib + tc-is-clang && append-ldflags "--rtlib=libgcc --unwindlib=libgcc" + + local myconf=( + --shared-brotli + --shared-cares + --shared-libuv + --shared-nghttp2 + --shared-zlib + ) + use debug && myconf+=( --debug ) + use lto && myconf+=( --enable-lto ) + if use system-icu; then + myconf+=( --with-intl=system-icu ) + elif use icu; then + myconf+=( --with-intl=full-icu ) + else + myconf+=( --with-intl=none ) + fi + use inspector || myconf+=( --without-inspector ) + use npm || myconf+=( --without-npm ) + use snapshot || myconf+=( --without-node-snapshot ) + if use ssl; then + use system-ssl && myconf+=( --shared-openssl --openssl-use-def-ca-store ) + else + myconf+=( --without-ssl ) + fi + + local myarch="" + case "${ARCH}:${ABI}" in + *:amd64) myarch="x64";; + *:arm) myarch="arm";; + *:arm64) myarch="arm64";; + loong:lp64*) myarch="loong64";; + riscv:lp64*) myarch="riscv64";; + *:ppc64) myarch="ppc64";; + *:x32) myarch="x32";; + *:x86) myarch="ia32";; + *) myarch="${ABI}";; + esac + + GYP_DEFINES="linux_use_gold_flags=0 + linux_use_bundled_binutils=0 + linux_use_bundled_gold=0" \ + "${EPYTHON}" configure.py \ + --prefix="${EPREFIX}"/usr \ + --dest-cpu=${myarch} \ + $(use_with systemtap dtrace) \ + "${myconf[@]}" || die +} + +src_compile() { + emake -C out +} + +src_install() { + local LIBDIR="${ED}/usr/$(get_libdir)" + default + + pax-mark -m "${ED}"/usr/bin/node + + # set up a symlink structure that node-gyp expects.. + dodir /usr/include/node/deps/{v8,uv} + dosym . /usr/include/node/src + for var in deps/{uv,v8}/include; do + dosym ../.. /usr/include/node/${var} + done + + if use doc; then + docinto html + dodoc -r "${S}"/doc/* + fi + + if use npm; then + keepdir /etc/npm + echo "NPM_CONFIG_GLOBALCONFIG=${EPREFIX}/etc/npm/npmrc" > "${T}"/50npm + doenvd "${T}"/50npm + + # Install bash completion for `npm` + local tmp_npm_completion_file="$(TMPDIR="${T}" mktemp -t npm.XXXXXXXXXX)" + "${ED}/usr/bin/npm" completion > "${tmp_npm_completion_file}" + newbashcomp "${tmp_npm_completion_file}" npm + + # Move man pages + doman "${LIBDIR}"/node_modules/npm/man/man{1,5,7}/* + + # Clean up + rm -f "${LIBDIR}"/node_modules/npm/{.mailmap,.npmignore,Makefile} + rm -rf "${LIBDIR}"/node_modules/npm/{doc,html,man} + + local find_exp="-or -name" + local find_name=() + for match in "AUTHORS*" "CHANGELOG*" "CONTRIBUT*" "README*" \ + ".travis.yml" ".eslint*" ".wercker.yml" ".npmignore" \ + "*.md" "*.markdown" "*.bat" "*.cmd"; do + find_name+=( ${find_exp} "${match}" ) + done + + # Remove various development and/or inappropriate files and + # useless docs of dependend packages. + find "${LIBDIR}"/node_modules \ + \( -type d -name examples \) -or \( -type f \( \ + -iname "LICEN?E*" \ + "${find_name[@]}" \ + \) \) -exec rm -rf "{}" \; + fi + + mv "${ED}"/usr/share/doc/node "${ED}"/usr/share/doc/${PF} || die +} + +src_test() { + rm -f "${S}"/tests/parallel/test-dns-setserver-when-querying.js + if has usersandbox ${FEATURES}; then + rm -f "${S}"/test/parallel/test-fs-mkdir.js + ewarn "You are emerging ${PN} with 'usersandbox' enabled. Excluding tests known to fail in this mode." \ + "For full test coverage, emerge =${CATEGORY}/${PF} with 'FEATURES=-usersandbox'." + fi + + out/${BUILDTYPE}/cctest || die + "${EPYTHON}" tools/test.py --mode=${BUILDTYPE,,} --flaky-tests=dontcare -J message parallel sequential || die +} + +pkg_postinst() { + if use npm; then + ewarn "remember to run: source /etc/profile if you plan to use nodejs" + ewarn " in your current shell" + fi +} diff --git a/net-libs/webkit-gtk/webkit-gtk-2.40.0-r410.ebuild b/net-libs/webkit-gtk/webkit-gtk-2.40.0-r410.ebuild index 860f019f8e00..8f2722cb04bf 100644 --- a/net-libs/webkit-gtk/webkit-gtk-2.40.0-r410.ebuild +++ b/net-libs/webkit-gtk/webkit-gtk-2.40.0-r410.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYTHON_REQ_USE="xml(+)" PYTHON_COMPAT=( python3_{9..11} ) -USE_RUBY="ruby30 ruby31" +USE_RUBY="ruby30 ruby31 ruby32" inherit check-reqs flag-o-matic gnome2 optfeature python-any-r1 ruby-single toolchain-funcs cmake diff --git a/net-libs/webkit-gtk/webkit-gtk-2.40.0-r600.ebuild b/net-libs/webkit-gtk/webkit-gtk-2.40.0-r600.ebuild index bcec7cd21604..cddccfb4e8cd 100644 --- a/net-libs/webkit-gtk/webkit-gtk-2.40.0-r600.ebuild +++ b/net-libs/webkit-gtk/webkit-gtk-2.40.0-r600.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYTHON_REQ_USE="xml(+)" PYTHON_COMPAT=( python3_{9..11} ) -USE_RUBY="ruby30 ruby31" +USE_RUBY="ruby30 ruby31 ruby32" inherit check-reqs flag-o-matic gnome2 optfeature python-any-r1 ruby-single toolchain-funcs cmake diff --git a/net-libs/webkit-gtk/webkit-gtk-2.40.0.ebuild b/net-libs/webkit-gtk/webkit-gtk-2.40.0.ebuild index 0d1f3b47e453..a68861df80f2 100644 --- a/net-libs/webkit-gtk/webkit-gtk-2.40.0.ebuild +++ b/net-libs/webkit-gtk/webkit-gtk-2.40.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYTHON_REQ_USE="xml(+)" PYTHON_COMPAT=( python3_{9..11} ) -USE_RUBY="ruby30 ruby31" +USE_RUBY="ruby30 ruby31 ruby32" inherit check-reqs flag-o-matic gnome2 optfeature python-any-r1 ruby-single toolchain-funcs cmake diff --git a/net-misc/Manifest.gz b/net-misc/Manifest.gz index b4bd01c378fb..bee549fc0533 100644 Binary files a/net-misc/Manifest.gz and b/net-misc/Manifest.gz differ diff --git a/net-misc/mobile-broadband-provider-info/Manifest b/net-misc/mobile-broadband-provider-info/Manifest index 3a39c32c8704..fb0a3f9b43fc 100644 --- a/net-misc/mobile-broadband-provider-info/Manifest +++ b/net-misc/mobile-broadband-provider-info/Manifest @@ -1 +1,2 @@ DIST mobile-broadband-provider-info-20221107.tar.xz 85416 BLAKE2B 91772a7f16fbba8d477abd623e4902e1aa2317ba0e226ab493ca8cc94bd6dc4c68ea61fc2f3d8f1f4c6bbfce2d7b27dc9dcfa3d35df6a9c9370b9c4ff277318f SHA512 e72fc1c78dd1bf991fc29ba952757af9c38d11e3e918662ce6380337c75eaa56fe33705f6d1eb78627378e1575b4102dceaa68e5e035c62c02e60570752f3e86 +DIST mobile-broadband-provider-info-20230416.tar.xz 85884 BLAKE2B 51416cbd7e208eca14a5ddf023cad4a76495773794fed7955cfb346950614b1b6d6f9df7d24525c769c2742381eb9d8780575fe9d0bc0de333b17be3d53400d1 SHA512 fd6be1387284b31fa300fe59244a5d2d65c9851037f78b540d8d907c9bedd1ec24a8d23bf66403a30995ddb4791b7cb746952d9438c08c846906f6825c44dd9b diff --git a/net-misc/mobile-broadband-provider-info/mobile-broadband-provider-info-20230416.ebuild b/net-misc/mobile-broadband-provider-info/mobile-broadband-provider-info-20230416.ebuild new file mode 100644 index 000000000000..19ba474ec257 --- /dev/null +++ b/net-misc/mobile-broadband-provider-info/mobile-broadband-provider-info-20230416.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome.org + +DESCRIPTION="Database of mobile broadband service providers" +HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager/MobileBroadband" + +LICENSE="CC-PD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +BDEPEND=" + dev-libs/libxslt + test? ( dev-libs/libxml2 ) +" + +DOCS=( README ) diff --git a/net-misc/netevent/files/netevent-2.2.1-gcc13.patch b/net-misc/netevent/files/netevent-2.2.1-gcc13.patch new file mode 100644 index 000000000000..89a7ba359b38 --- /dev/null +++ b/net-misc/netevent/files/netevent-2.2.1-gcc13.patch @@ -0,0 +1,24 @@ +https://github.com/Blub/netevent/pull/29 + +From 85f5db586dac20b69de1345c197e24be6123439d Mon Sep 17 00:00:00 2001 +From: Sam James +Date: Tue, 18 Apr 2023 07:40:05 +0100 +Subject: [PATCH] Fix build with GCC 13 + +GCC 13 (as usual for new compiler releases) shuffles around some internal includes so some +are no longer transitively included. + +See https://gnu.org/software/gcc/gcc-13/porting_to.html. + +Bug: https://bugs.gentoo.org/895142 +--- a/src/socket.cpp ++++ b/src/socket.cpp +@@ -6,6 +6,7 @@ + * SPDX-License-Identifier: GPL-2.0-or-later + */ + #include "socket.h" ++#include + #include + #include + + diff --git a/net-misc/netevent/netevent-2.2.1.ebuild b/net-misc/netevent/netevent-2.2.1.ebuild index 139ae8ae9348..01deb12b4c43 100644 --- a/net-misc/netevent/netevent-2.2.1.ebuild +++ b/net-misc/netevent/netevent-2.2.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -17,6 +17,10 @@ BDEPEND=" doc? ( dev-python/docutils ) " +PATCHES=( + "${FILESDIR}"/${PN}-2.2.1-gcc13.patch +) + src_configure() { tc-export CXX diff --git a/net-misc/netifrc/Manifest b/net-misc/netifrc/Manifest index 8fc1d881195e..9fd9fa8dc33b 100644 --- a/net-misc/netifrc/Manifest +++ b/net-misc/netifrc/Manifest @@ -1 +1,2 @@ DIST netifrc-0.7.3.tar.gz 84770 BLAKE2B 075440bfd81e4dedd406d9555a18f530b07a47f9268130ebcca6d43d35e9cc5f01105a3eb0ddc084a16e17912aa10e378833b1eef1defd2fc6b22f817cd220bd SHA512 a82ac6835c15763becb5845a8c8d90dfd8d6c289ea5e00b0d7ae332d3e7ad6797f0fdcbf27bb9f44ff345c98884cdfa13210c76089585b8dd9970ded5f6236d8 +DIST netifrc-0.7.4.tar.bz2 75487 BLAKE2B 3ac3114ee4fb538c620284d02d3c1a0adc905f349ab40e7ff7065a4837113a36824b3962511160d997fc3a85701d55d569d8ac6b6b00c4665281d5b765827f76 SHA512 4934e2b7247a65847eed3a0f982c1c3996c486d7cb1cb401c29d8a6ea36eb94930a64e1cb84ff6ffdfb305e75f369fe6834062fcbb5e1d77d9f336d6592f3dff diff --git a/net-misc/netifrc/netifrc-0.7.3-r1.ebuild b/net-misc/netifrc/netifrc-0.7.3-r1.ebuild index 18a94a9a3dac..7181e1758d64 100644 --- a/net-misc/netifrc/netifrc-0.7.3-r1.ebuild +++ b/net-misc/netifrc/netifrc-0.7.3-r1.ebuild @@ -14,7 +14,7 @@ if [[ ${PV} == "9999" ]]; then inherit git-r3 else SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz" - KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 ~riscv ~s390 sparc x86" + KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86" fi LICENSE="BSD-2" diff --git a/net-misc/netifrc/netifrc-0.7.4.ebuild b/net-misc/netifrc/netifrc-0.7.4.ebuild new file mode 100644 index 000000000000..e67405ca29c9 --- /dev/null +++ b/net-misc/netifrc/netifrc-0.7.4.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit systemd udev + +DESCRIPTION="Gentoo Network Interface Management Scripts" +HOMEPAGE="https://www.gentoo.org/proj/en/base/openrc/" + +if [[ ${PV} == "9999" ]]; then + EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/netifrc.git" + #EGIT_REPO_URI="https://github.com/gentoo/${PN}" # Alternate + inherit git-r3 +else + SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.bz2" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +fi + +LICENSE="BSD-2" +SLOT="0" +IUSE="+dhcp" + +RDEPEND="sys-apps/gentoo-functions + >=sys-apps/openrc-0.15 + dhcp? ( || ( net-misc/dhcpcd net-misc/dhcp[client] ) )" +BDEPEND="kernel_linux? ( virtual/pkgconfig )" + +src_prepare() { + if [[ ${PV} == "9999" ]] ; then + local ver="git-${EGIT_VERSION:0:6}" + sed -i "/^GITVER[[:space:]]*=/s:=.*:=${ver}:" mk/git.mk || die + einfo "Producing ChangeLog from Git history" + GIT_DIR="${S}/.git" git log >"${S}"/ChangeLog + fi + + default +} + +src_compile() { + MAKE_ARGS=( + PREFIX="${EPREFIX}" + UPREFIX="${EPREFIX}/usr" + UDEVDIR="${EPREFIX}$(get_udevdir)" + LIBEXECDIR="${EPREFIX}/lib/${PN}" + PF="${PF}" + ) + + emake "${MAKE_ARGS[@]}" all +} + +src_install() { + emake "${MAKE_ARGS[@]}" DESTDIR="${D}" install + dodoc README CREDITS FEATURE-REMOVAL-SCHEDULE STYLE TODO + + # Install the service file + local LIBEXECDIR="${EPREFIX}/lib/${PN}" + sed "s:@LIBEXECDIR@:${LIBEXECDIR}:" "${S}/systemd/net_at.service.in" > "${T}/net_at.service" || die + systemd_newunit "${T}/net_at.service" 'net@.service' + + local UNIT_DIR="$(systemd_get_systemunitdir)" + UNIT_DIR="${UNIT_DIR#"${EPREFIX}"}" + dosym net@.service "${UNIT_DIR}/net@lo.service" +} + +pkg_postinst() { + udev_reload + if [[ ! -e "${EROOT}"/etc/conf.d/net && -z ${REPLACING_VERSIONS} ]]; then + elog "The network configuration scripts will use dhcp by" + elog "default to set up your interfaces." + elog "If you need to set up something more complete, see" + elog "${EROOT}/usr/share/doc/${P}/README" + fi +} diff --git a/net-misc/ntpsec/Manifest b/net-misc/ntpsec/Manifest index 94c516a50ffe..c72c154eed0a 100644 --- a/net-misc/ntpsec/Manifest +++ b/net-misc/ntpsec/Manifest @@ -1,2 +1 @@ -DIST ntpsec-1.2.1.tar.gz 2681237 BLAKE2B bfb2674131718dcf9f393e93d1148cfb6631591dbcce1ade91746586f261123b80b238393ac2a763fab119cd627f8eae4b006b023ad2b319e752db9eb4b04cc0 SHA512 0b8b0bda52d3025f6e9a06c00b1e0c25c595ada72b87ed0e5d3d6f77a034f557745156bc6d9a263c9876c041efffa38d42fa93ba8bfda31f67efbd842a726277 DIST ntpsec-1.2.2.tar.gz 2710329 BLAKE2B 031412d0fc7ecb5aba73501e63f8d0c416b23fe69114dd32422b03b4827e1ac9c92a4dfeb2e7d074cf6fd410d00cf86632f241dffd22987e4c03b21d21d8693a SHA512 864afb72c4bd8bc439ee06d343893cf92b3893c26c972a7bd1ff2713f0ad1f50704b6d0c6f155e6373c9747efff3ea36097a590be0d53e1a7ea7f429ba409cd1 diff --git a/net-misc/ntpsec/files/ntpsec-1.2.1-build-notests.patch b/net-misc/ntpsec/files/ntpsec-1.2.1-build-notests.patch deleted file mode 100644 index dab51a97fc0a..000000000000 --- a/net-misc/ntpsec/files/ntpsec-1.2.1-build-notests.patch +++ /dev/null @@ -1,48 +0,0 @@ -From 1a7bb2e3a2749bd709ea4cf10b66b6f6d05aaf9d Mon Sep 17 00:00:00 2001 -From: James Browning -Date: Sun, 10 Apr 2022 07:53:37 -0700 -Subject: [PATCH] I: NTPsec build does not repect --notests - -STR: (run the following) -- git clone https://gitlab.com/NTPsec/ntpsec -- cd ntpsec -- ./waf configure build --notests -p - -AR: NTPsec runs tests despite having a parameter telling it not to -ER: NTPsec should not run tests when it has been told not to ---- - wscript | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -diff --git a/wscript b/wscript -index c1d765046..d8a20b82e 100644 ---- a/wscript -+++ b/wscript -@@ -1131,6 +1131,7 @@ def build(ctx): - ctx.manpage(8, "ntpclients/ntpsnmpd-man.adoc") - - # Skip running unit tests on a cross compile build -+ from waflib import Options - if not ctx.env.ENABLE_CROSS: - # Force re-running of tests. Same as 'waf --alltests' - if ctx.cmd == "check": -@@ -1139,6 +1140,8 @@ def build(ctx): - # Print log if -v is supplied - if verbose > 0: - ctx.add_post_fun(test_print_log) -+ elif Options.options.no_tests: -+ return - - # Test binaries - ctx.add_post_fun(bin_test) -@@ -1152,7 +1155,6 @@ def build(ctx): - ctx.add_post_fun(bin_test_summary) - else: - pprint("YELLOW", "Unit test runner skipped on a cross-compiled build.") -- from waflib import Options - Options.options.no_tests = True - - if ctx.cmd == "build": --- -2.32.0 - diff --git a/net-misc/ntpsec/files/ntpsec-1.2.1-seccomp-nsd.patch b/net-misc/ntpsec/files/ntpsec-1.2.1-seccomp-nsd.patch deleted file mode 100644 index 5b7a4e51374c..000000000000 --- a/net-misc/ntpsec/files/ntpsec-1.2.1-seccomp-nsd.patch +++ /dev/null @@ -1,34 +0,0 @@ -https://gitlab.com/NTPsec/ntpsec/-/commit/a49d53b7fe1d -https://bugs.gentoo.org/851531 - -From: "Maciej S. Szmigiero" -Date: Sat, 11 Jun 2022 15:16:15 +0200 -Subject: [PATCH] ntpd/ntp_sandbox.c: allow readv() for glibc nscd - getaddrinfo() provider - -Otherwise, ntpd crashes from time to time with the following stack trace: -#0 0x00007f5763bfac4d in readv () from /lib64/libc.so.6 -#1 0x00007f5763c48b4c in __readvall () from /lib64/libc.so.6 -#2 0x00007f5763c467ed in nscd_gethst_r () from /lib64/libc.so.6 -#3 0x00007f5763c46c0d in __nscd_gethostbyname2_r () from /lib64/libc.so.6 -#4 0x00007f5763c15a2a in gethostbyname2_r () from /lib64/libc.so.6 -#5 0x00007f5763bed3ca in gaih_inet.constprop () from /lib64/libc.so.6 -#6 0x00007f5763bee225 in getaddrinfo () from /lib64/libc.so.6 -#7 0x000055fcf0ad6544 in open_TCP_socket () -#8 0x000055fcf0ad79b4 in nts_probe () -#9 0x000055fcf0ac37c4 in dns_lookup () -#10 0x00007f5763b8205a in start_thread () from /lib64/libc.so.6 -#11 0x00007f5763c05d1c in clone3 () from /lib64/libc.so.6 - -Signed-off-by: Maciej S. Szmigiero ---- a/ntpd/ntp_sandbox.c -+++ b/ntpd/ntp_sandbox.c -@@ -357,6 +357,7 @@ int scmp_sc[] = { - SCMP_SYS(poll), - SCMP_SYS(pselect6), - SCMP_SYS(read), -+ SCMP_SYS(readv), /* nscd getaddrinfo() provider */ - SCMP_SYS(recvfrom), /* Comment this out for testing. - * It will die on the first reply. - * (Or maybe sooner if a request arrives.) -GitLab diff --git a/net-misc/ntpsec/files/ntpsec-1.2.1-seccomp-rollup.patch b/net-misc/ntpsec/files/ntpsec-1.2.1-seccomp-rollup.patch deleted file mode 100644 index c9ba3760cce6..000000000000 --- a/net-misc/ntpsec/files/ntpsec-1.2.1-seccomp-rollup.patch +++ /dev/null @@ -1,116 +0,0 @@ -From 9a13c2bd472786472360f1a6465d8a808f6b8311 Mon Sep 17 00:00:00 2001 -From: Stephen L Arnold -Date: Thu, 2 Dec 2021 20:16:18 -0800 -Subject: [PATCH] ntpd/ntp_sandbox.c: seccomp rollup patch for arm, arm64, - riscv, all - -* add renameat2, move newfstatat and faccessat, remove arch dups -* rollup previous patches, remove cruft -* includes riscv fixes, previous bugs: - https://bugs.gentoo.org/705128 - https://bugs.gentoo.org/786228 - https://bugs.gentoo.org/823692 - https://gitlab.com/NTPsec/ntpsec/-/merge_requests/1247 - https://gitlab.com/NTPsec/ntpsec/-/issues/713 - -Signed-off-by: Stephen L Arnold ---- - ntpd/ntp_sandbox.c | 27 +++++++++++++++++++-------- - 1 file changed, 19 insertions(+), 8 deletions(-) - -diff --git a/ntpd/ntp_sandbox.c b/ntpd/ntp_sandbox.c -index e66faaa8c..04eaa003a 100644 ---- a/ntpd/ntp_sandbox.c -+++ b/ntpd/ntp_sandbox.c -@@ -306,8 +306,8 @@ int scmp_sc[] = { - #endif - #endif /* ENABLE_EARLY_DROPROOT */ - -- SCMP_SYS(accept), -- SCMP_SYS(access), -+ SCMP_SYS(accept), -+ SCMP_SYS(access), - SCMP_SYS(adjtimex), - SCMP_SYS(bind), - SCMP_SYS(brk), -@@ -319,6 +319,9 @@ int scmp_sc[] = { - SCMP_SYS(connect), - SCMP_SYS(exit), - SCMP_SYS(exit_group), -+#ifdef __NR_faccessat -+ SCMP_SYS(faccessat), /* riscv and aarch64 */ -+#endif - SCMP_SYS(fcntl), - SCMP_SYS(fstat), - SCMP_SYS(fsync), -@@ -349,11 +352,13 @@ int scmp_sc[] = { - SCMP_SYS(lseek), - SCMP_SYS(membarrier), /* Needed on Alpine 3.11.3 */ - SCMP_SYS(munmap), -+ SCMP_SYS(newfstatat), /* riscv and aarch64 */ - SCMP_SYS(open), - #ifdef __NR_openat - SCMP_SYS(openat), /* SUSE */ - #endif - SCMP_SYS(poll), -+ SCMP_SYS(pread64), - SCMP_SYS(pselect6), - SCMP_SYS(read), - SCMP_SYS(recvfrom), /* Comment this out for testing. -@@ -362,6 +367,9 @@ int scmp_sc[] = { - */ - SCMP_SYS(recvmsg), - SCMP_SYS(rename), -+#ifdef __NR_renameat2 -+ SCMP_SYS(renameat2), /* riscv */ -+#endif - SCMP_SYS(rt_sigaction), - SCMP_SYS(rt_sigprocmask), - SCMP_SYS(rt_sigreturn), -@@ -401,6 +409,7 @@ int scmp_sc[] = { - * rather than generate a trap. - */ - SCMP_SYS(clone), /* threads */ -+ SCMP_SYS(clone3), - SCMP_SYS(kill), /* generate signal */ - SCMP_SYS(madvise), - SCMP_SYS(mprotect), -@@ -415,9 +424,9 @@ int scmp_sc[] = { - SCMP_SYS(nanosleep), - #endif - #ifdef CLOCK_SHM -- SCMP_SYS(shmget), -- SCMP_SYS(shmat), -- SCMP_SYS(shmdt), -+ SCMP_SYS(shmget), -+ SCMP_SYS(shmat), -+ SCMP_SYS(shmdt), - #endif - - SCMP_SYS(fcntl64), -@@ -450,10 +459,9 @@ int scmp_sc[] = { - SCMP_SYS(mmap), - #endif - #if defined(__aarch64__) -- SCMP_SYS(faccessat), -- SCMP_SYS(newfstatat), -- SCMP_SYS(renameat), - SCMP_SYS(linkat), -+ SCMP_SYS(renameat), -+ SCMP_SYS(syscall), - SCMP_SYS(unlinkat), - #endif - #if defined(__i386__) || defined(__arm__) || defined(__powerpc__) -@@ -463,6 +471,9 @@ int scmp_sc[] = { - SCMP_SYS(send), - SCMP_SYS(stat64), - #endif -+#if defined(__arm__) -+ SCMP_SYS(statx), -+#endif - }; - { - for (unsigned int i = 0; i < COUNTOF(scmp_sc); i++) { --- -2.32.0 - diff --git a/net-misc/ntpsec/files/ntpsec-1.2.1-seccomp-rseq-glibc-2.35.patch b/net-misc/ntpsec/files/ntpsec-1.2.1-seccomp-rseq-glibc-2.35.patch deleted file mode 100644 index 155304148b1f..000000000000 --- a/net-misc/ntpsec/files/ntpsec-1.2.1-seccomp-rseq-glibc-2.35.patch +++ /dev/null @@ -1,25 +0,0 @@ -https://gitlab.com/NTPsec/ntpsec/-/merge_requests/1262 -https://bugs.gentoo.org/833274 - -From 75970342391b0b1fad422e6ca3dc89dd76dcf607 Mon Sep 17 00:00:00 2001 -From: Sam James -Date: Thu, 7 Apr 2022 03:02:22 +0100 -Subject: [PATCH] ntpd/ntp_sandbox.c: allow rseq for glibc-2.35 in seccomp - filter - -Fixes: https://gitlab.com/NTPsec/ntpsec/-/issues/728 -Bug: https://bugs.gentoo.org/833274 -Signed-off-by: Sam James ---- a/ntpd/ntp_sandbox.c -+++ b/ntpd/ntp_sandbox.c -@@ -366,6 +366,9 @@ int scmp_sc[] = { - SCMP_SYS(rt_sigaction), - SCMP_SYS(rt_sigprocmask), - SCMP_SYS(rt_sigreturn), -+#ifdef __NR_rseq -+ SCMP_SYS(rseq), /* needed by glibc-2.35+ for resumable sequences */ -+#endif - SCMP_SYS(sigaction), - SCMP_SYS(sigprocmask), - SCMP_SYS(sigreturn), -GitLab diff --git a/net-misc/ntpsec/files/ntpsec-1.2.2-logrotate.patch b/net-misc/ntpsec/files/ntpsec-1.2.2-logrotate.patch new file mode 100644 index 000000000000..60152bc846c4 --- /dev/null +++ b/net-misc/ntpsec/files/ntpsec-1.2.2-logrotate.patch @@ -0,0 +1,26 @@ +From 4ba53b95a6a45f08f5d3436a4a3ba4f9a97146e2 Mon Sep 17 00:00:00 2001 +From: Sebastian Pipping +Date: Mon, 17 Apr 2023 00:24:32 +0200 +Subject: [PATCH] Give ntpd a chance at re-opening the logfile as ntp:ntp after + rotation + +https://bugs.gentoo.org/873514 +--- + etc/logrotate-config.ntpd | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/etc/logrotate-config.ntpd b/etc/logrotate-config.ntpd +index b64998e..9144e57 100644 +--- a/etc/logrotate-config.ntpd ++++ b/etc/logrotate-config.ntpd +@@ -5,6 +5,7 @@ + + /var/log/ntpd.log { + monthly ++ create 640 ntp root + missingok + postrotate + /usr/bin/killall -HUP ntpd +-- +2.40.0 + diff --git a/net-misc/ntpsec/files/ntpsec-py3-test-clarify.patch b/net-misc/ntpsec/files/ntpsec-py3-test-clarify.patch deleted file mode 100644 index 027c3df18ad2..000000000000 --- a/net-misc/ntpsec/files/ntpsec-py3-test-clarify.patch +++ /dev/null @@ -1,34 +0,0 @@ -From f360741dec76a9c9d831f0b547596891ea321599 Mon Sep 17 00:00:00 2001 -From: James Browning -Date: Sun, 10 Apr 2022 16:23:34 -0700 -Subject: [PATCH] clean test output up in Python 3 - ---- - wafhelpers/test.py | 9 +++++---- - 1 file changed, 5 insertions(+), 4 deletions(-) - -diff --git a/wafhelpers/test.py b/wafhelpers/test.py -index 9351a5675..6bba34881 100644 ---- a/wafhelpers/test.py -+++ b/wafhelpers/test.py -@@ -31,12 +31,13 @@ def test_print_log(ctx): - pprint("YELLOW", "RETURN VALUE:", retval) - print("") - -- if retval or error: -+ if retval: - pprint("RED", "****** ERROR ******\n") - -- print(error or lines) -+ print(polystr(error) or polystr(lines)) - -- if (not retval) and (not error): -- pprint("GREEN", "****** LOG ******\n", lines) -+ else: -+ pprint("GREEN", "****** LOG ******\n", -+ polystr(lines), polystr(error)) - - print("") --- -2.32.0 - diff --git a/net-misc/ntpsec/ntpsec-1.2.1-r6.ebuild b/net-misc/ntpsec/ntpsec-1.2.2-r1.ebuild similarity index 91% rename from net-misc/ntpsec/ntpsec-1.2.1-r6.ebuild rename to net-misc/ntpsec/ntpsec-1.2.2-r1.ebuild index e40e8e17271c..cee0430804e4 100644 --- a/net-misc/ntpsec/ntpsec-1.2.1-r6.ebuild +++ b/net-misc/ntpsec/ntpsec-1.2.2-r1.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_{9..11} ) PYTHON_REQ_USE='threads(+)' DISTUTILS_USE_SETUPTOOLS=no @@ -14,7 +14,7 @@ if [[ ${PV} == *9999* ]]; then EGIT_REPO_URI="https://gitlab.com/NTPsec/ntpsec.git" else SRC_URI="ftp://ftp.ntpsec.org/pub/releases/${P}.tar.gz" - KEYWORDS="amd64 arm arm64 ~riscv ~x86" + KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" fi DESCRIPTION="The NTP reference implementation, refactored" @@ -34,7 +34,7 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE} nist? ( rclock_local )" # net-misc/pps-tools oncore,pps DEPEND="${PYTHON_DEPS} - (2023-04-17) +# Ruby has several JITs available but they need porting to individual arches. +# Unmask on specific arches where it's available. +dev-lang/ruby -jit + # Sam James (2023-04-03) # pytables is available here. dev-python/pytables -cpudetection +# Craig Andrews (2023-03-09) +# media-libs/libplacebo is keyworded here +media-video/ffmpeg -libplacebo + # Yiyang Wu (2023-01-27) # AMDGPU enablement depends on dev-libs/rocr-runtime, ~amd64 only # See also: https://bugs.gentoo.org/891499 @@ -448,7 +457,3 @@ media-sound/mpg123 cpu_flags_x86_mmx cpu_flags_x86_3dnow cpu_flags_x86_3dnowext # saves people from needlessly installing nasm # Refs bug #93279 media-sound/lame cpu_flags_x86_mmx - -# Craig Andrews (2023-03-09) -# media-libs/libplacebo is keyworded here -media-video/ffmepg -libplacebo diff --git a/profiles/arch/arm64/package.use.mask b/profiles/arch/arm64/package.use.mask index 669c44b9c7cf..9fb567a44715 100644 --- a/profiles/arch/arm64/package.use.mask +++ b/profiles/arch/arm64/package.use.mask @@ -1,6 +1,11 @@ # Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 +# Sam James (2023-04-17) +# Ruby has several JITs available but they need porting to individual arches. +# Unmask on specific arches where it's available. +dev-lang/ruby -jit + # Sam James (2023-01-27) # media-libs/shaderc not keyworded here games-action/supertuxkart vulkan diff --git a/profiles/arch/hppa/package.use.mask b/profiles/arch/hppa/package.use.mask index 8e05903535c2..9977cd44be75 100644 --- a/profiles/arch/hppa/package.use.mask +++ b/profiles/arch/hppa/package.use.mask @@ -17,10 +17,6 @@ dev-python/nbval test dev-python/nbclassic doc dev-python/nbval doc -# Hans de Graaff (2023-02-27) -# Depends on virtual/rust -dev-lang/ruby jit - # Sam James (2022-12-26) # Unkeyworded dependencies dev-util/diffoscope opendocument pascal pdf R diff --git a/profiles/arch/loong/package.use.mask b/profiles/arch/loong/package.use.mask index 86c908e39d0b..cad66f2225e8 100644 --- a/profiles/arch/loong/package.use.mask +++ b/profiles/arch/loong/package.use.mask @@ -10,10 +10,6 @@ dev-python/sympy opengl # cc invocations) dev-python/sympy aesara -# Hans de Graaff (2023-02-27) -# Depends on virtual/rust -dev-lang/ruby jit - # WANG Xuerui (2022-12-06) # dev-cpp/glog fails tests, needs checking media-libs/opencv glog contribsfm diff --git a/profiles/base/package.use.mask b/profiles/base/package.use.mask index f546b053e471..3b6308459fd6 100644 --- a/profiles/base/package.use.mask +++ b/profiles/base/package.use.mask @@ -6,6 +6,11 @@ # This file is only for generic masks. For arch-specific masks (i.e. # mask everywhere, unmask on arch/*) use arch/base. +# Sam James (2023-04-17) +# Ruby has several JITs available but they need porting to individual arches. +# Unmask on specific arches where it's available. +dev-lang/ruby jit + # Matt Turner (2023-04-10) # Not ported to libsoup:3.0 >=media-plugins/grilo-plugins-0.3.16 youtube diff --git a/profiles/package.mask b/profiles/package.mask index 4e75f7461c3f..58ec752805be 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -33,6 +33,23 @@ #--- END OF EXAMPLES --- +# Sam James (2023-04-18) +# Fails to compile with GCC 13, out of date, QA issues, and various open bugs. +# Removal on 2023-05-18. +# Bug #899218, bug #899218, bug #796599, bug #672326, bug #788844. +net-p2p/litecoind + +# Sam James (2023-04-18) +# Fails to compile with GCC 13, no upstream activity. +# Removal on 2023-05-18. Bug #895206. +sci-geosciences/congen + +# David Seifert (2023-04-17) +# Unmaintained, no release in over 10 years, EAPI 6, no other distro +# carries this, usual suckless.org assortment of build system +# patching required. Removal on 2023-05-17. Bug #732424. +x11-misc/sprop + # Sam James (2023-04-16) # SEEK_HOLE issues causing corruption with (sparse?) copies again. # See https://github.com/openzfs/zfs/issues/14753. @@ -517,6 +534,7 @@ media-gfx/gnome-photos >=media-libs/grilo-0.3.15-r1 >=media-plugins/grilo-plugins-0.3.16 media-sound/gnome-music +>=media-sound/rhythmbox-3.4.7 net-libs/libdmapsharing:4.0 # Jaco Kroon (2022-11-05) @@ -568,6 +586,7 @@ dev-qt/qtnetworkauth:6 dev-qt/qtpositioning:6 dev-qt/qtquick3d:6 dev-qt/qtquicktimeline:6 +dev-qt/qtscxml:6 dev-qt/qtserialport:6 dev-qt/qtshadertools:6 dev-qt/qtsvg:6 @@ -577,6 +596,7 @@ dev-qt/qtwebchannel:6 dev-qt/qtwebengine:6 dev-qt/qtwebsockets:6 >=media-video/bino-2 +>=x11-misc/albert-0.20.13 # Fabian Groffen (2022-07-02) # Segfaults handling SPF validations (warn on permerror), like the @@ -594,10 +614,6 @@ dev-qt/qtwebsockets:6 # should update to that. #841437 ~sci-physics/bullet-3.22b -# Eray Aslan (2022-01-24) -# Mask experimental software -=mail-mta/postfix-3.8* - # James Beddek (2022-01-19) # FFmpeg 5.0 ABI/API changes break many packages. # Masking for tracker/tinderbox. Bug #831437 diff --git a/profiles/profiles.desc b/profiles/profiles.desc index e8f6c62dc780..c4fc0597967e 100644 --- a/profiles/profiles.desc +++ b/profiles/profiles.desc @@ -1,4 +1,4 @@ -# Copyright 2003-2022 Gentoo Authors +# Copyright 2003-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 ############################################# @@ -272,29 +272,29 @@ riscv default/linux/riscv/20.0/rv64gc/lp64d stable riscv default/linux/riscv/20.0/rv64gc/lp64d/desktop dev riscv default/linux/riscv/20.0/rv64gc/lp64d/desktop/gnome dev riscv default/linux/riscv/20.0/rv64gc/lp64d/desktop/gnome/systemd dev -#riscv default/linux/riscv/20.0/rv64gc/lp64d/desktop/gnome/systemd/merged-usr dev +riscv default/linux/riscv/20.0/rv64gc/lp64d/desktop/gnome/systemd/merged-usr dev riscv default/linux/riscv/20.0/rv64gc/lp64d/desktop/plasma dev riscv default/linux/riscv/20.0/rv64gc/lp64d/desktop/plasma/systemd dev -#riscv default/linux/riscv/20.0/rv64gc/lp64d/desktop/plasma/systemd/merged-usr dev +riscv default/linux/riscv/20.0/rv64gc/lp64d/desktop/plasma/systemd/merged-usr dev riscv default/linux/riscv/20.0/rv64gc/lp64d/desktop/systemd dev -#riscv default/linux/riscv/20.0/rv64gc/lp64d/desktop/systemd/merged-usr dev +riscv default/linux/riscv/20.0/rv64gc/lp64d/desktop/systemd/merged-usr dev riscv default/linux/riscv/20.0/rv64gc/lp64d/systemd stable -#riscv default/linux/riscv/20.0/rv64gc/lp64d/systemd/merged-usr stable +riscv default/linux/riscv/20.0/rv64gc/lp64d/systemd/merged-usr stable riscv default/linux/riscv/20.0/rv64gc/lp64 stable riscv default/linux/riscv/20.0/rv64gc/lp64/desktop dev riscv default/linux/riscv/20.0/rv64gc/lp64/desktop/gnome dev riscv default/linux/riscv/20.0/rv64gc/lp64/desktop/gnome/systemd dev -#riscv default/linux/riscv/20.0/rv64gc/lp64/desktop/gnome/systemd/merged-usr dev +riscv default/linux/riscv/20.0/rv64gc/lp64/desktop/gnome/systemd/merged-usr dev riscv default/linux/riscv/20.0/rv64gc/lp64/desktop/plasma dev riscv default/linux/riscv/20.0/rv64gc/lp64/desktop/plasma/systemd dev -#riscv default/linux/riscv/20.0/rv64gc/lp64/desktop/plasma/systemd/merged-usr dev +riscv default/linux/riscv/20.0/rv64gc/lp64/desktop/plasma/systemd/merged-usr dev riscv default/linux/riscv/20.0/rv64gc/lp64/desktop/systemd dev -#riscv default/linux/riscv/20.0/rv64gc/lp64/desktop/systemd/merged-usr dev +riscv default/linux/riscv/20.0/rv64gc/lp64/desktop/systemd/merged-usr dev riscv default/linux/riscv/20.0/rv64gc/lp64/systemd stable -#riscv default/linux/riscv/20.0/rv64gc/lp64/systemd/merged-usr stable +riscv default/linux/riscv/20.0/rv64gc/lp64/systemd/merged-usr stable riscv default/linux/riscv/20.0/rv64gc/multilib exp riscv default/linux/riscv/20.0/rv64gc/multilib/systemd exp -#riscv default/linux/riscv/20.0/rv64gc/multilib/systemd/merged-usr exp +riscv default/linux/riscv/20.0/rv64gc/multilib/systemd/merged-usr exp # S390 Profiles # @MAINTAINER: s390@gentoo.org diff --git a/profiles/use.local.desc b/profiles/use.local.desc index 72090b8be943..7c3be1347fe2 100644 --- a/profiles/use.local.desc +++ b/profiles/use.local.desc @@ -1927,6 +1927,8 @@ dev-libs/jemalloc:xmalloc - Add support for xmalloc (abort-on-out-of-memory) dev-libs/kosmindoormap:openinghours - Enable support for highlighting currently open amenities/shops/etc. dev-libs/kreport:marble - Enable displaying of maps using kde-apps/marble dev-libs/kreport:scripting - Support Qml scripting using dev-qt/qtdeclarative +dev-libs/ktextaddons:designer - Build plugins for dev-qt/designer +dev-libs/ktextaddons:speech - Enable text-to-speech support dev-libs/libbase58:tools - Build command line base58 tool dev-libs/libbytesize:tools - Build bscalc python CLI tool dev-libs/libcbor:custom-alloc - Custom, dynamically defined allocator support @@ -2125,6 +2127,7 @@ dev-libs/ppl:lpsol - Build the ppl_lpsol linear program solver that uses sci-mat dev-libs/qcoro5:network - Build dev-qt/qtnetwork support dev-libs/qcoro5:qml - Enable QML/QtQuick support via dev-qt/qtdeclarative dev-libs/qcoro5:websockets - Build dev-qt/qtwebsockets support +dev-libs/qhotkey:qt6 - Use Qt6 dependencies dev-libs/quazip:qt5 - Build with Qt5 support dev-libs/quazip:qt6 - Build with Qt6 support dev-libs/raft:zfs - ZFS support @@ -5778,7 +5781,6 @@ net-im/spectrum2:twitter - Enables the Twitter backend. net-im/spectrum2:whatsapp - Enables the WhatsApp backend, based on net-im/transwhat. net-im/telegram-desktop:enchant - Use the app-text/aspell spell-checking backend instead of app-text/hunspell net-im/telegram-desktop:fonts - Use builtin patched copy of open-sans fonts (overrides fontconfig) -net-im/telegram-desktop:hunspell - Enable the app-text/hunspell spell-checking backend (old flag) net-im/telegram-desktop:qt6 - Build with Qt6 support net-im/telegram-desktop:qt6-imageformats - Add support for HEIF, AVIF and JpegXL by bundling kde-frameworks/kimageformats net-im/telepathy-connection-managers:gadu - Enable Gadu Gadu protocol support. @@ -8159,6 +8161,7 @@ sys-devel/distcc:gssapi - Enable support for net-libs/libgssglue sys-devel/gcc:ada - Build the ADA language (GNAT) frontend sys-devel/gcc:cet - Enable support for Intel Control Flow Enforcement Technology (CET). Only effective on amd64/x86. Only provides benefits on newer CPUs. For Intel, the CPU must be at least as new as Tiger Lake. For AMD, it must be at least as new as Zen 3. This is harmless on older CPUs, but provides no benefit either. When combined with USE=hardened, GCC will set -fcf-protection by default when building software. The effect is minimal on systems which do not support it, other than a possible small increase in codesize for the NOPs. The generated code is therefore compatible with i686 at the earliest. sys-devel/gcc:d - Enable support for the D programming language +sys-devel/gcc:debug - Enables GCC's 'checking' facility via --enable-checking=yes,extra,rtl. This adds checks to various compiler passes for integrity and input validation. This can help catch possible miscompilations early as well as latent bugs which could become real problems in future, but at the cost of slower compile times when using GCC. Unrelated to backtraces. sys-devel/gcc:default-stack-clash-protection - Build packages with stack clash protection on by default as a hardening measure. This enables -fstack-clash-protection by default which protects against large memory allocations allowing stack smashing. May cause slightly increased codesize, but modern compilers have been adapted to optimize well for this case, as this mitigation is now quite common. See https://developers.redhat.com/blog/2020/05/22/stack-clash-mitigation-in-gcc-part-3 and https://www.qualys.com/2017/06/19/stack-clash/stack-clash.txt. sys-devel/gcc:default-znow - Request full relocation on start from ld.so by default. This sets the -z,now (BIND_NOW) flag by default on all linker invocations. By resolving all dynamic symbols at application startup, parts of the program can be made read-only as a hardening measure. This is closely related to RELRO which is also separately enabled by default. In some applications with many unresolved symbols (heavily plugin based, for example), startup time may be impacted. sys-devel/gcc:fixed-point - Enable fixed-point arithmetic support for MIPS targets in gcc (Warning: significantly increases compile time!) @@ -8168,6 +8171,7 @@ sys-devel/gcc:ieee-long-double - Use accelerated 128-bit IEEE long double ABI (p sys-devel/gcc:jit - Enable libgccjit so other applications can embed gcc for Just-In-Time compilation. sys-devel/gcc:libssp - Build SSP support into a dedicated library rather than use the code in the C library (DO NOT ENABLE THIS IF YOU DON'T KNOW WHAT IT DOES) sys-devel/gcc:lto - Build using Link Time Optimizations (LTO). Note that GCC is always built with support for building other programs with LTO. This USE flag is for whether GCC itself is built and optimized with LTO. +sys-devel/gcc:modula2 - Build the GCC Modula-2 language frontend. sys-devel/gcc:mpx - Enable support for Intel Memory Protection Extensions (MPX) sys-devel/gcc:nptl - Enable support for Native POSIX Threads Library, the new threading module (requires linux-2.6 or better usually) sys-devel/gcc:objc - Build support for the Objective C code language diff --git a/sci-biology/Manifest.gz b/sci-biology/Manifest.gz index fc09f9eec99e..76d2671f3099 100644 Binary files a/sci-biology/Manifest.gz and b/sci-biology/Manifest.gz differ diff --git a/sci-biology/bedtools/bedtools-2.30.0.ebuild b/sci-biology/bedtools/bedtools-2.30.0.ebuild index 5a8174fbdfe0..b86b87e72dc4 100644 --- a/sci-biology/bedtools/bedtools-2.30.0.ebuild +++ b/sci-biology/bedtools/bedtools-2.30.0.ebuild @@ -34,6 +34,7 @@ BDEPEND=" PATCHES=( "${FILESDIR}"/${PN}-2.29.2-buildsystem.patch "${FILESDIR}"/${PN}-2.29.2-python.patch + "${FILESDIR}"/${PN}-2.30.0-gcc13.patch ) src_configure() { diff --git a/sci-biology/bedtools/files/bedtools-2.30.0-gcc13.patch b/sci-biology/bedtools/files/bedtools-2.30.0-gcc13.patch new file mode 100644 index 000000000000..c63faf31c851 --- /dev/null +++ b/sci-biology/bedtools/files/bedtools-2.30.0-gcc13.patch @@ -0,0 +1,25 @@ +https://github.com/arq5x/bedtools2/pull/1045 + +From 7d7fb513b9b05b7a0512a83520e9f60036e5ff9a Mon Sep 17 00:00:00 2001 +From: David Seifert +Date: Tue, 18 Apr 2023 11:59:58 +0200 +Subject: [PATCH] Add missing include + +* breaks build with GCC 13: + https://bugs.gentoo.org/895860 +--- + src/utils/general/ParseTools.h | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/src/utils/general/ParseTools.h b/src/utils/general/ParseTools.h +index e056c149..3418eff1 100644 +--- a/src/utils/general/ParseTools.h ++++ b/src/utils/general/ParseTools.h +@@ -16,6 +16,7 @@ + #include "string.h" + #include + #include ++#include + + using namespace std; + diff --git a/sci-chemistry/Manifest.gz b/sci-chemistry/Manifest.gz index cf0f8f2f3a8f..fdb91e99a5ef 100644 Binary files a/sci-chemistry/Manifest.gz and b/sci-chemistry/Manifest.gz differ diff --git a/sci-chemistry/chemex/Manifest b/sci-chemistry/chemex/Manifest index cce7ddf724f5..eb56724409fb 100644 --- a/sci-chemistry/chemex/Manifest +++ b/sci-chemistry/chemex/Manifest @@ -1,2 +1,2 @@ -DIST chemex-2022.2.0.tar.gz 2837302 BLAKE2B 611e51a3a29dd479119dd0b2fa7aa0eae08aa59806cc26f61feda7aca7b2a94b6cc75458ec753f989ee1076b3fa49998d7fed26de1a1408432fd416d364a8f8a SHA512 52d3d8e4edd148c0e93a8c4ba4a0a487df76e332155994dc347af5e65e3baebbc39617a653853c6f5787e571c0dda756dfdec35446bc00fe9965ae1c2e8192f0 DIST chemex-2022.3.0.tar.gz 2842921 BLAKE2B d0fe809ed64ee86ef319bd76c33dea1e75de13fc7cdf7e77d8cb74e4c76b66edd6e3c535df405a66bfc228780f34ee18a56639241ae8c234ac4128ed4ba806f3 SHA512 93a8e362ec024a3d49e2792e485b3a7808944fb02c41dae0d0b2af14ccb00b95d9edddc47eef0f08d1040b08cf6078be74b45185be84b495ead96c951ee52515 +DIST chemex-2022.3.1.tar.gz 2845188 BLAKE2B dbc6c73f1c8702a027c647b6c9a64a00a0ba5ce64edddd16fc68062b3bc4cff95f4c643d57b28d74f3bcda7b24ab99ce9bc28baad950b9cca1356e6b8a36be17 SHA512 f398a3402e11157950b599325c2152a2b47221cb2b926510fd4494554399aaf404de871c83f23fff86be8124e1151903cb6378c118fdecec55f4110cdbf74647 diff --git a/sci-chemistry/chemex/chemex-2022.2.0.ebuild b/sci-chemistry/chemex/chemex-2022.3.1.ebuild similarity index 69% rename from sci-chemistry/chemex/chemex-2022.2.0.ebuild rename to sci-chemistry/chemex/chemex-2022.3.1.ebuild index 227f615edbcf..680825ce6e05 100644 --- a/sci-chemistry/chemex/chemex-2022.2.0.ebuild +++ b/sci-chemistry/chemex/chemex-2022.3.1.ebuild @@ -26,14 +26,14 @@ RESTRICT="test" RDEPEND=" $(python_gen_cond_dep ' >=dev-python/asteval-0.9.25[${PYTHON_USEDEP}] - >=dev-python/cachetools-5.2.0[${PYTHON_USEDEP}] - >=dev-python/lmfit-1.1.0[${PYTHON_USEDEP}] - >=dev-python/matplotlib-3.6.2[${PYTHON_USEDEP}] - >=dev-python/numpy-1.24.0[${PYTHON_USEDEP}] - >=dev-python/pydantic-1.10.4[${PYTHON_USEDEP}] - >=dev-python/rapidfuzz-2.13.7[${PYTHON_USEDEP}] - >=dev-python/rich-13.0.0[${PYTHON_USEDEP}] - >=dev-python/scipy-1.10.0[${PYTHON_USEDEP}] + >=dev-python/cachetools-5.3.0[${PYTHON_USEDEP}] + >=dev-python/lmfit-1.2.0[${PYTHON_USEDEP}] + >=dev-python/matplotlib-3.7.1[${PYTHON_USEDEP}] + >=dev-python/numpy-1.24.2[${PYTHON_USEDEP}] + >=dev-python/pydantic-1.10.7[${PYTHON_USEDEP}] + >=dev-python/rapidfuzz-2.15.1[${PYTHON_USEDEP}] + >=dev-python/rich-13.3.4[${PYTHON_USEDEP}] + >=dev-python/scipy-1.10.1[${PYTHON_USEDEP}] >=dev-python/tomli-2.0.1[${PYTHON_USEDEP}] ') " diff --git a/sci-chemistry/chemical-mime-data/chemical-mime-data-0.1.95_pre20171122.ebuild b/sci-chemistry/chemical-mime-data/chemical-mime-data-0.1.95_pre20171122.ebuild index 13b91f044ac8..64827ef8db67 100644 --- a/sci-chemistry/chemical-mime-data/chemical-mime-data-0.1.95_pre20171122.ebuild +++ b/sci-chemistry/chemical-mime-data/chemical-mime-data-0.1.95_pre20171122.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/dleidert/chemical-mime/archive/${COMMIT}.tar.gz -> $ LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~x86" +KEYWORDS="amd64 arm arm64 x86" IUSE="" RDEPEND="x11-misc/shared-mime-info" diff --git a/sci-libs/Manifest.gz b/sci-libs/Manifest.gz index 96a437d59ead..0a69c5e3e4a8 100644 Binary files a/sci-libs/Manifest.gz and b/sci-libs/Manifest.gz differ diff --git a/sci-libs/hdf5/Manifest b/sci-libs/hdf5/Manifest index 172f6d6a8029..026f6bd1bb2c 100644 --- a/sci-libs/hdf5/Manifest +++ b/sci-libs/hdf5/Manifest @@ -1,2 +1,3 @@ DIST hdf5-1.10.5.tar.bz2 8706317 BLAKE2B ac326be8fe4ccc4b0153f15bc7d65aa8f1adc2ae279d3980f57ed46722b754d3f36ecf1d6273c75e80ed1afd4bbf10c6b1c5d9408e1f83a4b2e397e7902a7d3c SHA512 769e43b8672e26fe24ed68da0228c010d3d9bc950ca09f0bc60707911a2f26f2f8415c8abc8ec06e07667148d8cdb3b0c7b3e7860d9b19739629c5dfd5ce73d4 DIST hdf5-1.12.2.tar.bz2 10494264 BLAKE2B 99ca5b57f6f54fa044c909f0773de62b218c1f0ec3c011f88f3c227536dd719e77ddbe42d562b1214e8843e41d8fc56db499d7f122876fdd36ef31b235229cb7 SHA512 cbb4663570de76b11adb6bf62cfdb754371d31eeab04691479a5764a45207a9c1309665ab80f51c63a4b9b87354f9cbe6835cef506a9fd554d142c6d2bec21e5 +DIST hdf5-1.14.0.tar.bz2 15709493 BLAKE2B c86bc91da66d0136870ef9a63edfb7b3591592b4ccc072d2c93ff1c6fa7de23184d0b2f49a6de76215541342c6021cda38816f9a3fae69c2c1fdc18d219ea24c SHA512 25a147b60b1abe15950d66368b3c0b401e767425036b575bcb12aad46374b6db4687dc0816b5cfa103c24fd5078d91d70c7b19cfe0db327d3ff15811b651b8f8 diff --git a/sci-libs/hdf5/hdf5-1.14.0.ebuild b/sci-libs/hdf5/hdf5-1.14.0.ebuild new file mode 100644 index 000000000000..d69a56ff0f16 --- /dev/null +++ b/sci-libs/hdf5/hdf5-1.14.0.ebuild @@ -0,0 +1,119 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +FORTRAN_NEEDED=fortran + +# We've reverted *back* to autotools from CMake because of +# https://github.com/HDFGroup/hdf5/issues/1814. +inherit autotools fortran-2 flag-o-matic toolchain-funcs prefix + +MY_P=${PN}-${PV/_p/-patch} +MAJOR_P=${PN}-$(ver_cut 1-2) + +DESCRIPTION="General purpose library and file format for storing scientific data" +HOMEPAGE="https://www.hdfgroup.org/HDF5/" +SRC_URI="https://www.hdfgroup.org/ftp/HDF5/releases/${MAJOR_P}/${MY_P}/src/${MY_P}.tar.bz2" +S="${WORKDIR}/${MY_P}" + +LICENSE="NCSA-HDF" +SLOT="0/${PV%%_p*}" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="cxx debug examples fortran +hl mpi szip test threads unsupported zlib" +RESTRICT="!test? ( test )" +REQUIRED_USE=" + !unsupported? ( + cxx? ( !mpi ) mpi? ( !cxx ) + threads? ( !cxx !mpi !fortran !hl ) + ) +" + +RDEPEND=" + mpi? ( virtual/mpi[romio] ) + szip? ( virtual/szip ) + zlib? ( sys-libs/zlib:0= )" +DEPEND="${RDEPEND}" + +PATCHES=( + "${FILESDIR}"/${PN}-1.8.9-static_libgfortran.patch + "${FILESDIR}"/${PN}-1.12.2-no-strip-symbols.patch +) + +pkg_setup() { + # Workaround for bug 285148 + tc-export CXX CC AR + + use fortran && fortran-2_pkg_setup + + if use mpi; then + if has_version 'sci-libs/hdf5[-mpi]'; then + ewarn "Installing hdf5 with mpi enabled with a previous hdf5 with mpi disabled may fail." + ewarn "Try to uninstall the current hdf5 prior to enabling mpi support." + fi + + export CC=mpicc + use fortran && export FC=mpif90 + elif has_version 'sci-libs/hdf5[mpi]'; then + ewarn "Installing hdf5 with mpi disabled while having hdf5 installed with mpi enabled may fail." + ewarn "Try to uninstall the current hdf5 prior to disabling mpi support." + fi +} + +src_prepare() { + default + + # Respect Gentoo examples directory + sed \ + -e "s:hdf5_examples:doc/${PF}/examples:g" \ + -i $(find . -name Makefile.am) $(find . -name "run*.sh.in") || die + sed \ + -e '/docdir/d' \ + -i config/commence.am || die + + if ! use examples; then + # bug #409091 + sed -e '/^install:/ s/install-examples//' \ + -i Makefile.am || die + fi + + # Enable shared libs by default for h5cc config utility + sed -i -e "s/SHLIB:-no/SHLIB:-yes/g" bin/h5cc.in || die + hprefixify m4/libtool.m4 + + eautoreconf +} + +src_configure() { + # bug #686620 + use sparc && tc-is-gcc && append-flags -fno-tree-ccp + + econf \ + --disable-static \ + --enable-deprecated-symbols \ + --enable-build-mode=$(usex debug debug production) \ + --with-default-plugindir="${EPREFIX}/usr/$(get_libdir)/${PN}/plugin" \ + $(use_enable cxx) \ + $(use_enable debug codestack) \ + $(use_enable fortran) \ + $(use_enable hl) \ + $(use_enable mpi parallel) \ + $(use_enable test tests) \ + $(use_enable threads threadsafe) \ + $(use_enable unsupported) \ + $(use_with szip szlib) \ + $(use_with threads pthread) \ + $(use_with zlib) +} + +src_install() { + emake DESTDIR="${D}" EPREFIX="${EPREFIX}" install + + # No static archives + find "${ED}" -name '*.la' -delete || die + + # Remove "perf" executable due to file collisions with dev-util/perf. + # Previously with the CMake build system we only installed h5perf, so + # let's simply remove the file for now. + use mpi && { rm "${ED}"/usr/bin/perf || die "rm failed" ; } +} diff --git a/sci-mathematics/4ti2/4ti2-1.6.7-r1.ebuild b/sci-mathematics/4ti2/4ti2-1.6.7-r1.ebuild index 887469dd15eb..fa3572550200 100644 --- a/sci-mathematics/4ti2/4ti2-1.6.7-r1.ebuild +++ b/sci-mathematics/4ti2/4ti2-1.6.7-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -18,7 +18,10 @@ RDEPEND=" dev-libs/gmp:0=[cxx(+)]" DEPEND="${RDEPEND}" -PATCHES=( "${FILESDIR}"/${PN}-1.3.2-gold.patch ) +PATCHES=( + "${FILESDIR}"/${PN}-1.3.2-gold.patch + "${FILESDIR}"/${P}-gcc13.patch +) src_prepare() { default diff --git a/sci-mathematics/4ti2/files/4ti2-1.6.7-gcc13.patch b/sci-mathematics/4ti2/files/4ti2-1.6.7-gcc13.patch new file mode 100644 index 000000000000..32f7c1a42b34 --- /dev/null +++ b/sci-mathematics/4ti2/files/4ti2-1.6.7-gcc13.patch @@ -0,0 +1,21 @@ +https://bugs.gentoo.org/895420 +https://github.com/4ti2/4ti2/commit/c024db44f43593fbfe9d8d51f035db7a605d1fa6 + +From c024db44f43593fbfe9d8d51f035db7a605d1fa6 Mon Sep 17 00:00:00 2001 +From: Jan Engelhardt +Date: Tue, 28 Mar 2023 00:33:03 +0200 +Subject: [PATCH] build: resolve missing includes showing on gcc-13 + +../../src/zsolve/VectorArrayAPI.hpp: In function 'void _4ti2_zsolve_::convert(const T1&, T2&) [with T1 = long int; T2 = int]': +../../src/zsolve/VectorArrayAPI.hpp:79:14: error: 'INT32_MIN' was not declared in this scope; did you mean 'INT_MIN'? +--- a/src/zsolve/VectorArrayAPI.hpp ++++ b/src/zsolve/VectorArrayAPI.hpp +@@ -27,6 +27,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + #include "zsolve/VectorArray.hpp" + #include "zsolve/Exception.h" + #include ++#include + #include + + namespace _4ti2_zsolve_ { + diff --git a/sci-mathematics/4ti2/metadata.xml b/sci-mathematics/4ti2/metadata.xml index 94a9142e48c1..d9dd24cced11 100644 --- a/sci-mathematics/4ti2/metadata.xml +++ b/sci-mathematics/4ti2/metadata.xml @@ -9,4 +9,7 @@ 4ti2 is a software package for algebraic, geometric and combinatorial problems on linear spaces and for toric ideals too. + + 4ti2/4ti2 + diff --git a/sci-mathematics/Manifest.gz b/sci-mathematics/Manifest.gz index dc7f59773aa1..69ba9f0a6a08 100644 Binary files a/sci-mathematics/Manifest.gz and b/sci-mathematics/Manifest.gz differ diff --git a/sys-apps/Manifest.gz b/sys-apps/Manifest.gz index 6d72bb289f5a..b61f02550c6b 100644 Binary files a/sys-apps/Manifest.gz and b/sys-apps/Manifest.gz differ diff --git a/sys-apps/openrc/Manifest b/sys-apps/openrc/Manifest index 89ed7ed2a0a1..629847149826 100644 --- a/sys-apps/openrc/Manifest +++ b/sys-apps/openrc/Manifest @@ -1 +1,2 @@ DIST openrc-0.46.tar.gz 247679 BLAKE2B 55490afc179e1e56a58408e8a2b7ebd5376ffee25cb61f2838a47cc97ad1e4eadabcc7f74e5cc2a2d9217917eb42517cf01766de2e82b50a3500bdbe263b0d88 SHA512 7c837e4b553511f0621944222ca0d35bd553a9888bd482ca0f8f3d2923d5b51cbd1f1c2f33cccb26d9f13dfb488939b95064673bedb7fcbf78d68664df2678c7 +DIST openrc-0.47.tar.gz 249789 BLAKE2B db97cea45fc24aadc5c8b8d710070f846b2d5748c4b0fddf63227324444a54f506129b8885e9f62537f5dd408f0f418667eb0c9c29007e45a400f752b9ba5e99 SHA512 5b1145985e1d210842aa364712ab570d0661b98267a1faf656309b0d7ac03beccd699269955d1995e84e483ceb7f2c66cdf2da895e2ee1133a133d3fe7cac1a7 diff --git a/sys-apps/openrc/openrc-0.47.ebuild b/sys-apps/openrc/openrc-0.47.ebuild new file mode 100644 index 000000000000..11d77ecda370 --- /dev/null +++ b/sys-apps/openrc/openrc-0.47.ebuild @@ -0,0 +1,169 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson pam + +DESCRIPTION="OpenRC manages the services, startup and shutdown of a host" +HOMEPAGE="https://github.com/openrc/openrc/" + +if [[ ${PV} =~ ^9{4,}$ ]]; then + EGIT_REPO_URI="https://github.com/OpenRC/${PN}.git" + inherit git-r3 +else + SRC_URI="https://github.com/OpenRC/openrc/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +fi + +LICENSE="BSD-2" +SLOT="0" +IUSE="audit bash debug ncurses pam newnet +netifrc selinux sysv-utils unicode" + +COMMON_DEPEND=" + ncurses? ( sys-libs/ncurses:0= ) + pam? ( sys-libs/pam ) + audit? ( sys-process/audit ) + sys-process/psmisc + selinux? ( + sys-apps/policycoreutils + >=sys-libs/libselinux-2.6 + )" +DEPEND="${COMMON_DEPEND} + virtual/os-headers + ncurses? ( virtual/pkgconfig )" +RDEPEND="${COMMON_DEPEND} + bash? ( app-shells/bash ) + !prefix? ( + sysv-utils? ( + !sys-apps/systemd[sysv-utils(-)] + !sys-apps/sysvinit + ) + !sysv-utils? ( + || ( + >=sys-apps/sysvinit-2.86-r6[selinux?] + sys-apps/s6-linux-init[sysv-utils(-)] + ) + ) + virtual/tmpfiles + ) + selinux? ( + >=sec-policy/selinux-base-policy-2.20170204-r4 + >=sec-policy/selinux-openrc-2.20170204-r4 + ) +" + +PDEPEND="netifrc? ( net-misc/netifrc )" + +src_configure() { + local emesonargs=( + $(meson_feature audit) + "-Dbranding=\"Gentoo Linux\"" + $(meson_use newnet) + -Dos=Linux + $(meson_use pam) + $(meson_feature selinux) + -Drootprefix="${EPREFIX}" + -Dshell=$(usex bash /bin/bash /bin/sh) + $(meson_use sysv-utils sysvinit) + -Dtermcap=$(usev ncurses) + ) + # export DEBUG=$(usev debug) + meson_src_configure +} + +# set_config