[gentoo-commits] repo/gentoo:master commit in: dev-ruby/bundler/
commit: 28d46cb6e16db408e2cd73cc1c858274985eec66 Author: Hans de Graaff gentoo org> AuthorDate: Thu May 13 06:25:41 2021 + Commit: Hans de Graaff gentoo org> CommitDate: Thu May 13 06:25:41 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28d46cb6 dev-ruby/bundler: add 2.2.17 Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/bundler/Manifest | 1 + dev-ruby/bundler/bundler-2.2.17.ebuild | 30 ++ 2 files changed, 31 insertions(+) diff --git a/dev-ruby/bundler/Manifest b/dev-ruby/bundler/Manifest index b04744ab941..46dcc0f55cf 100644 --- a/dev-ruby/bundler/Manifest +++ b/dev-ruby/bundler/Manifest @@ -6,3 +6,4 @@ DIST bundler-2.2.13.gem 388608 BLAKE2B 1d500b18abd7dce33b4780ff6ceef05e51faf465b DIST bundler-2.2.14.gem 389120 BLAKE2B 6e1a04b82fe2acb68a1525fcc5237cffde8a1f7fc2c3f522932b8819c55fc5aa9b8e532cdf71a8439b6d54a6b9b4bb488ffd498dbdaf92945129981518ab8aab SHA512 0edc95756cac080c7ceb5a435012618727b15893ce6fa6eb4fe1150a21894e0228cc841f4ea59825a430ee72c33247b6915708e3bd0f2729cf446c57421cfcc7 DIST bundler-2.2.15.gem 389120 BLAKE2B 1f5b9d56dc6613626492321b478607db4a936fa70bb70369c924b721d0a8389542f0c3ec68b4abfe5c3471428240f56bd14b263c66f4146591d8b3ccfd5050bb SHA512 c6fddb5e96887d446efaf5571a1fae47a994a7d8b50332a6b7702af8c99a9c3899b97353041d7393541803a02604d61803cde4623fbb260484f6f17b9d1d65e2 DIST bundler-2.2.16.gem 390144 BLAKE2B 02e9c0a7a67ce80e31ad111e7dc8a08387ca615773e6ca7e998cbff882518dfc0da898fc42916749280e4b9726075491b1dbd53ab5ebf93d4aee8ba6e80100ac SHA512 3a147677cc026df2f10bdd5d73c6c4c483637c4cd507a521ce604fe385146254c653b29618c774545b1c038f08b7101315110ce7f891d83bff4c79412c6e3c64 +DIST bundler-2.2.17.gem 391168 BLAKE2B df62cde58408482330c3e59a78a70dbed059ee822e7bf54ef218a5df75d25896a87bc07e8e3672d79bd63c5ac41a8607fcee89055f3839dacebaa31e5eefbf51 SHA512 f07158a4de687bd384bdf8e62ccc43dfde4f4454357a7532a248e5fef27ccdaa761b89b77964d21c46930f6eb75ca8ef7f87d8c6386132d2a239233022a8f335 diff --git a/dev-ruby/bundler/bundler-2.2.17.ebuild b/dev-ruby/bundler/bundler-2.2.17.ebuild new file mode 100644 index 000..8256c696086 --- /dev/null +++ b/dev-ruby/bundler/bundler-2.2.17.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +USE_RUBY="ruby25 ruby26 ruby27 ruby30" + +# The specs require a number of gems to be installed in a temporary +# directory, but this requires network access. They also don't work +# when run with a path that contains "-". +RUBY_FAKEGEM_RECIPE_TEST="none" + +# No documentation task +RUBY_FAKEGEM_EXTRADOC="README.md CHANGELOG.md" + +RUBY_FAKEGEM_BINDIR="exe" + +inherit ruby-fakegem + +DESCRIPTION="An easy way to vendor gem dependencies" +HOMEPAGE="https://github.com/carlhuda/bundler"; + +LICENSE="MIT" +SLOT="$(ver_cut 1)" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="+doc test" + +ruby_add_rdepend virtual/rubygems + +RDEPEND+=" dev-vcs/git !
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/shoulda-context/
commit: 20ac5f94df4a36d4dafa1ae580f21967eb3f9ffc Author: Hans de Graaff gentoo org> AuthorDate: Thu May 13 06:02:03 2021 + Commit: Hans de Graaff gentoo org> CommitDate: Thu May 13 06:02:03 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20ac5f94 dev-ruby/shoulda-context: add ruby30 Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Hans de Graaff gentoo.org> .../shoulda-context-1.2.2-r1.ebuild| 35 ++ 1 file changed, 35 insertions(+) diff --git a/dev-ruby/shoulda-context/shoulda-context-1.2.2-r1.ebuild b/dev-ruby/shoulda-context/shoulda-context-1.2.2-r1.ebuild new file mode 100644 index 000..11edf335761 --- /dev/null +++ b/dev-ruby/shoulda-context/shoulda-context-1.2.2-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +USE_RUBY="ruby25 ruby26 ruby27 ruby30" + +RUBY_FAKEGEM_EXTRADOC="CONTRIBUTING.md README.md" + +RUBY_FAKEGEM_EXTRAINSTALL="init.rb rails tasks" + +# Don't install the conversion script to avoid collisions with older +# shoulda. +RUBY_FAKEGEM_BINWRAP="" + +inherit ruby-fakegem + +DESCRIPTION="Context framework extracted from Shoulda" +HOMEPAGE="https://github.com/thoughtbot/shoulda-context"; + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86" +IUSE="doc test" + +ruby_add_bdepend "test? ( dev-ruby/test-unit:2 + 0.10'\n" test/test_helper.rb || die +} + +each_ruby_test() { + BUNDLE_GEMFILE=x ruby-ng_testrb-2 -Itest test/shoulda/*_test.rb || die +}
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/date_validator/
commit: d9361b1475d60f4567db8e0f557d9778e5da8a4a Author: Hans de Graaff gentoo org> AuthorDate: Thu May 13 06:44:18 2021 + Commit: Hans de Graaff gentoo org> CommitDate: Thu May 13 06:44:18 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9361b14 dev-ruby/date_validator: add 0.11.0 Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/date_validator/Manifest | 1 + .../date_validator/date_validator-0.11.0.ebuild| 48 ++ 2 files changed, 49 insertions(+) diff --git a/dev-ruby/date_validator/Manifest b/dev-ruby/date_validator/Manifest index 39e685331cc..da30ccf91b7 100644 --- a/dev-ruby/date_validator/Manifest +++ b/dev-ruby/date_validator/Manifest @@ -1 +1,2 @@ DIST date_validator-0.10.0.gem 12800 BLAKE2B 0cbb11e70cb72a1203c2ec33581d4ed48be346af6998faa89e4323c8c6bf70b5c979b55bc79630153a940697c89ce140eb511538cd55adb0f12566f2f1a317a9 SHA512 4348835898ebfe311a8ea456adc10f7bbfd1dc21daf2678e32b1615ba3eef3d36671f67f533109882f40516c836f23d7e0a4072c9ecaa55a1b0eade0b6aa75b7 +DIST date_validator-0.11.0.gem 12800 BLAKE2B ce45caa57bd1e29900ed0732bdbfbf81c68836de71efbf099bdc595a9b586872175960af40129af6d793ed5ce49ba222a3ca7d0172ef764ee02c88f4eae04e9e SHA512 269f3e234c8157a667c81d725497eafd21621cd35811f35707590242a3dc78065bd6dbe7b772a38761fdb8c95ae40f99976919444dac061f7bd2150fc9178afa diff --git a/dev-ruby/date_validator/date_validator-0.11.0.ebuild b/dev-ruby/date_validator/date_validator-0.11.0.ebuild new file mode 100644 index 000..8d4f4549e48 --- /dev/null +++ b/dev-ruby/date_validator/date_validator-0.11.0.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +USE_RUBY="ruby25 ruby26 ruby27" + +RUBY_FAKEGEM_TASK_TEST="test" + +RUBY_FAKEGEM_TASK_DOC="docs" +RUBY_FAKEGEM_EXTRADOC="Readme.md" + +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" + +# if ever needed +#GITHUB_USER="codegram" +#GITHUB_PROJECT="${PN}" +#RUBY_S="${GITHUB_USER}-${GITHUB_PROJECT}-*" + +inherit ruby-fakegem + +DESCRIPTION="Simple, ORM agnostic, Ruby 1.9 compatible date validator for Rails" +HOMEPAGE="https://github.com/codegram/date_validator"; + +LICENSE="MIT" +SLOT="3" +KEYWORDS="~amd64" +IUSE="" + +ruby_add_rdepend ">=dev-ruby/activemodel-3.0:* +" + +ruby_add_bdepend " + test? ( + dev-ruby/minitest + >=dev-ruby/tzinfo-0.3 + >=dev-ruby/activesupport-3.0 + ) + doc? ( dev-ruby/yard )" + +all_ruby_prepare() { + sed -i \ + -e '/git ls-files/d' \ + ${RUBY_FAKEGEM_GEMSPEC} || die + sed -i \ + -e '/[Bb]undler/s/^/#/' Rakefile || die + # Fix tests + sed -i -e "1irequire 'active_support'; require 'active_support/core_ext/time/zones'" test/test_helper.rb || die +}
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/hashdiff/
commit: 59e0d082589298d73e886cc9fc65ed9c8641dd43 Author: Hans de Graaff gentoo org> AuthorDate: Thu May 13 05:53:44 2021 + Commit: Hans de Graaff gentoo org> CommitDate: Thu May 13 05:53:44 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59e0d082 dev-ruby/hashdiff: add ruby30 Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/hashdiff/hashdiff-1.0.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-ruby/hashdiff/hashdiff-1.0.1.ebuild b/dev-ruby/hashdiff/hashdiff-1.0.1.ebuild index 74127fee8a7..f9d59721cb1 100644 --- a/dev-ruby/hashdiff/hashdiff-1.0.1.ebuild +++ b/dev-ruby/hashdiff/hashdiff-1.0.1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -USE_RUBY="ruby24 ruby25 ruby26 ruby27" +USE_RUBY="ruby25 ruby26 ruby27 ruby30" RUBY_FAKEGEM_RECIPE_TEST="rspec3"
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/hashdiff/
commit: 45de6f3c56d34985a8e94c89083f230a40fd3e4b Author: Hans de Graaff gentoo org> AuthorDate: Thu May 13 05:58:46 2021 + Commit: Hans de Graaff gentoo org> CommitDate: Thu May 13 05:58:46 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45de6f3c dev-ruby/hashdiff: amd64 stable Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/hashdiff/hashdiff-1.0.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-ruby/hashdiff/hashdiff-1.0.1.ebuild b/dev-ruby/hashdiff/hashdiff-1.0.1.ebuild index f9d59721cb1..4021e169822 100644 --- a/dev-ruby/hashdiff/hashdiff-1.0.1.ebuild +++ b/dev-ruby/hashdiff/hashdiff-1.0.1.ebuild @@ -16,7 +16,7 @@ HOMEPAGE="https://github.com/liufengyun/hashdiff"; LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris" +KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris" IUSE="" all_ruby_prepare() {
[gentoo-commits] repo/proj/guru:master commit in: net-misc/tinyssh/
commit: 837e98bcf50fee35bf2f4d5769f05b41cd168cb2 Author: Haelwenn (lanodan) Monnier hacktivis me> AuthorDate: Wed May 12 18:43:47 2021 + Commit: Andrew Ammerlaan riseup net> CommitDate: Wed May 12 18:43:47 2021 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=837e98bc net-misc/tinyssh: Add live ebuild Signed-off-by: Haelwenn (lanodan) Monnier hacktivis.me> net-misc/tinyssh/tinyssh-20210319.ebuild | 9 +++-- .../tinyssh/{tinyssh-20210319.ebuild => tinyssh-.ebuild} | 9 +++-- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/net-misc/tinyssh/tinyssh-20210319.ebuild b/net-misc/tinyssh/tinyssh-20210319.ebuild index 1fccc0e22..113721602 100644 --- a/net-misc/tinyssh/tinyssh-20210319.ebuild +++ b/net-misc/tinyssh/tinyssh-20210319.ebuild @@ -7,11 +7,16 @@ inherit systemd DESCRIPTION="A small SSH server with state-of-the-art cryptography" HOMEPAGE="https://tinyssh.org"; -SRC_URI="https://github.com/janmojzis/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +if [[ "${PV}" == "" ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/janmojzis/tinyssh.git"; +else + SRC_URI="https://github.com/janmojzis/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi LICENSE="public-domain" SLOT="0" -KEYWORDS="~amd64 ~x86" IUSE="+sodium" diff --git a/net-misc/tinyssh/tinyssh-20210319.ebuild b/net-misc/tinyssh/tinyssh-.ebuild similarity index 86% copy from net-misc/tinyssh/tinyssh-20210319.ebuild copy to net-misc/tinyssh/tinyssh-.ebuild index 1fccc0e22..48d90965d 100644 --- a/net-misc/tinyssh/tinyssh-20210319.ebuild +++ b/net-misc/tinyssh/tinyssh-.ebuild @@ -7,11 +7,16 @@ inherit systemd DESCRIPTION="A small SSH server with state-of-the-art cryptography" HOMEPAGE="https://tinyssh.org"; -SRC_URI="https://github.com/janmojzis/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +if [[ "${PV}" == "" ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/janmojzis/tinyssh.git"; +else + SRC_URI="https://github.com/janmojzis/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi LICENSE="public-domain" SLOT="0" -KEYWORDS="~amd64 ~x86" IUSE="+sodium"
[gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/vexcl/
commit: 5b1a9372269140b8c5da5da8019f708e213fb868 Author: Andrew Ammerlaan riseup net> AuthorDate: Thu May 13 06:39:53 2021 + Commit: Andrew Ammerlaan riseup net> CommitDate: Thu May 13 06:39:53 2021 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5b1a9372 dev-cpp/vexcl: fix indentation, whitspace -> tab Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Andrew Ammerlaan riseup.net> dev-cpp/vexcl/vexcl-1.4.2-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-cpp/vexcl/vexcl-1.4.2-r1.ebuild b/dev-cpp/vexcl/vexcl-1.4.2-r1.ebuild index 4385b24d4..a2599bbb7 100644 --- a/dev-cpp/vexcl/vexcl-1.4.2-r1.ebuild +++ b/dev-cpp/vexcl/vexcl-1.4.2-r1.ebuild @@ -58,7 +58,7 @@ src_configure() { src_compile() { cmake_src_compile -docs_compile + docs_compile } src_install() {
[gentoo-commits] repo/proj/guru:dev commit in: net-im/rocketchat-desktop-bin/
commit: badb3a0ded8b0717579e1fd5eb33ec2184655340 Author: Andrew Ammerlaan riseup net> AuthorDate: Thu May 13 06:37:47 2021 + Commit: Andrew Ammerlaan riseup net> CommitDate: Thu May 13 06:37:47 2021 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=badb3a0d net-im/rocketchat-desktop-bin: version bump 3.2.0 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Andrew Ammerlaan riseup.net> net-im/rocketchat-desktop-bin/Manifest | 2 +- ...hat-desktop-bin-3.1.1.ebuild => rocketchat-desktop-bin-3.2.0.ebuild} | 0 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/net-im/rocketchat-desktop-bin/Manifest b/net-im/rocketchat-desktop-bin/Manifest index 39341e3f7..942892449 100644 --- a/net-im/rocketchat-desktop-bin/Manifest +++ b/net-im/rocketchat-desktop-bin/Manifest @@ -1 +1 @@ -DIST rocketchat-3.1.1.x86_64.rpm 55360392 BLAKE2B 6384297c1707c549d9a8a26662a610b7fd9c168886b65ebe875eee15553c600be1f322716284011ccc8f6db70d489feea8ae3b7934651315968caccf4e871c1a SHA512 685e64b1c023baf69b1689aac83ebbfd990a0ae35b3c7b3447058595c04a7d845074d845f33dac698d59506069d05aead03b117039782c7703954b324be3cbf2 +DIST rocketchat-3.2.0.x86_64.rpm 55347176 BLAKE2B 69f5dc15a61029aee97638dbde40ede5fd860f8ef51dc40bec09b142f31d2b5ab2d1ca81604ce909327888174a5f549775d4f7a03e55d9a3251004c4164f9a1e SHA512 7d5827c5f8822ab7c1966e5938801de8a8ef73d49f594647294cdb69e0ea37315ed6277830aa1680442577157d705455e1b832b04d7d7a821bdd4e5810598e0d diff --git a/net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.1.1.ebuild b/net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.2.0.ebuild similarity index 100% rename from net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.1.1.ebuild rename to net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.2.0.ebuild
[gentoo-commits] proj/musl:master commit in: sys-process/procps/
commit: ec45820b7f97962cf5025cbac761a7afc8f542ac Author: Georgy Yakovlev gentoo org> AuthorDate: Thu May 13 05:02:55 2021 + Commit: Georgy Yakovlev gentoo org> CommitDate: Thu May 13 05:03:40 2021 + URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=ec45820b sys-process/procps: stabilize on ppc64 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Georgy Yakovlev gentoo.org> sys-process/procps/procps-3.3.17.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-process/procps/procps-3.3.17.ebuild b/sys-process/procps/procps-3.3.17.ebuild index eb286fa..a557248 100644 --- a/sys-process/procps/procps-3.3.17.ebuild +++ b/sys-process/procps/procps-3.3.17.ebuild @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}-ng/${PN}-ng-${PV}.tar.xz" LICENSE="GPL-2" SLOT="0/8" # libprocps.so -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux" IUSE="elogind +kill modern-top +ncurses nls selinux static-libs systemd test unicode" RESTRICT="!test? ( test )"
[gentoo-commits] repo/gentoo:master commit in: xfce-base/thunar/
commit: b0db163a0a5ac7d6613c3ea5680c5de1053b362c Author: Sam James gentoo org> AuthorDate: Thu May 13 04:34:53 2021 + Commit: Sam James gentoo org> CommitDate: Thu May 13 04:34:53 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0db163a xfce-base/thunar: Stabilize 4.16.8 ppc, #789396 Signed-off-by: Sam James gentoo.org> xfce-base/thunar/thunar-4.16.8.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xfce-base/thunar/thunar-4.16.8.ebuild b/xfce-base/thunar/thunar-4.16.8.ebuild index 6e782b87d60..7b2746cbc09 100644 --- a/xfce-base/thunar/thunar-4.16.8.ebuild +++ b/xfce-base/thunar/thunar-4.16.8.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"; LICENSE="GPL-2+ LGPL-2+" SLOT="0/3" -KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris" +KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~mips ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris" IUSE="exif introspection libnotify pcre +trash-panel-plugin udisks" GVFS_DEPEND=">=gnome-base/gvfs-1.18.3"
[gentoo-commits] repo/gentoo:master commit in: xfce-base/thunar/
commit: ffb753547a88a5ab7d7fda55576f8b7cab3a4c01 Author: Sam James gentoo org> AuthorDate: Thu May 13 04:35:01 2021 + Commit: Sam James gentoo org> CommitDate: Thu May 13 04:35:01 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffb75354 xfce-base/thunar: Stabilize 4.16.8 ppc64, #789396 Signed-off-by: Sam James gentoo.org> xfce-base/thunar/thunar-4.16.8.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xfce-base/thunar/thunar-4.16.8.ebuild b/xfce-base/thunar/thunar-4.16.8.ebuild index 7b2746cbc09..25406e337a9 100644 --- a/xfce-base/thunar/thunar-4.16.8.ebuild +++ b/xfce-base/thunar/thunar-4.16.8.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"; LICENSE="GPL-2+ LGPL-2+" SLOT="0/3" -KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~mips ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris" +KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris" IUSE="exif introspection libnotify pcre +trash-panel-plugin udisks" GVFS_DEPEND=">=gnome-base/gvfs-1.18.3"
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-OpenSSL-Guess/
commit: fbea2db2fc370954c356695462557d821956c292 Author: Sam James gentoo org> AuthorDate: Thu May 13 04:35:04 2021 + Commit: Sam James gentoo org> CommitDate: Thu May 13 04:35:04 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbea2db2 dev-perl/Crypt-OpenSSL-Guess: Stabilize 0.110.0 ppc64, #789549 Signed-off-by: Sam James gentoo.org> dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild b/dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild index ce6913f1923..d3ad4a97268 100644 --- a/dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild +++ b/dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild @@ -9,7 +9,7 @@ inherit perl-module DESCRIPTION="Guess OpenSSL include path" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv ~s390 sparc x86 ~x64-macos" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos" IUSE="test" RESTRICT="!test? ( test )"
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-OpenSSL-Guess/
commit: 4e24403fd62a8c225bdcd471340daa735f82ebcb Author: Sam James gentoo org> AuthorDate: Thu May 13 04:34:57 2021 + Commit: Sam James gentoo org> CommitDate: Thu May 13 04:34:57 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e24403f dev-perl/Crypt-OpenSSL-Guess: Stabilize 0.110.0 ppc, #789549 Signed-off-by: Sam James gentoo.org> dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild b/dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild index 1512af7e6a2..ce6913f1923 100644 --- a/dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild +++ b/dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild @@ -9,7 +9,7 @@ inherit perl-module DESCRIPTION="Guess OpenSSL include path" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86 ~x64-macos" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv ~s390 sparc x86 ~x64-macos" IUSE="test" RESTRICT="!test? ( test )"
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-OpenSSL-Guess/
commit: 812bca4c083c6e788026c19acbd78467b794a349 Author: Sam James gentoo org> AuthorDate: Thu May 13 04:34:46 2021 + Commit: Sam James gentoo org> CommitDate: Thu May 13 04:34:46 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=812bca4c dev-perl/Crypt-OpenSSL-Guess: Stabilize 0.110.0 sparc, #789549 Signed-off-by: Sam James gentoo.org> dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild b/dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild index 8c2163ea351..1512af7e6a2 100644 --- a/dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild +++ b/dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild @@ -9,7 +9,7 @@ inherit perl-module DESCRIPTION="Guess OpenSSL include path" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86 ~x64-macos" IUSE="test" RESTRICT="!test? ( test )"
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Curses/
commit: f27d1baceba407d407380d72a4cc65eb39681224 Author: Sam James gentoo org> AuthorDate: Thu May 13 04:34:50 2021 + Commit: Sam James gentoo org> CommitDate: Thu May 13 04:34:50 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f27d1bac dev-perl/Curses: Stabilize 1.370.0 sparc, #789744 Signed-off-by: Sam James gentoo.org> dev-perl/Curses/Curses-1.370.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-perl/Curses/Curses-1.370.0.ebuild b/dev-perl/Curses/Curses-1.370.0.ebuild index 2de0ffd57b0..1249849a01d 100644 --- a/dev-perl/Curses/Curses-1.370.0.ebuild +++ b/dev-perl/Curses/Curses-1.370.0.ebuild @@ -11,7 +11,7 @@ inherit perl-module DESCRIPTION="Curses interface modules for Perl" SLOT="0" -KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~sparc-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 sparc ~x86 ~sparc-solaris ~x86-solaris" IUSE="+unicode test" RESTRICT="!test? ( test )"
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-OpenSSL-Guess/
commit: 0c798115b07f6372a48638f78f26d411e887e57f Author: Sam James gentoo org> AuthorDate: Thu May 13 04:34:27 2021 + Commit: Sam James gentoo org> CommitDate: Thu May 13 04:34:27 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c798115 dev-perl/Crypt-OpenSSL-Guess: Stabilize 0.110.0 arm, #789549 Signed-off-by: Sam James gentoo.org> dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild b/dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild index 299cb1e1f97..8c2163ea351 100644 --- a/dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild +++ b/dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild @@ -9,7 +9,7 @@ inherit perl-module DESCRIPTION="Guess OpenSSL include path" SLOT="0" -KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos" IUSE="test" RESTRICT="!test? ( test )"
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Curses/
commit: 461c0d8272815c3134ee6f3a67c4925400456ef2 Author: Sam James gentoo org> AuthorDate: Thu May 13 04:34:43 2021 + Commit: Sam James gentoo org> CommitDate: Thu May 13 04:34:43 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=461c0d82 dev-perl/Curses: Stabilize 1.370.0 arm, #789744 Signed-off-by: Sam James gentoo.org> dev-perl/Curses/Curses-1.370.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-perl/Curses/Curses-1.370.0.ebuild b/dev-perl/Curses/Curses-1.370.0.ebuild index a0b0c901329..2de0ffd57b0 100644 --- a/dev-perl/Curses/Curses-1.370.0.ebuild +++ b/dev-perl/Curses/Curses-1.370.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -11,7 +11,7 @@ inherit perl-module DESCRIPTION="Curses interface modules for Perl" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~sparc-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~sparc-solaris ~x86-solaris" IUSE="+unicode test" RESTRICT="!test? ( test )"
[gentoo-commits] repo/gentoo:master commit in: xfce-base/thunar/
commit: efc0f03c9060a6e67d653b81ef56011b746b2d6b Author: Sam James gentoo org> AuthorDate: Thu May 13 04:34:20 2021 + Commit: Sam James gentoo org> CommitDate: Thu May 13 04:34:20 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efc0f03c xfce-base/thunar: Stabilize 4.16.8 arm, #789396 Signed-off-by: Sam James gentoo.org> xfce-base/thunar/thunar-4.16.8.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xfce-base/thunar/thunar-4.16.8.ebuild b/xfce-base/thunar/thunar-4.16.8.ebuild index e7cb3a8ab00..6e782b87d60 100644 --- a/xfce-base/thunar/thunar-4.16.8.ebuild +++ b/xfce-base/thunar/thunar-4.16.8.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"; LICENSE="GPL-2+ LGPL-2+" SLOT="0/3" -KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris" +KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris" IUSE="exif introspection libnotify pcre +trash-panel-plugin udisks" GVFS_DEPEND=">=gnome-base/gvfs-1.18.3"
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-OpenSSL-Guess/
commit: 43632862259b0b5a132f4bf544a94ba8531e4b09 Author: Sam James gentoo org> AuthorDate: Thu May 13 04:34:05 2021 + Commit: Sam James gentoo org> CommitDate: Thu May 13 04:34:05 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43632862 dev-perl/Crypt-OpenSSL-Guess: Stabilize 0.110.0 arm64, #789549 Signed-off-by: Sam James gentoo.org> dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild b/dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild index 4820a623428..299cb1e1f97 100644 --- a/dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild +++ b/dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild @@ -9,7 +9,7 @@ inherit perl-module DESCRIPTION="Guess OpenSSL include path" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos" +KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos" IUSE="test" RESTRICT="!test? ( test )"
[gentoo-commits] repo/gentoo:master commit in: xfce-base/thunar/
commit: 8292661e5217c8daaf790801e95d682a36b11d94 Author: Sam James gentoo org> AuthorDate: Thu May 13 04:33:59 2021 + Commit: Sam James gentoo org> CommitDate: Thu May 13 04:33:59 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8292661e xfce-base/thunar: Stabilize 4.16.8 arm64, #789396 Signed-off-by: Sam James gentoo.org> xfce-base/thunar/thunar-4.16.8.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xfce-base/thunar/thunar-4.16.8.ebuild b/xfce-base/thunar/thunar-4.16.8.ebuild index 7bb270a0e16..e7cb3a8ab00 100644 --- a/xfce-base/thunar/thunar-4.16.8.ebuild +++ b/xfce-base/thunar/thunar-4.16.8.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"; LICENSE="GPL-2+ LGPL-2+" SLOT="0/3" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris" +KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris" IUSE="exif introspection libnotify pcre +trash-panel-plugin udisks" GVFS_DEPEND=">=gnome-base/gvfs-1.18.3"
[gentoo-commits] repo/gentoo:master commit in: net-misc/asterisk/
commit: b61e3f30199e22c98c373043affd426a4a823cba Author: Sam James gentoo org> AuthorDate: Thu May 13 04:31:57 2021 + Commit: Sam James gentoo org> CommitDate: Thu May 13 04:31:57 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b61e3f30 net-misc/asterisk: Stabilize 13.38.2-r2 amd64, #789453 Signed-off-by: Sam James gentoo.org> net-misc/asterisk/asterisk-13.38.2-r2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/asterisk/asterisk-13.38.2-r2.ebuild b/net-misc/asterisk/asterisk-13.38.2-r2.ebuild index c3e600ff0f7..623c8dfd0f2 100644 --- a/net-misc/asterisk/asterisk-13.38.2-r2.ebuild +++ b/net-misc/asterisk/asterisk-13.38.2-r2.ebuild @@ -12,7 +12,7 @@ HOMEPAGE="https://www.asterisk.org/"; SRC_URI="https://downloads.asterisk.org/pub/telephony/asterisk/releases/${P}.tar.gz"; LICENSE="GPL-2" SLOT="0/${PV%%.*}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 x86" +KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86" IUSE_VOICEMAIL_STORAGE=( +voicemail_storage_file
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-OpenSSL-Guess/
commit: 0f0cd8f8848836a870e2dca0a423fc33da0f7839 Author: Sam James gentoo org> AuthorDate: Thu May 13 04:31:47 2021 + Commit: Sam James gentoo org> CommitDate: Thu May 13 04:31:47 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f0cd8f8 dev-perl/Crypt-OpenSSL-Guess: Stabilize 0.110.0 amd64, #789549 Signed-off-by: Sam James gentoo.org> dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild b/dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild index 5794b852290..4820a623428 100644 --- a/dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild +++ b/dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild @@ -9,7 +9,7 @@ inherit perl-module DESCRIPTION="Guess OpenSSL include path" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos" IUSE="test" RESTRICT="!test? ( test )"
[gentoo-commits] repo/gentoo:master commit in: xfce-base/thunar/
commit: d029fbb56dcc8f2dc09e9b2816551cbd59dede10 Author: Sam James gentoo org> AuthorDate: Thu May 13 04:31:43 2021 + Commit: Sam James gentoo org> CommitDate: Thu May 13 04:31:43 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d029fbb5 xfce-base/thunar: Stabilize 4.16.8 amd64, #789396 Signed-off-by: Sam James gentoo.org> xfce-base/thunar/thunar-4.16.8.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xfce-base/thunar/thunar-4.16.8.ebuild b/xfce-base/thunar/thunar-4.16.8.ebuild index e48927db783..7bb270a0e16 100644 --- a/xfce-base/thunar/thunar-4.16.8.ebuild +++ b/xfce-base/thunar/thunar-4.16.8.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"; LICENSE="GPL-2+ LGPL-2+" SLOT="0/3" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris" IUSE="exif introspection libnotify pcre +trash-panel-plugin udisks" GVFS_DEPEND=">=gnome-base/gvfs-1.18.3"
[gentoo-commits] repo/gentoo:master commit in: xfce-base/thunar/
commit: f506599ca1c77b76f2d8b8c93418dbd5281dae5d Author: Sam James gentoo org> AuthorDate: Thu May 13 04:30:46 2021 + Commit: Sam James gentoo org> CommitDate: Thu May 13 04:30:46 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f506599c xfce-base/thunar: Stabilize 4.16.8 x86, #789396 Signed-off-by: Sam James gentoo.org> xfce-base/thunar/thunar-4.16.8.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xfce-base/thunar/thunar-4.16.8.ebuild b/xfce-base/thunar/thunar-4.16.8.ebuild index a50b1046a41..e48927db783 100644 --- a/xfce-base/thunar/thunar-4.16.8.ebuild +++ b/xfce-base/thunar/thunar-4.16.8.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"; LICENSE="GPL-2+ LGPL-2+" SLOT="0/3" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris" IUSE="exif introspection libnotify pcre +trash-panel-plugin udisks" GVFS_DEPEND=">=gnome-base/gvfs-1.18.3"
[gentoo-commits] repo/gentoo:master commit in: net-misc/asterisk/
commit: bf5ab0a850a970b868e964e7745532b4564ee4b8 Author: Sam James gentoo org> AuthorDate: Thu May 13 04:31:02 2021 + Commit: Sam James gentoo org> CommitDate: Thu May 13 04:31:02 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf5ab0a8 net-misc/asterisk: Stabilize 13.38.2-r2 x86, #789453 Signed-off-by: Sam James gentoo.org> net-misc/asterisk/asterisk-13.38.2-r2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/asterisk/asterisk-13.38.2-r2.ebuild b/net-misc/asterisk/asterisk-13.38.2-r2.ebuild index 44754c3a017..c3e600ff0f7 100644 --- a/net-misc/asterisk/asterisk-13.38.2-r2.ebuild +++ b/net-misc/asterisk/asterisk-13.38.2-r2.ebuild @@ -12,7 +12,7 @@ HOMEPAGE="https://www.asterisk.org/"; SRC_URI="https://downloads.asterisk.org/pub/telephony/asterisk/releases/${P}.tar.gz"; LICENSE="GPL-2" SLOT="0/${PV%%.*}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 x86" IUSE_VOICEMAIL_STORAGE=( +voicemail_storage_file
[gentoo-commits] repo/gentoo:master commit in: x11-themes/papirus-icon-theme/
commit: 987da5656828b28bd713ba71a1bf3dcda65bb4ea Author: Sam James gentoo org> AuthorDate: Thu May 13 04:31:08 2021 + Commit: Sam James gentoo org> CommitDate: Thu May 13 04:31:08 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=987da565 x11-themes/papirus-icon-theme: Stabilize 20210401 ALLARCHES, #789564 Signed-off-by: Sam James gentoo.org> x11-themes/papirus-icon-theme/papirus-icon-theme-20210401.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x11-themes/papirus-icon-theme/papirus-icon-theme-20210401.ebuild b/x11-themes/papirus-icon-theme/papirus-icon-theme-20210401.ebuild index cdc7ac94819..79c7a6099fa 100644 --- a/x11-themes/papirus-icon-theme/papirus-icon-theme-20210401.ebuild +++ b/x11-themes/papirus-icon-theme/papirus-icon-theme-20210401.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/PapirusDevelopmentTeam/papirus-icon-theme/archive/${ LICENSE="GPL-3" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" src_compile() { :; }
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-OpenSSL-Guess/
commit: 2cb34604770eeb054ec01eb3b668150d8db840d0 Author: Sam James gentoo org> AuthorDate: Thu May 13 04:30:50 2021 + Commit: Sam James gentoo org> CommitDate: Thu May 13 04:30:50 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cb34604 dev-perl/Crypt-OpenSSL-Guess: Stabilize 0.110.0 x86, #789549 Signed-off-by: Sam James gentoo.org> dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild b/dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild index 3811f548979..5794b852290 100644 --- a/dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild +++ b/dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild @@ -9,7 +9,7 @@ inherit perl-module DESCRIPTION="Guess OpenSSL include path" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos" IUSE="test" RESTRICT="!test? ( test )"
[gentoo-commits] proj/releng:master commit in: releases/specs/ppc/ppc64/, releases/specs/ppc/ppc64le/
commit: dffd2cc2b4a4786af311bfb32bb35951c61dedea Author: Georgy Yakovlev gentoo org> AuthorDate: Thu May 13 03:37:51 2021 + Commit: Georgy Yakovlev gentoo org> CommitDate: Thu May 13 03:37:51 2021 + URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=dffd2cc2 releases/specs/ppc: use repos instead of portage_overlay for musl specs config knob changed in 25a7af61391e3fa8af77beec26c95b03175342d9 Signed-off-by: Georgy Yakovlev gentoo.org> releases/specs/ppc/ppc64/musl-hardened-stage1.spec | 2 +- releases/specs/ppc/ppc64/musl-hardened-stage3.spec | 2 +- releases/specs/ppc/ppc64le/musl-hardened-stage1.spec | 2 +- releases/specs/ppc/ppc64le/musl-hardened-stage3.spec | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/releases/specs/ppc/ppc64/musl-hardened-stage1.spec b/releases/specs/ppc/ppc64/musl-hardened-stage1.spec index de2bd63f..ca213ebb 100644 --- a/releases/specs/ppc/ppc64/musl-hardened-stage1.spec +++ b/releases/specs/ppc/ppc64/musl-hardened-stage1.spec @@ -11,4 +11,4 @@ update_seed: yes update_seed_command: --update --deep --newuse @world --jobs 5 --load-average 5 portage_confdir: @REPO_DIR@/releases/portage/stages portage_prefix: releng -portage_overlay: /var/db/repos/musl +repos: /var/db/repos/musl diff --git a/releases/specs/ppc/ppc64/musl-hardened-stage3.spec b/releases/specs/ppc/ppc64/musl-hardened-stage3.spec index b7bd7b79..8e90a0b4 100644 --- a/releases/specs/ppc/ppc64/musl-hardened-stage3.spec +++ b/releases/specs/ppc/ppc64/musl-hardened-stage3.spec @@ -8,4 +8,4 @@ source_subpath: musl-hardened/stage1-ppc64-musl-hardened-@TIMESTAMP@ compression_mode: pixz_x portage_confdir: @REPO_DIR@/releases/portage/stages portage_prefix: releng -portage_overlay: /var/db/repos/musl +repos: /var/db/repos/musl diff --git a/releases/specs/ppc/ppc64le/musl-hardened-stage1.spec b/releases/specs/ppc/ppc64le/musl-hardened-stage1.spec index 10a29c93..fea71ba7 100644 --- a/releases/specs/ppc/ppc64le/musl-hardened-stage1.spec +++ b/releases/specs/ppc/ppc64le/musl-hardened-stage1.spec @@ -11,4 +11,4 @@ update_seed: yes update_seed_command: --update --deep --newuse @world --jobs 5 --load-average 5 portage_confdir: @REPO_DIR@/releases/portage/stages portage_prefix: releng -portage_overlay: /var/db/repos/musl +repos: /var/db/repos/musl diff --git a/releases/specs/ppc/ppc64le/musl-hardened-stage3.spec b/releases/specs/ppc/ppc64le/musl-hardened-stage3.spec index cbbe9d27..da721a6c 100644 --- a/releases/specs/ppc/ppc64le/musl-hardened-stage3.spec +++ b/releases/specs/ppc/ppc64le/musl-hardened-stage3.spec @@ -8,4 +8,4 @@ source_subpath: musl-hardened/stage1-ppc64le-musl-hardened-@TIMESTAMP@ compression_mode: pixz_x portage_confdir: @REPO_DIR@/releases/portage/stages portage_prefix: releng -portage_overlay: /var/db/repos/musl +repos: /var/db/repos/musl
[gentoo-commits] proj/releng:master commit in: tools/
commit: 23d5c9acbf66227bfbb40a989b19922ef4f82d41 Author: Georgy Yakovlev gentoo org> AuthorDate: Wed May 12 23:48:01 2021 + Commit: Georgy Yakovlev gentoo org> CommitDate: Wed May 12 23:48:01 2021 + URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=23d5c9ac tools: adjust ppc basedir don't cd into default, prepend default/ to each file. Signed-off-by: Georgy Yakovlev gentoo.org> tools/catalyst-auto-ppc.conf | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/catalyst-auto-ppc.conf b/tools/catalyst-auto-ppc.conf index dd9904dd..40ddd149 100644 --- a/tools/catalyst-auto-ppc.conf +++ b/tools/catalyst-auto-ppc.conf @@ -36,17 +36,17 @@ update_symlinks() { post_build() { local set=$1 spec=$2 - pushd "${BUILD_SRCDIR_BASE}/builds/default" >/dev/null + pushd "${BUILD_SRCDIR_BASE}/builds" >/dev/null case ${spec} in ppc32/installcd-stage2-minimal.spec) - upload *${TIMESTAMP}*.iso* + upload default/*${TIMESTAMP}*.iso* ;; ppc32/stage3.spec) - upload stage3-ppc-*${TIMESTAMP}*.xz* + upload default/stage3-ppc-*${TIMESTAMP}*.xz* ;; ppc64/stage3.spec) - upload stage3-ppc64-*${TIMESTAMP}*.xz* + upload default/stage3-ppc64-*${TIMESTAMP}*.xz* ;; *) echo "Finished ${spec}"
[gentoo-commits] proj/releng:master commit in: tools/
commit: 9740ac8c55c4755bc1328998db50dd3d24be91ca Author: Georgy Yakovlev gentoo org> AuthorDate: Wed May 12 23:55:07 2021 + Commit: Georgy Yakovlev gentoo org> CommitDate: Wed May 12 23:56:15 2021 + URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=9740ac8c tools/catalyst-auto-ppc.conf: optionally build musl specs, disabled until tested Signed-off-by: Georgy Yakovlev gentoo.org> tools/catalyst-auto-ppc.conf | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tools/catalyst-auto-ppc.conf b/tools/catalyst-auto-ppc.conf index 40ddd149..0fbc89c8 100644 --- a/tools/catalyst-auto-ppc.conf +++ b/tools/catalyst-auto-ppc.conf @@ -11,7 +11,8 @@ SPECS="ppc32/stage1.spec ppc32/stage3.spec ppc64/stage1.spec ppc64/stage3.spec" #SPECS="${SPECS} livecd-stage1.spec livecd-stage2.spec" OPTIONAL_SPECS="ppc32/installcd-stage1.spec ppc32/installcd-stage2-minimal.spec" - +#OPTIONAL_SPECS="${OPTIONAL_SPECS} ppc64/musl-hardened-stage1.spec ppc64/musl-hardened-stage3.spec" + KCONFIG_DIR=${REPO_DIR}/releases/kconfig/powerpc EMAIL_SUBJECT_PREPEND="[ppc-auto]" @@ -48,6 +49,9 @@ post_build() { ppc64/stage3.spec) upload default/stage3-ppc64-*${TIMESTAMP}*.xz* ;; + ppc64/musl-hardened-stage3*.spec) + upload musl-hardened/stage3-ppc64-musl-hardened-${TIMESTAMP}*.xz* + ;; *) echo "Finished ${spec}" ;;
[gentoo-commits] proj/releng:master commit in: releases/specs/ppc/ppc64/
commit: 756f1240a44cd5fcf0610b50a1139018f8fc9be2 Author: Georgy Yakovlev gentoo org> AuthorDate: Wed May 12 23:42:22 2021 + Commit: Georgy Yakovlev gentoo org> CommitDate: Wed May 12 23:42:22 2021 + URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=756f1240 specs/ppc/ppc64: add musl-hardened specs Signed-off-by: Georgy Yakovlev gentoo.org> releases/specs/ppc/ppc64/musl-hardened-stage1.spec | 14 ++ releases/specs/ppc/ppc64/musl-hardened-stage3.spec | 11 +++ 2 files changed, 25 insertions(+) diff --git a/releases/specs/ppc/ppc64/musl-hardened-stage1.spec b/releases/specs/ppc/ppc64/musl-hardened-stage1.spec new file mode 100644 index ..de2bd63f --- /dev/null +++ b/releases/specs/ppc/ppc64/musl-hardened-stage1.spec @@ -0,0 +1,14 @@ +subarch: ppc64 +target: stage1 +version_stamp: musl-hardened-@TIMESTAMP@ +rel_type: musl-hardened +profile: default/linux/ppc64/17.0/musl/hardened +snapshot: @TIMESTAMP@ +source_subpath: musl-hardened/stage3-ppc64-musl-hardened-latest +chost: powerpc64-gentoo-linux-musl +compression_mode: pixz_x +update_seed: yes +update_seed_command: --update --deep --newuse @world --jobs 5 --load-average 5 +portage_confdir: @REPO_DIR@/releases/portage/stages +portage_prefix: releng +portage_overlay: /var/db/repos/musl diff --git a/releases/specs/ppc/ppc64/musl-hardened-stage3.spec b/releases/specs/ppc/ppc64/musl-hardened-stage3.spec new file mode 100644 index ..b7bd7b79 --- /dev/null +++ b/releases/specs/ppc/ppc64/musl-hardened-stage3.spec @@ -0,0 +1,11 @@ +subarch: ppc64 +target: stage3 +version_stamp: musl-hardened-@TIMESTAMP@ +rel_type: musl-hardened +profile: default/linux/ppc64/17.0/musl/hardened +snapshot: @TIMESTAMP@ +source_subpath: musl-hardened/stage1-ppc64-musl-hardened-@TIMESTAMP@ +compression_mode: pixz_x +portage_confdir: @REPO_DIR@/releases/portage/stages +portage_prefix: releng +portage_overlay: /var/db/repos/musl
[gentoo-commits] repo/gentoo:master commit in: kde-plasma/discover/files/
commit: ee66a096b8fc66455af02ba5f2f14abf0e2501e1 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu May 13 01:48:14 2021 + Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu May 13 01:48:40 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee66a096 kde-plasma/discover: Restore missing patch Closes: https://bugs.gentoo.org/789768 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> .../files/discover-5.21.4-missing-link.patch | 49 ++ 1 file changed, 49 insertions(+) diff --git a/kde-plasma/discover/files/discover-5.21.4-missing-link.patch b/kde-plasma/discover/files/discover-5.21.4-missing-link.patch new file mode 100644 index 000..c8c8b152ea7 --- /dev/null +++ b/kde-plasma/discover/files/discover-5.21.4-missing-link.patch @@ -0,0 +1,49 @@ +From 3c578beeb5d3748d9fdacae4ace42fe6098d9184 Mon Sep 17 00:00:00 2001 +From: Andreas Sturmlechner +Date: Sun, 25 Apr 2021 00:26:12 +0200 +Subject: [PATCH] Add missing Qt5Concurrent to target_link_libraries + +This was working as long as it was implicitly provided by KIO. +Other backends are fine. + +Fixes: +- DiscoverCommon w/ AppStreamQt +- packagekit-backend + +See also: https://invent.kde.org/frameworks/kio/-/merge_requests/426 + +Signed-off-by: Andreas Sturmlechner +--- + libdiscover/CMakeLists.txt| 2 +- + libdiscover/backends/PackageKitBackend/CMakeLists.txt | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/libdiscover/CMakeLists.txt b/libdiscover/CMakeLists.txt +index 1097ea84..3e2a6c9c 100644 +--- a/libdiscover/CMakeLists.txt b/libdiscover/CMakeLists.txt +@@ -48,7 +48,7 @@ if(TARGET AppStreamQt) + appstream/AppStreamIntegration.cpp + appstream/AppStreamUtils.cpp + ) +-target_link_libraries(DiscoverCommon PRIVATE AppStreamQt) ++target_link_libraries(DiscoverCommon PRIVATE Qt5::Concurrent AppStreamQt) + + if(AppStreamQt_VERSION VERSION_GREATER 0.12.4) + target_compile_definitions(DiscoverCommon PRIVATE -DAPPSTREAM_HAS_SPDX=1) +diff --git a/libdiscover/backends/PackageKitBackend/CMakeLists.txt b/libdiscover/backends/PackageKitBackend/CMakeLists.txt +index cfeb38f1..466dbc49 100644 +--- a/libdiscover/backends/PackageKitBackend/CMakeLists.txt b/libdiscover/backends/PackageKitBackend/CMakeLists.txt +@@ -19,7 +19,7 @@ ecm_qt_declare_logging_category(packagekit-backend_SRCS HEADER libdiscover_backe + + add_library(packagekit-backend MODULE ${packagekit-backend_SRCS}) + +-target_link_libraries(packagekit-backend PRIVATE Discover::Common Qt5::Core PK::packagekitqt5 KF5::ConfigGui KF5::KIOCore KF5::Archive AppStreamQt) ++target_link_libraries(packagekit-backend PRIVATE Discover::Common Qt5::Core Qt5::Concurrent PK::packagekitqt5 KF5::ConfigGui KF5::KIOCore KF5::Archive AppStreamQt) + install(TARGETS packagekit-backend DESTINATION ${PLUGIN_INSTALL_DIR}/discover) + + if(TARGET PkgConfig::Markdown) +-- +2.31.1 +
[gentoo-commits] repo/gentoo:master commit in: app-emulation/xen-tools/
commit: a0b342515c1a0fb570d871be7da7ffc1f5f8a685 Author: Thomas Deutschmann gentoo org> AuthorDate: Thu May 13 00:33:35 2021 + Commit: Thomas Deutschmann gentoo org> CommitDate: Thu May 13 00:33:54 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0b34251 app-emulation/xen-tools: adjust seabios SRC name Fixes: 5871ab0e ("app-emulation/xen-tools: use same SRC_URI for seabios like sys-firmware/seabios") Closes: https://bugs.gentoo.org/789648 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Thomas Deutschmann gentoo.org> app-emulation/xen-tools/xen-tools-4.13.3-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-emulation/xen-tools/xen-tools-4.13.3-r1.ebuild b/app-emulation/xen-tools/xen-tools-4.13.3-r1.ebuild index 0f16bbc10d4..56e600d9a96 100644 --- a/app-emulation/xen-tools/xen-tools-4.13.3-r1.ebuild +++ b/app-emulation/xen-tools/xen-tools-4.13.3-r1.ebuild @@ -239,7 +239,7 @@ src_prepare() { fi # move before Gentoo patch, one patch should apply to seabios, to fix gcc-4.5.x build err - mv ../seabios-rel-${SEABIOS_VER} tools/firmware/seabios-dir-remote || die + 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
[gentoo-commits] repo/gentoo:master commit in: sys-cluster/kubectl/
commit: 3daf6ab1db95b0e98de354dc749ec259ec394e0f Author: William Hubbs gentoo org> AuthorDate: Wed May 12 23:48:22 2021 + Commit: William Hubbs gentoo org> CommitDate: Thu May 13 00:29:13 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3daf6ab1 sys-cluster/kubectl: 1.18.19 bump Signed-off-by: William Hubbs gentoo.org> sys-cluster/kubectl/Manifest | 1 + sys-cluster/kubectl/kubectl-1.18.19.ebuild | 33 ++ 2 files changed, 34 insertions(+) diff --git a/sys-cluster/kubectl/Manifest b/sys-cluster/kubectl/Manifest index fbde48252fa..a9690eed3cc 100644 --- a/sys-cluster/kubectl/Manifest +++ b/sys-cluster/kubectl/Manifest @@ -1,4 +1,5 @@ DIST kubernetes-1.18.18.tar.gz 32427845 BLAKE2B 10e04ac2097a01702ea227f217b2346378b17a4040ac677ecde592544febe204c443c0a722d34617a8cc7db7d7909a9f9b6cfd84bc3e36e7862a72273bc45ef3 SHA512 8305cff40d08a40c6c8e71e9056fac6b76856a6e39ac8d2e3952c155a8c70a9d7c269725d55df180dd906d0ff6d9c8b9e17a58b00a08c86438f1435058163fd3 +DIST kubernetes-1.18.19.tar.gz 32437793 BLAKE2B d5212b8eb29635d8269f91880420bbc9c16e472583ffd659a08362e80f79beb9fb48945a48dacf0f68b6b4383db0d1e615b432ea1687c015f78e4bc7aef94189 SHA512 aba80c2d5d2296bc2453a1519c29034a4f5e52373dc366186c295154960744f2d7fbae0b9cd1c64044bbb5cd9007b182dc4f60e57e991d28b3c8f0fc8cb279fb DIST kubernetes-1.19.10.tar.gz 33529312 BLAKE2B 8566eaf43beab26fe781e3520be147620a256d2b9fc895d51c3707dfb34c8e53667527bab23d6b1b5a64dee291893ec69a3bfa54b72da0e0e9a7f27acbd0c7d1 SHA512 7a69062be5a2fd0522f03077edb023e59f4887580f3018e4a3c1726c888d1123e3beb1adce58e7ff4b658bd3f1eb8e650f022f88c2d0abbc561acec164028cf5 DIST kubernetes-1.20.6.tar.gz 34478669 BLAKE2B 82e3aac07e9f360cda6854f4ff51082e96648c1a7a6dd43530b31404089cd1eaa2805fa9896dfa1bdef03ebdd04b6dda8ba948d8b16be28534390554da5e SHA512 b3df8266c597b3e2270e7caea24129ebc8fa258e32e747c1e48ede5ad0244c791f9da39bcaf7c08df8c1b314976742db23ecaa4623ab241f87a80d4834a0948f DIST kubernetes-1.21.0.tar.gz 37484462 BLAKE2B 78ae44985eccf9e17d58ccb3f9c98dcc469059e17375b016d82df6d5ce02451e0bcac49cdd89d5ae82bd718191e83fbf6e128ae3a4d14569460febd0c027edf3 SHA512 f5928f5aad0ce1dee7db145a798c5038aa5ca085a09ba9a2da5cabb36c54f2adc86ec5948d4cf344544c45c29d18e7b9f04bf14c4a91aab637c7244fcf3f80d8 diff --git a/sys-cluster/kubectl/kubectl-1.18.19.ebuild b/sys-cluster/kubectl/kubectl-1.18.19.ebuild new file mode 100644 index 000..1e44048f862 --- /dev/null +++ b/sys-cluster/kubectl/kubectl-1.18.19.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit bash-completion-r1 go-module + +DESCRIPTION="CLI to run commands against Kubernetes clusters" +HOMEPAGE="https://kubernetes.io"; +SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="hardened" + +RDEPEND="!sys-cluster/kubernetes" + +RESTRICT+=" test" +S="${WORKDIR}/kubernetes-${PV}" + +src_compile() { + CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ + emake -j1 GOFLAGS="" GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} +} + +src_install() { + dobin _output/bin/${PN} + _output/bin/${PN} completion bash > ${PN}.bash || die + _output/bin/${PN} completion zsh > ${PN}.zsh || die + newbashcomp ${PN}.bash ${PN} + insinto /usr/share/zsh/site-functions + newins ${PN}.zsh _${PN} +}
[gentoo-commits] repo/gentoo:master commit in: sys-cluster/kube-apiserver/
commit: 0533c1f51902d4de89656c3d2ba698cd8742f8b0 Author: William Hubbs gentoo org> AuthorDate: Wed May 12 23:48:16 2021 + Commit: William Hubbs gentoo org> CommitDate: Thu May 13 00:29:12 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0533c1f5 sys-cluster/kube-apiserver: 1.18.19 bump Signed-off-by: William Hubbs gentoo.org> sys-cluster/kube-apiserver/Manifest| 1 + .../kube-apiserver/kube-apiserver-1.18.19.ebuild | 39 ++ 2 files changed, 40 insertions(+) diff --git a/sys-cluster/kube-apiserver/Manifest b/sys-cluster/kube-apiserver/Manifest index fbde48252fa..a9690eed3cc 100644 --- a/sys-cluster/kube-apiserver/Manifest +++ b/sys-cluster/kube-apiserver/Manifest @@ -1,4 +1,5 @@ DIST kubernetes-1.18.18.tar.gz 32427845 BLAKE2B 10e04ac2097a01702ea227f217b2346378b17a4040ac677ecde592544febe204c443c0a722d34617a8cc7db7d7909a9f9b6cfd84bc3e36e7862a72273bc45ef3 SHA512 8305cff40d08a40c6c8e71e9056fac6b76856a6e39ac8d2e3952c155a8c70a9d7c269725d55df180dd906d0ff6d9c8b9e17a58b00a08c86438f1435058163fd3 +DIST kubernetes-1.18.19.tar.gz 32437793 BLAKE2B d5212b8eb29635d8269f91880420bbc9c16e472583ffd659a08362e80f79beb9fb48945a48dacf0f68b6b4383db0d1e615b432ea1687c015f78e4bc7aef94189 SHA512 aba80c2d5d2296bc2453a1519c29034a4f5e52373dc366186c295154960744f2d7fbae0b9cd1c64044bbb5cd9007b182dc4f60e57e991d28b3c8f0fc8cb279fb DIST kubernetes-1.19.10.tar.gz 33529312 BLAKE2B 8566eaf43beab26fe781e3520be147620a256d2b9fc895d51c3707dfb34c8e53667527bab23d6b1b5a64dee291893ec69a3bfa54b72da0e0e9a7f27acbd0c7d1 SHA512 7a69062be5a2fd0522f03077edb023e59f4887580f3018e4a3c1726c888d1123e3beb1adce58e7ff4b658bd3f1eb8e650f022f88c2d0abbc561acec164028cf5 DIST kubernetes-1.20.6.tar.gz 34478669 BLAKE2B 82e3aac07e9f360cda6854f4ff51082e96648c1a7a6dd43530b31404089cd1eaa2805fa9896dfa1bdef03ebdd04b6dda8ba948d8b16be28534390554da5e SHA512 b3df8266c597b3e2270e7caea24129ebc8fa258e32e747c1e48ede5ad0244c791f9da39bcaf7c08df8c1b314976742db23ecaa4623ab241f87a80d4834a0948f DIST kubernetes-1.21.0.tar.gz 37484462 BLAKE2B 78ae44985eccf9e17d58ccb3f9c98dcc469059e17375b016d82df6d5ce02451e0bcac49cdd89d5ae82bd718191e83fbf6e128ae3a4d14569460febd0c027edf3 SHA512 f5928f5aad0ce1dee7db145a798c5038aa5ca085a09ba9a2da5cabb36c54f2adc86ec5948d4cf344544c45c29d18e7b9f04bf14c4a91aab637c7244fcf3f80d8 diff --git a/sys-cluster/kube-apiserver/kube-apiserver-1.18.19.ebuild b/sys-cluster/kube-apiserver/kube-apiserver-1.18.19.ebuild new file mode 100644 index 000..49d7e68c409 --- /dev/null +++ b/sys-cluster/kube-apiserver/kube-apiserver-1.18.19.ebuild @@ -0,0 +1,39 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit bash-completion-r1 go-module systemd + +DESCRIPTION="Kubernetes API server" +HOMEPAGE="https://kubernetes.io"; +SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="hardened" + +COMMON_DEPEND=" + acct-group/kube-apiserver + acct-user/kube-apiserver" +DEPEND="${COMMON_DEPEND}" +RDEPEND="${COMMON_DEPEND} + !sys-cluster/kubernetes" + +RESTRICT+=" test" +S="${WORKDIR}/kubernetes-${PV}" + +src_compile() { + CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ + emake -j1 GOFLAGS=-v GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} +} + +src_install() { + dobin _output/bin/${PN} + newinitd "${FILESDIR}"/${PN}.initd ${PN} + newconfd "${FILESDIR}"/${PN}.confd ${PN} + insinto /etc/logrotate.d + newins "${FILESDIR}"/${PN}.logrotated ${PN} + keepdir /var/log/${PN} + fowners ${PN}:${PN} /var/log/${PN} +}
[gentoo-commits] repo/gentoo:master commit in: sys-cluster/kubelet/
commit: bc79e06d906b4fa0bdf738e0bdb78d0e9a81479f Author: William Hubbs gentoo org> AuthorDate: Wed May 12 23:48:25 2021 + Commit: William Hubbs gentoo org> CommitDate: Thu May 13 00:29:13 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc79e06d sys-cluster/kubelet: 1.18.19 bump Signed-off-by: William Hubbs gentoo.org> sys-cluster/kubelet/Manifest | 1 + sys-cluster/kubelet/kubelet-1.18.19.ebuild | 36 ++ 2 files changed, 37 insertions(+) diff --git a/sys-cluster/kubelet/Manifest b/sys-cluster/kubelet/Manifest index fbde48252fa..a9690eed3cc 100644 --- a/sys-cluster/kubelet/Manifest +++ b/sys-cluster/kubelet/Manifest @@ -1,4 +1,5 @@ DIST kubernetes-1.18.18.tar.gz 32427845 BLAKE2B 10e04ac2097a01702ea227f217b2346378b17a4040ac677ecde592544febe204c443c0a722d34617a8cc7db7d7909a9f9b6cfd84bc3e36e7862a72273bc45ef3 SHA512 8305cff40d08a40c6c8e71e9056fac6b76856a6e39ac8d2e3952c155a8c70a9d7c269725d55df180dd906d0ff6d9c8b9e17a58b00a08c86438f1435058163fd3 +DIST kubernetes-1.18.19.tar.gz 32437793 BLAKE2B d5212b8eb29635d8269f91880420bbc9c16e472583ffd659a08362e80f79beb9fb48945a48dacf0f68b6b4383db0d1e615b432ea1687c015f78e4bc7aef94189 SHA512 aba80c2d5d2296bc2453a1519c29034a4f5e52373dc366186c295154960744f2d7fbae0b9cd1c64044bbb5cd9007b182dc4f60e57e991d28b3c8f0fc8cb279fb DIST kubernetes-1.19.10.tar.gz 33529312 BLAKE2B 8566eaf43beab26fe781e3520be147620a256d2b9fc895d51c3707dfb34c8e53667527bab23d6b1b5a64dee291893ec69a3bfa54b72da0e0e9a7f27acbd0c7d1 SHA512 7a69062be5a2fd0522f03077edb023e59f4887580f3018e4a3c1726c888d1123e3beb1adce58e7ff4b658bd3f1eb8e650f022f88c2d0abbc561acec164028cf5 DIST kubernetes-1.20.6.tar.gz 34478669 BLAKE2B 82e3aac07e9f360cda6854f4ff51082e96648c1a7a6dd43530b31404089cd1eaa2805fa9896dfa1bdef03ebdd04b6dda8ba948d8b16be28534390554da5e SHA512 b3df8266c597b3e2270e7caea24129ebc8fa258e32e747c1e48ede5ad0244c791f9da39bcaf7c08df8c1b314976742db23ecaa4623ab241f87a80d4834a0948f DIST kubernetes-1.21.0.tar.gz 37484462 BLAKE2B 78ae44985eccf9e17d58ccb3f9c98dcc469059e17375b016d82df6d5ce02451e0bcac49cdd89d5ae82bd718191e83fbf6e128ae3a4d14569460febd0c027edf3 SHA512 f5928f5aad0ce1dee7db145a798c5038aa5ca085a09ba9a2da5cabb36c54f2adc86ec5948d4cf344544c45c29d18e7b9f04bf14c4a91aab637c7244fcf3f80d8 diff --git a/sys-cluster/kubelet/kubelet-1.18.19.ebuild b/sys-cluster/kubelet/kubelet-1.18.19.ebuild new file mode 100644 index 000..53a67a3c87c --- /dev/null +++ b/sys-cluster/kubelet/kubelet-1.18.19.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit go-module systemd + +DESCRIPTION="Kubernetes Node Agent" +HOMEPAGE="https://kubernetes.io"; +SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="hardened" + +RDEPEND="!sys-cluster/kubernetes" + +RESTRICT+=" test " +S="${WORKDIR}/kubernetes-${PV}" + +src_compile() { + CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ + emake -j1 GOFLAGS="" GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} +} + +src_install() { + dobin _output/bin/${PN} + keepdir /etc/kubernetes/manifests /var/log/kubelet /var/lib/kubelet + newinitd "${FILESDIR}"/${PN}.initd ${PN} + newconfd "${FILESDIR}"/${PN}.confd ${PN} + insinto /etc/logrotate.d + newins "${FILESDIR}"/${PN}.logrotated ${PN} + systemd_dounit "${FILESDIR}"/${PN}.service + insinto /etc/kubernetes + newins "${FILESDIR}"/${PN}.env ${PN}.env +}
[gentoo-commits] repo/gentoo:master commit in: sys-cluster/kube-proxy/
commit: 7b9dbfe8348c4f5d2de9748e133901b95f94d4b7 Author: William Hubbs gentoo org> AuthorDate: Wed May 12 23:48:28 2021 + Commit: William Hubbs gentoo org> CommitDate: Thu May 13 00:29:13 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b9dbfe8 sys-cluster/kube-proxy: 1.18.19 bump Signed-off-by: William Hubbs gentoo.org> sys-cluster/kube-proxy/Manifest | 1 + sys-cluster/kube-proxy/kube-proxy-1.18.19.ebuild | 34 2 files changed, 35 insertions(+) diff --git a/sys-cluster/kube-proxy/Manifest b/sys-cluster/kube-proxy/Manifest index fbde48252fa..a9690eed3cc 100644 --- a/sys-cluster/kube-proxy/Manifest +++ b/sys-cluster/kube-proxy/Manifest @@ -1,4 +1,5 @@ DIST kubernetes-1.18.18.tar.gz 32427845 BLAKE2B 10e04ac2097a01702ea227f217b2346378b17a4040ac677ecde592544febe204c443c0a722d34617a8cc7db7d7909a9f9b6cfd84bc3e36e7862a72273bc45ef3 SHA512 8305cff40d08a40c6c8e71e9056fac6b76856a6e39ac8d2e3952c155a8c70a9d7c269725d55df180dd906d0ff6d9c8b9e17a58b00a08c86438f1435058163fd3 +DIST kubernetes-1.18.19.tar.gz 32437793 BLAKE2B d5212b8eb29635d8269f91880420bbc9c16e472583ffd659a08362e80f79beb9fb48945a48dacf0f68b6b4383db0d1e615b432ea1687c015f78e4bc7aef94189 SHA512 aba80c2d5d2296bc2453a1519c29034a4f5e52373dc366186c295154960744f2d7fbae0b9cd1c64044bbb5cd9007b182dc4f60e57e991d28b3c8f0fc8cb279fb DIST kubernetes-1.19.10.tar.gz 33529312 BLAKE2B 8566eaf43beab26fe781e3520be147620a256d2b9fc895d51c3707dfb34c8e53667527bab23d6b1b5a64dee291893ec69a3bfa54b72da0e0e9a7f27acbd0c7d1 SHA512 7a69062be5a2fd0522f03077edb023e59f4887580f3018e4a3c1726c888d1123e3beb1adce58e7ff4b658bd3f1eb8e650f022f88c2d0abbc561acec164028cf5 DIST kubernetes-1.20.6.tar.gz 34478669 BLAKE2B 82e3aac07e9f360cda6854f4ff51082e96648c1a7a6dd43530b31404089cd1eaa2805fa9896dfa1bdef03ebdd04b6dda8ba948d8b16be28534390554da5e SHA512 b3df8266c597b3e2270e7caea24129ebc8fa258e32e747c1e48ede5ad0244c791f9da39bcaf7c08df8c1b314976742db23ecaa4623ab241f87a80d4834a0948f DIST kubernetes-1.21.0.tar.gz 37484462 BLAKE2B 78ae44985eccf9e17d58ccb3f9c98dcc469059e17375b016d82df6d5ce02451e0bcac49cdd89d5ae82bd718191e83fbf6e128ae3a4d14569460febd0c027edf3 SHA512 f5928f5aad0ce1dee7db145a798c5038aa5ca085a09ba9a2da5cabb36c54f2adc86ec5948d4cf344544c45c29d18e7b9f04bf14c4a91aab637c7244fcf3f80d8 diff --git a/sys-cluster/kube-proxy/kube-proxy-1.18.19.ebuild b/sys-cluster/kube-proxy/kube-proxy-1.18.19.ebuild new file mode 100644 index 000..dc462bedf2c --- /dev/null +++ b/sys-cluster/kube-proxy/kube-proxy-1.18.19.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit go-module + +DESCRIPTION="Kubernetes Proxy service" +HOMEPAGE="https://github.com/kubernetes/kubernetes https://kubernetes.io"; +SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="hardened" + +RDEPEND="net-firewall/conntrack-tools + !sys-cluster/kubernetes" + +RESTRICT+=" test" +S="${WORKDIR}/kubernetes-${PV}" + +src_compile() { + CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ + emake -j1 GOFLAGS="" GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} +} + +src_install() { + dobin _output/bin/${PN} + keepdir /var/log/${PN} /var/lib/${PN} + newinitd "${FILESDIR}"/${PN}.initd ${PN} + newconfd "${FILESDIR}"/${PN}.confd ${PN} + insinto /etc/logrotate.d + newins "${FILESDIR}"/${PN}.logrotated ${PN} +}
[gentoo-commits] repo/gentoo:master commit in: sys-cluster/kube-controller-manager/
commit: 9c11f6110f1575fe5c4b35be36a101f6cc3cb6d2 Author: William Hubbs gentoo org> AuthorDate: Wed May 12 23:48:19 2021 + Commit: William Hubbs gentoo org> CommitDate: Thu May 13 00:29:12 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c11f611 sys-cluster/kube-controller-manager: 1.18.19 bump Signed-off-by: William Hubbs gentoo.org> sys-cluster/kube-controller-manager/Manifest | 1 + .../kube-controller-manager-1.18.19.ebuild | 38 ++ 2 files changed, 39 insertions(+) diff --git a/sys-cluster/kube-controller-manager/Manifest b/sys-cluster/kube-controller-manager/Manifest index fbde48252fa..a9690eed3cc 100644 --- a/sys-cluster/kube-controller-manager/Manifest +++ b/sys-cluster/kube-controller-manager/Manifest @@ -1,4 +1,5 @@ DIST kubernetes-1.18.18.tar.gz 32427845 BLAKE2B 10e04ac2097a01702ea227f217b2346378b17a4040ac677ecde592544febe204c443c0a722d34617a8cc7db7d7909a9f9b6cfd84bc3e36e7862a72273bc45ef3 SHA512 8305cff40d08a40c6c8e71e9056fac6b76856a6e39ac8d2e3952c155a8c70a9d7c269725d55df180dd906d0ff6d9c8b9e17a58b00a08c86438f1435058163fd3 +DIST kubernetes-1.18.19.tar.gz 32437793 BLAKE2B d5212b8eb29635d8269f91880420bbc9c16e472583ffd659a08362e80f79beb9fb48945a48dacf0f68b6b4383db0d1e615b432ea1687c015f78e4bc7aef94189 SHA512 aba80c2d5d2296bc2453a1519c29034a4f5e52373dc366186c295154960744f2d7fbae0b9cd1c64044bbb5cd9007b182dc4f60e57e991d28b3c8f0fc8cb279fb DIST kubernetes-1.19.10.tar.gz 33529312 BLAKE2B 8566eaf43beab26fe781e3520be147620a256d2b9fc895d51c3707dfb34c8e53667527bab23d6b1b5a64dee291893ec69a3bfa54b72da0e0e9a7f27acbd0c7d1 SHA512 7a69062be5a2fd0522f03077edb023e59f4887580f3018e4a3c1726c888d1123e3beb1adce58e7ff4b658bd3f1eb8e650f022f88c2d0abbc561acec164028cf5 DIST kubernetes-1.20.6.tar.gz 34478669 BLAKE2B 82e3aac07e9f360cda6854f4ff51082e96648c1a7a6dd43530b31404089cd1eaa2805fa9896dfa1bdef03ebdd04b6dda8ba948d8b16be28534390554da5e SHA512 b3df8266c597b3e2270e7caea24129ebc8fa258e32e747c1e48ede5ad0244c791f9da39bcaf7c08df8c1b314976742db23ecaa4623ab241f87a80d4834a0948f DIST kubernetes-1.21.0.tar.gz 37484462 BLAKE2B 78ae44985eccf9e17d58ccb3f9c98dcc469059e17375b016d82df6d5ce02451e0bcac49cdd89d5ae82bd718191e83fbf6e128ae3a4d14569460febd0c027edf3 SHA512 f5928f5aad0ce1dee7db145a798c5038aa5ca085a09ba9a2da5cabb36c54f2adc86ec5948d4cf344544c45c29d18e7b9f04bf14c4a91aab637c7244fcf3f80d8 diff --git a/sys-cluster/kube-controller-manager/kube-controller-manager-1.18.19.ebuild b/sys-cluster/kube-controller-manager/kube-controller-manager-1.18.19.ebuild new file mode 100644 index 000..fd520d1073e --- /dev/null +++ b/sys-cluster/kube-controller-manager/kube-controller-manager-1.18.19.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit go-module + +DESCRIPTION="Kubernetes Controller Manager" +HOMEPAGE="https://kubernetes.io"; +SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="hardened" + +COMMON_DEPEND="acct-group/kube-controller-manager + acct-user/kube-controller-manager" +DEPEND="${COMMON_DEPEND}" +RDEPEND="${COMMON_DEPEND} + !sys-cluster/kubernetes" + +RESTRICT+=" test" +S="${WORKDIR}/kubernetes-${PV}" + +src_compile() { + CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ + emake -j1 GOFLAGS="" GOLDFLAGS="" WHAT=cmd/${PN} +} + +src_install() { + dobin _output/bin/${PN} + newinitd "${FILESDIR}"/${PN}.initd ${PN} + newconfd "${FILESDIR}"/${PN}.confd ${PN} + insinto /etc/logrotate.d + newins "${FILESDIR}"/${PN}.logrotated ${PN} + keepdir /var/log/${PN} + fowners ${PN}:${PN} /var/log/${PN} +}
[gentoo-commits] repo/gentoo:master commit in: sys-cluster/kube-scheduler/
commit: 45bd12eed65623c00cb9b8ba52435e9a3b25ca69 Author: William Hubbs gentoo org> AuthorDate: Wed May 12 23:48:31 2021 + Commit: William Hubbs gentoo org> CommitDate: Thu May 13 00:29:14 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45bd12ee sys-cluster/kube-scheduler: 1.18.19 bump Signed-off-by: William Hubbs gentoo.org> sys-cluster/kube-scheduler/Manifest| 1 + .../kube-scheduler/kube-scheduler-1.18.19.ebuild | 38 ++ 2 files changed, 39 insertions(+) diff --git a/sys-cluster/kube-scheduler/Manifest b/sys-cluster/kube-scheduler/Manifest index fbde48252fa..a9690eed3cc 100644 --- a/sys-cluster/kube-scheduler/Manifest +++ b/sys-cluster/kube-scheduler/Manifest @@ -1,4 +1,5 @@ DIST kubernetes-1.18.18.tar.gz 32427845 BLAKE2B 10e04ac2097a01702ea227f217b2346378b17a4040ac677ecde592544febe204c443c0a722d34617a8cc7db7d7909a9f9b6cfd84bc3e36e7862a72273bc45ef3 SHA512 8305cff40d08a40c6c8e71e9056fac6b76856a6e39ac8d2e3952c155a8c70a9d7c269725d55df180dd906d0ff6d9c8b9e17a58b00a08c86438f1435058163fd3 +DIST kubernetes-1.18.19.tar.gz 32437793 BLAKE2B d5212b8eb29635d8269f91880420bbc9c16e472583ffd659a08362e80f79beb9fb48945a48dacf0f68b6b4383db0d1e615b432ea1687c015f78e4bc7aef94189 SHA512 aba80c2d5d2296bc2453a1519c29034a4f5e52373dc366186c295154960744f2d7fbae0b9cd1c64044bbb5cd9007b182dc4f60e57e991d28b3c8f0fc8cb279fb DIST kubernetes-1.19.10.tar.gz 33529312 BLAKE2B 8566eaf43beab26fe781e3520be147620a256d2b9fc895d51c3707dfb34c8e53667527bab23d6b1b5a64dee291893ec69a3bfa54b72da0e0e9a7f27acbd0c7d1 SHA512 7a69062be5a2fd0522f03077edb023e59f4887580f3018e4a3c1726c888d1123e3beb1adce58e7ff4b658bd3f1eb8e650f022f88c2d0abbc561acec164028cf5 DIST kubernetes-1.20.6.tar.gz 34478669 BLAKE2B 82e3aac07e9f360cda6854f4ff51082e96648c1a7a6dd43530b31404089cd1eaa2805fa9896dfa1bdef03ebdd04b6dda8ba948d8b16be28534390554da5e SHA512 b3df8266c597b3e2270e7caea24129ebc8fa258e32e747c1e48ede5ad0244c791f9da39bcaf7c08df8c1b314976742db23ecaa4623ab241f87a80d4834a0948f DIST kubernetes-1.21.0.tar.gz 37484462 BLAKE2B 78ae44985eccf9e17d58ccb3f9c98dcc469059e17375b016d82df6d5ce02451e0bcac49cdd89d5ae82bd718191e83fbf6e128ae3a4d14569460febd0c027edf3 SHA512 f5928f5aad0ce1dee7db145a798c5038aa5ca085a09ba9a2da5cabb36c54f2adc86ec5948d4cf344544c45c29d18e7b9f04bf14c4a91aab637c7244fcf3f80d8 diff --git a/sys-cluster/kube-scheduler/kube-scheduler-1.18.19.ebuild b/sys-cluster/kube-scheduler/kube-scheduler-1.18.19.ebuild new file mode 100644 index 000..68467bd70d7 --- /dev/null +++ b/sys-cluster/kube-scheduler/kube-scheduler-1.18.19.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit go-module + +DESCRIPTION="Kubernetes Scheduler" +HOMEPAGE="https://kubernetes.io"; +SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="hardened" + +COMMON_DEPEND="acct-group/kube-scheduler + acct-user/kube-scheduler" +DEPEND="${COMMON_DEPEND}" +RDEPEND="${COMMON_DEPEND} + !sys-cluster/kubernetes" + +RESTRICT+=" test" +S="${WORKDIR}/kubernetes-${PV}" + +src_compile() { + CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ + emake -j1 GOFLAGS="" GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} +} + +src_install() { + dobin _output/bin/${PN} + newinitd "${FILESDIR}"/${PN}.initd ${PN} + newconfd "${FILESDIR}"/${PN}.confd ${PN} + insinto /etc/logrotate.d + newins "${FILESDIR}"/${PN}.logrotated ${PN} + keepdir /var/log/${PN} + fowners ${PN}:${PN} /var/log/${PN} +}
[gentoo-commits] repo/gentoo:master commit in: sys-cluster/kubeadm/
commit: a2b17b0c0e5c2c0d0f3fd22e0bdb7dcdc96561c3 Author: William Hubbs gentoo org> AuthorDate: Wed May 12 23:48:01 2021 + Commit: William Hubbs gentoo org> CommitDate: Thu May 13 00:29:05 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2b17b0c sys-cluster/kubeadm: 1.18.19 bump Signed-off-by: William Hubbs gentoo.org> sys-cluster/kubeadm/Manifest | 1 + sys-cluster/kubeadm/kubeadm-1.18.19.ebuild | 33 ++ 2 files changed, 34 insertions(+) diff --git a/sys-cluster/kubeadm/Manifest b/sys-cluster/kubeadm/Manifest index fbde48252fa..a9690eed3cc 100644 --- a/sys-cluster/kubeadm/Manifest +++ b/sys-cluster/kubeadm/Manifest @@ -1,4 +1,5 @@ DIST kubernetes-1.18.18.tar.gz 32427845 BLAKE2B 10e04ac2097a01702ea227f217b2346378b17a4040ac677ecde592544febe204c443c0a722d34617a8cc7db7d7909a9f9b6cfd84bc3e36e7862a72273bc45ef3 SHA512 8305cff40d08a40c6c8e71e9056fac6b76856a6e39ac8d2e3952c155a8c70a9d7c269725d55df180dd906d0ff6d9c8b9e17a58b00a08c86438f1435058163fd3 +DIST kubernetes-1.18.19.tar.gz 32437793 BLAKE2B d5212b8eb29635d8269f91880420bbc9c16e472583ffd659a08362e80f79beb9fb48945a48dacf0f68b6b4383db0d1e615b432ea1687c015f78e4bc7aef94189 SHA512 aba80c2d5d2296bc2453a1519c29034a4f5e52373dc366186c295154960744f2d7fbae0b9cd1c64044bbb5cd9007b182dc4f60e57e991d28b3c8f0fc8cb279fb DIST kubernetes-1.19.10.tar.gz 33529312 BLAKE2B 8566eaf43beab26fe781e3520be147620a256d2b9fc895d51c3707dfb34c8e53667527bab23d6b1b5a64dee291893ec69a3bfa54b72da0e0e9a7f27acbd0c7d1 SHA512 7a69062be5a2fd0522f03077edb023e59f4887580f3018e4a3c1726c888d1123e3beb1adce58e7ff4b658bd3f1eb8e650f022f88c2d0abbc561acec164028cf5 DIST kubernetes-1.20.6.tar.gz 34478669 BLAKE2B 82e3aac07e9f360cda6854f4ff51082e96648c1a7a6dd43530b31404089cd1eaa2805fa9896dfa1bdef03ebdd04b6dda8ba948d8b16be28534390554da5e SHA512 b3df8266c597b3e2270e7caea24129ebc8fa258e32e747c1e48ede5ad0244c791f9da39bcaf7c08df8c1b314976742db23ecaa4623ab241f87a80d4834a0948f DIST kubernetes-1.21.0.tar.gz 37484462 BLAKE2B 78ae44985eccf9e17d58ccb3f9c98dcc469059e17375b016d82df6d5ce02451e0bcac49cdd89d5ae82bd718191e83fbf6e128ae3a4d14569460febd0c027edf3 SHA512 f5928f5aad0ce1dee7db145a798c5038aa5ca085a09ba9a2da5cabb36c54f2adc86ec5948d4cf344544c45c29d18e7b9f04bf14c4a91aab637c7244fcf3f80d8 diff --git a/sys-cluster/kubeadm/kubeadm-1.18.19.ebuild b/sys-cluster/kubeadm/kubeadm-1.18.19.ebuild new file mode 100644 index 000..b7becaae8f3 --- /dev/null +++ b/sys-cluster/kubeadm/kubeadm-1.18.19.ebuild @@ -0,0 +1,33 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit bash-completion-r1 go-module + +DESCRIPTION="CLI to Easily bootstrap a secure Kubernetes cluster" +HOMEPAGE="https://kubernetes.io"; +SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="hardened" + +RDEPEND="!sys-cluster/kubernetes" + +RESTRICT+=" test" +S="${WORKDIR}/kubernetes-${PV}" + +src_compile() { + CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \ + emake -j1 GOFLAGS=-v GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN} +} + +src_install() { + dobin _output/bin/kubeadm + _output/bin/${PN} completion bash > ${PN}.bash || die + _output/bin/${PN} completion zsh > ${PN}.zsh || die + newbashcomp ${PN}.bash ${PN} + insinto /usr/share/zsh/site-functions + newins ${PN}.zsh _${PN} +}
[gentoo-commits] repo/gentoo:master commit in: media-gfx/imagemagick/
commit: d93aa6d994310edd135da8c338d7736199eda90f Author: Thomas Deutschmann gentoo org> AuthorDate: Thu May 13 00:18:01 2021 + Commit: Thomas Deutschmann gentoo org> CommitDate: Thu May 13 00:18:01 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d93aa6d9 media-gfx/imagemagick: security cleanup Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Thomas Deutschmann gentoo.org> media-gfx/imagemagick/Manifest | 8 - media-gfx/imagemagick/imagemagick-6.9.12.10.ebuild | 262 media-gfx/imagemagick/imagemagick-6.9.12.7.ebuild | 262 media-gfx/imagemagick/imagemagick-6.9.12.8.ebuild | 262 media-gfx/imagemagick/imagemagick-6.9.12.9.ebuild | 262 media-gfx/imagemagick/imagemagick-7.0.11.10.ebuild | 267 - media-gfx/imagemagick/imagemagick-7.0.11.7.ebuild | 267 - media-gfx/imagemagick/imagemagick-7.0.11.8.ebuild | 267 - media-gfx/imagemagick/imagemagick-7.0.11.9.ebuild | 267 - 9 files changed, 2124 deletions(-) diff --git a/media-gfx/imagemagick/Manifest b/media-gfx/imagemagick/Manifest index ffc7dc9db41..e76b4dbdf0d 100644 --- a/media-gfx/imagemagick/Manifest +++ b/media-gfx/imagemagick/Manifest @@ -1,10 +1,2 @@ -DIST ImageMagick-6.9.12-10.tar.xz 9154060 BLAKE2B 23f9ba449970190a8fee14b161ff893199188f93d9a29e188325448b97a68b61ba70a92289c096371e2988db3d599b52d0d8df06105d06f5dcc4f7d3c6ef4ea5 SHA512 75f3450cfbf779af22efc02733f99ac62ed92ad869ae28a279805ffe38adb515507592e7111ba881ac5b781972841942f7f8e5ecc8ab6f773aef8de454a80b35 DIST ImageMagick-6.9.12-12.tar.xz 9141288 BLAKE2B 95ec30e77fc3f963bb0cae5280ad8e72ba9b6e0c8419fdf41f1899371ecbf5f64bbb70cc6193e751da0c3365551bdb2442e9f4746284ecff92ca351fc906fa4c SHA512 7e680809954326d32439c922cbcb65c9076823c50bd56ba2a230ec4a6d46f00a03a032d2ff153fe9b7651a9f6bac9625fe2aea7acccba56e15b6dce96e477c8d -DIST ImageMagick-6.9.12-7.tar.xz 9156816 BLAKE2B 56a13ff744b15fb987232b70d9ea2a14b10de709011375da2b970e408d91079be38ccc5a301308734293c18c81d78a2e68ecee56b7d8478c6222cd7745b847ab SHA512 cfb261c60c07bc52cd491173a17040b33b0fa95f396d933fe9e14767cb5d009a8ebe7194949c2387c723d3a0492bc7b7a078ed89ce8a0024dd8ed73b40748d4c -DIST ImageMagick-6.9.12-8.tar.xz 9159788 BLAKE2B ceb383d93cd70a2d5755a982a47a7f996b4e9cd4eaa7cfcb14d01fdc84904ccac9d897337616116f0fbf1bed7640ba93bcf5426552a83b45d2de455cbf0bda42 SHA512 e248aab0490eaf382a7be36679c23c0a84386302d5a1cd0d054af79fa95d8f6f03a5ad0f628cd818d453284f9b353168491ed58047338ec8eec15983d3007fed -DIST ImageMagick-6.9.12-9.tar.xz 9161440 BLAKE2B 05c7e3290060fe83aaf1f88761fa2afe63b720fe397ab2f22264d1c4b28cc92c33a2f94782994dce33f8f4528df7cc60503460b23183f815cc43e169cf38c73c SHA512 90848fa3381c69c6526fe6473b9b847cfa81e500aa7ad2be32c4030de1fb84432d83c1dee75a90914e6a18d6aa747aa58696adec43ff61e797f92d0dbcfde01a -DIST ImageMagick-7.0.11-10.tar.xz 10280304 BLAKE2B 9db1c26eb80dfb929bfced2ac0d6adc29e4e68c759611723812edfb4bf8132d1e39e053506c43179d468ac4027ddea8a85bd5f34d0d738778b7b92546bbbeef8 SHA512 a92a8a65ab7503edada45da9c34488deb79c00d005afcc85a17365fd76c83a174a7213bea4bd072f1125f2342722cb067ffa1513f6530db9608cb6dcff4f68d1 DIST ImageMagick-7.0.11-12.tar.xz 10284100 BLAKE2B 2b664106152f764948f34fe766552cb48e7ff2a5c83f3f8b7e0a83861ed218bbda278f487678704d42aee900f1ef4be4252d94ccafda2192f39d9a3701115520 SHA512 f5faf124a1923d8b3d362ae59c594dff4d92cf097b42995f6631812bbb320830cee71ca10a15b3894cecf1a286b4fa10e874d213c7438356d194d3ebff778cbe -DIST ImageMagick-7.0.11-7.tar.xz 10280524 BLAKE2B a4d0cb3e157bff25245d6c3bf3eba55d6f3693ba66d8c5efbc757b31077b1bac0753dca095f853455793355e92e8376a8e41acf3809115c6dbae47977190c42d SHA512 5c36aa566892f0e473ccec0058d7113779704cdf8f4d747132434216c9c0f304de5aafbbbcacc4b21d7e6224e3b9c9439fe6b446e28e821f614c2d1026a280e7 -DIST ImageMagick-7.0.11-8.tar.xz 10280632 BLAKE2B 99c41f09b740f4222b17efa41c8b54445ccb3cfd23aa16d6ae16433952e6c94a02c8db0ffaa3b51e432a2bddb39060b1789b4778f1d9f756b0b992d706a3884d SHA512 e4aa87b30bb75fba815cd4f617a7c0dba29523c03ad6670c7514842587678553d0b45100ccd6e041d59628cf30fe047243d440af78b39d0f82cd405ff0ea0f96 -DIST ImageMagick-7.0.11-9.tar.xz 10266692 BLAKE2B 18e2b7d5e8f93af68cd7a7379968279a1119d25a06bc131465c9ebb500f923664b4332c02828d0837fd1f15395de99b1bdacaf016f1a4a021d71dbe7d0878f46 SHA512 73ecb116fd8885f2ec88a12ae8b36c51b37de3e7e2aa2f9fbbd24a90bc0d78d7603663ec8003abea8af0f200a6176fb26998963a9bb90ce80ebc7feb2dd8921a diff --git a/media-gfx/imagemagick/imagemagick-6.9.12.10.ebuild b/media-gfx/imagemagick/imagemagick-6.9.12.10.ebuild deleted file mode 100644 index d17773f5081..000 --- a/media-gfx/imagemagick/imagemagick-6.9.12.10.ebuild +++ /dev/null @@ -1,262 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -inherit flag-o-matic libtool perl-functions to
[gentoo-commits] repo/gentoo:master commit in: media-gfx/imagemagick/
commit: 047e29e191c1af9c24c01b3c1370f2dbf255fe9c Author: Thomas Deutschmann gentoo org> AuthorDate: Thu May 13 00:17:25 2021 + Commit: Thomas Deutschmann gentoo org> CommitDate: Thu May 13 00:17:25 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=047e29e1 media-gfx/imagemagick: copy stable keywords Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Thomas Deutschmann gentoo.org> media-gfx/imagemagick/imagemagick-6.9.12.12.ebuild | 2 +- media-gfx/imagemagick/imagemagick-7.0.11.12.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/media-gfx/imagemagick/imagemagick-6.9.12.12.ebuild b/media-gfx/imagemagick/imagemagick-6.9.12.12.ebuild index d17773f5081..69de151f32b 100644 --- a/media-gfx/imagemagick/imagemagick-6.9.12.12.ebuild +++ b/media-gfx/imagemagick/imagemagick-6.9.12.12.ebuild @@ -13,7 +13,7 @@ else MY_PV="$(ver_rs 3 '-')" MY_P="ImageMagick-${MY_PV}" SRC_URI="mirror://imagemagick/${MY_P}.tar.xz" - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris" + KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris" fi DESCRIPTION="A collection of tools and libraries for many image formats" diff --git a/media-gfx/imagemagick/imagemagick-7.0.11.12.ebuild b/media-gfx/imagemagick/imagemagick-7.0.11.12.ebuild index 769cb4c0e00..53b6fa068e7 100644 --- a/media-gfx/imagemagick/imagemagick-7.0.11.12.ebuild +++ b/media-gfx/imagemagick/imagemagick-7.0.11.12.ebuild @@ -13,7 +13,7 @@ else MY_PV="$(ver_rs 3 '-')" MY_P="ImageMagick-${MY_PV}" SRC_URI="mirror://imagemagick/${MY_P}.tar.xz" - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris" + KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris" fi DESCRIPTION="A collection of tools and libraries for many image formats"
[gentoo-commits] repo/gentoo:master commit in: sys-kernel/linux-firmware/
commit: 68e2755c35a5f6219a9cfcb3fc0c921d49473588 Author: Thomas Deutschmann gentoo org> AuthorDate: Thu May 13 00:14:11 2021 + Commit: Thomas Deutschmann gentoo org> CommitDate: Thu May 13 00:14:29 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68e2755c sys-kernel/linux-firmware: drop old Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Thomas Deutschmann gentoo.org> sys-kernel/linux-firmware/Manifest | 8 - .../linux-firmware/linux-firmware-20200316.ebuild | 340 .../linux-firmware/linux-firmware-20200421.ebuild | 340 .../linux-firmware/linux-firmware-20200519.ebuild | 340 .../linux-firmware/linux-firmware-20200619.ebuild | 340 .../linux-firmware/linux-firmware-20200721.ebuild | 340 .../linux-firmware/linux-firmware-20200817.ebuild | 340 .../linux-firmware/linux-firmware-20200918.ebuild | 340 .../linux-firmware-20201022-r3.ebuild | 353 - 9 files changed, 2741 deletions(-) diff --git a/sys-kernel/linux-firmware/Manifest b/sys-kernel/linux-firmware/Manifest index 51e40586fd9..71b18c36723 100644 --- a/sys-kernel/linux-firmware/Manifest +++ b/sys-kernel/linux-firmware/Manifest @@ -1,11 +1,3 @@ -DIST linux-firmware-20200316.tar.xz 97897640 BLAKE2B ea6256b4aa29a08c9a156a035dd618af0c80189f39a2deeec81a1da22e4e3414f3ebb2ddbe878adb757b48a5b46a2374b4a47d1d9d87aa169a10fe5840a268e6 SHA512 0579660568eee6cc36ccf84782632291a1b301df8131e3a33e38aa346043a8cc2ed4a5a6e5906b427e1fb70a9333018f250d24cbe79399d0aa13646aaf986313 -DIST linux-firmware-20200421.tar.xz 98988760 BLAKE2B 171c8fdbf0724d1cf851a6daa444f12216cf6224badaa39c651e81840dd840441f67faa3d2bcb99b62404e9d2d6ae119831906ae3961033262ce188c61e54738 SHA512 03498cf14befaf4d209aad5ab66695f83a5a6cdec9aa7f4de04737b27682ce344e48fe5954933a7f6455b97f396068b495237ec84b3425ca5184a6dacb90f391 -DIST linux-firmware-20200519.tar.xz 101137720 BLAKE2B b73744d4f8d0fc74fb1388ee13c04e44db8ee68f51ceb0c5ad363b2dfa4b381806b18c3f2a926b6ee13e290db874ea41b3388d647a662f462eebfe93051bd95b SHA512 88fad2a87cfad329d89e266eee3f5afcf6d0b3bc29510e6ba7ca96a9e18ff9e8e15a7895d600d289bf2ba0c73a908affdd68697fd3f1753e22d9920f9d859e81 -DIST linux-firmware-20200619.tar.xz 117836800 BLAKE2B 09312c70f81791f91547cf815ca0f07297c7ea4c527996504008e4c9dcc9d17c1eea192a646efc89146de62e886ccbf916a041247d642265ca375252e6af825e SHA512 8433646f2837fb5f52b2303316329f7c05423642085288f219d9955588441d50d6901cd31e0705a08453bda1882596ae6d8f8f922520579695f1b36b774b404b -DIST linux-firmware-20200721.tar.xz 118013188 BLAKE2B 648f22d63e8e8a791e3243f9afb2d097fb206cfa1c1fd37fede0fd555d4b7cf6af6b27f4d67e4dc32a6c70fc25c6aee813dc330b4861dbd13373f703a04edd1a SHA512 1dbbf92efd1ac282a72e2f7483c9b35fe3ec348ab3f6062edb34b7922b6c1a007851a87b1835ece16d3cf147fb20ce8602a0262b0c8c94902728ac2f108796e9 -DIST linux-firmware-20200817.tar.xz 121401548 BLAKE2B 77a9ddbab368994801c5f834b65e0c991798eb5ecaeecb84a5b69e886f7aae6e6186f60ebdd4f18449ffe639fb8230c3db108151026161ab23740da63be928a2 SHA512 dba347534d1b51ebcc55600c05293fad5f04f0bfdaec80b2ba27b40a9a20eb5c8bd76cb29d8ca6c814b067952cba4ee3fdb903510a171df98959d592b2c00c13 -DIST linux-firmware-20200918.tar.xz 124581736 BLAKE2B 1541e1afcf52dfb03e89a1d2960b447b9a7e056267eea71ca468c85a69a777ac8686500acd1d65d30943ef82ad64c64c9b29773c92f1d5ea0d1f68212f001da7 SHA512 c257bb40d7c4746e50f3733928c992017d57e3fac641bc63ea41754de50c5adb05ba1629e750b3943cc28e5d19ae709e5cdd3fbbe9ea35563bc68707e0e98e80 -DIST linux-firmware-20201022.tar.xz 129328580 BLAKE2B 8845fa18aad56a1164a0ba63533bc44f728e0b6c207cf9c695bb432bbd33f3740f3d10958f2fd4cad9f45653751819b8e8eaab4b593f5aa0edaed3a246fbd6bc SHA512 d502000154483d4aa8274f851749c1da550f3e94152ae950c93b3577af72e8864b1884938b7b02c4ea832af4b3060bccea10fdee4cd1dd83cb3ca8edcbf2995e DIST linux-firmware-20201218.tar.xz 137880408 BLAKE2B 32839d61d743ade53aad7df0c87e90c28c9eff2e40e8072ebb283907c9a3800b7a0020a3c4ea2350f691ebd7ad9c5d71a1a83991c9099cd9b9bc5f9a908732c9 SHA512 9dfce57ad8d23939860d0b005cbbc80227c67e9739479473b1e36a5d32392df1d341eba3a85c0e243590841954dae298913e96168e72c68eeb3762dfd65a38b3 DIST linux-firmware-20210208.tar.xz 146701492 BLAKE2B 49d39e9a6cf1ee1afc41c6317e680ab90937f0be437a940113b99504215fff7320a7442e3243d5831277dc6fbc043734461f32721b2f0a5dc12960162be6b2a4 SHA512 122673a9f4662a807667127fc88f85115063836b98283951cc46887cae43e1d6bc912b5b95bf50e1e896ff4b9197577e53705ccb259b614d29c3bae37a637b6d DIST linux-firmware-20210315.tar.xz 151454796 BLAKE2B aef09bf2043117c821c5e1460d02d50131e46c2c4257dd3816813089881791b876670990d774dc3e43060785f7303ef509cdec45b64f300ee1acba769bfdc5d1 SHA512 499f0cd746f700ac95f8ca9947d1fb402f3bc53dd5302101ce94f0510ee013b5fa3b8cb6316ace93e3bb2df0a25fb53eb8099acc45c9bec051aa92986e9d188f diff --git a/sys-kernel/linux-firmware/linux-firmware-2020
[gentoo-commits] repo/gentoo:master commit in: sys-kernel/linux-firmware/
commit: 3df3eef70569f6e7d573811bcf0a0e2e6ad73adb Author: Thomas Deutschmann gentoo org> AuthorDate: Wed May 12 23:57:19 2021 + Commit: Thomas Deutschmann gentoo org> CommitDate: Thu May 13 00:14:28 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3df3eef7 sys-kernel/linux-firmware: add RESTRICT=binchecks Ignore scanelf: ath10k/WCN3990/hw1.0/wlanmdsp.mbn: ELF hash table is corrupt warning for firmware blob. Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Thomas Deutschmann gentoo.org> sys-kernel/linux-firmware/linux-firmware-20201218.ebuild | 2 +- sys-kernel/linux-firmware/linux-firmware-20210208.ebuild | 2 +- sys-kernel/linux-firmware/linux-firmware-20210315.ebuild | 2 +- sys-kernel/linux-firmware/linux-firmware-20210511.ebuild | 2 +- sys-kernel/linux-firmware/linux-firmware-.ebuild | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/sys-kernel/linux-firmware/linux-firmware-20201218.ebuild b/sys-kernel/linux-firmware/linux-firmware-20201218.ebuild index 0722e63d629..568a5d37cf1 100644 --- a/sys-kernel/linux-firmware/linux-firmware-20201218.ebuild +++ b/sys-kernel/linux-firmware/linux-firmware-20201218.ebuild @@ -32,7 +32,7 @@ SLOT="0" IUSE="initramfs +redistributable savedconfig unknown-license" REQUIRED_USE="initramfs? ( redistributable )" -RESTRICT="strip test +RESTRICT="binchecks strip test unknown-license? ( bindist )" BDEPEND="initramfs? ( app-arch/cpio )" diff --git a/sys-kernel/linux-firmware/linux-firmware-20210208.ebuild b/sys-kernel/linux-firmware/linux-firmware-20210208.ebuild index 0722e63d629..568a5d37cf1 100644 --- a/sys-kernel/linux-firmware/linux-firmware-20210208.ebuild +++ b/sys-kernel/linux-firmware/linux-firmware-20210208.ebuild @@ -32,7 +32,7 @@ SLOT="0" IUSE="initramfs +redistributable savedconfig unknown-license" REQUIRED_USE="initramfs? ( redistributable )" -RESTRICT="strip test +RESTRICT="binchecks strip test unknown-license? ( bindist )" BDEPEND="initramfs? ( app-arch/cpio )" diff --git a/sys-kernel/linux-firmware/linux-firmware-20210315.ebuild b/sys-kernel/linux-firmware/linux-firmware-20210315.ebuild index fa0f36c91a0..e973e48dea3 100644 --- a/sys-kernel/linux-firmware/linux-firmware-20210315.ebuild +++ b/sys-kernel/linux-firmware/linux-firmware-20210315.ebuild @@ -32,7 +32,7 @@ SLOT="0" IUSE="initramfs +redistributable savedconfig unknown-license" REQUIRED_USE="initramfs? ( redistributable )" -RESTRICT="strip test +RESTRICT="binchecks strip test unknown-license? ( bindist )" BDEPEND="initramfs? ( app-arch/cpio )" diff --git a/sys-kernel/linux-firmware/linux-firmware-20210511.ebuild b/sys-kernel/linux-firmware/linux-firmware-20210511.ebuild index fa0f36c91a0..e973e48dea3 100644 --- a/sys-kernel/linux-firmware/linux-firmware-20210511.ebuild +++ b/sys-kernel/linux-firmware/linux-firmware-20210511.ebuild @@ -32,7 +32,7 @@ SLOT="0" IUSE="initramfs +redistributable savedconfig unknown-license" REQUIRED_USE="initramfs? ( redistributable )" -RESTRICT="strip test +RESTRICT="binchecks strip test unknown-license? ( bindist )" BDEPEND="initramfs? ( app-arch/cpio )" diff --git a/sys-kernel/linux-firmware/linux-firmware-.ebuild b/sys-kernel/linux-firmware/linux-firmware-.ebuild index fa0f36c91a0..e973e48dea3 100644 --- a/sys-kernel/linux-firmware/linux-firmware-.ebuild +++ b/sys-kernel/linux-firmware/linux-firmware-.ebuild @@ -32,7 +32,7 @@ SLOT="0" IUSE="initramfs +redistributable savedconfig unknown-license" REQUIRED_USE="initramfs? ( redistributable )" -RESTRICT="strip test +RESTRICT="binchecks strip test unknown-license? ( bindist )" BDEPEND="initramfs? ( app-arch/cpio )"
[gentoo-commits] repo/gentoo:master commit in: sys-kernel/linux-firmware/
commit: e031038f094e7a06e6f9ad27e7edeb182ef4e570 Author: Thomas Deutschmann gentoo org> AuthorDate: Wed May 12 23:31:35 2021 + Commit: Thomas Deutschmann gentoo org> CommitDate: Thu May 13 00:14:27 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e031038f sys-kernel/linux-firmware: sync live ebuild Fixes: e7122905 ("sys-kernel/linux-firmware: add riscv keyword") Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Thomas Deutschmann gentoo.org> sys-kernel/linux-firmware/linux-firmware-.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-kernel/linux-firmware/linux-firmware-.ebuild b/sys-kernel/linux-firmware/linux-firmware-.ebuild index 0722e63d629..fa0f36c91a0 100644 --- a/sys-kernel/linux-firmware/linux-firmware-.ebuild +++ b/sys-kernel/linux-firmware/linux-firmware-.ebuild @@ -18,7 +18,7 @@ else SRC_URI="https://mirrors.edge.kernel.org/pub/linux/kernel/firmware/${P}.tar.xz"; fi - KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86" + KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86" fi DESCRIPTION="Linux firmware files"
[gentoo-commits] repo/gentoo:master commit in: sys-kernel/linux-firmware/
commit: 2e0db3365ff2af423c4df76ba9e844c8e73aa812 Author: Thomas Deutschmann gentoo org> AuthorDate: Wed May 12 23:32:51 2021 + Commit: Thomas Deutschmann gentoo org> CommitDate: Thu May 13 00:14:28 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e0db336 sys-kernel/linux-firmware: bump to v20210511 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Thomas Deutschmann gentoo.org> sys-kernel/linux-firmware/Manifest | 1 + .../linux-firmware/linux-firmware-20210511.ebuild | 353 + 2 files changed, 354 insertions(+) diff --git a/sys-kernel/linux-firmware/Manifest b/sys-kernel/linux-firmware/Manifest index dbe83bc6718..51e40586fd9 100644 --- a/sys-kernel/linux-firmware/Manifest +++ b/sys-kernel/linux-firmware/Manifest @@ -9,3 +9,4 @@ DIST linux-firmware-20201022.tar.xz 129328580 BLAKE2B 8845fa18aad56a1164a0ba6353 DIST linux-firmware-20201218.tar.xz 137880408 BLAKE2B 32839d61d743ade53aad7df0c87e90c28c9eff2e40e8072ebb283907c9a3800b7a0020a3c4ea2350f691ebd7ad9c5d71a1a83991c9099cd9b9bc5f9a908732c9 SHA512 9dfce57ad8d23939860d0b005cbbc80227c67e9739479473b1e36a5d32392df1d341eba3a85c0e243590841954dae298913e96168e72c68eeb3762dfd65a38b3 DIST linux-firmware-20210208.tar.xz 146701492 BLAKE2B 49d39e9a6cf1ee1afc41c6317e680ab90937f0be437a940113b99504215fff7320a7442e3243d5831277dc6fbc043734461f32721b2f0a5dc12960162be6b2a4 SHA512 122673a9f4662a807667127fc88f85115063836b98283951cc46887cae43e1d6bc912b5b95bf50e1e896ff4b9197577e53705ccb259b614d29c3bae37a637b6d DIST linux-firmware-20210315.tar.xz 151454796 BLAKE2B aef09bf2043117c821c5e1460d02d50131e46c2c4257dd3816813089881791b876670990d774dc3e43060785f7303ef509cdec45b64f300ee1acba769bfdc5d1 SHA512 499f0cd746f700ac95f8ca9947d1fb402f3bc53dd5302101ce94f0510ee013b5fa3b8cb6316ace93e3bb2df0a25fb53eb8099acc45c9bec051aa92986e9d188f +DIST linux-firmware-20210511.tar.xz 166689864 BLAKE2B 4c5b1ec5f8112652404730dd0ea9e6533358d8a7e91c01fc53592934b8c7d8a1757855aabc74eb5ffaf2091c656da6bf0e5d7362540434472428dc3db4cd9a8b SHA512 10073d562c386338d7c6b7efb9c24bd1959c3b640ae99fd225d5f3f3f4fe93798417f77b34585d674e3355f8dc9ae9592d23c8f13bc884716c6508f1c0714b44 diff --git a/sys-kernel/linux-firmware/linux-firmware-20210511.ebuild b/sys-kernel/linux-firmware/linux-firmware-20210511.ebuild new file mode 100644 index 000..fa0f36c91a0 --- /dev/null +++ b/sys-kernel/linux-firmware/linux-firmware-20210511.ebuild @@ -0,0 +1,353 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit mount-boot savedconfig + +# In case this is a real snapshot, fill in commit below. +# For normal, tagged releases, leave blank +MY_COMMIT= + +if [[ ${PV} == * ]]; then + inherit git-r3 + EGIT_REPO_URI="https://git.kernel.org/pub/scm/linux/kernel/git/firmware/${PN}.git"; +else + if [[ -n "${MY_COMMIT}" ]]; then + SRC_URI="https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/snapshot/${MY_COMMIT}.tar.gz -> ${P}.tar.gz" + else + SRC_URI="https://mirrors.edge.kernel.org/pub/linux/kernel/firmware/${P}.tar.xz"; + fi + + KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86" +fi + +DESCRIPTION="Linux firmware files" +HOMEPAGE="https://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git"; + +LICENSE="GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 ) + redistributable? ( + linux-fw-redistributable ( BSD-2 BSD BSD-4 ISC MIT no-source-code ) ) + unknown-license? ( all-rights-reserved )" +SLOT="0" +IUSE="initramfs +redistributable savedconfig unknown-license" +REQUIRED_USE="initramfs? ( redistributable )" + +RESTRICT="strip test + unknown-license? ( bindist )" + +BDEPEND="initramfs? ( app-arch/cpio )" + +#add anything else that collides to this +RDEPEND="!savedconfig? ( + redistributable? ( + !sys-firmware/alsa-firmware[alsa_cards_ca0132] + !sys-block/qla-fc-firmware + !sys-firmware/iwl1000-ucode + !sys-firmware/iwl6005-ucode + !sys-firmware/iwl6030-ucode + !sys-firmware/iwl6050-ucode + !sys-firmware/iwl3160-ucode + !sys-firmware/iwl7260-ucode + !sys-firmware/iwl3160-7260-bt-ucode + !sys-firmware/raspberrypi-wifi-ucode + ) + unknown-license? ( + !sys-firmware/alsa-firmware[alsa_cards_korg1212] + !sys-firmware/alsa-firmware[alsa_cards_maestro3] + !sys-firmware/alsa-firmware[alsa_cards_sb16] + !sys-firmware/alsa-firmware[alsa_cards_ymfpci] + ) + )" + +QA_PREBUILT="*" + +pkg_pretend() { + use initramfs && mount-boot_
[gentoo-commits] repo/gentoo:master commit in: net-vpn/wireguard-tools/
commit: 129df22822bfdadbff8e54ebfae088e09a07d6c0 Author: Jason A. Donenfeld gentoo org> AuthorDate: Wed May 12 23:39:47 2021 + Commit: Jason A. Donenfeld gentoo org> CommitDate: Wed May 12 23:39:47 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=129df228 net-vpn/wireguard-tools: drop old Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Jason A. Donenfeld gentoo.org> net-vpn/wireguard-tools/Manifest | 4 - .../wireguard-tools-1.0.20200513.ebuild| 116 - .../wireguard-tools-1.0.20200827.ebuild| 116 - .../wireguard-tools-1.0.20210223.ebuild| 116 - .../wireguard-tools-1.0.20210315.ebuild| 116 - 5 files changed, 468 deletions(-) diff --git a/net-vpn/wireguard-tools/Manifest b/net-vpn/wireguard-tools/Manifest index 6ccd2380ac7..bb9f64d7e73 100644 --- a/net-vpn/wireguard-tools/Manifest +++ b/net-vpn/wireguard-tools/Manifest @@ -1,5 +1 @@ -DIST wireguard-tools-1.0.20200513.tar.xz 94500 BLAKE2B 34a39533018416df382d180da76d6494feec1d40208c9df427c1979817dbe138c217fe4c4f4cf5cecd3c4053e6f73f1863d1e0a9ed2cad41899dda5387c15844 SHA512 4d27b262350b6b47843a323c2e7ab8d2bdd48065c265778abdec85b3f6fc92aa9af77d76e368df9cc8e435eae1c0ce50fed52e1d78db54358c1884d34be08d2c -DIST wireguard-tools-1.0.20200827.tar.xz 94788 BLAKE2B d7d881a56819c028b37c11b9a44e3304a0f49250aa6ce3da894802dc2546b755f790ddd3fbc14ec1e0f653ead744434ee540c20226373122d131d7deeae94544 SHA512 843b70050d24f142262b672daee44cdccab508b52f42b19a32c275a17d40fd8fb66136a22ef2a4602217e821703bb36a261e474b465807308f52e6a0ee49e267 -DIST wireguard-tools-1.0.20210223.tar.xz 95444 BLAKE2B 59606684c08893c40ac14f9d021013c741f1ea80dc5a07946ec2597d8c91f6c8e1ebbc5714d04ea6d7d9356362a9d5598a578019ead38a2e327a2162d1d1a9af SHA512 98855853a3ecfce23a0a6bf4a885c85efaf2b08c9a92e0d3800fe40ae9adf05fdf4443150a71319bd9b53e314c8032694ea978db850a238813232a0c04edf692 -DIST wireguard-tools-1.0.20210315.tar.xz 96988 BLAKE2B d7b088a63fb386dc811f10681f6312572b360b211188630f7a76bb848ef01aac84205d62bd72edef2bac8a3e97eedccabdc2e092b8d70df8d7169d064d469831 SHA512 2ebc5e5a248f6b8c19cbb8bcc3c375ad339a16bf27e32346fb7cde21b9cfb1efdf877e0e5ea4a511f7cb69ff184a6731e76492e03cf490f7d49368e7f145b72e DIST wireguard-tools-1.0.20210424.tar.xz 96816 BLAKE2B 4787624d296c22241ff366c799eb07e1e718534eab9c998df24003380ed9743f76c3b8f779c7e534404573583c9654a43527d4c96de0def78a3d88d30ca6985e SHA512 b919c7ce1e8ee8660ccc1490d3dad7817f3d6f0ab79f26866e8ed10d40545a9ddca67959ff6cc84ac36a91683c1f58d274d91d47f40c0b9a7bfee4009dcbbf59 diff --git a/net-vpn/wireguard-tools/wireguard-tools-1.0.20200513.ebuild b/net-vpn/wireguard-tools/wireguard-tools-1.0.20200513.ebuild deleted file mode 100644 index d38fb67b7a6..000 --- a/net-vpn/wireguard-tools/wireguard-tools-1.0.20200513.ebuild +++ /dev/null @@ -1,116 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit linux-info bash-completion-r1 systemd toolchain-funcs - -DESCRIPTION="Required tools for WireGuard, such as wg(8) and wg-quick(8)" -HOMEPAGE="https://www.wireguard.com/"; - -if [[ ${PV} == ]]; then - inherit git-r3 - EGIT_REPO_URI="https://git.zx2c4.com/wireguard-tools"; -else - SRC_URI="https://git.zx2c4.com/wireguard-tools/snapshot/wireguard-tools-${PV}.tar.xz"; - KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86" -fi - -LICENSE="GPL-2" -SLOT="0" -IUSE="+wg-quick" - -BDEPEND="virtual/pkgconfig" -DEPEND="" -RDEPEND="${DEPEND} - wg-quick? ( - || ( net-firewall/nftables net-firewall/iptables ) - virtual/resolvconf - ) -" - -wg_quick_optional_config_nob() { - CONFIG_CHECK="$CONFIG_CHECK ~$1" - declare -g ERROR_$1="CONFIG_$1: This option is required for automatic routing of default routes inside of wg-quick(8), though it is not required for general WireGuard usage." -} - -pkg_setup() { - if use wg-quick; then - wg_quick_optional_config_nob IP_ADVANCED_ROUTER - wg_quick_optional_config_nob IP_MULTIPLE_TABLES - wg_quick_optional_config_nob IPV6_MULTIPLE_TABLES - if has_version net-firewall/nftables; then - wg_quick_optional_config_nob NF_TABLES - wg_quick_optional_config_nob NF_TABLES_IPV4 - wg_quick_optional_config_nob NF_TABLES_IPV6 - wg_quick_optional_config_nob NFT_CT - wg_quick_optional_config_nob NFT_FIB - wg_quick_optional_config_nob NFT_FIB_IPV4 - wg_quick_optional_config_nob NFT_FIB_IPV6 - wg_quick_optional_config_nob NF_CONNTRACK_MARK - elif has_version net-firewall/iptables; then -
[gentoo-commits] repo/gentoo:master commit in: dev-lang/go/
commit: d5a71f48d8187ef86ae15b111ee7415bdb039d58 Author: William Hubbs gentoo org> AuthorDate: Wed May 12 21:50:56 2021 + Commit: William Hubbs gentoo org> CommitDate: Wed May 12 22:11:58 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5a71f48 dev-lang/go: 1.15.12 and 1.16.4 bump Bug: https://bugs.gentoo.org/788640 Signed-off-by: William Hubbs gentoo.org> dev-lang/go/Manifest | 2 + dev-lang/go/go-1.15.12.ebuild | 189 ++ dev-lang/go/go-1.16.4.ebuild | 189 ++ 3 files changed, 380 insertions(+) diff --git a/dev-lang/go/Manifest b/dev-lang/go/Manifest index cd5a1772845..cd742ecdc31 100644 --- a/dev-lang/go/Manifest +++ b/dev-lang/go/Manifest @@ -1,4 +1,6 @@ DIST go1.15.10.src.tar.gz 23021993 BLAKE2B 8143f7703d07d4793521bbb6b935b87ecd87df451cc5d03370a01bddabc284e85ec94a16fed378ee9ac8e3f0d6999402025bb1d6afa3c1810c6343205c4eb2d4 SHA512 4f0ceff8dc035ec50cd0d136678573f4d624bca6a19293d5ffd75868d94d264291e44519bc450e40e8de486ee44d72050eecf86cbae1f0d64dee00f90764 DIST go1.15.11.src.tar.gz 23029946 BLAKE2B b937a8e350b6a30e71427d8cbc52edb73e11f055c16890c81ba4bf2f6aa90fd223f0af9517021741e791c22b78f840b3485ea8df4853865dceae354f4803c55d SHA512 52a107220f02197f07c0d3afef403c3762428c1f69107fa7123bc6cdf6b47dd4e65f2ab3979ad7d12a265b0c9bd0b66e6e50eb91f7fa994ba22882f117afe289 +DIST go1.15.12.src.tar.gz 23035406 BLAKE2B b5c79bb243b0052e7a3d58538ae734bbb38839654ffc0e1cf266d360c4f35ac1a8b02c999306a0c1bc598d6ec0c9b3326fea278163b49cd7becc820c7a129bd4 SHA512 9fdb0e74c0b4e8e5d8d45cbdb6f1d4be4d40549ef10629350856c3e045a82567a0418e949dfc229df7eea091ababec6b3e4e12b1bd424e14d7b10ef989e5c232 DIST go1.16.2.src.tar.gz 20905135 BLAKE2B 35fccc72604bf8cc7b1b5677d995b88e3232559e32af51f96a63bfc8cabecec09d885b5b8aa4b2ba03c481254da20dbf9bd83387091931c08a1c5c180c071931 SHA512 d14858a75cc7411975aaca705e66145287dc96b4fac1b1b06b95377dc5e5d2762f060973744114f42c780b34ea4baef7038c94616649c2dcc5c97e261cefc6bd DIST go1.16.3.src.tar.gz 20912861 BLAKE2B da6752d06b86a5349a1bc11e7e4c61543fa75cf72d971fb7559c059b3d5d7721d4cba16ad63eeb00398c6e0c8b1b1d42f07c665182b4b70da83fe648f813eee0 SHA512 8808a3112a5bc89799491ed1aa1cb8744a5cc8d3cb5caa2a7dd711405266925093f90d437fccb66a48e5f994c7339077814f495a88baa7961e9cc9b0a6a838c7 +DIST go1.16.4.src.tar.gz 20917203 BLAKE2B 4602a20ced74dba86938283a736d5235fe5dfb34ae742c44cdcd7ae2453d4654ea5757d0be76b6687d1d34c1b8c32681c41398d1a04ae72d491ee1d8b296d16d SHA512 e1b64610e22e657d9c65094e679cec50f59ff338c0ef102e54debcced1bc032390122456451fffb2d26d45c6db2f55bb9ef7f56ce479f6f1c2c2e6cc49442d86 diff --git a/dev-lang/go/go-1.15.12.ebuild b/dev-lang/go/go-1.15.12.ebuild new file mode 100644 index 000..9d3bb807e83 --- /dev/null +++ b/dev-lang/go/go-1.15.12.ebuild @@ -0,0 +1,189 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +export CBUILD=${CBUILD:-${CHOST}} +export CTARGET=${CTARGET:-${CHOST}} + +MY_PV=${PV/_/} + +inherit toolchain-funcs + +case ${PV} in +**) + EGIT_REPO_URI="https://github.com/golang/go.git"; + inherit git-r3 + ;; +*) + SRC_URI="https://storage.googleapis.com/golang/go${MY_PV}.src.tar.gz " + S="${WORKDIR}"/go + case ${PV} in + *_beta*|*_rc*) ;; + *) + KEYWORDS="-* ~amd64 ~arm ~arm64 ~ppc64 ~s390 ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris" + ;; + esac +esac + +DESCRIPTION="A concurrent garbage collected and typesafe programming language" +HOMEPAGE="https://golang.org"; + +LICENSE="BSD" +SLOT="0/${PV}" + +BDEPEND="|| ( + dev-lang/go + dev-lang/go-bootstrap )" +RDEPEND="!https://golang.org/issue/2775 + dodir /usr/lib/go + cp -R api bin doc lib pkg misc src test "${ED}"/usr/lib/go + einstalldocs + + # testdata directories are not needed on the installed system + rm -fr $(find "${ED}"/usr/lib/go -iname testdata -type d -print) + + local bin_path + if go_cross_compile; then + bin_path="bin/$(go_tuple)" + else + bin_path=bin + fi + local f x + for x in ${bin_path}/*; do + f=${x##*/} + dosym ../lib/go/${bin_path}/${f} /usr/bin/${f} + done + + # install the @golang-rebuild set for Portage + insinto /usr/share/portage/config/sets + newins "${FILESDIR}"/go-sets.conf go.conf +} + +pkg_postinst() { + [[ -z ${REPLACING_VERSIONS} ]] && return + einfo "After ${CATEGORY}/${PN} is updated it is recommended to rebuild" + einfo "all packages compiled with previous versions of ${CATEGORY}/${PN}" + einfo "due to the static linking nature of go." + einfo "If this is not done, the packages compiled with the older" + einfo "version of the compiler will not be updated until they are" + e
[gentoo-commits] repo/gentoo:master commit in: gnome-base/gnome-core-libs/
commit: 3c0abe1fed4ba1494d680bafe791589a165458da Author: Matt Turner gentoo org> AuthorDate: Wed May 5 14:55:33 2021 + Commit: Matt Turner gentoo org> CommitDate: Wed May 12 22:01:30 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c0abe1f gnome-base/gnome-core-libs: Version bump to 40.0 Signed-off-by: Matt Turner gentoo.org> .../gnome-core-libs/gnome-core-libs-40.0.ebuild| 39 ++ 1 file changed, 39 insertions(+) diff --git a/gnome-base/gnome-core-libs/gnome-core-libs-40.0.ebuild b/gnome-base/gnome-core-libs/gnome-core-libs-40.0.ebuild new file mode 100644 index 000..19884503d8c --- /dev/null +++ b/gnome-base/gnome-core-libs/gnome-core-libs-40.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Sub-meta package for the core libraries of GNOME 3" +HOMEPAGE="https://www.gnome.org/"; +LICENSE="metapackage" +SLOT="3.0" +IUSE="cups python" + +# when unmasking for an arch +# double check none of the deps are still masked ! +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" + +# Note to developers: +# This is a wrapper for the core libraries used by GNOME 3 +RDEPEND=" + >=dev-libs/glib-2.68.0:2 + >=x11-libs/gdk-pixbuf-2.42.4:2 + >=x11-libs/pango-1.48.3 + >=x11-libs/gtk+-3.24.27:3[cups?] + >=dev-libs/atk-2.36.0 + >=gnome-base/librsvg-2.50.3 + >=gnome-base/gnome-desktop-${PV}:3 + + >=gnome-base/gvfs-1.48.0 + >=gnome-base/dconf-0.40.0 + + >=media-libs/gstreamer-1.16.2:1.0 + >=media-libs/gst-plugins-base-1.16.2:1.0 + >=media-libs/gst-plugins-good-1.16.2:1.0 + + python? ( >=dev-python/pygobject-3.40.0:3 ) +" +DEPEND="" +BDEPEND="" + +S="${WORKDIR}"
[gentoo-commits] repo/gentoo:master commit in: gnome-base/gnome/
commit: b93e3e58116eba0a64d68376aea1fad7dfbd Author: Matt Turner gentoo org> AuthorDate: Wed May 5 15:00:04 2021 + Commit: Matt Turner gentoo org> CommitDate: Wed May 12 22:07:33 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b93e3e58 gnome-base/gnome: Version bump to 40.0 Signed-off-by: Matt Turner gentoo.org> gnome-base/gnome/gnome-40.0.ebuild | 52 ++ 1 file changed, 52 insertions(+) diff --git a/gnome-base/gnome/gnome-40.0.ebuild b/gnome-base/gnome/gnome-40.0.ebuild new file mode 100644 index 000..5aaa2695cee --- /dev/null +++ b/gnome-base/gnome/gnome-40.0.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Meta package for GNOME 3, merge this package to install" +HOMEPAGE="https://www.gnome.org/"; + +LICENSE="metapackage" +SLOT="2.0" # Cannot be installed at the same time as gnome-2 + +# when unmasking for an arch +# double check none of the deps are still masked ! +KEYWORDS="~amd64 ~arm64 ~x86" + +IUSE="accessibility +bluetooth +classic cups +extras" + +S=${WORKDIR} + +# TODO: check accessibility completeness +RDEPEND=" + >=gnome-base/gnome-core-libs-${PV}[cups?] + >=gnome-base/gnome-core-apps-${PV}[cups?,bluetooth?] + + >=gnome-base/gdm-40.0 + + >=x11-wm/mutter-${PV} + >=gnome-base/gnome-shell-${PV}[bluetooth?] + >=media-fonts/cantarell-0.301 + + >=x11-themes/gnome-backgrounds-40.0 + x11-themes/sound-theme-freedesktop + + accessibility? ( + >=app-accessibility/at-spi2-atk-2.38.0 + >=app-accessibility/at-spi2-core-2.40.0 + >=app-accessibility/orca-40.0 + >=gnome-extra/mousetweaks-3.32.0 + ) + classic? ( >=gnome-extra/gnome-shell-extensions-40.0 ) + extras? ( >=gnome-base/gnome-extra-apps-${PV} ) +" +PDEPEND=">=gnome-base/gvfs-1.48.0[udisks]" + +DEPEND="" +BDEPEND="" + +pkg_postinst() { + # Remind people where to find our project information + elog "Please remember to look at https://wiki.gentoo.org/wiki/Project:GNOME"; + elog "for information about the project and documentation." +}
[gentoo-commits] repo/gentoo:master commit in: gnome-base/gnome-core-apps/
commit: 9e08ab1ffd4f343f15ebd68b6bc6987ef31d3908 Author: Matt Turner gentoo org> AuthorDate: Wed May 5 14:58:29 2021 + Commit: Matt Turner gentoo org> CommitDate: Wed May 12 22:01:30 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e08ab1f gnome-base/gnome-core-apps: Version bump to 40.0 Signed-off-by: Matt Turner gentoo.org> .../gnome-core-apps/gnome-core-apps-40.0.ebuild| 54 ++ 1 file changed, 54 insertions(+) diff --git a/gnome-base/gnome-core-apps/gnome-core-apps-40.0.ebuild b/gnome-base/gnome-core-apps/gnome-core-apps-40.0.ebuild new file mode 100644 index 000..355bf69f66c --- /dev/null +++ b/gnome-base/gnome-core-apps/gnome-core-apps-40.0.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Sub-meta package for the core applications integrated with GNOME 3" +HOMEPAGE="https://www.gnome.org/"; +LICENSE="metapackage" +SLOT="3.0" +IUSE="+bluetooth cups" + +# when unmasking for an arch +# double check none of the deps are still masked ! +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" + +# gnome-color-manager min version enforced here due to control-center pulling it in +# tepl min version for gedit deptree +RDEPEND=" + >=gnome-base/gnome-core-libs-${PV}[cups?] + + >=gnome-base/gnome-session-40.0 + >=gnome-base/gnome-settings-daemon-40.0[cups?] + >=gnome-base/gnome-control-center-40.0[cups?] + >=gnome-extra/gnome-color-manager-3.36.0 + + >=app-crypt/gcr-3.38.1 + >=gnome-base/nautilus-40.0 + >=gnome-base/gnome-keyring-40.0 + >=gnome-extra/evolution-data-server-3.${PV} + + >=app-crypt/seahorse-40.0 + >=gui-libs/tepl-6.0.0 + >=app-editors/gedit-40.0 + >=app-text/evince-40.0 + >=gnome-extra/gnome-contacts-40.0 + >=media-gfx/eog-40.0 + >=media-video/totem-3.38.0 + >=x11-terms/gnome-terminal-3.40.0 + + >=gnome-extra/gnome-user-docs-40.0 + >=gnome-extra/yelp-40.0 + + >=x11-themes/adwaita-icon-theme-40.0 + + bluetooth? ( >=net-wireless/gnome-bluetooth-3.34.5 ) +" +DEPEND="" +BDEPEND="" + +# cdr? ( >=app-cdr/brasero-3.12.2 ) # not part of gnome releng release anymore +# >=gnome-base/gnome-menus-3.13.3:3 # not used by core gnome anymore, just gnome-classic extensions +# >=net-im/empathy-3.12.12 # not part of gnome releng core or apps suite anymore + +S="${WORKDIR}"
[gentoo-commits] repo/gentoo:master commit in: gnome-base/gnome-light/
commit: 0806ab8c010e37424261bb80430fb8a1892c60f3 Author: Matt Turner gentoo org> AuthorDate: Wed May 5 14:55:39 2021 + Commit: Matt Turner gentoo org> CommitDate: Wed May 12 22:07:32 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0806ab8c gnome-base/gnome-light: Version bump to 40.0 Signed-off-by: Matt Turner gentoo.org> gnome-base/gnome-light/gnome-light-40.0.ebuild | 60 ++ 1 file changed, 60 insertions(+) diff --git a/gnome-base/gnome-light/gnome-light-40.0.ebuild b/gnome-base/gnome-light/gnome-light-40.0.ebuild new file mode 100644 index 000..b421955d0ca --- /dev/null +++ b/gnome-base/gnome-light/gnome-light-40.0.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +P_RELEASE="$(ver_cut 1-2)" + +DESCRIPTION="Meta package for GNOME-Light, merge this package to install" +HOMEPAGE="https://www.gnome.org/"; +LICENSE="metapackage" +SLOT="2.0" +IUSE="cups +gnome-shell" + +KEYWORDS="~amd64 ~arm ~x86" + +# XXX: Note to developers: +# This is a wrapper for the 'light' GNOME 3 desktop, and should only consist of +# the bare minimum of libs/apps needed. It is basically gnome-base/gnome without +# any apps, but shouldn't be used by users unless they know what they are doing. +# cantarell minimum version is ensured here as gnome-shell depends on it. +RDEPEND=" + >=gnome-base/gnome-core-libs-${PV}[cups?] + + >=gnome-base/gnome-session-40.0 + >=gnome-base/gnome-settings-daemon-40.0[cups?] + >=gnome-base/gnome-control-center-40.0[cups?] + + >=gnome-base/nautilus-40.0 + + gnome-shell? ( + >=x11-wm/mutter-${PV} + >=dev-libs/gjs-1.68.0 + >=gnome-base/gnome-shell-${PV} + >=media-fonts/cantarell-0.301 + ) + + >=x11-themes/adwaita-icon-theme-40.0 + >=x11-themes/gnome-themes-standard-3.28 + >=x11-themes/gnome-backgrounds-${P_RELEASE} + + >=x11-terms/gnome-terminal-3.40.0 +" +DEPEND="" +PDEPEND=">=gnome-base/gvfs-1.48.0" +BDEPEND="" +S="${WORKDIR}" + +pkg_pretend() { + if ! use gnome-shell; then + # Users probably want to use gnome-flashback, e16, sawfish, etc + ewarn "You're not installing GNOME Shell" + ewarn "You will have to install and manage a window manager by yourself" + fi +} + +pkg_postinst() { + # Remember people where to find our project information + elog "Please remember to look at https://wiki.gentoo.org/wiki/Project:GNOME"; + elog "for information about the project and documentation." +}
[gentoo-commits] repo/gentoo:master commit in: gnome-base/gnome-extra-apps/
commit: 3638a3f5c15a4d02bfcb25cd14682cc4c286b9d0 Author: Matt Turner gentoo org> AuthorDate: Wed May 5 17:27:08 2021 + Commit: Matt Turner gentoo org> CommitDate: Wed May 12 22:07:32 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3638a3f5 gnome-base/gnome-extra-apps: Version bump to 40.0 Signed-off-by: Matt Turner gentoo.org> .../gnome-extra-apps/gnome-extra-apps-40.0.ebuild | 76 ++ 1 file changed, 76 insertions(+) diff --git a/gnome-base/gnome-extra-apps/gnome-extra-apps-40.0.ebuild b/gnome-base/gnome-extra-apps/gnome-extra-apps-40.0.ebuild new file mode 100644 index 000..4c3b07cd0a2 --- /dev/null +++ b/gnome-base/gnome-extra-apps/gnome-extra-apps-40.0.ebuild @@ -0,0 +1,76 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Sub-meta package for the applications of GNOME 3" +HOMEPAGE="https://www.gnome.org/"; +LICENSE="metapackage" +SLOT="3.0" +IUSE="+games share +shotwell +tracker" + +KEYWORDS="~amd64 ~arm64 ~x86" + +# Note to developers: +# This is a wrapper for the extra apps integrated with GNOME 3 +# Keep pkg order within a USE flag as upstream releng versions file +# TODO: Should we keep these here: gnome-dictionary, gucharmap, sound-juicer, vinagre; replace gucharmap with gnome-characters? +# TODO: Add gnome-remote-desktop as replacement for vino that was removed from meta in 3.36? +# gnome-documents removed for now, as it didn't find a good place upstream and is getting dropped from default sets for distros for 3.30 (and for 3.26 it required newer tracker than we had at the time) +RDEPEND=" + >=gnome-base/gnome-core-libs-${PV} + + >=sys-apps/baobab-40.0 + >=media-video/cheese-3.38.0 + >=www-client/epiphany-40.0 + >=app-arch/file-roller-3.38.0 + >=gnome-extra/gnome-calculator-40.0 + >=gnome-extra/gnome-calendar-40.0 + >=gnome-extra/gnome-characters-40.0 + >=sys-apps/gnome-disk-utility-40.0 + >=media-gfx/gnome-font-viewer-40.0 + >=media-gfx/gnome-screenshot-40.0 + >=gnome-extra/gnome-system-monitor-40.0 + >=gnome-extra/gnome-weather-40.0 + >=gnome-extra/gucharmap-13.0.7:2.90 + >=gnome-extra/sushi-3.38.0 + >=media-sound/sound-juicer-3.38.0 + + >=gnome-base/dconf-editor-3.38.3 + >=app-dicts/gnome-dictionary-40.0 + >=mail-client/evolution-3.${PV} + >=gnome-extra/gnome-tweaks-40.0 + >=gnome-extra/nautilus-sendto-3.8.6 + >=net-misc/vinagre-3.22.0 + + games? ( + >=games-puzzle/five-or-more-3.32.2 + >=games-board/four-in-a-row-3.38.1 + >=games-board/gnome-chess-40.0 + >=games-puzzle/gnome-klotski-3.38.2 + >=games-board/gnome-mahjongg-3.38.3 + >=games-board/gnome-mines-40.0 + >=games-arcade/gnome-nibbles-3.38.2 + >=games-arcade/gnome-robots-40.0 + >=games-puzzle/gnome-sudoku-40.0 + >=games-puzzle/gnome-taquin-3.38.1 + >=games-puzzle/gnome-tetravex-3.38.2 + >=games-puzzle/hitori-3.36.0 + >=games-board/iagno-3.38.1 + >=games-puzzle/lightsoff-40.0 + >=games-puzzle/quadrapassel-3.38.1 + >=games-puzzle/swell-foop-40.0 + >=games-board/tali-40.0 + ) + share? ( >=gnome-extra/gnome-user-share-3.34.0 ) + shotwell? ( >=media-gfx/shotwell-0.30.11 ) + tracker? ( + >=app-misc/tracker-3 + >=app-misc/tracker-miners-3 + >=media-gfx/gnome-photos-40.0 + >=media-sound/gnome-music-40.0 + ) +" +DEPEND="" +BDEPEND="" +S=${WORKDIR}
[gentoo-commits] repo/gentoo:master commit in: www-client/epiphany/
commit: c1c340e7f547f1525c30b46abea732aba8af3c53 Author: Matt Turner gentoo org> AuthorDate: Sun Apr 18 04:29:28 2021 + Commit: Matt Turner gentoo org> CommitDate: Wed May 12 22:00:05 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1c340e7 www-client/epiphany: Version bump to 40.1 Signed-off-by: Matt Turner gentoo.org> www-client/epiphany/Manifest | 1 + www-client/epiphany/epiphany-40.1.ebuild | 86 2 files changed, 87 insertions(+) diff --git a/www-client/epiphany/Manifest b/www-client/epiphany/Manifest index 0b1bb1c5b7d..834aa134690 100644 --- a/www-client/epiphany/Manifest +++ b/www-client/epiphany/Manifest @@ -1,2 +1,3 @@ DIST epiphany-3.34.4.tar.xz 5295624 BLAKE2B c1867f62f1a0675466e2679d7f9e568abac6a4f3f56c498abfdc3d4ca4510696c4e9cbcab99a8be90bb50c77b04bcb86456a82dbefa76a2a7ec2c6b373ce9c39 SHA512 d9700196e0397032dd84d1fbf14d193f4212dd8dc054320267b4dfc8a59246de9c93fb786ba76463f0c09e7997b26efa17288cc06eddd0fb4aad2e4bdd4276ce DIST epiphany-3.36.4.tar.xz 5824436 BLAKE2B f837cd5c8cbdd046851f7fcd7f5360a759952cde54231656226b1e878ebdd574d72ed4ad16a6db83556ab8a6eaf754b67b1a195c1fcda2f1635099c9edb3 SHA512 f80a2a6fa4b2fa158ff2232f4e2b3d3cfe69e9368290805db741646cd67d3485a44e4ea8cba29d152abc0f69cbc0c6274fe5d1ec20347de2e077ac940e08aef3 +DIST epiphany-40.1.tar.xz 5374236 BLAKE2B 71508de3554ef646061ab7ff62df8892fed0b7add112309d2660ed3795fee3e2e9460bbc80c7cec402e1922eafffcffae7845761a23b13f3245f5a688599e7ba SHA512 8598ae77f8ba446e132a82a256a346ef9b3c1f9b786d24f0fd4f891f75aba476197f3b155e1aa08ffd0b0a9357604b46bea6b9da34d138ff21bc41a46fa24c7f diff --git a/www-client/epiphany/epiphany-40.1.ebuild b/www-client/epiphany/epiphany-40.1.ebuild new file mode 100644 index 000..141d7c77d37 --- /dev/null +++ b/www-client/epiphany/epiphany-40.1.ebuild @@ -0,0 +1,86 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit gnome.org gnome2-utils meson xdg virtualx + +DESCRIPTION="GNOME webbrowser based on Webkit" +HOMEPAGE="https://wiki.gnome.org/Apps/Web"; + +LICENSE="GPL-3+" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" + +DEPEND=" + >=dev-libs/glib-2.64.0:2 + >=x11-libs/gtk+-3.24.0:3 + >=dev-libs/nettle-3.4:= + >=net-libs/webkit-gtk-2.31.1:4= + >=x11-libs/cairo-1.2 + >=app-crypt/gcr-3.5.5:=[gtk] + >=x11-libs/gdk-pixbuf-2.36.5:2 + gnome-base/gsettings-desktop-schemas + >=app-text/iso-codes-0.35 + >=dev-libs/json-glib-1.2.4 + app-arch/libarchive:= + >=dev-libs/libdazzle-3.37.1 + >=gui-libs/libhandy-1.1.0:1= + >=x11-libs/libnotify-0.5.1 + >=app-crypt/libsecret-0.19 + >=net-libs/libsoup-2.48.0:2.4 + >=dev-libs/libxml2-2.6.12:2 + >=dev-db/sqlite-3.22:3 + dev-libs/gmp:0= +" +RDEPEND="${DEPEND} + x11-themes/adwaita-icon-theme +" +# appstream-glib needed for appdata.xml gettext translation +BDEPEND=" + dev-libs/appstream-glib + dev-util/gdbus-codegen + dev-util/glib-utils + dev-util/itstool + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig +" + +PATCHES=( + # Allow /var/tmp prefixed recursive delete (due to package manager setting TMPDIR) + "${FILESDIR}"/var-tmp-tests.patch +) + +src_configure() { + local emesonargs=( + -Ddeveloper_mode=false + -Dlibportal=disabled + # maybe enable later if network-sandbox is off, but in 3.32.4 the network test + # is commented out upstream anyway + -Dnetwork_tests=disabled + -Dtech_preview=false + $(meson_feature test unit_tests) + ) + meson_src_configure +} + +src_test() { + virtx meson_src_test +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update + + if ! has_version net-libs/webkit-gtk[jpeg2k]; then + ewarn "Your net-libs/webkit-gtk is built without USE=jpeg2k." + ewarn "Various image galleries/managers may be broken." + fi +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +}
[gentoo-commits] repo/gentoo:master commit in: net-libs/webkit-gtk/, net-libs/webkit-gtk/files/
commit: e478f39b721645ca9142a15d75f3947adcd2c1a9 Author: Matt Turner gentoo org> AuthorDate: Sun May 2 20:43:17 2021 + Commit: Matt Turner gentoo org> CommitDate: Wed May 12 22:00:05 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e478f39b net-libs/webkit-gtk: Version bump to 2.32.1 Closes: https://github.com/gentoo/gentoo/pull/20314 Signed-off-by: Matt Turner gentoo.org> net-libs/webkit-gtk/Manifest | 1 + .../files/2.28.2-opengl-without-X-fixes.patch | 2 + ...e-CompletionHandler-when-USE_OPENGL_OR_ES.patch | 36 +++ net-libs/webkit-gtk/webkit-gtk-2.32.1.ebuild | 301 + 4 files changed, 340 insertions(+) diff --git a/net-libs/webkit-gtk/Manifest b/net-libs/webkit-gtk/Manifest index 47c55e0ecf0..a3291c457cb 100644 --- a/net-libs/webkit-gtk/Manifest +++ b/net-libs/webkit-gtk/Manifest @@ -1 +1,2 @@ DIST webkitgtk-2.30.6.tar.xz 22311524 BLAKE2B 369a2f03b99a17b3e7ffbd0a8528a0d7f65334138552e7684fdec6b3003fab8d9a946f1b549849562b71e9a0daa3f870578d088833db2e8e291974bd38eaed05 SHA512 fe2de42ea66162cf28002bd2bd83890c8f8f6336fea873f769a57bae4d6cb8fd6c41af224e320608bcb47c8f0f41d150ac47004e9ef52127d208c01ae6dcf47f +DIST webkitgtk-2.32.1.tar.xz 23321600 BLAKE2B a2d0b1cfd1035611427ab23f4723b8ab4c3087b21f3b14716a0bc9b128eba8c74c36dec34709bfc40efa1961416e7b83dceb8c53c1959ce34babb7b5335a5863 SHA512 ff49522c585d3c5c9b88c4176673aebfdf7f2a127d7bc4007008a66c493476ae6551189865e4f0f330a7b332a438b6c951bf1a4c21cd0acf69b7051903d24843 diff --git a/net-libs/webkit-gtk/files/2.28.2-opengl-without-X-fixes.patch b/net-libs/webkit-gtk/files/2.28.2-opengl-without-X-fixes.patch index 6976c3ce4db..7feb2fac42c 100644 --- a/net-libs/webkit-gtk/files/2.28.2-opengl-without-X-fixes.patch +++ b/net-libs/webkit-gtk/files/2.28.2-opengl-without-X-fixes.patch @@ -1,3 +1,5 @@ +https://bugs.webkit.org/show_bug.cgi?id=208907 + From c67efa2bbe2094b40b4e104bb26497c2aff5ce68 Mon Sep 17 00:00:00 2001 From: Mart Raudsepp Date: Sat, 9 May 2020 23:11:52 +0300 diff --git a/net-libs/webkit-gtk/files/2.32.1-Properly-use-CompletionHandler-when-USE_OPENGL_OR_ES.patch b/net-libs/webkit-gtk/files/2.32.1-Properly-use-CompletionHandler-when-USE_OPENGL_OR_ES.patch new file mode 100644 index 000..dfe0ed9ef00 --- /dev/null +++ b/net-libs/webkit-gtk/files/2.32.1-Properly-use-CompletionHandler-when-USE_OPENGL_OR_ES.patch @@ -0,0 +1,36 @@ +From 94cdcd289b993ed4d39c17d4b8b90db7c81a9b10 Mon Sep 17 00:00:00 2001 +From: "commit-qu...@webkit.org" + +Date: Sat, 10 Apr 2021 22:02:50 + +Subject: [PATCH] Properly use CompletionHandler when USE_OPENGL_OR_ES is set + to OFF https://bugs.webkit.org/show_bug.cgi?id=224149 + +Patch by Charlène Wendling on 2021-04-10 +Reviewed by Fujii Hironori. + +* WebProcess/WebPage/CoordinatedGraphics/LayerTreeHost.h: +(WebKit::LayerTreeHost::forceRepaintAsync): + +Canonical link: https://commits.webkit.org/236373@main +git-svn-id: https://svn.webkit.org/repository/webkit/trunk@275802 268f45cc-cd09-0410-ab3c-d52691b4dbfc +--- + Source/WebKit/ChangeLog| 10 ++ + .../WebPage/CoordinatedGraphics/LayerTreeHost.h| 2 +- + 2 files changed, 11 insertions(+), 1 deletion(-) + +diff --git a/Source/WebKit/WebProcess/WebPage/CoordinatedGraphics/LayerTreeHost.h b/Source/WebKit/WebProcess/WebPage/CoordinatedGraphics/LayerTreeHost.h +index 6727d16c8c0b..db65f813267d 100644 +--- a/Source/WebKit/WebProcess/WebPage/CoordinatedGraphics/LayerTreeHost.h b/Source/WebKit/WebProcess/WebPage/CoordinatedGraphics/LayerTreeHost.h +@@ -213,7 +213,7 @@ inline void LayerTreeHost::setRootCompositingLayer(WebCore::GraphicsLayer*) { } + inline void LayerTreeHost::setViewOverlayRootLayer(WebCore::GraphicsLayer*) { } + inline void LayerTreeHost::scrollNonCompositedContents(const WebCore::IntRect&) { } + inline void LayerTreeHost::forceRepaint() { } +-inline bool LayerTreeHost::forceRepaintAsync(CompletionHandler&) { return false; } ++inline void LayerTreeHost::forceRepaintAsync(CompletionHandler&&) { } + inline void LayerTreeHost::sizeDidChange(const WebCore::IntSize&) { } + inline void LayerTreeHost::pauseRendering() { } + inline void LayerTreeHost::resumeRendering() { } +-- +2.26.3 + diff --git a/net-libs/webkit-gtk/webkit-gtk-2.32.1.ebuild b/net-libs/webkit-gtk/webkit-gtk-2.32.1.ebuild new file mode 100644 index 000..eb00847845d --- /dev/null +++ b/net-libs/webkit-gtk/webkit-gtk-2.32.1.ebuild @@ -0,0 +1,301 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{7..9} ) +USE_RUBY="ruby24 ruby25 ruby26 ruby27 ruby30" + +inherit check-reqs cmake flag-o-matic gnome2 pax-utils python-any-r1 ruby-single toolchain-funcs virtualx + +MY_P="webkitgtk-${PV}" +DESCRIPTION="Open source web browser engine" +HOMEPAGE="https://www.webkitgtk.org"; +SRC_URI="https://www.webkitgtk.org/releases/${MY_P}.t
[gentoo-commits] repo/gentoo:master commit in: dev-perl/MogileFS-Server/
commit: 990b8454d01407140d9c43719532d50d489de41f Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed May 12 21:38:35 2021 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Wed May 12 21:38:35 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=990b8454 dev-perl/MogileFS-Server: Rekeyword 2.73 Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Andreas K. Hüttel gentoo.org> dev-perl/MogileFS-Server/MogileFS-Server-2.730.0-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-perl/MogileFS-Server/MogileFS-Server-2.730.0-r1.ebuild b/dev-perl/MogileFS-Server/MogileFS-Server-2.730.0-r1.ebuild index caebd12047c..e8562a9ccfe 100644 --- a/dev-perl/MogileFS-Server/MogileFS-Server-2.730.0-r1.ebuild +++ b/dev-perl/MogileFS-Server/MogileFS-Server-2.730.0-r1.ebuild @@ -16,7 +16,7 @@ REQUIRED_USE="test? ( sqlite ) || ( mysql sqlite postgres )" SLOT="0" LICENSE="|| ( Artistic GPL-2 )" -#KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="~amd64 ~ppc ~x86" MOGILE_USER="mogile" # Warning! It is important that the uid is constant over Gentoo machines
[gentoo-commits] repo/gentoo:master commit in: dev-perl/MogileFS-Server/
commit: 6b7807c8f8f002663349aeed5d6593a76edfb21e Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed May 12 21:32:31 2021 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Wed May 12 21:32:54 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b7807c8 dev-perl/MogileFS-Server: More minimal changeset Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Andreas K. Hüttel gentoo.org> .../MogileFS-Server/MogileFS-Server-2.730.0-r1.ebuild | 15 +-- 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/dev-perl/MogileFS-Server/MogileFS-Server-2.730.0-r1.ebuild b/dev-perl/MogileFS-Server/MogileFS-Server-2.730.0-r1.ebuild index 02edca56803..caebd12047c 100644 --- a/dev-perl/MogileFS-Server/MogileFS-Server-2.730.0-r1.ebuild +++ b/dev-perl/MogileFS-Server/MogileFS-Server-2.730.0-r1.ebuild @@ -18,12 +18,16 @@ SLOT="0" LICENSE="|| ( Artistic GPL-2 )" #KEYWORDS="~amd64 ~ppc ~x86" +MOGILE_USER="mogile" +# Warning! It is important that the uid is constant over Gentoo machines +# As mogilefs may be used with non-local block devices that move! + # Upstream site recommends this, # but it breaks Perlbal # dev-perl/Perlbal-XS-HTTPHeaders RDEPEND=" - acct-group/mogile - acct-user/mogile + acct-group/${MOGILE_USER} + acct-user/${MOGILE_USER} dev-perl/Net-Netmask >=dev-perl/Danga-Socket-1.610.0 >=dev-perl/Sys-Syscall-0.220.0 @@ -44,7 +48,6 @@ BDEPEND="${RDEPEND}" PATCHES=( "${FILESDIR}/${PN}-2.720.0-gentoo-init-conf.patch" ) - DIST_TEST="never verbose" src_install() { @@ -59,21 +62,21 @@ src_install() { newinitd "${S}"/gentoo/init.d/mogautomount mogautomount - diropts -m 700 -o mogile + diropts -m 700 -o ${MOGILE_USER} keepdir /var/mogdata diropts -m 755 -o root dodir /etc/mogilefs insinto /etc/mogilefs - insopts -m 600 -o root -g mogile + insopts -m 600 -o root -g ${MOGILE_USER} newins "${S}"/gentoo/conf/mogilefsd.conf mogilefsd.conf newins "${S}"/gentoo/conf/mogstored.conf mogstored.conf } pkg_postinst() { chmod 640 "${ROOT}"/etc/mogilefs/{mogilefsd,mogstored}.conf - chown root:mogile "${ROOT}"/etc/mogilefs/{mogilefsd,mogstored}.conf + chown root:${MOGILE_USER} "${ROOT}"/etc/mogilefs/{mogilefsd,mogstored}.conf } src_test() {
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Gtk2/
commit: 9589db91efc076620bdf53211899b8b5bbb57ba9 Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed May 12 21:07:04 2021 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Wed May 12 21:32:51 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9589db91 dev-perl/Gtk2: Version bump 1.24993 Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Andreas K. Hüttel gentoo.org> dev-perl/Gtk2/Gtk2-1.249.930.ebuild | 37 + dev-perl/Gtk2/Manifest | 1 + 2 files changed, 38 insertions(+) diff --git a/dev-perl/Gtk2/Gtk2-1.249.930.ebuild b/dev-perl/Gtk2/Gtk2-1.249.930.ebuild new file mode 100644 index 000..e8271cde623 --- /dev/null +++ b/dev-perl/Gtk2/Gtk2-1.249.930.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DIST_AUTHOR=XAOC +DIST_VERSION=1.24993 +inherit virtualx perl-module + +DESCRIPTION="Perl bindings for GTK2" + +LICENSE="LGPL-2.1+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + x11-libs/gtk+:2 + >=dev-perl/Cairo-1 + >=dev-perl/glib-perl-1.280.0 + >=dev-perl/Pango-1.220.0 + +" +DEPEND=" + x11-libs/gtk+:2 +" +BDEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker + >=dev-perl/ExtUtils-Depends-0.300.0 + >=dev-perl/ExtUtils-PkgConfig-1.30.0 + test? ( x11-libs/gdk-pixbuf[jpeg] ) +" + +src_test() { + virtx perl-module_src_test +} diff --git a/dev-perl/Gtk2/Manifest b/dev-perl/Gtk2/Manifest index 8889fafef4c..49771a873ec 100644 --- a/dev-perl/Gtk2/Manifest +++ b/dev-perl/Gtk2/Manifest @@ -1 +1,2 @@ DIST Gtk2-1.24992.tar.gz 768646 BLAKE2B b2b63c55d9e1f7e19911bd4a6b268bf27d79339aeef9f8db32fe2fa24666a30e298158a81647ee54d8ce9f04e48d14d21a57971e81383c12d92447af877ae714 SHA512 a3d0ac22ce0f356f1a73c6b7d27161f76573b64cfde54e76d751ce8318eda9410e57d905e03b2562b8d31b80d3dba2bd4a8a7980a331bd5ca0c6f75e61e4e6f7 +DIST Gtk2-1.24993.tar.gz 766708 BLAKE2B e9286d3feaf3b9493fe6a1c45f5c75a4cd1553a06bc1aedfef1ed25fc9d4d793d4da21911f86112a51478533341b470c5e6ad3cd1913dea863c0557902774843 SHA512 320b10803394b196e0833ab998b854c7e184d6f291657c732a1fddb0c049d01ef192c73e6a095a87b18ff8cb9ac846fcb3682a2dd0c9c86076342e3ca7e55eb5
[gentoo-commits] repo/gentoo:master commit in: dev-perl/PDL-Graphics-Gnuplot/
commit: bcb5c78c214374bd13d7c039fbf0dfccca892b5c Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed May 12 21:01:37 2021 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Wed May 12 21:32:45 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcb5c78c dev-perl/PDL-Graphics-Gnuplot: Version bump 2.016 Closes: https://bugs.gentoo.org/655898 Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Andreas K. Hüttel gentoo.org> dev-perl/PDL-Graphics-Gnuplot/Manifest | 1 + .../PDL-Graphics-Gnuplot-2.16.0.ebuild | 32 ++ 2 files changed, 33 insertions(+) diff --git a/dev-perl/PDL-Graphics-Gnuplot/Manifest b/dev-perl/PDL-Graphics-Gnuplot/Manifest index 987f822168e..f95f5f6adff 100644 --- a/dev-perl/PDL-Graphics-Gnuplot/Manifest +++ b/dev-perl/PDL-Graphics-Gnuplot/Manifest @@ -1,2 +1,3 @@ DIST PDL-Graphics-Gnuplot-2.011.tar.gz 146990 BLAKE2B 6a11d49a897d1e937e63939885b3c7d5a4a00cf0e9c4ec86d4435ef317dab6dec43f374dfe1bd54f7ea19859da0086b7a2f792da49fa5ffc661d75c059ca3636 SHA512 09bd38beaacf914241d2bddf9c159bd6db3a60ed0d15f001faec4c5da2e22cb8313b47ed71b8e6006159b4a0d74cea6ebbaf257fa9774eac7f8a5622cfade0e7 DIST PDL-Graphics-Gnuplot-2.013.tar.gz 149855 BLAKE2B f5ebe0ed1da97c4811b6d6fd52f9c5148efb0c8cb2fa3954134160221c074842c24e92460686b39011f245ca2bec27f4feee822d6f33a383bbff671445816682 SHA512 1cf184f0e4df1f3e42880f24acecdcc95e99bf9340851e0b6c258dd89d759c49852a7db5f83aea8a3714d85ac659d03b0f68e6853d58c7eb2efde6da6423f1f6 +DIST PDL-Graphics-Gnuplot-2.016.tar.gz 149882 BLAKE2B 2c2359d65643f72fac1249650be8343786415a72fd074ab426211e1fc933ce6a02ce789b93820c2a41a687d429b264ff743a3aa39e3df12c1a66de47115167f7 SHA512 3e82a8a10b7b48567e0746238c4b718e491f39afb53b965ae72a4e2aa0567914856bf6343ba3d571fdb240d284fc95570c51c4042d9bbc0e5de8aa6f7aaa21f2 diff --git a/dev-perl/PDL-Graphics-Gnuplot/PDL-Graphics-Gnuplot-2.16.0.ebuild b/dev-perl/PDL-Graphics-Gnuplot/PDL-Graphics-Gnuplot-2.16.0.ebuild new file mode 100644 index 000..f0f84e9eb34 --- /dev/null +++ b/dev-perl/PDL-Graphics-Gnuplot/PDL-Graphics-Gnuplot-2.16.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DIST_VERSION=2.016 +DIST_AUTHOR=ETJ +inherit perl-module + +DESCRIPTION="Gnuplot-based plotting for PDL" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-perl/Alien-Gnuplot + virtual/perl-IO + dev-perl/IPC-Run + virtual/perl-Scalar-List-Utils + dev-perl/PDL + dev-perl/PDL-Transform-Color + dev-perl/Safe-Isa + virtual/perl-Storable + virtual/perl-Time-HiRes + || ( sci-visualization/gnuplot[X] sci-visualization/gnuplot[qt4(-)] ) +" +BDEPEND="${RDEPEND} + >=virtual/perl-ExtUtils-MakeMaker-6.480.0 + test? ( virtual/perl-Test-Simple ) +"
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Bio-Graphics/
commit: 9d99a24ffc634495c7d8bb939f59ab29571b54fb Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed May 12 20:42:54 2021 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Wed May 12 21:32:42 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d99a24f dev-perl/Bio-Graphics: Require GD[jpeg] Closes: https://bugs.gentoo.org/623672 Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Andreas K. Hüttel gentoo.org> dev-perl/Bio-Graphics/Bio-Graphics-2.400.0.ebuild | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-perl/Bio-Graphics/Bio-Graphics-2.400.0.ebuild b/dev-perl/Bio-Graphics/Bio-Graphics-2.400.0.ebuild index c76516e2a49..49bd6518bd8 100644 --- a/dev-perl/Bio-Graphics/Bio-Graphics-2.400.0.ebuild +++ b/dev-perl/Bio-Graphics/Bio-Graphics-2.400.0.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 DIST_AUTHOR=CJFIELDS DIST_VERSION=2.40 @@ -15,11 +15,11 @@ IUSE="" RDEPEND=" dev-perl/CGI - >=dev-perl/GD-2.300.0 + >=dev-perl/GD-2.300.0[jpeg] >=dev-perl/Statistics-Descriptive-2.600.0 <=sci-biology/bioperl-1.6.924 >=sci-biology/bioperl-1.5.9.1 " -DEPEND="${RDEPEND} +BDEPEND="${RDEPEND} >=dev-perl/Module-Build-0.420.0 "
[gentoo-commits] repo/gentoo:master commit in: dev-perl/PDL-Graphics-Gnuplot/
commit: b076348685cd9db1c3a8b51ec2601a5b914a0ac9 Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed May 12 21:01:54 2021 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Wed May 12 21:32:48 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0763486 dev-perl/PDL-Graphics-Gnuplot: Remove old Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Andreas K. Hüttel gentoo.org> dev-perl/PDL-Graphics-Gnuplot/Manifest | 1 - .../PDL-Graphics-Gnuplot-2.11.0-r1.ebuild | 36 -- .../PDL-Graphics-Gnuplot-2.13.0-r1.ebuild | 32 --- 3 files changed, 69 deletions(-) diff --git a/dev-perl/PDL-Graphics-Gnuplot/Manifest b/dev-perl/PDL-Graphics-Gnuplot/Manifest index f95f5f6adff..b3ac2676c59 100644 --- a/dev-perl/PDL-Graphics-Gnuplot/Manifest +++ b/dev-perl/PDL-Graphics-Gnuplot/Manifest @@ -1,3 +1,2 @@ -DIST PDL-Graphics-Gnuplot-2.011.tar.gz 146990 BLAKE2B 6a11d49a897d1e937e63939885b3c7d5a4a00cf0e9c4ec86d4435ef317dab6dec43f374dfe1bd54f7ea19859da0086b7a2f792da49fa5ffc661d75c059ca3636 SHA512 09bd38beaacf914241d2bddf9c159bd6db3a60ed0d15f001faec4c5da2e22cb8313b47ed71b8e6006159b4a0d74cea6ebbaf257fa9774eac7f8a5622cfade0e7 DIST PDL-Graphics-Gnuplot-2.013.tar.gz 149855 BLAKE2B f5ebe0ed1da97c4811b6d6fd52f9c5148efb0c8cb2fa3954134160221c074842c24e92460686b39011f245ca2bec27f4feee822d6f33a383bbff671445816682 SHA512 1cf184f0e4df1f3e42880f24acecdcc95e99bf9340851e0b6c258dd89d759c49852a7db5f83aea8a3714d85ac659d03b0f68e6853d58c7eb2efde6da6423f1f6 DIST PDL-Graphics-Gnuplot-2.016.tar.gz 149882 BLAKE2B 2c2359d65643f72fac1249650be8343786415a72fd074ab426211e1fc933ce6a02ce789b93820c2a41a687d429b264ff743a3aa39e3df12c1a66de47115167f7 SHA512 3e82a8a10b7b48567e0746238c4b718e491f39afb53b965ae72a4e2aa0567914856bf6343ba3d571fdb240d284fc95570c51c4042d9bbc0e5de8aa6f7aaa21f2 diff --git a/dev-perl/PDL-Graphics-Gnuplot/PDL-Graphics-Gnuplot-2.11.0-r1.ebuild b/dev-perl/PDL-Graphics-Gnuplot/PDL-Graphics-Gnuplot-2.11.0-r1.ebuild deleted file mode 100644 index e2bf45e2ef3..000 --- a/dev-perl/PDL-Graphics-Gnuplot/PDL-Graphics-Gnuplot-2.11.0-r1.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DIST_VERSION=2.011 -DIST_AUTHOR=ZOWIE -inherit perl-module - -DESCRIPTION="Gnuplot-based plotting for PDL" - -SLOT="0" -KEYWORDS="amd64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" - -PATCHES=( - "${FILESDIR}/${P}-outputfile.patch" -) - -RDEPEND=" - dev-perl/Alien-Gnuplot - virtual/perl-IO - dev-perl/IPC-Run - virtual/perl-Scalar-List-Utils - dev-perl/PDL - dev-perl/PDL-Transform-Color - dev-perl/Safe-Isa - virtual/perl-Storable - virtual/perl-Time-HiRes - || ( sci-visualization/gnuplot[X] sci-visualization/gnuplot[qt4] ) -" -DEPEND="${RDEPEND} - >=virtual/perl-ExtUtils-MakeMaker-6.480.0 - test? ( virtual/perl-Test-Simple ) -" diff --git a/dev-perl/PDL-Graphics-Gnuplot/PDL-Graphics-Gnuplot-2.13.0-r1.ebuild b/dev-perl/PDL-Graphics-Gnuplot/PDL-Graphics-Gnuplot-2.13.0-r1.ebuild deleted file mode 100644 index 2ad6f7ab8ec..000 --- a/dev-perl/PDL-Graphics-Gnuplot/PDL-Graphics-Gnuplot-2.13.0-r1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DIST_VERSION=2.013 -DIST_AUTHOR=ETJ -inherit perl-module - -DESCRIPTION="Gnuplot-based plotting for PDL" - -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-perl/Alien-Gnuplot - virtual/perl-IO - dev-perl/IPC-Run - virtual/perl-Scalar-List-Utils - dev-perl/PDL - dev-perl/PDL-Transform-Color - dev-perl/Safe-Isa - virtual/perl-Storable - virtual/perl-Time-HiRes - || ( sci-visualization/gnuplot[X] sci-visualization/gnuplot[qt4(-)] ) -" -DEPEND="${RDEPEND} - >=virtual/perl-ExtUtils-MakeMaker-6.480.0 - test? ( virtual/perl-Test-Simple ) -"
[gentoo-commits] repo/gentoo:master commit in: dev-util/systemtap/
commit: 043d596a8a7bf060384714ab063f6b8313365430 Author: Sven Wegener gentoo org> AuthorDate: Wed May 12 20:54:36 2021 + Commit: Sven Wegener gentoo org> CommitDate: Wed May 12 20:57:23 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=043d596a dev-util/systemtap: Version bump to 4.5 Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Sven Wegener gentoo.org> dev-util/systemtap/Manifest | 1 + dev-util/systemtap/systemtap-4.5.ebuild | 115 2 files changed, 116 insertions(+) diff --git a/dev-util/systemtap/Manifest b/dev-util/systemtap/Manifest index 7a49d47e893..e7cf61fc39b 100644 --- a/dev-util/systemtap/Manifest +++ b/dev-util/systemtap/Manifest @@ -1,2 +1,3 @@ DIST systemtap-4.0.tar.gz 5282312 BLAKE2B 9eac1cf9c9f13255ac12642c910b5591b0f5380b2a6337dedcb3d20785c0416900b9bee05f239632f7c548812be35ae90b24f524ab6f5c0c6ef474cf5de834a1 SHA512 66b5ba1902ed974101429dce9fee849273d3dc64e862c057177d158c5f284cc93299819ee8ee49d4bd3b7ff47a3512b1c68b74cad374147ce67fa406c7518c79 DIST systemtap-4.4.tar.gz 5532282 BLAKE2B bcb2f744ad09821ce63d78b3e86eb489013aed247952c72d3dbc4cc6fc1a2b85f948b71c622487876f43b615c147eb1624b2c146e9b4176e3c91e2b7cbef9ea0 SHA512 8fb1fe5071ec99ce3c6bcf82afdc98a3e1abc0ea937f3019b225c3a1879ada30080740b1918a84c6db06fe1893e6d1e7dc84be26c7e597d7feda1efe11354e76 +DIST systemtap-4.5.tar.gz 5549909 BLAKE2B 3c180a49c81070cb374ae23f95f1e90cc3cf2550170363793f46584b201c2284b2ee639f395d73ed6c5b44160825b3cf128bd360b81bc243e71c98e71d779f48 SHA512 8136779a9f5cb0fbaae565eab1ab6fa307f1024dfc2c6c3845acfadff0eecc684ba89aa5d442c7b90c2c73edaab41ca07bae2bad8361f80fe8e9928b40466cd3 diff --git a/dev-util/systemtap/systemtap-4.5.ebuild b/dev-util/systemtap/systemtap-4.5.ebuild new file mode 100644 index 000..5a36994ebf6 --- /dev/null +++ b/dev-util/systemtap/systemtap-4.5.ebuild @@ -0,0 +1,115 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) + +inherit linux-info python-single-r1 + +DESCRIPTION="A linux trace/probe tool" +HOMEPAGE="https://www.sourceware.org/systemtap/"; +SRC_URI="https://www.sourceware.org/${PN}/ftp/releases/${P}.tar.gz"; + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" +IUSE="libvirt selinux sqlite +ssl test zeroconf" +RESTRICT="!test? ( test )" + +RDEPEND=">=dev-libs/elfutils-0.142 + dev-libs/json-c:= + sys-libs/ncurses:0= + sys-libs/readline:0= + ${PYTHON_DEPS} + libvirt? ( >=app-emulation/libvirt-1.0.2 ) + selinux? ( sys-libs/libselinux ) + sqlite? ( dev-db/sqlite:3 ) + ssl? ( + dev-libs/nspr + dev-libs/nss + ) + zeroconf? ( net-dns/avahi ) +" +DEPEND="${RDEPEND} + app-arch/cpio + app-text/xmlto + $(python_gen_cond_dep ' + dev-python/setuptools[${PYTHON_USEDEP}] + ') + >=sys-devel/gettext-0.18.2 + libvirt? ( dev-libs/libxml2 ) +" +RDEPEND="${RDEPEND} + acct-group/stapdev + acct-group/stapsys + acct-group/stapusr +" +BDEPEND="test? ( dev-util/dejagnu )" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +CONFIG_CHECK="~KPROBES ~RELAY ~DEBUG_FS" +ERROR_KPROBES="${PN} requires support for KProbes Instrumentation (KPROBES) - this can be enabled in 'Instrumentation Support -> Kprobes'." +ERROR_RELAY="${PN} works with support for user space relay support (RELAY) - this can be enabled in 'General setup -> Kernel->user space relay support (formerly relayfs)'." +ERROR_DEBUG_FS="${PN} works best with support for Debug Filesystem (DEBUG_FS) - this can be enabled in 'Kernel hacking -> Debug Filesystem'." + +DOCS="AUTHORS HACKING NEWS README" + +PATCHES=( + "${FILESDIR}"/${PN}-3.1-ia64.patch +) + +pkg_setup() { + linux-info_pkg_setup + python-single-r1_pkg_setup +} + +src_prepare() { + python_fix_shebang . + + sed -i \ + -e 's:-Werror::g' \ + configure.ac \ + Makefile.am \ + stapbpf/Makefile.am \ + stapdyn/Makefile.am \ + staprun/Makefile.am \ + testsuite/systemtap.unprivileged/unprivileged_probes.exp \ + testsuite/systemtap.unprivileged/unprivileged_myproc.exp \ + testsuite/systemtap.base/stmt_rel_user.exp \ + testsuite/systemtap.base/sdt_va_args.exp \ + testsuite/systemtap.base/sdt_misc.exp \ + testsuite/systemtap.base/sdt.exp \ + scripts/kprobes_test/gen_code.py \ + || die "Failed to clean up sources" + + default +} + +src_configure() { + local myeconfargs=( + --disable-docs + --disable-grapher + --disable-refdocs + --disable-server + --enable-pie + --with
[gentoo-commits] repo/gentoo:master commit in: dev-util/systemtap/
commit: 246539e2821f0633a7447e1e75e392eefacef5c2 Author: Sven Wegener gentoo org> AuthorDate: Wed May 12 20:57:01 2021 + Commit: Sven Wegener gentoo org> CommitDate: Wed May 12 20:57:23 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=246539e2 dev-util/systemtap: Mark 4.4 stable on amd64/x86 Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Sven Wegener gentoo.org> dev-util/systemtap/systemtap-4.4.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-util/systemtap/systemtap-4.4.ebuild b/dev-util/systemtap/systemtap-4.4.ebuild index 5a3e3efea14..b04afd5d75e 100644 --- a/dev-util/systemtap/systemtap-4.4.ebuild +++ b/dev-util/systemtap/systemtap-4.4.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://www.sourceware.org/${PN}/ftp/releases/${P}.tar.gz"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86" IUSE="libvirt selinux sqlite +ssl test zeroconf" RESTRICT="!test? ( test )"
[gentoo-commits] repo/gentoo:master commit in: eclass/tests/
commit: b13d8ea802f395645a7364088a1a74738e7aecda Author: Mike Gilbert gentoo org> AuthorDate: Wed May 12 20:12:03 2021 + Commit: Mike Gilbert gentoo org> CommitDate: Wed May 12 20:54:56 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b13d8ea8 eclass/tests: eat optional arguments passed to has_version portageq has_version does not understand arguments like -b or --host-root. This fixes tests for autotools.eclass. Signed-off-by: Mike Gilbert gentoo.org> eclass/tests/tests-common.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eclass/tests/tests-common.sh b/eclass/tests/tests-common.sh index 2fc849cb69a..a677842b6ac 100644 --- a/eclass/tests/tests-common.sh +++ b/eclass/tests/tests-common.sh @@ -61,6 +61,9 @@ die() { } has_version() { + while [[ $1 == -* ]]; do + shift + done portageq has_version / "$@" }
[gentoo-commits] repo/gentoo:master commit in: net-dns/pdns-recursor/
commit: fa8213068e3173306cb6b42f61bd8c4ff34bf00d Author: Sven Wegener gentoo org> AuthorDate: Wed May 12 20:27:15 2021 + Commit: Sven Wegener gentoo org> CommitDate: Wed May 12 20:30:04 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa821306 net-dns/pdns-recursor: Mark 4.4.3 stable on amd64/x86 Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Sven Wegener gentoo.org> net-dns/pdns-recursor/pdns-recursor-4.4.3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-dns/pdns-recursor/pdns-recursor-4.4.3.ebuild b/net-dns/pdns-recursor/pdns-recursor-4.4.3.ebuild index dc546d8cd6c..6233a790ac7 100644 --- a/net-dns/pdns-recursor/pdns-recursor-4.4.3.ebuild +++ b/net-dns/pdns-recursor/pdns-recursor-4.4.3.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://downloads.powerdns.com/releases/${P/_/-}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" +KEYWORDS="amd64 ~arm x86" IUSE="debug dnstap protobuf snmp sodium systemd test" REQUIRED_USE="${LUA_REQUIRED_USE} dnstap? ( protobuf )"
[gentoo-commits] repo/gentoo:master commit in: net-dns/pdns/
commit: ae1910755ea9d25471c90231346c138531c06651 Author: Sven Wegener gentoo org> AuthorDate: Wed May 12 20:27:57 2021 + Commit: Sven Wegener gentoo org> CommitDate: Wed May 12 20:30:08 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae191075 net-dns/pdns: Mark 4.4.1 stable on amd64/x86 Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Sven Wegener gentoo.org> net-dns/pdns/pdns-4.4.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-dns/pdns/pdns-4.4.1.ebuild b/net-dns/pdns/pdns-4.4.1.ebuild index d0dea33b39f..b37e0944e77 100644 --- a/net-dns/pdns/pdns-4.4.1.ebuild +++ b/net-dns/pdns/pdns-4.4.1.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://downloads.powerdns.com/releases/${P/_/-}.tar.bz2"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" # other possible flags: # db2: we lack the dep
[gentoo-commits] repo/gentoo:master commit in: net-dns/pdns-recursor/
commit: 0f0ac686b23e7129f3c4ab83aa83b0949fef16a8 Author: Sven Wegener gentoo org> AuthorDate: Wed May 12 20:25:49 2021 + Commit: Sven Wegener gentoo org> CommitDate: Wed May 12 20:30:00 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f0ac686 net-dns/pdns-recursor: Version bump to 4.5.1 Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Sven Wegener gentoo.org> net-dns/pdns-recursor/Manifest | 1 + net-dns/pdns-recursor/pdns-recursor-4.5.1.ebuild | 82 2 files changed, 83 insertions(+) diff --git a/net-dns/pdns-recursor/Manifest b/net-dns/pdns-recursor/Manifest index 1c461dbb3fb..af48c44efbd 100644 --- a/net-dns/pdns-recursor/Manifest +++ b/net-dns/pdns-recursor/Manifest @@ -1,2 +1,3 @@ DIST pdns-recursor-4.4.2.tar.bz2 1396763 BLAKE2B f8dad7694ac13ed8d824ddaf613d1a001452ab2c08fcbb0e00d2b2258464b754809746b89998b818c44866f9e4b22c87c1cebf2da852fb7b6247ac6b9fd4b99d SHA512 31fdf62d87e5ee8f9570c6b738339bc8cc65c43800f18c7fb49aa5c53fc9ad76a1ddf02cc44f7129e06b41700b5cb3768ff8f81cc521c28147ea6538c73f8781 DIST pdns-recursor-4.4.3.tar.bz2 1398743 BLAKE2B d9429ef22bb2b196e42da91332332b38dee9220d490c8adda686b0bc144e0981ea4418973f4304d6d964ef8f6ac4adcde4bd3e6d6b208c620440eab1b11a7fc0 SHA512 bac69cbaabc1b0de0def681e07f7e77954e0d487732cb46dc722f7869576a8a477a4011f78c9cc66b5e9b45455eb81534602b2834dc1ad42b85f5f2801915cbb +DIST pdns-recursor-4.5.1.tar.bz2 1463138 BLAKE2B 863cddbe4001b32cf457dc489bd39ad7b045f19183b1d13bc31bfd7fa28cc6e7e69755216715e0fd75fd0d724de20f7b89c89017fc42dff35de4e45e9351af75 SHA512 0cfbc95e3e84a2ab2cd88ee638b0ff26f5f35b64754086483555df28f045d64b5fdfab3e8c430c0b4e97dc4eda624226c37ec0f50902ffe5f84882d814e8051e diff --git a/net-dns/pdns-recursor/pdns-recursor-4.5.1.ebuild b/net-dns/pdns-recursor/pdns-recursor-4.5.1.ebuild new file mode 100644 index 000..dc9c75ab0e8 --- /dev/null +++ b/net-dns/pdns-recursor/pdns-recursor-4.5.1.ebuild @@ -0,0 +1,82 @@ +# Copyright 1999-2021 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 Recursor" +HOMEPAGE="https://www.powerdns.com/"; +SRC_URI="https://downloads.powerdns.com/releases/${P/_/-}.tar.bz2"; + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="debug dnstap snmp sodium systemd test" +REQUIRED_USE="${LUA_REQUIRED_USE}" +RESTRICT="!test? ( test )" + +DEPEND="${LUA_DEPS} + dnstap? ( dev-libs/fstrm ) + systemd? ( sys-apps/systemd:0= ) + snmp? ( net-analyzer/net-snmp ) + sodium? ( dev-libs/libsodium:= ) + dev-libs/openssl:= + >=dev-libs/boost-1.35:=" +RDEPEND="${DEPEND} + !
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Curses-UI/
commit: 1abbfcd83777c2b63437476dbb6c8a422e0e4bb1 Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed May 12 20:16:44 2021 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Wed May 12 20:21:37 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1abbfcd8 dev-perl/Curses-UI: Stable for all Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Andreas K. Hüttel gentoo.org> dev-perl/Curses-UI/Curses-UI-0.960.900-r3.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-perl/Curses-UI/Curses-UI-0.960.900-r3.ebuild b/dev-perl/Curses-UI/Curses-UI-0.960.900-r3.ebuild index 04c46804b2c..d2b26c27712 100644 --- a/dev-perl/Curses-UI/Curses-UI-0.960.900-r3.ebuild +++ b/dev-perl/Curses-UI/Curses-UI-0.960.900-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -10,7 +10,7 @@ inherit perl-module DESCRIPTION="Perl UI framework based on the curses library" SLOT="0" -KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86" +KEYWORDS="amd64 ~hppa ppc ppc64 x86" IUSE="test" RESTRICT="!test? ( test )"
[gentoo-commits] repo/gentoo:master commit in: dev-perl/CursesWidgets/
commit: 1f17708feffc104dd8abddcf2654dc8eef3cd3aa Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed May 12 20:18:51 2021 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Wed May 12 20:21:46 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f17708f dev-perl/CursesWidgets: Remove old Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Andreas K. Hüttel gentoo.org> .../CursesWidgets/CursesWidgets-1.997.0-r2.ebuild | 55 -- 1 file changed, 55 deletions(-) diff --git a/dev-perl/CursesWidgets/CursesWidgets-1.997.0-r2.ebuild b/dev-perl/CursesWidgets/CursesWidgets-1.997.0-r2.ebuild deleted file mode 100644 index 882092b165f..000 --- a/dev-perl/CursesWidgets/CursesWidgets-1.997.0-r2.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DIST_VERSION=1.997 -DIST_AUTHOR=CORLISS -DIST_EXAMPLES=("test.pl") -inherit perl-module - -DESCRIPTION="Provide high level APIs for rapid user interface design on the console in Perl" -HOMEPAGE="http://www.digitalmages.com/perl/CursesWidgets/index.html https://metacpan.org/release/CursesWidgets"; -SRC_URI+=" http://www.digitalmages.com/perl/CursesWidgets/downloads/${PN}-${DIST_VERSION}.tar.gz"; - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="amd64 ~ia64 ppc ~s390 sparc x86" -IUSE="" - -RDEPEND=">=sys-libs/ncurses-5 - >=dev-perl/Curses-1.60.0" -DEPEND="${RDEPEND}" - -src_test() { - local MODULES=( - "Curses::Widgets ${DIST_VERSION}" - "Curses::Widgets::ButtonSet 1.103" - "Curses::Widgets::Calendar 1.103" - "Curses::Widgets::ComboBox 1.103" - "Curses::Widgets::Label 1.102" - "Curses::Widgets::ListBox 1.104" - "Curses::Widgets::ListBox::MultiColumn 0.1" - "Curses::Widgets::Menu 1.103" - "Curses::Widgets::ProgressBar 1.103" - "Curses::Widgets::TextField 1.103" - "Curses::Widgets::TextMemo 1.104" - ) - local failed=() - for dep in "${MODULES[@]}"; do - ebegin "Compile testing ${dep}" - perl -Mblib="${S}" -M"${dep} ()" -e1 - eend $? || failed+=( "$dep" ) - done - if [[ ${failed[@]} ]]; then - echo - eerror "One or more modules failed compile:"; - for dep in "${failed[@]}"; do - eerror " ${dep}" - done - die "Failing due to module compilation errors"; - fi - ewarn "Test suite for this module requires user interaction." - ewarn "For details, see:" - ewarn "https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/dev-perl/CursesWidgets"; -}
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Curses-UI/
commit: ef3394ebca06f351563e831ec9cefaa6a643dc73 Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed May 12 20:17:04 2021 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Wed May 12 20:21:40 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef3394eb dev-perl/Curses-UI: Remove old Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Andreas K. Hüttel gentoo.org> dev-perl/Curses-UI/Curses-UI-0.960.900-r2.ebuild | 28 1 file changed, 28 deletions(-) diff --git a/dev-perl/Curses-UI/Curses-UI-0.960.900-r2.ebuild b/dev-perl/Curses-UI/Curses-UI-0.960.900-r2.ebuild deleted file mode 100644 index 4d55b122690..000 --- a/dev-perl/Curses-UI/Curses-UI-0.960.900-r2.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DIST_AUTHOR=MDXI -DIST_VERSION=0.9609 -inherit perl-module - -DESCRIPTION="Perl UI framework based on the curses library" - -SLOT="0" -KEYWORDS="amd64 ~hppa ppc ppc64 x86" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND="dev-perl/Curses - dev-perl/TermReadKey" -DEPEND="${RDEPEND} - test? ( virtual/perl-Test-Simple ) -" - -src_prepare() { - use test && perl_rm_files t/05pod.t - sed -i -e 's/use inc::Module::Install;/use lib q[.]; use inc::Module::Install;/' Makefile.PL || - die "Can't patch Makefile.PL for 5.26 dot-in-inc" - perl-module_src_prepare -}
[gentoo-commits] repo/gentoo:master commit in: dev-perl/CursesWidgets/
commit: 2c15500b7541df5bb1630597e0f5e0e7cab1b36c Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed May 12 20:18:33 2021 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Wed May 12 20:21:43 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c15500b dev-perl/CursesWidgets: Stable for all Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Andreas K. Hüttel gentoo.org> dev-perl/CursesWidgets/CursesWidgets-1.997.0-r3.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-perl/CursesWidgets/CursesWidgets-1.997.0-r3.ebuild b/dev-perl/CursesWidgets/CursesWidgets-1.997.0-r3.ebuild index 4e643d73dde..cb486d569c3 100644 --- a/dev-perl/CursesWidgets/CursesWidgets-1.997.0-r3.ebuild +++ b/dev-perl/CursesWidgets/CursesWidgets-1.997.0-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -12,7 +12,7 @@ DESCRIPTION="Provide high level APIs for rapid user interface design on the cons SLOT="0" LICENSE="GPL-2+" -KEYWORDS="~amd64 ~ia64 ~ppc ~s390 ~sparc ~x86" +KEYWORDS="amd64 ~ia64 ppc ~s390 sparc x86" RDEPEND=" >=sys-libs/ncurses-5
[gentoo-commits] repo/gentoo:master commit in: dev-perl/CSS-Packer/
commit: d6ca0b2cc30953cbe4285ed26197edf30c4075dd Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed May 12 20:12:43 2021 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Wed May 12 20:21:34 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6ca0b2c dev-perl/CSS-Packer: Version bump 2.08 Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Andreas K. Hüttel gentoo.org> dev-perl/CSS-Packer/CSS-Packer-2.80.0.ebuild | 30 dev-perl/CSS-Packer/Manifest | 1 + 2 files changed, 31 insertions(+) diff --git a/dev-perl/CSS-Packer/CSS-Packer-2.80.0.ebuild b/dev-perl/CSS-Packer/CSS-Packer-2.80.0.ebuild new file mode 100644 index 000..7df73dfdd25 --- /dev/null +++ b/dev-perl/CSS-Packer/CSS-Packer-2.80.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DIST_AUTHOR=LEEJO +DIST_VERSION=2.08 +inherit perl-module + +DESCRIPTION="A fast pure Perl CSS minifier" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-perl/Regexp-RegGrp-1.1.1_rc +" +BDEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker + test? ( + >=dev-perl/Test-File-Contents-0.210.0 + virtual/perl-Test-Simple + ) +" + +PERL_RM_FILES=( + "t/changes.t" + "t/pod.t" +) diff --git a/dev-perl/CSS-Packer/Manifest b/dev-perl/CSS-Packer/Manifest index 1a16338482d..940007eee2d 100644 --- a/dev-perl/CSS-Packer/Manifest +++ b/dev-perl/CSS-Packer/Manifest @@ -1 +1,2 @@ DIST CSS-Packer-2.07.tar.gz 9360 BLAKE2B e0e9233e3217d8f75a26f0a811cb71f0f8fd9c391518966737adbd91b27ef4c8e801c1ba42130825bd7233472ba0dce6bf96bf216a015a8d054b8b9814a11c5e SHA512 adeca2ec7dd28ad04eeda01b1f42ac0c586bd4c167f385950d4a297b95f1f66c938972bd3e34d6cfe323a3b24190b6ca1a90c898e77f86360ea84324eab01374 +DIST CSS-Packer-2.08.tar.gz 9491 BLAKE2B 0c0090441fc9450529407ac3d7f674230062bd580ed68feacefbc534be501f4a9e457c9e02cbacfb45f4d3fdc7a9b2c0ec8b6a5135108f7c620fe739b687a967 SHA512 07f7798db95411962cfdb5ac0989557a2b0deb3e664a688113c755391dd85967a9dcf7c0b76cf87cbe7068830df98da988c82306ab19294a68ae8418880f0d0d
[gentoo-commits] repo/gentoo:master commit in: games-emulation/dolphin/
commit: 48f3056164988e3c6ead28cd9135b4b035921ebb Author: Sergei Trofimovich gentoo org> AuthorDate: Wed May 12 20:14:17 2021 + Commit: Sergei Trofimovich gentoo org> CommitDate: Wed May 12 20:14:35 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48f30561 games-emulation/dolphin: bump up to 5.0_p20210506 Reported-by: Toralf Förster Closes: https://bugs.gentoo.org/789609 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Sergei Trofimovich gentoo.org> games-emulation/dolphin/Manifest | 1 + .../dolphin/dolphin-5.0_p20210506.ebuild | 195 + 2 files changed, 196 insertions(+) diff --git a/games-emulation/dolphin/Manifest b/games-emulation/dolphin/Manifest index c4bc7b23f42..a41a30fcaaf 100644 --- a/games-emulation/dolphin/Manifest +++ b/games-emulation/dolphin/Manifest @@ -1 +1,2 @@ DIST dolphin-5.0_p20200705.tar.gz 41580877 BLAKE2B 78fce8cb10543857633d6678b0ebb8f195e10652b9316f3346d5c84797dea96a31f509f86cb9470b4b9677ca58c4a865494121277cd0bc7dcc93932da9f4 SHA512 8b1aed8c98ff7205d7b1716aea3faad0bfa3d1ff3fe3a616431a421ae62592a57887e18295276b7a0fee52d19e641b72d5dc00e071cefea7fbe40adc9f3f01a1 +DIST dolphin-5.0_p20210506.tar.gz 42098693 BLAKE2B bb9e5b5eb344bd944753c0198d5835109399fdfae46e6858833e5f279ff1979d39e0c512bedb96a91a1241fff525c6f945d16ce1a6b6cc22798490d73b853862 SHA512 5d23e9356995011a0e7b07622d58c8dddc5134a4ec83b3d9343b9eca8d0d2c200ea8c9a299c6aa2550ca74d8e28e258531368f7c167fe620053eb2a0f73b1f2f diff --git a/games-emulation/dolphin/dolphin-5.0_p20210506.ebuild b/games-emulation/dolphin/dolphin-5.0_p20210506.ebuild new file mode 100644 index 000..9ca2ed316a3 --- /dev/null +++ b/games-emulation/dolphin/dolphin-5.0_p20210506.ebuild @@ -0,0 +1,195 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PLOCALES="ar ca cs da de el en es fa fr hr hu it ja ko ms nb nl pl pt pt_BR ro ru sr sv tr zh_CN zh_TW" +PLOCALE_BACKUP="en" + +inherit cmake desktop xdg-utils l10n pax-utils + +if [[ ${PV} == * ]] +then + EGIT_REPO_URI="https://github.com/dolphin-emu/dolphin"; + inherit git-r3 +else + inherit vcs-snapshot + commit=eb5cd9be78c76b9ccbab9e5fbd1721ef6876cd68 + SRC_URI="https://github.com/dolphin-emu/dolphin/archive/${commit}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm64" +fi + +DESCRIPTION="Gamecube and Wii game emulator" +HOMEPAGE="https://www.dolphin-emu.org/"; + +LICENSE="GPL-2" +SLOT="0" +IUSE="alsa bluetooth discord-presence doc +evdev ffmpeg log lto profile pulseaudio +qt5 systemd upnp vulkan" + +RDEPEND=" + dev-libs/hidapi:0= + >=dev-libs/libfmt-7.1:0= + dev-libs/lzo:2= + dev-libs/pugixml:0= + media-libs/libpng:0= + media-libs/libsfml + media-libs/mesa[egl] + net-libs/enet:1.3 + net-libs/mbedtls:0= + net-misc/curl:0= + sys-libs/readline:0= + sys-libs/zlib:0= + x11-libs/libXext + x11-libs/libXi + x11-libs/libXrandr + virtual/libusb:1 + virtual/opengl + alsa? ( media-libs/alsa-lib ) + bluetooth? ( net-wireless/bluez ) + evdev? ( + dev-libs/libevdev + virtual/udev + ) + ffmpeg? ( media-video/ffmpeg:= ) + profile? ( dev-util/oprofile ) + pulseaudio? ( media-sound/pulseaudio ) + qt5? ( + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 + ) + systemd? ( sys-apps/systemd:0= ) + upnp? ( net-libs/miniupnpc ) +" +DEPEND="${RDEPEND}" +BDEPEND=" + sys-devel/gettext + virtual/pkgconfig" + +# vulkan-loader required for vulkan backend which can be selected +# at runtime. +RDEPEND="${RDEPEND} + vulkan? ( media-libs/vulkan-loader )" + +src_prepare() { + cmake_src_prepare + + # Remove all the bundled libraries that support system-installed + # preference. See CMakeLists.txt for conditional 'add_subdirectory' calls. + local KEEP_SOURCES=( + Bochs_disasm + FreeSurround + + # vulkan's API is not backwards-compatible: + # new release dropped VK_PRESENT_MODE_RANGE_SIZE_KHR + # but dolphin still relies on it, bug #729832 + Vulkan + + cpp-optparse + # no support for for using system library + glslang + imgui + + # not packaged, tiny header library + rangeset + + # FIXME: xxhash can't be found by cmake + xxhash + # no support for for using system library + minizip + # soundtouch uses shorts, not floats + soundtouch + cubeb + discord-rpc + # Their build set up solely relies on the build in gtest. + gtest +
[gentoo-commits] repo/gentoo:master commit in: media-video/ffmpeg/
commit: ef45e3fedc7b24d4bc32ead3cc26dc3c9d8b9072 Author: Agostino Sarubbo gentoo org> AuthorDate: Wed May 12 20:12:08 2021 + Commit: Agostino Sarubbo gentoo org> CommitDate: Wed May 12 20:12:26 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef45e3fe media-video/ffmpeg: x86 stable wrt bug #781146 Package-Manager: Portage-3.0.13, Repoman-3.0.2 RepoMan-Options: --include-arches="x86" Signed-off-by: Agostino Sarubbo gentoo.org> media-video/ffmpeg/ffmpeg-4.4.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-video/ffmpeg/ffmpeg-4.4.ebuild b/media-video/ffmpeg/ffmpeg-4.4.ebuild index fa7068241c4..4ded07aa27a 100644 --- a/media-video/ffmpeg/ffmpeg-4.4.ebuild +++ b/media-video/ffmpeg/ffmpeg-4.4.ebuild @@ -59,7 +59,7 @@ LICENSE=" samba? ( GPL-3 ) " if [ "${PV#}" = "${PV}" ] ; then - KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" + KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux" fi # Options to use as use_enable in the foo[:bar] form.
[gentoo-commits] repo/gentoo:master commit in: net-dns/dnsmasq/
commit: d35e82e6b8471fed151f6bfca542202a71e47b15 Author: Agostino Sarubbo gentoo org> AuthorDate: Wed May 12 20:12:16 2021 + Commit: Agostino Sarubbo gentoo org> CommitDate: Wed May 12 20:12:26 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d35e82e6 net-dns/dnsmasq: x86 stable wrt bug #782130 Package-Manager: Portage-3.0.13, Repoman-3.0.2 RepoMan-Options: --include-arches="x86" Signed-off-by: Agostino Sarubbo gentoo.org> net-dns/dnsmasq/dnsmasq-2.85.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-dns/dnsmasq/dnsmasq-2.85.ebuild b/net-dns/dnsmasq/dnsmasq-2.85.ebuild index 3192a9430df..ec44ba2a9ef 100644 --- a/net-dns/dnsmasq/dnsmasq-2.85.ebuild +++ b/net-dns/dnsmasq/dnsmasq-2.85.ebuild @@ -13,7 +13,7 @@ SRC_URI="http://www.thekelleys.org.uk/dnsmasq/${P}.tar.xz"; LICENSE="|| ( GPL-2 GPL-3 )" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86" IUSE="auth-dns conntrack dbus +dhcp dhcp-tools dnssec +dumpfile id idn libidn2" IUSE+=" +inotify ipv6 lua nettlehash nls script selinux static tftp"
[gentoo-commits] repo/gentoo:master commit in: app-admin/selint/
commit: 9a9faf9c534dd468632461fb4c076852f4b7384a Author: Agostino Sarubbo gentoo org> AuthorDate: Wed May 12 20:12:23 2021 + Commit: Agostino Sarubbo gentoo org> CommitDate: Wed May 12 20:12:27 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a9faf9c app-admin/selint: x86 stable wrt bug #789438 Package-Manager: Portage-3.0.13, Repoman-3.0.2 RepoMan-Options: --include-arches="x86" Signed-off-by: Agostino Sarubbo gentoo.org> app-admin/selint/selint-1.2.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-admin/selint/selint-1.2.0.ebuild b/app-admin/selint/selint-1.2.0.ebuild index 832c9c2d7ca..d4b097ca5dd 100644 --- a/app-admin/selint/selint-1.2.0.ebuild +++ b/app-admin/selint/selint-1.2.0.ebuild @@ -13,7 +13,7 @@ if [[ ${PV} == ]] ; then EGIT_REPO_URI="https://github.com/TresysTechnology/selint.git"; else SRC_URI="https://github.com/TresysTechnology/selint/releases/download/v${PV}/${P}.tar.gz"; - KEYWORDS="amd64 ~x86" + KEYWORDS="amd64 x86" fi LICENSE="Apache-2.0"
[gentoo-commits] repo/gentoo:master commit in: www-client/google-chrome-beta/
commit: 8bc88603bd1927ffe7a939f92895fb89c58c14d9 Author: Stephan Hartmann gentoo org> AuthorDate: Wed May 12 20:11:52 2021 + Commit: Stephan Hartmann gentoo org> CommitDate: Wed May 12 20:12:17 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bc88603 www-client/google-chrome-beta: automated update (91.0.4472.57) Signed-off-by: Stephan Hartmann gentoo.org> www-client/google-chrome-beta/Manifest | 2 +- ...-beta-91.0.4472.38.ebuild => google-chrome-beta-91.0.4472.57.ebuild} | 0 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/www-client/google-chrome-beta/Manifest b/www-client/google-chrome-beta/Manifest index bf4c0770d27..b22246bd45d 100644 --- a/www-client/google-chrome-beta/Manifest +++ b/www-client/google-chrome-beta/Manifest @@ -1 +1 @@ -DIST google-chrome-beta_91.0.4472.38-1_amd64.deb 78710244 BLAKE2B b3fd055e64e47e505a5f66af4afb9919c1f917b0a3378713a19f1fa1882d510b353d128141ae69bb6c525c4bdf742ca77b2afd13b2fc77509f6f3edfe9d4578e SHA512 eeeb92af73a4d4eace8f18828af3dc86c333d5331470cf7a47404bcb37dfd2b8aec27b75d26a71061fbd40881072395d0d07e90dbe461f6333e68a6253846c78 +DIST google-chrome-beta_91.0.4472.57-1_amd64.deb 82102156 BLAKE2B a2d9f839738a62fe1ff4f68df9954ad67fae18210a6b1e3f8d264a3c707ea23c98a008450127ca5eefa73147a9a52d6297af5d4bc146ae646d7ff17ea779d9f3 SHA512 ad911b659b18454c9ffccd2fd98d2e61c30a7f79c4cd65c4a1a8e40d33139f31e3f3c3804924dbc6dd4d77d5a787a79f53fee74b33001af2b211bc131ad50d31 diff --git a/www-client/google-chrome-beta/google-chrome-beta-91.0.4472.38.ebuild b/www-client/google-chrome-beta/google-chrome-beta-91.0.4472.57.ebuild similarity index 100% rename from www-client/google-chrome-beta/google-chrome-beta-91.0.4472.38.ebuild rename to www-client/google-chrome-beta/google-chrome-beta-91.0.4472.57.ebuild
[gentoo-commits] repo/gentoo:master commit in: www-plugins/chrome-binary-plugins/
commit: 012467368b0526cd238a63c9c395389cac5af320 Author: Stephan Hartmann gentoo org> AuthorDate: Wed May 12 20:12:00 2021 + Commit: Stephan Hartmann gentoo org> CommitDate: Wed May 12 20:12:18 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01246736 www-plugins/chrome-binary-plugins: automated update (91.0.4472.57) Signed-off-by: Stephan Hartmann gentoo.org> www-plugins/chrome-binary-plugins/Manifest | 2 +- ...72.38_beta.ebuild => chrome-binary-plugins-91.0.4472.57_beta.ebuild} | 0 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/www-plugins/chrome-binary-plugins/Manifest b/www-plugins/chrome-binary-plugins/Manifest index 7d40bf782eb..3b6904d85e7 100644 --- a/www-plugins/chrome-binary-plugins/Manifest +++ b/www-plugins/chrome-binary-plugins/Manifest @@ -1,3 +1,3 @@ -DIST google-chrome-beta_91.0.4472.38-1_amd64.deb 78710244 BLAKE2B b3fd055e64e47e505a5f66af4afb9919c1f917b0a3378713a19f1fa1882d510b353d128141ae69bb6c525c4bdf742ca77b2afd13b2fc77509f6f3edfe9d4578e SHA512 eeeb92af73a4d4eace8f18828af3dc86c333d5331470cf7a47404bcb37dfd2b8aec27b75d26a71061fbd40881072395d0d07e90dbe461f6333e68a6253846c78 +DIST google-chrome-beta_91.0.4472.57-1_amd64.deb 82102156 BLAKE2B a2d9f839738a62fe1ff4f68df9954ad67fae18210a6b1e3f8d264a3c707ea23c98a008450127ca5eefa73147a9a52d6297af5d4bc146ae646d7ff17ea779d9f3 SHA512 ad911b659b18454c9ffccd2fd98d2e61c30a7f79c4cd65c4a1a8e40d33139f31e3f3c3804924dbc6dd4d77d5a787a79f53fee74b33001af2b211bc131ad50d31 DIST google-chrome-stable_90.0.4430.212-1_amd64.deb 83325072 BLAKE2B ec9848bf93af6d210e5d9a44c33b1bec6e610b23316946958011f299178e8178be86af0d814f971f7c4c69547cab1c29ca3deb7e57fca0f9cbb619819f560f29 SHA512 88161900c0173e4832e504b92dea8e21e7a7ea6a30c898cfc161b4c71dc005f53710ea8b40c70936c7a76ef81c18d1f1a11c3df102d95eda2daef2eff30808bd DIST google-chrome-unstable_92.0.4503.0-1_amd64.deb 80400956 BLAKE2B cf08df54268a883be8512cad4a4cf8be59d815e432501149ab1cccf5c9a6370256dbae9ae59e4f09bdcd983447818d53c5e826b8fea1f08ecfb5f31e0f11 SHA512 ee099526b98ca4cf93cf60ddc24173e0cb84361f0c6e4f2e58fa274a3f6d129fdf1a7c20541800b2c904f3ee26417e08ec12b3eddc180fafeed1ce67eb36fb22 diff --git a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-91.0.4472.38_beta.ebuild b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-91.0.4472.57_beta.ebuild similarity index 100% rename from www-plugins/chrome-binary-plugins/chrome-binary-plugins-91.0.4472.38_beta.ebuild rename to www-plugins/chrome-binary-plugins/chrome-binary-plugins-91.0.4472.57_beta.ebuild
[gentoo-commits] repo/gentoo:master commit in: sys-apps/baselayout/
commit: 5e594b78a696a6d00b5f75ffd0d40d7a8a80f348 Author: William Hubbs gentoo org> AuthorDate: Tue May 11 22:24:33 2021 + Commit: William Hubbs gentoo org> CommitDate: Wed May 12 20:11:15 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e594b78 sys-apps/baselayout: remove old /run setup This was needed to create /run on live systems. There have been several baselayout versions since /run was created, so it should be safe to remove it. Signed-off-by: William Hubbs gentoo.org> sys-apps/baselayout/baselayout-.ebuild | 12 1 file changed, 12 deletions(-) diff --git a/sys-apps/baselayout/baselayout-.ebuild b/sys-apps/baselayout/baselayout-.ebuild index a37d17f3b8d..9f4a53a1c18 100644 --- a/sys-apps/baselayout/baselayout-.ebuild +++ b/sys-apps/baselayout/baselayout-.ebuild @@ -282,18 +282,6 @@ pkg_postinst() { fi fi - # https://bugs.gentoo.org/361349 - if use kernel_linux; then - mkdir -p "${EROOT}"/run || die - - local found fstype mountpoint - while read -r _ mountpoint fstype _; do - [[ ${mountpoint} = /run ]] && [[ ${fstype} = tmpfs ]] && found=1 - done < "${ROOT}"/proc/mounts - [[ -z ${found} ]] && - ewarn "You should reboot now to get /run mounted with tmpfs!" - fi - for x in ${REPLACING_VERSIONS}; do if ver_test 2.4 -lt ${x}; then ewarn "After updating ${EROOT}/etc/profile, please run"
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-Twofish/
commit: 94167f936820f43796cd376ef585b0463749cf9e Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed May 12 19:47:48 2021 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Wed May 12 20:09:36 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94167f93 dev-perl/Crypt-Twofish: Stable for all Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Andreas K. Hüttel gentoo.org> dev-perl/Crypt-Twofish/Crypt-Twofish-2.170.0-r2.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-perl/Crypt-Twofish/Crypt-Twofish-2.170.0-r2.ebuild b/dev-perl/Crypt-Twofish/Crypt-Twofish-2.170.0-r2.ebuild index fda119447e1..812a6e9c53b 100644 --- a/dev-perl/Crypt-Twofish/Crypt-Twofish-2.170.0-r2.ebuild +++ b/dev-perl/Crypt-Twofish/Crypt-Twofish-2.170.0-r2.ebuild @@ -10,7 +10,8 @@ inherit perl-module DESCRIPTION="The Twofish Encryption Algorithm" SLOT="0" -KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris" +KEYWORDS="amd64 ~ia64 ~ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris" + PATCHES=("${FILESDIR}/no-dot-inc.patch") src_compile() {
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-X509/
commit: d120f29d46645aeba6d1b997878f90b0421b4408 Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed May 12 20:01:40 2021 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Wed May 12 20:09:42 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d120f29d dev-perl/Crypt-X509: Stable for amd64 Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Andreas K. Hüttel gentoo.org> dev-perl/Crypt-X509/Crypt-X509-0.530.0.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-perl/Crypt-X509/Crypt-X509-0.530.0.ebuild b/dev-perl/Crypt-X509/Crypt-X509-0.530.0.ebuild index 913a3df0cca..3d6fcfcbfe1 100644 --- a/dev-perl/Crypt-X509/Crypt-X509-0.530.0.ebuild +++ b/dev-perl/Crypt-X509/Crypt-X509-0.530.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -11,7 +11,7 @@ DESCRIPTION="Parse a X.509 certificate" LICENSE="Artistic-2" SLOT="0" -KEYWORDS="~amd64" +KEYWORDS="amd64" IUSE="test" RESTRICT="!test? ( test )" @@ -20,5 +20,5 @@ RDEPEND=" " BDEPEND="${RDEPEND} virtual/perl-ExtUtils-MakeMaker - test? ( >=virtual/perl-Test-Simple-0.96 ) + test? ( >=virtual/perl-Test-Simple-0.960.0 ) "
[gentoo-commits] repo/gentoo:master commit in: dev-perl/CSS-Minifier-XS/
commit: 0d74ea3b36b2bd5c9a9536c74e677cc5cc490866 Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed May 12 20:08:56 2021 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Wed May 12 20:09:52 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d74ea3b dev-perl/CSS-Minifier-XS: Version bump 0.13 Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Andreas K. Hüttel gentoo.org> dev-perl/CSS-Minifier-XS/CSS-Minifier-XS-0.130.0.ebuild | 17 + dev-perl/CSS-Minifier-XS/Manifest | 1 + 2 files changed, 18 insertions(+) diff --git a/dev-perl/CSS-Minifier-XS/CSS-Minifier-XS-0.130.0.ebuild b/dev-perl/CSS-Minifier-XS/CSS-Minifier-XS-0.130.0.ebuild new file mode 100644 index 000..937d131c23b --- /dev/null +++ b/dev-perl/CSS-Minifier-XS/CSS-Minifier-XS-0.130.0.ebuild @@ -0,0 +1,17 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DIST_AUTHOR=GTERMARS +DIST_VERSION=0.13 +inherit perl-module + +DESCRIPTION="XS based CSS minifier" + +SLOT="0" +KEYWORDS="~amd64 ~x86" + +BDEPEND=" + virtual/perl-ExtUtils-MakeMaker +" diff --git a/dev-perl/CSS-Minifier-XS/Manifest b/dev-perl/CSS-Minifier-XS/Manifest index 79cdd28ad0c..7226b65abec 100644 --- a/dev-perl/CSS-Minifier-XS/Manifest +++ b/dev-perl/CSS-Minifier-XS/Manifest @@ -1 +1,2 @@ DIST CSS-Minifier-XS-0.09.tar.gz 14363 BLAKE2B e7dd8c24ef30c98146ec4bce1c0299fcf83c7c7696b8ffed96100b02654a313d826cdbf87cb9c60f08ac850b7cc5389f8cc38e2ff50d544237084dd84f2ed105 SHA512 520e40fa4a6d70bd7692880f3bc5c813a8648dfe12946426dedf0874e180ccd98e703d67ed8b502a7b00489aa2404edce844d80b1eccc48f94156a0d5c36ad51 +DIST CSS-Minifier-XS-0.13.tar.gz 25935 BLAKE2B 408907b70081963a1e2149ea976822723f510c94917c620df8122642213465f17759c522bd626b161404f2b7ba243ccb112786a026ee3241553a410e89764d49 SHA512 cd924e9d47e52fc96ed41ce4a8e4bbb3f9eea594b47cc6bb388050f1a2c3154d9dc359bc6c7f6c5f2811489eaba21416b9703d152fa403842aee08f44e148ae6
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-Twofish/
commit: 220a70c78a4c1364616b71b2de9a7cb4f86c3809 Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed May 12 19:46:19 2021 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Wed May 12 20:09:33 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=220a70c7 dev-perl/Crypt-Twofish: Version bump 2.18 Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Andreas K. Hüttel gentoo.org> dev-perl/Crypt-Twofish/Crypt-Twofish-2.180.0.ebuild | 20 dev-perl/Crypt-Twofish/Manifest | 1 + 2 files changed, 21 insertions(+) diff --git a/dev-perl/Crypt-Twofish/Crypt-Twofish-2.180.0.ebuild b/dev-perl/Crypt-Twofish/Crypt-Twofish-2.180.0.ebuild new file mode 100644 index 000..6230a131556 --- /dev/null +++ b/dev-perl/Crypt-Twofish/Crypt-Twofish-2.180.0.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DIST_AUTHOR=AMS +DIST_VERSION=2.18 +inherit perl-module + +DESCRIPTION="The Twofish Encryption Algorithm" + +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris" + +src_compile() { + mymake=( + "OPTIMIZE=${CFLAGS}" + ) + perl-module_src_compile +} diff --git a/dev-perl/Crypt-Twofish/Manifest b/dev-perl/Crypt-Twofish/Manifest index 08d237567c8..19d3d972050 100644 --- a/dev-perl/Crypt-Twofish/Manifest +++ b/dev-perl/Crypt-Twofish/Manifest @@ -1 +1,2 @@ DIST Crypt-Twofish-2.17.tar.gz 13851 BLAKE2B 4ab615b6af0996bdc6e3c356f84cc65192cff68ed4f5e00b59efcb20d88374a29b2a44f2cd5c8bce0df6a31f8ec366624e6e429d0d72fdb4cf69bca42732d3aa SHA512 c61d07f2fd3d88bff1e41eaa3008c6717fc21e9acf2e45d45c3a39b15500f71b3bc425a3df988bbbd5b6865085866595240f1574424aa70448d6c8b3f38ee2e2 +DIST Crypt-Twofish-2.18.tar.gz 13904 BLAKE2B a153d4a7292ff11b97f8d53ea84b9c51d09ff1585f6bd5150c5ce047e5d515e14725672a0b637c11d1664b16b87fc950aae709d6be8f0e1f99112d562e8f69ee SHA512 e900b066e73237dbad8a9882c28509fcd8516c16478cdc2703883a1801d9ec387c4e43c38f6e50024c47f9fb2812c44f6096f2a2ce298f9d73303a84833b61a2
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-SmbHash/
commit: 37567b9c18eb0be4b5f9446476a23da6bce5675c Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed May 12 19:37:35 2021 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Wed May 12 20:09:23 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37567b9c dev-perl/Crypt-SmbHash: Remove old Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Andreas K. Hüttel gentoo.org> dev-perl/Crypt-SmbHash/Crypt-SmbHash-0.120.0-r2.ebuild | 18 -- 1 file changed, 18 deletions(-) diff --git a/dev-perl/Crypt-SmbHash/Crypt-SmbHash-0.120.0-r2.ebuild b/dev-perl/Crypt-SmbHash/Crypt-SmbHash-0.120.0-r2.ebuild deleted file mode 100644 index 94a3ef26922..000 --- a/dev-perl/Crypt-SmbHash/Crypt-SmbHash-0.120.0-r2.ebuild +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DIST_AUTHOR=BJKUIT -DIST_VERSION=0.12 -inherit perl-module - -DESCRIPTION="LM/NT hashing, for Samba's smbpasswd entries" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86" -IUSE="" - -RDEPEND="dev-perl/Digest-MD4" -DEPEND="${RDEPEND}"
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-Simple/
commit: 75956e8532ddc93f2adf4371bbe4d5883cffdbbe Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed May 12 19:33:51 2021 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Wed May 12 20:09:14 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75956e85 dev-perl/Crypt-Simple: Stable for all Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Andreas K. Hüttel gentoo.org> dev-perl/Crypt-Simple/Crypt-Simple-0.60.0-r2.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev-perl/Crypt-Simple/Crypt-Simple-0.60.0-r2.ebuild b/dev-perl/Crypt-Simple/Crypt-Simple-0.60.0-r2.ebuild index 9ffc027b007..150f48efde5 100644 --- a/dev-perl/Crypt-Simple/Crypt-Simple-0.60.0-r2.ebuild +++ b/dev-perl/Crypt-Simple/Crypt-Simple-0.60.0-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -10,7 +10,7 @@ inherit perl-module DESCRIPTION="encrypt stuff simply" LICENSE="GPL-2+" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="test" RESTRICT="!test? ( test )" @@ -25,4 +25,5 @@ BDEPEND="${RDEPEND} virtual/perl-ExtUtils-MakeMaker test? ( virtual/perl-Test-Harness ) " + DIST_TEST="do" # concurrent io in tests
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-Simple/
commit: a9a12f49af5c0b65dbb0752b730e7348286ae74d Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed May 12 19:35:42 2021 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Wed May 12 20:09:17 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9a12f49 dev-perl/Crypt-Simple: Remove old Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Andreas K. Hüttel gentoo.org> .../Crypt-Simple/Crypt-Simple-0.60.0-r1.ebuild | 25 -- 1 file changed, 25 deletions(-) diff --git a/dev-perl/Crypt-Simple/Crypt-Simple-0.60.0-r1.ebuild b/dev-perl/Crypt-Simple/Crypt-Simple-0.60.0-r1.ebuild deleted file mode 100644 index 8a73e28196c..000 --- a/dev-perl/Crypt-Simple/Crypt-Simple-0.60.0-r1.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=KASEI -MODULE_VERSION=0.06 -inherit perl-module - -DESCRIPTION="Crypt::Simple - encrypt stuff simply" - -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND="dev-perl/FreezeThaw - virtual/perl-IO-Compress - dev-perl/Crypt-Blowfish - virtual/perl-Digest-MD5 - virtual/perl-MIME-Base64" -DEPEND="${RDEPEND} - test? ( virtual/perl-Test-Harness )" - -SRC_TEST="do"
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-SmbHash/
commit: f93a0d87a80fa96eaea306e32eb56e1ce8cb33ab Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed May 12 19:37:09 2021 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Wed May 12 20:09:20 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f93a0d87 dev-perl/Crypt-SmbHash: Stable for all Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Andreas K. Hüttel gentoo.org> dev-perl/Crypt-SmbHash/Crypt-SmbHash-0.120.0-r3.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-perl/Crypt-SmbHash/Crypt-SmbHash-0.120.0-r3.ebuild b/dev-perl/Crypt-SmbHash/Crypt-SmbHash-0.120.0-r3.ebuild index af5475b75df..ac7dd79000d 100644 --- a/dev-perl/Crypt-SmbHash/Crypt-SmbHash-0.120.0-r3.ebuild +++ b/dev-perl/Crypt-SmbHash/Crypt-SmbHash-0.120.0-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -11,7 +11,7 @@ DESCRIPTION="LM/NT hashing, for Samba's smbpasswd entries" LICENSE="GPL-2+" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" +KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86" RDEPEND="dev-perl/Digest-MD4" BDEPEND="${RDEPEND}
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-X509/
commit: bf625619852900e4d2a524b67b7ca5c9374120a0 Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed May 12 20:03:37 2021 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Wed May 12 20:09:49 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf625619 dev-perl/Crypt-X509: Version bump 0.54 Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Andreas K. Hüttel gentoo.org> dev-perl/Crypt-X509/Crypt-X509-0.540.0.ebuild | 24 dev-perl/Crypt-X509/Manifest | 1 + 2 files changed, 25 insertions(+) diff --git a/dev-perl/Crypt-X509/Crypt-X509-0.540.0.ebuild b/dev-perl/Crypt-X509/Crypt-X509-0.540.0.ebuild new file mode 100644 index 000..e03de15da95 --- /dev/null +++ b/dev-perl/Crypt-X509/Crypt-X509-0.540.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DIST_AUTHOR=MRSCOTTY +DIST_VERSION=0.54 +inherit perl-module + +DESCRIPTION="Parse a X.509 certificate" + +LICENSE="Artistic-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-perl/Convert-ASN1-0.190.0 +" +BDEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker + test? ( >=virtual/perl-Test-Simple-0.960.0 ) +" diff --git a/dev-perl/Crypt-X509/Manifest b/dev-perl/Crypt-X509/Manifest index 0f3f95d3376..83740d9df7b 100644 --- a/dev-perl/Crypt-X509/Manifest +++ b/dev-perl/Crypt-X509/Manifest @@ -1 +1,2 @@ DIST Crypt-X509-0.53.tar.gz 22811 BLAKE2B fb086881291b2b5857f4dec2c3c0f78fc827acabe7a2535980622e9e7944488edf5b2db4a51642ebd145619f5ae97a6bb18054e8abbf06278844741a198f3b40 SHA512 316c6147ddcc2ee1e11f951a8c62a14ce723fc2ca6402f141cd1972828f94a3d5ceab29d57b2bca75925261410ca4cc37ee83ca8e158fa66da2ab0ebd29ced0c +DIST Crypt-X509-0.54.tar.gz 23235 BLAKE2B f2d5c9317833228ffd63ebb0f63a2bbb2e8255ff02c554d6cd201749aaf2e7965f26c86b76445b3d7ac228cc7e3a5afc7ea0d20952837e34304f0dc89a718996 SHA512 df5b155322432e0a9cae2a9ef2408a2692891f1ccb8ca438d38a4671a16df367c860ed549eb307342a5e74b88ea75a4e78386f86092ee87f5b897c11987ee771
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-Twofish/
commit: 3e9d60b980f28e8bd0527d1308a638efe0c6cf68 Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed May 12 19:48:10 2021 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Wed May 12 20:09:39 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e9d60b9 dev-perl/Crypt-Twofish: Remove old Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Andreas K. Hüttel gentoo.org> dev-perl/Crypt-Twofish/Crypt-Twofish-2.170.0-r1.ebuild | 16 1 file changed, 16 deletions(-) diff --git a/dev-perl/Crypt-Twofish/Crypt-Twofish-2.170.0-r1.ebuild b/dev-perl/Crypt-Twofish/Crypt-Twofish-2.170.0-r1.ebuild deleted file mode 100644 index 15b815e3a3c..000 --- a/dev-perl/Crypt-Twofish/Crypt-Twofish-2.170.0-r1.ebuild +++ /dev/null @@ -1,16 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=AMS -MODULE_VERSION=2.17 -inherit perl-module - -DESCRIPTION="The Twofish Encryption Algorithm" - -SLOT="0" -KEYWORDS="amd64 ~ia64 ~ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris" -IUSE="" -PATCHES=("${FILESDIR}/no-dot-inc.patch") -SRC_TEST="do"
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-SSLeay/
commit: ce7fa0c897008476ab380144186af6f482da783c Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed May 12 19:43:31 2021 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Wed May 12 20:09:27 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce7fa0c8 dev-perl/Crypt-SSLeay: Stable for all Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Andreas K. Hüttel gentoo.org> dev-perl/Crypt-SSLeay/Crypt-SSLeay-0.720.0-r4.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-perl/Crypt-SSLeay/Crypt-SSLeay-0.720.0-r4.ebuild b/dev-perl/Crypt-SSLeay/Crypt-SSLeay-0.720.0-r4.ebuild index 994bc9ac859..38da1a1e07a 100644 --- a/dev-perl/Crypt-SSLeay/Crypt-SSLeay-0.720.0-r4.ebuild +++ b/dev-perl/Crypt-SSLeay/Crypt-SSLeay-0.720.0-r4.ebuild @@ -11,7 +11,7 @@ DESCRIPTION="OpenSSL support for LWP" LICENSE="Artistic-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux" IUSE="test" RESTRICT="!test? ( test )"
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-X509/
commit: bfa5674d5beb876cc27c1cefa815188e06f24cca Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed May 12 20:01:55 2021 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Wed May 12 20:09:45 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfa5674d dev-perl/Crypt-X509: Remove old Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Andreas K. Hüttel gentoo.org> dev-perl/Crypt-X509/Crypt-X509-0.510.0.ebuild | 24 dev-perl/Crypt-X509/Manifest | 1 - 2 files changed, 25 deletions(-) diff --git a/dev-perl/Crypt-X509/Crypt-X509-0.510.0.ebuild b/dev-perl/Crypt-X509/Crypt-X509-0.510.0.ebuild deleted file mode 100644 index 75a4d3f3998..000 --- a/dev-perl/Crypt-X509/Crypt-X509-0.510.0.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=AJUNG -MODULE_VERSION=0.51 -inherit perl-module - -DESCRIPTION="Parse a X.509 certificate" - -LICENSE="Artistic-2" -SLOT="0" -KEYWORDS="amd64" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND="" -DEPEND="${RDEPEND} - >=dev-perl/Convert-ASN1-0.19 - test? ( >=virtual/perl-Test-Simple-0.96 ) -" - -SRC_TEST="do" diff --git a/dev-perl/Crypt-X509/Manifest b/dev-perl/Crypt-X509/Manifest index 31574ceab03..0f3f95d3376 100644 --- a/dev-perl/Crypt-X509/Manifest +++ b/dev-perl/Crypt-X509/Manifest @@ -1,2 +1 @@ -DIST Crypt-X509-0.51.tar.gz 21416 BLAKE2B 2e3bc5d48b650fe8f6e59c3dd4be462e4b8878f4e339efc2cdd79fc241e2061b187663ee602e9a13aa86680a5a827cf25277e23db6c3ae22d765e63ff40cbac7 SHA512 3004bffe23de076a534e2aa75b8892fc8aa3cfebf1d03e177c58be4ba245f958748c68a302f8e97d2dd9fc1728c26fd08fe7b5e238acfacef6b99900bd7aa3a1 DIST Crypt-X509-0.53.tar.gz 22811 BLAKE2B fb086881291b2b5857f4dec2c3c0f78fc827acabe7a2535980622e9e7944488edf5b2db4a51642ebd145619f5ae97a6bb18054e8abbf06278844741a198f3b40 SHA512 316c6147ddcc2ee1e11f951a8c62a14ce723fc2ca6402f141cd1972828f94a3d5ceab29d57b2bca75925261410ca4cc37ee83ca8e158fa66da2ab0ebd29ced0c
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-SSLeay/
commit: f3673026d171d618c4c20ccefe5210137682b77a Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed May 12 19:43:57 2021 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Wed May 12 20:09:30 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3673026 dev-perl/Crypt-SSLeay: Remove old Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Andreas K. Hüttel gentoo.org> .../Crypt-SSLeay/Crypt-SSLeay-0.720.0-r2.ebuild| 40 - .../Crypt-SSLeay/Crypt-SSLeay-0.720.0-r3.ebuild| 50 -- 2 files changed, 90 deletions(-) diff --git a/dev-perl/Crypt-SSLeay/Crypt-SSLeay-0.720.0-r2.ebuild b/dev-perl/Crypt-SSLeay/Crypt-SSLeay-0.720.0-r2.ebuild deleted file mode 100644 index fee4b34422f..000 --- a/dev-perl/Crypt-SSLeay/Crypt-SSLeay-0.720.0-r2.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DIST_AUTHOR=NANIS -DIST_VERSION=0.72 -inherit perl-module - -DESCRIPTION="OpenSSL support for LWP" - -LICENSE="Artistic-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - >=dev-libs/openssl-0.9.7c:0= - virtual/perl-MIME-Base64 -" - -DEPEND="${RDEPEND} - virtual/perl-ExtUtils-MakeMaker - >=virtual/perl-ExtUtils-CBuilder-0.280.205 - virtual/perl-Getopt-Long - >=dev-perl/Path-Class-0.260.0 - >=dev-perl/Try-Tiny-0.190.0 - test? ( - >=virtual/perl-Test-Simple-0.190.0 - ) -" -# PDEPEND: circular dependencies bug #144761 -PDEPEND=" - dev-perl/libwww-perl - >=dev-perl/LWP-Protocol-https-6.20.0 -" - -PATCHES=( "${FILESDIR}"/${PN}-0.720.0-no-ssl3.patch - "${FILESDIR}/${P}-no-dot-inc.patch" ) diff --git a/dev-perl/Crypt-SSLeay/Crypt-SSLeay-0.720.0-r3.ebuild b/dev-perl/Crypt-SSLeay/Crypt-SSLeay-0.720.0-r3.ebuild deleted file mode 100644 index 994bc9ac859..000 --- a/dev-perl/Crypt-SSLeay/Crypt-SSLeay-0.720.0-r3.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DIST_AUTHOR=NANIS -DIST_VERSION=0.72 -inherit perl-module - -DESCRIPTION="OpenSSL support for LWP" - -LICENSE="Artistic-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - >=dev-libs/openssl-0.9.7c:0= - virtual/perl-MIME-Base64 -" -DEPEND=" - >=dev-libs/openssl-0.9.7c:0= -" -BDEPEND="${RDEPEND} - virtual/perl-ExtUtils-MakeMaker - >=virtual/perl-ExtUtils-CBuilder-0.280.205 - virtual/perl-Getopt-Long - >=dev-perl/Path-Class-0.260.0 - >=dev-perl/Try-Tiny-0.190.0 - test? ( - >=virtual/perl-Test-Simple-0.190.0 - ) -" -# PDEPEND: circular dependencies bug #144761 -PDEPEND=" - dev-perl/libwww-perl - >=dev-perl/LWP-Protocol-https-6.20.0 -" - -PATCHES=( - "${FILESDIR}/${PN}-0.720.0-no-ssl3.patch" - "${FILESDIR}/${P}-no-dot-inc.patch" -) -src_compile() { - mymake=( - "OPTIMIZE=${CFLAGS}" - ) - perl-module_src_compile -}
[gentoo-commits] repo/gentoo:master commit in: sci-visualization/dash/
commit: 5f6bb027aea09da1ec1c06d3079446a5d42247c1 Author: Alfredo Tupone gentoo org> AuthorDate: Wed May 12 20:04:15 2021 + Commit: Alfredo Tupone gentoo org> CommitDate: Wed May 12 20:04:15 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f6bb027 sci-visualization/dash: add dash Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Alfredo Tupone gentoo.org> sci-visualization/dash/Manifest | 1 + sci-visualization/dash/dash-1.20.0.ebuild | 51 +++ sci-visualization/dash/metadata.xml | 29 ++ 3 files changed, 81 insertions(+) diff --git a/sci-visualization/dash/Manifest b/sci-visualization/dash/Manifest new file mode 100644 index 000..6098a5f8d1a --- /dev/null +++ b/sci-visualization/dash/Manifest @@ -0,0 +1 @@ +DIST dash-1.20.0.tar.gz 1786368 BLAKE2B 2826336f72b9bea80be6ef77df49109b7b68ed93678b606c998a1906907551551a3228e1140d20c6e1b5bf5e53fb9cebd0c0a4d7ab5cc1a590e47ef351558a40 SHA512 670cf593068370c70f1db25c70c7a76ce98c696efbff1146cc90f90a99b8b48bf80cf47688504d173ef253ccb9f1170c2067b3af9414eacb226f7ef25149 diff --git a/sci-visualization/dash/dash-1.20.0.ebuild b/sci-visualization/dash/dash-1.20.0.ebuild new file mode 100644 index 000..3d4344e6231 --- /dev/null +++ b/sci-visualization/dash/dash-1.20.0.ebuild @@ -0,0 +1,51 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{8,9} ) +DISTUTILS_USE_SETUPTOOLS=rdepend +inherit distutils-r1 + +DESCRIPTION="Python framework for building ML & data science web apps" +HOMEPAGE="https://github.com/plotly/dash"; +SRC_URI="https://github.com/plotly/${PN}/archive/refs/tags/v${PV}.tar.gz + -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="" +RDEPEND="${DEPEND} + dev-python/future[${PYTHON_USEDEP}] + sci-visualization/dash-table[${PYTHON_USEDEP}] + sci-visualization/dash-html-components[${PYTHON_USEDEP}] + sci-visualization/dash-core-components[${PYTHON_USEDEP}] + dev-python/plotly[${PYTHON_USEDEP}] + dev-python/flask-compress[${PYTHON_USEDEP}]" +BDEPEND="" + +src_prepare() { + distutils-r1_src_prepare + cd dash-renderer + distutils-r1_src_prepare +} + +src_configure() { + distutils-r1_src_configure + cd dash-renderer + distutils-r1_src_configure +} + +src_compile() { + distutils-r1_src_compile + cd dash-renderer + distutils-r1_src_compile +} + +src_install() { + distutils-r1_src_install + cd dash-renderer + distutils-r1_src_install +} diff --git a/sci-visualization/dash/metadata.xml b/sci-visualization/dash/metadata.xml new file mode 100644 index 000..166d71c6fb5 --- /dev/null +++ b/sci-visualization/dash/metadata.xml @@ -0,0 +1,29 @@ + +http://www.gentoo.org/dtd/metadata.dtd";> + + + tup...@gentoo.org + Tupone Alfredo + + + Dash is a productive Python framework for building web analytic + applications. + Written on top of Flask, Plotly.js, and React.js, Dash is ideal for + building data visualization apps with highly custom user interfaces in + pure Python. It's particularly suited for anyone who works with data in + Python. + Through a couple of simple patterns, Dash abstracts away all of the + technologies and protocols that are required to build an interactive + web-based application. Dash is simple enough that you can bind a user + interface around your Python code in an afternoon. + Dash apps are rendered in the web browser. You can deploy your apps to + servers and then share them through URLs. Since Dash apps are viewed in + the web browser, Dash is inherently cross-platform and mobile ready. + Dash ships with supercharged components for interactive user + interfaces. A core set of components, written and maintained by the + Dash team, is available in the dash-core-components library. + + + plotly/dash + +
[gentoo-commits] repo/gentoo:master commit in: sys-kernel/gentoo-kernel/
commit: a6ee476f06352eb25cd211b447b27b159fcae11f Author: Michał Górny gentoo org> AuthorDate: Wed May 12 19:57:28 2021 + Commit: Michał Górny gentoo org> CommitDate: Wed May 12 19:57:55 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6ee476f sys-kernel/gentoo-kernel: Remove old Signed-off-by: Michał Górny gentoo.org> sys-kernel/gentoo-kernel/Manifest | 42 -- .../gentoo-kernel/gentoo-kernel-5.10.27.ebuild | 90 .../gentoo-kernel/gentoo-kernel-5.10.29.ebuild | 90 .../gentoo-kernel/gentoo-kernel-5.10.30.ebuild | 90 .../gentoo-kernel/gentoo-kernel-5.10.31.ebuild | 90 .../gentoo-kernel/gentoo-kernel-5.10.32.ebuild | 90 .../gentoo-kernel/gentoo-kernel-5.10.34.ebuild | 90 .../gentoo-kernel/gentoo-kernel-5.11.13.ebuild | 90 .../gentoo-kernel/gentoo-kernel-5.11.14.ebuild | 90 .../gentoo-kernel/gentoo-kernel-5.11.15.ebuild | 90 .../gentoo-kernel/gentoo-kernel-5.11.16.ebuild | 90 .../gentoo-kernel/gentoo-kernel-5.11.17.ebuild | 90 .../gentoo-kernel/gentoo-kernel-5.11.18.ebuild | 90 .../gentoo-kernel/gentoo-kernel-5.4.109.ebuild | 97 -- .../gentoo-kernel/gentoo-kernel-5.4.111.ebuild | 97 -- .../gentoo-kernel/gentoo-kernel-5.4.112.ebuild | 97 -- .../gentoo-kernel/gentoo-kernel-5.4.113.ebuild | 97 -- .../gentoo-kernel/gentoo-kernel-5.4.114.ebuild | 97 -- .../gentoo-kernel/gentoo-kernel-5.4.116.ebuild | 97 -- 19 files changed, 1704 deletions(-) diff --git a/sys-kernel/gentoo-kernel/Manifest b/sys-kernel/gentoo-kernel/Manifest index 41f6d87fe94..a50a888c78b 100644 --- a/sys-kernel/gentoo-kernel/Manifest +++ b/sys-kernel/gentoo-kernel/Manifest @@ -1,73 +1,31 @@ -DIST genpatches-5.10-30.base.tar.xz 991908 BLAKE2B 524e7e66358b3bf311f1347e6a8c8daeed82e6a71340e51157a207580e4e028f230caea696c1e611d57d129113948938a62ef105adcf8f09c5041baedde93aa4 SHA512 3986617d71cd582ece369693624f0013cd88b57a65c3a051975da30931973b161e01fce104abc6d2f08295a2c27e536b98782435c1110086175c7fd5051d62d1 -DIST genpatches-5.10-30.extras.tar.xz 1772 BLAKE2B 7fd98f16922f7a3ea703a5dd2622152b761a47fb7da8a108281e4a9ecb37f9295347a23081b2859039b8b47049ac530d74a05358b7fdb4a8c9a97fffd8103c44 SHA512 ca23be16f47ebea149496eafb0ce9c6068a3a46be01abf9d95b5e693e5a5063e7692003bc23658269d55f923233f1124854515a3f35a94dc385410c6978e25ac -DIST genpatches-5.10-32.base.tar.xz 1038952 BLAKE2B 0414cd3c9ebb99fda1eb70204a83388d2f1439dfd0cadb2e08bfceb002a9ff34685329ea1108646cf08f8a1a1469165444baab72bede69724d2ae32f1b1c1f9c SHA512 6aa75e5481d038b8e2196c6841c88ad6f3801ceac0f5adec68e2f461d48ceaa9f6a964508adf4a8fc8720f46b71164ed5344b546677fe32f7c5e6f69dd30541d -DIST genpatches-5.10-32.extras.tar.xz 1768 BLAKE2B 3177bae554ac8e5ff49ef98fb594ebab849be1e2b639e22bc4412140f12cbe93177553a0ed404c176891a67314db3c468852237ad7f7b7fbaf8039263a51f483 SHA512 f13419f37e72f3eefdf2d3c18ae68060c45a5f561dc4e493e331566bf718d40cb89f1a30f88d6563c8d834b781d256977a383befc0b0b397008421010aad6ad7 -DIST genpatches-5.10-33.base.tar.xz 1088684 BLAKE2B a3d76185ce3e0cd6bc769ce500ddf041fd5b554ee4995b05f823e67adccbf94a6245e25c06df2a3440acad7f4fe577b62048f6e431c71defcb21e1a9ec9affc6 SHA512 119d69d2bee6944ac90bf882faf48402e311a084d43e6f89c6ec8bd43ae3701994f7dbb44170eb6f2d22b30a3c8560ae117892dee478d10818314c0f1ce82e5d -DIST genpatches-5.10-33.extras.tar.xz 1772 BLAKE2B 92bf4a1dc1551b703096c0a54cbaa0dbf0ac1c012efebddb78671231e850b7e05162c48af81eee114b68495338562b04a67486fc9cf142ee82465489c332707a SHA512 f369685fdd2ca7a1d9385d8e304c1d1e9dffdeefa22b8ff0cd01bb4a258ba57b132e93caab59c72829419f0cb92fae9b06e0f6af638e87d8935a9e0a3ea6c2e4 -DIST genpatches-5.10-34.base.tar.xz 1094372 BLAKE2B fc02d1344658a518e588c8289471613c068111fc213f96b73ce6468a83bb9bda1a9244ed11413a3dbb672023d70818188905fe1edf4a4f4f76a3503997f62ac8 SHA512 af49844b9fde66740e439fa9f415e5f0a273a971c1405ce9b68e638710ea2068d28a052f7d9027e6f0fe9316c22a18015563eae7a30abd0463c8033c5561e209 -DIST genpatches-5.10-34.extras.tar.xz 1772 BLAKE2B ed8c15560842e9de484ee8a6796723f3e5ab9c2d4882b318f1d2ef2e8c273b8af1687aefc3bc2e4e502fa81bb3c662181c6dca5cf1ba3e9350bbbe3a5709957a SHA512 4abf0269143ed8137dfcbf01fc18a2e033c7ac2d241834f4ef830c9c04e4aa6e94ea8c2509971893b41fb31da17c715cf58975b5c57682005a29632623499d4e -DIST genpatches-5.10-35.base.tar.xz 1115708 BLAKE2B c07da3088341dabf91bb2e6935868030dbf50ddeece2389e1d24007fff30507e3a9a29d4acf25362c1b8a79015ae428c54a6a0062f43ed759c09e5c35f8b3d54 SHA512 e5e80de9f8340c25ee57177be9480f13a20a5b2bacff8f486ac499638557c1992db28d9fc8fa038814a2364204e4d905e61ab5d9514c9d31bd108b20def86809 -
[gentoo-commits] repo/gentoo:master commit in: virtual/dist-kernel/
commit: c748828a4af1d189c9dfd728da665199f5f02ca7 Author: Michał Górny gentoo org> AuthorDate: Wed May 12 19:57:15 2021 + Commit: Michał Górny gentoo org> CommitDate: Wed May 12 19:57:53 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c748828a virtual/dist-kernel: Remove old Signed-off-by: Michał Górny gentoo.org> virtual/dist-kernel/dist-kernel-5.10.27.ebuild | 19 --- virtual/dist-kernel/dist-kernel-5.10.29.ebuild | 19 --- virtual/dist-kernel/dist-kernel-5.10.30.ebuild | 19 --- virtual/dist-kernel/dist-kernel-5.10.31.ebuild | 19 --- virtual/dist-kernel/dist-kernel-5.10.32.ebuild | 19 --- virtual/dist-kernel/dist-kernel-5.10.34.ebuild | 19 --- virtual/dist-kernel/dist-kernel-5.11.13.ebuild | 19 --- virtual/dist-kernel/dist-kernel-5.11.14.ebuild | 19 --- virtual/dist-kernel/dist-kernel-5.11.15.ebuild | 19 --- virtual/dist-kernel/dist-kernel-5.11.16.ebuild | 19 --- virtual/dist-kernel/dist-kernel-5.11.17.ebuild | 19 --- virtual/dist-kernel/dist-kernel-5.11.18.ebuild | 19 --- virtual/dist-kernel/dist-kernel-5.4.109.ebuild | 19 --- virtual/dist-kernel/dist-kernel-5.4.111.ebuild | 19 --- virtual/dist-kernel/dist-kernel-5.4.112.ebuild | 19 --- virtual/dist-kernel/dist-kernel-5.4.113.ebuild | 19 --- virtual/dist-kernel/dist-kernel-5.4.114.ebuild | 19 --- virtual/dist-kernel/dist-kernel-5.4.116.ebuild | 19 --- 18 files changed, 342 deletions(-) diff --git a/virtual/dist-kernel/dist-kernel-5.10.27.ebuild b/virtual/dist-kernel/dist-kernel-5.10.27.ebuild deleted file mode 100644 index 340ca7eb117..000 --- a/virtual/dist-kernel/dist-kernel-5.10.27.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="Virtual to depend on any Distribution Kernel" -HOMEPAGE="" -SRC_URI="" - -LICENSE="" -SLOT="0/${PV}" -KEYWORDS="amd64 ~arm arm64 ppc64 x86" - -RDEPEND=" - || ( - ~sys-kernel/gentoo-kernel-${PV} - ~sys-kernel/gentoo-kernel-bin-${PV} - ~sys-kernel/vanilla-kernel-${PV} - )" diff --git a/virtual/dist-kernel/dist-kernel-5.10.29.ebuild b/virtual/dist-kernel/dist-kernel-5.10.29.ebuild deleted file mode 100644 index 3df38272de3..000 --- a/virtual/dist-kernel/dist-kernel-5.10.29.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="Virtual to depend on any Distribution Kernel" -HOMEPAGE="" -SRC_URI="" - -LICENSE="" -SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" - -RDEPEND=" - || ( - ~sys-kernel/gentoo-kernel-${PV} - ~sys-kernel/gentoo-kernel-bin-${PV} - ~sys-kernel/vanilla-kernel-${PV} - )" diff --git a/virtual/dist-kernel/dist-kernel-5.10.30.ebuild b/virtual/dist-kernel/dist-kernel-5.10.30.ebuild deleted file mode 100644 index 3df38272de3..000 --- a/virtual/dist-kernel/dist-kernel-5.10.30.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="Virtual to depend on any Distribution Kernel" -HOMEPAGE="" -SRC_URI="" - -LICENSE="" -SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" - -RDEPEND=" - || ( - ~sys-kernel/gentoo-kernel-${PV} - ~sys-kernel/gentoo-kernel-bin-${PV} - ~sys-kernel/vanilla-kernel-${PV} - )" diff --git a/virtual/dist-kernel/dist-kernel-5.10.31.ebuild b/virtual/dist-kernel/dist-kernel-5.10.31.ebuild deleted file mode 100644 index 3df38272de3..000 --- a/virtual/dist-kernel/dist-kernel-5.10.31.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="Virtual to depend on any Distribution Kernel" -HOMEPAGE="" -SRC_URI="" - -LICENSE="" -SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" - -RDEPEND=" - || ( - ~sys-kernel/gentoo-kernel-${PV} - ~sys-kernel/gentoo-kernel-bin-${PV} - ~sys-kernel/vanilla-kernel-${PV} - )" diff --git a/virtual/dist-kernel/dist-kernel-5.10.32.ebuild b/virtual/dist-kernel/dist-kernel-5.10.32.ebuild deleted file mode 100644 index 3df38272de3..000 --- a/virtual/dist-kernel/dist-kernel-5.10.32.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="Virtual to depend on any Distribution Kernel" -HOMEPAGE="" -SRC_URI="" - -LI
[gentoo-commits] repo/gentoo:master commit in: sys-kernel/vanilla-kernel/
commit: 028d6b9035aaf13cab4243d346704fd00b46bc27 Author: Michał Górny gentoo org> AuthorDate: Wed May 12 19:57:31 2021 + Commit: Michał Górny gentoo org> CommitDate: Wed May 12 19:57:56 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=028d6b90 sys-kernel/vanilla-kernel: Remove old Signed-off-by: Michał Górny gentoo.org> sys-kernel/vanilla-kernel/Manifest | 42 .../vanilla-kernel/vanilla-kernel-5.10.27.ebuild | 102 --- .../vanilla-kernel/vanilla-kernel-5.10.29.ebuild | 102 --- .../vanilla-kernel/vanilla-kernel-5.10.30.ebuild | 102 --- .../vanilla-kernel/vanilla-kernel-5.10.31.ebuild | 102 --- .../vanilla-kernel/vanilla-kernel-5.10.32.ebuild | 102 --- .../vanilla-kernel/vanilla-kernel-5.10.34.ebuild | 102 --- .../vanilla-kernel/vanilla-kernel-5.11.13.ebuild | 102 --- .../vanilla-kernel/vanilla-kernel-5.11.14.ebuild | 102 --- .../vanilla-kernel/vanilla-kernel-5.11.15.ebuild | 102 --- .../vanilla-kernel/vanilla-kernel-5.11.16.ebuild | 102 --- .../vanilla-kernel/vanilla-kernel-5.11.17.ebuild | 102 --- .../vanilla-kernel/vanilla-kernel-5.11.18.ebuild | 102 --- .../vanilla-kernel/vanilla-kernel-5.4.109.ebuild | 108 - .../vanilla-kernel/vanilla-kernel-5.4.111.ebuild | 108 - .../vanilla-kernel/vanilla-kernel-5.4.112.ebuild | 108 - .../vanilla-kernel/vanilla-kernel-5.4.113.ebuild | 108 - .../vanilla-kernel/vanilla-kernel-5.4.114.ebuild | 108 - .../vanilla-kernel/vanilla-kernel-5.4.116.ebuild | 108 - 19 files changed, 1914 deletions(-) diff --git a/sys-kernel/vanilla-kernel/Manifest b/sys-kernel/vanilla-kernel/Manifest index cb8db89e682..8b895fd4b61 100644 --- a/sys-kernel/vanilla-kernel/Manifest +++ b/sys-kernel/vanilla-kernel/Manifest @@ -1,71 +1,29 @@ -DIST gentoo-kernel-config-5.10.18.tar.gz 1219 BLAKE2B 55ec8c66a9b090e590e23574b54edde0fefb575f25e6848b1c84834847304e30e52fc0810b8fd219cfb23c097bb8f7444e0b010bde44209f0c4811f99db7e0aa SHA512 ee137c85e94fe5989646cb19a72aca62ddd4795813f7bbf15d66262b0e72d90d84d5d17a31bae7980c061e0576e3f3254dca53ba6e547cf12cb7ab08771e3900 DIST gentoo-kernel-config-5.10.32.tar.gz 1269 BLAKE2B 4a21a57d567d9a527ef829f375275c65347b2e6461b00e50099458c496af0a7b3b863a6e1d8421ad18c52c64c1c4cd7e5fd416673b67738cde6253af8a9f18db SHA512 a83ef22a7f9f83f01bd65a5470f0678111b0a7dcf1dc564e04264f68cc54833dbed4cccffe2864caf3ac14169611259f0bb786c1aefe194372d6d3f67fa64c00 DIST gentoo-kernel-config-5.4.114.tar.gz 1298 BLAKE2B e494041cd63ba53f055cfd555e359934d5054238bd096addd7965754e6708bada63398c4b315318f73130ed81c1391524388396775632248870721f1ce23f203 SHA512 225600db53532ee131dd83d10cecc97a83f4615975ff32f3f6190a15eace64707cb59490bb42940e4429f9054221b9d9a589ada443922062bb5ee18ecc42c26c -DIST gentoo-kernel-config-5.4.89.tar.gz 1240 BLAKE2B 50bd2e64eb1a62d2f0d67e02b78da56cb507fd7a5993d663b880c94ecd535898285ed01e00d5d07fc1ba0d044657e776456736d8fdcacecf7ca464979a8a1d06 SHA512 ad31f9895b9dd45edd7f8715516edfc303c23600f243f3ca122c7c554c9fdbe3c3aa62970a24ef7291d7937e04c63c0258f6348e796686902a011c055c1bed01 DIST kernel-aarch64-fedora.config.5.10.12 223184 BLAKE2B a0246dac2f7a4ad6a55b611538d24382ac87a8960077811a859c9595ac67f961b4bccb7e139a89abc7c0e26e80832da5c94211fc658082f2e7dde984f14dd29d SHA512 7d803b347b136331db1ad6e22e0445fe0224c3e26cd7c034cbe9794915d457b492e05f77664865079874ec001351553652646e2e08d0fee31e30b841b0008f52 -DIST kernel-aarch64-fedora.config.5.11.11 225875 BLAKE2B 132f9ef1393edf843a7a5026da736975a465084e550b354e09a13c598fed6942c9eef7f46c2f04dd40861ed227b533041c5efb6f6fde442bdbad718aa563ef0c SHA512 9def40a4df1d20497050c2badedb8b8828d67793b465855405fcebdd04d624b6c3314347c93db07acbff0262a41e68290365d2865945138468cf5ba4419594db DIST kernel-aarch64-fedora.config.5.11.16 225910 BLAKE2B 2715de95281a315896264a17e3c36fec88ba51e6855c5f8aee786f6f44918b9bde57d0f4a8bd91623919cff86c1e5c00d183bf13da42fa363908ed041744a2ac SHA512 b2efc941cd896b3afc024dde618aa017444845d6fcf779a72522d91abe3fdcb55e3d5bc67dba7632a0205eaf8e70bc74944f7f6554ee1a07909686adbceaf65e DIST kernel-aarch64.config.5.4.21 199104 BLAKE2B 578ad451a76204df2a9bbbe34b5cb27051d2ac5e2c33967f562b01338c43f35da6dc33a4c2cc67ea6c3b32b155729360d3748ec28dcaa750f18449245b2e8a09 SHA512 66e9a437beb350fdc59512c17b8f72c5b5bfacf2b35070d810d77e66f49cf7929026cc28ad44b04a016d61e65d9fb4a10af6996ba09b604bf97e9c467d08f8ff DIST kernel-i686-fedora.config.5.10.12 205412 BLAKE2B 92c715b7e2cd7dd74da7970c05981f520597d3e403ce82c8cf4eee31c9f1f50b638792a6bdb256ef5bfdc99f1bcd594e819e8f44dc6febb2ad9a854bad817f2b SHA512 69d8db11723ae1b40fdedfaace74d15bb63198cdb0485e0a1e5eba95b31217110c93a93e39cc7370cf45f1d3a8bc7f75ec09
[gentoo-commits] repo/gentoo:master commit in: dev-lang/gnat-gpl/
commit: e0f30ac55348a3471318e919dd8f02919c121572 Author: Alfredo Tupone gentoo org> AuthorDate: Wed May 12 19:47:46 2021 + Commit: Alfredo Tupone gentoo org> CommitDate: Wed May 12 19:47:46 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0f30ac5 dev-lang/gnat-gpl: fix an unwanted commit Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Alfredo Tupone gentoo.org> dev-lang/gnat-gpl/gnat-gpl-2019-r1.ebuild | 141 -- 1 file changed, 141 deletions(-) diff --git a/dev-lang/gnat-gpl/gnat-gpl-2019-r1.ebuild b/dev-lang/gnat-gpl/gnat-gpl-2019-r1.ebuild deleted file mode 100644 index 6f1e39dc569..000 --- a/dev-lang/gnat-gpl/gnat-gpl-2019-r1.ebuild +++ /dev/null @@ -1,141 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PATCH_GCC_VER=8.3.0 -PATCH_VER="3" - -TOOLCHAIN_GCC_PV=8.3.1 - -REL=8 -MYP=gcc-${REL}-${PV}-20190517-18C94-src -GNATDIR=gnat-${PV}-20190517-18C94-src -INTFDIR=gcc-interface-${REL}-${PV}-20190510-18F59-src -BTSTRP_X86=gnat-gpl-2014-x86-linux-bin -BTSTRP_AMD64=gnat-gpl-2014-x86_64-linux-bin - -# we provide own tarball below -GCC_TARBALL_SRC_URI=" - http://mirrors.cdn.adacore.com/art/5cdf865331e87aa2cdf16b49 - -> ${GNATDIR}.tar.gz - http://mirrors.cdn.adacore.com/art/5cdf8a0731e87a8f1d425049 - -> ${MYP}.tar.gz - http://mirrors.cdn.adacore.com/art/5cdf87cc31e87aa2cdf16b50 - -> ${INTFDIR}.tar.gz - bootstrap? ( - amd64? ( - http://mirrors.cdn.adacore.com/art/564b3ebec8e196b040fbe66c -> - ${BTSTRP_AMD64}.tar.gz - ) - x86? ( - http://mirrors.cdn.adacore.com/art/564b3e9dc8e196b040fbe248 -> - ${BTSTRP_X86}.tar.gz - ) - )" - -inherit toolchain-funcs toolchain - -DESCRIPTION="GNAT Ada Compiler - GPL version" -HOMEPAGE="http://libre.adacore.com/"; - -LICENSE+=" GPL-2 GPL-3" -KEYWORDS="amd64 x86" -IUSE="+ada +bootstrap" -RESTRICT="!test? ( test )" - -RDEPEND="!sys-devel/gcc:${TOOLCHAIN_GCC_PV}" -DEPEND="${RDEPEND} - elibc_glibc? ( >=sys-libs/glibc-2.13 ) - >=sys-devel/binutils-2.20" - -S="${WORKDIR}"/${MYP} -PDEPEND="${PDEPEND} elibc_glibc? ( >=sys-libs/glibc-2.13 )" - -pkg_setup() { - toolchain_pkg_setup - - if use amd64; then - BTSTRP=${BTSTRP_AMD64} - else - BTSTRP=${BTSTRP_X86} - fi - - if use bootstrap; then - GCC="${WORKDIR}"/${BTSTRP}/bin/gcc - else - GCC=${ADA:-$(tc-getCC)} - fi - - gnatbase=$(basename ${GCC}) - gnatpath=$(dirname ${GCC}) - - GNATMAKE=${gnatbase/gcc/gnatmake} - if [[ ${gnatpath} != "." ]] ; then - GNATMAKE="${gnatpath}/${GNATMAKE}" - fi -} - -src_unpack() { - if ! use bootstrap && [[ -z "$(type ${GNATMAKE} 2>/dev/null)" ]] ; then - eerror "You need a gcc compiler that provides the Ada Compiler:" - eerror "1) use gcc-config to select the right compiler or" - eerror "2) set the bootstrap use flag" - die "ada compiler not available" - fi - - toolchain_src_unpack - if use bootstrap; then - rm ${BTSTRP}/libexec/gcc/*/4.7.4/ld || die - fi -} - -src_prepare() { - CC=${GCC} - CXX="${gnatbase/gcc/g++}" - GNATBIND="${gnatbase/gcc/gnatbind}" - GNATLINK="${gnatbase/gcc/gnatlink}" - GNATLS="${gnatbase/gcc/gnatls}" - if [[ ${gnatpath} != "." ]] ; then - CXX="${gnatpath}/${CXX}" - GNATBIND="${gnatpath}/${GNATBIND}" - GNATLINK="${gnatpath}/${GNATLINK}" - GNATLS="${gnatpath}/${GNATLS}" - fi - mkdir bin || die - ln -s $(which ${GCC}) bin/gcc || die - ln -s $(which ${CXX}) bin/g++ || die - ln -s $(which ${GNATMAKE}) bin/gnatmake || die - ln -s $(which ${GNATBIND}) bin/gnatbind || die - ln -s $(which ${GNATLINK}) bin/gnatlink || die - ln -s $(which ${GNATLS}) bin/gnatls || die - - cd .. - mv ${GNATDIR}/src/ada ${MYP}/gcc/ || die - mv ${INTFDIR} ${MYP}/gcc/ada/gcc-interface || die - eapply "${FILESDIR}"/${P}-gentoo.patch - rm patch/27*.patch || die - rm patch/28*.patch || die - cd - - sed -i \ - -e 's:$(P) ::g' \ - gcc/ada/gcc-interface/Makefile.in \ - || die "sed failed" - toolchain_src_prepare -} - -src_configure() { - export PATH=${PWD}/bin:${PATH} - downgrade_arch_flags "$(gcc-version)" - toolchain_src_configure -} - -pkg_postinst() { - toolchain_pkg_postinst - einfo "This provide the GNAT compiler with gcc for ada/c/c++ and more" - einfo "The compiler binary is ${CTARGET}-gcc-${TOOLCHAIN_GCC_PV}" -
[gentoo-commits] repo/gentoo:master commit in: virtual/dist-kernel/
commit: e6d1b41fb60090e69707115ddf587e27fa0a5aef Author: Michał Górny gentoo org> AuthorDate: Wed May 12 19:41:38 2021 + Commit: Michał Górny gentoo org> CommitDate: Wed May 12 19:41:38 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6d1b41f virtual/dist-kernel: Stabilize 5.10.33 x86, #788847 Signed-off-by: Michał Górny gentoo.org> virtual/dist-kernel/dist-kernel-5.10.33.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/virtual/dist-kernel/dist-kernel-5.10.33.ebuild b/virtual/dist-kernel/dist-kernel-5.10.33.ebuild index ae82fc47452..340ca7eb117 100644 --- a/virtual/dist-kernel/dist-kernel-5.10.33.ebuild +++ b/virtual/dist-kernel/dist-kernel-5.10.33.ebuild @@ -9,7 +9,7 @@ SRC_URI="" LICENSE="" SLOT="0/${PV}" -KEYWORDS="amd64 ~arm arm64 ppc64 ~x86" +KEYWORDS="amd64 ~arm arm64 ppc64 x86" RDEPEND=" || (
[gentoo-commits] repo/gentoo:master commit in: virtual/dist-kernel/
commit: d968c1a516283be089872dd23845e12885804100 Author: Michał Górny gentoo org> AuthorDate: Wed May 12 19:41:41 2021 + Commit: Michał Górny gentoo org> CommitDate: Wed May 12 19:41:41 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d968c1a5 virtual/dist-kernel: Stabilize 5.4.115 x86, #788850 Signed-off-by: Michał Górny gentoo.org> virtual/dist-kernel/dist-kernel-5.4.115.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/virtual/dist-kernel/dist-kernel-5.4.115.ebuild b/virtual/dist-kernel/dist-kernel-5.4.115.ebuild index 20fb4881609..98a5bc7d0b9 100644 --- a/virtual/dist-kernel/dist-kernel-5.4.115.ebuild +++ b/virtual/dist-kernel/dist-kernel-5.4.115.ebuild @@ -9,7 +9,7 @@ SRC_URI="" LICENSE="" SLOT="0/${PV}" -KEYWORDS="amd64 arm64 ppc64 ~x86" +KEYWORDS="amd64 arm64 ppc64 x86" RDEPEND=" || (
[gentoo-commits] repo/gentoo:master commit in: sys-kernel/gentoo-kernel/
commit: de3bebf315676a60182dc2a57a66ba1a5093d116 Author: Michał Górny gentoo org> AuthorDate: Wed May 12 19:41:36 2021 + Commit: Michał Górny gentoo org> CommitDate: Wed May 12 19:41:36 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de3bebf3 sys-kernel/gentoo-kernel: Stabilize 5.10.33 x86, #788847 Signed-off-by: Michał Górny gentoo.org> sys-kernel/gentoo-kernel/gentoo-kernel-5.10.33.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.33.ebuild b/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.33.ebuild index ae8c5dc8641..adb544e4861 100644 --- a/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.33.ebuild +++ b/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.33.ebuild @@ -38,7 +38,7 @@ SRC_URI+=" https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.x S=${WORKDIR}/${MY_P} LICENSE="GPL-2" -KEYWORDS="amd64 ~arm arm64 ppc64 ~x86" +KEYWORDS="amd64 ~arm arm64 ppc64 x86" IUSE="debug" REQUIRED_USE="arm? ( savedconfig )"