[gentoo-commits] repo/gentoo:master commit in: dev-libs/crc32c/
commit: d3887e9f15fade5c6dbbd79a11bb5a54a3e18c6a Author: Arthur Zamarin gentoo org> AuthorDate: Sun Oct 24 06:53:06 2021 + Commit: Arthur Zamarin gentoo org> CommitDate: Sun Oct 24 06:57:30 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3887e9f dev-libs/crc32c: fix for arm64 without crc32 On arm64, the build system decided if the current CPU supports crc32 instructions, but forcing the compiler to support it and then checking if it compiles. By removing the forcing, we really check if the arch supports it. Bit thanks to Sam James gentoo.org> for testing and finding the issue in build system. Closes: https://bugs.gentoo.org/818874 Signed-off-by: Arthur Zamarin gentoo.org> dev-libs/crc32c/{crc32c-1.1.2.ebuild => crc32c-1.1.2-r1.ebuild} | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-libs/crc32c/crc32c-1.1.2.ebuild b/dev-libs/crc32c/crc32c-1.1.2-r1.ebuild similarity index 91% rename from dev-libs/crc32c/crc32c-1.1.2.ebuild rename to dev-libs/crc32c/crc32c-1.1.2-r1.ebuild index 6eee30bb278..e7e06e01ec2 100644 --- a/dev-libs/crc32c/crc32c-1.1.2.ebuild +++ b/dev-libs/crc32c/crc32c-1.1.2-r1.ebuild @@ -24,7 +24,9 @@ PATCHES=( DOCS=( README.md ) src_prepare() { - sed -e '/-Werror/d' -i CMakeLists.txt || die + sed -e '/-Werror/d' \ + -e '/-march=armv8/d' \ + -i CMakeLists.txt || die cmake_src_prepare }
[gentoo-commits] repo/gentoo:master commit in: sys-apps/systemd/
commit: f8abf9b54981a0cd1e6f120d8d46e5745010fdba Author: Mike Gilbert gentoo org> AuthorDate: Sun Oct 24 06:47:34 2021 + Commit: Mike Gilbert gentoo org> CommitDate: Sun Oct 24 06:47:34 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8abf9b5 sys-apps/systemd: add 249.5 Signed-off-by: Mike Gilbert gentoo.org> sys-apps/systemd/Manifest | 1 + sys-apps/systemd/systemd-249.5.ebuild | 515 ++ 2 files changed, 516 insertions(+) diff --git a/sys-apps/systemd/Manifest b/sys-apps/systemd/Manifest index 318d2b70af7..6cbf0d85259 100644 --- a/sys-apps/systemd/Manifest +++ b/sys-apps/systemd/Manifest @@ -1 +1,2 @@ DIST systemd-stable-249.4.tar.gz 10593723 BLAKE2B 466b3cb27c4bc6c85c9ba50f6614175b2c31a4c177d452542faa1395e99511440029b1a093dc80a5a1a0135eed09d8b1849572f36dba4e18a1396230bfc31adb SHA512 5b9ec28102538bc3dcb632ee16389ff20dccf4b723186f6ae2da119a1809d84db0d8bcecf9b75c5e2da8427f5543e1da281bbed1a154e529d8a82ea5128c465c +DIST systemd-stable-249.5.tar.gz 10597897 BLAKE2B 5c573322ef9bcd9d019776d6e2d8625a741c1535c0d06661b5666c2438a70cfc4dc182919bb419829de27a4d93c16717ce24e668faf9bd6b09e57f8bd88be725 SHA512 d6f1a5a6f03f0ed05b111aee75da509c5868c523af6209f33e630724dd0c7e0d0abf16920795d587e6c31a5915d247ebc613cf26d4aecf39f82ebb0690fab75f diff --git a/sys-apps/systemd/systemd-249.5.ebuild b/sys-apps/systemd/systemd-249.5.ebuild new file mode 100644 index 000..03f729a43a8 --- /dev/null +++ b/sys-apps/systemd/systemd-249.5.ebuild @@ -0,0 +1,515 @@ +# Copyright 2011-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{8..10} ) + +# Avoid QA warnings +TMPFILES_OPTIONAL=1 + +if [[ ${PV} == ]]; then + EGIT_REPO_URI="https://github.com/systemd/systemd.git"; + inherit git-r3 +else + if [[ ${PV} == *.* ]]; then + MY_PN=systemd-stable + else + MY_PN=systemd + fi + MY_PV=${PV/_/-} + MY_P=${MY_PN}-${MY_PV} + S=${WORKDIR}/${MY_P} + SRC_URI="https://github.com/systemd/${MY_PN}/archive/v${MY_PV}/${MY_P}.tar.gz"; + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" +fi + +inherit bash-completion-r1 linux-info meson-multilib pam python-any-r1 systemd toolchain-funcs udev usr-ldscript + +DESCRIPTION="System and service manager for Linux" +HOMEPAGE="https://www.freedesktop.org/wiki/Software/systemd"; + +LICENSE="GPL-2 LGPL-2.1 MIT public-domain" +SLOT="0/2" +IUSE="acl apparmor audit build cgroup-hybrid cryptsetup curl dns-over-tls elfutils fido2 +gcrypt gnuefi homed http +hwdb idn importd +kmod +lz4 lzma nat pam pcre pkcs11 policykit pwquality qrcode repart +resolvconf +seccomp selinux split-usr +sysv-utils test tpm vanilla xkb +zstd" + +REQUIRED_USE=" + homed? ( cryptsetup pam ) + importd? ( curl gcrypt lzma ) + pwquality? ( homed ) +" +RESTRICT="!test? ( test )" + +MINKV="3.11" + +OPENSSL_DEP=">=dev-libs/openssl-1.1.0:0=" + +COMMON_DEPEND=">=sys-apps/util-linux-2.30:0=[${MULTILIB_USEDEP}] + sys-libs/libcap:0=[${MULTILIB_USEDEP}] + virtual/libcrypt:=[${MULTILIB_USEDEP}] + acl? ( sys-apps/acl:0= ) + apparmor? ( sys-libs/libapparmor:0= ) + audit? ( >=sys-process/audit-2:0= ) + cryptsetup? ( >=sys-fs/cryptsetup-2.0.1:0= ) + curl? ( net-misc/curl:0= ) + dns-over-tls? ( >=net-libs/gnutls-3.6.0:0= ) + elfutils? ( >=dev-libs/elfutils-0.158:0= ) + fido2? ( dev-libs/libfido2:0= ) + gcrypt? ( >=dev-libs/libgcrypt-1.4.5:0=[${MULTILIB_USEDEP}] ) + homed? ( ${OPENSSL_DEP} ) + http? ( + >=net-libs/libmicrohttpd-0.9.33:0=[epoll(+)] + >=net-libs/gnutls-3.1.4:0= + ) + idn? ( net-dns/libidn2:= ) + importd? ( + app-arch/bzip2:0= + sys-libs/zlib:0= + ) + kmod? ( >=sys-apps/kmod-15:0= ) + lz4? ( >=app-arch/lz4-0_p131:0=[${MULTILIB_USEDEP}] ) + lzma? ( >=app-arch/xz-utils-5.0.5-r1:0=[${MULTILIB_USEDEP}] ) + nat? ( net-firewall/iptables:0= ) + pam? ( sys-libs/pam:=[${MULTILIB_USEDEP}] ) + pkcs11? ( app-crypt/p11-kit:0= ) + pcre? ( dev-libs/libpcre2 ) + pwquality? ( dev-libs/libpwquality:0= ) + qrcode? ( media-gfx/qrencode:0= ) + repart? ( ${OPENSSL_DEP} ) + seccomp? ( >=sys-libs/libseccomp-2.3.3:0= ) + selinux? ( sys-libs/libselinux:0= ) + tpm? ( app-crypt/tpm2-tss:0= ) + xkb? ( >=x11-libs/libxkbcommon-0.4.1:0= ) + zstd? ( >=app-arch/zstd-1.4.0:0=[${MULTILIB_USEDEP}] ) +" + +# Newer linux-headers needed by ia64, bug #480218 +DEPEND="${COMMON_DEPEND} + >=sys-kernel/linux-headers-${MINKV} + gnuefi? ( >=sys-boot/gnu-efi-3.0.2 ) +" + +# baselayout-2.2 has /run +RDEPEND="${COMMON_DEPEND} + >=acct-group/adm-0-r1 + >=acct-group/wheel-0-r1 + >=acct-group/kmem-0-r1 +
[gentoo-commits] repo/gentoo:master commit in: profiles/arch/hppa/
commit: 8e1ecfb1bb9137720444e93c962b6206cbbdd063 Author: Arthur Zamarin gentoo org> AuthorDate: Sun Oct 24 06:02:14 2021 + Commit: Arthur Zamarin gentoo org> CommitDate: Sun Oct 24 06:02:14 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e1ecfb1 dev-python/argon2-cffi: mask [doc] for hppa dev-ruby/furo isn't keyworded here Signed-off-by: Arthur Zamarin gentoo.org> profiles/arch/hppa/package.use.mask | 4 1 file changed, 4 insertions(+) diff --git a/profiles/arch/hppa/package.use.mask b/profiles/arch/hppa/package.use.mask index 9122d55c417..33396378d39 100644 --- a/profiles/arch/hppa/package.use.mask +++ b/profiles/arch/hppa/package.use.mask @@ -4,6 +4,10 @@ # NOTE: When masking a USE flag due to missing keywords, please file a keyword # request bug for the hppa arch. +# Arthur Zamarin (2021-10-24) +# dev-ruby/furo isn't keyworded here +dev-python/argon2-cffi doc + # Sam James (2021-10-24) # Avoid Pipewire for now because of new wireplumber dependency which lacks # keywords. Doubt anybody is using PW here anyway right now.
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/concurrent-ruby/
commit: fb932e83beb5c518b408f7da549c88ed962a67e1 Author: Hans de Graaff gentoo org> AuthorDate: Sun Oct 24 05:57:33 2021 + Commit: Hans de Graaff gentoo org> CommitDate: Sun Oct 24 05:57:33 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb932e83 dev-ruby/concurrent-ruby: cleanup Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/concurrent-ruby/Manifest | 2 -- .../concurrent-ruby/concurrent-ruby-1.1.7.ebuild | 38 -- .../concurrent-ruby/concurrent-ruby-1.1.8.ebuild | 38 -- 3 files changed, 78 deletions(-) diff --git a/dev-ruby/concurrent-ruby/Manifest b/dev-ruby/concurrent-ruby/Manifest index 399cdbb6df9..cb34f0f53c6 100644 --- a/dev-ruby/concurrent-ruby/Manifest +++ b/dev-ruby/concurrent-ruby/Manifest @@ -1,4 +1,2 @@ DIST concurrent-ruby-1.0.5.tar.gz 1307802 BLAKE2B 2eee2afdd33e2609608e9389847de380eb895c2193746b1190ea96ca8bb67eaccd8d141bc2071006afbd971f078e5b6452d1e62624892c0fce2c12b8ac9fa28b SHA512 fdf7324b56bb37b4a79dc89882354e452ee838a097f522fb906c20a06856303cfbbae16f2500255cbfb4bba33ee1b3b3ee8facf3d0156e976add64209e349da6 -DIST concurrent-ruby-1.1.7.tar.gz 4370284 BLAKE2B ea9120fa6c0c58d758c71d54a7a1371a2a94987141343be92e5d8150167d774b513003bc945b7a54dbae8ef1f15b371f6ec28e6e84828d653fdad5b6b58c63e1 SHA512 2af2f1236850666ef56f6024db3b094051de88bb0495b902f5be9471ded733e998b2845aacba2ff8b166d5097fccd597203502ce58766017cb67c529c2840d29 -DIST concurrent-ruby-1.1.8.tar.gz 4921836 BLAKE2B 1a58be0790af7708c58f6542b9bcf09b4f853bd180412f44cc6d18f2c058647384f2bc03f9828664c289eeabfd0721c866a143da4e4b4650d11058a2de7fdb16 SHA512 79b326721107abb972124d5e2cac32a348475d8408079747cca6a624df790c3662a8a460a9d1f0d6aceb4b4dc04fadcdc94777b58cec73d82350b3464f70b679 DIST concurrent-ruby-1.1.9.tar.gz 4923746 BLAKE2B 2bfea989db31f17c69ee479091135516e2aeef7ac74234ccea91b2e4b3626395683a7b2ebba1d13cb527903d3d83c51e873bdb859f0ff1983062fea4fa90a1e4 SHA512 243fc20795bcd7399bdf77a9b0db9b0bccb1b05edacf4fbc8f5515f59502300b4033a2a59bfb6adea9befdb20759c9f58bbf0e7744e934c85738085bef714ea6 diff --git a/dev-ruby/concurrent-ruby/concurrent-ruby-1.1.7.ebuild b/dev-ruby/concurrent-ruby/concurrent-ruby-1.1.7.ebuild deleted file mode 100644 index 6b34f268213..000 --- a/dev-ruby/concurrent-ruby/concurrent-ruby-1.1.7.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# 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_RECIPE_TEST="rspec3" - -RUBY_FAKEGEM_RECIPE_DOC="" - -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Modern concurrency tools including agents, futures, promises, thread pools, more" -HOMEPAGE="https://github.com/ruby-concurrency/concurrent-ruby"; -SRC_URI="https://github.com/ruby-concurrency/concurrent-ruby/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="1" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -ruby_add_bdepend "test? ( >=dev-ruby/timecop-0.7.4 )" - -all_ruby_prepare() { - # Remove edge files as defined in support/file_map.rb - rm -rf spec/concurrent/{actor,cancellation,channel,edge,lazy_register,promises,throttle}* || die - rm -r spec/concurrent/executor/wrapping_executor_spec.rb || die - sed -i -e '/concurrent-edge/ s:^:#:' spec/spec_helper.rb || die - sed -i -e 's:lib-edge:lib/concurrent-ruby:' .rspec || die - sed -i -e 's:../../../::' spec/concurrent/executor/executor_quits.rb || die - - # Remove specs for the ext gem - rm -rf spec/concurrent/atomic || die - - sed -i 's/git ls-files/find . -print/' ${RUBY_FAKEGEM_GEMSPEC} || die -} diff --git a/dev-ruby/concurrent-ruby/concurrent-ruby-1.1.8.ebuild b/dev-ruby/concurrent-ruby/concurrent-ruby-1.1.8.ebuild deleted file mode 100644 index 4d86946d232..000 --- a/dev-ruby/concurrent-ruby/concurrent-ruby-1.1.8.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# 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_RECIPE_TEST="rspec3" - -RUBY_FAKEGEM_RECIPE_DOC="" - -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Modern concurrency tools including agents, futures, promises, thread pools, more" -HOMEPAGE="https://github.com/ruby-concurrency/concurrent-ruby"; -SRC_URI="https://github.com/ruby-concurrency/concurrent-ruby/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="1" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -ruby_add_bdepend "test? ( >=dev-ruby/timecop-0.7.4
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/countdownlatch/
commit: 5f612d05abf6351a133cde18b021f558433bdd43 Author: Hans de Graaff gentoo org> AuthorDate: Sun Oct 24 05:59:59 2021 + Commit: Hans de Graaff gentoo org> CommitDate: Sun Oct 24 05:59:59 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f612d05 dev-ruby/countdownlatch: EAPI 8; add ruby30 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Hans de Graaff gentoo.org> .../countdownlatch/countdownlatch-1.0.0-r2.ebuild | 26 ++ 1 file changed, 26 insertions(+) diff --git a/dev-ruby/countdownlatch/countdownlatch-1.0.0-r2.ebuild b/dev-ruby/countdownlatch/countdownlatch-1.0.0-r2.ebuild new file mode 100644 index 000..3b5c7208e94 --- /dev/null +++ b/dev-ruby/countdownlatch/countdownlatch-1.0.0-r2.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby26 ruby27 ruby30" + +RUBY_FAKEGEM_TASK_TEST="test" +RUBY_FAKEGEM_TASK_DOC="" + +RUBY_FAKEGEM_EXTRADOC="README.md" + +inherit ruby-fakegem + +DESCRIPTION="Synchronization aid to allow threads to wait for operations in other threads" +HOMEPAGE="https://github.com/benlangfeld/countdownlatch"; +IUSE="" +SLOT="0" + +LICENSE="MIT" +KEYWORDS="~amd64" + +ruby_add_bdepend "test? ( dev-ruby/minitest )" + +all_ruby_prepare() { + sed -i -e '/bundler/ s:^:#:' Rakefile || die +}
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/http-form_data/
commit: 477f1947e7bfe8fbec4ec76defbc165720c7e443 Author: Hans de Graaff gentoo org> AuthorDate: Sun Oct 24 05:54:41 2021 + Commit: Hans de Graaff gentoo org> CommitDate: Sun Oct 24 05:56:12 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=477f1947 dev-ruby/http-form_data: add ruby30 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/http-form_data/http-form_data-2.3.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-ruby/http-form_data/http-form_data-2.3.0.ebuild b/dev-ruby/http-form_data/http-form_data-2.3.0.ebuild index 19cc657ae53..a924b20e8c5 100644 --- a/dev-ruby/http-form_data/http-form_data-2.3.0.ebuild +++ b/dev-ruby/http-form_data/http-form_data-2.3.0.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -USE_RUBY="ruby24 ruby25 ruby26 ruby27" +USE_RUBY="ruby26 ruby27 ruby30" RUBY_FAKEGEM_RECIPE_TEST="rspec3"
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/twitter/
commit: 21039180398be7e51b597d1770edd891dd3a84f1 Author: Hans de Graaff gentoo org> AuthorDate: Sun Oct 24 05:45:07 2021 + Commit: Hans de Graaff gentoo org> CommitDate: Sun Oct 24 05:56:11 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21039180 dev-ruby/twitter: update HOMEPAGE Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/twitter/twitter-7.0.0-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-ruby/twitter/twitter-7.0.0-r1.ebuild b/dev-ruby/twitter/twitter-7.0.0-r1.ebuild index 8691d9c18ed..306bdaa160d 100644 --- a/dev-ruby/twitter/twitter-7.0.0-r1.ebuild +++ b/dev-ruby/twitter/twitter-7.0.0-r1.ebuild @@ -12,7 +12,7 @@ RUBY_FAKEGEM_GEMSPEC="twitter.gemspec" inherit ruby-fakegem DESCRIPTION="Ruby wrapper around the Twitter API" -HOMEPAGE="https://sferik.github.com/twitter/"; +HOMEPAGE="https://github.com/sferik/twitter/"; SRC_URI="https://github.com/sferik/twitter/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT"
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/naught/
commit: 118f8d33249f936fff5e654e60e6266a855a5eab Author: Hans de Graaff gentoo org> AuthorDate: Sun Oct 24 05:49:22 2021 + Commit: Hans de Graaff gentoo org> CommitDate: Sun Oct 24 05:56:11 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=118f8d33 dev-ruby/naught: EAPI 8; add ruby30 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/naught/naught-1.1.0-r1.ebuild | 24 1 file changed, 24 insertions(+) diff --git a/dev-ruby/naught/naught-1.1.0-r1.ebuild b/dev-ruby/naught/naught-1.1.0-r1.ebuild new file mode 100644 index 000..ebda1f6d4c4 --- /dev/null +++ b/dev-ruby/naught/naught-1.1.0-r1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby26 ruby27 ruby30" + +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" +RUBY_FAKEGEM_EXTRADOC="Changelog.md README.markdown" + +inherit ruby-fakegem + +DESCRIPTION="A toolkit for building Null Objects in Ruby" +HOMEPAGE="https://github.com/avdi/naught"; + +LICENSE="MIT" +SLOT="5" +KEYWORDS="~amd64" +IUSE="" + +all_ruby_prepare() { + sed -i -e '/simplecov/,/^end/ s:^:#:' spec/spec_helper.rb || die +}
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/simple_oauth/
commit: c9686b15954d4495a26d76113e835f0c11ed4708 Author: Hans de Graaff gentoo org> AuthorDate: Sun Oct 24 05:50:35 2021 + Commit: Hans de Graaff gentoo org> CommitDate: Sun Oct 24 05:56:11 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9686b15 dev-ruby/simple_oauth: EAPI 8; add ruby30; use rspec3 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/simple_oauth/simple_oauth-0.3.1-r1.ebuild | 35 ++ 1 file changed, 35 insertions(+) diff --git a/dev-ruby/simple_oauth/simple_oauth-0.3.1-r1.ebuild b/dev-ruby/simple_oauth/simple_oauth-0.3.1-r1.ebuild new file mode 100644 index 000..3bd3362f87e --- /dev/null +++ b/dev-ruby/simple_oauth/simple_oauth-0.3.1-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +USE_RUBY="ruby26 ruby27 ruby30" + +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_EXTRADOC="README.md" + +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Simply builds and verifies OAuth headers" +HOMEPAGE="https://github.com/laserlemon/simple_oauth"; +SRC_URI="https://github.com/laserlemon/simple_oauth/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +all_ruby_prepare() { + sed -i -e "/simplecov/,+8d" spec/helper.rb || die + + sed -i -e '/files/d' ${RUBY_FAKEGEM_GEMSPEC} || die +} + +each_ruby_test() { + export CI=true + each_fakegem_test +}
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/memoizable/
commit: 89cd1b987a7b62721f93454499ee55a840feb9be Author: Hans de Graaff gentoo org> AuthorDate: Sun Oct 24 05:51:34 2021 + Commit: Hans de Graaff gentoo org> CommitDate: Sun Oct 24 05:56:11 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89cd1b98 dev-ruby/memoizable: EAPI 8; add ruby30 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/memoizable/memoizable-0.4.2-r1.ebuild | 28 ++ 1 file changed, 28 insertions(+) diff --git a/dev-ruby/memoizable/memoizable-0.4.2-r1.ebuild b/dev-ruby/memoizable/memoizable-0.4.2-r1.ebuild new file mode 100644 index 000..5bc8fe62883 --- /dev/null +++ b/dev-ruby/memoizable/memoizable-0.4.2-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby26 ruby27 ruby30" + +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Memoize method return values" +HOMEPAGE="https://github.com/dkubb/memoizable"; + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +ruby_add_rdepend ">=dev-ruby/thread_safe-0.3.1:0" + +all_ruby_prepare() { + sed -i -e "/simplecov/,/^end$/d" spec/spec_helper.rb || die + + # Avoid a failing test that also fails for upstream Travis. + rm spec/unit/memoizable/class_methods/included_spec.rb || die +}
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/http_parser_rb/
commit: e5d1e75bc58385c1bf648bd23272df417f1852a1 Author: Hans de Graaff gentoo org> AuthorDate: Sun Oct 24 05:53:51 2021 + Commit: Hans de Graaff gentoo org> CommitDate: Sun Oct 24 05:56:12 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5d1e75b dev-ruby/http_parser_rb: EAPI 8; fix extension install Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Hans de Graaff gentoo.org> .../http_parser_rb/http_parser_rb-0.6.0-r2.ebuild | 24 ++ 1 file changed, 24 insertions(+) diff --git a/dev-ruby/http_parser_rb/http_parser_rb-0.6.0-r2.ebuild b/dev-ruby/http_parser_rb/http_parser_rb-0.6.0-r2.ebuild new file mode 100644 index 000..ee71995c502 --- /dev/null +++ b/dev-ruby/http_parser_rb/http_parser_rb-0.6.0-r2.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby26 ruby27" + +RUBY_FAKEGEM_RECIPE_TEST="rspec" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" +RUBY_FAKEGEM_EXTRADOC="README.md" + +RUBY_FAKEGEM_NAME="http_parser.rb" + +RUBY_FAKEGEM_EXTENSIONS=(ext/ruby_http_parser/extconf.rb) + +inherit ruby-fakegem + +DESCRIPTION="Simple callback-based HTTP request/response parser" +HOMEPAGE="https://github.com/tmm1/http_parser.rb"; + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86" +IUSE=""
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Mail-DMARC/
commit: 0d0775939a20e6cf60e2324e42567ccb6fcfaf5e Author: Sam James gentoo org> AuthorDate: Sun Oct 24 05:45:11 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 05:45:18 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d077593 dev-perl/Mail-DMARC: fix MismatchedPerlVersion Signed-off-by: Sam James gentoo.org> ...il-DMARC-1.202.109.270.ebuild => Mail-DMARC-1.202.109.270-r1.ebuild} | 2 +- dev-perl/Mail-DMARC/Manifest| 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-perl/Mail-DMARC/Mail-DMARC-1.202.109.270.ebuild b/dev-perl/Mail-DMARC/Mail-DMARC-1.202.109.270-r1.ebuild similarity index 98% rename from dev-perl/Mail-DMARC/Mail-DMARC-1.202.109.270.ebuild rename to dev-perl/Mail-DMARC/Mail-DMARC-1.202.109.270-r1.ebuild index 37fc9cedc2a..eb1ebcbfa51 100644 --- a/dev-perl/Mail-DMARC/Mail-DMARC-1.202.109.270.ebuild +++ b/dev-perl/Mail-DMARC/Mail-DMARC-1.202.109.270-r1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DIST_AUTHOR=MBRADSHAW -DIST_VERSION=1.20210427 +DIST_VERSION=1.20210927 inherit perl-module DESCRIPTION="Perl implementation of DMARC" diff --git a/dev-perl/Mail-DMARC/Manifest b/dev-perl/Mail-DMARC/Manifest index 908a99e68fd..f2d20397d00 100644 --- a/dev-perl/Mail-DMARC/Manifest +++ b/dev-perl/Mail-DMARC/Manifest @@ -1,2 +1,3 @@ DIST Mail-DMARC-1.20170911.tar.gz 727703 BLAKE2B 6b339f8c0ba69ae7aa98eb41b7bebe40db320b20862f4d323a032a2fb83a7246ccbea9e9a08f408a92fac61173e41a565cc4f7f7172d4b43bb5e14b82720629f SHA512 76495835020408194919d1cc72380c95d0415982ddfe577fdbb7154df737c4a280c6068c355eb5a23998b590885a17a4c97b2f0c7f90ad8e84c93a402a6f9cc3 DIST Mail-DMARC-1.20210427.tar.gz 793712 BLAKE2B 236f4c36659d0ba549cb6a66c7a111801ff50fdfbc5938f9d57be5b1554c5f0ae794b56c434bb966eb9c2bfcd6f8b85c68142a0df8b9b4824e3ef1d8babc4ef5 SHA512 9fd9c289557b4fd3df95d961271bee44f3e6d2d26d63129b9fcea3ee53b49be8e0e59148089615068eaad1e435bb41d42a0d89e3b30b5916e2b018bb61ce8d83 +DIST Mail-DMARC-1.20210927.tar.gz 794723 BLAKE2B 3b0eeed4ccc6498c0af3afe20052e9ea0b0c8ba1625b80ee7b211d7f4235a4f595f7f15862b6b79642423dccd95755047ac53d54b30a5db0b0c05a6070725443 SHA512 eef5d0fda54ea45c04e61b4b6f7fae995404978c297289e68640d0409528542806ceed9dc4c701376c81014ac5d5df25f541a789f54fd982be8c4518fbcc524f
[gentoo-commits] repo/gentoo:master commit in: sys-cluster/gmqtt/
commit: 8fad63ffb0c57ba0dab4d2e86b312780f2ed304e Author: Zac Medico gentoo org> AuthorDate: Sun Oct 24 05:39:19 2021 + Commit: Zac Medico gentoo org> CommitDate: Sun Oct 24 05:41:09 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fad63ff sys-cluster/gmqtt: Bump to version 0.4.1 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Zac Medico gentoo.org> sys-cluster/gmqtt/Manifest | 1 + sys-cluster/gmqtt/gmqtt-0.4.1.ebuild | 408 +++ 2 files changed, 409 insertions(+) diff --git a/sys-cluster/gmqtt/Manifest b/sys-cluster/gmqtt/Manifest index 9dd855ead52..f3d451fd48d 100644 --- a/sys-cluster/gmqtt/Manifest +++ b/sys-cluster/gmqtt/Manifest @@ -248,6 +248,7 @@ DIST github.com%2Fxiang90%2Fprobing%2F@v%2Fv0.0.0-20190116061207-43a291ad63a2.mo DIST github.com%2Fxordataexchange%2Fcrypt%2F@v%2Fv0.0.3-0.20170626215501-b2862e3d0a77.mod 40 BLAKE2B 844d63d9c10c55eb74504d88d5e6e85641f2c4bdbbc9b4f6728cd6b1e750d1eb333e91b6eadac635a80abf328c9423fa106b18337e89dc592876cd3f04a803e2 SHA512 daffe8f4148becee3a32c90ad21454cd48255409f3edff8681ea2074623c8aa02cbb4620b7ba52aabe4ac3c24a5f256b56fd71de1da45dcd7e4e8376699a422a DIST gmqtt-0.3.1.tar.gz 222161 BLAKE2B 90ab83d8aa684029c3b1a20afd636155f391a568ba24536e72b44c7abdb548467bea617efdafa2d3623f032de89c81bddc679b9cef7626d6c56acd3aa2026d5e SHA512 b35a76e20821079c054c38792f09bedab5faef94851368953f4be55cd285806dec3efd4a63dafcc34601a8aa8e100a03a930cbec30484a09317f7f02da0dfdb2 DIST gmqtt-0.3.2.tar.gz 224276 BLAKE2B 2d314b950525cd276c3b356ce87f59bb61680159da25d993906fcae6154d809c0697bbda196d862333841e315506a1e7fcfe4a01db582a806119450aa701fd14 SHA512 78124d256d88f9a6df21312db0d113301df24361081fe23c7742f0adac97c1cb80a57c985a270d11e3b28fec7db487f1c9ce540bbed6cfdf22489da73820dfc3 +DIST gmqtt-0.4.1.tar.gz 338368 BLAKE2B 4114816d4e60f6421fcea2cb33006f416143040bc85eb97630fcbd588c9fb2e11cd0d1f9e6e56f8ad8461653a5d7772971e4978a3dfca357335309b7c9e138ed SHA512 cad45a7d3d9033d9d345c72bd0568c4e6115964d980ed02451da3fb6fe7fb92785ccc39bf1632c81242b269f5e61caba18255315e12f49d5debcfc1c105a DIST go.etcd.io%2Fbbolt%2F@v%2Fv1.3.2.mod 24 BLAKE2B f23f0532ce6fece605e76cd16e5f9a1fbf40657f26b2aa6a135bf300a232ffe8eaa9161f93d2845312b10ccb6dd5c4cfea40a2256b6481787ce9ddca7555b0fc SHA512 8988baa04517a19f905b323768f98690b19ce302d54da4648bf72baa2766c8ea8362efaf1c8dd2f02a82fb9c76e72f32373fd04cf48ff133804b6b251bd48529 DIST go.etcd.io%2Fbbolt%2F@v%2Fv1.3.2.zip 111427 BLAKE2B 62d61989ac2e7f9b83238e9dbc3027600235213fb39846ce0bb45c84431d80fc3d570d27fba6538668e5a91a8e8331e4bbb081e9106a4409a191209be122fa7a SHA512 f4c1b9f826415b753235e6f71dfb0c2e25ae4dab4acfd632a6ace744e437ae0df9d86dafc79569c6184895e5398108a098a5e5eda57589046316ebc767571cdc DIST go.uber.org%2Fatomic%2F@v%2Fv1.4.0.mod 26 BLAKE2B 00521092f85fc8940d69a5885423e84d8e6987a29749d886be3f40c230e563b55d96779ccd2efb99e939167c93067e8d37117750cf2567fc49e70bce9e847d07 SHA512 4c66fd56c35d6d25a3091f83a2d3872ba395092c10519e052aaccf3edca281fb874a46e86e7a7294b4f42a5d5a51d3cc0f066081e5ab945288a48ac223bc19e6 diff --git a/sys-cluster/gmqtt/gmqtt-0.4.1.ebuild b/sys-cluster/gmqtt/gmqtt-0.4.1.ebuild new file mode 100644 index 000..4f11393afdc --- /dev/null +++ b/sys-cluster/gmqtt/gmqtt-0.4.1.ebuild @@ -0,0 +1,408 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit go-module systemd + +DESCRIPTION="MQTT broker library with cluster support that implements MQTT V5.0 and V3.1.1" +HOMEPAGE="https://github.com/DrmagicE/gmqtt"; + +EGO_SUM=( +"cloud.google.com/go v0.26.0/go.mod" +"cloud.google.com/go v0.34.0/go.mod" +"github.com/BurntSushi/toml v0.3.1" +"github.com/BurntSushi/toml v0.3.1/go.mod" +"github.com/OneOfOne/xxhash v1.2.2/go.mod" +"github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod" +"github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod" +"github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod" +"github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod" +"github.com/antihax/optional v1.0.0/go.mod" +"github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e/go.mod" +"github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod" +"github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da" +"github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da/go.mod" +"github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod" +"github.com/armon/go-radix v1.0.0/go.mod" +"github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod" +"github.com/beorn7/perks v1.0.0/go.mod" +"github.com/beorn7/perks v1.0.1" +"github.com/beorn7/perks v1.0.1/go.mod" +"github.com/bgentry/speakeasy v0.1.0/go.mod" +"github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod" +"github.com/cespare/xxhash v1.1.0" +"github.com/cespare/xxhash v1.1.0/go.mod" +"github.com/cespare/xxhash/v2 v2.1.1" +"githu
[gentoo-commits] repo/gentoo:master commit in: games-misc/opengfx/
commit: 968ed5f146135a4b2acbafc51618d7449e8a6622 Author: Sam James gentoo org> AuthorDate: Sun Oct 24 05:40:12 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 05:40:19 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=968ed5f1 games-misc/opengfx: add 7.1 Signed-off-by: Sam James gentoo.org> games-misc/opengfx/Manifest | 1 + games-misc/opengfx/opengfx-7.1.ebuild | 64 +++ 2 files changed, 65 insertions(+) diff --git a/games-misc/opengfx/Manifest b/games-misc/opengfx/Manifest index 1e6e73aa566..ae42e141d9f 100644 --- a/games-misc/opengfx/Manifest +++ b/games-misc/opengfx/Manifest @@ -1 +1,2 @@ DIST opengfx-0.6.1-source.tar.xz 9690748 BLAKE2B faa3ca805166a1716f8a235048506620bbb98a4265c72571b3a33e88f3375caff75b5576b64ef451e99dea734145f3be748a9109c7003d1ad9043a90cdd34dad SHA512 4ba3528dbdddea1baa2875f917f959034659c8205fbda2b2a67c5fe80161235d15c25dab323e6da8cba2711b7b4f0c9a96d4187fd2de61ae9a2ff9fd077b063b +DIST opengfx-7.1-source.tar.xz 9828168 BLAKE2B a1d8305744b76924400cad8503af1a20991551323adea6d0d60d9f6d5ac6311e52cb8f028eb614bbda41106823ab9b912f1fb8af02953758a2eb2912066a38e9 SHA512 55079babcd78d4a36279cb7610b6800308aca8409ed3b9fa33cd4993b0c1f988d7afe270b17930b97609c4fdf8cf4e362e17c11bd85d2ef136d042256c98483f diff --git a/games-misc/opengfx/opengfx-7.1.ebuild b/games-misc/opengfx/opengfx-7.1.ebuild new file mode 100644 index 000..568beb7453a --- /dev/null +++ b/games-misc/opengfx/opengfx-7.1.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{8..10} ) + +inherit python-any-r1 + +DESCRIPTION="OpenGFX data files for OpenTTD" +HOMEPAGE="https://wiki.openttd.org/en/Basesets/OpenGFX https://github.com/OpenTTD/OpenGFX"; +SRC_URI="https://cdn.openttd.org/${PN}-releases/${PV}/${P}-source.tar.xz"; +S="${WORKDIR}/${P}-source" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +DEPEND=" + games-util/grfcodec + games-util/nml + ${PYTHON_DEPS} +" + +DOCS=( "README.md" "changelog.txt" ) + +src_prepare() { + default + + python-any-r1_pkg_setup +} + +src_compile() { + local myemakeargs=( + GIMP="" + PYTHON="${EPYTHON}" + ) + + emake "${myemakeargs[@]}" all +} + +src_test() { + local myemakeargs=( + GIMP="" + PYTHON="${EPYTHON}" + ) + + emake "${myemakeargs[@]}" check +} + +src_install() { + local myemakeargs=( + DO_NOT_INSTALL_README="true" + DO_NOT_INSTALL_LICENSE="true" + DO_NOT_INSTALL_CHANGELOG="true" + GIMP="" + INSTALL_DIR="${ED}/usr/share/openttd/baseset/" + PYTHON="${EPYTHON}" + ) + + emake "${myemakeargs[@]}" install + + einstalldocs +}
[gentoo-commits] repo/gentoo:master commit in: games-misc/openmsx/
commit: bf481ca7bcdca52f6a74a7c867dd0796f23ed3cb Author: Sam James gentoo org> AuthorDate: Sun Oct 24 05:35:53 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 05:40:17 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf481ca7 games-misc/openmsx: add 0.4.2 Signed-off-by: Sam James gentoo.org> games-misc/openmsx/Manifest | 1 + games-misc/openmsx/openmsx-0.4.2.ebuild | 31 +++ 2 files changed, 32 insertions(+) diff --git a/games-misc/openmsx/Manifest b/games-misc/openmsx/Manifest index 26ae53393b9..10c66a3c2bb 100644 --- a/games-misc/openmsx/Manifest +++ b/games-misc/openmsx/Manifest @@ -1 +1,2 @@ DIST openmsx-0.4.0-source.tar.xz 114608 BLAKE2B e693b206cf350ee46b1fc5b7bf4d2a666ae7bee0fea1e2df3a29cfcfd3dbddd58d7d20d8184d6d367d377869ee5e2f970a8721cc1a1ec39babf1352a600bc759 SHA512 9a34a2f7fd9529d8b2d03f47c307a6818ecd753e8f8205c18c966d7425bf8d4a4409cd365b9d1a04d4b00d994da9e73d4270e29af3a388f48f07d3d83486e225 +DIST openmsx-0.4.2-source.tar.xz 114804 BLAKE2B 6936fed13d4e2cbd29902c3546693d32171828ef55cacb0a123d144a7dc51f0f01dac6ceae1d57d1bfcb0d926ff800f5aed5ee1ae3733cea32b5d5c35ec58212 SHA512 72258276c81070ea931c26ed153ce26b762663af7fc349f2fb7dcefc49d4ea5914ce726700e06beed80c5d3e1e39040e0c1eecc17daf35b4fa37c27f7ca4730a diff --git a/games-misc/openmsx/openmsx-0.4.2.ebuild b/games-misc/openmsx/openmsx-0.4.2.ebuild new file mode 100644 index 000..292d74bb9fc --- /dev/null +++ b/games-misc/openmsx/openmsx-0.4.2.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{8..10} ) + +inherit python-any-r1 + +DESCRIPTION="Open source music base set for OpenTTD" +HOMEPAGE="https://wiki.openttd.org/en/Basesets/OpenMSX https://github.com/OpenTTD/OpenMSX"; +SRC_URI="https://cdn.openttd.org/openmsx-releases/${PV}/${P}-source.tar.xz"; +S="${WORKDIR}/${P}-source" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" +# Don't appear to be meaningful +RESTRICT="test" + +BDEPEND="${PYTHON_DEPS}" + +pkg_setup() { + python-any-r1_pkg_setup +} + +src_install() { + insinto /usr/share/openttd/baseset/${P} + doins ${P}/{*.mid,openmsx.obm} + dodoc ${P}/{changelog,readme}.txt +}
[gentoo-commits] repo/gentoo:master commit in: games-misc/opensfx/
commit: a239a0c77b0a610fafdf1fdea9f953fed4cd809d Author: Sam James gentoo org> AuthorDate: Sun Oct 24 05:39:08 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 05:40:18 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a239a0c7 games-misc/opensfx: add 1.0.2 Signed-off-by: Sam James gentoo.org> games-misc/opensfx/Manifest | 1 + games-misc/opensfx/opensfx-1.0.2.ebuild | 20 2 files changed, 21 insertions(+) diff --git a/games-misc/opensfx/Manifest b/games-misc/opensfx/Manifest index f73e263ed1d..309f1428a36 100644 --- a/games-misc/opensfx/Manifest +++ b/games-misc/opensfx/Manifest @@ -1 +1,2 @@ DIST opensfx-1.0.1-source.tar.xz 9872728 BLAKE2B 34880f4713b37d8f720e5b68e5c3f821c52a4dd44f6171fe31df3e3b63e5e333ce415074c1ee204555261cded4d0180618e6d478e95f842a361f43572f379e87 SHA512 1c908b932db7a47b607882e51d34bff090b712182a2b2955e6c82b6b7e657a7cb7bda93d1dac19b057c38d671d185687a0b1a26ddb93b5670329b3806aaef654 +DIST opensfx-1.0.2-source.tar.xz 9947284 BLAKE2B c7b545bb23454fd16829c54cdb038d4c26c437e6239307cea93315af77f6c9570ac9b0869013549216817d4084bfb4116a7ad2bc5f1da1fc369d8bc80f016d9e SHA512 a4e37ff262bee827b8c86679bc52041ab83f629f482a34a3fc09bd7687b83e468f66f9144fceade9b5bf581a72cad04b4f13ad479f76b35ba53d019538b94225 diff --git a/games-misc/opensfx/opensfx-1.0.2.ebuild b/games-misc/opensfx/opensfx-1.0.2.ebuild new file mode 100644 index 000..54876177298 --- /dev/null +++ b/games-misc/opensfx/opensfx-1.0.2.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="OpenSFX data files for OpenTTD" +HOMEPAGE="https://wiki.openttd.org/en/Basesets/OpenSFX https://github.com/OpenTTD/OpenSFX"; +SRC_URI="https://cdn.openttd.org/opensfx-releases/${PV}/${P}-source.tar.xz"; +S="${WORKDIR}"/${P}-source + +LICENSE="CC-BY-SA-3.0 CDDL-1.1 GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" + +DEPEND="games-util/catcodec" + +src_install() { + emake INSTALL_DIR="${ED}/usr/share/openttd/baseset/" install + dodoc docs/{changelog.txt,readme.ptxt} +}
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/test-unit/
commit: 6689868d6d0e46fd2268b3f2be2496befec2eb49 Author: Hans de Graaff gentoo org> AuthorDate: Sun Oct 24 05:36:00 2021 + Commit: Hans de Graaff gentoo org> CommitDate: Sun Oct 24 05:39:28 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6689868d dev-ruby/test-unit: add 3.4.9 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/test-unit/Manifest | 1 + dev-ruby/test-unit/test-unit-3.4.9.ebuild | 36 +++ 2 files changed, 37 insertions(+) diff --git a/dev-ruby/test-unit/Manifest b/dev-ruby/test-unit/Manifest index 9d897b9b699..169f55778d9 100644 --- a/dev-ruby/test-unit/Manifest +++ b/dev-ruby/test-unit/Manifest @@ -3,3 +3,4 @@ DIST test-unit-3.4.4.gem 123392 BLAKE2B 7fe5fd5d17712e0b18e5757a22ca60d0504857c4 DIST test-unit-3.4.5.tar.gz 159848 BLAKE2B c54f1735ab2fb65933d752fcd584137c2bf8ae75a929955999e360fda1ab0d3e6f6dc4ae17f162f3aadb622abea77f8902b134b4e2a606fb12d7043cc7876848 SHA512 37d1e2f994049777815d4c069abf90734fa91107a3fcd09d762ae9f05d54b0b6acc16f5b551a304561137bfd2d4202e85182c11c46843ea4328ea74c4932f36f DIST test-unit-3.4.6.tar.gz 160828 BLAKE2B 39aa2210cb4a1b85d4d9ab85271aed4d4e55f5be5bdb10436d845393f7c0cbeee0795e153bcdad0712a131e61a389562e29156852575bcc48198ce843b8b6422 SHA512 6ca6c3360cac7bdc24e7d94b0da79726addd0491b10baead69f644998603096a36549bf232723faf1962a964d6a006711eacb7c66a386957a3bb02e328f065f1 DIST test-unit-3.4.7.tar.gz 160851 BLAKE2B eeb37ef3f241995327bc036321d9a5c6881dc7c0a71d2954de4ee27feeac92983ecd519bd554712d8339de66be556dc9b5a24bea916abdb8daef0faf913e893d SHA512 a70c199e524a392e97df4d344474412c2381fd9bbf53be113352fa7a7ecd26f485d4f7f61cebcacbc4aa57bdd28615bdfc22fa5a1d40173cfbe52a24fe2dec43 +DIST test-unit-3.4.9.tar.gz 161212 BLAKE2B 57c1932a1049300aad41eb8d0a72459c3eaecd5b5bc89fa9f981b6975be9b8b4d378dad8ff769bb1add54e28a6e84b54f791ab13c7bd31d042ae068e37c04f6c SHA512 dccfdbbeb5319cac36dec80d17428b593905c74d8644b19b938bc2cc15ceb598818e73d2f0a681142cba6395b16d404437821af72abc152ab20987a645faf001 diff --git a/dev-ruby/test-unit/test-unit-3.4.9.ebuild b/dev-ruby/test-unit/test-unit-3.4.9.ebuild new file mode 100644 index 000..496be517527 --- /dev/null +++ b/dev-ruby/test-unit/test-unit-3.4.9.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby26 ruby27 ruby30" + +RUBY_FAKEGEM_EXTRADOC="README.md doc-install/text/*.md" + +RUBY_FAKEGEM_GEMSPEC="test-unit.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="An xUnit family unit testing framework for Ruby" +HOMEPAGE="https://rubygems.org/gems/test-unit"; +SRC_URI="https://github.com/test-unit/test-unit/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="|| ( Ruby GPL-2 ) PSF-2" +SLOT="2" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~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 "dev-ruby/power_assert" + +all_ruby_prepare() { + mv doc doc-install || die "moving doc directory out of the way failed" +} + +each_ruby_test() { + ${RUBY} test/run-test.rb || die "testsuite failed" +} + +all_ruby_install() { + all_fakegem_install + + newbin "${FILESDIR}"/testrb-3 testrb-2 +}
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/shoulda-matchers/
commit: d88f8309a646cfcfb9292093e46b80904638bd30 Author: Hans de Graaff gentoo org> AuthorDate: Sun Oct 24 05:38:11 2021 + Commit: Hans de Graaff gentoo org> CommitDate: Sun Oct 24 05:39:28 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d88f8309 dev-ruby/shoulda-matchers: add 5.0.0 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/shoulda-matchers/Manifest | 1 + .../shoulda-matchers/shoulda-matchers-5.0.0.ebuild | 32 ++ 2 files changed, 33 insertions(+) diff --git a/dev-ruby/shoulda-matchers/Manifest b/dev-ruby/shoulda-matchers/Manifest index e52d72c38c8..15e912ea538 100644 --- a/dev-ruby/shoulda-matchers/Manifest +++ b/dev-ruby/shoulda-matchers/Manifest @@ -2,3 +2,4 @@ DIST shoulda-matchers-3.1.3.gem 208384 BLAKE2B 0ce7cb91ec8a311ecd4872ca45b178686 DIST shoulda-matchers-4.3.0.tar.gz 235212 BLAKE2B 03d634a851d5b79baac7fb3c5017be2ba8ce5b36905597eb759ea6ed22d543af5ce02c0c2af0f560d913d17713a8b3c417770adb7f247a6548d0666164e0866f SHA512 ffc90760ec47502d0820decfb8ab0620fa65fd9f45f3435c1d905ce0fe96010a3e059c690e9dbab7b30146b09a9e511ed4687a220d7cdf000f2fe1060e0b5ada DIST shoulda-matchers-4.4.1.tar.gz 240423 BLAKE2B 5fca9389601f35c536fa8a37adc6a14282fdb4aba21453223d739e503fc226c74473791880d2fc0b4f308bf9deccc1bd640c320e86f586f075b5d1add69e33f2 SHA512 3103bbad862848d00f9ab8c71c20fef1fdc131c6ed13a5d6ae9e11c3da8ecd2aa09e5996f8b28ad08a5588b02ab5783dcc37d04357d13357ea3fa8ca28a02e3d DIST shoulda-matchers-4.5.1.tar.gz 243634 BLAKE2B 32d846d0dc3c8725a9bd0d60e858eb9fe4106a20222503ac908d1a9c9c310d8e1477aa6264f06961812151b9bd1a1a33488707d9c96524cd3431ed7b3246e534 SHA512 8c240fe7699094a63db824145ca28c245526e95d489fac82e1a28a2418ae40524ba0a184a7f9b269b7c31ad7ae2cbc24b453547cab0845639fdea442bada483a +DIST shoulda-matchers-5.0.0.tar.gz 241021 BLAKE2B 68d70f0ac503deaf05a769b39ad905ee87108b2e2a3f5d76d23b2772c0374e83e3c5cb0b0024a771e7c04958da0b890f3b564287230fffa0d207d501bb8d4c0d SHA512 c81c514071c297a2372b05caa987fc39cf03af25ba0d7ba4ef1f23deebbad81013d80ac5b360a00f5fc0a155e75f3ff65b782c56a5682348f683ea11814ba710 diff --git a/dev-ruby/shoulda-matchers/shoulda-matchers-5.0.0.ebuild b/dev-ruby/shoulda-matchers/shoulda-matchers-5.0.0.ebuild new file mode 100644 index 000..bc21f9054e2 --- /dev/null +++ b/dev-ruby/shoulda-matchers/shoulda-matchers-5.0.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +USE_RUBY="ruby26 ruby27" + +RUBY_FAKEGEM_RECIPE_TEST="none" + +RUBY_FAKEGEM_EXTRAINSTALL="CHANGELOG.md README.md" + +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" + +RUBY_FAKEGEM_BINWRAP="" + +inherit ruby-fakegem + +DESCRIPTION="Making tests easy on the fingers and eyes" +HOMEPAGE="https://github.com/thoughtbot/shoulda-matchers"; +SRC_URI="https://github.com/thoughtbot/shoulda-matchers/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="$(ver_cut 1)" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +ruby_add_rdepend ">=dev-ruby/activesupport-4.2.0:*" + +all_ruby_prepare() { + sed -i -e '/pry/ s:^:#:' spec/spec_helper.rb || die + #sed -i -e '/s.files/,/^ end/ s:^:#:' ${RUBY_FAKEGEM_GEMSPEC} || die +}
[gentoo-commits] repo/gentoo:master commit in: profiles/arch/alpha/, profiles/arch/ia64/
commit: 70eb5dddc4a171597a71b528228c822501dbbb7b Author: Arthur Zamarin gentoo org> AuthorDate: Sun Oct 24 05:36:34 2021 + Commit: Arthur Zamarin gentoo org> CommitDate: Sun Oct 24 05:37:49 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70eb5ddd dev-python/argon2-cffi: mask [doc] for alpha and ia64 dev-ruby/furo isn't keyworded here Signed-off-by: Arthur Zamarin gentoo.org> profiles/arch/alpha/package.use.mask | 4 profiles/arch/ia64/package.use.mask | 4 2 files changed, 8 insertions(+) diff --git a/profiles/arch/alpha/package.use.mask b/profiles/arch/alpha/package.use.mask index 600452a2347..a78c83b3899 100644 --- a/profiles/arch/alpha/package.use.mask +++ b/profiles/arch/alpha/package.use.mask @@ -1,6 +1,10 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 +# Arthur Zamarin (2021-10-24) +# dev-ruby/furo isn't keyworded here +dev-python/argon2-cffi doc + # Sam James (2021-09-12) # dev-ruby/asciidoctor isn't keyworded here dev-util/ccache doc diff --git a/profiles/arch/ia64/package.use.mask b/profiles/arch/ia64/package.use.mask index dea3573a77c..0d244bbe2a8 100644 --- a/profiles/arch/ia64/package.use.mask +++ b/profiles/arch/ia64/package.use.mask @@ -1,6 +1,10 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 +# Arthur Zamarin (2021-10-24) +# dev-ruby/furo isn't keyworded here +dev-python/argon2-cffi doc + # Sam James (2021-10-24) # Avoid Pipewire for now because of new wireplumber dependency which lacks # keywords. Doubt anybody is using PW here anyway right now.
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/letter_opener/
commit: 3a0cce1ecc9fba276bd8ec316742564aa9b7c2cc Author: Hans de Graaff gentoo org> AuthorDate: Sat Oct 23 11:54:38 2021 + Commit: Hans de Graaff gentoo org> CommitDate: Sun Oct 24 05:34:10 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a0cce1e dev-ruby/letter_opener: EAPI 8; add ruby30 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Hans de Graaff gentoo.org> .../letter_opener/letter_opener-1.7.0-r1.ebuild| 33 ++ 1 file changed, 33 insertions(+) diff --git a/dev-ruby/letter_opener/letter_opener-1.7.0-r1.ebuild b/dev-ruby/letter_opener/letter_opener-1.7.0-r1.ebuild new file mode 100644 index 000..36efbc54883 --- /dev/null +++ b/dev-ruby/letter_opener/letter_opener-1.7.0-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby26 ruby27 ruby30" + +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc" +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Preview mail in the browser instead of sending" +HOMEPAGE="https://github.com/ryanb/letter_opener"; +SRC_URI="https://github.com/ryanb/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +ruby_add_bdepend "test? ( >=dev-ruby/mail-2.6:* )" +ruby_add_rdepend ">=dev-ruby/launchy-2.2:0" + +all_ruby_prepare() { + sed -i -e "/[Bb]undler/d" Rakefile spec/spec_helper.rb || die + sed -i -e '4irequire "letter_opener"' spec/spec_helper.rb || die + + # Avoid tests that require some kind of browser + sed -i -e '/opens email/askip "requires installed browser"' spec/letter_opener/delivery_method_spec.rb || die +}
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/maildir/
commit: 3add07bf7d38e5f8a7bf4d8bd234bdb2e6a25c0a Author: Hans de Graaff gentoo org> AuthorDate: Sat Oct 23 11:52:59 2021 + Commit: Hans de Graaff gentoo org> CommitDate: Sun Oct 24 05:34:10 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3add07bf dev-ruby/maildir: add ruby30 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/maildir/maildir-2.2.3.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-ruby/maildir/maildir-2.2.3.ebuild b/dev-ruby/maildir/maildir-2.2.3.ebuild index 5e034bb678b..70359bdf5d6 100644 --- a/dev-ruby/maildir/maildir-2.2.3.ebuild +++ b/dev-ruby/maildir/maildir-2.2.3.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -USE_RUBY="ruby25 ruby26 ruby27" +USE_RUBY="ruby25 ruby26 ruby27 ruby30" RUBY_FAKEGEM_EXTRAINSTALL="README.rdoc"
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/mechanize/
commit: 57206c8ad26e205bf65ae609ced29a00c1681782 Author: Hans de Graaff gentoo org> AuthorDate: Sat Oct 23 10:23:09 2021 + Commit: Hans de Graaff gentoo org> CommitDate: Sun Oct 24 05:34:04 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57206c8a dev-ruby/mechanize: cleanup Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/mechanize/Manifest | 2 -- dev-ruby/mechanize/mechanize-2.7.7.ebuild | 37 dev-ruby/mechanize/mechanize-2.8.0.ebuild | 41 --- 3 files changed, 80 deletions(-) diff --git a/dev-ruby/mechanize/Manifest b/dev-ruby/mechanize/Manifest index 6511be82e51..5c31901b627 100644 --- a/dev-ruby/mechanize/Manifest +++ b/dev-ruby/mechanize/Manifest @@ -1,4 +1,2 @@ -DIST mechanize-2.7.7.gem 139264 BLAKE2B 9a60b65fce16058e24e40ec50433653975b41210d3e26a560f6c3627c3de363c24fc0bf3325548dba87c9aaebebbe7fe9bd972c422989e5968e0447cec13fc94 SHA512 759bc6b2da8e0288edbe484b2ced02ce6ef49686a7a4c4ab0065e0f88799d23bc536a0ef160703726e83136857e893135a222aa295974e12f2b6988ecfbe7530 -DIST mechanize-2.8.0.gem 140800 BLAKE2B bfe02e8c640e0bd870cff12377b560cba62ee78bc41149813c678496282364db7aa5954e4d25321545fa8f48b4f067f0f01aa0332e5a118ce409fa935a49f906 SHA512 364b1e38e38d825ef89963ab25d463dbf51fd2423a0df1dceb137cdb58660f123b7c4652cb053fe1d0d21df229a108a5cb6c1fdf2489dd7f0747c6581e4f89a8 DIST mechanize-2.8.1.gem 141312 BLAKE2B 2542ed47a6f4cdb9926d8343e93d3aa99b196243c8b685426426557fece03be0b36fb0f51decd0f7cf3c93ccdf69aae62dad6a9142080806f9750d74727316e5 SHA512 073a204a00e3c130e80b4c7547062d12c364e8b5bf3b386a8463b3569a1716144ae169b11e130af2ecd1efc6528b5169c77c37e1bb036064175d51e7e7394779 DIST mechanize-2.8.2.gem 142336 BLAKE2B 610c8e1ac9a9f94cbe1d94d6db4b0ddadb24214bc3657fbdd05aac2b430a6978f80420e049cdd5ded247c2c1a19306eabc0d44c98649db1544802bc54fb4987d SHA512 98143d4660414f3120cf8c0d8164416d255cd0a28f96f5096d675d0d70d822d3b0e70022487058306634b9da8ac3aa4211e92d93e73d1b6112809f12a412b1e9 diff --git a/dev-ruby/mechanize/mechanize-2.7.7.ebuild b/dev-ruby/mechanize/mechanize-2.7.7.ebuild deleted file mode 100644 index b7f581b8909..000 --- a/dev-ruby/mechanize/mechanize-2.7.7.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# 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_EXTRADOC="CHANGELOG.rdoc EXAMPLES.rdoc GUIDE.rdoc README.rdoc" - -inherit ruby-fakegem - -DESCRIPTION="A Ruby library used for automating interaction with websites" -HOMEPAGE="https://github.com/sparklemotion/mechanize"; - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~ppc64 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris" -IUSE="" - -ruby_add_bdepend ">=dev-ruby/hoe-3.7 - test? ( dev-ruby/minitest:5 )" -ruby_add_rdepend ">=dev-ruby/nokogiri-1.6 - >=dev-ruby/net-http-digest_auth-1.1.1 - >=dev-ruby/net-http-persistent-2.5.2:* - >=dev-ruby/ntlm-http-0.1.1 - >=dev-ruby/webrobots-0.0.9 - >=dev-ruby/http-cookie-1.0.2 - >=dev-ruby/mime-types-1.17.2:* - >=dev-ruby/domain_name-0.5.1 - >=dev-ruby/webrick-1.7:0" - -all_ruby_install() { - all_fakegem_install - - docinto examples - dodoc examples/* -} diff --git a/dev-ruby/mechanize/mechanize-2.8.0.ebuild b/dev-ruby/mechanize/mechanize-2.8.0.ebuild deleted file mode 100644 index b3f24bed639..000 --- a/dev-ruby/mechanize/mechanize-2.8.0.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# 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_EXTRADOC="CHANGELOG.md EXAMPLES.rdoc GUIDE.rdoc README.md" - -inherit ruby-fakegem - -DESCRIPTION="A Ruby library used for automating interaction with websites" -HOMEPAGE="https://github.com/sparklemotion/mechanize"; - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc64 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris" -IUSE="" - -ruby_add_bdepend ">=dev-ruby/hoe-3.7 - test? ( dev-ruby/minitest:5 )" - -ruby_add_rdepend " - >=dev-ruby/addressable-2.7:0 - >=dev-ruby/domain_name-0.5.20190701:0 - >=dev-ruby/http-cookie-1.0.3:0 - dev-ruby/mime-types:3 - >=dev-ruby/net-http-digest_auth-1.4.1:0 - || ( dev-ruby/net-http-persistent:4 dev-ruby/net-http-persistent:3 ) - >=dev-ruby/nokogiri-1.11.2:0 - >=dev-ruby/rubyntlm-0.6.3:0 - >=dev-ruby/webrick-1.7:0 - >=dev-ruby/webrobots-0.1.2 =dev-ruby/webrobots-0.1* -" - -all_ruby_install() { - all_fakegem_install - - docinto examples - dodoc examples/* -}
[gentoo-commits] repo/gentoo:master commit in: dev-python/pyscard/
commit: 041cb113b5127b21b0a7ee5ee71e3f145e836f3b Author: Arthur Zamarin gentoo org> AuthorDate: Sun Oct 24 05:15:59 2021 + Commit: Arthur Zamarin gentoo org> CommitDate: Sun Oct 24 05:22:53 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=041cb113 dev-python/pyscard: drop 2.0.1 Signed-off-by: Arthur Zamarin gentoo.org> dev-python/pyscard/Manifest | 1 - dev-python/pyscard/pyscard-2.0.1.ebuild | 29 - 2 files changed, 30 deletions(-) diff --git a/dev-python/pyscard/Manifest b/dev-python/pyscard/Manifest index da1036fb29a..bec2780437f 100644 --- a/dev-python/pyscard/Manifest +++ b/dev-python/pyscard/Manifest @@ -1,2 +1 @@ -DIST pyscard-2.0.1.tar.gz 149193 BLAKE2B f140e3e62635634de8125d88c69e4ac3657468eef04798b4ce5b20d73905189ced71f041ef7742233a185aff8b28cc0fcda5af175d6dff21afeff84f062afcce SHA512 c9292b9616f150e500b308c47b0d6ed6f869f2022149c99a7789f8fef8c145dec4db84d35b6df30fa31d4007d75fcc21c9846693eccd9bd3bc8ec77fce5a DIST pyscard-2.0.2.tar.gz 149302 BLAKE2B bb1203aea42a0caca5212780f1312e51a4cf1a2b2842e3e33f25c17e57e3400d44c387620ec4a1dc9ca7a4ef5747900981971c87d1e37b6523a5990362645f5a SHA512 f6ab42a0aa037189f2fefe4001dde7f49125fdf63358352af956e58da9a51744a884ff1f7173b71e035a1a4a20825a906ee5d94f314b760333d1110c898a6644 diff --git a/dev-python/pyscard/pyscard-2.0.1.ebuild b/dev-python/pyscard/pyscard-2.0.1.ebuild deleted file mode 100644 index 490132595ed..000 --- a/dev-python/pyscard/pyscard-2.0.1.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8..10} ) - -inherit distutils-r1 optfeature - -DESCRIPTION="Smart card support in python" -HOMEPAGE="https://pyscard.sourceforge.io/ - https://github.com/LudovicRousseau/pyscard - https://pypi.org/project/pyscard/"; -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 ~arm ~riscv x86" - -RDEPEND="sys-apps/pcsc-lite" -DEPEND="${RDEPEND}" -BDEPEND="dev-lang/swig" - -distutils_enable_tests setup.py - -pkg_postinst() { - optfeature "Gui support" dev-python/wxpython - optfeature "Support of remote readers with Pyro" dev-python/Pyro4 -}
[gentoo-commits] repo/gentoo:master commit in: dev-python/pyglet/
commit: 4b141272ce2c07e4921c75b9bfe60cf3ec30fd6b Author: Arthur Zamarin gentoo org> AuthorDate: Sun Oct 24 05:21:13 2021 + Commit: Arthur Zamarin gentoo org> CommitDate: Sun Oct 24 05:22:54 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b141272 dev-python/pyglet: drop 1.5.19 Signed-off-by: Arthur Zamarin gentoo.org> dev-python/pyglet/Manifest | 1 - dev-python/pyglet/pyglet-1.5.19.ebuild | 61 -- 2 files changed, 62 deletions(-) diff --git a/dev-python/pyglet/Manifest b/dev-python/pyglet/Manifest index a7203707f91..bb3223b2f59 100644 --- a/dev-python/pyglet/Manifest +++ b/dev-python/pyglet/Manifest @@ -1,2 +1 @@ -DIST pyglet-1.5.19.tar.gz 6446786 BLAKE2B fef21122cf31718e0a796b3be4edf386bf477dc4fa6480970159b9d361e489417c9cad1df1060290bc1678408eed36e287c15da442275beaa8d354c268568411 SHA512 7ef85d91cdcafef8cf097e96bd34e82824696ffbc1132c2dd776fe9d3c7be0b5633fff1cb10344fcc1aafa3c0c9a75547ad374be091f35aa99527869ab4b DIST pyglet-1.5.21.tar.gz 6516128 BLAKE2B ab7f23dc4ba48450f3da4efd30fadd089777f50b5392945636886192e89e230475f5bff9ba02cd166295423ed67f98b89fd186d18601504fe0f024c203a198c8 SHA512 3df0134dbfdeb15baae059bae489158273fd4797d5dc4da903ac2fdd58ae9e291e8d5371ebe545bd125a1670adfec84cb9d9f4f11841d594f3e4d38e5910ce2a diff --git a/dev-python/pyglet/pyglet-1.5.19.ebuild b/dev-python/pyglet/pyglet-1.5.19.ebuild deleted file mode 100644 index fda20a04ce6..000 --- a/dev-python/pyglet/pyglet-1.5.19.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..9} ) -inherit distutils-r1 virtualx xdg-utils - -DESCRIPTION="Cross-platform windowing and multimedia library for Python" -HOMEPAGE="http://pyglet.org/"; -SRC_URI="https://github.com/pyglet/pyglet/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux" -IUSE="examples image +sound" - -BDEPEND=" - test? ( - dev-python/pillow[${PYTHON_USEDEP}] - dev-python/gst-python[${PYTHON_USEDEP}] - ) -" -RDEPEND=" - virtual/glu - virtual/opengl - image? ( || ( - dev-python/pillow[${PYTHON_USEDEP}] - x11-libs/gtk+:2 - ) ) - sound? ( || ( - media-libs/openal - media-sound/pulseaudio - ) ) -" -# ffmpeg? ( media-libs/avbin-bin ) - -DOCS=( DESIGN NOTICE README.md RELEASE_NOTES ) - -distutils_enable_tests pytest - -src_test() { - virtx distutils-r1_src_test -} - -python_test() { - xdg_environment_reset - - # Specify path to avoid running interactive tests - # We could add in integration tests, but they're slow - epytest tests/unit -} - -python_install_all() { - if use examples; then - dodoc -r examples - docompress -x /usr/share/doc/${PF}/examples - fi - - distutils-r1_python_install_all -}
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Mail-DMARC/
commit: 07a57be7d140c5bc763c37cbf3c0f0e0216d4dca Author: Sam James gentoo org> AuthorDate: Sun Oct 24 05:22:12 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 05:22:17 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07a57be7 dev-perl/Mail-DMARC: add 1.202.109.270 Signed-off-by: Sam James gentoo.org> .../Mail-DMARC/Mail-DMARC-1.202.109.270.ebuild | 86 ++ 1 file changed, 86 insertions(+) diff --git a/dev-perl/Mail-DMARC/Mail-DMARC-1.202.109.270.ebuild b/dev-perl/Mail-DMARC/Mail-DMARC-1.202.109.270.ebuild new file mode 100644 index 000..37fc9cedc2a --- /dev/null +++ b/dev-perl/Mail-DMARC/Mail-DMARC-1.202.109.270.ebuild @@ -0,0 +1,86 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DIST_AUTHOR=MBRADSHAW +DIST_VERSION=1.20210427 +inherit perl-module + +DESCRIPTION="Perl implementation of DMARC" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="minimal" + +PERL_RM_FILES=( + 'bin/install_deps.pl' +) + +RDEPEND=" + !minimal? ( + dev-perl/Mail-DKIM + dev-perl/Net-IMAP-Simple + dev-perl/Net-SMTPS + ) + virtual/perl-Carp + dev-perl/Config-Tiny + >=dev-perl/DBD-SQLite-1.310.0 + >=dev-perl/DBIx-Simple-1.350.0 + virtual/perl-Data-Dumper + dev-perl/Email-MIME + >=dev-perl/Email-Sender-1.300.32 + dev-perl/Email-Simple + virtual/perl-Encode + dev-perl/File-ShareDir + virtual/perl-Getopt-Long + virtual/perl-HTTP-Tiny + virtual/perl-IO + virtual/perl-IO-Compress + dev-perl/IO-Socket-SSL + dev-perl/libwww-perl + dev-perl/Mail-DKIM + dev-perl/Net-DNS + dev-perl/Net-HTTP + dev-perl/Net-IDN-Encode + dev-perl/Net-IP + dev-perl/Net-SMTPS + dev-perl/Net-SSLeay + >=dev-perl/Net-Server-2 + virtual/perl-Socket + >=dev-perl/Socket6-0.230.0 + virtual/perl-Sys-Syslog + dev-perl/Test-File-ShareDir + dev-perl/URI + dev-perl/XML-LibXML + virtual/perl-parent + >=dev-perl/Regexp-Common-2013031301 +" +BDEPEND="${RDEPEND} + >=dev-perl/Module-Build-0.360.100 + virtual/perl-ExtUtils-MakeMaker + >=dev-perl/File-ShareDir-Install-0.60.0 + test? ( + dev-perl/Test-Exception + dev-perl/Test-Output + virtual/perl-Test-Simple + ) +" + +src_test() { + local my_test_control + local badfiles=( t/author-*.t ) + my_test_control=${DIST_TEST_OVERRIDE:-${DIST_TEST:-do parallel}} + if ! has network ${my_test_control} ; then + einfo "Removing network tests w/o DIST_TEST_OVERRIDE~=network"; + badfiles+=( \ + "t/04.PurePerl.t" \ + "t/06.Result.t" \ + "t/09.HTTP.t" \ + "t/11.Report.Store.t" \ + "t/17.Report.Aggregate.Schema.t"\ + "t/22.Report.Send.SMTP.t" \ + ) + fi + perl_rm_files "${badfiles[@]}" + perl-module_src_test +}
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Mail-DMARC/
commit: 1645fa8443a806490ca8dc69336b035200ab6a65 Author: Sam James gentoo org> AuthorDate: Sun Oct 24 04:55:38 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 05:22:16 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1645fa84 dev-perl/Mail-DMARC: add missing dependency Closes: https://bugs.gentoo.org/799143 Signed-off-by: Sam James gentoo.org> ...ail-DMARC-1.202.104.270.ebuild => Mail-DMARC-1.202.104.270-r1.ebuild} | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-perl/Mail-DMARC/Mail-DMARC-1.202.104.270.ebuild b/dev-perl/Mail-DMARC/Mail-DMARC-1.202.104.270-r1.ebuild similarity index 98% rename from dev-perl/Mail-DMARC/Mail-DMARC-1.202.104.270.ebuild rename to dev-perl/Mail-DMARC/Mail-DMARC-1.202.104.270-r1.ebuild index a05c6ea66ca..37fc9cedc2a 100644 --- a/dev-perl/Mail-DMARC/Mail-DMARC-1.202.104.270.ebuild +++ b/dev-perl/Mail-DMARC/Mail-DMARC-1.202.104.270-r1.ebuild @@ -28,6 +28,7 @@ RDEPEND=" >=dev-perl/DBIx-Simple-1.350.0 virtual/perl-Data-Dumper dev-perl/Email-MIME + >=dev-perl/Email-Sender-1.300.32 dev-perl/Email-Simple virtual/perl-Encode dev-perl/File-ShareDir
[gentoo-commits] repo/gentoo:master commit in: dev-python/oslotest/
commit: 681f79b14017df38f7dff2b4e2cacf6460a7c29b Author: Arthur Zamarin gentoo org> AuthorDate: Sun Oct 24 05:11:15 2021 + Commit: Arthur Zamarin gentoo org> CommitDate: Sun Oct 24 05:13:03 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=681f79b1 dev-python/oslotest: drop 4.4.1 Signed-off-by: Arthur Zamarin gentoo.org> dev-python/oslotest/Manifest | 1 - dev-python/oslotest/oslotest-4.4.1.ebuild | 25 - 2 files changed, 26 deletions(-) diff --git a/dev-python/oslotest/Manifest b/dev-python/oslotest/Manifest index 4b6f1fd03c6..14acc420b3b 100644 --- a/dev-python/oslotest/Manifest +++ b/dev-python/oslotest/Manifest @@ -1,2 +1 @@ -DIST oslotest-4.4.1.tar.gz 34879 BLAKE2B dd7241793f88f31c9427e07b07c015a0f8fe39f65c59341be0874fd4f9b735d1da3b105213d77bfc8cec3ea0d7587cd770a88c2a4b59902c595e9fefa5dc4730 SHA512 e4d60ab399b4eee02d1798948f62ad3acec0d9a81e6ec3b6a8d3dca7035dec0d79a5164c05e8ca4615b0489f44b6ff0c06e6420bf3d96131d15f3458e751896d DIST oslotest-4.5.0.tar.gz 38233 BLAKE2B 73fbf056467c5d86c647b0ff49ce2e75654c8a2ffbcda78f8ea49edddb55a4c5e0f065c7a95291468b2d5d73ec5f5152d16a2129ab17fc5e6d457284e684ec31 SHA512 2dc0644365621fe271e09f2f7be631f697749c9d343f1ce9b635986df41ec5be8787350b3f2eb6b6501f4baac1ec597b2f0ecada7936db967075ebce837e1517 diff --git a/dev-python/oslotest/oslotest-4.4.1.ebuild b/dev-python/oslotest/oslotest-4.4.1.ebuild deleted file mode 100644 index 060a17fc870..000 --- a/dev-python/oslotest/oslotest-4.4.1.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7..9} ) -inherit distutils-r1 - -DESCRIPTION="Oslo test framework" -HOMEPAGE="https://launchpad.net/oslo"; -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 x86 ~amd64-linux ~x86-linux" - -BDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]" -RDEPEND=" - >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}] - >=dev-python/subunit-1.0.0[${PYTHON_USEDEP}] - >=dev-python/six-1.10.0[${PYTHON_USEDEP}] - >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}] -" - -distutils_enable_tests unittest
[gentoo-commits] repo/gentoo:master commit in: dev-python/keystoneauth/
commit: b6ea3e426f0d1dfc6364edbfe63915c394216c10 Author: Arthur Zamarin gentoo org> AuthorDate: Sun Oct 24 05:10:34 2021 + Commit: Arthur Zamarin gentoo org> CommitDate: Sun Oct 24 05:13:03 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6ea3e42 dev-python/keystoneauth: drop 4.2.1-r1 Signed-off-by: Arthur Zamarin gentoo.org> dev-python/keystoneauth/Manifest | 1 - .../keystoneauth/keystoneauth-4.2.1-r1.ebuild | 54 -- 2 files changed, 55 deletions(-) diff --git a/dev-python/keystoneauth/Manifest b/dev-python/keystoneauth/Manifest index bc44361be75..c8d6357e3a3 100644 --- a/dev-python/keystoneauth/Manifest +++ b/dev-python/keystoneauth/Manifest @@ -1,2 +1 @@ -DIST keystoneauth1-4.2.1.tar.gz 258328 BLAKE2B 62f8b065a77d4150c9491f4352a3a2d37d42cc54df8db6a1eabdbe93f18714838ebed2dec0d6188e91f2dc3708b0c3cfbcf17a96411df05dd96c409a1b6c8beb SHA512 cb137d259dba7cab31fa39293d40d6654c6b36157f088948995d55755fb4dc8c29df1f978a58fbc0881516f11db840f0a25c7621bb092ab95d901dde6bd210ca DIST keystoneauth1-4.4.0.tar.gz 266308 BLAKE2B 471b6662c27b5cc36dfde76e17f6855d5e840280a05c5c23bbda97b2e75b8fbc44e815994de514a475424476ed4d627930f993ed5fc7109fa3a2a99acf42dde2 SHA512 208b02c8df8a5cbdad1ca66c665d547b375eac2fa0d3aeb6dea3f9ed7ba0e799568e4407b8771df5a362d4275fb6a9b2fe2e3a9287b3817da43463356bc593a3 diff --git a/dev-python/keystoneauth/keystoneauth-4.2.1-r1.ebuild b/dev-python/keystoneauth/keystoneauth-4.2.1-r1.ebuild deleted file mode 100644 index 184945d166e..000 --- a/dev-python/keystoneauth/keystoneauth-4.2.1-r1.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8..9} ) -inherit distutils-r1 - -DESCRIPTION="This package contains tools for authenticating to an OpenStack-based cloud." -HOMEPAGE="https://github.com/openstack/keystoneauth"; -SRC_URI="mirror://pypi/${PN:0:1}/${PN}1/${PN}1-${PV}.tar.gz" -S="${WORKDIR}/${PN}1-${PV}" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 x86" - -CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}] - !~dev-python/pbr-2.1.0" -RDEPEND="${CDEPEND} - >=dev-python/iso8601-0.1.11[${PYTHON_USEDEP}] - >=dev-python/requests-2.14.2[${PYTHON_USEDEP}] - >=dev-python/six-1.10.0[${PYTHON_USEDEP}] - >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}] - >=dev-python/os-service-types-1.2.0[${PYTHON_USEDEP}]" -BDEPEND="${CDEPEND} - test? ( - >=dev-python/betamax-0.7.0[${PYTHON_USEDEP}] - >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}] - dev-python/hacking[${PYTHON_USEDEP}] - >=dev-python/lxml-4.2.0[${PYTHON_USEDEP}] - >=dev-python/oauthlib-0.6.2[${PYTHON_USEDEP}] - >=dev-python/oslo-config-5.2.0[${PYTHON_USEDEP}] - >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}] - >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}] - >=dev-python/pyyaml-3.12[${PYTHON_USEDEP}] - >=dev-python/requests-kerberos-0.8.0[${PYTHON_USEDEP}] - >=dev-python/requests-mock-1.2.0[${PYTHON_USEDEP}] - >=dev-python/testresources-2.0.0[${PYTHON_USEDEP}] - >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}] - )" - -distutils_enable_tests unittest - -src_prepare() { - # relies on specific test runner name - sed -i -e 's:run\.py:unittest_or_fail.py:' \ - keystoneauth1/tests/unit/test_session.py || die - distutils-r1_src_prepare -} - -python_test() { - eunittest -b -}
[gentoo-commits] repo/gentoo:master commit in: dev-python/responses/
commit: c54ddb393527f420699601e23d6f3213964cefb1 Author: Arthur Zamarin gentoo org> AuthorDate: Sun Oct 24 05:03:37 2021 + Commit: Arthur Zamarin gentoo org> CommitDate: Sun Oct 24 05:12:58 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c54ddb39 dev-python/responses: drop 0.13.4 Signed-off-by: Arthur Zamarin gentoo.org> dev-python/responses/Manifest| 1 - dev-python/responses/responses-0.13.4.ebuild | 30 2 files changed, 31 deletions(-) diff --git a/dev-python/responses/Manifest b/dev-python/responses/Manifest index 5effcd391e3..08d27ec3d1f 100644 --- a/dev-python/responses/Manifest +++ b/dev-python/responses/Manifest @@ -1,2 +1 @@ -DIST responses-0.13.4.tar.gz 30608 BLAKE2B 1ae4fec958aa165e5cc76ec0bd87b7f872e97f3ddd952f6a79024eae3e2638c08681020244c86d05f6fe5467408cef30f6c8c311538aca28a618dc746db42974 SHA512 645bb967d2ff601a49c22e603ac1ab0c1f070dc6d62ad3b87ec58fe97cae7e4882c0068b565a24ba05ec1a3cccb8e9d90fb1b398bf79935c7a8b208f3ead1920 DIST responses-0.14.0.tar.gz 32666 BLAKE2B 1792f1a78415e412a97323259cba62b1a41fb747f31e5c7e323c962c80e63e59210d66b098cd9244abfd092c2df91e6f1dd82cc78e451c5cde54129b40a0 SHA512 abc117e5fb9e065202520342e1e5dc4862e5ba553899bf0427726bff02f581124d2d2225371180c97b04fd258119b9511b3319622402a44411ebf51614d26022 diff --git a/dev-python/responses/responses-0.13.4.ebuild b/dev-python/responses/responses-0.13.4.ebuild deleted file mode 100644 index cc6bd8f2dc8..000 --- a/dev-python/responses/responses-0.13.4.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} pypy3 ) -inherit distutils-r1 - -DESCRIPTION="Utility for mocking out the Python Requests library" -HOMEPAGE="https://github.com/getsentry/responses"; -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" - -RDEPEND=" - >=dev-python/requests-2.0[${PYTHON_USEDEP}] - >=dev-python/urllib3-1.25.10[${PYTHON_USEDEP}] - dev-python/cookies[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}] -" - -BDEPEND=" - test? ( - dev-python/pytest-localserver[${PYTHON_USEDEP}] - ) -" - -distutils_enable_tests pytest
[gentoo-commits] repo/gentoo:master commit in: dev-python/podcastparser/
commit: 6c907d0bb3d41f5353e9dded9e47f450c72c09d2 Author: Arthur Zamarin gentoo org> AuthorDate: Sun Oct 24 05:12:12 2021 + Commit: Arthur Zamarin gentoo org> CommitDate: Sun Oct 24 05:13:05 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c907d0b dev-python/podcastparser: drop 0.6.7 Signed-off-by: Arthur Zamarin gentoo.org> dev-python/podcastparser/Manifest | 1 - dev-python/podcastparser/podcastparser-0.6.7.ebuild | 19 --- 2 files changed, 20 deletions(-) diff --git a/dev-python/podcastparser/Manifest b/dev-python/podcastparser/Manifest index 791b6f2ff4f..c1657a4dee2 100644 --- a/dev-python/podcastparser/Manifest +++ b/dev-python/podcastparser/Manifest @@ -1,2 +1 @@ -DIST podcastparser-0.6.7.tar.gz 27671 BLAKE2B 03d55fb17622c24084346b0872ff501192e4232df35104ce6af0e90c9ba58528073ad6367d52985524cab01e1dc9de2f47bb66a267bae43208d74b61d4881380 SHA512 e020e4a729f8ed021aee1a91fde9eb70255cd3f98ef2edae98824789448065c75cfe9e0b35e9872bbbfd7a38ae4f9daf01a9945c4a50a4f6a61b498f5544b86d DIST podcastparser-0.6.8.tar.gz 29809 BLAKE2B 19eda892dcc83f5371d23147a9044bd1249c05885aa7e72edc868e05744bf691336ceb8b445dca4c51612846bc7e8c087fa0c36fa44568a4f95b0e8f3eb155cf SHA512 8c1152c6d7229faf375af5c3f02642debd081915dcb55ba706863620af6039eb710648bf970d1cd8018d43dd36ba579a456e3db0e82c7efcb6ac94a5cd23b1e8 diff --git a/dev-python/podcastparser/podcastparser-0.6.7.ebuild b/dev-python/podcastparser/podcastparser-0.6.7.ebuild deleted file mode 100644 index e48c32517b4..000 --- a/dev-python/podcastparser/podcastparser-0.6.7.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8,9,10} ) -DISTUTILS_USE_SETUPTOOLS=no - -inherit distutils-r1 - -DESCRIPTION="Podcast parser for the gpodder client" -HOMEPAGE="https://github.com/gpodder/podcastparser"; -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="ISC" -SLOT="0" -KEYWORDS="amd64 x86" - -distutils_enable_tests pytest
[gentoo-commits] repo/gentoo:master commit in: dev-python/tox/
commit: f85cfd4727e159ce83a21fbdde0b4325bac40316 Author: Arthur Zamarin gentoo org> AuthorDate: Sun Oct 24 04:58:29 2021 + Commit: Arthur Zamarin gentoo org> CommitDate: Sun Oct 24 05:12:53 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f85cfd47 dev-python/tox: drop 3.24.3 Signed-off-by: Arthur Zamarin gentoo.org> dev-python/tox/Manifest | 1 - dev-python/tox/tox-3.24.3.ebuild | 69 2 files changed, 70 deletions(-) diff --git a/dev-python/tox/Manifest b/dev-python/tox/Manifest index 935dba5f7e0..f10eb6c0273 100644 --- a/dev-python/tox/Manifest +++ b/dev-python/tox/Manifest @@ -1,2 +1 @@ -DIST tox-3.24.3.tar.gz 306285 BLAKE2B 368eaf959533f62b08d6e44929ae327ff25ea6eca25a3f47c7b9945428821bf80ab7e0ab4daea8821b55b9a7a009f30c3d5641812fd444a86577ea0ae83adb7d SHA512 de1c1ccc3a277c617521e77806d1d993a5c19f811016bebc442bfea12c3d40a22bf80b7d11b11744a5ddf705c6e8955f2811f149d413ea8522d94c985ed1f715 DIST tox-3.24.4.tar.gz 306760 BLAKE2B 332c99d021bc3c25549fd95d051baaa1f0dc3aaf776928320826bb7e6bce6444fd5a993e1dbff3a4ebbde9dbb59e30d07eae4b04096294b3a186b130b8312587 SHA512 49e2cb74f119b5cc049d2a64479e56307cea1f36a5586840cca12cb8f4ce8a2ba991cc6142bef7f095a7d32b44f7513f89cce56d89deaff0e12194ceb3da6249 diff --git a/dev-python/tox/tox-3.24.3.ebuild b/dev-python/tox/tox-3.24.3.ebuild deleted file mode 100644 index 93e2236b0b8..000 --- a/dev-python/tox/tox-3.24.3.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} pypy3 ) -inherit distutils-r1 - -DESCRIPTION="virtualenv-based automation of test activities" -HOMEPAGE="https://tox.readthedocs.io https://github.com/tox-dev/tox https://pypi.org/project/tox/"; -SRC_URI="https://github.com/tox-dev/tox/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86" -# doc disabled because of missing deps in tree -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-python/filelock[${PYTHON_USEDEP}] - $(python_gen_cond_dep ' - >=dev-python/importlib_metadata-1.1[${PYTHON_USEDEP}] - ' pypy3) - dev-python/packaging[${PYTHON_USEDEP}] - >=dev-python/pluggy-0.12[${PYTHON_USEDEP}] - dev-python/pip[${PYTHON_USEDEP}] - dev-python/py[${PYTHON_USEDEP}] - >=dev-python/six-1.14[${PYTHON_USEDEP}] - dev-python/toml[${PYTHON_USEDEP}] - >=dev-python/virtualenv-16.0.0[${PYTHON_USEDEP}]" -# TODO: figure out how to make tests work without the package being -# installed first. -BDEPEND=" - dev-python/setuptools_scm[${PYTHON_USEDEP}] - test? ( - ${RDEPEND} - >=dev-python/flaky-3.4.0[${PYTHON_USEDEP}] - >=dev-python/freezegun-0.3.11[${PYTHON_USEDEP}] - >=dev-python/pytest-4.0.0[${PYTHON_USEDEP}] - dev-python/pytest-mock[${PYTHON_USEDEP}] - )" - -src_configure() { - export SETUPTOOLS_SCM_PRETEND_VERSION=${PV} -} - -python_test() { - local deselect=( - # broken without Internet - tests/unit/session/test_provision.py::test_provision_non_canonical_dep - tests/integration/test_provision_int.py::test_provision_interrupt_child - - # expects python2 to exist - tests/unit/interpreters/test_interpreters.py::test_tox_get_python_executable - ) - - [[ ${EPYTHON} != pypy3 ]] && deselect+=( - # TODO? - tests/unit/interpreters/test_interpreters.py::test_find_alias_on_path - - # broken without tox installed first - # TODO: why it can't import itself? - tests/integration/test_parallel_interrupt.py::test_parallel_interrupt - ) - - distutils_install_for_testing --via-venv - epytest --no-network ${deselect[@]/#/--deselect } -}
[gentoo-commits] repo/gentoo:master commit in: dev-python/stestr/
commit: b971d7535bc42f665dd663da005242359b45e5b6 Author: Arthur Zamarin gentoo org> AuthorDate: Sun Oct 24 04:57:41 2021 + Commit: Arthur Zamarin gentoo org> CommitDate: Sun Oct 24 05:12:52 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b971d753 dev-python/stestr: drop 3.2.0 Signed-off-by: Arthur Zamarin gentoo.org> dev-python/stestr/Manifest| 1 - dev-python/stestr/stestr-3.2.0.ebuild | 38 --- 2 files changed, 39 deletions(-) diff --git a/dev-python/stestr/Manifest b/dev-python/stestr/Manifest index 0672bbf96b6..484a3edd58c 100644 --- a/dev-python/stestr/Manifest +++ b/dev-python/stestr/Manifest @@ -1,2 +1 @@ -DIST stestr-3.2.0.tar.gz 118000 BLAKE2B 901654b53fdc9e5ab287b77b0a26ce531e3a167b2f5d0aa0765de170341bac8ebfbc4efcae39f672ca6dc6f7518913cb5e56d87faaef35c0b06287652c06edb1 SHA512 4f5e41c92518104b06f5b9717d59c214a8d87efe47fee199a602e71efd64e29c98711ffcf3b88cd00209946d0ab123c7ec5aa842e1d54bc65d83c8d70fa4898c DIST stestr-3.2.1.tar.gz 118139 BLAKE2B dedb63767adfab26d837ce92762dcc44a482b1772aecbc31d12beb22f2c3c08368475cd110de7376f4df7fa8ce03c5b8e3b04436296ad4bd11c2fc3a4243695b SHA512 43187ca0d81e3b31e16ed60a1db561dc49c34f679594d11cad8cb0e658bf790af0b3d606bf99233a5767e2511675d3aedb6a476046d2f5483ffab05eaae393ed diff --git a/dev-python/stestr/stestr-3.2.0.ebuild b/dev-python/stestr/stestr-3.2.0.ebuild deleted file mode 100644 index 2d86550e800..000 --- a/dev-python/stestr/stestr-3.2.0.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7..9} ) -DISTUTILS_USE_SETUPTOOLS=rdepend -inherit distutils-r1 - -DESCRIPTION="A parallel Python test runner built around subunit" -HOMEPAGE="https://github.com/mtreinish/stestr"; -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - >=dev-python/pbr-2.0.0[${PYTHON_USEDEP}] - dev-python/future[${PYTHON_USEDEP}] - >=dev-python/cliff-2.8.0[${PYTHON_USEDEP}] - >=dev-python/subunit-1.4.0[${PYTHON_USEDEP}] - >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}] - >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}] - >=dev-python/pyyaml-3.10.0[${PYTHON_USEDEP}] - >=dev-python/voluptuous-0.8.9[${PYTHON_USEDEP}]" -BDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}] - test? ( - >=dev-python/ddt-1.0.1[${PYTHON_USEDEP}] - )" - -python_test() { - distutils_install_for_testing - stestr init || die - stestr run || die "Tests failed with ${EPYTHON}" -}
[gentoo-commits] repo/gentoo:master commit in: dev-python/mechanize/
commit: b14437be5c975448473b2fca9e763ff95b7f39a7 Author: Arthur Zamarin gentoo org> AuthorDate: Sun Oct 24 05:07:09 2021 + Commit: Arthur Zamarin gentoo org> CommitDate: Sun Oct 24 05:13:00 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b14437be dev-python/mechanize: drop 0.4.6 Signed-off-by: Arthur Zamarin gentoo.org> dev-python/mechanize/Manifest | 1 - dev-python/mechanize/mechanize-0.4.6.ebuild | 28 2 files changed, 29 deletions(-) diff --git a/dev-python/mechanize/Manifest b/dev-python/mechanize/Manifest index d13c8e51f20..6dd9ae5ce28 100644 --- a/dev-python/mechanize/Manifest +++ b/dev-python/mechanize/Manifest @@ -1,2 +1 @@ -DIST mechanize-0.4.6.tar.gz 217254 BLAKE2B 0adc7e0bcbef93051412d0d22e9f426984e197791b43b007087d70d3b15d4fce2f4868e8ad520e8621d35890d6454bd9bfc0910dc5af3d640e2620de4f536e16 SHA512 c28ba59529d2a1d4454467c1e034fc583952fd152c8f889bf9b4c496ad4567e9ca5f8b133eb6eb081bc1e811f54c508e47f8a2c5ccdd8f04c709dafeedf05820 DIST mechanize-0.4.7.tar.gz 217289 BLAKE2B 9254cc88141b08bd9f97b63ac1dcb6b417e042cbefcf710ea9e1c340e8f6331ef9301a47bc6dd989970810ef36b97b867b81b3a44c9a4cdf283a77b04f25decd SHA512 f2796f322b1000818bcd4bcedf1d88538ba3a43151b74c950594a60dd7b5cf96ea4fcb605e30c93a5df095da35418401487928b9adfcca932e95dbf964d74c53 diff --git a/dev-python/mechanize/mechanize-0.4.6.ebuild b/dev-python/mechanize/mechanize-0.4.6.ebuild deleted file mode 100644 index 0dbed48e2d1..000 --- a/dev-python/mechanize/mechanize-0.4.6.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) -inherit distutils-r1 - -DESCRIPTION="Stateful programmatic web browsing in Python" -HOMEPAGE="https://github.com/python-mechanize/mechanize"; -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="|| ( BSD ZPL )" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=">=dev-python/html5lib-0.9[${PYTHON_USEDEP}]" -BDEPEND=" - test? ( - ${RDEPEND} - ) -" - -python_test() { - "${EPYTHON}" run_tests.py || die -}
[gentoo-commits] repo/gentoo:master commit in: dev-python/owslib/
commit: cf8627998040b708cfcd27bad7ec9603e889854b Author: Arthur Zamarin gentoo org> AuthorDate: Sun Oct 24 05:07:15 2021 + Commit: Arthur Zamarin gentoo org> CommitDate: Sun Oct 24 05:13:01 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf862799 dev-python/owslib: drop 0.20.0 Signed-off-by: Arthur Zamarin gentoo.org> dev-python/owslib/Manifest | 1 - dev-python/owslib/owslib-0.20.0.ebuild | 49 -- 2 files changed, 50 deletions(-) diff --git a/dev-python/owslib/Manifest b/dev-python/owslib/Manifest index 052cb195f61..7ddc8b75465 100644 --- a/dev-python/owslib/Manifest +++ b/dev-python/owslib/Manifest @@ -1,2 +1 @@ -DIST owslib-0.20.0.tar.gz 912319 BLAKE2B 9f6e44f76554d67756839bfad1cdce6e2e7a4db6c3517ed308256745a3ea1df77488718f307bcd59dfcae7bab7801ba1974131f358db1bd070846640ccf08ada SHA512 c30e14d0a310617d2dbcca436f38d4a942b8c5efb96506554e650b20b34580fd0119ae6bf17892bb09ceff7141b9cbfd32deb582d14d81b6518dbbc223116d07 DIST owslib-0.25.0.tar.gz 936550 BLAKE2B 9cb34a6c7c93dc89a466c13351d457c9372d405055fa3f6cec9c05c231e76762168c6813085523037b3a6439100500c46c1044569bd2bb598c3e2e63757d8b86 SHA512 058108cf77197ce24793608869d56bf0467230f5f231ac9ba48445f2e02d07ea1e26be03ad6967504a1e625008ae2768ed2a663f3b7a49dcea410ee4a8b40cec diff --git a/dev-python/owslib/owslib-0.20.0.ebuild b/dev-python/owslib/owslib-0.20.0.ebuild deleted file mode 100644 index cbb73ccd6a1..000 --- a/dev-python/owslib/owslib-0.20.0.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8..10} ) -inherit distutils-r1 - -DESCRIPTION="Library for client programming with Open Geospatial Consortium web service" -HOMEPAGE="https://geopython.github.io/OWSLib/"; -SRC_URI="https://github.com/geopython/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -S="${WORKDIR}/OWSLib-${PV}" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~x86" -IUSE="test" - -RDEPEND=" - dev-python/lxml[${PYTHON_USEDEP}] - dev-python/pyproj[${PYTHON_USEDEP}] - dev-python/python-dateutil[${PYTHON_USEDEP}] - dev-python/pytz[${PYTHON_USEDEP}] - dev-python/pyyaml[${PYTHON_USEDEP}] - dev-python/requests[${PYTHON_USEDEP}] -" -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - dev-python/pillow[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] - ) -" - -RESTRICT="test" # tests require WAN access -PROPERTIES="test_network" - -PATCHES=( "${FILESDIR}/${P}-no-privacybreach.patch" ) - -src_prepare() { - sed -e '/addopts/d' -i tox.ini || die - distutils-r1_src_prepare -} - -python_test() { - epytest --tb=native --ignore=setup.py --doctest-modules --doctest-glob 'tests/**/*.txt' - #"${EPYTHON}" "${S}/setup.py" test || die -}
[gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-xdist/
commit: a7035f4c43053a889fe40d32edb923f64796ad52 Author: Arthur Zamarin gentoo org> AuthorDate: Sun Oct 24 05:02:18 2021 + Commit: Arthur Zamarin gentoo org> CommitDate: Sun Oct 24 05:12:57 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7035f4c dev-python/pytest-xdist: drop 2.3.0 Signed-off-by: Arthur Zamarin gentoo.org> dev-python/pytest-xdist/Manifest | 1 - dev-python/pytest-xdist/pytest-xdist-2.3.0.ebuild | 47 --- 2 files changed, 48 deletions(-) diff --git a/dev-python/pytest-xdist/Manifest b/dev-python/pytest-xdist/Manifest index 908acf5fdae..c5c6980f93b 100644 --- a/dev-python/pytest-xdist/Manifest +++ b/dev-python/pytest-xdist/Manifest @@ -1,2 +1 @@ -DIST pytest-xdist-2.3.0.tar.gz 66072 BLAKE2B 367ff15cd46b8594668ccd9710a2fc7665295d41e268b464b81d5e740a580d70621a1ab5ab590788e44887b7aa3049a83853ea097c0cff54e22c3422c8f11b24 SHA512 bf49a1684b29f0ae21621b9d293f530cf2fa3d88b33f631fb803aef872c0d5ef6b3bbf2e16d01be8a6c1872fe3e6cff86ab842e3000b9e642fb46c2a170627f6 DIST pytest-xdist-2.4.0.tar.gz 67199 BLAKE2B bba867bfbd1e161ada2157fdb5a10f929fefed959b64afef74453206d91e5014abaaa1363ac9adbc89ed476a841607f6830781817842b9be119a09bda7278b91 SHA512 2d2da6aaa8da07a28d7c6c81a0044493b7d0d1a68921e7ec94cfd2f698eaa5594b6da4d82524804637d5cc061fbe19034f3c65a07ee5a0c906170856edc3d383 diff --git a/dev-python/pytest-xdist/pytest-xdist-2.3.0.ebuild b/dev-python/pytest-xdist/pytest-xdist-2.3.0.ebuild deleted file mode 100644 index 883e7c88dce..000 --- a/dev-python/pytest-xdist/pytest-xdist-2.3.0.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8..10} pypy3 ) - -inherit distutils-r1 - -DESCRIPTION="Distributed testing and loop-on-failing modes" -HOMEPAGE="https://pypi.org/project/pytest-xdist/ https://github.com/pytest-dev/pytest-xdist"; -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -SLOT="0" -LICENSE="MIT" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos" - -# pytest-xdist >= 2 fails with pytest < 6 -RDEPEND=" - dev-python/execnet[${PYTHON_USEDEP}] - dev-python/psutil[${PYTHON_USEDEP}] - >=dev-python/pytest-6[${PYTHON_USEDEP}] - dev-python/pytest-forked[${PYTHON_USEDEP}] -" - -BDEPEND=" - dev-python/setuptools_scm[${PYTHON_USEDEP}] - test? ( - dev-python/filelock[${PYTHON_USEDEP}] - ) -" - -PATCHES=( - "${FILESDIR}"/${PN}-2.2.0-services-conflict.patch -) - -distutils_enable_tests --install pytest - -python_test() { - # disable autoloading plugins in nested pytest calls - local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 - # since we disabled autoloading, force loading necessary plugins - local -x PYTEST_PLUGINS=xdist.plugin,xdist.looponfail,pytest_forked - - distutils_install_for_testing - epytest -}
[gentoo-commits] repo/gentoo:master commit in: dev-python/urllib3/
commit: fa37d91bfdc7c0acc93004ead59bf6e9d52d6428 Author: Arthur Zamarin gentoo org> AuthorDate: Sun Oct 24 05:04:33 2021 + Commit: Arthur Zamarin gentoo org> CommitDate: Sun Oct 24 05:12:59 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa37d91b dev-python/urllib3: drop 1.26.6 Signed-off-by: Arthur Zamarin gentoo.org> dev-python/urllib3/Manifest | 1 - dev-python/urllib3/urllib3-1.26.6.ebuild | 66 2 files changed, 67 deletions(-) diff --git a/dev-python/urllib3/Manifest b/dev-python/urllib3/Manifest index ec8591d43b1..6dc700bc75f 100644 --- a/dev-python/urllib3/Manifest +++ b/dev-python/urllib3/Manifest @@ -1,2 +1 @@ -DIST urllib3-1.26.6.tar.gz 289927 BLAKE2B 197b0df759b27fc4906c565426e9c7b533fad56f10695ab5ae6c6c4d05d5c889dba906be526d8b8f41405f29696046b7db6e2cbb2fa16843af80e072138cc35f SHA512 19eb4b88b7a575db717db420ff79b304769d9a6d2b576a236d69719101c4d52d6b0079bd049c885e630f0dfd60471f8bb33836847e0569652cddece910ec2979 DIST urllib3-1.26.7.tar.gz 291350 BLAKE2B 5a95ea4df2e5a66ac7f3059b5453e122ae0e40531a23cb743e5a9574778a370d0cee3cb63fe6b29483b27c4a6ec498266ec5a0434db882ce0a79fb8d8400e08d SHA512 6f5a5e6dd5ff99950fcc051495e0a698153b57e20b6c83d869b54c7fece9616909bcf2fe99efc40815f8722996ad93e430bf765ce5c629b912690c286014b86f diff --git a/dev-python/urllib3/urllib3-1.26.6.ebuild b/dev-python/urllib3/urllib3-1.26.6.ebuild deleted file mode 100644 index 5502af18524..000 --- a/dev-python/urllib3/urllib3-1.26.6.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -# please keep this ebuild at EAPI 7 -- sys-apps/portage dep -EAPI=7 - -PYTHON_COMPAT=( python3_{8..10} pypy3 ) -PYTHON_REQ_USE="ssl(+)" - -inherit distutils-r1 - -DESCRIPTION="HTTP library with thread-safe connection pooling, file post, and more" -HOMEPAGE="https://github.com/urllib3/urllib3"; -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="brotli test" -RESTRICT="!test? ( test )" - -# dev-python/{pyopenssl,cryptography,idna,certifi} are optional runtime -# dependencies. Do not add them to RDEPEND. They should be unnecessary with -# modern versions of python (>= 3.2). -RDEPEND=" - >=dev-python/PySocks-1.5.8[${PYTHON_USEDEP}] - =dev-python/trustme-0.5.3[\${PYTHON_USEDEP}] - >=www-servers/tornado-4.2.1[\${PYTHON_USEDEP}] - " python3_{6..10}) - ) -" - -python_prepare_all() { - # tests failing if 'localhost.' cannot be resolved - sed -e 's:test_dotted_fqdn:_&:' \ - -i test/with_dummyserver/test_https.py || die - sed -e 's:test_request_host_header_ignores_fqdn_dot:_&:' \ - -i test/with_dummyserver/test_socketlevel.py || die - - distutils-r1_python_prepare_all -} - -python_test() { - local -x CI=1 - # FIXME: get tornado ported - # please keep in sync with BDEPEND! - has "${EPYTHON}" python3.{6..10} || continue - - local deselect=( - # TODO? - test/with_dummyserver/test_socketlevel.py::TestSocketClosing::test_timeout_errors_cause_retries - ) - - epytest ${deselect[@]/#/--deselect } -}
[gentoo-commits] repo/gentoo:master commit in: dev-python/jupyter_core/
commit: fdfcafe8c85bdcd5df6ce85a8c59eca5a0d603b7 Author: Arthur Zamarin gentoo org> AuthorDate: Sun Oct 24 05:01:39 2021 + Commit: Arthur Zamarin gentoo org> CommitDate: Sun Oct 24 05:12:56 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdfcafe8 dev-python/jupyter_core: drop 4.7.1 Signed-off-by: Arthur Zamarin gentoo.org> dev-python/jupyter_core/Manifest | 1 - dev-python/jupyter_core/jupyter_core-4.7.1.ebuild | 40 --- 2 files changed, 41 deletions(-) diff --git a/dev-python/jupyter_core/Manifest b/dev-python/jupyter_core/Manifest index 3289221e28d..215774878a8 100644 --- a/dev-python/jupyter_core/Manifest +++ b/dev-python/jupyter_core/Manifest @@ -1,2 +1 @@ -DIST jupyter_core-4.7.1.tar.gz 68886 BLAKE2B aa89351845c669474c03a307934a5d84b6357679bc99f2fc7da4f93ff347766d52ce3551780803b73941d6457f7004306e795398fd390c81e9180193a2119225 SHA512 bc190abd000566dbd097dcb14acf1926c92bb265f2cfbbd14dac6a9cf7d6a02f924ba89fa957ca30c2af57433e9187e288bb8e80d039a3d3a583c6e488a9c80e DIST jupyter_core-4.8.1.tar.gz 73579 BLAKE2B d5dcc89d948fa52f4a1b7c210585e9e5657004a431a4d177d7393d8283a9be86117e2c2452e4381399d1f479ae7b9ec4c5f891d09dd99c81768a64b69d8b182a SHA512 774612652537f46f486c0ae4157053463debcdc079d5e732865c729ef7fbab5f0d1b8da5d4e7cc1eda3a80250b43877d8f75889fa86330f951c61e3f8a7a29e2 diff --git a/dev-python/jupyter_core/jupyter_core-4.7.1.ebuild b/dev-python/jupyter_core/jupyter_core-4.7.1.ebuild deleted file mode 100644 index 9e966dfd2d9..000 --- a/dev-python/jupyter_core/jupyter_core-4.7.1.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) -inherit distutils-r1 - -DESCRIPTION="Core common functionality of Jupyter projects" -HOMEPAGE="https://jupyter.org"; -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv ~s390 sparc x86" - -RDEPEND="dev-python/traitlets[${PYTHON_USEDEP}]" -BDEPEND=" - test? ( - >=dev-python/ipython-4.0.1[${PYTHON_USEDEP}] - dev-python/nose[${PYTHON_USEDEP}] - )" - -distutils_enable_sphinx docs \ - dev-python/sphinxcontrib-github-alt -distutils_enable_tests pytest - -python_test() { - local deselect=( - # fails if jupyter is not in system sitedir - # (PYTHONPATH is insufficient) - jupyter_core/tests/test_command.py::test_not_on_path - jupyter_core/tests/test_command.py::test_path_priority - # TODO - jupyter_core/tests/test_paths.py::test_jupyter_path_prefer_env - ) - - pytest -vv ${deselect[@]/#/--deselect } || - die "Tests failed with ${EPYTHON}" -}
[gentoo-commits] repo/gentoo:master commit in: dev-python/tqdm/
commit: 0cd83a85ba256bb9e0d4fecaae8f80c490b35216 Author: Arthur Zamarin gentoo org> AuthorDate: Sun Oct 24 04:59:13 2021 + Commit: Arthur Zamarin gentoo org> CommitDate: Sun Oct 24 05:12:54 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cd83a85 dev-python/tqdm: drop 4.62.2 Signed-off-by: Arthur Zamarin gentoo.org> dev-python/tqdm/Manifest | 1 - dev-python/tqdm/tqdm-4.62.2.ebuild | 51 -- 2 files changed, 52 deletions(-) diff --git a/dev-python/tqdm/Manifest b/dev-python/tqdm/Manifest index 8ded17b5bb8..c2f40f608e0 100644 --- a/dev-python/tqdm/Manifest +++ b/dev-python/tqdm/Manifest @@ -1,2 +1 @@ -DIST tqdm-4.62.2.tar.gz 169564 BLAKE2B fd3484db22eda5db7431fc337e23cfcf44882efc56c8b10208d799c156fefb5aa70c69c7063315d86d3ff881b97b62ac0b5c8be73ad3546ad0728f3f544cadfa SHA512 a59a041fa239e215e541f07c66292c27bfe067f3f2eac2916662b4ef1faa630346dec9558a7f66a3456b3d2ddcd164f9381cb89e5ac8350d0295367bfc248a8c DIST tqdm-4.62.3.tar.gz 167952 BLAKE2B d5732fc97256e1fc4f55bd1a0f69f98a87e7132cc1d8484baa12b7615da5a95ce20268515539c595c2b2aaf20f9a9434c17d581b3b90ea3cad3515150e469471 SHA512 1083ca2080163c98bbb55e124ce9d47c790e47c83cd8dad60e4c93773d1d97a50aacb5a25ddb8a2ae3691738e4f4942c88d55dab406c3e810cac18b8929d20ee diff --git a/dev-python/tqdm/tqdm-4.62.2.ebuild b/dev-python/tqdm/tqdm-4.62.2.ebuild deleted file mode 100644 index dd8d2f22d61..000 --- a/dev-python/tqdm/tqdm-4.62.2.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( pypy3 python3_{8..10} ) -inherit distutils-r1 - -if [[ ${PV} == ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/tqdm/tqdm"; -else - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv sparc x86 ~x64-macos" -fi - -DESCRIPTION="Add a progress meter to your loops in a second" -HOMEPAGE="https://github.com/tqdm/tqdm"; - -LICENSE="MIT" -SLOT="0" -IUSE="examples" - -BDEPEND=" - dev-python/setuptools_scm[${PYTHON_USEDEP}] - dev-python/toml[${PYTHON_USEDEP}] - test? ( - dev-python/pytest-asyncio[${PYTHON_USEDEP}] - dev-python/pytest-timeout[${PYTHON_USEDEP}] - )" - -distutils_enable_tests pytest - -python_test() { - # Skip unpredictable performance tests - epytest --ignore 'tests/tests_perf.py' -} - -python_install() { - doman "${BUILD_DIR}"/lib/tqdm/tqdm.1 - rm "${BUILD_DIR}"/lib/tqdm/tqdm.1 || die - distutils-r1_python_install -} - -python_install_all() { - if use examples; then - dodoc -r examples - docompress -x /usr/share/doc/${PF}/examples - fi - distutils-r1_python_install_all -}
[gentoo-commits] repo/gentoo:master commit in: dev-python/voluptuous/
commit: 91c216c38cb35fa9f3d8bd8d04f499e3ee8cea06 Author: Arthur Zamarin gentoo org> AuthorDate: Sun Oct 24 04:59:51 2021 + Commit: Arthur Zamarin gentoo org> CommitDate: Sun Oct 24 05:12:55 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91c216c3 dev-python/voluptuous: drop 0.12.1 Signed-off-by: Arthur Zamarin gentoo.org> dev-python/voluptuous/Manifest | 1 - dev-python/voluptuous/voluptuous-0.12.1.ebuild | 20 2 files changed, 21 deletions(-) diff --git a/dev-python/voluptuous/Manifest b/dev-python/voluptuous/Manifest index 1ab7df0be7e..3a2ee0654ac 100644 --- a/dev-python/voluptuous/Manifest +++ b/dev-python/voluptuous/Manifest @@ -1,2 +1 @@ -DIST voluptuous-0.12.1.tar.gz 47476 BLAKE2B aa991ab2131e478eb06909c8b7ca86158980b47431d7fae82f41ab2c09b2d23c21d6da937394732cb479436fc247268947c3b31701c6260132cd6f9c7f7e288f SHA512 14ead6bd99c9238318e7ed39fa543cb3363cbb0716a251061e6f533b8fae3fd5e754bd6b2756b6d76745da0e02236e04bfe0ae4e25dd87d291bb2a716660eebc DIST voluptuous-0.12.2.tar.gz 48477 BLAKE2B c1cc26b3ac87bcd357d522c8a5210397f1a16e68f812727f2e8ab18c6731d12a04c2e9a96735e25926854eb378feaaeb8bafc083f394b7e9c2dfa2a503abeeb9 SHA512 86193294c1c6a593f6556f23a9a2c093690a06cbdabb7e268db135e36af6a15c113e78f3e05d000276b6ff54b8e17a0a01d589e9232da9eb5320500fdb5757e1 diff --git a/dev-python/voluptuous/voluptuous-0.12.1.ebuild b/dev-python/voluptuous/voluptuous-0.12.1.ebuild deleted file mode 100644 index 6297a49b2c0..000 --- a/dev-python/voluptuous/voluptuous-0.12.1.ebuild +++ /dev/null @@ -1,20 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8..10} ) - -inherit distutils-r1 - -DESCRIPTION="A Python data validation library." -HOMEPAGE="https://github.com/alecthomas/voluptuous"; -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux" - -PATCHES=( "${FILESDIR}"/${PN}-0.11.5-fix-doctest.patch ) - -distutils_enable_tests nose
[gentoo-commits] repo/gentoo:master commit in: games-emulation/fceux/
commit: d16e98025a08ecbe18435513df6b913e12f0456c Author: Ionen Wolkens gentoo org> AuthorDate: Sun Oct 24 04:41:33 2021 + Commit: Ionen Wolkens gentoo org> CommitDate: Sun Oct 24 04:51:39 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d16e9802 games-emulation/fceux: add 2.5.0 This version checks for ffmpeg and x265 on top of the previous x264. Add support and make all 3 optional. Signed-off-by: Ionen Wolkens gentoo.org> games-emulation/fceux/Manifest | 1 + games-emulation/fceux/fceux-2.5.0.ebuild | 56 games-emulation/fceux/metadata.xml | 4 +++ 3 files changed, 61 insertions(+) diff --git a/games-emulation/fceux/Manifest b/games-emulation/fceux/Manifest index d2e20f407eb..449d559d95e 100644 --- a/games-emulation/fceux/Manifest +++ b/games-emulation/fceux/Manifest @@ -1 +1,2 @@ DIST fceux-2.4.0.tar.gz 21807471 BLAKE2B 5b4d5e9438cfc974cb5ed1838b0845a1d125366fcfbe4ad72c1a5da7caed7bb763a7c66933933f61223abb9dc4c25f0ac7875a0751d122bf75e8567ca5de6cc4 SHA512 3f53db1091e28c91bff90a2d6c77bd3c022a7c20a29b07e6cb88e9ae4795ce7f9e68d15ac0f90721472f8c262907a2564e0be7adc8df2eb3ef252215717f30a0 +DIST fceux-2.5.0.tar.gz 21992303 BLAKE2B 2c467a92eaa53c846fdfc7c32c68bec75fdf45d5166f5fa7f1141c48f159c8dc6619f40861373ccb83718dd2d0b857c630f5101a1d29c2699adf128d4711a929 SHA512 bbff55b6f3efda8918b7dab21582d93f8c2a6396bf64a93e33f2f5f6cd345f95bcde7b958f0a663967e47e83110733c4a732dbf538afb7dbecb3147bc3090f01 diff --git a/games-emulation/fceux/fceux-2.5.0.ebuild b/games-emulation/fceux/fceux-2.5.0.ebuild new file mode 100644 index 000..3b064ef44c9 --- /dev/null +++ b/games-emulation/fceux/fceux-2.5.0.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +LUA_COMPAT=( lua5-1 ) +inherit cmake lua-single xdg + +DESCRIPTION="Portable Famicom/NES emulator, an evolution of the original FCE Ultra" +HOMEPAGE="https://fceux.com/"; +SRC_URI="mirror://sourceforge/fceultra/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="ffmpeg x264 x265" +REQUIRED_USE="${LUA_REQUIRED_USE}" + +# TODO: QT6 support (disabled by default) when available in Gentoo +RDEPEND=" + ${LUA_DEPS} + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtopengl:5[-gles2-only] + dev-qt/qtwidgets:5 + media-libs/libglvnd + media-libs/libsdl2[joystick,sound,threads,video] + sys-libs/zlib:=[minizip] + ffmpeg? ( media-video/ffmpeg:= ) + x264? ( media-libs/x264:= ) + x265? ( media-libs/x265:= )" +DEPEND="${RDEPEND}" + +PATCHES=( + "${FILESDIR}"/${PN}-2.2.2-warnings.patch + "${FILESDIR}"/${PN}-2.4.0-desktop.patch + "${FILESDIR}"/${PN}-2.4.0-no-git.patch +) + +src_prepare() { + cmake_src_prepare + + use x264 || sed -i '/pkg_check_modules.*X264/d' src/CMakeLists.txt || die + use x265 || sed -i '/pkg_check_modules.*X265/d' src/CMakeLists.txt || die + use ffmpeg || sed -i '/pkg_check_modules.*LIBAV/d' src/CMakeLists.txt || die +} + +src_install() { + local DOCS=( README TODO-SDL changelog.txt documentation/. readme.md ) + cmake_src_install + + # remove unused/duplicate files + rm "${ED}"/usr/share/fceux/{lua5{1,.1}.dll,{fceux,taseditor}.chm} \ + "${ED}"/usr/share/doc/${PF}/fceux{,-net-server}.6 \ + "${ED}"/usr/share/man/man6/fceux-net-server.6 || die +} diff --git a/games-emulation/fceux/metadata.xml b/games-emulation/fceux/metadata.xml index 07c7588b64d..50bab016413 100644 --- a/games-emulation/fceux/metadata.xml +++ b/games-emulation/fceux/metadata.xml @@ -5,6 +5,10 @@ ga...@gentoo.org Gentoo Games Project + + Use media-video/ffmpeg for video recording + Use media-libs/x265 for video recording (HEVC) + TASVideos/fceux fceultra
[gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-check/
commit: 3396f306df71dda0be692b9fe9846acbadad7dcf Author: Sam James gentoo org> AuthorDate: Sun Oct 24 04:51:09 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:51:09 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3396f306 dev-python/pytest-check: Stabilize 1.0.4 x86, #819867 Signed-off-by: Sam James gentoo.org> dev-python/pytest-check/pytest-check-1.0.4.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/pytest-check/pytest-check-1.0.4.ebuild b/dev-python/pytest-check/pytest-check-1.0.4.ebuild index a060a4bf4fc..aaa88442e40 100644 --- a/dev-python/pytest-check/pytest-check-1.0.4.ebuild +++ b/dev-python/pytest-check/pytest-check-1.0.4.ebuild @@ -16,7 +16,7 @@ SRC_URI=" LICENSE="MIT" SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 sparc ~x86" +KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 sparc x86" RDEPEND=">=dev-python/pytest-6[${PYTHON_USEDEP}]" BDEPEND="dev-python/flit_core[${PYTHON_USEDEP}]"
[gentoo-commits] repo/gentoo:master commit in: dev-python/flit_core/
commit: f0725cd6579d51c3e84cbffaa0c583380e908c10 Author: Sam James gentoo org> AuthorDate: Sun Oct 24 04:51:08 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:51:08 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0725cd6 dev-python/flit_core: Stabilize 3.4.0 x86, #819867 Signed-off-by: Sam James gentoo.org> dev-python/flit_core/flit_core-3.4.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/flit_core/flit_core-3.4.0.ebuild b/dev-python/flit_core/flit_core-3.4.0.ebuild index 4f9a7664598..aa458a3d370 100644 --- a/dev-python/flit_core/flit_core-3.4.0.ebuild +++ b/dev-python/flit_core/flit_core-3.4.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 sparc ~x86" +KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 sparc x86" RDEPEND=" dev-python/intreehooks[${PYTHON_USEDEP}]
[gentoo-commits] repo/gentoo:master commit in: dev-python/sphobjinv/
commit: 6ede31d7a37d40944871a314440c3b1119b28694 Author: Sam James gentoo org> AuthorDate: Sun Oct 24 04:51:10 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:51:10 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ede31d7 dev-python/sphobjinv: Stabilize 2.1-r1 x86, #819867 Signed-off-by: Sam James gentoo.org> dev-python/sphobjinv/sphobjinv-2.1-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/sphobjinv/sphobjinv-2.1-r1.ebuild b/dev-python/sphobjinv/sphobjinv-2.1-r1.ebuild index f73944cf171..c1bbc2a2efb 100644 --- a/dev-python/sphobjinv/sphobjinv-2.1-r1.ebuild +++ b/dev-python/sphobjinv/sphobjinv-2.1-r1.ebuild @@ -14,7 +14,7 @@ HOMEPAGE=" SRC_URI="https://github.com/bskinn/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" -KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 sparc ~x86" +KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 sparc x86" SLOT="0" RDEPEND="
[gentoo-commits] repo/gentoo:master commit in: dev-python/intreehooks/
commit: 4d743a59471574d884ea5fdc29136a2418f9aa3c Author: Sam James gentoo org> AuthorDate: Sun Oct 24 04:51:07 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:51:07 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d743a59 dev-python/intreehooks: Stabilize 1.0 x86, #819867 Signed-off-by: Sam James gentoo.org> dev-python/intreehooks/intreehooks-1.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/intreehooks/intreehooks-1.0.ebuild b/dev-python/intreehooks/intreehooks-1.0.ebuild index 15d8de162b3..7a7e8c8d8fb 100644 --- a/dev-python/intreehooks/intreehooks-1.0.ebuild +++ b/dev-python/intreehooks/intreehooks-1.0.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 sparc ~x86" +KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 sparc x86" IUSE="examples" RDEPEND="
[gentoo-commits] repo/gentoo:master commit in: dev-python/rdflib/
commit: bc017b07422fd64b3296e706d062e01a8034295b Author: Sam James gentoo org> AuthorDate: Sun Oct 24 04:51:03 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:51:03 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc017b07 dev-python/rdflib: Stabilize 6.0.2 x86, #819855 Signed-off-by: Sam James gentoo.org> dev-python/rdflib/rdflib-6.0.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/rdflib/rdflib-6.0.2.ebuild b/dev-python/rdflib/rdflib-6.0.2.ebuild index 9bd58ca630f..29e53c9e779 100644 --- a/dev-python/rdflib/rdflib-6.0.2.ebuild +++ b/dev-python/rdflib/rdflib-6.0.2.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 ~riscv ~x86" +KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 ~riscv x86" IUSE="examples sqlite" RDEPEND="
[gentoo-commits] repo/gentoo:master commit in: net-ftp/proftpd/
commit: c64093d4fe484190506f0e7ef60394ed3b065a32 Author: Sam James gentoo org> AuthorDate: Sun Oct 24 04:51:14 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:51:14 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c64093d4 net-ftp/proftpd: Stabilize 1.3.7c x86, #819894 Signed-off-by: Sam James gentoo.org> net-ftp/proftpd/proftpd-1.3.7c.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-ftp/proftpd/proftpd-1.3.7c.ebuild b/net-ftp/proftpd/proftpd-1.3.7c.ebuild index a838c620c17..53a27a97204 100644 --- a/net-ftp/proftpd/proftpd-1.3.7c.ebuild +++ b/net-ftp/proftpd/proftpd-1.3.7c.ebuild @@ -27,7 +27,7 @@ SRC_URI="ftp://ftp.proftpd.org/distrib/source/${P/_/}.tar.gz LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 sparc x86" IUSE="acl authfile ban +caps case clamav copy ctrls deflate diskuse dso dynmasq exec ifsession ifversion ident ipv6 kerberos ldap log-forensic memcache msg mysql ncurses nls pam +pcre postgres qos radius ratio readme rewrite selinux sftp shaper sitemisc snmp sodium softquota sqlite ssl tcpd test unique-id vroot"
[gentoo-commits] repo/gentoo:master commit in: dev-python/berkeleydb/
commit: 0f49b29d1021b4746f4d35def936099c1d65b33e Author: Sam James gentoo org> AuthorDate: Sun Oct 24 04:51:02 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:51:02 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f49b29d dev-python/berkeleydb: Stabilize 18.1.4 x86, #819855 Signed-off-by: Sam James gentoo.org> dev-python/berkeleydb/berkeleydb-18.1.4.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/berkeleydb/berkeleydb-18.1.4.ebuild b/dev-python/berkeleydb/berkeleydb-18.1.4.ebuild index fd9279bc591..e7cd73083dd 100644 --- a/dev-python/berkeleydb/berkeleydb-18.1.4.ebuild +++ b/dev-python/berkeleydb/berkeleydb-18.1.4.ebuild @@ -17,7 +17,7 @@ SRC_URI="https://dev.gentoo.org/~arthurzam/distfiles/dev-python/${PN}/${P}.tar.x LICENSE="BSD" SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 ~riscv ~sparc ~x86" +KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 ~riscv ~sparc x86" RDEPEND=" || (
[gentoo-commits] repo/gentoo:master commit in: dev-python/pyglet/
commit: f9001fa93dedcf072caef1f1cd29bde14aed4d3c Author: Sam James gentoo org> AuthorDate: Sun Oct 24 04:50:52 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:50:52 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9001fa9 dev-python/pyglet: Stabilize 1.5.21 x86, #819840 Signed-off-by: Sam James gentoo.org> dev-python/pyglet/pyglet-1.5.21.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/pyglet/pyglet-1.5.21.ebuild b/dev-python/pyglet/pyglet-1.5.21.ebuild index f0de9661e9e..fda20a04ce6 100644 --- a/dev-python/pyglet/pyglet-1.5.21.ebuild +++ b/dev-python/pyglet/pyglet-1.5.21.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/pyglet/pyglet/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux" IUSE="examples image +sound" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: dev-python/pyscard/
commit: c54e3dec52fe1a57c1e0804ab6a25cecc61fa45f Author: Sam James gentoo org> AuthorDate: Sun Oct 24 04:50:58 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:50:58 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c54e3dec dev-python/pyscard: Stabilize 2.0.2 x86, #819846 Signed-off-by: Sam James gentoo.org> dev-python/pyscard/pyscard-2.0.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/pyscard/pyscard-2.0.2.ebuild b/dev-python/pyscard/pyscard-2.0.2.ebuild index 89c4e4a63aa..465c94f3874 100644 --- a/dev-python/pyscard/pyscard-2.0.2.ebuild +++ b/dev-python/pyscard/pyscard-2.0.2.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="amd64 ~arm ~riscv ~x86" +KEYWORDS="amd64 ~arm ~riscv x86" RDEPEND="sys-apps/pcsc-lite" DEPEND="${RDEPEND}"
[gentoo-commits] repo/gentoo:master commit in: dev-python/gevent/
commit: 45912db29ecc57a61ebdf5696775b17403dff532 Author: Sam James gentoo org> AuthorDate: Sun Oct 24 04:50:46 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:50:46 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45912db2 dev-python/gevent: Stabilize 21.8.0 x86, #819801 Signed-off-by: Sam James gentoo.org> dev-python/gevent/gevent-21.8.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/gevent/gevent-21.8.0.ebuild b/dev-python/gevent/gevent-21.8.0.ebuild index b0c051e3d6d..d34119119c5 100644 --- a/dev-python/gevent/gevent-21.8.0.ebuild +++ b/dev-python/gevent/gevent-21.8.0.ebuild @@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos" IUSE="doc examples test" RESTRICT="!test? ( test )"
[gentoo-commits] repo/gentoo:master commit in: dev-python/html5-parser/
commit: 9cc42499a5bf92f33eb07770186fdc1633e0c61c Author: Sam James gentoo org> AuthorDate: Sun Oct 24 04:50:49 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:50:49 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cc42499 dev-python/html5-parser: Stabilize 0.4.10 x86, #819804 Signed-off-by: Sam James gentoo.org> dev-python/html5-parser/html5-parser-0.4.10.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/html5-parser/html5-parser-0.4.10.ebuild b/dev-python/html5-parser/html5-parser-0.4.10.ebuild index bde44e795dd..f0bb97ed5d3 100644 --- a/dev-python/html5-parser/html5-parser-0.4.10.ebuild +++ b/dev-python/html5-parser/html5-parser-0.4.10.ebuild @@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="amd64 ~arm ~x86" +KEYWORDS="amd64 ~arm x86" IUSE="" BDEPEND="
[gentoo-commits] repo/gentoo:master commit in: dev-python/pygobject/
commit: 38f70b955d73c3b40243f9e1956929498d10221e Author: Sam James gentoo org> AuthorDate: Sun Oct 24 04:50:55 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:50:55 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38f70b95 dev-python/pygobject: Stabilize 3.42.0 x86, #819843 Signed-off-by: Sam James gentoo.org> dev-python/pygobject/pygobject-3.42.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/pygobject/pygobject-3.42.0.ebuild b/dev-python/pygobject/pygobject-3.42.0.ebuild index 739138fbf09..9537fd2e530 100644 --- a/dev-python/pygobject/pygobject-3.42.0.ebuild +++ b/dev-python/pygobject/pygobject-3.42.0.ebuild @@ -12,7 +12,7 @@ HOMEPAGE="https://pygobject.readthedocs.io/"; LICENSE="LGPL-2.1+" SLOT="3" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~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 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="+cairo examples test" RESTRICT="!test? ( test )" REQUIRED_USE="${PYTHON_REQUIRED_USE}"
[gentoo-commits] repo/gentoo:master commit in: dev-python/berkeleydb/
commit: 9c6ba6cc6ddac35ec88719f1dd112145c14bd8cc Author: Sam James gentoo org> AuthorDate: Sun Oct 24 04:50:06 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:50:06 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c6ba6cc dev-python/berkeleydb: Stabilize 18.1.4 ppc64, #819855 Signed-off-by: Sam James gentoo.org> dev-python/berkeleydb/berkeleydb-18.1.4.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/berkeleydb/berkeleydb-18.1.4.ebuild b/dev-python/berkeleydb/berkeleydb-18.1.4.ebuild index c0cc338226a..fd9279bc591 100644 --- a/dev-python/berkeleydb/berkeleydb-18.1.4.ebuild +++ b/dev-python/berkeleydb/berkeleydb-18.1.4.ebuild @@ -17,7 +17,7 @@ SRC_URI="https://dev.gentoo.org/~arthurzam/distfiles/dev-python/${PN}/${P}.tar.x LICENSE="BSD" SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 ~riscv ~sparc ~x86" RDEPEND=" || (
[gentoo-commits] repo/gentoo:master commit in: dev-python/rdflib/
commit: 8e0b3523309cb564c5f9ba3585ee418c4ed71194 Author: Sam James gentoo org> AuthorDate: Sun Oct 24 04:50:08 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:50:08 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e0b3523 dev-python/rdflib: Stabilize 6.0.2 ppc64, #819855 Signed-off-by: Sam James gentoo.org> dev-python/rdflib/rdflib-6.0.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/rdflib/rdflib-6.0.2.ebuild b/dev-python/rdflib/rdflib-6.0.2.ebuild index 9f2d93a3ed8..9bd58ca630f 100644 --- a/dev-python/rdflib/rdflib-6.0.2.ebuild +++ b/dev-python/rdflib/rdflib-6.0.2.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ppc ~ppc64 ~riscv ~x86" +KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 ~riscv ~x86" IUSE="examples sqlite" RDEPEND="
[gentoo-commits] repo/gentoo:master commit in: net-ftp/proftpd/
commit: 7f0db9d5e9b89c78f535c9933fbe7941ccbe8e43 Author: Sam James gentoo org> AuthorDate: Sun Oct 24 04:50:11 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:50:11 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f0db9d5 net-ftp/proftpd: Stabilize 1.3.7c ppc, #819894 Signed-off-by: Sam James gentoo.org> net-ftp/proftpd/proftpd-1.3.7c.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-ftp/proftpd/proftpd-1.3.7c.ebuild b/net-ftp/proftpd/proftpd-1.3.7c.ebuild index c4eb028f613..2899bc67432 100644 --- a/net-ftp/proftpd/proftpd-1.3.7c.ebuild +++ b/net-ftp/proftpd/proftpd-1.3.7c.ebuild @@ -27,7 +27,7 @@ SRC_URI="ftp://ftp.proftpd.org/distrib/source/${P/_/}.tar.gz LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 sparc ~x86" IUSE="acl authfile ban +caps case clamav copy ctrls deflate diskuse dso dynmasq exec ifsession ifversion ident ipv6 kerberos ldap log-forensic memcache msg mysql ncurses nls pam +pcre postgres qos radius ratio readme rewrite selinux sftp shaper sitemisc snmp sodium softquota sqlite ssl tcpd test unique-id vroot"
[gentoo-commits] repo/gentoo:master commit in: dev-python/rdflib/
commit: fcc559f53de06306f6ff8dcf9f396774d819e56b Author: Sam James gentoo org> AuthorDate: Sun Oct 24 04:50:03 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:50:03 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fcc559f5 dev-python/rdflib: Stabilize 6.0.2 ppc, #819855 Signed-off-by: Sam James gentoo.org> dev-python/rdflib/rdflib-6.0.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/rdflib/rdflib-6.0.2.ebuild b/dev-python/rdflib/rdflib-6.0.2.ebuild index f4c9cf0346a..9f2d93a3ed8 100644 --- a/dev-python/rdflib/rdflib-6.0.2.ebuild +++ b/dev-python/rdflib/rdflib-6.0.2.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" +KEYWORDS="amd64 ~arm ~arm64 ppc ~ppc64 ~riscv ~x86" IUSE="examples sqlite" RDEPEND="
[gentoo-commits] repo/gentoo:master commit in: net-ftp/proftpd/
commit: 1526b889458774b94739d496522d4371dc92a66d Author: Sam James gentoo org> AuthorDate: Sun Oct 24 04:50:14 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:50:14 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1526b889 net-ftp/proftpd: Stabilize 1.3.7c ppc64, #819894 Signed-off-by: Sam James gentoo.org> net-ftp/proftpd/proftpd-1.3.7c.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-ftp/proftpd/proftpd-1.3.7c.ebuild b/net-ftp/proftpd/proftpd-1.3.7c.ebuild index 2899bc67432..a838c620c17 100644 --- a/net-ftp/proftpd/proftpd-1.3.7c.ebuild +++ b/net-ftp/proftpd/proftpd-1.3.7c.ebuild @@ -27,7 +27,7 @@ SRC_URI="ftp://ftp.proftpd.org/distrib/source/${P/_/}.tar.gz LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 sparc ~x86" IUSE="acl authfile ban +caps case clamav copy ctrls deflate diskuse dso dynmasq exec ifsession ifversion ident ipv6 kerberos ldap log-forensic memcache msg mysql ncurses nls pam +pcre postgres qos radius ratio readme rewrite selinux sftp shaper sitemisc snmp sodium softquota sqlite ssl tcpd test unique-id vroot"
[gentoo-commits] repo/gentoo:master commit in: dev-python/berkeleydb/
commit: ba99b4ba78d39095d27ef93c9fc44582407c7a2d Author: Sam James gentoo org> AuthorDate: Sun Oct 24 04:50:02 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:50:02 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba99b4ba dev-python/berkeleydb: Stabilize 18.1.4 ppc, #819855 Signed-off-by: Sam James gentoo.org> dev-python/berkeleydb/berkeleydb-18.1.4.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/berkeleydb/berkeleydb-18.1.4.ebuild b/dev-python/berkeleydb/berkeleydb-18.1.4.ebuild index c16af462b66..c0cc338226a 100644 --- a/dev-python/berkeleydb/berkeleydb-18.1.4.ebuild +++ b/dev-python/berkeleydb/berkeleydb-18.1.4.ebuild @@ -17,7 +17,7 @@ SRC_URI="https://dev.gentoo.org/~arthurzam/distfiles/dev-python/${PN}/${P}.tar.x LICENSE="BSD" SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86" +KEYWORDS="amd64 ~arm ~arm64 ppc ~ppc64 ~riscv ~sparc ~x86" RDEPEND=" || (
[gentoo-commits] repo/gentoo:master commit in: dev-db/go-etcd/
commit: 9739ceb156e2066247b03919f315e33ecd7682b3 Author: Zac Medico gentoo org> AuthorDate: Sun Oct 24 04:43:34 2021 + Commit: Zac Medico gentoo org> CommitDate: Sun Oct 24 04:43:34 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9739ceb1 dev-db/go-etcd: Drop to maintainer-needed Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Zac Medico gentoo.org> dev-db/go-etcd/metadata.xml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/dev-db/go-etcd/metadata.xml b/dev-db/go-etcd/metadata.xml index a6e9b401872..ba80a5e26c5 100644 --- a/dev-db/go-etcd/metadata.xml +++ b/dev-db/go-etcd/metadata.xml @@ -1,13 +1,11 @@ https://www.gentoo.org/dtd/metadata.dtd";> + https://github.com/coreos/go-etcd/issues https://github.com/coreos/go-etcd/commits/master https://godoc.org/github.com/coreos/go-etcd/etcd coreos/go-etcd - -zmed...@gentoo.org -
[gentoo-commits] repo/gentoo:master commit in: sys-fs/etcd-fs/
commit: f716c1d225f5b0b1fc304c047976832630673935 Author: Zac Medico gentoo org> AuthorDate: Sun Oct 24 04:44:39 2021 + Commit: Zac Medico gentoo org> CommitDate: Sun Oct 24 04:44:39 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f716c1d2 sys-fs/etcd-fs: Drop to maintainer-needed Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Zac Medico gentoo.org> sys-fs/etcd-fs/metadata.xml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/sys-fs/etcd-fs/metadata.xml b/sys-fs/etcd-fs/metadata.xml index 64b63a3e297..4e5e96376ff 100644 --- a/sys-fs/etcd-fs/metadata.xml +++ b/sys-fs/etcd-fs/metadata.xml @@ -1,13 +1,11 @@ https://www.gentoo.org/dtd/metadata.dtd";> + https://github.com/xetorthio/etcd-fs/issues https://github.com/xetorthio/etcd-fs/commits/master https://github.com/xetorthio/etcd-fs/blob/master/README.md xetorthio/etcd-fs - -zmed...@gentoo.org -
[gentoo-commits] repo/gentoo:master commit in: profiles/
commit: 12b53eea854f79cef1ebe6ca6846319476dbc715 Author: Zac Medico gentoo org> AuthorDate: Sun Oct 24 04:37:19 2021 + Commit: Zac Medico gentoo org> CommitDate: Sun Oct 24 04:41:20 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12b53eea package.mask: Last rite dev-db/go-etcd and sys-fs/etcd-fs Mask go-etcd which fails to compile, and etcd-fs revdep. Bug: https://bugs.gentoo.org/771042 Bug: https://bugs.gentoo.org/819672 Signed-off-by: Zac Medico gentoo.org> profiles/package.mask | 6 ++ 1 file changed, 6 insertions(+) diff --git a/profiles/package.mask b/profiles/package.mask index c901a336f82..c1b535907e1 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -33,6 +33,12 @@ #--- END OF EXAMPLES --- +# Zac Medico (2021-10-23) +# Mask go-etcd which fails to compile, and etcd-fs revdep. +# Removal on 2021-11-22. Bug #771042. +dev-db/go-etcd +sys-fs/etcd-fs + # Jakov Smolić (2021-10-23) # EAPI 5 java package, no revdeps. # Removal on 2021-11-22. Bug #819756.
[gentoo-commits] repo/gentoo:master commit in: media-video/pipewire/
commit: 420e42e06a88d576b881236864cf4ddaf91f9c85 Author: Sam James gentoo org> AuthorDate: Sun Oct 24 04:31:49 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:31:49 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=420e42e0 media-video/pipewire: fix whitespace in elog Signed-off-by: Sam James gentoo.org> media-video/pipewire/pipewire-0.3.39.ebuild | 2 +- media-video/pipewire/pipewire-.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/media-video/pipewire/pipewire-0.3.39.ebuild b/media-video/pipewire/pipewire-0.3.39.ebuild index 3ca67021157..7dabfed1cb8 100644 --- a/media-video/pipewire/pipewire-0.3.39.ebuild +++ b/media-video/pipewire/pipewire-0.3.39.ebuild @@ -261,7 +261,7 @@ pkg_postinst() { elog "Please note that the semicolon (;) must _NOT_ be at the beginning of the line!" elog elog "Alternatively, if replacing PulseAudio daemon is not desired, edit" - elog "${EROOT}/usr/bin/gentoo-pipewire-launcher by commenting out the relevant" + elog "${EROOT}/usr/bin/gentoo-pipewire-launcher by commenting out the relevant" elog "command:" elog elog "#${EROOT}/usr/bin/pipewire -c pipewire-pulse.conf &" diff --git a/media-video/pipewire/pipewire-.ebuild b/media-video/pipewire/pipewire-.ebuild index 3ca67021157..7dabfed1cb8 100644 --- a/media-video/pipewire/pipewire-.ebuild +++ b/media-video/pipewire/pipewire-.ebuild @@ -261,7 +261,7 @@ pkg_postinst() { elog "Please note that the semicolon (;) must _NOT_ be at the beginning of the line!" elog elog "Alternatively, if replacing PulseAudio daemon is not desired, edit" - elog "${EROOT}/usr/bin/gentoo-pipewire-launcher by commenting out the relevant" + elog "${EROOT}/usr/bin/gentoo-pipewire-launcher by commenting out the relevant" elog "command:" elog elog "#${EROOT}/usr/bin/pipewire -c pipewire-pulse.conf &"
[gentoo-commits] repo/gentoo:master commit in: media-libs/libcaca/files/
commit: 14fc2e8417f7cc70736135da8286a716438bba17 Author: Sam James gentoo org> AuthorDate: Sun Oct 24 04:22:23 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:22:35 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14fc2e84 media-libs/libcaca: drop mistakenly committed patch Fixes: e4d9018ad6d87a731a9fd621561cad1b170aec89 (my fault) Signed-off-by: Sam James gentoo.org> media-libs/libcaca/files/foo | 77 1 file changed, 77 deletions(-) diff --git a/media-libs/libcaca/files/foo b/media-libs/libcaca/files/foo deleted file mode 100644 index d35de1aa7d2..000 --- a/media-libs/libcaca/files/foo +++ /dev/null @@ -1,77 +0,0 @@ -diff --git a/src/common-image.c b/src/common-image.c -index 7059bf4..d40eba1 100644 a/src/common-image.c -+++ b/src/common-image.c -@@ -22,6 +22,7 @@ - #endif - - #include "caca.h" -+#include "caca_internals.h" - - #include "common-image.h" - -diff --git a/src/Makefile.am b/src/Makefile.am -index 5f0b22f..2f48f27 100644 a/src/Makefile.am -+++ b/src/Makefile.am -@@ -11,7 +11,7 @@ noinst_PROGRAMS = cacadraw - - cacademo_SOURCES = cacademo.c texture.h - cacademo_LDADD = ../caca/libcaca.la ../caca/libcaca.la --cacademo_LDFLAGS = @MATH_LIBS@ -+cacademo_LIBS = @MATH_LIBS@ - - cacafire_SOURCES = aafire.c - cacafire_LDADD = ../caca/libcaca.la ../caca/libcaca.la -@@ -19,7 +19,7 @@ cacafire_LDADD = ../caca/libcaca.la ../caca/libcaca.la - cacaview_SOURCES = cacaview.c common-image.c common-image.h - cacaview_LDADD = ../caca/libcaca.la ../caca/libcaca.la - cacaview_CFLAGS = $(IMLIB2_CFLAGS) --cacaview_LDFLAGS = $(IMLIB2_LIBS) -+cacaview_LIBS = $(IMLIB2_LIBS) - - cacadraw_SOURCES = cacadraw.c - cacadraw_LDADD = ../caca/libcaca.la ../caca/libcaca.la -@@ -37,7 +37,7 @@ cacaclock_LDADD = ../caca/libcaca.la - img2txt_SOURCES = img2txt.c common-image.c common-image.h - img2txt_LDADD = ../caca/libcaca.la - img2txt_CFLAGS = $(IMLIB2_CFLAGS) --img2txt_LDFLAGS = $(IMLIB2_LIBS) -+img2txt_LIBS = $(IMLIB2_LIBS) - - if USE_NETWORK - fcntl_programs = cacaserver -diff --git a/src/Makefile.am b/src/Makefile.am -index 2f48f27..725ad36 100644 a/src/Makefile.am -+++ b/src/Makefile.am -@@ -10,16 +10,14 @@ bin_PROGRAMS = cacademo cacafire cacaplay cacaview img2txt cacaclock $(fcntl_pro - noinst_PROGRAMS = cacadraw - - cacademo_SOURCES = cacademo.c texture.h --cacademo_LDADD = ../caca/libcaca.la ../caca/libcaca.la --cacademo_LIBS = @MATH_LIBS@ -+cacademo_LDADD = ../caca/libcaca.la @MATH_LIBS@ - - cacafire_SOURCES = aafire.c - cacafire_LDADD = ../caca/libcaca.la ../caca/libcaca.la - - cacaview_SOURCES = cacaview.c common-image.c common-image.h --cacaview_LDADD = ../caca/libcaca.la ../caca/libcaca.la -+cacaview_LDADD = ../caca/libcaca.la $(IMLIB2_LIBS) - cacaview_CFLAGS = $(IMLIB2_CFLAGS) --cacaview_LIBS = $(IMLIB2_LIBS) - - cacadraw_SOURCES = cacadraw.c - cacadraw_LDADD = ../caca/libcaca.la ../caca/libcaca.la -@@ -35,9 +33,8 @@ cacaclock_LDADD = ../caca/libcaca.la - - - img2txt_SOURCES = img2txt.c common-image.c common-image.h --img2txt_LDADD = ../caca/libcaca.la -+img2txt_LDADD = ../caca/libcaca.la $(IMLIB2_LIBS) - img2txt_CFLAGS = $(IMLIB2_CFLAGS) --img2txt_LIBS = $(IMLIB2_LIBS) - - if USE_NETWORK - fcntl_programs = cacaserver
[gentoo-commits] repo/gentoo:master commit in: dev-python/argon2-cffi/, profiles/arch/powerpc/, profiles/arch/sparc/, ...
commit: 34b38a28e105c929c69979baf79e5c00adca7a3b Author: Michael Seifert digitalernachschub de> AuthorDate: Sat Oct 23 08:09:29 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:16:32 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34b38a28 dev-python/argon2-cffi: Added missing doc dependency and bumped to 21.1.0-r1 Masked USE=doc on architectures where dev-python/furo has no keyword. Closes: https://bugs.gentoo.org/816786 Signed-off-by: Michael Seifert digitalernachschub.de> Closes: https://github.com/gentoo/gentoo/pull/22679 Signed-off-by: Sam James gentoo.org> .../argon2-cffi/argon2-cffi-21.1.0-r1.ebuild | 34 ++ profiles/arch/powerpc/package.use.mask | 4 +++ profiles/arch/riscv/package.use.mask | 4 +++ profiles/arch/sparc/package.use.mask | 4 +++ 4 files changed, 46 insertions(+) diff --git a/dev-python/argon2-cffi/argon2-cffi-21.1.0-r1.ebuild b/dev-python/argon2-cffi/argon2-cffi-21.1.0-r1.ebuild new file mode 100644 index 000..fd43e943d18 --- /dev/null +++ b/dev-python/argon2-cffi/argon2-cffi-21.1.0-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} pypy3 ) +inherit distutils-r1 + +DESCRIPTION="CFFI bindings to the Argon2 password hashing library" +HOMEPAGE="https://github.com/hynek/argon2-cffi"; +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +DEPEND=" + app-crypt/argon2:= + virtual/python-cffi[${PYTHON_USEDEP}] +" +RDEPEND="${DEPEND}" +BDEPEND=" + test? ( + dev-python/hypothesis[${PYTHON_USEDEP}] + ) +" + +DOCS=( AUTHORS.rst CHANGELOG.rst FAQ.rst README.rst ) + +distutils_enable_sphinx docs \ + dev-python/furo +distutils_enable_tests pytest + +export ARGON2_CFFI_USE_SYSTEM=1 diff --git a/profiles/arch/powerpc/package.use.mask b/profiles/arch/powerpc/package.use.mask index 731896086a5..c4399206a75 100644 --- a/profiles/arch/powerpc/package.use.mask +++ b/profiles/arch/powerpc/package.use.mask @@ -1,6 +1,10 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 +# Michael Seifert (2021-10-23) +# dev-python/furo isn't keyworded here +dev-python/argon2-cffi doc + # David Seifert (2021-09-04) # dev-lang/go not keyworded here sys-libs/libcap tools diff --git a/profiles/arch/riscv/package.use.mask b/profiles/arch/riscv/package.use.mask index 2800f41f088..74860dc8e6e 100644 --- a/profiles/arch/riscv/package.use.mask +++ b/profiles/arch/riscv/package.use.mask @@ -1,6 +1,10 @@ # Copyright 2019-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 +# Michael Seifert (2021-10-23) +# dev-python/furo isn't keyworded here +dev-python/argon2-cffi doc + # Alex Fan (2021-10-11) # sci-libs/sundials fails several tests #817680 sci-mathematics/octave sundials diff --git a/profiles/arch/sparc/package.use.mask b/profiles/arch/sparc/package.use.mask index 2ec8255956b..dd8c5635f20 100644 --- a/profiles/arch/sparc/package.use.mask +++ b/profiles/arch/sparc/package.use.mask @@ -1,6 +1,10 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 +# Michael Seifert (2021-10-23) +# dev-python/furo isn't keyworded here +dev-python/argon2-cffi doc + # Sam James (2021-10-16) # Requires dev-db/mariadb which, at last check, was broken on sparc. # bug #814719
[gentoo-commits] repo/gentoo:master commit in: app-admin/usbview/
commit: 7af006160b8e828a7fe0695a212275b6bedb0ca4 Author: James Beddek posteo de> AuthorDate: Sat Oct 23 21:42:08 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:17:32 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7af00616 app-admin/usbview: add 2.1 Signed-off-by: James Beddek posteo.de> Closes: https://github.com/gentoo/gentoo/pull/22687 Signed-off-by: Sam James gentoo.org> app-admin/usbview/Manifest | 1 + app-admin/usbview/usbview-2.1.ebuild | 30 ++ 2 files changed, 31 insertions(+) diff --git a/app-admin/usbview/Manifest b/app-admin/usbview/Manifest index 7c6df7c5b4c..96a8cfafcba 100644 --- a/app-admin/usbview/Manifest +++ b/app-admin/usbview/Manifest @@ -1 +1,2 @@ DIST usbview-2.0.tar.gz 366337 BLAKE2B d3ce8f3b97ebb650f7cc8b47d7a4c4b985022811f55b43b41a65aaa120450aa187ce2dfc2671315575dfcbd108b68ca50420145a6c59ab85f7c4fcfc53a233f9 SHA512 87b3d0b0c734c94e5527f19575c0460f5c0b894dac29936a759d573058c9c007ad59c9be32a5c6d485cba258193efe4ca15bdd6f3ca31df321ed230778b5404f +DIST usbview-2.1.tar.gz 377376 BLAKE2B 76e6a45a31006f7a7b69783b608dd33304a1a3401c784bfdce62079c764795cbd4914b030ca44884f2f9dd14a479bd679be6c1eabd8bc1776a902b4d1446d82f SHA512 7d973eb9ad74e8c0842396e6239ee44d5feab2d3ce412f7c91e18b947604bcf3c2d3dc456bbefc4cd7567a03d9306593b378ce29c3fb3b13eefe75af3f4c14d4 diff --git a/app-admin/usbview/usbview-2.1.ebuild b/app-admin/usbview/usbview-2.1.ebuild new file mode 100644 index 000..e5d607ada57 --- /dev/null +++ b/app-admin/usbview/usbview-2.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit linux-info + +DESCRIPTION="Display the topology of devices on the USB bus" +HOMEPAGE="http://www.kroah.com/linux-usb/ https://github.com/gregkh/usbview"; +SRC_URI="http://www.kroah.com/linux-usb/${P}.tar.gz"; + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86" + +RDEPEND=" + dev-libs/glib:2 + x11-libs/gdk-pixbuf:2 + x11-libs/gtk+:3 +" +DEPEND="${RDEPEND}" +BDEPEND=" + virtual/imagemagick-tools[png,svg] + virtual/pkgconfig +" + +pkg_setup() { + CONFIG_CHECK="~DEBUG_FS" + linux-info_pkg_setup +}
[gentoo-commits] repo/gentoo:master commit in: app-admin/usbview/
commit: 75a1876b8338a90192499245d61c6e1f6606460e Author: James Beddek posteo de> AuthorDate: Sat Oct 23 21:22:25 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:17:31 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75a1876b app-admin/usbview: add myself as a maintainer Signed-off-by: James Beddek posteo.de> Signed-off-by: Sam James gentoo.org> app-admin/usbview/metadata.xml | 12 +++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/app-admin/usbview/metadata.xml b/app-admin/usbview/metadata.xml index 115e9d64a66..9a0cbad9a0e 100644 --- a/app-admin/usbview/metadata.xml +++ b/app-admin/usbview/metadata.xml @@ -1,5 +1,15 @@ https://www.gentoo.org/dtd/metadata.dtd";> - + + tel...@posteo.de + James Beddek + + + Proxy Maintainers + proxy-ma...@gentoo.org + + + gregkh/usbview +
[gentoo-commits] proj/sandbox:master commit in: /
commit: 18ccd8bec26d740a0d48d2db44e33dee7678e8af Author: Mike Frysinger gentoo org> AuthorDate: Sun Oct 24 04:15:54 2021 + Commit: Mike Frysinger gentoo org> CommitDate: Sun Oct 24 04:15:54 2021 + URL:https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=18ccd8be bump to configure-2.28 Signed-off-by: Mike Frysinger gentoo.org> configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index fef865f..fee0e4f 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ([2.69]) -AC_INIT([sandbox], [2.27], [sand...@gentoo.org]) +AC_INIT([sandbox], [2.28], [sand...@gentoo.org]) AM_INIT_AUTOMAKE([1.15 dist-xz foreign no-dist-gzip silent-rules subdir-objects -Wall]) AM_SILENT_RULES([yes]) # AM_INIT_AUTOMAKE([silent-rules]) is broken atm AC_CONFIG_HEADER([config.h])
[gentoo-commits] repo/gentoo:master commit in: sci-libs/gsl/
commit: 4d2bebaf05579855c0a16f8dda835115f71669eb Author: Sam James gentoo org> AuthorDate: Sun Oct 24 04:10:53 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:10:53 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d2bebaf sci-libs/gsl: Stabilize 2.7 sparc, #804795 Signed-off-by: Sam James gentoo.org> sci-libs/gsl/gsl-2.7.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sci-libs/gsl/gsl-2.7.ebuild b/sci-libs/gsl/gsl-2.7.ebuild index f02ffb07daa..1f76267c23d 100644 --- a/sci-libs/gsl/gsl-2.7.ebuild +++ b/sci-libs/gsl/gsl-2.7.ebuild @@ -12,7 +12,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz LICENSE="GPL-3" SLOT="0/25" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris" IUSE="cblas-external +deprecated static-libs" RDEPEND="cblas-external? ( virtual/cblas:= )"
[gentoo-commits] repo/gentoo:master commit in: sci-libs/gsl/
commit: 8e2a7a6cf075e8e200ca213dd98d2dac3032e4ec Author: Sam James gentoo org> AuthorDate: Sun Oct 24 04:10:50 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:10:50 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e2a7a6c sci-libs/gsl: Stabilize 2.7 x86, #804795 Signed-off-by: Sam James gentoo.org> sci-libs/gsl/gsl-2.7.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sci-libs/gsl/gsl-2.7.ebuild b/sci-libs/gsl/gsl-2.7.ebuild index 7fe26757788..f02ffb07daa 100644 --- a/sci-libs/gsl/gsl-2.7.ebuild +++ b/sci-libs/gsl/gsl-2.7.ebuild @@ -12,7 +12,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz LICENSE="GPL-3" SLOT="0/25" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris" IUSE="cblas-external +deprecated static-libs" RDEPEND="cblas-external? ( virtual/cblas:= )"
[gentoo-commits] repo/gentoo:master commit in: media-gfx/openscad/files/, media-gfx/openscad/
commit: 627f06a62019f29f43fb5f542865b2274cdfc210 Author: Bernd Waibel posteo net> AuthorDate: Thu Oct 21 05:12:46 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:06:07 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=627f06a6 media-gfx/openscad: fix search for lib3mf Reported-by: Jan Psota belsznica.pl> Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Bernd Waibel posteo.net> Closes: https://github.com/gentoo/gentoo/pull/22650 Signed-off-by: Sam James gentoo.org> .../openscad--0001-fix-to-find-lib3mf-2.patch | 36 -- ...-config-name-and-include-directory-search.patch | 31 +++ media-gfx/openscad/openscad-.ebuild| 9 ++ 3 files changed, 33 insertions(+), 43 deletions(-) diff --git a/media-gfx/openscad/files/openscad--0001-fix-to-find-lib3mf-2.patch b/media-gfx/openscad/files/openscad--0001-fix-to-find-lib3mf-2.patch deleted file mode 100644 index 0ca19d33646..000 --- a/media-gfx/openscad/files/openscad--0001-fix-to-find-lib3mf-2.patch +++ /dev/null @@ -1,36 +0,0 @@ -From 15bf93ab04e6fd61507f138bcfc6f9c770d9479b Mon Sep 17 00:00:00 2001 -From: Bernd Waibel -Date: Thu, 11 Feb 2021 23:14:31 +0100 -Subject: [PATCH] fix to find lib3mf-2 - -Lib3mf-2 uses lowercase name for it's pkg-config file. - -Signed-off-by: Bernd Waibel - cmake/Modules/FindLib3MF.cmake | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/cmake/Modules/FindLib3MF.cmake b/cmake/Modules/FindLib3MF.cmake -index 7a1ee285..b062c09c 100644 a/cmake/Modules/FindLib3MF.cmake -+++ b/cmake/Modules/FindLib3MF.cmake -@@ -15,14 +15,14 @@ message(STATUS "Searching for lib3mf.") - # We still fall back to the rest of detection code here. - # Travis CI Ubuntu Trusty environment has some issue with pkg-config - # not finding the version. --pkg_check_modules(LIB3MF lib3MF) -+pkg_check_modules(LIB3MF lib3mf) - - # default to uppercase for 1.0 library name - set(LIB3MF_LIB "3MF") - - # some distribution packages are missing version information for 2.0 - if (LIB3MF_VERSION STREQUAL "" AND LIB3MF_FOUND) -- if (EXISTS "/usr/include/lib3mf" AND EXISTS "/usr/include/lib3mf/lib3mf_implicit.hpp") -+ if (EXISTS "/usr/include/lib3mf" AND EXISTS "/usr/include/lib3mf/Bindings/Cpp/lib3mf_implicit.hpp") - set(LIB3MF_VERSION "2.0.0") - endif() - endif() --- -2.30.1 - diff --git a/media-gfx/openscad/files/openscad--fix-pkg-config-name-and-include-directory-search.patch b/media-gfx/openscad/files/openscad--fix-pkg-config-name-and-include-directory-search.patch new file mode 100644 index 000..a448deec37d --- /dev/null +++ b/media-gfx/openscad/files/openscad--fix-pkg-config-name-and-include-directory-search.patch @@ -0,0 +1,31 @@ +From 2483ee56960c99c35036273fc9fc2877eac772fc Mon Sep 17 00:00:00 2001 +From: Bernd Waibel +Date: Wed, 20 Oct 2021 19:46:08 +0200 +Subject: [PATCH] fix pkg-config name and include directory search + +Signed-off-by: Bernd Waibel +--- + cmake/Modules/FindLib3MF.cmake | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/cmake/Modules/FindLib3MF.cmake b/cmake/Modules/FindLib3MF.cmake +index 44858364..ad2f01ca 100644 +--- a/cmake/Modules/FindLib3MF.cmake b/cmake/Modules/FindLib3MF.cmake +@@ -14,11 +14,11 @@ + # Travis CI Ubuntu Trusty environment has some issue with pkg-config + # not finding the version. + find_package(PkgConfig REQUIRED QUIET) +-pkg_check_modules(PC_LIB3MF lib3MF) ++pkg_check_modules(PC_LIB3MF lib3mf) + set(LIB3MF_VERSION ${PC_LIB3MF_VERSION}) + + find_path(LIB3MF_INCLUDE_DIRS +-NAMES Model/COM/NMR_DLLInterfaces.h ++NAMES lib3mf_implicit.hpp + HINTS $ENV{LIB3MF_INCLUDEDIR} + ${PC_LIB3MF_INCLUDEDIR} + ${PC_LIB3MF_INCLUDE_DIRS} +-- +2.33.1 + diff --git a/media-gfx/openscad/openscad-.ebuild b/media-gfx/openscad/openscad-.ebuild index c4a9b06dc70..f7e74169b9e 100644 --- a/media-gfx/openscad/openscad-.ebuild +++ b/media-gfx/openscad/openscad-.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit cmake elisp-common git-r3 xdg @@ -71,12 +71,7 @@ DOCS=( doc/testing.txt ) -src_prepare() { - if has_version ">=media-libs/lib3mf-2"; then - eapply "${FILESDIR}/${P}-0001-fix-to-find-lib3mf-2.patch" - fi - cmake_src_prepare -} +PATCHES=( "${FILESDIR}"/${P}-fix-pkg-config-name-and-include-directory-search.patch ) src_configure() { local mycmakeargs=(
[gentoo-commits] repo/gentoo:master commit in: media-libs/libavif/
commit: 9ec488a5afe60e800e4f4b4132be14b2e54abc56 Author: Daniel Novomesky gmail com> AuthorDate: Fri Oct 22 14:54:00 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:06:02 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ec488a5 media-libs/libavif: Bump to 0.9.3 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Daniel Novomesky gmail.com> Closes: https://github.com/gentoo/gentoo/pull/22671 Signed-off-by: Sam James gentoo.org> media-libs/libavif/Manifest | 1 + media-libs/libavif/libavif-0.9.3.ebuild | 104 2 files changed, 105 insertions(+) diff --git a/media-libs/libavif/Manifest b/media-libs/libavif/Manifest index 830b394f870..686b39d3ebd 100644 --- a/media-libs/libavif/Manifest +++ b/media-libs/libavif/Manifest @@ -2,3 +2,4 @@ DIST libavif-0.8.4.tar.gz 2952844 BLAKE2B b5cd46d668212aab23c8146ebfcb793214873d DIST libavif-0.9.0.tar.gz 2961252 BLAKE2B 75a3d9c0f9ada1934fdafb8208571c6a863ffe04210d84b26207952028280d4e5c4efe42a6d4bc1fe417e3bbc06e8b93c416472c79ccd08d760ab65a663e16d9 SHA512 220ef27edf716af4ffc5b035c63f84e2848f165a3fe9c1b74dc0ba29f0de65147610fd4266f1b2419f60cfbb72159368da840fcb574c7a07364a60548d3db179 DIST libavif-0.9.1.tar.gz 1985366 BLAKE2B b498f00c56fe3058cf11f10cc629aad618ad297b625155ec8012f88493f8ae076933e4a4ebc7d97249019a64f01b68db34ab7ff5f9c35db0b1b74dd9048bd191 SHA512 15fa857ee40aeae2ee077d244c6e11a34193f2348e922b5dfa8579a91fa6ceff05c7146e85f9222ebaa6ef2d76e876ea050e8056990cad80850fb4d9581de9a5 DIST libavif-0.9.2.tar.gz 1987058 BLAKE2B a734014945498d29121d64e54f34b367582688bd230f16b58635c363a9722b36ccd58ae0a95918c0322c0cb38b3e29b68bdc344bb99f61adc1397969db39f480 SHA512 04400ae76214d2f0361a14897d6ee97be675375865bb96c8d237e9a4a1152ac1a966db903c11df82da71b0bc68599a5857e038cc90d63c5d3bc77b13169a3e75 +DIST libavif-0.9.3.tar.gz 2000521 BLAKE2B b9dbaf01e58058a1ab9191081242a0f669b714d319075b6330963bc8ae31f576fb77b108de4745125eb42d39682e74a3174d062a029ccb765b3030f4092a96b8 SHA512 8e95666c784d1badc7e18d27a7c21cae3b8ef3b8da9a762eb8f7216d77fba29b9ca309c01d13bcf4890e03c6bc335ba4baf3f5877396bd0584be9ea60018daa7 diff --git a/media-libs/libavif/libavif-0.9.3.ebuild b/media-libs/libavif/libavif-0.9.3.ebuild new file mode 100644 index 000..fa6ad1dca62 --- /dev/null +++ b/media-libs/libavif/libavif-0.9.3.ebuild @@ -0,0 +1,104 @@ +# Copyright 2020-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +CMAKE_ECLASS=cmake +inherit cmake-multilib gnome2-utils + +DESCRIPTION="Library for encoding and decoding .avif files" +HOMEPAGE="https://github.com/AOMediaCodec/libavif"; +SRC_URI="https://github.com/AOMediaCodec/libavif/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" +IUSE="+aom dav1d examples extras gdk-pixbuf rav1e svt-av1" + +REQUIRED_USE="|| ( aom dav1d )" + +DEPEND="media-libs/libpng[${MULTILIB_USEDEP}] + sys-libs/zlib[${MULTILIB_USEDEP}] + virtual/jpeg[${MULTILIB_USEDEP}] + aom? ( >=media-libs/libaom-3.1.2:=[${MULTILIB_USEDEP}] ) + dav1d? ( media-libs/dav1d[${MULTILIB_USEDEP}] ) + gdk-pixbuf? ( x11-libs/gdk-pixbuf:2[${MULTILIB_USEDEP}] ) + rav1e? ( media-video/rav1e[capi] ) + svt-av1? ( >=media-libs/svt-av1-0.8.6 )" +RDEPEND="${DEPEND}" +BDEPEND="virtual/pkgconfig" + +multilib_src_configure() { + local mycmakeargs=( + -DBUILD_SHARED_LIBS=ON + -DAVIF_CODEC_AOM=$(usex aom ON OFF) + -DAVIF_CODEC_DAV1D=$(usex dav1d ON OFF) + -DAVIF_CODEC_LIBGAV1=OFF + + # Use system libraries. + -DAVIF_LOCAL_ZLIBPNG=OFF + -DAVIF_LOCAL_JPEG=OFF + + -DAVIF_BUILD_GDK_PIXBUF=$(usex gdk-pixbuf ON OFF) + + -DAVIF_ENABLE_WERROR=OFF + ) + + if multilib_is_native_abi; then + mycmakeargs+=( + -DAVIF_CODEC_RAV1E=$(usex rav1e ON OFF) + -DAVIF_CODEC_SVT=$(usex svt-av1 ON OFF) + + -DAVIF_BUILD_EXAMPLES=$(usex examples ON OFF) + -DAVIF_BUILD_APPS=$(usex extras ON OFF) + -DAVIF_BUILD_TESTS=$(usex extras ON OFF) + ) + else + mycmakeargs+=( + -DAVIF_CODEC_RAV1E=OFF + -DAVIF_CODEC_SVT=OFF + + -DAVIF_BUILD_EXAMPLES=OFF + -DAVIF_BUILD_APPS=OFF + -DAVIF_BUILD_TESTS=OFF + ) + + if ! use aom ; then + if use rav1e || use svt-av1 ; then + ewarn "libavif on ${MULTILIB_ABI_FLAG} will work in read-only mode." + ewarn "Support for rav1e and/or svt-av1 is is not available on ${MULTILIB_ABI_FLAG}" + ewarn "
[gentoo-commits] repo/gentoo:master commit in: media-libs/libavif/
commit: aea51db57baf3f3f50a44f122d5cb0c7f2a632fb Author: Sam James gentoo org> AuthorDate: Sun Oct 24 04:01:49 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:06:03 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aea51db5 media-libs/libavif: sync live ebuild See: https://github.com/gentoo/gentoo/pull/22671 Signed-off-by: Sam James gentoo.org> media-libs/libavif/libavif-.ebuild | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/media-libs/libavif/libavif-.ebuild b/media-libs/libavif/libavif-.ebuild index 1cb15d73dc4..1be688c4b5e 100644 --- a/media-libs/libavif/libavif-.ebuild +++ b/media-libs/libavif/libavif-.ebuild @@ -15,10 +15,12 @@ SLOT="0" KEYWORDS="" IUSE="+aom dav1d examples extras gdk-pixbuf rav1e svt-av1" +REQUIRED_USE="|| ( aom dav1d )" + DEPEND="media-libs/libpng[${MULTILIB_USEDEP}] sys-libs/zlib[${MULTILIB_USEDEP}] virtual/jpeg[${MULTILIB_USEDEP}] - aom? ( >=media-libs/libaom-2.0.0[${MULTILIB_USEDEP}] ) + aom? ( >=media-libs/libaom-3.1.2:=[${MULTILIB_USEDEP}] ) dav1d? ( media-libs/dav1d[${MULTILIB_USEDEP}] ) gdk-pixbuf? ( x11-libs/gdk-pixbuf:2[${MULTILIB_USEDEP}] ) rav1e? ( media-video/rav1e[capi] ) @@ -26,8 +28,6 @@ DEPEND="media-libs/libpng[${MULTILIB_USEDEP}] RDEPEND="${DEPEND}" BDEPEND="virtual/pkgconfig" -REQUIRED_USE="|| ( aom dav1d )" - multilib_src_configure() { local mycmakeargs=( -DBUILD_SHARED_LIBS=ON @@ -40,6 +40,8 @@ multilib_src_configure() { -DAVIF_LOCAL_JPEG=OFF -DAVIF_BUILD_GDK_PIXBUF=$(usex gdk-pixbuf ON OFF) + + -DAVIF_ENABLE_WERROR=OFF ) if multilib_is_native_abi; then
[gentoo-commits] repo/gentoo:master commit in: media-libs/lib3mf/, media-libs/lib3mf/files/
commit: c3f5d8e908b956a30e72a6b40f2c559d24a30b1e Author: Bernd Waibel posteo net> AuthorDate: Wed Aug 25 06:05:48 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:06:06 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3f5d8e9 media-libs/lib3mf: bump to 2.2.0 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Bernd Waibel posteo.net> Closes: https://github.com/gentoo/gentoo/pull/22640 Signed-off-by: Sam James gentoo.org> media-libs/lib3mf/Manifest | 1 + ...2.2.0-0001-use-system-provided-act-binary.patch | 141 + ...2-Gentoo-specific-remove-add_dependencies.patch | 29 + media-libs/lib3mf/lib3mf-2.2.0.ebuild | 66 ++ 4 files changed, 237 insertions(+) diff --git a/media-libs/lib3mf/Manifest b/media-libs/lib3mf/Manifest index 957eb0a7970..42f1c787d50 100644 --- a/media-libs/lib3mf/Manifest +++ b/media-libs/lib3mf/Manifest @@ -1 +1,2 @@ DIST lib3mf-2.1.1.tar.gz 15917671 BLAKE2B eacf066147d5c4e15f79d374a377b5ef3b4bc8b4db20ca29e95df5cded11420874ab2df8b5bc48d4a476bcb28390e72dae422ad43d5df4d1fd0cd4ed4878 SHA512 43b1091721e994adfa8390ed6542dc207b62dee278d8747fcca044692a72123c3445d4e7795d5476d15bb535fd1a3ce1da2c2796ab8edb28eb66528778fec846 +DIST lib3mf-2.2.0.tar.gz 16439833 BLAKE2B c98f57ea99f90625f2bfbdbcde9df8dbd8aeccc655e1bd9be165c24b2d9fb74471e4b01c816d8f665e5793db77c7bcf52016f030ec1947f908d6647e9ad12745 SHA512 2a9ee92312396b8966967a7ed696c58c69a77438f94432ad071659adc8c9d12fba34a3cf3d8c8d3ad3b26c12c9a89f4d8645e6f396987dc05b04952b004a1f07 diff --git a/media-libs/lib3mf/files/lib3mf-2.2.0-0001-use-system-provided-act-binary.patch b/media-libs/lib3mf/files/lib3mf-2.2.0-0001-use-system-provided-act-binary.patch new file mode 100644 index 000..35beebf1930 --- /dev/null +++ b/media-libs/lib3mf/files/lib3mf-2.2.0-0001-use-system-provided-act-binary.patch @@ -0,0 +1,141 @@ +From: Bernd Waibel +Date: Wed, 25 Aug 2021 09:29:17 +0200 +Subject: [PATCH] use system provided act binary + +Signed-off-by: Bernd Waibel +--- + CMakeLists.txt | 110 - + 1 file changed, 73 insertions(+), 37 deletions(-) + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index d70a030..9c91496 100644 +--- a/CMakeLists.txt b/CMakeLists.txt +@@ -62,14 +62,19 @@ endif() + + + ### The API generation target +-if(CMAKE_HOST_UNIX) +- if(APPLE) +-set(ACT_COMMANDENDING darwin) +- else() +-set(ACT_COMMANDENDING linux) ++option(USE_SYSTEM_ACT "Use system provided act binary" OFF) ++if(NOT USE_SYSTEM_ACT) ++ if(CMAKE_HOST_UNIX) ++if(APPLE) ++ set(ACT_COMMANDENDING darwin) ++else() ++ set(ACT_COMMANDENDING linux) ++endif() ++ elseif(CMAKE_HOST_WIN32) ++set(ACT_COMMANDENDING exe) + endif() +-elseif(CMAKE_HOST_WIN32) +- set(ACT_COMMANDENDING exe) ++else() ++ find_program(ACT act) + endif() + + set(CMAKE_CURRENT_SOURCE_DIR_AUTOGENERATED ${CMAKE_CURRENT_SOURCE_DIR}/Autogenerated) +@@ -80,36 +85,67 @@ set(ACT_GENERATED_SOURCE + ${CMAKE_CURRENT_SOURCE_DIR_AUTOGENERATED}/Source/lib3mf_interfacewrapper.cpp + ${CMAKE_CURRENT_SOURCE_DIR_AUTOGENERATED}/Source/lib3mf_interfacejournal.cpp + ) +-add_custom_command( +- BYPRODUCTS +-${ACT_GENERATED_SOURCE} +- OUTPUT +-${CMAKE_CURRENT_BINARY_DIR_AUTOGENERATED}/LIB3MFACTGENERATIONSTAMP +- WORKING_DIRECTORY +-${CMAKE_CURRENT_SOURCE_DIR}/AutomaticComponentToolkit +- COMMAND +-cmake -E make_directory "${CMAKE_CURRENT_SOURCE_DIR_AUTOGENERATED}" +- COMMAND +-cmake -E touch "${CMAKE_CURRENT_BINARY_DIR_AUTOGENERATED}/LIB3MFACTGENERATIONSTAMP" +- COMMAND +- ${CMAKE_CURRENT_SOURCE_DIR}/AutomaticComponentToolkit/bin/act.${ACT_COMMANDENDING} ${CMAKE_CURRENT_SOURCE_DIR}/AutomaticComponentToolkit/lib3mf.xml +- COMMAND +-cmake -E remove_directory "${CMAKE_CURRENT_SOURCE_DIR_AUTOGENERATED}/Source" +- COMMAND +-cmake -E remove_directory "${CMAKE_CURRENT_SOURCE_DIR_AUTOGENERATED}/Bindings" +- COMMAND +-cmake -E copy_directory "${CMAKE_TEMP_HEADER_FOLDER}/Bindings" ${CMAKE_CURRENT_SOURCE_DIR_AUTOGENERATED}/Bindings +- COMMAND +-cmake -E copy_directory "${CMAKE_TEMP_HEADER_FOLDER}/Implementations/Cpp/Interfaces" "${CMAKE_CURRENT_SOURCE_DIR_AUTOGENERATED}/Source/" +- COMMAND +-cmake -E remove_directory "${CMAKE_TEMP_HEADER_FOLDER}" +- COMMENT +-"Generating hourglass API bindings and implementation stub" +- DEPENDS +-${CMAKE_CURRENT_SOURCE_DIR}/AutomaticComponentToolkit/lib3mf.xml +- VERBATIM +-) +- ++if(NOT USE_SYSTEM_ACT) ++ add_custom_command( ++BYPRODUCTS ++ ${ACT_GENERATED_SOURCE} ++OUTPUT ++ ${CMAKE_CURRENT_BINARY_DIR_AUTOGENERATED}/LIB3MFACTGENERATIONSTAMP ++WORKING_DIRECTORY ++ ${CMAKE_CURRENT_SOURCE_DIR}/AutomaticComponentToolkit ++COMMAND ++ cmake -E make_directory "${CMAKE_CURRENT_SOURCE_DIR_AUTOGENERATED}" ++COMMAND ++ cmake -E touch "${CMAKE_CURR
[gentoo-commits] repo/gentoo:master commit in: sci-libs/opencascade/
commit: 5480f8d93ea900ea085b9de0be2f6b14f668eacf Author: Bernd Waibel posteo net> AuthorDate: Fri Oct 22 08:53:12 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:06:04 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5480f8d9 sci-libs/opencascade: bump to 7.5.3 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Bernd Waibel posteo.net> Closes: https://github.com/gentoo/gentoo/pull/22669 Signed-off-by: Sam James gentoo.org> sci-libs/opencascade/Manifest | 1 + sci-libs/opencascade/opencascade-7.5.3.ebuild | 171 ++ 2 files changed, 172 insertions(+) diff --git a/sci-libs/opencascade/Manifest b/sci-libs/opencascade/Manifest index 29f10ccec88..a6e46ffdc98 100644 --- a/sci-libs/opencascade/Manifest +++ b/sci-libs/opencascade/Manifest @@ -1,3 +1,4 @@ DIST opencascade-7.4.0.tar.gz 49210449 BLAKE2B c92afe7551e9a066ad0940dcf49278b556a726f0534131706b3a11cb0986ba32818e162df3982283f6815eb9d67d7e91f909485d78f2b8d638da1934ffbc2f7f SHA512 eb0d47848d48f42a159ae5d7a4144483ba1f59f634844bd2053e48e04af30a30ba7056112cd38a1730d193a8d736b898f9608dd574cbe6829dbe7257a002772a DIST opencascade-7.5.1.tar.gz 47807222 BLAKE2B b5ef30ea7c373250db3e0863f3c7fde84256b37957a482f10a462a4c4ed1a21cffbbeb10e9fc140325022d7582efbd292ed6d1016d14cb67ccf5c84d14060d5a SHA512 ebb937254ac165041ef7e1a80df8f9d2ac1d518f01b3d4b0fd6d203fe0d80bd474b85a4621c74a513bd257c0b0ab7002632573f38bf72170363c7e42ed2f DIST opencascade-7.5.2.tar.gz 47812603 BLAKE2B 86995ea60e24329f91a2cbede26112a70794fb091b34d33614bef412b05b8cc9f1e770aecf78272b54a241c2524422c86f8ff722b3f27b54bf10fa5eda626288 SHA512 f951a941043a56f381cfd25e4d78bb9ae08e5cc29a894e6c0c35daf30aeabf1e44ee09af65bb6b7d62d9325be67741ddcf52266b7186b4c336c70ed8bcfa1676 +DIST opencascade-7.5.3.tar.gz 47817862 BLAKE2B be438a08997c18c3cb2c08c520fff2f439cc8a406cc3f471be3b24f874ac3bd892c4afe6fa37f742ffb5da21b5a29f9c8f737e3160dcbda35a217286218eb5e1 SHA512 2d7cf284a1b3ce8d05151085b41579cc2f4e29489b7920769cd04f86a6d76e49f533b570226d3cf041c75582894ed8a6aff889312c7c507fffae47d3e57c5c47 diff --git a/sci-libs/opencascade/opencascade-7.5.3.ebuild b/sci-libs/opencascade/opencascade-7.5.3.ebuild new file mode 100644 index 000..23b32a16122 --- /dev/null +++ b/sci-libs/opencascade/opencascade-7.5.3.ebuild @@ -0,0 +1,171 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake flag-o-matic + +MY_PV="$(ver_rs 1- '_')" +PV_MAJ="$(ver_cut 1-2)" + +DESCRIPTION="Development platform for CAD/CAE, 3D surface/solid modeling and data exchange" +HOMEPAGE="https://www.opencascade.com"; +SRC_URI="https://git.dev.opencascade.org/gitweb/?p=occt.git;a=snapshot;h=refs/tags/V${MY_PV};sf=tgz -> ${P}.tar.gz" +S="${WORKDIR}/occt-V${MY_PV}" + +LICENSE="|| ( Open-CASCADE-LGPL-2.1-Exception-1.0 LGPL-2.1 )" +SLOT="${PV_MAJ}" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="debug doc examples ffmpeg freeimage gles2 json optimize tbb vtk" + +REQUIRED_USE="?? ( optimize tbb )" + +# There's no easy way to test. Testing needs a rather big environment +# properly set up. +RESTRICT="test" + +RDEPEND=" + app-eselect/eselect-opencascade + dev-lang/tcl:= + dev-lang/tk:= + dev-tcltk/itcl + dev-tcltk/itk + dev-tcltk/tix + media-libs/fontconfig + media-libs/freetype:2 + media-libs/ftgl + virtual/glu + virtual/opengl + x11-libs/libXmu + examples? ( + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtquickcontrols2:5 + dev-qt/qtwidgets:5 + dev-qt/qtxml:5 + ) + ffmpeg? ( media-video/ffmpeg:= ) + freeimage? ( media-libs/freeimage ) + tbb? ( dev-cpp/tbb ) + vtk? ( sci-libs/vtk:=[rendering] ) +" +DEPEND=" + ${RDEPEND} + dev-cpp/eigen + dev-libs/rapidjson +" +BDEPEND=" + app-eselect/eselect-opencascade + doc? ( app-doc/doxygen ) + examples? ( dev-qt/linguist-tools:5 ) +" + +PATCHES=( + "${FILESDIR}"/${PN}-7.5.1-0001-allow-default-search-path-for-Qt5.patch + "${FILESDIR}"/${PN}-7.5.1-0002-remove-unnecessary-Qt5-check.patch + "${FILESDIR}"/${PN}-7.5.1-0003-add-Gentoo-configuration-type.patch + "${FILESDIR}"/${PN}-7.5.1-0004-fix-installation-of-cmake-config-files.patch + "${FILESDIR}"/${PN}-7.5.1-0005-fix-write-permissions-on-scripts.patch + "${FILESDIR}"/${PN}-7.5.1-0006-fix-creation-of-custom.sh-script.patch + "${FILESDIR}"/${PN}-7.5.1-fix-AllValues-name-collision-with-vtk-9.0.patch +) + +src_prepare() { + cmake_src_prepare + + use debug && append-cppflags -DDEBUG + + sed -e 's|/lib\$|/'$(get_libdir)'\$|' \ + -i adm/templates/OpenCASCADEConfig.cmake.in || die + + # There is an OCCT_UPDATE_TARGET_FILE cmake macro that fails due to some + # assumptions it makes about insta
[gentoo-commits] repo/gentoo:master commit in: games-simulation/openttd/
commit: ecdc2b2ec635901cde3f96e155b3c341b40316c7 Author: Azamat H. Hackimov gmail com> AuthorDate: Fri Oct 22 14:42:06 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:06:00 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecdc2b2e games-simulation/openttd: update to 12.0 Migrated to EAPI=8, updated dependencies, fixed bugs. Regarding #807364, there will be always unused CMAKE_DISABLE_FIND_PACKAGE_SDL warning since it will be used when USE="allegro -sdl", other unused variables are fixed. Closes: https://bugs.gentoo.org/807364 Closes: https://bugs.gentoo.org/810538 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Azamat H. Hackimov gmail.com> Signed-off-by: Sam James gentoo.org> games-simulation/openttd/Manifest| 1 + games-simulation/openttd/openttd-12.0.ebuild | 104 +++ 2 files changed, 105 insertions(+) diff --git a/games-simulation/openttd/Manifest b/games-simulation/openttd/Manifest index e1bd78d5f72..cb5324009a4 100644 --- a/games-simulation/openttd/Manifest +++ b/games-simulation/openttd/Manifest @@ -1 +1,2 @@ DIST openttd-1.11.2-source.tar.xz 6783972 BLAKE2B c71fd98a480566aede29f84afbd100b6d0dfa80311860907a7287d2d5bed74bd492c2b1012cd83f45fe68d60fb0c2378e1384530a84c28bd7fbd907b45110491 SHA512 9a6364bf19627db9f8ec58bfa85fa3a8febf1109f3b5fb9053bef810ac2d0c41df91b58f0b253dd45320a29cae2e8485df794afa7b5240f19759f98fd65c35ea +DIST openttd-12.0-source.tar.xz 7307832 BLAKE2B 12ffd0978e1f735f4a1d9eb63876a6f4a38867f11e5cbfbb7386f34564ef8b79f394b782c99f28e8a65196b7311aee28427d0485abd2e16dd69f36beb40fa3b1 SHA512 a1042fe52892cf301d3a2c7e972d9c091829638119d2ca9b55165a6b5568660f178e808db4b0bf2d3e4538dbdaea7b0683d4de9333defbcd95e109d591c05a78 diff --git a/games-simulation/openttd/openttd-12.0.ebuild b/games-simulation/openttd/openttd-12.0.ebuild new file mode 100644 index 000..73990ea5a05 --- /dev/null +++ b/games-simulation/openttd/openttd-12.0.ebuild @@ -0,0 +1,104 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="A clone of Transport Tycoon Deluxe" +HOMEPAGE="https://www.openttd.org/"; +SRC_URI="https://cdn.openttd.org/openttd-releases/${PV}/${P}-source.tar.xz"; + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" + +IUSE="allegro cpu_flags_x86_sse dedicated +fluidsynth icu +lzma lzo +openmedia +png +sdl timidity +truetype +zlib" +REQUIRED_USE="!dedicated? ( || ( allegro sdl ) )" + +RESTRICT="test" # needs a graphics set in order to test + +RDEPEND=" + !dedicated? ( + allegro? ( media-libs/allegro:5 ) + fluidsynth? ( media-sound/fluidsynth ) + icu? ( + dev-libs/icu-layoutex:= + dev-libs/icu-le-hb + >=dev-libs/icu-58.1:= + ) + sdl? ( media-libs/libsdl2[sound,video] ) + truetype? ( + media-libs/fontconfig + media-libs/freetype:2 + sys-libs/zlib:= + ) + ) + lzma? ( app-arch/xz-utils ) + lzo? ( dev-libs/lzo:2 ) + png? ( media-libs/libpng:0= ) + zlib? ( sys-libs/zlib:= )" +DEPEND="${RDEPEND}" +BDEPEND=">=games-util/grfcodec-6.0.6_p20210310 + virtual/pkgconfig" +PDEPEND=" + !dedicated? ( + openmedia? ( + >=games-misc/openmsx-0.4.0 + >=games-misc/opensfx-1.0.1 + ) + ) + openmedia? ( >=games-misc/opengfx-0.6.1 ) + timidity? ( media-sound/timidity++ )" + +DOCS=( docs/directory_structure.md ) +PATCHES=( + "${FILESDIR}/${PN}-1.11.2_dont_compress_man.patch" +) + +src_configure() { + local mycmakeargs=( + -DCMAKE_INSTALL_BINDIR=bin + -DCMAKE_INSTALL_DATADIR=share + -DOPTION_DEDICATED=$(usex dedicated) + -DCMAKE_DISABLE_FIND_PACKAGE_Allegro=$(usex !allegro) + -DCMAKE_DISABLE_FIND_PACKAGE_Freetype=$(usex !truetype) + -DCMAKE_DISABLE_FIND_PACKAGE_Fontconfig=$(usex !truetype) + -DCMAKE_DISABLE_FIND_PACKAGE_Fluidsynth=$(usex !fluidsynth) + -DCMAKE_DISABLE_FIND_PACKAGE_ICU=$(usex !icu) + -DCMAKE_DISABLE_FIND_PACKAGE_LibLZMA=$(usex !lzma) + -DCMAKE_DISABLE_FIND_PACKAGE_LZO=$(usex !lzo) + -DCMAKE_DISABLE_FIND_PACKAGE_PNG=$(usex !png) + # N.B. regarding #807364: CMAKE_DISABLE_FIND_PACKAGE_SDL is used only + # with USE="allegro -sdl" combination flags. There no other way to + # completely disable SDL1 support. + -DCMAKE_DISABLE_FIND_PACKAGE_SDL=ON + -DCMAKE_DISABLE_FIND_PACKAGE_SDL2=$(usex !sdl) + -DCMAKE_DISABLE_FIND_PACKAGE_SSE=$(usex !cpu_flags_x86_sse) + -DC
[gentoo-commits] repo/gentoo:master commit in: dev-util/bats/
commit: a8c9fb266850ca2b4e408d293be5730833430738 Author: Henning Schild hennsch de> AuthorDate: Fri Oct 22 08:50:27 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:06:05 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8c9fb26 dev-util/bats: bump version to 1.5.0 Switch EAPI to 8 and drop the workaround we had in place for a test that used to fail in previous versions. Related-to: https://bugs.gentoo.org/809755 Signed-off-by: Henning Schild hennsch.de> Closes: https://github.com/gentoo/gentoo/pull/22668 Signed-off-by: Sam James gentoo.org> dev-util/bats/Manifest | 1 + dev-util/bats/bats-1.5.0.ebuild | 43 + 2 files changed, 44 insertions(+) diff --git a/dev-util/bats/Manifest b/dev-util/bats/Manifest index 7571953cb99..8b55c57b4ac 100644 --- a/dev-util/bats/Manifest +++ b/dev-util/bats/Manifest @@ -1,2 +1,3 @@ DIST bats-1.3.0.tar.gz 78392 BLAKE2B 5dbc87ee87aba0b001d25f1304939604b1682603fb0d2fae19f852171e8bd76f1a6c262b661a373aeeb9b79818eae3387b3e4d6bcf4f0f95b87dc2430caf029f SHA512 47f67681b380a70863805691eca39532af76670b7bba2406293c58f95cbbe3dade4f792177ee00d8ca72684731efb6db2c1ca8eeabe2fa48359e81c257f95b2c DIST bats-1.4.1.tar.gz 98964 BLAKE2B e7cb70d2d0f448e4336ccf1fe51e93730a7179a782247e28ee906eb576fc02305aeeb2a580b5d34220daf8dfd2ee1d3269fb86a386fdf00483bd3b234df3b75e SHA512 3b00af13ac97d38349f09db79179e170e2b37c5364815e0e1fb957e6593a564d291bb50c54776088dd5784ef8cd597f0c332ec3a574bcef65e3083a5f2fc1f0e +DIST bats-1.5.0.tar.gz 108052 BLAKE2B 68bba9d263e4206ead7039da2b09c5211c834445efdf429dca6c53acc5409de1052ce7ffa9143e732d3aeaeb6ea6dcaf9b419adc02776e601545557dea776e36 SHA512 e0386fb32214db67ae001a2040c44277988af7fa909a820843237c7d47eedfa4e370238d5b2d06a4667b874cad4b00f2cd14624b1bc45628192e5d693bd5073a diff --git a/dev-util/bats/bats-1.5.0.ebuild b/dev-util/bats/bats-1.5.0.ebuild new file mode 100644 index 000..b9ed1b8d148 --- /dev/null +++ b/dev-util/bats/bats-1.5.0.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit multiprocessing optfeature + +MY_PN="bats-core" +DESCRIPTION="Bats-core: Bash Automated Testing System" +HOMEPAGE="https://github.com/bats-core/bats-core/"; +SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" + +DEPEND="app-shells/bash:*" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${MY_PN}-${PV}" + +src_test() { + local my_jobs=$(makeopts_jobs) + if ! command -v parallel >/dev/null; then + my_jobs=1 + fi + bin/bats --tap --jobs "${my_jobs}" test || die "Tests failed" +} + +src_install() { + exeinto /usr/libexec/${MY_PN} + doexe libexec/${MY_PN}/* + exeinto /usr/lib/${MY_PN} + doexe lib/${MY_PN}/* + dobin bin/${PN} + + dodoc README.md + doman man/${PN}.1 man/${PN}.7 +} + +pkg_postinst() { + optfeature "Parallel Execution" sys-process/parallel +}
[gentoo-commits] repo/gentoo:master commit in: net-vpn/openfortivpn/
commit: 32eaaf86a3da67667570f8b6132e9865ad69e6b9 Author: Petru Ciobanu gmail com> AuthorDate: Thu Oct 21 07:40:48 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:06:08 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32eaaf86 net-vpn/openfortivpn: Remove old versions Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Petru Ciobanu gmail.com> Closes: https://github.com/gentoo/gentoo/pull/22651 Signed-off-by: Sam James gentoo.org> net-vpn/openfortivpn/Manifest | 2 -- net-vpn/openfortivpn/openfortivpn-1.13.2.ebuild | 36 - net-vpn/openfortivpn/openfortivpn-1.15.0.ebuild | 36 - 3 files changed, 74 deletions(-) diff --git a/net-vpn/openfortivpn/Manifest b/net-vpn/openfortivpn/Manifest index e3eeaba4628..73e25fd1ef9 100644 --- a/net-vpn/openfortivpn/Manifest +++ b/net-vpn/openfortivpn/Manifest @@ -1,5 +1,3 @@ -DIST openfortivpn-1.13.2.tar.gz 82977 BLAKE2B 5daf2fdacaf2f9c3bc0a4bc3fc26543ed0ab424b70d2795e7b3d74b38cba53b1a8a9823564198ea5292b63f872c12f17ed3f65111a7024faee19640fff765cd7 SHA512 6be456784618d0af26190bad4af20a5f7163d3d984e3317fa3aac04b605ddd39f8973b192cf35fc8a371bf5ca4cbff8f644991b0cc031f558bf7881066fe8ec2 -DIST openfortivpn-1.15.0.tar.gz 157951 BLAKE2B 051dbc5ab5c003926fa4424b9c69e899bc9602aabab7749953743d1d81e0ebd90ebdf157921cabc016cf93263279eab111ed1b9763fb4ba50a11f463659be2dd SHA512 8ec6454c197925a031a454e3983ed98d93d48514d86ebb09483157872e299d9c6b36a966ac6c67cd85d203223460998cdc0e6af9d5389357d4a55789aa5e2083 DIST openfortivpn-1.16.0.tar.gz 163878 BLAKE2B 003460ca6012b90ddea41b1fe533c3b6899fa8528ef656e6d1b4a200f01d3a476749405294fc2c3c4ba489a41d7e72738d540632922fe2ae2d2344f5fc5750e3 SHA512 bd57bc076f89604077c0c6f538090b33707e2534f83ae7e01ee0604b044b2f1083b65f7d0241fb4fc38eabe8462689137c66bf59dac12b21408b8453f5b2cc5a DIST openfortivpn-1.17.0.tar.gz 166943 BLAKE2B f6372eac056ce0b9c1d3ea46d6af3d5da2323ecc96273b37efb9eccb13d31f607b1bc5843b2d33b3a722901530109a6cf0b270d6d4e31433045e6bca6041279a SHA512 fb92e07468c6a4232977506eb42e416a32612a0bd78b705588c66e7ae68c712e2d245ee4eac6806dfb7cab5fcf10739ed9002358a425a8dbb75fb1cdc15e4c98 DIST openfortivpn-1.17.1.tar.gz 167127 BLAKE2B 4b8f9fb82c4f7c8ffcecf9f14c576d73c999712b7b183b74f9d60d59c67017080a3d16d95ae74fa7f07188e9b28bdf8384f9b41ea7a4ce8e24813044d27216b9 SHA512 9d8be1043833bfa0eba6e4032c767946e88d079d329f8039964ea659c4dffb54a5a3b2a6431b66bd86590eaca8bf598a110c368714ecd7ea00312ee97f329085 diff --git a/net-vpn/openfortivpn/openfortivpn-1.13.2.ebuild b/net-vpn/openfortivpn/openfortivpn-1.13.2.ebuild deleted file mode 100644 index db3015c68b8..000 --- a/net-vpn/openfortivpn/openfortivpn-1.13.2.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools linux-info - -DESCRIPTION="Fortinet compatible VPN client" -HOMEPAGE="https://github.com/adrienverge/openfortivpn"; -SRC_URI="https://github.com/adrienverge/openfortivpn/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3-with-openssl-exception openssl" -SLOT="0" -KEYWORDS="amd64" - -DEPEND=" - net-dialup/ppp - dev-libs/openssl:0= -" -RDEPEND="${DEPEND}" - -CONFIG_CHECK="~PPP ~PPP_ASYNC" - -src_prepare() { - default - - sed -i 's/-Werror//g' Makefile.am || die "Failed to remove -Werror from Makefile.am" - - eautoreconf -} - -src_install() { - default - - keepdir /etc/openfortivpn -} diff --git a/net-vpn/openfortivpn/openfortivpn-1.15.0.ebuild b/net-vpn/openfortivpn/openfortivpn-1.15.0.ebuild deleted file mode 100644 index 0c64cdfd137..000 --- a/net-vpn/openfortivpn/openfortivpn-1.15.0.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools linux-info - -DESCRIPTION="Fortinet compatible VPN client" -HOMEPAGE="https://github.com/adrienverge/openfortivpn"; -SRC_URI="https://github.com/adrienverge/openfortivpn/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3-with-openssl-exception openssl" -SLOT="0" -KEYWORDS="~amd64" - -DEPEND=" - net-dialup/ppp - dev-libs/openssl:0= -" -RDEPEND="${DEPEND}" - -CONFIG_CHECK="~PPP ~PPP_ASYNC" - -src_prepare() { - default - - sed -i 's/-Werror//g' Makefile.am || die "Failed to remove -Werror from Makefile.am" - - eautoreconf -} - -src_install() { - default - - keepdir /etc/openfortivpn -}
[gentoo-commits] repo/gentoo:master commit in: games-simulation/openttd/
commit: 0f59d3588c93c0e39b1ca133d3175378aa9fe1ca Author: Azamat H. Hackimov gmail com> AuthorDate: Fri Oct 22 14:48:30 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:06:01 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f59d358 games-simulation/openttd: remove old version Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Azamat H. Hackimov gmail.com> Closes: https://github.com/gentoo/gentoo/pull/22672 Signed-off-by: Sam James gentoo.org> games-simulation/openttd/Manifest | 1 - games-simulation/openttd/openttd-1.11.2-r1.ebuild | 100 -- 2 files changed, 101 deletions(-) diff --git a/games-simulation/openttd/Manifest b/games-simulation/openttd/Manifest index cb5324009a4..841db3b903b 100644 --- a/games-simulation/openttd/Manifest +++ b/games-simulation/openttd/Manifest @@ -1,2 +1 @@ -DIST openttd-1.11.2-source.tar.xz 6783972 BLAKE2B c71fd98a480566aede29f84afbd100b6d0dfa80311860907a7287d2d5bed74bd492c2b1012cd83f45fe68d60fb0c2378e1384530a84c28bd7fbd907b45110491 SHA512 9a6364bf19627db9f8ec58bfa85fa3a8febf1109f3b5fb9053bef810ac2d0c41df91b58f0b253dd45320a29cae2e8485df794afa7b5240f19759f98fd65c35ea DIST openttd-12.0-source.tar.xz 7307832 BLAKE2B 12ffd0978e1f735f4a1d9eb63876a6f4a38867f11e5cbfbb7386f34564ef8b79f394b782c99f28e8a65196b7311aee28427d0485abd2e16dd69f36beb40fa3b1 SHA512 a1042fe52892cf301d3a2c7e972d9c091829638119d2ca9b55165a6b5568660f178e808db4b0bf2d3e4538dbdaea7b0683d4de9333defbcd95e109d591c05a78 diff --git a/games-simulation/openttd/openttd-1.11.2-r1.ebuild b/games-simulation/openttd/openttd-1.11.2-r1.ebuild deleted file mode 100644 index 104f633add0..000 --- a/games-simulation/openttd/openttd-1.11.2-r1.ebuild +++ /dev/null @@ -1,100 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -DESCRIPTION="A clone of Transport Tycoon Deluxe" -HOMEPAGE="https://www.openttd.org/"; -SRC_URI="https://cdn.openttd.org/openttd-releases/${PV}/${P}-source.tar.xz"; - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" - -IUSE="allegro cpu_flags_x86_sse dedicated +fluidsynth icu +lzma lzo +openmedia +png +sdl timidity +truetype zlib" -REQUIRED_USE="!dedicated? ( || ( allegro sdl ) )" - -RESTRICT="test" # needs a graphics set in order to test - -RDEPEND=" - !dedicated? ( - allegro? ( media-libs/allegro:5 ) - fluidsynth? ( media-sound/fluidsynth ) - icu? ( - dev-libs/icu-layoutex:= - dev-libs/icu-le-hb - >=dev-libs/icu-58.1:= - ) - sdl? ( media-libs/libsdl2[sound,video] ) - truetype? ( - media-libs/fontconfig - media-libs/freetype:2 - sys-libs/zlib:= - ) - ) - lzma? ( app-arch/xz-utils ) - lzo? ( dev-libs/lzo:2 ) - png? ( media-libs/libpng:0= ) - zlib? ( sys-libs/zlib:= )" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" -PDEPEND=" - !dedicated? ( - openmedia? ( - >=games-misc/openmsx-0.4.0 - >=games-misc/opensfx-1.0.1 - ) - ) - openmedia? ( >=games-misc/opengfx-0.6.1 ) - timidity? ( media-sound/timidity++ )" - -DOCS=( docs/directory_structure.md ) -PATCHES=( - "${FILESDIR}/${P}_dont_compress_man.patch" -) - -src_configure() { - local mycmakeargs=( - -DCMAKE_INSTALL_BINDIR=bin - -DCMAKE_INSTALL_DATADIR=share - -DOPTION_DEDICATED=$(usex dedicated) - -DCMAKE_DISABLE_FIND_PACKAGE_Allegro=$(usex !allegro) - -DCMAKE_DISABLE_FIND_PACKAGE_FREETYPE=$(usex !truetype) - -DCMAKE_DISABLE_FIND_PACKAGE_Fontconfig=$(usex !truetype) - -DCMAKE_DISABLE_FIND_PACKAGE_Fluidsynth=$(usex !fluidsynth) - -DCMAKE_DISABLE_FIND_PACKAGE_ICU=$(usex !icu) - -DCMAKE_DISABLE_FIND_PACKAGE_LIBLZMA=$(usex !lzma) - -DCMAKE_DISABLE_FIND_PACKAGE_LZO=$(usex !lzo) - -DCMAKE_DISABLE_FIND_PACKAGE_PNG=$(usex !png) - -DCMAKE_DISABLE_FIND_PACKAGE_SDL=ON - -DCMAKE_DISABLE_FIND_PACKAGE_SDL2=$(usex !sdl) - -DCMAKE_DISABLE_FIND_PACKAGE_SSE=$(usex !cpu_flags_x86_sse) - -DCMAKE_DISABLE_FIND_PACKAGE_ZLIB=$(usex !zlib) - ) - cmake_src_configure -} - -src_install() { - cmake_src_install - newinitd "${FILESDIR}"/${PN}.initd-r1 ${PN} -} - -pkg_postinst() { - if ! use openmedia ; then - elog - elog "OpenTTD was compiled without the 'openmedia' USE flag." - elog - elog "In order to play, you must at least install" - elog "games-misc/opengfx, and games-misc/opensfx, or co
[gentoo-commits] repo/gentoo:master commit in: app-misc/broot/
commit: c8ffeda505865b0aa8bc013f516f3ff06955cd44 Author: Karl-Johan Karlsson lysator liu se> AuthorDate: Fri Oct 22 16:44:47 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:05:59 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8ffeda5 app-misc/broot: bump to 1.6.6 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Karl-Johan Karlsson lysator.liu.se> Closes: https://github.com/gentoo/gentoo/pull/22674 Signed-off-by: Sam James gentoo.org> app-misc/broot/Manifest | 2 + app-misc/broot/broot-1.6.6.ebuild | 266 ++ 2 files changed, 268 insertions(+) diff --git a/app-misc/broot/Manifest b/app-misc/broot/Manifest index 0b1e5ea0d56..05673e8f89f 100644 --- a/app-misc/broot/Manifest +++ b/app-misc/broot/Manifest @@ -18,6 +18,7 @@ DIST bitflags-1.2.1.crate 16745 BLAKE2B 0fa6d3ce44aad7616d5cd02aad8c1d0b0fed4022 DIST broot-1.6.3.tar.gz 8712118 BLAKE2B 01d8332864c1a8ef92190d99ce701d4ceba5be0fceeb3cc5eb1fae65857b825c9ee68da137b28fa3320d8eb94d8d90d10ccd29717e1716cd02de72a620d484fc SHA512 6daf9b10eaa82a960da03b5295cd5147447bb462e67be22bd3ab134b30b26fa3e17ced2c1a1ca46a1a059cc32a1376ab82d0e60ce6c143aa2bd1d265c93937ce DIST broot-1.6.4.tar.gz 8711244 BLAKE2B df6dbd53dec512402608eb87359b233dc68f1c97a71d7bdd51b2c45cf317a0f6c3223e8464fd08da110769b1abc42f555c42d8cddedc4991748c0d10f9fa SHA512 979889c3a226a145f55bdd036111c67cb25249e2e05c34487e37da36867c6a9671347809bcb2b36250b2c991d36e9d21f6fc86682a4d8923de579f73512fc8ca DIST broot-1.6.5.tar.gz 8714512 BLAKE2B e72ff6fe43343c582af93b4f06052d8a3bc510d79f02af53e5f0a89995ead71a9b3de0905d9042ee54e6548034a4929b4861cdccb6fdfa423fbd399855dad27a SHA512 8bc9cd9e7a3dc989c629fdf7d0b5a627bd0a5a24705abe67ca3d8453c1e465bae6e0545bca736f5459904b99ee1348b1148e5afebc12b9a8b1f20d80b9329d49 +DIST broot-1.6.6.tar.gz 8714930 BLAKE2B 8e0a649dc7d022c4be12eb7c7ba5925de46a59c739f1b7a0c3b238bde8edcc3ea226ddeea5b553376b198c66fd6d745b516afcb2ae49c0df1c3f8c732cd492aa SHA512 c1e3b375904c5589fda5950617142675a9f7c16656c954cda141b3bf32acd3bb1db0fec095bfe77f648be48865b3c7251e3b6ca94da7f5ff0f72915a3a1eb90a DIST bstr-0.2.16.crate 330346 BLAKE2B 75a345f3a5d428ec7278cd10fa676f5bb72685c65c4fe68163943cf3142b43ac45d458bce9323447b201ffcc91aa82cd8c762cb1954c055e34b1a5cebc686ee8 SHA512 33e82e5637efdc2f404ab9405331ae135df12586785491c3e61e70ea8406c67e2109e550cc70a4ab8e95d054e8519c48257fd3b55ef0b67b2530914a9a0b0fac DIST bytemuck-1.7.2.crate 27489 BLAKE2B 2541a7561eb34351f58266451a020858d8ac1ad30ecb95b97d576e72532cae37ef0b747e2259aaf6052b65f951586425044f824a00dfabf54bba9462edf94c2a SHA512 fae361f5abe67215a7591d421a0b713b77b437123c56e21dd00421e95ab86d9dd9b0bf1daa6623b833ea65681fbeeb58f6feab9d323964304a3250f24df1ace2 DIST byteorder-1.4.3.crate 22512 BLAKE2B d39c546ba7346df315297fc53da4bfc77ecb1f38567ddb788549ee31cae2719a8bc0b7d1f1705abb3cff033aa57af004987d90748f5a31765273b3223a011c0d SHA512 8c8000eb8ecf40351c9ce36a3a8acd7a02f81786d1b11aab85adfeffa0f2267ed74df29b2ca5d1d38128484d1d3cad2b673aa0d0441dcd0620dfd3934bb888fa @@ -183,6 +184,7 @@ DIST termimad-0.10.3.crate 316247 BLAKE2B acda7abe193eeb015c9e144e765b3fe075fda1 DIST termimad-0.14.0.crate 334991 BLAKE2B 0bd2d35b68f841e0c764a0b489b29767a141b54576259beecc39adcb1105f952a248cb3030b6e79a819148edb61f028b5ecb64b221cb21236bd031194404e983 SHA512 c96c2c43b091f174bbe1105c91d426786964dafd6477004828e798c3e911f391e12c33afdc4c9872523206481100c4656e722acdbd4a64db92ac88ec1b5040fb DIST termimad-0.16.1.crate 344819 BLAKE2B 8cc26f5c5ce84ab12c05aa9eed0e0fa06cbd764a4665f91c9818e2c0c27b13976a36402caa0b7be5da54fcb750f92c330cb04c158540f2ceecf4b79124d9acd2 SHA512 a496ca4c40a4d54fad929de1b7062ed9269e34b46ed4a6fbd94d6f212be69c28f135185579bb655c5d2e34eb6192a17271d1544b5cfeba9e33a68f87c4254616 DIST termimad-0.16.3.crate 345417 BLAKE2B 3052305c18475c3429639232b913dcf0941ab53f747ae0438c47493e69cc30c6d6378472487cc7fd2b6db3cf3fd629b0802911b828a1a95b14ad69dae2b1 SHA512 15c0c44d79762936edb12201a90323e2fc70d0f7f7eb6dc626b0971bb7419d3a11dc31678d54b168ac73739de9f505c331cd5b626ab10eb5dfbb13edd58ad584 +DIST termimad-0.16.4.crate 345687 BLAKE2B 1551814ed21af200e3102e16dfd233060f2deba8bc7fe120bacfb9d520e4d5c3fc26031a3f346e2fc3ae70900ab91c303ecf09b1c80ab0c2cfc696b3039ae56d SHA512 c1e825ffa5f6180b5acf18aef3863698dfdbdcdb2b800ed77a9bc62cc5ec0eb42d8ace7e36c11ffe7a07f75e3b24137baf583cc8388ee5934bc79ebe0763bd8d DIST terminal-clipboard-0.2.1.crate 4056 BLAKE2B 638662ebf46e0cb67df5a33905b5384b9270276c243b6f53a66415509eabb4da48c2d8257b5f67518712911395698cd02a745b6daf42d1cab30a1253a7dd98bf SHA512 10b6d024b24fb236954a981c17dec25b4d4b8f06c4cef3edb9137cf291099453926b5793c6f19bd3b69a9db88e38ed4ea72bbf8aa6f57434a30974b9fb9ab763 DIST termux-clipboard-0.1.0.crate 2033 BLAKE2B 33003b25e6236370b2423472e87deaac8ee282c375e02faa3575aaec7ef547674f0218a50f0a2d42ff75dcf088ef31d94f44c4b05c0f526dddbaef2e06a8c722 SHA512 acd972d9c9eaa20dfadf1ec01274ed27fb33d16d97b
[gentoo-commits] repo/gentoo:master commit in: media-libs/libcaca/files/, media-libs/libcaca/
commit: e4d9018ad6d87a731a9fd621561cad1b170aec89 Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Sat Oct 23 08:42:34 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 04:05:58 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4d9018a media-libs/libcaca: min java 1.8:* Closes: https://bugs.gentoo.org/786807 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/22681 Signed-off-by: Sam James gentoo.org> media-libs/libcaca/files/foo | 77 ++ ...a19-r7.ebuild => libcaca-0.99_beta19-r8.ebuild} | 4 +- 2 files changed, 79 insertions(+), 2 deletions(-) diff --git a/media-libs/libcaca/files/foo b/media-libs/libcaca/files/foo new file mode 100644 index 000..d35de1aa7d2 --- /dev/null +++ b/media-libs/libcaca/files/foo @@ -0,0 +1,77 @@ +diff --git a/src/common-image.c b/src/common-image.c +index 7059bf4..d40eba1 100644 +--- a/src/common-image.c b/src/common-image.c +@@ -22,6 +22,7 @@ + #endif + + #include "caca.h" ++#include "caca_internals.h" + + #include "common-image.h" + +diff --git a/src/Makefile.am b/src/Makefile.am +index 5f0b22f..2f48f27 100644 +--- a/src/Makefile.am b/src/Makefile.am +@@ -11,7 +11,7 @@ noinst_PROGRAMS = cacadraw + + cacademo_SOURCES = cacademo.c texture.h + cacademo_LDADD = ../caca/libcaca.la ../caca/libcaca.la +-cacademo_LDFLAGS = @MATH_LIBS@ ++cacademo_LIBS = @MATH_LIBS@ + + cacafire_SOURCES = aafire.c + cacafire_LDADD = ../caca/libcaca.la ../caca/libcaca.la +@@ -19,7 +19,7 @@ cacafire_LDADD = ../caca/libcaca.la ../caca/libcaca.la + cacaview_SOURCES = cacaview.c common-image.c common-image.h + cacaview_LDADD = ../caca/libcaca.la ../caca/libcaca.la + cacaview_CFLAGS = $(IMLIB2_CFLAGS) +-cacaview_LDFLAGS = $(IMLIB2_LIBS) ++cacaview_LIBS = $(IMLIB2_LIBS) + + cacadraw_SOURCES = cacadraw.c + cacadraw_LDADD = ../caca/libcaca.la ../caca/libcaca.la +@@ -37,7 +37,7 @@ cacaclock_LDADD = ../caca/libcaca.la + img2txt_SOURCES = img2txt.c common-image.c common-image.h + img2txt_LDADD = ../caca/libcaca.la + img2txt_CFLAGS = $(IMLIB2_CFLAGS) +-img2txt_LDFLAGS = $(IMLIB2_LIBS) ++img2txt_LIBS = $(IMLIB2_LIBS) + + if USE_NETWORK + fcntl_programs = cacaserver +diff --git a/src/Makefile.am b/src/Makefile.am +index 2f48f27..725ad36 100644 +--- a/src/Makefile.am b/src/Makefile.am +@@ -10,16 +10,14 @@ bin_PROGRAMS = cacademo cacafire cacaplay cacaview img2txt cacaclock $(fcntl_pro + noinst_PROGRAMS = cacadraw + + cacademo_SOURCES = cacademo.c texture.h +-cacademo_LDADD = ../caca/libcaca.la ../caca/libcaca.la +-cacademo_LIBS = @MATH_LIBS@ ++cacademo_LDADD = ../caca/libcaca.la @MATH_LIBS@ + + cacafire_SOURCES = aafire.c + cacafire_LDADD = ../caca/libcaca.la ../caca/libcaca.la + + cacaview_SOURCES = cacaview.c common-image.c common-image.h +-cacaview_LDADD = ../caca/libcaca.la ../caca/libcaca.la ++cacaview_LDADD = ../caca/libcaca.la $(IMLIB2_LIBS) + cacaview_CFLAGS = $(IMLIB2_CFLAGS) +-cacaview_LIBS = $(IMLIB2_LIBS) + + cacadraw_SOURCES = cacadraw.c + cacadraw_LDADD = ../caca/libcaca.la ../caca/libcaca.la +@@ -35,9 +33,8 @@ cacaclock_LDADD = ../caca/libcaca.la + + + img2txt_SOURCES = img2txt.c common-image.c common-image.h +-img2txt_LDADD = ../caca/libcaca.la ++img2txt_LDADD = ../caca/libcaca.la $(IMLIB2_LIBS) + img2txt_CFLAGS = $(IMLIB2_CFLAGS) +-img2txt_LIBS = $(IMLIB2_LIBS) + + if USE_NETWORK + fcntl_programs = cacaserver diff --git a/media-libs/libcaca/libcaca-0.99_beta19-r7.ebuild b/media-libs/libcaca/libcaca-0.99_beta19-r8.ebuild similarity index 98% rename from media-libs/libcaca/libcaca-0.99_beta19-r7.ebuild rename to media-libs/libcaca/libcaca-0.99_beta19-r8.ebuild index 1fbb143b911..07175fc779e 100644 --- a/media-libs/libcaca/libcaca-0.99_beta19-r7.ebuild +++ b/media-libs/libcaca/libcaca-0.99_beta19-r8.ebuild @@ -40,7 +40,7 @@ DEPEND=" >=x11-libs/libXt-1.1.4[${MULTILIB_USEDEP}] ) " -RDEPEND="java? ( >=virtual/jre-1.5 )" +RDEPEND="java? ( >=virtual/jre-1.8:* )" BDEPEND=" virtual/pkgconfig doc? ( @@ -50,7 +50,7 @@ BDEPEND=" >=dev-texlive/texlive-latexextra-2012 dev-texlive/texlive-latexrecommended ) - java? ( >=virtual/jdk-1.5 ) + java? ( >=virtual/jdk-1.8:* ) test? ( dev-util/cppunit ) "
[gentoo-commits] repo/gentoo:master commit in: app-editors/vscode/
commit: b6d922e842face05a57dbb8b5e6fe6ee785a3b6e Author: Matt Jolly footclan ninja> AuthorDate: Thu Oct 21 10:30:09 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 03:57:44 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6d922e8 app-editors/vscode: remove old version Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Matt Jolly footclan.ninja> Closes: https://github.com/gentoo/gentoo/pull/22597 Signed-off-by: Sam James gentoo.org> app-editors/vscode/Manifest | 3 - app-editors/vscode/vscode-1.58.2.ebuild | 103 2 files changed, 106 deletions(-) diff --git a/app-editors/vscode/Manifest b/app-editors/vscode/Manifest index d8a91d3190b..d7dc85a9a2a 100644 --- a/app-editors/vscode/Manifest +++ b/app-editors/vscode/Manifest @@ -1,6 +1,3 @@ -DIST vscode-1.58.2-amd64.tar.gz 105591644 BLAKE2B bc130bfeab48f60f4149aa9d44aebbfba121cb629f1295acb23361a06e5071ddb2dc147c7d161b67f57d45fdb1337784a85bb4f08c6f82a48675c35be0037047 SHA512 00e4012d133e8755b13b1b0136078db872b7f202c59663ea46b137451338ca77f8020cc7fffa807ba5e5963105f0ce8ea0d2a0f29702078a64ace5743da6c83e -DIST vscode-1.58.2-arm.tar.gz 96167069 BLAKE2B 1c19cf29c9419663216e3ccf521314e0102efcd18a69b0e3668259f8172a377300f1ca900e2d0cda325619a855fdcd6def5db34ebab0e6f79bc0ffd1cb2eb609 SHA512 32c4011c0a10827b73388b469246c179fc3aa06e883c1264f215cd96695821945401b4d0bfc7cf324768977eeb0c785ab4948fdb50899b26b9ca469087ab3b45 -DIST vscode-1.58.2-arm64.tar.gz 110942132 BLAKE2B 3fb2a83087789690ba930ae0910b931f8f2ed129049e536d172bd67be6d928afb2e17ba09756c1dd3f9c145354fa8eface31928f419f74df165bb0c60588dc57 SHA512 f1ae69955251b6e8e92eebf01edfd820cdbf06c887349ba1cb6db2ff8aee170183029a0f2b5075b8a07ed9a26e982b87d63fe0fe4a193fa71ff5ebb52fdf1221 DIST vscode-1.59.1-amd64.tar.gz 106142213 BLAKE2B eed73d0e98ea0275ed005586f18e14b3671a4dea301f44f469798bae3c298d8eb7e819c896957f9a1cd3e978ce171ff9d3a7433ede540b0647cae735b2d53bcd SHA512 c7ae7417bd233498b6be0dbcbc67ee44283a14938bfecb3b61d224533a4edf31c291bebdb90e87d769cb52afb9ac17f2fb20ba64dab7773d1ce965aa9d7bfae6 DIST vscode-1.59.1-arm.tar.gz 97705768 BLAKE2B daf2b56ecbf45b57d6b147e4b839000621e367caac66189151b9021ade6901941a8d641291a132d1c1bbdf40bb411bc65d8663743307e896670cfaf24d335feb SHA512 ade1499986a4cefad933cbcf9a073230e74b1a554248e41f1b58480d53b68f6ed0fa0e8faa6f52e59eebc94dcc5127bdbedf77deeab0b108ec7832c71cfd3f6f DIST vscode-1.59.1-arm64.tar.gz 111284699 BLAKE2B c349c47208a6caf868070f9bb5bb6b23ff6eaa11de8d754edf8bec8fdd6fdd81c0ff246829a7ef4a92697ecb6356b779456aa8c1781f50ca4c7891297788aa43 SHA512 27b8aeac5ed2bac8bc6dc502ca39cac94f7e8ea4ea6baedffaa3b44dea451738e798674976444268db5543b6a144d55cadd47ded755a66c484c4c05cd5d20ad8 diff --git a/app-editors/vscode/vscode-1.58.2.ebuild b/app-editors/vscode/vscode-1.58.2.ebuild deleted file mode 100644 index 044c01c3300..000 --- a/app-editors/vscode/vscode-1.58.2.ebuild +++ /dev/null @@ -1,103 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit desktop pax-utils xdg - -DESCRIPTION="Multiplatform Visual Studio Code from Microsoft" -HOMEPAGE="https://code.visualstudio.com"; -SRC_URI=" - amd64? ( https://update.code.visualstudio.com/${PV}/linux-x64/stable -> ${P}-amd64.tar.gz ) - arm? ( https://update.code.visualstudio.com/${PV}/linux-armhf/stable -> ${P}-arm.tar.gz ) - arm64? ( https://update.code.visualstudio.com/${PV}/linux-arm64/stable -> ${P}-arm64.tar.gz ) -" -S="${WORKDIR}" - -RESTRICT="mirror strip bindist" - -LICENSE=" - Apache-2.0 - BSD - BSD-1 - BSD-2 - BSD-4 - CC-BY-4.0 - ISC - LGPL-2.1+ - Microsoft-vscode - MIT - MPL-2.0 - openssl - PYTHON - TextMate-bundle - Unlicense - UoI-NCSA - W3C -" -SLOT="0" -KEYWORDS="-* ~amd64 ~arm ~arm64" - -RDEPEND=" - app-accessibility/at-spi2-atk - app-crypt/libsecret[crypt] - dev-libs/nss - media-libs/alsa-lib - media-libs/libpng:0/16 - x11-libs/cairo - x11-libs/gtk+:3 - x11-libs/libnotify - x11-libs/libxkbcommon - x11-libs/libxkbfile - x11-libs/libXScrnSaver - x11-libs/libXtst - x11-libs/pango -" - -QA_PREBUILT=" - /opt/vscode/code - /opt/vscode/libEGL.so - /opt/vscode/libffmpeg.so - /opt/vscode/libGLESv2.so - /opt/vscode/libvulkan.so* - /opt/vscode/chrome-sandbox - /opt/vscode/libvk_swiftshader.so - /opt/vscode/swiftshader/libEGL.so - /opt/vscode/swiftshader/libGLESv2.so - /opt/vscode/resources/app/extensions/* - /opt/vscode/resources/app/node_modules.asar.unpacked/* -" - -src_install() { - if use amd64; then - cd "${WORKDIR}/VSCode-linux-x64" || die - elif use arm; then - cd "${WORKDIR}/VSCode-linux-armhf" || die - elif u
[gentoo-commits] repo/gentoo:master commit in: app-editors/vscodium/
commit: 12f8ec2d3713e853000e8c505b3b08fc01ee245f Author: Matt Jolly footclan ninja> AuthorDate: Thu Oct 21 10:25:20 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 03:57:42 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12f8ec2d app-editors/vscodium: remove old version Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Matt Jolly footclan.ninja> Signed-off-by: Sam James gentoo.org> app-editors/vscodium/Manifest | 3 - app-editors/vscodium/vscodium-1.58.2.ebuild | 95 - 2 files changed, 98 deletions(-) diff --git a/app-editors/vscodium/Manifest b/app-editors/vscodium/Manifest index ae7d4cad9c6..c4fb9a15a3d 100644 --- a/app-editors/vscodium/Manifest +++ b/app-editors/vscodium/Manifest @@ -1,6 +1,3 @@ -DIST vscodium-1.58.2-amd64.tar.gz 109733827 BLAKE2B 0ada13724f2d4255a9ce58d0fd47415f2f5b4adfed144dae884914888df1f9bb735472e378fc2d4dd74fd1168c3361ad4e945a48607aeb3e095658a7b3e0df2c SHA512 dd98dbd88e64e526f78624e2e42bd116a689174d801412f7750c895794b0658b20b9451d336d0837f4030c11ce35368fb3dd0ade078bac393ada813c912a9a8d -DIST vscodium-1.58.2-arm.tar.gz 98395232 BLAKE2B 74bb7a07f9d6a9f107cd74a1a593e7770d67d1f0b2e4b809dab420c8b17fe3902a05a26caf59e2474afdfd01a2d65b0889f2d4298cdf512cfa44df8321a8e65a SHA512 58a08f2a5be9c42410772b97d5456d75044454ace5de92e03ac5bd7ff2dcef284e1e747869752f548bb1237e248981e06a9f9a9b6be99f8e8a50cf52fe6dd2c4 -DIST vscodium-1.58.2-arm64.tar.gz 115052512 BLAKE2B d1047b34bf6132f47b7423e35a7cb92b98cbac782db1a086c068d0bd60fcc59c16852f18451ac860c8e8940fce08e6e7671fed3db3e19f7c80e34411865c7b5b SHA512 d34b53f9679006c30f2f422a8311a336eea778995fc8dc7cb0c24ecc02c88bbb2cd442f426fa88afd78f7175c16ce6c9f912eaa900d76fa25081824f91cabe0f DIST vscodium-1.59.1-amd64.tar.gz 110191208 BLAKE2B e7cc44d690fb0f3c25e0ef39198784ac651bcdc13e84918d44fdfb99b48d918dae8a1c7b9129b482cbe34e98a26bd44d9eb47d5df5daf73fdcffae7b5482b506 SHA512 401df889b5dea5c045fccb3d93fa5f5bcfaeb162977e434498e7600f67efb877c64effac7371f29f51e297c713640df2cad1f4db9540797f7146608e4d8f530b DIST vscodium-1.59.1-arm.tar.gz 100781835 BLAKE2B 36f463f93b03afc9a191aebaf96cc6eb9c43feb0274a167cca6a983d85381821e10c9cdcba3f384a09d431bb3c4b55fcdd248b9ce93614ac3ddf2129c80f6f87 SHA512 3df672daa85b838bc45a4cb4da3e9001a008ff66ce469f6b9f25d066bdbfaad951f4e8e392cde59fa90024d3977f707b2c5d1d079797803caa538ddc56133b73 DIST vscodium-1.59.1-arm64.tar.gz 115349031 BLAKE2B 9762a344b490ea0278cbb36e0f27a5d62417b8b356b08c62bc1577a4c959f5c65997676a4c8555832bd62ec6af4c3ce253a1c277881cf0430e0af15d56071201 SHA512 b47c2718889cc6bacb79fd73e3e4090a94078768992ca0bb2be77030266d547ad8c8d884deaa7d3925e4c94e74ed3bda8a5fca678459dfd6e64c3d2a752ee9c0 diff --git a/app-editors/vscodium/vscodium-1.58.2.ebuild b/app-editors/vscodium/vscodium-1.58.2.ebuild deleted file mode 100644 index e25a3967ed4..000 --- a/app-editors/vscodium/vscodium-1.58.2.ebuild +++ /dev/null @@ -1,95 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit desktop pax-utils xdg - -DESCRIPTION="A community-driven, freely-licensed binary distribution of Microsoft's VSCode" -HOMEPAGE="https://vscodium.com/"; -SRC_URI=" - amd64? ( https://github.com/VSCodium/${PN}/releases/download/${PV}/VSCodium-linux-x64-${PV}.tar.gz -> ${P}-amd64.tar.gz ) - arm? ( https://github.com/VSCodium/${PN}/releases/download/${PV}/VSCodium-linux-armhf-${PV}.tar.gz -> ${P}-arm.tar.gz ) - arm64? ( https://github.com/VSCodium/${PN}/releases/download/${PV}/VSCodium-linux-arm64-${PV}.tar.gz -> ${P}-arm64.tar.gz ) -" - -RESTRICT="mirror strip bindist" - -LICENSE=" - Apache-2.0 - BSD - BSD-1 - BSD-2 - BSD-4 - CC-BY-4.0 - ISC - LGPL-2.1+ - MIT - MPL-2.0 - openssl - PYTHON - TextMate-bundle - Unlicense - UoI-NCSA - W3C -" -SLOT="0" -KEYWORDS="-* ~amd64 ~arm ~arm64" -IUSE="" - -RDEPEND=" - app-accessibility/at-spi2-atk - app-crypt/libsecret[crypt] - dev-libs/nss - media-libs/alsa-lib - media-libs/libpng:0/16 - net-print/cups - x11-libs/cairo - x11-libs/gtk+:3 - x11-libs/libnotify - x11-libs/libxkbcommon - x11-libs/libxkbfile - x11-libs/libXScrnSaver - x11-libs/libXtst - x11-libs/pango -" - -QA_PREBUILT=" - /opt/vscodium/codium - /opt/vscodium/libEGL.so - /opt/vscodium/libffmpeg.so - /opt/vscodium/libGLESv2.so - /opt/vscodium/libvulkan.so* - /opt/vscodium/chrome-sandbox - /opt/vscodium/libvk_swiftshader.so - /opt/vscodium/swiftshader/libEGL.so - /opt/vscodium/swiftshader/libGLESv2.so - /opt/vscodium/resources/app/extensions/* - /opt/vscodium/resources/app/node_modules.asar.unpacked/* -" - -S="${WORKDIR}" - -src_install() { - # Cleanup - rm "${S}/resources/app/
[gentoo-commits] repo/gentoo:master commit in: app-editors/vscodium/
commit: e150ea6a0fb83039221947f70451f85a39784f1e Author: Matt Jolly footclan ninja> AuthorDate: Thu Oct 21 10:23:57 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 03:57:41 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e150ea6a app-editors/vscodium: version bump: 1.61.2 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Matt Jolly footclan.ninja> Signed-off-by: Sam James gentoo.org> app-editors/vscodium/Manifest | 6 +++--- .../vscodium/{vscodium-1.61.1.ebuild => vscodium-1.61.2.ebuild} | 0 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app-editors/vscodium/Manifest b/app-editors/vscodium/Manifest index cc89d7db402..ae7d4cad9c6 100644 --- a/app-editors/vscodium/Manifest +++ b/app-editors/vscodium/Manifest @@ -7,6 +7,6 @@ DIST vscodium-1.59.1-arm64.tar.gz 115349031 BLAKE2B 9762a344b490ea0278cbb36e0f27 DIST vscodium-1.60.2-amd64.tar.gz 106735938 BLAKE2B e1441fb95829f23adcab06e4ed9b4baefca6ae377570e0759d7327533818ffbf2cc08c8d94b832d6de2e29564e5e26a0f59bb991c6b4ee40007807f2fffb2df7 SHA512 a4c7434cfc0db6dc3f866f8acf2c3f3265dc353d1592582bc3cb9acca76961a3bebf76f7e3487a9a98545b43f800c241a4f51e8cbd7512183450008656ba0f1b DIST vscodium-1.60.2-arm.tar.gz 97317796 BLAKE2B eb0baee908ed059f16a4e3093e59b6823208fe0e627b1dfd1c9489a655c53735a1bd3d67970e50feef907dec3cc76252eff5e6509fcf5ab8c5255b52182f2cf8 SHA512 b5ed07a61ca468e32a08b27238c8b50b4b76a004dee7a47ca8c98051871c44ba2d9f29296d959f13b80edeeb1a88ec3624c61dee356b8d8727071098f500aea3 DIST vscodium-1.60.2-arm64.tar.gz 111897534 BLAKE2B cf5ae8cd8e98342b0eccbf2fb1385c844f2f1d2fb27b964d455ddcf873ac0f545e5da55530bac11a99ee5e5d962e467a3c61f8848d8312142c6051da0b29db86 SHA512 b07554b8f5eb9865ee2086d68d65494368d2906634055d02e6fe843c8042ef093cd79eed31b5da87fd36a7a26324f37f79daafcbcd463c175a251b3345d9c1f1 -DIST vscodium-1.61.1-amd64.tar.gz 113892010 BLAKE2B 54af93f68fd6934b0a3bb9302b448fbaf1f930f6a517f74497eb75589ceaac86b7ec54a94819b8f5aa7af0a367d3e9b34df552c953051bc19e0096c39b6d71fa SHA512 f1b1f01ca9798f8a2652d8b8971bba3a59f32dec2875d06cac438aa7e702757c6b5b59dfb9f2312a7c7ff8362806f1d43b6b1acf0309fa942dd3242284b8c1a7 -DIST vscodium-1.61.1-arm.tar.gz 97404327 BLAKE2B cf89a013dadbcce12c78c8c7334824566c3fc08c7beacf2a72cbfeffac4dc3c5ce5d9df541d673bba15bb4451e59b6dcc3c2b9fbbbff7e44e100804a8e437a5b SHA512 fb07c6fae5fe0e1578236af635f8da8342526b7f7bdd22f8797b6d5d02000f438b3c8018807bad79a38b9ab2adb6e85d7687faa2e37d24135ae2f292acc0d5a4 -DIST vscodium-1.61.1-arm64.tar.gz 111973833 BLAKE2B b482ef45f332bec7aefe841620ec5a27fed7f318219227913fee0d42d951f4fae18bfd7220802bc06acfc1a96a3f645a3a23fa626a63df5db4e01ff305b2328b SHA512 688a39dd526bd4081544e3665f2f684c8a0a7656d4c58d15052fa33baeed912a5897989ecd02f779dc09971d0f553d434ae5ac4889aec88a502a1c8ba46f3121 +DIST vscodium-1.61.2-amd64.tar.gz 114016604 BLAKE2B b9006b0a58adc08df31bbae08a46c233cd69ee80f89493e4564f8f3dbe595481582cb605ff472984f013e364bdafbdd2f587ea3d0065d8ca775eb723f0cd4cb0 SHA512 4a1016bc8e9fea5c76a0c87180ad641f4ec981dbde0b395267580d5207cf181a090d87e984a96c40f46298cbf8185c1afe4af6a8791bc47126f50f1ba95edacc +DIST vscodium-1.61.2-arm.tar.gz 97521784 BLAKE2B c81f5b607905d3be0aa27ee63a49c0ba2225724686d1afc25f7c15289c69fd10022d1ae83390183bd50c1db9c0b74e3c9144e622e81f2895eb891d6800d1bfd2 SHA512 f4f329155282e951273580247e3262b887164f2bedf409700f3a8326e9dd2e20ab95ab4b5fe8dbf2a177487e518c9fe98078a485c08b020b4d73cc7cb9a90431 +DIST vscodium-1.61.2-arm64.tar.gz 112085871 BLAKE2B 47c58659d6e4e9a468b014c9d0a8f6ca9739d722a21ec0b3add0a69849b18022dafdcadc759070e054492d6cf2db1bf07e11454fee5623647a54e367f5d94325 SHA512 cf893f6e04a0e657fb889b40069e042ad1b2a287a349c3f05e441ada00504f9ec693f20dfe17a01f6a7d2d298dbecfe94d62f12b8b26769e373f61ae9ffda8f7 diff --git a/app-editors/vscodium/vscodium-1.61.1.ebuild b/app-editors/vscodium/vscodium-1.61.2.ebuild similarity index 100% rename from app-editors/vscodium/vscodium-1.61.1.ebuild rename to app-editors/vscodium/vscodium-1.61.2.ebuild
[gentoo-commits] repo/gentoo:master commit in: app-editors/vscode/
commit: 637a805e4dbef153c5e2483fe4c6d7a73bc4374c Author: Matt Jolly footclan ninja> AuthorDate: Thu Oct 21 10:28:46 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 03:57:43 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=637a805e app-editors/vscode: version bump 1.61.2 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Matt Jolly footclan.ninja> Signed-off-by: Sam James gentoo.org> app-editors/vscode/Manifest | 6 +++--- app-editors/vscode/{vscode-1.61.1.ebuild => vscode-1.61.2.ebuild} | 0 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app-editors/vscode/Manifest b/app-editors/vscode/Manifest index f55c68118ec..d8a91d3190b 100644 --- a/app-editors/vscode/Manifest +++ b/app-editors/vscode/Manifest @@ -7,6 +7,6 @@ DIST vscode-1.59.1-arm64.tar.gz 111284699 BLAKE2B c349c47208a6caf868070f9bb5bb6b DIST vscode-1.60.2-amd64.tar.gz 105537736 BLAKE2B 395cbea3c7522749423d8b79d7461189dbb04b1d751bb4a70b6ce7782e971c1dac0e51cda91e961cab0fceeef16e073803d2f54bd6d8840596a2ea45f9f34369 SHA512 caf8acea129533a6cb5824d5ed97f9e9f740dcdc67c3a0c3cf778d58a8fddebe870892d25ad74116c5311a53497db933ff70e5e250480c3a0d76e5fc62733b02 DIST vscode-1.60.2-arm.tar.gz 94232609 BLAKE2B eb896cc316dfc96d6d523d15da735b18eb6e6011d7ec92b5f9fa8732f574097579c8af4601312c831a9f4aa752087188e203b761e86df31b688838b45354deb1 SHA512 8261b71740344f927091dadd28bcb06d17b70551da0fd0b3c20378ec744cc31660ae32aadedd87a8942c410da381dbf7e023c27af913a62a1bba774d6de241ea DIST vscode-1.60.2-arm64.tar.gz 107827801 BLAKE2B aff930e81534972f2dc3d7d0d5cc489ec77818c0304859d64838317fbaf9225f4325a8b237268569f88eca7c76ea7a73275d90747b4485eff30d5f59a9cdd977 SHA512 cc50c7ec44d546b227c271f621be87120a1c36c2ed8236421e9c7227c1cb83bf970d5673191afc1383c4479393b5fae873fd6829179d1d9139b6c3ec32c5c1fd -DIST vscode-1.61.1-amd64.tar.gz 112707199 BLAKE2B f992466965e6807c000718c90c59e5d45e46192c8ec4a14e843ef71bebeb86bfc281ea2e7c41a5c515a904ecff82c3edc47ae33d769a2a69f154529ae4bf6a25 SHA512 4bc9fa8aa1160573f367c609a175547b12592f07a36d5c49c0d1434a7b22257dbb6ec39ce3bbc40f55177a9de51d49ac8b85e563cae9a5cff520a812f92afd7e -DIST vscode-1.61.1-arm.tar.gz 94342599 BLAKE2B 98ffc184981197bfd6fb1a0104e8a95ac18df27eee9e44e46fd42bd3986176b0996a8a454414c860a15f6d3679c3e3ab0677cb380de2b4d4f154ba83b939133c SHA512 dd9066ba6d0ad26f1b49cebeeed5d2c45be97a6e749f1a1fe83f259311f89e25ee79d3e305481879504b3e4a99bb6aa61025403265304f82ddc348cb38104140 -DIST vscode-1.61.1-arm64.tar.gz 107928610 BLAKE2B aa88e8784976d02f35c08aee64e25f63d3cf5ab53c2941f1170dc1e5a59000e853cb6f7bb597d6035b61e8421639d60b6cd63b62667d54a7bea1b2e2e7de0515 SHA512 7e561e3d2a79f58062e256cf0d0cf98eb0d16d55b943e8eeeda9e19b00922cfe63f70bb386de0337a83ec852cc83ca770e31fad085f60cf09ec70ac27d2a9b7c +DIST vscode-1.61.2-amd64.tar.gz 112814371 BLAKE2B c297d27f12dbbf5bb752076881ae28100d1b051d14528425f8227c5c70ce779ab8db93b960bd4d4ff9788fa2e63167c4253324ba4413b0975d41608c541c6303 SHA512 52c3b89612f2d2f72ea9de9449d191130a23a3dbae1f2876e1716773abe9b6c7064a8eb6053d6bc94438b6e3753df2f00ccc4452b2404fcb2c052ea6090d83cc +DIST vscode-1.61.2-arm.tar.gz 94477034 BLAKE2B cecb63ed58a36fbbef13cf7de086f0f7f77efea03fc605801b3064c273736ea999b91ef84e0c900ca415955cd7a508d20c33e92a5acab0dcca388d9624743902 SHA512 9cfd10c4cc6d2e3eaa1323afc1b493448632f57681b1e7d595d7f52a7e7d4c4a2ce48d2e6b21b2380fb7be8d98d33d5848a91af178eed974f952bcd7cfbbcb3d +DIST vscode-1.61.2-arm64.tar.gz 108043274 BLAKE2B f512c85102b3e3858a5ba8f2a63ec9fc7fdee77ffbe768287cd72e89103880002fd2ca77bc72f0210f2f4c0e4cec2b7708404e7db874d7c87d97b17361a26d4e SHA512 dcac0d56bde8b1fd855d386da77e164354f8c819e994d395cfd6b9cf50d5ac96421745c6efc20ec89448e6020b61b0d4ed482e74ecb39422a6acf3662f905dfa diff --git a/app-editors/vscode/vscode-1.61.1.ebuild b/app-editors/vscode/vscode-1.61.2.ebuild similarity index 100% rename from app-editors/vscode/vscode-1.61.1.ebuild rename to app-editors/vscode/vscode-1.61.2.ebuild
[gentoo-commits] repo/gentoo:master commit in: app-editors/vscode/
commit: 8d0649f0e47434b3c1f57302208e0260701c01bd Author: Matt Jolly footclan ninja> AuthorDate: Sat Oct 16 02:59:36 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 03:57:39 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d0649f0 app-editors/vscode: version bump 1.61.1 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Matt Jolly footclan.ninja> Signed-off-by: Sam James gentoo.org> app-editors/vscode/Manifest | 3 + app-editors/vscode/vscode-1.61.1.ebuild | 121 2 files changed, 124 insertions(+) diff --git a/app-editors/vscode/Manifest b/app-editors/vscode/Manifest index 1cebfe41829..f55c68118ec 100644 --- a/app-editors/vscode/Manifest +++ b/app-editors/vscode/Manifest @@ -7,3 +7,6 @@ DIST vscode-1.59.1-arm64.tar.gz 111284699 BLAKE2B c349c47208a6caf868070f9bb5bb6b DIST vscode-1.60.2-amd64.tar.gz 105537736 BLAKE2B 395cbea3c7522749423d8b79d7461189dbb04b1d751bb4a70b6ce7782e971c1dac0e51cda91e961cab0fceeef16e073803d2f54bd6d8840596a2ea45f9f34369 SHA512 caf8acea129533a6cb5824d5ed97f9e9f740dcdc67c3a0c3cf778d58a8fddebe870892d25ad74116c5311a53497db933ff70e5e250480c3a0d76e5fc62733b02 DIST vscode-1.60.2-arm.tar.gz 94232609 BLAKE2B eb896cc316dfc96d6d523d15da735b18eb6e6011d7ec92b5f9fa8732f574097579c8af4601312c831a9f4aa752087188e203b761e86df31b688838b45354deb1 SHA512 8261b71740344f927091dadd28bcb06d17b70551da0fd0b3c20378ec744cc31660ae32aadedd87a8942c410da381dbf7e023c27af913a62a1bba774d6de241ea DIST vscode-1.60.2-arm64.tar.gz 107827801 BLAKE2B aff930e81534972f2dc3d7d0d5cc489ec77818c0304859d64838317fbaf9225f4325a8b237268569f88eca7c76ea7a73275d90747b4485eff30d5f59a9cdd977 SHA512 cc50c7ec44d546b227c271f621be87120a1c36c2ed8236421e9c7227c1cb83bf970d5673191afc1383c4479393b5fae873fd6829179d1d9139b6c3ec32c5c1fd +DIST vscode-1.61.1-amd64.tar.gz 112707199 BLAKE2B f992466965e6807c000718c90c59e5d45e46192c8ec4a14e843ef71bebeb86bfc281ea2e7c41a5c515a904ecff82c3edc47ae33d769a2a69f154529ae4bf6a25 SHA512 4bc9fa8aa1160573f367c609a175547b12592f07a36d5c49c0d1434a7b22257dbb6ec39ce3bbc40f55177a9de51d49ac8b85e563cae9a5cff520a812f92afd7e +DIST vscode-1.61.1-arm.tar.gz 94342599 BLAKE2B 98ffc184981197bfd6fb1a0104e8a95ac18df27eee9e44e46fd42bd3986176b0996a8a454414c860a15f6d3679c3e3ab0677cb380de2b4d4f154ba83b939133c SHA512 dd9066ba6d0ad26f1b49cebeeed5d2c45be97a6e749f1a1fe83f259311f89e25ee79d3e305481879504b3e4a99bb6aa61025403265304f82ddc348cb38104140 +DIST vscode-1.61.1-arm64.tar.gz 107928610 BLAKE2B aa88e8784976d02f35c08aee64e25f63d3cf5ab53c2941f1170dc1e5a59000e853cb6f7bb597d6035b61e8421639d60b6cd63b62667d54a7bea1b2e2e7de0515 SHA512 7e561e3d2a79f58062e256cf0d0cf98eb0d16d55b943e8eeeda9e19b00922cfe63f70bb386de0337a83ec852cc83ca770e31fad085f60cf09ec70ac27d2a9b7c diff --git a/app-editors/vscode/vscode-1.61.1.ebuild b/app-editors/vscode/vscode-1.61.1.ebuild new file mode 100644 index 000..dbed711c205 --- /dev/null +++ b/app-editors/vscode/vscode-1.61.1.ebuild @@ -0,0 +1,121 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit desktop pax-utils xdg + +DESCRIPTION="Multiplatform Visual Studio Code from Microsoft" +HOMEPAGE="https://code.visualstudio.com"; +SRC_URI=" + amd64? ( https://update.code.visualstudio.com/${PV}/linux-x64/stable -> ${P}-amd64.tar.gz ) + arm? ( https://update.code.visualstudio.com/${PV}/linux-armhf/stable -> ${P}-arm.tar.gz ) + arm64? ( https://update.code.visualstudio.com/${PV}/linux-arm64/stable -> ${P}-arm64.tar.gz ) +" +S="${WORKDIR}" + +RESTRICT="mirror strip bindist" + +LICENSE=" + Apache-2.0 + BSD + BSD-1 + BSD-2 + BSD-4 + CC-BY-4.0 + ISC + LGPL-2.1+ + Microsoft-vscode + MIT + MPL-2.0 + openssl + PYTHON + TextMate-bundle + Unlicense + UoI-NCSA + W3C +" +SLOT="0" +KEYWORDS="-* ~amd64 ~arm ~arm64" + +RDEPEND=" + app-accessibility/at-spi2-atk:2 + app-accessibility/at-spi2-core:2 + app-crypt/libsecret[crypt] + dev-libs/atk + dev-libs/expat + dev-libs/glib:2 + dev-libs/nspr + dev-libs/nss + media-libs/alsa-lib + media-libs/mesa + sys-apps/dbus + x11-libs/cairo + x11-libs/gdk-pixbuf:2 + x11-libs/gtk+:3 + x11-libs/libdrm + x11-libs/libX11 + x11-libs/libxcb + x11-libs/libXcomposite + x11-libs/libXdamage + x11-libs/libXext + x11-libs/libXfixes + x11-libs/libxkbcommon + x11-libs/libxkbfile + x11-libs/libXrandr + x11-libs/libxshmfence + x11-libs/pango +" + +QA_PREBUILT=" + /opt/vscode/code + /opt/vscode/libEGL.so + /opt/vscode/libffmpeg.so + /opt/vscode/libGLESv2.so + /opt/vscode/libvulkan.so* + /opt/vscode/chrome-sandbox + /opt/vscode/libvk_swiftshader.so + /opt/vscode/swiftshader/libEGL
[gentoo-commits] repo/gentoo:master commit in: app-editors/vscodium/
commit: 06faff96eea022ccec662453142992081721f65f Author: Matt Jolly footclan ninja> AuthorDate: Sat Oct 16 03:04:28 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 03:57:40 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06faff96 app-editors/vscodium: version bump 1.61.1 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Matt Jolly footclan.ninja> Signed-off-by: Sam James gentoo.org> app-editors/vscodium/Manifest | 3 + app-editors/vscodium/vscodium-1.61.1.ebuild | 113 2 files changed, 116 insertions(+) diff --git a/app-editors/vscodium/Manifest b/app-editors/vscodium/Manifest index 665af0e4625..cc89d7db402 100644 --- a/app-editors/vscodium/Manifest +++ b/app-editors/vscodium/Manifest @@ -7,3 +7,6 @@ DIST vscodium-1.59.1-arm64.tar.gz 115349031 BLAKE2B 9762a344b490ea0278cbb36e0f27 DIST vscodium-1.60.2-amd64.tar.gz 106735938 BLAKE2B e1441fb95829f23adcab06e4ed9b4baefca6ae377570e0759d7327533818ffbf2cc08c8d94b832d6de2e29564e5e26a0f59bb991c6b4ee40007807f2fffb2df7 SHA512 a4c7434cfc0db6dc3f866f8acf2c3f3265dc353d1592582bc3cb9acca76961a3bebf76f7e3487a9a98545b43f800c241a4f51e8cbd7512183450008656ba0f1b DIST vscodium-1.60.2-arm.tar.gz 97317796 BLAKE2B eb0baee908ed059f16a4e3093e59b6823208fe0e627b1dfd1c9489a655c53735a1bd3d67970e50feef907dec3cc76252eff5e6509fcf5ab8c5255b52182f2cf8 SHA512 b5ed07a61ca468e32a08b27238c8b50b4b76a004dee7a47ca8c98051871c44ba2d9f29296d959f13b80edeeb1a88ec3624c61dee356b8d8727071098f500aea3 DIST vscodium-1.60.2-arm64.tar.gz 111897534 BLAKE2B cf5ae8cd8e98342b0eccbf2fb1385c844f2f1d2fb27b964d455ddcf873ac0f545e5da55530bac11a99ee5e5d962e467a3c61f8848d8312142c6051da0b29db86 SHA512 b07554b8f5eb9865ee2086d68d65494368d2906634055d02e6fe843c8042ef093cd79eed31b5da87fd36a7a26324f37f79daafcbcd463c175a251b3345d9c1f1 +DIST vscodium-1.61.1-amd64.tar.gz 113892010 BLAKE2B 54af93f68fd6934b0a3bb9302b448fbaf1f930f6a517f74497eb75589ceaac86b7ec54a94819b8f5aa7af0a367d3e9b34df552c953051bc19e0096c39b6d71fa SHA512 f1b1f01ca9798f8a2652d8b8971bba3a59f32dec2875d06cac438aa7e702757c6b5b59dfb9f2312a7c7ff8362806f1d43b6b1acf0309fa942dd3242284b8c1a7 +DIST vscodium-1.61.1-arm.tar.gz 97404327 BLAKE2B cf89a013dadbcce12c78c8c7334824566c3fc08c7beacf2a72cbfeffac4dc3c5ce5d9df541d673bba15bb4451e59b6dcc3c2b9fbbbff7e44e100804a8e437a5b SHA512 fb07c6fae5fe0e1578236af635f8da8342526b7f7bdd22f8797b6d5d02000f438b3c8018807bad79a38b9ab2adb6e85d7687faa2e37d24135ae2f292acc0d5a4 +DIST vscodium-1.61.1-arm64.tar.gz 111973833 BLAKE2B b482ef45f332bec7aefe841620ec5a27fed7f318219227913fee0d42d951f4fae18bfd7220802bc06acfc1a96a3f645a3a23fa626a63df5db4e01ff305b2328b SHA512 688a39dd526bd4081544e3665f2f684c8a0a7656d4c58d15052fa33baeed912a5897989ecd02f779dc09971d0f553d434ae5ac4889aec88a502a1c8ba46f3121 diff --git a/app-editors/vscodium/vscodium-1.61.1.ebuild b/app-editors/vscodium/vscodium-1.61.1.ebuild new file mode 100644 index 000..1f66143c0bf --- /dev/null +++ b/app-editors/vscodium/vscodium-1.61.1.ebuild @@ -0,0 +1,113 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit desktop pax-utils xdg + +DESCRIPTION="A community-driven, freely-licensed binary distribution of Microsoft's VSCode" +HOMEPAGE="https://vscodium.com/"; +SRC_URI=" + amd64? ( https://github.com/VSCodium/${PN}/releases/download/${PV}/VSCodium-linux-x64-${PV}.tar.gz -> ${P}-amd64.tar.gz ) + arm? ( https://github.com/VSCodium/${PN}/releases/download/${PV}/VSCodium-linux-armhf-${PV}.tar.gz -> ${P}-arm.tar.gz ) + arm64? ( https://github.com/VSCodium/${PN}/releases/download/${PV}/VSCodium-linux-arm64-${PV}.tar.gz -> ${P}-arm64.tar.gz ) +" + +RESTRICT="mirror strip bindist" + +LICENSE=" + Apache-2.0 + BSD + BSD-1 + BSD-2 + BSD-4 + CC-BY-4.0 + ISC + LGPL-2.1+ + MIT + MPL-2.0 + openssl + PYTHON + TextMate-bundle + Unlicense + UoI-NCSA + W3C +" +SLOT="0" +KEYWORDS="-* ~amd64 ~arm ~arm64" +IUSE="" + +RDEPEND=" + app-accessibility/at-spi2-atk:2 + app-accessibility/at-spi2-core:2 + app-crypt/libsecret[crypt] + dev-libs/atk + dev-libs/expat + dev-libs/glib:2 + dev-libs/nspr + dev-libs/nss + media-libs/alsa-lib + media-libs/mesa + net-print/cups + sys-apps/dbus + x11-libs/cairo + x11-libs/gdk-pixbuf:2 + x11-libs/gtk+:3 + x11-libs/libdrm + x11-libs/libX11 + x11-libs/libxcb + x11-libs/libXcomposite + x11-libs/libXdamage + x11-libs/libXext + x11-libs/libXfixes + x11-libs/libxkbcommon + x11-libs/libxkbfile + x11-libs/libXrandr + x11-libs/libxshmfence + x11-libs/pango +" + +QA_PREBUILT=" + /opt/vscodium/codium + /opt/vscodium/libEGL.so + /opt/vscodium/libffmpeg.so + /opt/vscodium/libGLE
[gentoo-commits] repo/gentoo:master commit in: net-analyzer/fail2ban/files/, net-analyzer/fail2ban/
commit: 6fe5661c2c211076587b54ff97e06bef9f69d864 Author: Sam James gentoo org> AuthorDate: Sun Oct 24 03:38:46 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 03:38:59 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fe5661c net-analyzer/fail2ban: backport upstream test fix for systemd Closes: https://bugs.gentoo.org/794931 Signed-off-by: Sam James gentoo.org> net-analyzer/fail2ban/fail2ban-0.11.2-r1.ebuild| 3 ++- .../files/fail2ban-0.11.2-fix-systemd-test.patch | 22 ++ 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/net-analyzer/fail2ban/fail2ban-0.11.2-r1.ebuild b/net-analyzer/fail2ban/fail2ban-0.11.2-r1.ebuild index 3e667a2f573..52bfd2a78f2 100644 --- a/net-analyzer/fail2ban/fail2ban-0.11.2-r1.ebuild +++ b/net-analyzer/fail2ban/fail2ban-0.11.2-r1.ebuild @@ -40,7 +40,8 @@ DOCS=( ChangeLog DEVELOP README.md THANKS TODO doc/run-rootless.txt ) PATCHES=( "${FILESDIR}"/${P}-fix-tests-for-2021.patch "${FILESDIR}"/${PN}-0.11.2-adjust-apache-logs-paths.patch - "${FILESDIR}"/${PN}-0.11.2-fix-2to3-usage.patch + "${FILESDIR}"/${P}-fix-2to3-usage.patch + "${FILESDIR}"/${P}-fix-systemd-test.patch ) python_prepare_all() { diff --git a/net-analyzer/fail2ban/files/fail2ban-0.11.2-fix-systemd-test.patch b/net-analyzer/fail2ban/files/fail2ban-0.11.2-fix-systemd-test.patch new file mode 100644 index 000..865ce19912b --- /dev/null +++ b/net-analyzer/fail2ban/files/fail2ban-0.11.2-fix-systemd-test.patch @@ -0,0 +1,22 @@ +https://github.com/fail2ban/fail2ban/pull/3037 +https://bugs.gentoo.org/794931 + +From: Mike Gilbert +Date: Tue, 8 Jun 2021 17:48:12 -0400 +Subject: [PATCH] tests: improve detection of readable systemd journal + +Look for system.journal in journal sub-directory. +Add -readable to the find command. + +Bug: https://bugs.gentoo.org/794931 +--- a/fail2ban/tests/filtertestcase.py b/fail2ban/tests/filtertestcase.py +@@ -1396,7 +1396,7 @@ def _getRuntimeJournal(self): + # check one at at time until the first hit + for systemd_var in 'system-runtime-logs', 'system-state-logs': + tmp = Utils.executeCmd( +- 'find "$(systemd-path %s)" -name system.journal' % systemd_var, ++ 'find "$(systemd-path %s)/journal" -name system.journal -readable' % systemd_var, + timeout=10, shell=True, output=True + ) + self.assertTrue(tmp)
[gentoo-commits] repo/gentoo:master commit in: net-analyzer/fail2ban/, net-analyzer/fail2ban/files/
commit: 5e75f94661d665527b763aa8a5a85e4c7f45a130 Author: Sam James gentoo org> AuthorDate: Sun Oct 24 03:37:21 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 03:38:58 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e75f946 net-analyzer/fail2ban: fix install with newer setuptools (2to3 usage) Closes: https://bugs.gentoo.org/818733 Signed-off-by: Sam James gentoo.org> net-analyzer/fail2ban/fail2ban-0.11.2-r1.ebuild| 1 + .../files/fail2ban-0.11.2-fix-2to3-usage.patch | 109 + 2 files changed, 110 insertions(+) diff --git a/net-analyzer/fail2ban/fail2ban-0.11.2-r1.ebuild b/net-analyzer/fail2ban/fail2ban-0.11.2-r1.ebuild index d2a4540b0ea..3e667a2f573 100644 --- a/net-analyzer/fail2ban/fail2ban-0.11.2-r1.ebuild +++ b/net-analyzer/fail2ban/fail2ban-0.11.2-r1.ebuild @@ -40,6 +40,7 @@ DOCS=( ChangeLog DEVELOP README.md THANKS TODO doc/run-rootless.txt ) PATCHES=( "${FILESDIR}"/${P}-fix-tests-for-2021.patch "${FILESDIR}"/${PN}-0.11.2-adjust-apache-logs-paths.patch + "${FILESDIR}"/${PN}-0.11.2-fix-2to3-usage.patch ) python_prepare_all() { diff --git a/net-analyzer/fail2ban/files/fail2ban-0.11.2-fix-2to3-usage.patch b/net-analyzer/fail2ban/files/fail2ban-0.11.2-fix-2to3-usage.patch new file mode 100644 index 000..9098d096e8a --- /dev/null +++ b/net-analyzer/fail2ban/files/fail2ban-0.11.2-fix-2to3-usage.patch @@ -0,0 +1,109 @@ +https://github.com/fail2ban/fail2ban/commit/7f22c4873aed3b5ffce0953f079f3c1977297c9a +https://github.com/fail2ban/fail2ban/commit/5ac303df8a171f748330d4c645ccbf1c2c7f3497 +https://github.com/fail2ban/fail2ban/commit/d6b884f3b72b8a42b21da863836569ef6836c2ea +https://github.com/fail2ban/fail2ban/issues/3098 +https://bugs.gentoo.org/818733 + +From: "Sergey G. Brester" +Date: Sun, 19 Sep 2021 18:36:02 +0200 +Subject: [PATCH] remove 2to3 in setup (should be called outside before setup) + +--- a/setup.py b/setup.py +@@ -39,14 +39,6 @@ + if setuptools is None: + from distutils.command.install import install + from distutils.command.install_scripts import install_scripts +-try: +- # python 3.x +- from distutils.command.build_py import build_py_2to3 +- from distutils.command.build_scripts import build_scripts_2to3 +- _2to3 = True +-except ImportError: +- # python 2.x +- _2to3 = False + + import os + from os.path import isfile, join, isdir, realpath + +From: sebres +Date: Sun, 19 Sep 2021 18:49:18 +0200 +Subject: [PATCH] fix gh-3098: build fails with error in fail2ban setup + command: use_2to3 is invalid (setuptools 58+) + +--- a/setup.py b/setup.py +@@ -48,7 +48,7 @@ + from glob import glob + + from fail2ban.setup import updatePyExec +- ++from fail2ban.version import version + + source_dir = os.path.realpath(os.path.dirname( + # __file__ seems to be overwritten sometimes on some python versions (e.g. bug of 2.6 by running under cProfile, etc.): +@@ -112,22 +112,12 @@ def update_scripts(self, dry_run=False): + # Wrapper to specify fail2ban own options: + class install_command_f2b(install): + user_options = install.user_options + [ +- ('disable-2to3', None, 'Specify to deactivate 2to3, e.g. if the install runs from fail2ban test-cases.'), + ('without-tests', None, 'without tests files installation'), + ] + def initialize_options(self): +- self.disable_2to3 = None + self.without_tests = not with_tests + install.initialize_options(self) + def finalize_options(self): +- global _2to3 +- ## in the test cases 2to3 should be already done (fail2ban-2to3): +- if self.disable_2to3: +- _2to3 = False +- if _2to3: +- cmdclass = self.distribution.cmdclass +- cmdclass['build_py'] = build_py_2to3 +- cmdclass['build_scripts'] = build_scripts_2to3 + if self.without_tests: + self.distribution.scripts.remove('bin/fail2ban-testcases') + +@@ -178,7 +168,6 @@ def run(self): + if setuptools: + setup_extra = { + 'test_suite': "fail2ban.tests.utils.gatherTests", +- 'use_2to3': True, + } + else: + setup_extra = {} +@@ -202,9 +191,6 @@ def run(self): + ('/usr/share/doc/fail2ban', doc_files) + ) + +-# Get version number, avoiding importing fail2ban. +-# This is due to tests not functioning for python3 as 2to3 takes place later +-exec(open(join("fail2ban", "version.py")).read()) + + setup( + name = "fail2ban", +From: sebres +Date: Sun, 19 Sep 2021 18:52:34 +0200 +Subject: [PATCH] amend to fix gh-3098: no option `--disable-2to3` anymore + +--- a/fail2ban/tests/misctestcase.py b/fail2ban/tests/misctestcase.py +@@ -111,7 +111,7 @@ def testSetupInstallDryRun(self): + supdbgout = ' >/dev
[gentoo-commits] repo/gentoo:master commit in: x11-drivers/nvidia-drivers/
commit: 25e0e3ac7ab9febd7ead4bec0e79e6cd7003f38c Author: Ionen Wolkens gentoo org> AuthorDate: Sun Oct 24 03:08:29 2021 + Commit: Ionen Wolkens gentoo org> CommitDate: Sun Oct 24 03:27:44 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25e0e3ac x11-drivers/nvidia-drivers: suggest disabling CONFIG_DRM_SIMPLEDRM Mostly as a precaution, being set may not always be an issue. New in kernel 5.14 and may conflict with nvidia's mode switching if used with fbdev emulation. Previously benign but fixes have caused to become active between kernel 5.14.9 and 5.14.14. Will hopefully revisit this in the future given this is meant to replace efifb/simplefb at some point. Will notably keep an eye on what gentoo-kernel-bin's config upstream does, currently kept disabled. Done in <5.14 ebuilds as well to ensure this doesn't get lost if these branches gain 5.14 compat. Thanks-to: Abulhair Saparov Closes: https://bugs.gentoo.org/819234 Signed-off-by: Ionen Wolkens gentoo.org> x11-drivers/nvidia-drivers/nvidia-drivers-390.144.ebuild | 1 + x11-drivers/nvidia-drivers/nvidia-drivers-460.91.03.ebuild| 1 + x11-drivers/nvidia-drivers/nvidia-drivers-470.62.05.ebuild| 1 + x11-drivers/nvidia-drivers/nvidia-drivers-470.63.01.ebuild| 1 + x11-drivers/nvidia-drivers/nvidia-drivers-470.74.ebuild | 1 + x11-drivers/nvidia-drivers/nvidia-drivers-495.29.05-r1.ebuild | 1 + 6 files changed, 6 insertions(+) diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-390.144.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-390.144.ebuild index f85a6e3a7a1..6dd404a7538 100644 --- a/x11-drivers/nvidia-drivers/nvidia-drivers-390.144.ebuild +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-390.144.ebuild @@ -90,6 +90,7 @@ pkg_setup() { ~DRM_KMS_HELPER ~SYSVIPC ~!AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT + ~!DRM_SIMPLEDRM ~!LOCKDEP !DEBUG_MUTEXES" local ERROR_DRM_KMS_HELPER="CONFIG_DRM_KMS_HELPER: is not set but needed for Xorg auto-detection diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-460.91.03.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-460.91.03.ebuild index 29ce7c8d9dd..22766ad817b 100644 --- a/x11-drivers/nvidia-drivers/nvidia-drivers-460.91.03.ebuild +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-460.91.03.ebuild @@ -88,6 +88,7 @@ pkg_setup() { PROC_FS ~DRM_KMS_HELPER ~SYSVIPC + ~!DRM_SIMPLEDRM ~!LOCKDEP !DEBUG_MUTEXES" local ERROR_DRM_KMS_HELPER="CONFIG_DRM_KMS_HELPER: is not set but needed for Xorg auto-detection diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-470.62.05.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-470.62.05.ebuild index 406ac0e96fc..339b76113b7 100644 --- a/x11-drivers/nvidia-drivers/nvidia-drivers-470.62.05.ebuild +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-470.62.05.ebuild @@ -93,6 +93,7 @@ pkg_setup() { PROC_FS ~DRM_KMS_HELPER ~SYSVIPC + ~!DRM_SIMPLEDRM ~!LOCKDEP ~!SLUB_DEBUG_ON !DEBUG_MUTEXES" diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-470.63.01.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-470.63.01.ebuild index c4d23b1df07..75fbefe3ae1 100644 --- a/x11-drivers/nvidia-drivers/nvidia-drivers-470.63.01.ebuild +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-470.63.01.ebuild @@ -92,6 +92,7 @@ pkg_setup() { PROC_FS ~DRM_KMS_HELPER ~SYSVIPC + ~!DRM_SIMPLEDRM ~!LOCKDEP ~!SLUB_DEBUG_ON !DEBUG_MUTEXES" diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-470.74.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-470.74.ebuild index 9d38a366a0c..4ed640db860 100644 --- a/x11-drivers/nvidia-drivers/nvidia-drivers-470.74.ebuild +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-470.74.ebuild @@ -93,6 +93,7 @@ pkg_setup() { PROC_FS ~DRM_KMS_HELPER ~SYSVIPC + ~!DRM_SIMPLEDRM ~!LOCKDEP ~!SLUB_DEBUG_ON !DEBUG_MUTEXES" diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-495.29.05-r1.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-495.29.05-r1.ebuild index a6ff5fae1f5..24c586d62ca 100644 --- a/x11-drivers/nvidia-drivers/nvidia-drivers-495.29.05-r1.ebuild +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-495.29.05-r1.ebuild @@ -89,6 +89,7 @@ pkg_setup() { PROC_FS ~DRM_KMS_HELPER ~SYSVIPC + ~!DRM_SIMPLEDRM ~!LOCKDEP ~!SLUB_DEBUG_ON !DEBUG_MUTEXES"
[gentoo-commits] repo/gentoo:master commit in: app-admin/consul-replicate/
commit: 7fa2f424a5b349f7f5db48a75b08ffb6afb63c3b Author: Zac Medico gentoo org> AuthorDate: Sun Oct 24 03:21:26 2021 + Commit: Zac Medico gentoo org> CommitDate: Sun Oct 24 03:23:34 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fa2f424 app-admin/consul-replicate: Bump to EAPI 7 Closes: https://bugs.gentoo.org/819705 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Zac Medico gentoo.org> app-admin/consul-replicate/consul-replicate-0.2.0.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app-admin/consul-replicate/consul-replicate-0.2.0.ebuild b/app-admin/consul-replicate/consul-replicate-0.2.0.ebuild index 1bfc6d258c6..1a13d00c27d 100644 --- a/app-admin/consul-replicate/consul-replicate-0.2.0.ebuild +++ b/app-admin/consul-replicate/consul-replicate-0.2.0.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 inherit golang-base @@ -79,6 +79,7 @@ src_prepare() { -e 's|t.Errorf("expected %q to be %q", config.Prefixes\[0\], expected)|t.Errorf("expected %v to be %v", config.Prefixes[0], expected)|' \ -e 's|t.Errorf("expected %q to be %q", value.Data, data)|t.Errorf("expected %v to be %v", value.Data, data)|' \ -i cli_test.go runner_test.go || die + default } src_compile() {
[gentoo-commits] repo/gentoo:master commit in: app-misc/wcd/files/, app-misc/wcd/
commit: 784d85246bab32bfd9491dd8e281f7f9c6100395 Author: Matthew White inventati org> AuthorDate: Sat Oct 23 17:29:44 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 03:21:41 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=784d8524 app-misc/wcd: fix docs installed into unexpected path Install docs into /usr/share/doc/wcd-${PVR}. Closes: https://bugs.gentoo.org/802696 Package-Manager: Portage-3.0.20-r6, Repoman-3.0.3-r1 Signed-off-by: Matteo Bianco inventati.org> Closes: https://github.com/gentoo/gentoo/pull/22685 Signed-off-by: Sam James gentoo.org> app-misc/wcd/files/wcd-6.0.3-doc-path.patch | 14 + app-misc/wcd/wcd-6.0.3-r2.ebuild| 47 + 2 files changed, 61 insertions(+) diff --git a/app-misc/wcd/files/wcd-6.0.3-doc-path.patch b/app-misc/wcd/files/wcd-6.0.3-doc-path.patch new file mode 100644 index 000..16e850a8baa --- /dev/null +++ b/app-misc/wcd/files/wcd-6.0.3-doc-path.patch @@ -0,0 +1,14 @@ +Install docs into /usr/share/doc/wcd-${PVR}. + +diff -Nuar a/src/Makefile b/src/Makefile +--- a/src/Makefile 2019-08-14 10:07:15.0 + b/src/Makefile 2021-10-23 17:10:17.0 + +@@ -61,7 +61,7 @@ + datarootdir = $(prefix)/share + datadir = $(datarootdir) + +-docsubdir = $(PACKAGE)-$(VERSION) ++docsubdir = $(PACKAGE)-$(PVR) + docdir = $(datarootdir)/doc/$(docsubdir) + localedir = $(datarootdir)/locale + sysconfdir = /etc diff --git a/app-misc/wcd/wcd-6.0.3-r2.ebuild b/app-misc/wcd/wcd-6.0.3-r2.ebuild new file mode 100644 index 000..7c052415034 --- /dev/null +++ b/app-misc/wcd/wcd-6.0.3-r2.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="Wherever Change Directory" +HOMEPAGE="http://waterlan.home.xs4all.nl/#WCD_ANCHOR"; +SRC_URI="http://waterlan.home.xs4all.nl/${PN}/${P}.tar.gz"; + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux" +IUSE="nls unicode" + +CDEPEND=" + sys-libs/ncurses:=[unicode(+)?] + unicode? ( dev-libs/libunistring:= )" +DEPEND="${CDEPEND}" +BDEPEND=" + app-text/ghostscript-gpl + virtual/pkgconfig +" +RDEPEND="${CDEPEND}" + +S="${WORKDIR}/${P}/src" + +src_prepare() { + eapply -p2 "${FILESDIR}"/${PN}-6.0.2-gentoo.patch + eapply -p2 "${FILESDIR}"/${P}-doc-path.patch + eapply_user + tc-export CC PKG_CONFIG +} + +src_compile() { + local mycompile="LFS=1" + use nls || mycompile+=" ENABLE_NLS=" + use unicode && mycompile+=" UCS=1 UNINORM=1" + emake ${mycompile} +} + +src_install() { + local DOCS=( ../README.txt ) + default + emake DESTDIR="${D}" DOTWCD=1 install-profile sysconfdir="/etc" +}
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Sys-CpuLoad/
commit: 6d8957bc1dcb296db5f1c509f26c0755a3cb4fda Author: Sam James gentoo org> AuthorDate: Sun Oct 24 03:19:49 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 03:19:49 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d8957bc dev-perl/Sys-CpuLoad: add missing dependency Closes: https://bugs.gentoo.org/819789 Bug: https://bugs.gentoo.org/807790 Signed-off-by: Sam James gentoo.org> .../{Sys-CpuLoad-0.310.0-r1.ebuild => Sys-CpuLoad-0.310.0-r2.ebuild} | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-perl/Sys-CpuLoad/Sys-CpuLoad-0.310.0-r1.ebuild b/dev-perl/Sys-CpuLoad/Sys-CpuLoad-0.310.0-r2.ebuild similarity index 97% rename from dev-perl/Sys-CpuLoad/Sys-CpuLoad-0.310.0-r1.ebuild rename to dev-perl/Sys-CpuLoad/Sys-CpuLoad-0.310.0-r2.ebuild index ff99fc2c87b..98b699b08ba 100644 --- a/dev-perl/Sys-CpuLoad/Sys-CpuLoad-0.310.0-r1.ebuild +++ b/dev-perl/Sys-CpuLoad/Sys-CpuLoad-0.310.0-r2.ebuild @@ -14,6 +14,7 @@ KEYWORDS="~amd64 ~x86" RDEPEND=" virtual/perl-Exporter dev-perl/File-Which + dev-perl/IPC-Run3 virtual/perl-IO virtual/perl-XSLoader virtual/perl-parent
[gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/highway/
commit: 0385d08f268ce004cac57486d5326e908d56e39a Author: Alessandro Barbieri gmail com> AuthorDate: Sun Oct 24 03:02:06 2021 + Commit: Alessandro Barbieri gmail com> CommitDate: Sun Oct 24 03:02:06 2021 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0385d08f dev-cpp/highway: install docs Signed-off-by: Alessandro Barbieri gmail.com> dev-cpp/highway/highway-0.14.2.ebuild | 5 + dev-cpp/highway/highway-.ebuild | 5 + 2 files changed, 10 insertions(+) diff --git a/dev-cpp/highway/highway-0.14.2.ebuild b/dev-cpp/highway/highway-0.14.2.ebuild index 683729d58..46b5278c3 100644 --- a/dev-cpp/highway/highway-0.14.2.ebuild +++ b/dev-cpp/highway/highway-0.14.2.ebuild @@ -35,3 +35,8 @@ src_configure() { cmake_src_configure } + +src_install() { + dodoc g3doc/* + cmake_src_install +} diff --git a/dev-cpp/highway/highway-.ebuild b/dev-cpp/highway/highway-.ebuild index 683729d58..46b5278c3 100644 --- a/dev-cpp/highway/highway-.ebuild +++ b/dev-cpp/highway/highway-.ebuild @@ -35,3 +35,8 @@ src_configure() { cmake_src_configure } + +src_install() { + dodoc g3doc/* + cmake_src_install +}
[gentoo-commits] repo/gentoo:master commit in: dev-python/ujson/
commit: 074b630c05afd196fd662c520c2ecf1db30ac63b Author: Sam James gentoo org> AuthorDate: Sun Oct 24 03:01:40 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 03:01:40 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=074b630c dev-python/ujson: Stabilize 4.2.0 x86, #819879 Signed-off-by: Sam James gentoo.org> dev-python/ujson/ujson-4.2.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/ujson/ujson-4.2.0.ebuild b/dev-python/ujson/ujson-4.2.0.ebuild index 6f68609d587..5573925c5eb 100644 --- a/dev-python/ujson/ujson-4.2.0.ebuild +++ b/dev-python/ujson/ujson-4.2.0.ebuild @@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux" BDEPEND=" dev-python/setuptools_scm[${PYTHON_USEDEP}]
[gentoo-commits] repo/gentoo:master commit in: app-portage/emerge-delta-webrsync/
commit: 6eea6cc464a84d7df1b5de99b06054ddef3fc3c8 Author: Zac Medico gentoo org> AuthorDate: Sun Oct 24 02:51:29 2021 + Commit: Zac Medico gentoo org> CommitDate: Sun Oct 24 02:54:47 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6eea6cc4 app-portage/emerge-delta-webrsync: Bump to EAPI 7 Closes: https://bugs.gentoo.org/819744 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Zac Medico gentoo.org> app-portage/emerge-delta-webrsync/emerge-delta-webrsync-3.7.6.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-portage/emerge-delta-webrsync/emerge-delta-webrsync-3.7.6.ebuild b/app-portage/emerge-delta-webrsync/emerge-delta-webrsync-3.7.6.ebuild index 91e756876aa..3eb15e1fb1a 100644 --- a/app-portage/emerge-delta-webrsync/emerge-delta-webrsync-3.7.6.ebuild +++ b/app-portage/emerge-delta-webrsync/emerge-delta-webrsync-3.7.6.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 DESCRIPTION="emerge-webrsync using patches to minimize bandwidth" HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage"; SRC_URI="https://gitweb.gentoo.org/proj/portage.git/plain/misc/emerge-delta-webrsync?id=829623eadbeda97d37c0ea50dc5f08f19bf4561b -> ${P}"
[gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/highway/, dev-cpp/highway/files/
commit: 98811d8232be969c0fb7003456cabcd3cd231f57 Author: Alessandro Barbieri gmail com> AuthorDate: Sun Oct 24 02:55:49 2021 + Commit: Alessandro Barbieri gmail com> CommitDate: Sun Oct 24 02:56:44 2021 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=98811d82 dev-cpp/highway: add versioned ebuild, EAPI 8 Signed-off-by: Alessandro Barbieri gmail.com> dev-cpp/highway/Manifest| 1 + .../highway/files/highway-shared-libraries.patch| 21 + .../{highway-.ebuild => highway-0.14.2.ebuild} | 16 +--- dev-cpp/highway/highway-.ebuild | 16 +--- 4 files changed, 40 insertions(+), 14 deletions(-) diff --git a/dev-cpp/highway/Manifest b/dev-cpp/highway/Manifest new file mode 100644 index 0..1512a640d --- /dev/null +++ b/dev-cpp/highway/Manifest @@ -0,0 +1 @@ +DIST highway-0.14.2.tar.gz 1545892 BLAKE2B c19d040ea7bf6d5ee0ff87213f36bfe77759cc4cec514b972379490dbac5e8d55f99490b998f73133ca0ba3b34a98f2684b85206ae32d655aa574aeaabeaeb27 SHA512 fc1a35463c95c45b646c53f91a9996112726de1d588dcd4d25a7d366840f704ad9a4c0bb6e0a001e929409f04aad6922cbffcf93774a0c360aff875956c7cc8d diff --git a/dev-cpp/highway/files/highway-shared-libraries.patch b/dev-cpp/highway/files/highway-shared-libraries.patch new file mode 100644 index 0..28149eba8 --- /dev/null +++ b/dev-cpp/highway/files/highway-shared-libraries.patch @@ -0,0 +1,21 @@ +--- a/CMakeLists.txt 2021-10-24 04:46:57.475685128 +0200 b/CMakeLists.txt 2021-10-24 04:45:56.218467838 +0200 +@@ -182,15 +182,16 @@ + + endif() # !MSVC + +-add_library(hwy STATIC ${HWY_SOURCES}) ++add_library(hwy SHARED ${HWY_SOURCES}) + target_compile_options(hwy PRIVATE ${HWY_FLAGS}) + set_property(TARGET hwy PROPERTY POSITION_INDEPENDENT_CODE ON) + target_include_directories(hwy PUBLIC ${CMAKE_CURRENT_LIST_DIR}) + +-add_library(hwy_contrib STATIC ${HWY_CONTRIB_SOURCES}) ++add_library(hwy_contrib SHARED ${HWY_CONTRIB_SOURCES}) + target_compile_options(hwy_contrib PRIVATE ${HWY_FLAGS}) + set_property(TARGET hwy_contrib PROPERTY POSITION_INDEPENDENT_CODE ON) + target_include_directories(hwy_contrib PUBLIC ${CMAKE_CURRENT_LIST_DIR}) ++target_link_libraries(hwy_contrib hwy) + + # hwy_list_targets + # Generate a tool to print the compiled-in targets as defined by the current diff --git a/dev-cpp/highway/highway-.ebuild b/dev-cpp/highway/highway-0.14.2.ebuild similarity index 69% copy from dev-cpp/highway/highway-.ebuild copy to dev-cpp/highway/highway-0.14.2.ebuild index 8d96668d7..683729d58 100644 --- a/dev-cpp/highway/highway-.ebuild +++ b/dev-cpp/highway/highway-0.14.2.ebuild @@ -1,7 +1,7 @@ # Copyright 2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="7" +EAPI=8 inherit cmake @@ -18,18 +18,20 @@ fi LICENSE="Apache-2.0" SLOT="0" -IUSE="" +IUSE="test" -DEPEND="" +DEPEND="test? ( dev-cpp/gtest )" -BDEPEND="" - -RDEPEND="${DEPEND}" +PATCHES=( "${FILESDIR}/${PN}-shared-libraries.patch" ) +RESTRICT="!test? ( test )" src_configure() { local mycmakeargs=( - -DBUILD_TESTING=OFF + -DBUILD_TESTING=$(usex test) + -DHWY_WARNINGS_ARE_ERRORS=OFF ) + use test && mycmakeargs+=( "-DHWY_SYSTEM_GTEST=ON" ) + cmake_src_configure } diff --git a/dev-cpp/highway/highway-.ebuild b/dev-cpp/highway/highway-.ebuild index 8d96668d7..683729d58 100644 --- a/dev-cpp/highway/highway-.ebuild +++ b/dev-cpp/highway/highway-.ebuild @@ -1,7 +1,7 @@ # Copyright 2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="7" +EAPI=8 inherit cmake @@ -18,18 +18,20 @@ fi LICENSE="Apache-2.0" SLOT="0" -IUSE="" +IUSE="test" -DEPEND="" +DEPEND="test? ( dev-cpp/gtest )" -BDEPEND="" - -RDEPEND="${DEPEND}" +PATCHES=( "${FILESDIR}/${PN}-shared-libraries.patch" ) +RESTRICT="!test? ( test )" src_configure() { local mycmakeargs=( - -DBUILD_TESTING=OFF + -DBUILD_TESTING=$(usex test) + -DHWY_WARNINGS_ARE_ERRORS=OFF ) + use test && mycmakeargs+=( "-DHWY_SYSTEM_GTEST=ON" ) + cmake_src_configure }
[gentoo-commits] repo/proj/guru:dev commit in: /
commit: 72561b9a1af1f2c3b3f12ee3f191c0e6977b10c5 Author: Alessandro Barbieri gmail com> AuthorDate: Sun Oct 24 02:20:49 2021 + Commit: Alessandro Barbieri gmail com> CommitDate: Sun Oct 24 02:56:44 2021 + URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=72561b9a TODO.md: add libjxl dependencies Signed-off-by: Alessandro Barbieri gmail.com> TODO.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/TODO.md b/TODO.md index d44259608..e9a2d7906 100644 --- a/TODO.md +++ b/TODO.md @@ -29,6 +29,7 @@ Name | Buildsystem | Category | User | RFH [tau](http://www.cs.uoregon.edu/research/tau/home.php) | make | tools | Alessandro-Barbieri | no [plasma](https://github.com/NLAFET/plasma) | make | science | Alessandro-Barbieri | yes [imb](https://software.intel.com/content/www/us/en/develop/articles/intel-mpi-benchmarks.html) | make | cluster | Alessandro-Barbieri | no +[lodepng](https://github.com/lvandeve/lodepng) | make | multimedia | Alessandro-Barbieri | no [dimemas](https://github.com/bsc-performance-tools/dimemas) | autotools | cluster | Alessandro-Barbieri | no [argobots](https://www.argobots.org/) | autotools | devel | Alessandro-Barbieri | no [mochi-ssg](https://github.com/mochi-hpc/mochi-ssg) | autotools | cluster | Alessandro-Barbieri | no @@ -74,6 +75,8 @@ Name | Buildsystem | Category | User | RFH [aerodyn](https://github.com/OpenFAST/openfast/tree/main/modules/aerodyn) | cmake | science | Alessandro-Barbieri | no [llvm-ompss2](https://github.com/bsc-pm/llvm) | cmake | cluster | Alessandro-Barbieri | yes [pagmo](https://github.com/bsc-pm/llvm) | cmake | science | Alessandro-Barbieri | no +[sjpeg](https://github.com/webmproject/sjpeg) | cmake | multimedia | Alessandro-Barbieri | no +[skcms](https://skia.googlesource.com/skcms/) | bazel | multimedia | Alessandro-Barbieri | no [enarx](https://enarx.dev/) | cargo | util | Alessandro-Barbieri | no [airshipper](https://gitlab.com/veloren/airshipper) | cargo | game | | [open-match](https://github.com/googleforgames/open-match) | go | devel | Alessandro-Barbieri | yes
[gentoo-commits] repo/gentoo:master commit in: dev-python/tox/
commit: 595d0e624139106512cf6a843b828f0900d497c8 Author: Sam James gentoo org> AuthorDate: Sun Oct 24 02:35:36 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 02:35:51 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=595d0e62 dev-python/tox: skip test dependent on stdout (spinner wheel) Signed-off-by: Sam James gentoo.org> dev-python/tox/tox-3.24.4.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-python/tox/tox-3.24.4.ebuild b/dev-python/tox/tox-3.24.4.ebuild index 22c313e8a6e..f997c636e7b 100644 --- a/dev-python/tox/tox-3.24.4.ebuild +++ b/dev-python/tox/tox-3.24.4.ebuild @@ -53,6 +53,9 @@ python_test() { # expects python2 to exist tests/unit/interpreters/test_interpreters.py::test_tox_get_python_executable + + # fragile and relies on checking stdout + tests/unit/util/test_spinner.py::test_spinner_progress ) [[ ${EPYTHON} != pypy3 ]] && EPYTEST_DESELECT+=(
[gentoo-commits] repo/gentoo:master commit in: dev-go/go-eapache-queue/
commit: 40ed2a9f90b40499396ebb21abf2fac371ba2f3b Author: Zac Medico gentoo org> AuthorDate: Sun Oct 24 02:24:05 2021 + Commit: Zac Medico gentoo org> CommitDate: Sun Oct 24 02:30:41 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40ed2a9f dev-go/go-eapache-queue: Bump to EAPI 7 Closes: https://bugs.gentoo.org/819654 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Zac Medico gentoo.org> dev-go/go-eapache-queue/go-eapache-queue-1.0.2.ebuild | 4 ++-- dev-go/go-eapache-queue/go-eapache-queue-.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-go/go-eapache-queue/go-eapache-queue-1.0.2.ebuild b/dev-go/go-eapache-queue/go-eapache-queue-1.0.2.ebuild index ec9ffb902a8..5236c83846f 100644 --- a/dev-go/go-eapache-queue/go-eapache-queue-1.0.2.ebuild +++ b/dev-go/go-eapache-queue/go-eapache-queue-1.0.2.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=5 +EAPI=7 EGO_SRC=github.com/eapache/queue EGO_PN=${EGO_SRC}/... diff --git a/dev-go/go-eapache-queue/go-eapache-queue-.ebuild b/dev-go/go-eapache-queue/go-eapache-queue-.ebuild index ec9ffb902a8..5236c83846f 100644 --- a/dev-go/go-eapache-queue/go-eapache-queue-.ebuild +++ b/dev-go/go-eapache-queue/go-eapache-queue-.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=5 +EAPI=7 EGO_SRC=github.com/eapache/queue EGO_PN=${EGO_SRC}/...
[gentoo-commits] repo/gentoo:master commit in: dev-python/intreehooks/
commit: bbe2de6c642da359da527d74378adae2878f25e1 Author: Sam James gentoo org> AuthorDate: Sun Oct 24 02:27:13 2021 + Commit: Sam James gentoo org> CommitDate: Sun Oct 24 02:27:13 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbe2de6c dev-python/intreehooks: Stabilize 1.0 amd64, #819867 Signed-off-by: Sam James gentoo.org> dev-python/intreehooks/intreehooks-1.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/intreehooks/intreehooks-1.0.ebuild b/dev-python/intreehooks/intreehooks-1.0.ebuild index f2fa7cbecf3..15d8de162b3 100644 --- a/dev-python/intreehooks/intreehooks-1.0.ebuild +++ b/dev-python/intreehooks/intreehooks-1.0.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 sparc ~x86" +KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 sparc ~x86" IUSE="examples" RDEPEND="