[gentoo-commits] repo/gentoo:master commit in: dev-ruby/faraday/
commit: a44e7a89ea2a0978256ec0ec93169ba7025dae5c Author: Hans de Graaff gentoo org> AuthorDate: Sun Dec 9 07:51:56 2018 + Commit: Hans de Graaff gentoo org> CommitDate: Sun Dec 9 07:51:56 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a44e7a89 dev-ruby/faraday: add 0.15.4 Signed-off-by: Hans de Graaff gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 dev-ruby/faraday/Manifest | 1 + dev-ruby/faraday/faraday-0.15.4.ebuild | 71 ++ 2 files changed, 72 insertions(+) diff --git a/dev-ruby/faraday/Manifest b/dev-ruby/faraday/Manifest index 45c45d960f2..aadaf6a2adc 100644 --- a/dev-ruby/faraday/Manifest +++ b/dev-ruby/faraday/Manifest @@ -1,3 +1,4 @@ DIST faraday-0.12.2.tar.gz 62809 BLAKE2B 4dcd60192df36e1b9766eab3bcbacd729239b0e09d9e82a73d825c750fdbcfae8161cf803f078b841236a5e18b1849b4cdc34e6adebb9eaea0f0442cd65b2e74 SHA512 966fc419d529a8bba5caa6d3932ee94f7b248110edc880b532860c24abd70cb50182e40b94b4143e26575c6db7ce046fa71ac0d25010385d7f0c3dda87f39439 DIST faraday-0.14.0.tar.gz 65105 BLAKE2B bf5101083bd828e2ea98dcd487c7c082f8b2d2eb4d03ac7ad04e1873666db9e2cec1e6eb9887364874ea5f32d0313019d1eada5e05e25e0415bdd5aa2bcfca97 SHA512 25bba07e76a2a8bf02b0c81c045329e72d5911a2aacae56611db33dc25c89bd48bb1b4de9b20c6edc1514d3ceae8b06fca6076c85580533047c222cb30ef8dc7 DIST faraday-0.15.3.tar.gz 67065 BLAKE2B 7425fb885cb26394ee91098264b5e4e3038a68855b9a55b03a39faca18d4e0cd516fe447b2312538692229bb15df091317ee36aad762937b46c72e16bb19cc8a SHA512 cfc59c44481e4be27504d02bfcbdc3a3783d15940487e72aaba136f5c456d74be6cad5a686e74eed1ad216fbb58db197d04015c2d168abbbaf899c4f855acdbd +DIST faraday-0.15.4.tar.gz 67196 BLAKE2B 4e64e834639a6e59c028ee19d72f51ea72fd6b3be5fc63b6fbbec25716dbd735e97d8a05a210dd1a57b740a1dcd76d30a39b59c7034cab8a531f8856dc132b14 SHA512 6d1a8c66bd6e2ce417ce504bf20ea89cf24c46c2b48491aba110d04f273448e0e8f0cf94a0dd5356a13876aa030d41bbfb80b95365ea4b212fd79d8db624128f diff --git a/dev-ruby/faraday/faraday-0.15.4.ebuild b/dev-ruby/faraday/faraday-0.15.4.ebuild new file mode 100644 index 000..6ea5115a095 --- /dev/null +++ b/dev-ruby/faraday/faraday-0.15.4.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +USE_RUBY="ruby23 ruby24 ruby25" + +RUBY_FAKEGEM_TASK_TEST="test" +RUBY_FAKEGEM_TASK_DOC="" + +RUBY_FAKEGEM_EXTRADOC="README.md" + +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" + +inherit ruby-fakegem eutils + +DESCRIPTION="HTTP/REST API client library with pluggable components" +HOMEPAGE="https://github.com/lostisland/faraday"; +SRC_URI="https://github.com/lostisland/faraday/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" +IUSE="" + +DEPEND+=" test? ( sys-process/lsof )" + +ruby_add_rdepend ">=dev-ruby/multipart-post-1.2.0 =dev-ruby/test-unit-2.4 + dev-ruby/httpclient + dev-ruby/rack-test + dev-ruby/sinatra + dev-ruby/net-http-persistent >=dev-ruby/connection_pool-2.2.2 + dev-ruby/patron + )" + +all_ruby_prepare() { + # Remove bundler support. + rm Gemfile || die + sed -i -e '/[Bb]undler/d ; 1irequire "yaml"' Rakefile test/helper.rb || die + sed -i -e '/bundler/,/^fi/ s:^:#:' script/test || die + + # Remove simplecov and coveralls support, not needed to run tests. + sed -i -e '/simplecov/,/^end/ s:^:#:' \ + test/helper.rb || die + + # Remove tests for adapters that are not packaged for Gentoo. + rm test/adapters/em_http_test.rb test/adapters/em_synchrony_test.rb test/adapters/excon_test.rb test/adapters/typhoeus_test.rb || die + + # Remove tests against live services + sed -i -e '/test_dynamic_no_proxy/askip "live network test"' test/connection_test.rb || die + + # The proxy server is already killed, may be OS X vs Linux issue. + sed -i -e '138 s/^/#/' script/test || die + + sed -i -e '/git ls-files/ s:^:#:' ${RUBY_FAKEGEM_GEMSPEC} || die +} + +each_ruby_prepare() { + # Make sure the test scripts use the right ruby interpreter + sed -i -e 's:ruby:'${RUBY}':' script/* || die +} + +each_ruby_test() { + MT_NO_PLUGINS=true each_fakegem_test + + # Sleep some time to allow the sinatra test server to die + einfo "Waiting for test server to stop" + sleep 10 +}
[gentoo-commits] repo/gentoo:master commit in: profiles/
commit: 3d4804dc3997c99f3592c4e6708e642431b84b21 Author: Hans de Graaff gentoo org> AuthorDate: Sun Dec 9 07:55:30 2018 + Commit: Hans de Graaff gentoo org> CommitDate: Sun Dec 9 07:55:30 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d4804dc profiles/package.mask: mask dev-ruby/hike for removal Signed-off-by: Hans de Graaff gentoo.org> profiles/package.mask | 5 + 1 file changed, 5 insertions(+) diff --git a/profiles/package.mask b/profiles/package.mask index c065ba44123..0c1b68cfcaf 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -29,6 +29,11 @@ #--- END OF EXAMPLES --- +# Hans de Graaff (9 Dec 2018) +# Old component for Rails that is no longer used and no longer +# maintained upstream. Masked for removal in 30 days. +dev-ruby/hike + # Hans de Graaff (9 Dec 2018) # No longer provides tests and no tagged upstream releases. No reverse # dependencies. Use classifier-reborn instead. Masked for removal
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/faraday/
commit: e94751d5f67aba3a465afcbe5d712961c1d89f3f Author: Hans de Graaff gentoo org> AuthorDate: Sun Dec 9 07:53:21 2018 + Commit: Hans de Graaff gentoo org> CommitDate: Sun Dec 9 07:53:21 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e94751d5 dev-ruby/faraday: cleanup Signed-off-by: Hans de Graaff gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 dev-ruby/faraday/Manifest | 1 - dev-ruby/faraday/faraday-0.12.2.ebuild | 69 -- 2 files changed, 70 deletions(-) diff --git a/dev-ruby/faraday/Manifest b/dev-ruby/faraday/Manifest index aadaf6a2adc..d015a045759 100644 --- a/dev-ruby/faraday/Manifest +++ b/dev-ruby/faraday/Manifest @@ -1,4 +1,3 @@ -DIST faraday-0.12.2.tar.gz 62809 BLAKE2B 4dcd60192df36e1b9766eab3bcbacd729239b0e09d9e82a73d825c750fdbcfae8161cf803f078b841236a5e18b1849b4cdc34e6adebb9eaea0f0442cd65b2e74 SHA512 966fc419d529a8bba5caa6d3932ee94f7b248110edc880b532860c24abd70cb50182e40b94b4143e26575c6db7ce046fa71ac0d25010385d7f0c3dda87f39439 DIST faraday-0.14.0.tar.gz 65105 BLAKE2B bf5101083bd828e2ea98dcd487c7c082f8b2d2eb4d03ac7ad04e1873666db9e2cec1e6eb9887364874ea5f32d0313019d1eada5e05e25e0415bdd5aa2bcfca97 SHA512 25bba07e76a2a8bf02b0c81c045329e72d5911a2aacae56611db33dc25c89bd48bb1b4de9b20c6edc1514d3ceae8b06fca6076c85580533047c222cb30ef8dc7 DIST faraday-0.15.3.tar.gz 67065 BLAKE2B 7425fb885cb26394ee91098264b5e4e3038a68855b9a55b03a39faca18d4e0cd516fe447b2312538692229bb15df091317ee36aad762937b46c72e16bb19cc8a SHA512 cfc59c44481e4be27504d02bfcbdc3a3783d15940487e72aaba136f5c456d74be6cad5a686e74eed1ad216fbb58db197d04015c2d168abbbaf899c4f855acdbd DIST faraday-0.15.4.tar.gz 67196 BLAKE2B 4e64e834639a6e59c028ee19d72f51ea72fd6b3be5fc63b6fbbec25716dbd735e97d8a05a210dd1a57b740a1dcd76d30a39b59c7034cab8a531f8856dc132b14 SHA512 6d1a8c66bd6e2ce417ce504bf20ea89cf24c46c2b48491aba110d04f273448e0e8f0cf94a0dd5356a13876aa030d41bbfb80b95365ea4b212fd79d8db624128f diff --git a/dev-ruby/faraday/faraday-0.12.2.ebuild b/dev-ruby/faraday/faraday-0.12.2.ebuild deleted file mode 100644 index 1de4dadb0f3..000 --- a/dev-ruby/faraday/faraday-0.12.2.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -USE_RUBY="ruby21 ruby22 ruby23 ruby24" - -RUBY_FAKEGEM_TASK_TEST="test" -RUBY_FAKEGEM_TASK_DOC="" - -RUBY_FAKEGEM_EXTRADOC="README.md" - -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" - -inherit ruby-fakegem eutils - -DESCRIPTION="HTTP/REST API client library with pluggable components" -HOMEPAGE="https://github.com/lostisland/faraday"; -SRC_URI="https://github.com/lostisland/faraday/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" -IUSE="" - -DEPEND+=" test? ( sys-process/lsof )" - -ruby_add_rdepend ">=dev-ruby/multipart-post-1.2.0 =dev-ruby/test-unit-2.4 - dev-ruby/httpclient - dev-ruby/rack-test - dev-ruby/sinatra - dev-ruby/net-http-persistent - dev-ruby/patron - )" - -all_ruby_prepare() { - # Remove bundler support. - rm Gemfile || die - sed -i -e '/[Bb]undler/d' Rakefile test/helper.rb || die - sed -i -e '/bundler/,/^fi/ s:^:#:' script/test || die - - # Remove simplecov and coveralls support, not needed to run tests. - sed -i -e '/simplecov/,/^end/ s:^:#:' \ - -e '1igem "rack", "~>1.0"; require "yaml"' \ - test/helper.rb || die - - # Remove tests for adapters that are not packaged for Gentoo. - rm test/adapters/em_http_test.rb test/adapters/em_synchrony_test.rb test/adapters/excon_test.rb test/adapters/typhoeus_test.rb || die - - # The proxy server is already killed, may be OS X vs Linux issue. - sed -i -e '138 s/^/#/' script/test || die - - sed -i -e '/git ls-files/ s:^:#:' ${RUBY_FAKEGEM_GEMSPEC} || die -} - -each_ruby_prepare() { - # Make sure the test scripts use the right ruby interpreter - sed -i -e 's:ruby:'${RUBY}':' script/* || die -} - -each_ruby_test() { - each_fakegem_test - - # Sleep some time to allow the sinatra test server to die - einfo "Waiting for test server to stop" - sleep 10 -}
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/fast_gettext/
commit: 8a7d8316a56cf53e01975beb39b98e681db12397 Author: Hans de Graaff gentoo org> AuthorDate: Sun Dec 9 06:46:20 2018 + Commit: Hans de Graaff gentoo org> CommitDate: Sun Dec 9 07:38:30 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a7d8316 dev-ruby/fast_gettext: add 1.8.0 Signed-off-by: Hans de Graaff gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 dev-ruby/fast_gettext/Manifest | 1 + dev-ruby/fast_gettext/fast_gettext-1.8.0.ebuild | 55 + 2 files changed, 56 insertions(+) diff --git a/dev-ruby/fast_gettext/Manifest b/dev-ruby/fast_gettext/Manifest index 2dd171fe1c5..2b55a810d1c 100644 --- a/dev-ruby/fast_gettext/Manifest +++ b/dev-ruby/fast_gettext/Manifest @@ -1,2 +1,3 @@ DIST fast_gettext-1.6.0.tar.gz 88780 BLAKE2B 237a37bf505fe7520a25c6014f0524201905f8cf112624370477229db2d06f7160bad62e42878688ef954a1b72166e21a7f3a89de66c21aec780749fb26cd8bb SHA512 0f26cf8bd8a2078631d32be14fb6bd194dc9bd8a6727a355f4d2978441c972785747063ec4d8b8b1d4c78f07914a8b6cccf37ed85a37e7833bfe724d1d159ae9 DIST fast_gettext-1.7.0.tar.gz 89176 BLAKE2B a42f50570c65ecf229dab0e29ad40ed3fd0f431f59fcc7daff4ad564131751e8a9884d52dfb8f2edd87b6fd5d1267973225fb51f9256844b37c28b251d15d757 SHA512 83c66c4f7bce6ccc08c1fe9e2b3cb71ea751d68bbff36587039a0b7af7e6276cb481debd3668673822455b9805114531547b28a777cafa8bda0f204ba36bf5a9 +DIST fast_gettext-1.8.0.tar.gz 89309 BLAKE2B 8ead2922662667c24d07dbc1145002583b1a65edd3cb581ac5bc058560aca38ed083e0470d4834cfdc5abae36f1e8264171b75649343675ab415b28ea2f0e8ab SHA512 0657b5955268166787a32bb74481cd07309018429c21707e061e022d67d5d2448d2d173149f164d16ff5f6c9ffa0feef38369b79daa299e1283fdcdc019ad72e diff --git a/dev-ruby/fast_gettext/fast_gettext-1.8.0.ebuild b/dev-ruby/fast_gettext/fast_gettext-1.8.0.ebuild new file mode 100644 index 000..5b90552bd7b --- /dev/null +++ b/dev-ruby/fast_gettext/fast_gettext-1.8.0.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +USE_RUBY="ruby23 ruby24 ruby25" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_EXTRADOC="CHANGELOG Readme.md" + +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +inherit ruby-fakegem + +DESCRIPTION="GetText but 3.5x faster, 560x less memory, clean namespace and threadsave!" +HOMEPAGE="https://github.com/grosser/fast_gettext"; +SRC_URI="https://github.com/grosser/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86" +IUSE="" + +ruby_add_bdepend "test? ( dev-ruby/bundler )" + +all_ruby_prepare() { + rm Gemfile.lock || die + + # Remove jeweler and bump from Gemfile since they are not needed for tests. + sed -i -e '/jeweler/d' -e '/bump/d' -e '/appraisal/d' Gemfile || die + + # Avoid unneeded dependency on git and development dependencies. + sed -e '/git ls-files/ s:^:#:' \ + -e '/\(wwtd\|bump\|sqlite3\|activerecord\|i18n\)/ s:^:#:' \ + -i fast_gettext.gemspec || die + + # Avoid a test dependency on activerecord since this is now in the + # dependency tree for app-admin/puppet and many arches don't have + # rails keyworded. + sed -i -e '/active_record/ s:^:#:' spec/spec_helper.rb || die + rm -f spec/fast_gettext/translation_repository/db_spec.rb || die + sed -i -e '/works with DB repository/,/^end/ s:^:#:' spec/fast_gettext/storage_spec.rb || die + sed -i -e '/with i18n loaded/,/^ end/ s:^:#:' spec/fast_gettext/vendor/string_spec.rb || die + + # Don't run a test that requires safe mode which we can't provide + # due to insecure directory settings for the portage dir. This spec + # also calls out to ruby which won't work with different ruby + # implementations. + sed -i -e '/can work in SAFE mode/,/^ end/ s:^:#:' spec/fast_gettext/translation_repository/mo_spec.rb || die +} + +each_ruby_prepare() { + # Make sure the right ruby interpreter is used + sed -i -e "s:bundle exec ruby:bundle exec ${RUBY}:" spec/fast_gettext/vendor/*spec.rb || die +}
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/backports/
commit: beb5f9ca8d15e7cda4549e7a1f588e274e4ae4c7 Author: Hans de Graaff gentoo org> AuthorDate: Sun Dec 9 07:28:08 2018 + Commit: Hans de Graaff gentoo org> CommitDate: Sun Dec 9 07:38:36 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=beb5f9ca dev-ruby/backports: add 3.11.4 Signed-off-by: Hans de Graaff gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 dev-ruby/backports/Manifest| 1 + dev-ruby/backports/backports-3.11.4.ebuild | 23 +++ 2 files changed, 24 insertions(+) diff --git a/dev-ruby/backports/Manifest b/dev-ruby/backports/Manifest index 0ad50d41787..7a1297621ba 100644 --- a/dev-ruby/backports/Manifest +++ b/dev-ruby/backports/Manifest @@ -1 +1,2 @@ +DIST backports-3.11.4.gem 157696 BLAKE2B 0c341380e350a61fac7ad09a2425598214945f1ecb26abf8f17494a2fc6ee256ee20517555bfde433cd2f564fd1148211c2cfd1c16d21ecbe574492837f610ef SHA512 bbc2afae9b40d2e3b14e46321200fb5e8290a2494a86187939e8e51b4a960b62aec55bee3ee37da4ece3d575a50653e63b950915eaedff745125ab39926765ad DIST backports-3.8.0.gem 146944 BLAKE2B 20798893f692d69cdf39d64f1f5568bb74780875ca9c6a36e788ea44c46d133aa954f2882b3802a2c483ee486d1ea3ef968db397914191273978e40ac1ae0bda SHA512 898472ee88dd0df46067de12ef38bb033b270573ff09db99982336b9eb264c90003e6e150101f7fc0034998961d81eac7b2f72e1e843e0a7e683b6b98980153f diff --git a/dev-ruby/backports/backports-3.11.4.ebuild b/dev-ruby/backports/backports-3.11.4.ebuild new file mode 100644 index 000..b5c1984 --- /dev/null +++ b/dev-ruby/backports/backports-3.11.4.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +USE_RUBY="ruby24 ruby25" +RUBY_FAKEGEM_RECIPE_DOC="rdoc" +RUBY_FAKEGEM_TASK_TEST="test" + +inherit ruby-fakegem + +DESCRIPTION="Backports of Ruby features for older Ruby" +HOMEPAGE="https://github.com/marcandre/backports"; + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~sparc ~x86" +IUSE="" + +all_ruby_prepare() { + # Avoid activesupport test that no longer works in Rails 5. This also avoids + # a dependency on activesupport + sed -i -e '/test_rails/,/^ end/ s:^:#:' test/_backport_guards_test.rb || die +}
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/chunky_png/
commit: 6d98678b6f5e0dfcf004db98690fa6f32df4a60a Author: Hans de Graaff gentoo org> AuthorDate: Sun Dec 9 07:31:14 2018 + Commit: Hans de Graaff gentoo org> CommitDate: Sun Dec 9 07:38:38 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d98678b dev-ruby/chunky_png: add 1.3.11 Signed-off-by: Hans de Graaff gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 dev-ruby/chunky_png/Manifest | 1 + dev-ruby/chunky_png/chunky_png-1.3.11.ebuild | 33 2 files changed, 34 insertions(+) diff --git a/dev-ruby/chunky_png/Manifest b/dev-ruby/chunky_png/Manifest index 8edc14c2882..6dfc4dd4c3a 100644 --- a/dev-ruby/chunky_png/Manifest +++ b/dev-ruby/chunky_png/Manifest @@ -1 +1,2 @@ DIST chunky_png-1.3.10.gem 352768 BLAKE2B ae34d2bc8199e46add874511343a7e8ecf08ed3ec3e488a22a99335895d260ebb60c6be96c5771915a176f44e354599373feafce9dda362b6ebc2b58cd92e79f SHA512 968e068a6fbcc3a91d435509a118976de56c62b9e311d201064aae2eb8129994b6c0876ca5ed3368b0415b238f46d14ab1059d00cbf473aaf9631456596e58c3 +DIST chunky_png-1.3.11.gem 352768 BLAKE2B a60607830c41921f8e8018b91e459103d0a793a6c3a5491f36399dff0ac83dee09f66173f01e3e8f8f2bcf9fc69b1ffa53a9bc29adda758be75fefec391f7900 SHA512 5935bc7672ef4eb271abe0e2d4b83c2628ecb9d4fc1bb095d28d0f7fd5e13443492bc91b2c9c1de59d8bb669c185cddaeef62d03d3b0df88ecfaaa3c7a2a0ba6 diff --git a/dev-ruby/chunky_png/chunky_png-1.3.11.ebuild b/dev-ruby/chunky_png/chunky_png-1.3.11.ebuild new file mode 100644 index 000..b27b58ce8a1 --- /dev/null +++ b/dev-ruby/chunky_png/chunky_png-1.3.11.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +USE_RUBY="ruby23 ruby24 ruby25" + +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_DOCDIR="" + +RUBY_FAKEGEM_EXTRADOC="BENCHMARKING.rdoc CHANGELOG.rdoc README.md" + +RUBY_FAKEGEM_GEMSPEC="chunky_png.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Pure Ruby library that can read and write PNG images" +HOMEPAGE="https://wiki.github.com/wvanbergen/chunky_png"; + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +all_ruby_prepare() { + sed -i -e '/[bB]undler/s:^:#:' {spec,benchmarks}/*.rb || die + rm Gemfile* || die + + # Avoid git dependency + sed -i -e '/s.files/d' ${RUBY_FAKEGEM_GEMSPEC} || die +}
[gentoo-commits] repo/gentoo:master commit in: profiles/
commit: 1f70d400191ecddbd95578b49d51287f01640cd9 Author: Hans de Graaff gentoo org> AuthorDate: Sun Dec 9 07:35:58 2018 + Commit: Hans de Graaff gentoo org> CommitDate: Sun Dec 9 07:38:39 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f70d400 profiles/package.mask: mask dev-ruby/classifier for removal Signed-off-by: Hans de Graaff gentoo.org> profiles/package.mask | 6 ++ 1 file changed, 6 insertions(+) diff --git a/profiles/package.mask b/profiles/package.mask index 16513c5a853..c065ba44123 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -29,6 +29,12 @@ #--- END OF EXAMPLES --- +# Hans de Graaff (9 Dec 2018) +# No longer provides tests and no tagged upstream releases. No reverse +# dependencies. Use classifier-reborn instead. Masked for removal +# in 30 days. +dev-ruby/classifier + # Hans de Graaff (1 Dec 2018) # Old Rails 5.0 version. This version is no longer maintained # upstream. Please update to Rails 5.1 or newer.
[gentoo-commits] repo/gentoo:master commit in: eclass/
commit: 49f278d5347061181467e4d7867a20881ce582f1 Author: Hans de Graaff gentoo org> AuthorDate: Sun Dec 9 07:07:50 2018 + Commit: Hans de Graaff gentoo org> CommitDate: Sun Dec 9 07:38:32 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49f278d5 eclass/ruby-fakegem.eclass: fix warning about compressed docs Remove automatically generated compressed versions of the javascript code to avoid warnings about colliding files by ecompress. We can only do this for the "rdoc" recipe because that is the only predictable generation method. The other recipes will need to handle this in the ebuilds. Signed-off-by: Hans de Graaff gentoo.org> eclass/ruby-fakegem.eclass | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eclass/ruby-fakegem.eclass b/eclass/ruby-fakegem.eclass index ecbf6403e43..e2c333a5e7f 100644 --- a/eclass/ruby-fakegem.eclass +++ b/eclass/ruby-fakegem.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: ruby-fakegem.eclass @@ -380,6 +380,7 @@ all_fakegem_compile() { ;; rdoc) rdoc ${RUBY_FAKEGEM_DOC_SOURCES} || die "failed to (re)build documentation" + rm -f doc/js/*.gz || die "failed to remove duplicated compressed javascript files" ;; yard) yard doc ${RUBY_FAKEGEM_DOC_SOURCES} || die "failed to (re)build documentation"
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/autoprefixer-rails/
commit: 678b69c0312d21b6011673b86875e3fb68a39fe1 Author: Hans de Graaff gentoo org> AuthorDate: Sun Dec 9 07:10:07 2018 + Commit: Hans de Graaff gentoo org> CommitDate: Sun Dec 9 07:38:34 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=678b69c0 dev-ruby/autoprefixer-rails: add 9.4.2 Signed-off-by: Hans de Graaff gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 dev-ruby/autoprefixer-rails/Manifest | 1 + .../autoprefixer-rails-9.4.2.ebuild| 36 ++ 2 files changed, 37 insertions(+) diff --git a/dev-ruby/autoprefixer-rails/Manifest b/dev-ruby/autoprefixer-rails/Manifest index 76979f8ac36..275b54346fd 100644 --- a/dev-ruby/autoprefixer-rails/Manifest +++ b/dev-ruby/autoprefixer-rails/Manifest @@ -3,3 +3,4 @@ DIST autoprefixer-rails-8.6.5.gem 208896 BLAKE2B 50e8b8ef3fec9a0bb8d68afa8950989 DIST autoprefixer-rails-9.1.4.gem 206336 BLAKE2B bea7ed6c4650fc9b5e647e186c1f27b229eb1cdfabe21d5d30abec50636252b87e59fe7fa08499d081508c57302816da589276548c9e90cdfda75e89d0643f50 SHA512 75e4fb7986e6f51f104c39f41fc61c991abb942444a78a7befd060c5e6454c4a1981685f93bfab0bfab8ed374b446eed8adb5279bfc627cee22a6a0c1bc7aa7e DIST autoprefixer-rails-9.2.1.gem 208384 BLAKE2B 6f16e02fcde2d90e4cf7da8031cb8898d1acb6ec30e97c8b91f1f2b282a7d0154c848d04916095f7e47010627cf74bc9d07a147fb3266874f732d67549f7ebba SHA512 b2b20ac759a5988e61782d062d0ea6722ad99dc50ca1d02506dacce4168f79aeb0999f4dc558feb73998a79408ffb594ee901687f2e2205a81b3ebd61e6e8bbb DIST autoprefixer-rails-9.3.1.gem 208896 BLAKE2B 8b9012ea0d4bdf002b0a705105437fb3ee09f930cf03ebfedd410ff26d171ad8d21a31276e052e3ab82317ca83e469019625ac60489d0a39c79930496a706505 SHA512 9aab5b49454b9e49220b993e04ab92122d1c2dbee824c3c1c51d82e01340461a340c21b302630fd83cfdd786de3c6f27a82a13d8f4e357e73ea93ccd735e8438 +DIST autoprefixer-rails-9.4.2.gem 211968 BLAKE2B bfb47c0a2f7c69f658cea39d299b74a8be9741b65ede701e7b8beab945c97cec86a42f8eb0d45615b6bc3c0f24fad08e341e67dc0a735e468107016147435b18 SHA512 a7e3db3025726866cb9f3298e6537d70664f47fbe4505566230e6adde63d625eab9e3f81cdaeaa95c1fa44054b28f9bceaae042df182bbb2eb3407f7d870607d diff --git a/dev-ruby/autoprefixer-rails/autoprefixer-rails-9.4.2.ebuild b/dev-ruby/autoprefixer-rails/autoprefixer-rails-9.4.2.ebuild new file mode 100644 index 000..5c7bdefdb19 --- /dev/null +++ b/dev-ruby/autoprefixer-rails/autoprefixer-rails-9.4.2.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +USE_RUBY="ruby23 ruby24 ruby25" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" +RUBY_FAKEGEM_RECIPE_TEST="rspec3" +RUBY_FAKEGEM_EXTRADOC="README.md" + +RUBY_FAKEGEM_EXTRAINSTALL="vendor" + +inherit ruby-fakegem eapi7-ver + +DESCRIPTION="Add vendor prefixes to CSS rules using values from the Can I Use website" +HOMEPAGE="https://github.com/ai/autoprefixer-rails"; +LICENSE="MIT" + +KEYWORDS="~amd64" +SLOT="$(ver_cut 1)" +IUSE="" + +ruby_add_rdepend "dev-ruby/execjs:*" + +ruby_add_bdepend "test? ( + dev-ruby/rails + dev-ruby/rake + dev-ruby/rspec-rails +)" + +all_ruby_prepare() { + sed -i -e "/bundler/d" -e "/BUNDLE/d" spec/app/config/boot.rb || die + sed -i -e "/Bundler/,+3d" spec/app/config/application.rb || die + rm spec/rails_spec.rb spec/compass_spec.rb || die +}
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Text-Template/
commit: 943812f354380af566fdcecfa0aa3bb723f89bce Author: Ervin Peters ervnet de> AuthorDate: Tue Dec 4 15:43:49 2018 + Commit: Kent Fredric gentoo org> CommitDate: Sun Dec 9 07:37:26 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=943812f3 dev-perl/Text-Template: Bump to version 1.530.0 Upstream: - Add support for decoding encoded templates via ENCODING arg - Documentation cleanup Closes: https://bugs.gentoo.org/654660 Closes: https://github.com/gentoo/gentoo/pull/10564 Signed-off-by: Ervin Peters ervnet.de> Signed-off-by: Kent Fredric gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 dev-perl/Text-Template/Manifest| 1 + .../Text-Template/Text-Template-1.530.0.ebuild | 31 ++ 2 files changed, 32 insertions(+) diff --git a/dev-perl/Text-Template/Manifest b/dev-perl/Text-Template/Manifest index 73bd27df4f4..1bcf5b866a3 100644 --- a/dev-perl/Text-Template/Manifest +++ b/dev-perl/Text-Template/Manifest @@ -1,3 +1,4 @@ DIST Text-Template-1.46.tar.gz 43952 BLAKE2B 6dff627f7924e0a84528687245da5b69ecaba8dbe26fd932e09b4486cc74743ae98e6874a0062566ae2339f6f2f1d7364c7cae292111b1c815c52ceddec30338 SHA512 406c218d5d59dc74419749fb5151d011fb4d629e6de79378be1290db23a602a9f7897f04ac80080b8ec2661d997f9e05bed7861e480130750471166da0a94592 DIST Text-Template-1.47.tar.gz 48988 BLAKE2B a34bc1b4dc7e29f5171d9aa5da21d9083763701ba19ff9f50ca488f8a3936181fc17f7d8e517743fc77ac7e8f688aea33a802c949edfff3c61b79b7f272ca489 SHA512 af5ad3fc8191d2dd8609735b6a7d6221e4f7ec668c6bc35650081fee248cdc9676984302d420ac227baf8d2de6f6eb023e01f54290b90508e294ba4309b0e68e DIST Text-Template-1.51.tar.gz 48054 BLAKE2B ca44e383799624949a5fa05de288a86351422cf7e4efcdb7f1a98b16216443aa3e269f7e69eb134458e889250133aa81dd15922b8a20ab4bf83b92fc16ac82ed SHA512 038a810746684b26cd6a763cfb8adff57a2ed8dc57e44b170b6ba6c8271d513289546294439cfe1c8b77f40153751596a023079ee79bfc6b59fa9393cfcc04f4 +DIST Text-Template-1.53.tar.gz 48863 BLAKE2B 1b054122fb9b17e36304f51888b8c284a2cc83db0d416827ebafdf65d45c683840c89588936f5ccf3ad26ed37bf894bb76c30fb07cb86b8e188df3a9654413be SHA512 136860f16f5100b7a672ae798be1e8d2bd1d6091e63248e9dca3bea42566e8289809d863576c7dcd734865eadb79f8d8f6443457cd14012f486ef14c98732228 diff --git a/dev-perl/Text-Template/Text-Template-1.530.0.ebuild b/dev-perl/Text-Template/Text-Template-1.530.0.ebuild new file mode 100644 index 000..e55f695eb9b --- /dev/null +++ b/dev-perl/Text-Template/Text-Template-1.530.0.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DIST_AUTHOR=MSCHOUT +DIST_VERSION=1.53 + +inherit perl-module + +DESCRIPTION="Expand template text with embedded Perl" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND="virtual/perl-Carp + virtual/perl-Encode + virtual/perl-Exporter" + +DEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker + test? ( + virtual/perl-File-Temp + virtual/perl-Safe + dev-perl/Test-More-UTF8 + virtual/perl-Test-Simple + dev-perl/Test-Warnings + )" + +PERL_RM_FILES=( "t/author-pod-syntax.t" "t/author-signature.t" )
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Test-More-UTF8/
commit: c82f1aaf943f08c0bac6bd73c5ef730958f16e0d Author: Ervin Peters ervnet de> AuthorDate: Wed Dec 5 07:28:04 2018 + Commit: Kent Fredric gentoo org> CommitDate: Sun Dec 9 07:37:25 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c82f1aaf dev-perl/Test-More-UTF8: Add w/ version 0.50.0 Needed by tests in Text-Template-1.530 Bug: https://bugs.gentoo.org/654660 Bug: https://github.com/gentoo/gentoo/pull/10564 Signed-off-by: Ervin Peters ervnet.de> Signed-off-by: Kent Fredric gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 dev-perl/Test-More-UTF8/Manifest | 1 + .../Test-More-UTF8/Test-More-UTF8-0.50.0.ebuild| 27 ++ dev-perl/Test-More-UTF8/metadata.xml | 12 ++ 3 files changed, 40 insertions(+) diff --git a/dev-perl/Test-More-UTF8/Manifest b/dev-perl/Test-More-UTF8/Manifest new file mode 100644 index 000..e3c4073f651 --- /dev/null +++ b/dev-perl/Test-More-UTF8/Manifest @@ -0,0 +1 @@ +DIST Test-More-UTF8-0.05.tar.gz 3397 BLAKE2B 166eafc1826d02af63a04ad259f72caa7d12e3d938573f42684e8a0ebb211d4e60b0fc325808ef7ff92a4b064e207e3b8dc72dce42905cd336b3b5810b9a40e7 SHA512 9a1ba4216037aa1517ef57b2e5a40bd78f2f3aaaff3683a4e45f10d4b574b5e2752509a5620d8a76156135b4fa7182320a182a5a6900bf450979d805d7dc05a3 diff --git a/dev-perl/Test-More-UTF8/Test-More-UTF8-0.50.0.ebuild b/dev-perl/Test-More-UTF8/Test-More-UTF8-0.50.0.ebuild new file mode 100644 index 000..be244ab7a45 --- /dev/null +++ b/dev-perl/Test-More-UTF8/Test-More-UTF8-0.50.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DIST_AUTHOR=MONS +DIST_VERSION=0.05 + +inherit perl-module + +DESCRIPTION="Enhancing Test::More for UTF8-based projects" + +SLOT="0" +KEYWORDS="~amd64 ~x86" + +IUSE="" + +PERL_RM_FILES=( + "t/pod-coverage.t" + "t/pod.t" +) +RDEPEND=" + virtual/perl-Test-Simple +" +DEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker +" diff --git a/dev-perl/Test-More-UTF8/metadata.xml b/dev-perl/Test-More-UTF8/metadata.xml new file mode 100644 index 000..60e177e22c0 --- /dev/null +++ b/dev-perl/Test-More-UTF8/metadata.xml @@ -0,0 +1,12 @@ + +http://www.gentoo.org/dtd/metadata.dtd";> + + +p...@gentoo.org +Gentoo Perl Project + + +Test-More-UTF8 +Test::More::UTF8 + +
[gentoo-commits] repo/gentoo:master commit in: sys-devel/distcc/, sys-devel/distcc/files/
commit: ffd45776bb13d8ee7140fd5499413a7ffa873798 Author: Georgy Yakovlev gentoo org> AuthorDate: Sun Dec 9 06:17:53 2018 + Commit: Georgy Yakovlev gentoo org> CommitDate: Sun Dec 9 06:35:53 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffd45776 sys-devel/distcc: improve init.d script, secure pidfile handling removed unneeded start/stop functions removed gcc spec/path loading, it's useless because path whitelist is handled by compiler-shadow and we no longer use gcc specs. pidfile is now owned by root and created by s-s-d pidfile path is now controlled by service name (/run/distccd.pid) initfile no longer runs chmod on pidfile and parent directory. Bug: https://bugs.gentoo.org/650854 Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Georgy Yakovlev gentoo.org> sys-devel/distcc/distcc-3.3.2-r1.ebuild | 196 sys-devel/distcc/files/distccd.confd| 37 ++ sys-devel/distcc/files/distccd.initd| 13 +++ 3 files changed, 246 insertions(+) diff --git a/sys-devel/distcc/distcc-3.3.2-r1.ebuild b/sys-devel/distcc/distcc-3.3.2-r1.ebuild new file mode 100644 index 000..100daf4ce2c --- /dev/null +++ b/sys-devel/distcc/distcc-3.3.2-r1.ebuild @@ -0,0 +1,196 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{5,6} ) + +inherit autotools flag-o-matic python-single-r1 systemd \ + toolchain-funcs user xdg-utils prefix + +DESCRIPTION="Distribute compilation of C code across several machines on a network" +HOMEPAGE="http://distcc.org/"; +SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.gz"; + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +IUSE="gnome gssapi gtk hardened ipv6 selinux xinetd zeroconf" + +RESTRICT="test" + +CDEPEND="${PYTHON_DEPS} + dev-libs/popt + gnome? ( + >=gnome-base/libgnome-2 + >=gnome-base/libgnomeui-2 + x11-libs/gtk+:2 + x11-libs/pango + ) + gssapi? ( net-libs/libgssglue ) + gtk? ( x11-libs/gtk+:2 ) + zeroconf? ( >=net-dns/avahi-0.6[dbus] ) +" +DEPEND="${CDEPEND} + sys-libs/binutils-libs + virtual/pkgconfig" +RDEPEND="${CDEPEND} + !net-misc/pump + dev-util/shadowman + >=sys-devel/gcc-config-1.4.1 + selinux? ( sec-policy/selinux-distcc ) + xinetd? ( sys-apps/xinetd )" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +S="${WORKDIR}/distcc" + +pkg_setup() { + enewuser distcc 240 -1 -1 daemon + python-single-r1_pkg_setup +} + +src_prepare() { + eapply "${FILESDIR}/${PN}-3.0-xinetd.patch" + # bug #255188 + eapply "${FILESDIR}/${PN}-3.3.2-freedesktop.patch" + # SOCKSv5 support needed for Portage, bug #537616 + eapply "${FILESDIR}/${PN}-3.2_rc1-socks5.patch" + eapply_user + + # Bugs #120001, #167844 and probably more. See patch for description. + use hardened && eapply "${FILESDIR}/distcc-hardened.patch" + + sed -i \ + -e "/PATH/s:\$distcc_location:${EPREFIX}/usr/lib/distcc/bin:" \ + -e "s:@PYTHON@:${EPYTHON}:" \ + pump.in || die "sed failed" + + sed \ + -e "s:@EPREFIX@:${EPREFIX:-/}:" \ + -e "s:@libdir@:/usr/lib:" \ + "${FILESDIR}/3.2/distcc-config" > "${T}/distcc-config" || die + + hprefixify update-distcc-symlinks.py src/{serve,daemon}.c + python_fix_shebang update-distcc-symlinks.py "${T}/distcc-config" + eautoreconf +} + +src_configure() { + local myconf=( + --disable-Werror + $(use_enable ipv6 rfc2553) + $(use_with gtk) + $(use_with gnome) + $(use_with gssapi auth) + $(use_with zeroconf avahi) + ) + + econf "${myconf[@]}" +} + +src_install() { + # override GZIP_BIN to stop it from compressing manpages + emake DESTDIR="${D}" GZIP_BIN=false install + python_optimize + + newinitd "${FILESDIR}/distccd.initd" distccd + systemd_dounit "${FILESDIR}/distccd.service" + systemd_install_serviced "${FILESDIR}/distccd.service.conf" + + cp "${FILESDIR}/distccd.confd" "${T}/distccd" || die + if use zeroconf; then + cat >> "${T}/distccd" <<-EOF || die + + # Enable zeroconf support in distccd + DISTCCD_OPTS="\${DISTCCD_OPTS} --zeroconf" + EOF + + sed -i '/ExecStart/ s|$| --zeroconf|' "${D}$(systemd_get_systemunitdir)"/distccd.service || die + fi + doconfd "${T}/distccd" + + newenvd - 02distcc <<-EOF || die + # This file is managed by distcc-config; use it to change these settings. + # DISTCC_LOG and DISTCC_DIR should not be set. + DISTCC_VERBOSE="${DISTCC_VERBOSE:
[gentoo-commits] repo/gentoo:master commit in: app-shells/mcfly/
commit: 25041b3c8b96316833b0761d6e9c47b5cad268df Author: Georgy Yakovlev gentoo org> AuthorDate: Sun Dec 9 01:50:58 2018 + Commit: Georgy Yakovlev gentoo org> CommitDate: Sun Dec 9 01:58:14 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25041b3c app-shells/mcfly: new package an upgraded ctrl-r for Bash Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Georgy Yakovlev gentoo.org> app-shells/mcfly/Manifest | 66 ++ app-shells/mcfly/mcfly-0.2.4.ebuild | 109 app-shells/mcfly/metadata.xml | 18 ++ 3 files changed, 193 insertions(+) diff --git a/app-shells/mcfly/Manifest b/app-shells/mcfly/Manifest new file mode 100644 index 000..35342379a16 --- /dev/null +++ b/app-shells/mcfly/Manifest @@ -0,0 +1,66 @@ +DIST aho-corasick-0.6.6.crate 26330 BLAKE2B dbdfcba15832736cf1ec65c9f93943e7ef368fc71e5545e1481788428ce1ebacaf87b4d045cb22695c1738ac6a0c579b38e886a461bd665b07898ca3a7f9e808 SHA512 6ac654a3e670ca53350ae6a4b21f7cc50335a42ac8557f34712575e9e9871991d29e45a45280f8c32a8a44340a54ac33585e7f1ab9b549462002e0ec24da2caa +DIST ansi_term-0.11.0.crate 17087 BLAKE2B 9bd35c045a01ce4c6c4a5db1b4f15e9412bb97426eec19d4421dffbec633de8d13452c13c1dc1b30998690b78d7ed38311aca700087f13a81f66bd1d5d7300c4 SHA512 a637466a380748f939b3af090b8c0333f35581925bc03f4dda9b3f95d338836403cf5487ae3af9ff68f8245a837f8ab061aabe57a126a6a2c20f2e972c77d1fa +DIST argon2rs-0.2.5.crate 353096 BLAKE2B 9f8136f54f96cd95facd78572e31d83d49474b77205277805173aa4afe3ebdccf2592dfcb72a68cfc8e7434b89cdf36058038b2c2d452c8289a5c0f4fbb3ed3b SHA512 09a47467d09ed5bb4efdc4b8392e6282da6f4434063f4352c225c6dd1b668b51623e7d8960deb56c7c18eaca890a3515c1dc833acac1c68dc999e56b63e9b04f +DIST arrayvec-0.4.7.crate 22946 BLAKE2B 93d17ae9e706969e319980b4e00dd0a6c040c8d62cd41d1de34ab997e28798329e00d3dc3893da45ce5bc066fcf70dd5d8e98a79fbac8fc06d33a073a97b7b89 SHA512 195faecd7709eb908227cda7111e1b736ecf96120f9b615f1dc0a9a1cc61947e2ad4fedc7fc81d14405b51a4c8a216f81b8ed1d1d603a9fa451a38b4637e2bae +DIST atty-0.2.10.crate 5962 BLAKE2B 36a2fe57eb500124f20464a7d67f86bc6270c2143f8273683011599adee180ee71fb0ea565c38171b9d471479d63041e4bbba4f713dfb92239b7d298e9d89e7e SHA512 76cbf960475073101d617bdaf12ed1e93dfdd96e22182674e1ec04c955fb1de2e3aa132345c50a1bebc579932d43c74c9aac64ae64107e98648a0f1f6562285b +DIST backtrace-0.3.9.crate 31054 BLAKE2B 5d90d098d149198eabe4665b1eb2cf41c5f392ddc1c5cc499047dd72533d79b679943781445f7d86f269a15d3f8ca2775dfe89123935d32ccef4b8151547283e SHA512 edb485ad27d19e0cccea123cc6a9db5b3222831e48722d8fcec7349fd1c4b62b67ab1f488fea4973da82c8f17a86aeba4ea8f2fc1aa60f6528833cda39efa637 +DIST backtrace-sys-0.1.24.crate 522332 BLAKE2B aebfee4b257b44ce127f3bc13d7622dcb0d6cb4c1e73d504b8d77b6c0b1ed47e7ca310cb6b41798cd13e6589739c352d9e33072e20fae0547d292312604a27d9 SHA512 7e7b279bbe5f3d8bc2ff3234df11d7b08cb09209c861c24b3fa67dcd89699bd80a6fbf93d3b0b287544f73792983172bfb5e5c86caedee59f09ee66d259fd0c7 +DIST bitflags-1.0.3.crate 13838 BLAKE2B d053495250ce43970d4dbca6ec7dd541e5f5ca6597f35b8ac7cae3230e80f95d8f056f3ea030c12dd02228b51184c8020f8d2ab5ee4da4dad88a97638ea3db41 SHA512 c1410967948a0c44c434bcf952c586166cea656f98532980156bce5eb68ea2966ad7457abd2e45e7444d346f47950aad9d6b4d6779486cddfbda70dee5716bd8 +DIST blake2-rfc-0.2.18.crate 15676 BLAKE2B fe942b3f09012ea2856d36a44dc59df0a90463eb4333e7afac3e2c5e1b53e7231f5f16242269d97a9731bcba4aa57889dad7decad142618802341678b2b0c6ce SHA512 f89c1067febcd0ed04e86674a42ea7a96aa432ad255210180504f0dec97a10714110eb044fa5004cc48fd75eefac7af4dc12d8a4ad84dad82851ab6d7d916f8e +DIST cc-1.0.18.crate 42127 BLAKE2B 158cddc9672713ed156403cf3a9663046978d692aec6b0a0785508d9ee612546e21afcd4cbaf5c9b76aec4c22cc2083615503aea553336cb01533762336fc4f9 SHA512 7e419ed8ad9dd1cf76ac9e7df82f89d93693299a80925f189b96416fd99b0217dd42918e577c0b9dc64c2fd7b6300b81e3b1b4bb176c940cdae4eff4ea303c76 +DIST cfg-if-0.1.5.crate 7363 BLAKE2B ca668ccdb4cf082d2b874976e6ac38e85e2618430cbb5123f9359e328e38b61e59a492116bd6a9f8ed986796095a763d148291378d32ac3a9e7d501c5ac967fb SHA512 48ab0bb1fe89d6e388ac4bf851b9aaed6479f9ca7da62945e2ebe58800b5201897feaf6aabd2b028110b0205b33d5abca7f02826ab3c688647b944e7140e6d94 +DIST clap-2.32.0.crate 196073 BLAKE2B c262241a3ad1d0f944467f4ea9884ca3dc05b5e05656fd7b73700e0daeec035c07a5d06316cc1273e37f74f2c00429b0ee99da298804dc4deff9a252ca56ce07 SHA512 ee2a66cec0d867d73fce35c055bcac77cc3ea9537b355be04be3ee17ddabefebfe3649cbdfc30ea356c54cf9f066369540eac4f5dc67e60cdadc9c66be014ef0 +DIST cloudabi-0.0.3.crate 22156 BLAKE2B e12054fd474754031f8f5038d5e2829e1586db974d38230cfd8774db591a58dfdcaea9fb61fc0b35366889d348b2c73ceaabbb462f1abeeffeaab167013c986f SHA512 691ed793e9b35ba382f03897f4c0efc31a528394862a27b814ba8993ad30bbe0ebc9808484baf580e8b69d9c13ad1612776a1efd0f6981545b420139ff83592c +DIST constant_time_eq-0.1.3.crate 1279 BLAKE2B 9c67df59e184ff479c5bcd0e11df936b0cac0ab899fe7c4a578df49c9ec6e8c
[gentoo-commits] repo/gentoo:master commit in: sys-apps/input-utils/
commit: 165b0822b2b6a111b478fa84809363cf97039511 Author: Anthony G. Basile gentoo org> AuthorDate: Sun Dec 9 00:05:03 2018 + Commit: Anthony G. Basile gentoo org> CommitDate: Sun Dec 9 00:05:03 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=165b0822 sys-apps/input-utils: keyword ~arm Signed-off-by: Anthony G. Basile gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 sys-apps/input-utils/input-utils-1.2.ebuild | 4 ++-- sys-apps/input-utils/input-utils-1.3.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sys-apps/input-utils/input-utils-1.2.ebuild b/sys-apps/input-utils/input-utils-1.2.ebuild index 5888d0a91c0..f2e8b5042ff 100644 --- a/sys-apps/input-utils/input-utils-1.2.ebuild +++ b/sys-apps/input-utils/input-utils-1.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -13,7 +13,7 @@ SRC_URI="https://www.kraxel.org/releases/input/${MY_P}.tar.gz"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 ppc x86" +KEYWORDS="amd64 ~arm ppc x86" IUSE="" DEPEND="" diff --git a/sys-apps/input-utils/input-utils-1.3.ebuild b/sys-apps/input-utils/input-utils-1.3.ebuild index 93fbcd1b947..2821ff52762 100644 --- a/sys-apps/input-utils/input-utils-1.3.ebuild +++ b/sys-apps/input-utils/input-utils-1.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -12,7 +12,7 @@ SRC_URI="https://www.kraxel.org/releases/input/${MY_P}.tar.gz"; LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="~amd64 ~arm ~ppc ~x86" IUSE="" DEPEND=""
[gentoo-commits] repo/gentoo:master commit in: net-misc/zerotier/
commit: 4034a0762899e4e1945c3521f4382dd12ab2b980 Author: Anthony G. Basile gentoo org> AuthorDate: Sun Dec 9 00:02:07 2018 + Commit: Anthony G. Basile gentoo org> CommitDate: Sun Dec 9 00:02:07 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4034a076 net-misc/zerotier: keyword ~arm Signed-off-by: Anthony G. Basile gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 net-misc/zerotier/zerotier-1.2.12.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-misc/zerotier/zerotier-1.2.12.ebuild b/net-misc/zerotier/zerotier-1.2.12.ebuild index 7d2f788b42e..fa68ddc1c4f 100644 --- a/net-misc/zerotier/zerotier-1.2.12.ebuild +++ b/net-misc/zerotier/zerotier-1.2.12.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -11,7 +11,7 @@ SRC_URI="https://github.com/zerotier/ZeroTierOne/archive/${PV}.tar.gz -> ${P}.ta LICENSE="GPL-3" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~arm ~x86" S="${WORKDIR}/ZeroTierOne-${PV}"
[gentoo-commits] repo/gentoo:master commit in: net-analyzer/nsca/
commit: d3426a237936152232abefed277df4f7c027b0d2 Author: Anthony G. Basile gentoo org> AuthorDate: Sat Dec 8 23:59:34 2018 + Commit: Anthony G. Basile gentoo org> CommitDate: Sat Dec 8 23:59:34 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3426a23 net-analyzer/nsca: keyword ~arm Signed-off-by: Anthony G. Basile gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 net-analyzer/nsca/nsca-2.7.2-r103.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-analyzer/nsca/nsca-2.7.2-r103.ebuild b/net-analyzer/nsca/nsca-2.7.2-r103.ebuild index 1f25434494e..d342f7a3adc 100644 --- a/net-analyzer/nsca/nsca-2.7.2-r103.ebuild +++ b/net-analyzer/nsca/nsca-2.7.2-r103.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=4 @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/nagios/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 ppc ppc64 sparc x86" +KEYWORDS="alpha amd64 ~arm ppc ppc64 sparc x86" IUSE="tcpd +crypt minimal" DEPEND="crypt? ( >=dev-libs/libmcrypt-2.5.1-r4 )
[gentoo-commits] repo/gentoo:master commit in: dev-libs/libgpiod/
commit: e20744ec99c0a7ddac6084754bbb26572516bdf4 Author: Anthony G. Basile gentoo org> AuthorDate: Sat Dec 8 23:56:44 2018 + Commit: Anthony G. Basile gentoo org> CommitDate: Sat Dec 8 23:56:44 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e20744ec dev-libs/libgpiod: keyword ~arm Signed-off-by: Anthony G. Basile gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 dev-libs/libgpiod/libgpiod-1.1.1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-libs/libgpiod/libgpiod-1.1.1.ebuild b/dev-libs/libgpiod/libgpiod-1.1.1.ebuild index 7cbe28bf2d3..c08b952a727 100644 --- a/dev-libs/libgpiod/libgpiod-1.1.1.ebuild +++ b/dev-libs/libgpiod/libgpiod-1.1.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -12,7 +12,7 @@ SRC_URI="https://mirrors.edge.kernel.org/pub/software/libs/libgpiod/libgpiod-1.1 LICENSE="LGPL-2.1" # Reflects the ABI of libgpiod.so SLOT="0/1" -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~arm ~x86" IUSE="static-libs +tools" multilib_src_configure() {
[gentoo-commits] repo/gentoo:master commit in: x11-misc/xcalib/
commit: f8f0bef7882a14efaf911a196082ad6b96a74624 Author: Anthony G. Basile gentoo org> AuthorDate: Sat Dec 8 23:52:20 2018 + Commit: Anthony G. Basile gentoo org> CommitDate: Sat Dec 8 23:53:28 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8f0bef7 x11-misc/xcalib: keyword ~arm Signed-off-by: Anthony G. Basile gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 x11-misc/xcalib/xcalib-0.9.0_p20161210.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x11-misc/xcalib/xcalib-0.9.0_p20161210.ebuild b/x11-misc/xcalib/xcalib-0.9.0_p20161210.ebuild index 3a3511979e2..39b237e5d26 100644 --- a/x11-misc/xcalib/xcalib-0.9.0_p20161210.ebuild +++ b/x11-misc/xcalib/xcalib-0.9.0_p20161210.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -12,7 +12,7 @@ SRC_URI="${HOMEPAGE}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="~amd64 ~arm ~ppc ~x86" IUSE="" RDEPEND="
[gentoo-commits] repo/gentoo:master commit in: sys-libs/glibc/
commit: e6466f91c3bed680622a69d533b79afdd9cbce8e Author: Matt Turner gentoo org> AuthorDate: Sat Dec 8 23:44:54 2018 + Commit: Matt Turner gentoo org> CommitDate: Sat Dec 8 23:44:54 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6466f91 sys-libs/glibc-2.27-r6: ppc stable, bug 666092 Signed-off-by: Matt Turner gentoo.org> sys-libs/glibc/glibc-2.27-r6.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-libs/glibc/glibc-2.27-r6.ebuild b/sys-libs/glibc/glibc-2.27-r6.ebuild index d39c6a02f72..2689b3a07fa 100644 --- a/sys-libs/glibc/glibc-2.27-r6.ebuild +++ b/sys-libs/glibc/glibc-2.27-r6.ebuild @@ -18,7 +18,7 @@ if [[ ${PV} == * ]]; then EGIT_REPO_URI="https://sourceware.org/git/glibc.git"; inherit git-r3 else - KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ~ppc ~ppc64 s390 sh sparc x86" + KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ~ppc64 s390 sh sparc x86" SRC_URI="mirror://gnu/glibc/${P}.tar.xz" fi
[gentoo-commits] repo/gentoo:master commit in: sys-libs/glibc/
commit: c061b5fd565564062624930d6ecc927016d3142a Author: Matt Turner gentoo org> AuthorDate: Sat Dec 8 23:44:57 2018 + Commit: Matt Turner gentoo org> CommitDate: Sat Dec 8 23:44:57 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c061b5fd sys-libs/glibc-2.27-r6: ppc64 stable, bug 666092 Signed-off-by: Matt Turner gentoo.org> sys-libs/glibc/glibc-2.27-r6.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-libs/glibc/glibc-2.27-r6.ebuild b/sys-libs/glibc/glibc-2.27-r6.ebuild index 2689b3a07fa..7125f84f4da 100644 --- a/sys-libs/glibc/glibc-2.27-r6.ebuild +++ b/sys-libs/glibc/glibc-2.27-r6.ebuild @@ -18,7 +18,7 @@ if [[ ${PV} == * ]]; then EGIT_REPO_URI="https://sourceware.org/git/glibc.git"; inherit git-r3 else - KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ~ppc64 s390 sh sparc x86" + KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86" SRC_URI="mirror://gnu/glibc/${P}.tar.xz" fi
[gentoo-commits] repo/gentoo:master commit in: profiles/arch/mips/
commit: 7cab211949e24292dfd1f84382120213f458098c Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 22:56:00 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 22:56:00 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cab2119 [QA] profiles/arch/mips: remove sys-power/upower-pm-utils Signed-off-by: Mikle Kolyada gentoo.org> profiles/arch/mips/package.use.mask | 1 - 1 file changed, 1 deletion(-) diff --git a/profiles/arch/mips/package.use.mask b/profiles/arch/mips/package.use.mask index a6722e9627a..0a804a3d67f 100644 --- a/profiles/arch/mips/package.use.mask +++ b/profiles/arch/mips/package.use.mask @@ -41,7 +41,6 @@ app-shells/bash-completion test # Mart Raudsepp (27 May 2017) # app-pda/libimobiledevice, app-pda/libplist and co not tested sys-power/upower ios -sys-power/upower-pm-utils ios gnome-base/gvfs ios # Mart Raudsepp (27 May 2017)
[gentoo-commits] repo/gentoo:master commit in: media-tv/kodi/
commit: 4e679fea24a1e4697e7fc348f68f2dd436550082 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 22:52:15 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 22:52:15 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e679fea media-tv/kodi: [QA] remove sys-power/upower-pm-utils dependency Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 media-tv/kodi/kodi-17.3-r1.ebuild | 11 +++ media-tv/kodi/kodi-17.6-r6.ebuild | 9 ++--- media-tv/kodi/kodi-17.6-r7.ebuild | 9 ++--- media-tv/kodi/kodi-17.6-r8.ebuild | 9 ++--- media-tv/kodi/kodi-17.6-r9.ebuild | 9 ++--- media-tv/kodi/kodi-17.6.ebuild | 11 +++ media-tv/kodi/kodi-18.0_beta5-r1.ebuild | 9 ++--- media-tv/kodi/kodi-18.0_beta5.ebuild| 8 +--- media-tv/kodi/kodi-18.0_rc1.ebuild | 9 ++--- 9 files changed, 19 insertions(+), 65 deletions(-) diff --git a/media-tv/kodi/kodi-17.3-r1.ebuild b/media-tv/kodi/kodi-17.3-r1.ebuild index b47d78e9149..17b5bb57e1e 100644 --- a/media-tv/kodi/kodi-17.3-r1.ebuild +++ b/media-tv/kodi/kodi-17.3-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -106,13 +106,8 @@ RDEPEND="${COMMON_DEPEND} ) !media-tv/xbmc udisks? ( sys-fs/udisks:0 ) - upower? ( - systemd? ( sys-power/upower ) - !systemd? ( - || ( sys-power/upower-pm-utils sys-power/upower ) - ) - ) -" + upower? ( sys-power/upower )" + DEPEND="${COMMON_DEPEND} app-arch/bzip2 app-arch/unzip diff --git a/media-tv/kodi/kodi-17.6-r6.ebuild b/media-tv/kodi/kodi-17.6-r6.ebuild index 6b505c1116f..c2446a8bac1 100644 --- a/media-tv/kodi/kodi-17.6-r6.ebuild +++ b/media-tv/kodi/kodi-17.6-r6.ebuild @@ -106,13 +106,8 @@ RDEPEND="${COMMON_DEPEND} ) !media-tv/xbmc udisks? ( sys-fs/udisks:0 ) - upower? ( - systemd? ( sys-power/upower ) - !systemd? ( - || ( sys-power/upower-pm-utils sys-power/upower ) - ) - ) -" + upower? ( sys-power/upower )" + DEPEND="${COMMON_DEPEND} app-arch/bzip2 app-arch/unzip diff --git a/media-tv/kodi/kodi-17.6-r7.ebuild b/media-tv/kodi/kodi-17.6-r7.ebuild index 31259159e9d..cd7898f209d 100644 --- a/media-tv/kodi/kodi-17.6-r7.ebuild +++ b/media-tv/kodi/kodi-17.6-r7.ebuild @@ -104,13 +104,8 @@ RDEPEND="${COMMON_DEPEND} ) !media-tv/xbmc udisks? ( sys-fs/udisks:0 ) - upower? ( - systemd? ( sys-power/upower ) - !systemd? ( - || ( sys-power/upower-pm-utils sys-power/upower ) - ) - ) -" + upower? ( sys-power/upower )" + DEPEND="${COMMON_DEPEND} app-arch/bzip2 app-arch/unzip diff --git a/media-tv/kodi/kodi-17.6-r8.ebuild b/media-tv/kodi/kodi-17.6-r8.ebuild index 9fc40bceaeb..add7aad92ba 100644 --- a/media-tv/kodi/kodi-17.6-r8.ebuild +++ b/media-tv/kodi/kodi-17.6-r8.ebuild @@ -104,13 +104,8 @@ RDEPEND="${COMMON_DEPEND} ) !media-tv/xbmc udisks? ( sys-fs/udisks:0 ) - upower? ( - systemd? ( sys-power/upower ) - !systemd? ( - || ( sys-power/upower-pm-utils sys-power/upower ) - ) - ) -" + upower? ( sys-power/upower )" + DEPEND="${COMMON_DEPEND} app-arch/bzip2 app-arch/unzip diff --git a/media-tv/kodi/kodi-17.6-r9.ebuild b/media-tv/kodi/kodi-17.6-r9.ebuild index 08e9b06a101..8c702b973d4 100644 --- a/media-tv/kodi/kodi-17.6-r9.ebuild +++ b/media-tv/kodi/kodi-17.6-r9.ebuild @@ -105,13 +105,8 @@ RDEPEND="${COMMON_DEPEND} ) !media-tv/xbmc udisks? ( sys-fs/udisks:0 ) - upower? ( - systemd? ( sys-power/upower ) - !systemd? ( - || ( sys-power/upower-pm-utils sys-power/upower ) - ) - ) -" + upower? ( sys-power/upower )" + DEPEND="${COMMON_DEPEND} app-arch/bzip2 app-arch/unzip diff --git a/media-tv/kodi/kodi-17.6.ebuild b/media-tv/kodi/kodi-17.6.ebuild index ed06b92fcf6..fe74f13692d 100644 --- a/media-tv/kodi/kodi-17.6.ebuild +++ b/media-tv/kodi/kodi-17.6.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -107,13 +107,8 @@ RDEPEND="${COMMON_DEPEND} ) !media-tv/xbmc udisks? ( sys-fs/udisks:0 ) - upower? ( - systemd? ( sys-power/upower ) - !systemd? ( - || ( sys-power/upower-pm-utils sys-power/upower ) - ) - ) -" +
[gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmbattery/
commit: 58570828cd42ef58764ec115a395e593d6d11e00 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 22:37:01 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 22:37:01 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58570828 x11-plugins/wmbattery: [QA] remove sys-power/upower-pm-utils dependency Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 x11-plugins/wmbattery/wmbattery-2.50.ebuild | 4 ++-- x11-plugins/wmbattery/wmbattery-2.51.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/x11-plugins/wmbattery/wmbattery-2.50.ebuild b/x11-plugins/wmbattery/wmbattery-2.50.ebuild index c6f30f98845..82511c3347c 100644 --- a/x11-plugins/wmbattery/wmbattery-2.50.ebuild +++ b/x11-plugins/wmbattery/wmbattery-2.50.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -17,7 +17,7 @@ RDEPEND="apm? ( sys-apps/apmd ) x11-libs/libX11 x11-libs/libXext x11-libs/libXpm - upower? ( || ( >=sys-power/upower-0.9.23 sys-power/upower-pm-utils ) )" + upower? ( >=sys-power/upower-0.9.23 )" DEPEND="${RDEPEND} virtual/pkgconfig" diff --git a/x11-plugins/wmbattery/wmbattery-2.51.ebuild b/x11-plugins/wmbattery/wmbattery-2.51.ebuild index e3d6ee18bfe..686ef8df70e 100644 --- a/x11-plugins/wmbattery/wmbattery-2.51.ebuild +++ b/x11-plugins/wmbattery/wmbattery-2.51.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -17,7 +17,7 @@ RDEPEND="apm? ( sys-apps/apmd ) x11-libs/libX11 x11-libs/libXext x11-libs/libXpm - upower? ( || ( >=sys-power/upower-0.9.23 sys-power/upower-pm-utils ) )" + upower? ( >=sys-power/upower-0.9.23 )" DEPEND="${RDEPEND} virtual/pkgconfig"
[gentoo-commits] repo/gentoo:master commit in: x11-misc/light-locker/
commit: 0df1d9a1861eb06f9cdc971978c6a540f3c19562 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 22:35:00 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 22:35:00 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0df1d9a1 x11-misc/light-locker: [QA] remove sys-power/upower-pm-utils dependency Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 x11-misc/light-locker/light-locker-1.7.0-r1.ebuild | 4 ++-- x11-misc/light-locker/light-locker-1.7.0.ebuild| 4 ++-- x11-misc/light-locker/light-locker-1.8.0.ebuild| 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/x11-misc/light-locker/light-locker-1.7.0-r1.ebuild b/x11-misc/light-locker/light-locker-1.7.0-r1.ebuild index 51411789d10..e8c99ce5fec 100644 --- a/x11-misc/light-locker/light-locker-1.7.0-r1.ebuild +++ b/x11-misc/light-locker/light-locker-1.7.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -27,7 +27,7 @@ RDEPEND="dev-libs/dbus-glib gtk3? ( x11-libs/gtk+:3 ) screensaver? ( x11-libs/libXScrnSaver ) systemd? ( sys-apps/systemd ) - upower? ( || ( sys-power/upower sys-power/upower-pm-utils ) )" + upower? ( sys-power/upower )" DEPEND="${RDEPEND} dev-lang/perl dev-perl/XML-Parser diff --git a/x11-misc/light-locker/light-locker-1.7.0.ebuild b/x11-misc/light-locker/light-locker-1.7.0.ebuild index bb354a05739..e5e721f142e 100644 --- a/x11-misc/light-locker/light-locker-1.7.0.ebuild +++ b/x11-misc/light-locker/light-locker-1.7.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -27,7 +27,7 @@ RDEPEND="dev-libs/dbus-glib gtk3? ( x11-libs/gtk+:3 ) screensaver? ( x11-libs/libXScrnSaver ) systemd? ( sys-apps/systemd ) - upower? ( || ( sys-power/upower sys-power/upower-pm-utils ) )" + upower? ( sys-power/upower )" DEPEND="${RDEPEND} dev-lang/perl dev-perl/XML-Parser diff --git a/x11-misc/light-locker/light-locker-1.8.0.ebuild b/x11-misc/light-locker/light-locker-1.8.0.ebuild index bb354a05739..e5e721f142e 100644 --- a/x11-misc/light-locker/light-locker-1.8.0.ebuild +++ b/x11-misc/light-locker/light-locker-1.8.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -27,7 +27,7 @@ RDEPEND="dev-libs/dbus-glib gtk3? ( x11-libs/gtk+:3 ) screensaver? ( x11-libs/libXScrnSaver ) systemd? ( sys-apps/systemd ) - upower? ( || ( sys-power/upower sys-power/upower-pm-utils ) )" + upower? ( sys-power/upower )" DEPEND="${RDEPEND} dev-lang/perl dev-perl/XML-Parser
[gentoo-commits] repo/gentoo:master commit in: mate-extra/mate-power-manager/
commit: 92732ffd7cb4f1ebbead3e84741b64c74dd0d36e Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 22:27:02 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 22:27:02 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92732ffd mate-extra/mate-power-manager: [QA] remove sys-power/upower-pm-utils dependency Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 mate-extra/mate-power-manager/mate-power-manager-1.18.1.ebuild | 7 +++ mate-extra/mate-power-manager/metadata.xml | 3 --- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/mate-extra/mate-power-manager/mate-power-manager-1.18.1.ebuild b/mate-extra/mate-power-manager/mate-power-manager-1.18.1.ebuild index d1f7a113de8..549c4b53259 100644 --- a/mate-extra/mate-power-manager/mate-power-manager-1.18.1.ebuild +++ b/mate-extra/mate-power-manager/mate-power-manager-1.18.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -13,7 +13,7 @@ DESCRIPTION="A session daemon for MATE that makes it easy to manage your laptop LICENSE="GPL-2" SLOT="0" -IUSE="+applet gnome-keyring pm-utils policykit systemd test" +IUSE="+applet gnome-keyring policykit systemd test" # Interactive testsuite. RESTRICT="test" @@ -33,8 +33,7 @@ COMMON_DEPEND=">=dev-libs/dbus-glib-0.70:0 x11-libs/pango:0 applet? ( >=mate-base/mate-panel-1.17.0 ) gnome-keyring? ( >=gnome-base/libgnome-keyring-3:0 ) - pm-utils? ( >=sys-power/upower-pm-utils-0.9.23 ) - !pm-utils? ( >=sys-power/upower-0.9.23:= ) + >=sys-power/upower-0.9.23:= systemd? ( sys-apps/systemd ) !systemd? ( >=sys-auth/consolekit-0.9.2 )" diff --git a/mate-extra/mate-power-manager/metadata.xml b/mate-extra/mate-power-manager/metadata.xml index 40d4d7734ae..ff952f0b317 100644 --- a/mate-extra/mate-power-manager/metadata.xml +++ b/mate-extra/mate-power-manager/metadata.xml @@ -7,9 +7,6 @@ Enable building of the MATE applet. - Adds support for suspend/resume using - upower-pm-utils instead of - sys-power/upower mate-desktop/mate-power-manager
[gentoo-commits] repo/gentoo:master commit in: mate-extra/mate-power-manager/
commit: 1110069e61c069e960cbbffb4d0604af9ca4414d Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 22:28:04 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 22:28:04 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1110069e mate-extra/mate-power-manager: [QA] remove sys-power/upower-pm-utils dependency Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 mate-extra/mate-power-manager/mate-power-manager-1.18.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mate-extra/mate-power-manager/mate-power-manager-1.18.1.ebuild b/mate-extra/mate-power-manager/mate-power-manager-1.18.1.ebuild index 549c4b53259..070c84c13b3 100644 --- a/mate-extra/mate-power-manager/mate-power-manager-1.18.1.ebuild +++ b/mate-extra/mate-power-manager/mate-power-manager-1.18.1.ebuild @@ -33,7 +33,7 @@ COMMON_DEPEND=">=dev-libs/dbus-glib-0.70:0 x11-libs/pango:0 applet? ( >=mate-base/mate-panel-1.17.0 ) gnome-keyring? ( >=gnome-base/libgnome-keyring-3:0 ) - >=sys-power/upower-0.9.23:= + >=sys-power/upower-0.9.23:= systemd? ( sys-apps/systemd ) !systemd? ( >=sys-auth/consolekit-0.9.2 )"
[gentoo-commits] repo/gentoo:master commit in: mate-base/mate-applets/
commit: 9e86c8b76543dfd526b72ca3b4b833ec0285e12b Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 22:22:23 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 22:22:23 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e86c8b7 mate-base/mate-applets: [QA] remove sys-power/upower-pm-utils dependency Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 mate-base/mate-applets/mate-applets-1.18.2.ebuild | 5 + 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/mate-base/mate-applets/mate-applets-1.18.2.ebuild b/mate-base/mate-applets/mate-applets-1.18.2.ebuild index d1214ac..fff5a4222fc 100644 --- a/mate-base/mate-applets/mate-applets-1.18.2.ebuild +++ b/mate-base/mate-applets/mate-applets-1.18.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -41,11 +41,8 @@ COMMON_DEPEND="${PYTHON_DEPS} virtual/libintl:0 policykit? ( >=sys-auth/polkit-0.97:0 ) upower? ( - || ( >=sys-power/upower-0.9.23 - >=sys-power/upower-pm-utils-0.9.23 ) - ) !!net-analyzer/mate-netspeed" RDEPEND="${COMMON_DEPEND}
[gentoo-commits] repo/gentoo:master commit in: lxqt-base/lxqt-powermanagement/
commit: aa6dd077e690a17d82f70da77bb46e94c3141e07 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 22:18:35 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 22:18:44 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa6dd077 lxqt-base/lxqt-powermanagement: [QA] remove sys-power/upower-pm-utils dependency Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 lxqt-base/lxqt-powermanagement/lxqt-powermanagement-0.13.0.ebuild | 5 + 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lxqt-base/lxqt-powermanagement/lxqt-powermanagement-0.13.0.ebuild b/lxqt-base/lxqt-powermanagement/lxqt-powermanagement-0.13.0.ebuild index b69232cfa9c..3a08bbbe700 100644 --- a/lxqt-base/lxqt-powermanagement/lxqt-powermanagement-0.13.0.ebuild +++ b/lxqt-base/lxqt-powermanagement/lxqt-powermanagement-0.13.0.ebuild @@ -30,10 +30,7 @@ RDEPEND=" kde-frameworks/kidletime:5 kde-frameworks/solid:5 =lxqt-base/liblxqt-$(ver_cut 1-2)* - || ( - sys-power/upower - sys-power/upower-pm-utils - ) + sys-power/upower !lxqt-base/lxqt-common " DEPEND="${RDEPEND}
[gentoo-commits] repo/gentoo:master commit in: x11-wm/herbstluftwm/
commit: c35eae654f18fd460c698f27bb541b9ed4c56794 Author: Francesco Turco fastmail fm> AuthorDate: Wed Nov 14 19:56:22 2018 + Commit: Patrice Clement gentoo org> CommitDate: Sat Dec 8 22:17:22 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c35eae65 x11-wm/herbstluftwm: use HTTPS for HOMEPAGE and SRC_URI. Signed-off-by: Francesco Turco fastmail.fm> Closes: https://github.com/gentoo/gentoo/pull/10420 Signed-off-by: Patrice Clement gentoo.org> x11-wm/herbstluftwm/herbstluftwm-0.7.0.ebuild | 6 +++--- x11-wm/herbstluftwm/herbstluftwm-.ebuild | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/x11-wm/herbstluftwm/herbstluftwm-0.7.0.ebuild b/x11-wm/herbstluftwm/herbstluftwm-0.7.0.ebuild index 3bf86325130..0f5e7d231d5 100644 --- a/x11-wm/herbstluftwm/herbstluftwm-0.7.0.ebuild +++ b/x11-wm/herbstluftwm/herbstluftwm-0.7.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -9,13 +9,13 @@ if [[ ${PV} == * ]] ; then EGIT_REPO_URI="https://github.com/herbstluftwm/herbstluftwm.git"; EXTRA_DEPEND="app-text/asciidoc" else - SRC_URI="http://herbstluftwm.org/tarballs/${P}.tar.gz"; + SRC_URI="https://herbstluftwm.org/tarballs/${P}.tar.gz"; KEYWORDS="amd64 x86" EXTRA_DEPEND="" fi DESCRIPTION="A manual tiling window manager for X" -HOMEPAGE="http://herbstluftwm.org"; +HOMEPAGE="https://herbstluftwm.org/"; LICENSE="BSD-2" SLOT="0" diff --git a/x11-wm/herbstluftwm/herbstluftwm-.ebuild b/x11-wm/herbstluftwm/herbstluftwm-.ebuild index ee1ebe87276..162cddd0578 100644 --- a/x11-wm/herbstluftwm/herbstluftwm-.ebuild +++ b/x11-wm/herbstluftwm/herbstluftwm-.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -9,13 +9,13 @@ if [[ ${PV} == * ]] ; then EGIT_REPO_URI="https://github.com/herbstluftwm/herbstluftwm.git"; EXTRA_DEPEND="app-text/asciidoc" else - SRC_URI="http://herbstluftwm.org/tarballs/${P}.tar.gz"; + SRC_URI="https://herbstluftwm.org/tarballs/${P}.tar.gz"; KEYWORDS="~amd64 ~x86" EXTRA_DEPEND="" fi DESCRIPTION="A manual tiling window manager for X" -HOMEPAGE="http://herbstluftwm.org"; +HOMEPAGE="https://herbstluftwm.org/"; LICENSE="BSD-2" SLOT="0"
[gentoo-commits] repo/gentoo:master commit in: app-dicts/aspell-en/
commit: edb5b79a1205e279b304f64095ec888078812f1d Author: Pedro Arizmendi zoho com> AuthorDate: Fri Nov 23 13:04:14 2018 + Commit: Patrice Clement gentoo org> CommitDate: Sat Dec 8 22:17:08 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edb5b79a app-dicts/aspell-en: version bump to 2018.04.16. Signed-off-by: Pedro Arizmendi zoho.com> Closes: https://github.com/gentoo/gentoo/pull/10465 Signed-off-by: Patrice Clement gentoo.org> app-dicts/aspell-en/Manifest | 1 + app-dicts/aspell-en/aspell-en-2018.04.16.0.ebuild | 15 +++ 2 files changed, 16 insertions(+) diff --git a/app-dicts/aspell-en/Manifest b/app-dicts/aspell-en/Manifest index 8f9da95624d..7d57a4176d2 100644 --- a/app-dicts/aspell-en/Manifest +++ b/app-dicts/aspell-en/Manifest @@ -1,2 +1,3 @@ DIST aspell6-en-2016.11.20-0.tar.bz2 184650 BLAKE2B 2ece9532bb14243a1470048a16f29df2e90fa6f9399c9c66831f7f4a743be8d6c257a3cd36e5b506ccf8968f03cdd0dd785302e135007e9dd23f8c58767f1d39 SHA512 acf4c0bac9dba5b001481da159768ee65decea480c6c601ca0733091558406a84a7d8efb47c1806b032d8e22e96927787a29f8e4e93563a01361e4cfaf3a3519 DIST aspell6-en-2017.01.22-0.tar.bz2 184409 BLAKE2B 8a2e214996f412943581a2ac31c315e585ba234484b44d7563b27338dfbbc2947d19854fcb5417736a1c32b7fd8d6b033efc86d2a6dd81256218a72df09eab86 SHA512 2721ffdc7f2823b9104a0d7cfa10d1ba9581432dcbb2584b9519e56a621520177eef55ea5bf9803503c429201141ce0ed4001e75c6b9385bca2fbf8986617a66 +DIST aspell6-en-2018.04.16-0.tar.bz2 185332 BLAKE2B 98b3d39463a26473450778d3f3763eb11739deb1d5d28db5f7bc0ef4dbfa977435fc0721d26a39ce2bfed9564985a62fd199ec2ba59154a327b6429109966d6e SHA512 70447f5f11a6a2d96e58376ac06e78add59e4eb237ca40ed0752f481dabe1a6e9e227fd20ba95a5612de1bb4357cd65760a31c94efe66f8499b9ed031e9846c2 diff --git a/app-dicts/aspell-en/aspell-en-2018.04.16.0.ebuild b/app-dicts/aspell-en/aspell-en-2018.04.16.0.ebuild new file mode 100644 index 000..c97317a5844 --- /dev/null +++ b/app-dicts/aspell-en/aspell-en-2018.04.16.0.ebuild @@ -0,0 +1,15 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +ASPELL_LANG="English (US, British, Canadian)" +ASPELL_VERSION=6 + +inherit aspell-dict-r1 versionator + +SRC_URI="mirror://gnu/aspell/dict/${ASPELL_SPELLANG}/${PN%-*}${ASPELL_VERSION}-${PN#*-}-$(replace_version_separator 3 '-').tar.bz2" + +LICENSE="myspell-en_CA-KevinAtkinson public-domain Princeton Ispell" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +IUSE=""
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Text-VimColor/
commit: f1e53b51bd755c30f90db2bd4c7eb40bdaa533b1 Author: Patrice Clement gentoo org> AuthorDate: Thu Dec 6 20:54:26 2018 + Commit: Patrice Clement gentoo org> CommitDate: Sat Dec 8 22:16:37 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1e53b51 dev-perl/Text-VimColor: version bump. Signed-off-by: Patrice Clement gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 .../Text-VimColor/Text-VimColor-0.290.0.ebuild | 37 ++ 1 file changed, 37 insertions(+) diff --git a/dev-perl/Text-VimColor/Text-VimColor-0.290.0.ebuild b/dev-perl/Text-VimColor/Text-VimColor-0.290.0.ebuild new file mode 100644 index 000..65b1651bc50 --- /dev/null +++ b/dev-perl/Text-VimColor/Text-VimColor-0.290.0.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DIST_VERSION=0.28 +DIST_AUTHOR=RWSTAUNER + +inherit perl-module + +DESCRIPTION="Syntax highlighting using vim" +HOMEPAGE="https://github.com/rwstauner/Text-VimColor"; + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND="app-editors/vim[-minimal] + virtual/perl-Carp + dev-perl/File-ShareDir + virtual/perl-File-Temp + virtual/perl-Getopt-Long + virtual/perl-IO + >=dev-perl/Path-Class-0.40.0 + >=virtual/perl-Term-ANSIColor-1.30.0 +" +DEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker + >=dev-perl/File-ShareDir-Install-0.60.0 + test? ( + virtual/perl-Exporter + virtual/perl-File-Spec + dev-perl/Test-File-ShareDir + >=virtual/perl-Test-Simple-0.880.0 + dev-perl/XML-Parser + ) +"
[gentoo-commits] repo/gentoo:master commit in: app-misc/pip3line/
commit: ba60ed0e19d82ec34f3a7e5cddfe14e6e7c2045f Author: Gabriel Caudrelier gmail com> AuthorDate: Wed Dec 5 03:27:35 2018 + Commit: Patrice Clement gentoo org> CommitDate: Sat Dec 8 22:17:10 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba60ed0e app-misc/pip3line: version bump to 3.5.5. Package-Manager: Portage-2.3.51, Repoman-2.3.11 Signed-off-by: Gabriel Caudrelier gmail.com> Closes: https://github.com/gentoo/gentoo/pull/10575 Signed-off-by: Patrice Clement gentoo.org> app-misc/pip3line/Manifest | 1 + app-misc/pip3line/pip3line-3.5.5.ebuild | 87 + 2 files changed, 88 insertions(+) diff --git a/app-misc/pip3line/Manifest b/app-misc/pip3line/Manifest index 49dcda22a14..7d9839be610 100644 --- a/app-misc/pip3line/Manifest +++ b/app-misc/pip3line/Manifest @@ -1 +1,2 @@ DIST pip3line-3.5.4.tar.gz 732872 BLAKE2B e544a2e1af958f3b1ef2e523d8489c807976523109ef8cc73f2c43b543ba9bd0b48d49009637d386e69f7768db6e2bd5a8f098d30dbd199a0b3d6bdaf782c103 SHA512 4a5421e4bf197d8ba2802c3007cfdd4d75a8c356f5bd8774d7f50bb3301e6beb52cc06f7d3486e85c3eaa16d192643afeb00b95e4d174ce16665b509e522ee6a +DIST pip3line-3.5.5.tar.gz 733385 BLAKE2B e9577fb02d778b689d1c3f5849f714b7d27a5ad49a7a68e412a19cb8251e7ca1d76d0a046bfe10db2257593ccba4f1aa5fff0f34c317975f75ef347f50172088 SHA512 95cbc567f1a7f2bcbc07fe7d560829d9538c126a2748b762fcf505bad47926376abea9d8eaba8670f4c3826b988ea1ea1338faf625a6cdf8db17f457af4edbbb diff --git a/app-misc/pip3line/pip3line-3.5.5.ebuild b/app-misc/pip3line/pip3line-3.5.5.ebuild new file mode 100644 index 000..9789c01998c --- /dev/null +++ b/app-misc/pip3line/pip3line-3.5.5.ebuild @@ -0,0 +1,87 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_{4,5,6,7}} ) + +inherit cmake-utils python-r1 python-utils-r1 + +DESCRIPTION="Raw bytes manipulation, transformations (decoding and more) and interception" +HOMEPAGE="https://github.com/metrodango/pip3line"; + +if [[ ${PV} == * ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/metrodango/pip3line.git"; + EGIT_BRANCH="master" +else + SRC_URI="https://github.com/metrodango/pip3line/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-3" +SLOT="0" + +# A few comments +# the ssl flag is just there to enable the plugin for low level crypto algorithms. +# It has nothing to do with the SSL/TLS protocol itself. + +IUSE="distorm python qscintilla ssl" + +RDEPEND=" + ${PYTHON_DEPS} + dev-qt/qtconcurrent:5 + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtnetwork:5 + dev-qt/qtsvg:5 + dev-qt/qtwidgets:5 + dev-qt/qtxmlpatterns:5 + qscintilla? ( x11-libs/qscintilla ) + ssl? ( dev-libs/openssl:0= )" + +DEPEND="${RDEPEND} + distorm? ( dev-vcs/git )" + +src_configure() { + + local mycmakeargs=( + -DBASIC=yes + -DWITH_DISTORM=$(usex distorm) + -DWITH_OPENSSL=$(usex ssl) + -DWITH_SCINTILLA=$(usex qscintilla) + ) + + # distorm is statically linked, due to insufficiencies + # in the current distorm64 package + + if use distorm; then + mycmakeargs+=(-DWITH_DISTORM_LINK_STATICALLY=ON) + fi + + if use python; then + local targets=( ${PYTHON_TARGETS} ) + for target in ${targets[@]}; do + if python_is_python3 ${target}; then + python_export ${target} PYTHON PYTHON_LIBPATH PYTHON_INCLUDEDIR + mycmakeargs+=(-DWITH_PYTHON3=ON + -DPYTHON3_INCLUDE_DIRS=${PYTHON_INCLUDEDIR} + -DPYTHON3_LIBRARIES=${PYTHON_LIBPATH} + ) + break + fi + done + for target in ${targets[@]}; do + if ! python_is_python3 ${target}; then + python_export ${target} PYTHON PYTHON_LIBPATH PYTHON_INCLUDEDIR + mycmakeargs+=(-DWITH_PYTHON27=ON + -DPYTHON27_INCLUDE_DIRS=${PYTHON_INCLUDEDIR} + -DPYTHON27_LIBRARIES=${PYTHON_LIBPATH} + ) + break + fi + done + fi + + cmake-utils_src_configure +}
[gentoo-commits] repo/gentoo:master commit in: x11-wm/icewm/
commit: 5348997da27598ee66d7e7cbd9d6231951cd2465 Author: Francesco Turco fastmail fm> AuthorDate: Thu Nov 15 20:57:56 2018 + Commit: Patrice Clement gentoo org> CommitDate: Sat Dec 8 22:17:27 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5348997d x11-wm/icewm: update HOMEPAGE. Signed-off-by: Francesco Turco fastmail.fm> Closes: https://github.com/gentoo/gentoo/pull/10425 Signed-off-by: Patrice Clement gentoo.org> x11-wm/icewm/icewm-1.4.2.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x11-wm/icewm/icewm-1.4.2.ebuild b/x11-wm/icewm/icewm-1.4.2.ebuild index 328bcf3ab89..e3ae5642b7f 100644 --- a/x11-wm/icewm/icewm-1.4.2.ebuild +++ b/x11-wm/icewm/icewm-1.4.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -6,7 +6,7 @@ EAPI=6 inherit autotools eutils DESCRIPTION="Ice Window Manager with Themes" -HOMEPAGE="http://www.icewm.org/ https://github.com/bbidulock/icewm"; +HOMEPAGE="https://ice-wm.org/ https://github.com/bbidulock/icewm"; LICENSE="GPL-2" SRC_URI="https://github.com/bbidulock/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
[gentoo-commits] repo/gentoo:master commit in: lxde-base/lxsession/
commit: 3b692cb9efa5d1abb1708b0e424921f65894f603 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 22:16:03 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 22:16:03 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b692cb9 lxde-base/lxsession: [QA] remove sys-power/upower-pm-utils dependency Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 lxde-base/lxsession/lxsession-0.5.2.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lxde-base/lxsession/lxsession-0.5.2.ebuild b/lxde-base/lxsession/lxsession-0.5.2.ebuild index 612fe3e4ccb..84ca13270d2 100644 --- a/lxde-base/lxsession/lxsession-0.5.2.ebuild +++ b/lxde-base/lxsession/lxsession-0.5.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -29,7 +29,7 @@ COMMON_DEPEND=" RDEPEND="${COMMON_DEPEND} !lxde-base/lxsession-edit sys-apps/lsb-release - upower? ( || ( sys-power/upower sys-power/upower-pm-utils ) ) + upower? ( sys-power/upower ) " DEPEND="${COMMON_DEPEND} $(vala_depend)
[gentoo-commits] repo/gentoo:master commit in: app-misc/tracker/
commit: cccf4af530495b33312e1c0cc8ac77eb129fdf97 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 22:14:04 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 22:14:04 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cccf4af5 app-misc/tracker: [QA] remove sys-power/upower-pm-utils dependency Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 app-misc/tracker/tracker-1.12.4.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-misc/tracker/tracker-1.12.4.ebuild b/app-misc/tracker/tracker-1.12.4.ebuild index 0cc6d681e2d..509c22fab24 100644 --- a/app-misc/tracker/tracker-1.12.4.ebuild +++ b/app-misc/tracker/tracker-1.12.4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -64,7 +64,7 @@ RDEPEND=" iptc? ( media-libs/libiptcdata ) iso? ( >=sys-libs/libosinfo-0.2.9:= ) jpeg? ( virtual/jpeg:0 ) - upower? ( || ( >=sys-power/upower-0.9 sys-power/upower-pm-utils ) ) + upower? ( >=sys-power/upower-0.9 ) mp3? ( >=media-libs/taglib-1.6 ) networkmanager? ( >=net-misc/networkmanager-0.8:= ) pdf? (
[gentoo-commits] repo/gentoo:master commit in: gnome-extra/cinnamon/
commit: 9672a7a2ff32898c692d7d47cf000f1287a11506 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 22:11:46 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 22:11:46 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9672a7a2 gnome-extra/cinnamon: [QA] remove sys-power/upower-pm-utils dependency Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 gnome-extra/cinnamon/cinnamon-3.6.6-r2.ebuild | 4 ++-- gnome-extra/cinnamon/cinnamon-3.8.8.ebuild| 4 ++-- gnome-extra/cinnamon/cinnamon-4.0.3.ebuild| 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/gnome-extra/cinnamon/cinnamon-3.6.6-r2.ebuild b/gnome-extra/cinnamon/cinnamon-3.6.6-r2.ebuild index 504464fac2a..17cda987055 100644 --- a/gnome-extra/cinnamon/cinnamon-3.6.6-r2.ebuild +++ b/gnome-extra/cinnamon/cinnamon-3.6.6-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -82,7 +82,7 @@ COMMON_DEPEND="${PYTHON_DEPS} RDEPEND="${COMMON_DEPEND} >=gnome-base/dconf-0.4.1 >=gnome-base/libgnomekbd-2.91.4[introspection] - || ( sys-power/upower[introspection] sys-power/upower-pm-utils[introspection] ) + sys-power/upower[introspection] >=gnome-extra/cinnamon-session-3.6 >=gnome-extra/cinnamon-settings-daemon-3.6 diff --git a/gnome-extra/cinnamon/cinnamon-3.8.8.ebuild b/gnome-extra/cinnamon/cinnamon-3.8.8.ebuild index 26e4c59984c..5be06789368 100644 --- a/gnome-extra/cinnamon/cinnamon-3.8.8.ebuild +++ b/gnome-extra/cinnamon/cinnamon-3.8.8.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -76,7 +76,7 @@ COMMON_DEPEND="${PYTHON_DEPS} RDEPEND="${COMMON_DEPEND} >=gnome-base/dconf-0.4.1 >=gnome-base/libgnomekbd-2.91.4[introspection] - || ( sys-power/upower[introspection] sys-power/upower-pm-utils[introspection] ) + sys-power/upower[introspection] >=gnome-extra/cinnamon-session-3.8 >=gnome-extra/cinnamon-settings-daemon-3.8 diff --git a/gnome-extra/cinnamon/cinnamon-4.0.3.ebuild b/gnome-extra/cinnamon/cinnamon-4.0.3.ebuild index bd5ffbd202e..817f2262cd3 100644 --- a/gnome-extra/cinnamon/cinnamon-4.0.3.ebuild +++ b/gnome-extra/cinnamon/cinnamon-4.0.3.ebuild @@ -78,7 +78,7 @@ COMMON_DEPEND="${PYTHON_DEPS} RDEPEND="${COMMON_DEPEND} >=gnome-base/dconf-0.4.1 >=gnome-base/libgnomekbd-2.91.4[introspection] - || ( sys-power/upower[introspection] sys-power/upower-pm-utils[introspection] ) + sys-power/upower[introspection] >=gnome-extra/cinnamon-session-4.0 >=gnome-extra/cinnamon-settings-daemon-4.0
[gentoo-commits] repo/gentoo:master commit in: app-leechcraft/lc-liznoo/
commit: 5745520b5ed4b35715f1d8f84f68f93db55b8034 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 22:07:20 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 22:07:20 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5745520b app-leechcraft/lc-liznoo: [QA] remove sys-power/upower-pm-utils dependency Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 app-leechcraft/lc-liznoo/lc-liznoo-.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-leechcraft/lc-liznoo/lc-liznoo-.ebuild b/app-leechcraft/lc-liznoo/lc-liznoo-.ebuild index c90ebbc03d1..36e6071f913 100644 --- a/app-leechcraft/lc-liznoo/lc-liznoo-.ebuild +++ b/app-leechcraft/lc-liznoo/lc-liznoo-.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -20,4 +20,4 @@ DEPEND="~app-leechcraft/lc-core-${PV} " RDEPEND="${DEPEND} ~virtual/leechcraft-trayarea-${PV} - || ( sys-power/upower sys-power/upower-pm-utils )" + sys-power/upower"
[gentoo-commits] repo/gentoo:master commit in: app-laptop/batti/
commit: 09a480b5fa6b752f9007f13ade1d616be376f715 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 22:06:02 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 22:06:02 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09a480b5 app-laptop/batti: [QA] remove sys-power/upower-pm-utils dependency Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 app-laptop/batti/batti-0.3.8-r4.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-laptop/batti/batti-0.3.8-r4.ebuild b/app-laptop/batti/batti-0.3.8-r4.ebuild index f4824578587..2b1697948b2 100644 --- a/app-laptop/batti/batti-0.3.8-r4.ebuild +++ b/app-laptop/batti/batti-0.3.8-r4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -18,7 +18,7 @@ IUSE="libnotify" RDEPEND=" dev-python/pygtk:2[${PYTHON_USEDEP}] dev-python/dbus-python[${PYTHON_USEDEP}] - || ( sys-power/upower sys-power/upower-pm-utils ) + sys-power/upower x11-themes/hicolor-icon-theme libnotify? ( x11-libs/libnotify ) "
[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfce4-session/
commit: cb4170b6064b61c51ea7e16472fade91035aea99 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 22:04:14 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 22:04:14 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb4170b6 xfce-base/xfce4-session: [QA] remove sys-power/upower-pm-utils dependency Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 xfce-base/xfce4-session/xfce4-session-4.12.1-r1.ebuild | 4 ++-- xfce-base/xfce4-session/xfce4-session-4.12.1-r2.ebuild | 2 +- xfce-base/xfce4-session/xfce4-session-4.13.1.ebuild| 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/xfce-base/xfce4-session/xfce4-session-4.12.1-r1.ebuild b/xfce-base/xfce4-session/xfce4-session-4.12.1-r1.ebuild index 384a9d6c6bc..c572b71ce57 100644 --- a/xfce-base/xfce4-session/xfce4-session-4.12.1-r1.ebuild +++ b/xfce-base/xfce4-session/xfce4-session-4.12.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -25,7 +25,7 @@ COMMON_DEPEND=">=dev-libs/dbus-glib-0.100:= !xfce-base/xfce-utils !=xfce-base/libxfce4ui-4.12.0 policykit? ( >=sys-auth/polkit-0.102:= ) - upower? ( || ( >=sys-power/upower-0.9.23 sys-power/upower-pm-utils ) )" + upower? ( >=sys-power/upower-0.9.23 )" RDEPEND="${COMMON_DEPEND} x11-apps/xrdb nls? ( x11-misc/xdg-user-dirs ) diff --git a/xfce-base/xfce4-session/xfce4-session-4.12.1-r2.ebuild b/xfce-base/xfce4-session/xfce4-session-4.12.1-r2.ebuild index 61a782c97e8..d1d259d55cc 100644 --- a/xfce-base/xfce4-session/xfce4-session-4.12.1-r2.ebuild +++ b/xfce-base/xfce4-session/xfce4-session-4.12.1-r2.ebuild @@ -23,7 +23,7 @@ COMMON_DEPEND=">=dev-libs/dbus-glib-0.100:= >=xfce-base/libxfce4ui-4.12.1:= >=xfce-base/xfconf-4.10:= policykit? ( >=sys-auth/polkit-0.102:= ) - upower? ( || ( >=sys-power/upower-0.9.23 sys-power/upower-pm-utils ) )" + upower? ( >=sys-power/upower-0.9.23 )" RDEPEND="${COMMON_DEPEND} x11-apps/xrdb nls? ( x11-misc/xdg-user-dirs ) diff --git a/xfce-base/xfce4-session/xfce4-session-4.13.1.ebuild b/xfce-base/xfce4-session/xfce4-session-4.13.1.ebuild index d0df74cf881..9f521606e78 100644 --- a/xfce-base/xfce4-session/xfce4-session-4.13.1.ebuild +++ b/xfce-base/xfce4-session/xfce4-session-4.13.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6
[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfce4-settings/
commit: 380a32c75ac0022637c9b0762d0c458dbafb835a Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 22:02:07 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 22:02:07 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=380a32c7 xfce-base/xfce4-settings: [QA] remove sys-power/upower-pm-utils dependency Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 xfce-base/xfce4-settings/xfce4-settings-4.12.3.ebuild | 4 ++-- xfce-base/xfce4-settings/xfce4-settings-4.12.4.ebuild | 2 +- xfce-base/xfce4-settings/xfce4-settings-4.13.5.ebuild | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/xfce-base/xfce4-settings/xfce4-settings-4.12.3.ebuild b/xfce-base/xfce4-settings/xfce4-settings-4.12.3.ebuild index 3c312a71724..0bae89cc838 100644 --- a/xfce-base/xfce4-settings/xfce4-settings-4.12.3.ebuild +++ b/xfce-base/xfce4-settings/xfce4-settings-4.12.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -29,7 +29,7 @@ RDEPEND=">=dev-libs/dbus-glib-0.100 libcanberra? ( >=media-libs/libcanberra-0.25[sound] ) input_devices_libinput? ( x11-drivers/xf86-input-libinput ) libnotify? ( >=x11-libs/libnotify-0.7 ) - upower? ( || ( >=sys-power/upower-0.9.23 sys-power/upower-pm-utils ) ) + upower? ( >=sys-power/upower-0.9.23 ) xklavier? ( >=x11-libs/libxklavier-5 )" DEPEND="${RDEPEND} dev-util/intltool diff --git a/xfce-base/xfce4-settings/xfce4-settings-4.12.4.ebuild b/xfce-base/xfce4-settings/xfce4-settings-4.12.4.ebuild index ec16ca039ff..0bae89cc838 100644 --- a/xfce-base/xfce4-settings/xfce4-settings-4.12.4.ebuild +++ b/xfce-base/xfce4-settings/xfce4-settings-4.12.4.ebuild @@ -29,7 +29,7 @@ RDEPEND=">=dev-libs/dbus-glib-0.100 libcanberra? ( >=media-libs/libcanberra-0.25[sound] ) input_devices_libinput? ( x11-drivers/xf86-input-libinput ) libnotify? ( >=x11-libs/libnotify-0.7 ) - upower? ( || ( >=sys-power/upower-0.9.23 sys-power/upower-pm-utils ) ) + upower? ( >=sys-power/upower-0.9.23 ) xklavier? ( >=x11-libs/libxklavier-5 )" DEPEND="${RDEPEND} dev-util/intltool diff --git a/xfce-base/xfce4-settings/xfce4-settings-4.13.5.ebuild b/xfce-base/xfce4-settings/xfce4-settings-4.13.5.ebuild index c72c06e61b7..ab7704362e6 100644 --- a/xfce-base/xfce4-settings/xfce4-settings-4.13.5.ebuild +++ b/xfce-base/xfce4-settings/xfce4-settings-4.13.5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -29,7 +29,7 @@ RDEPEND=" libcanberra? ( >=media-libs/libcanberra-0.25[sound] ) input_devices_libinput? ( x11-drivers/xf86-input-libinput ) libnotify? ( >=x11-libs/libnotify-0.7 ) - upower? ( || ( >=sys-power/upower-0.9.23 sys-power/upower-pm-utils ) ) + upower? ( >=sys-power/upower-0.9.23 ) xklavier? ( >=x11-libs/libxklavier-5 )" DEPEND="${RDEPEND} dev-util/gdbus-codegen
[gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-systemload-plugin/
commit: ccf56e68e991d8e00eba8fbe317f85b5324a1bc2 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 21:59:32 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 21:59:32 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccf56e68 xfce-extra/xfce4-systemload-plugin: [QA] remove sys-power/upower-pm-utils dependency Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 .../xfce4-systemload-plugin/xfce4-systemload-plugin-1.2.1.ebuild | 4 ++-- .../xfce4-systemload-plugin/xfce4-systemload-plugin-1.2.2.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/xfce-extra/xfce4-systemload-plugin/xfce4-systemload-plugin-1.2.1.ebuild b/xfce-extra/xfce4-systemload-plugin/xfce4-systemload-plugin-1.2.1.ebuild index f4bbfde25da..a69223c9310 100644 --- a/xfce-extra/xfce4-systemload-plugin/xfce4-systemload-plugin-1.2.1.ebuild +++ b/xfce-extra/xfce4-systemload-plugin/xfce4-systemload-plugin-1.2.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -16,7 +16,7 @@ IUSE="upower" RDEPEND=">=xfce-base/libxfce4ui-4.12:=[gtk3(+)] >=xfce-base/xfce4-panel-4.12:= - upower? ( || ( >=sys-power/upower-0.9.23 sys-power/upower-pm-utils ) )" + upower? ( >=sys-power/upower-0.9.23 )" DEPEND="${RDEPEND} dev-util/intltool virtual/pkgconfig" diff --git a/xfce-extra/xfce4-systemload-plugin/xfce4-systemload-plugin-1.2.2.ebuild b/xfce-extra/xfce4-systemload-plugin/xfce4-systemload-plugin-1.2.2.ebuild index a0bd84c3418..fa690896cbe 100644 --- a/xfce-extra/xfce4-systemload-plugin/xfce4-systemload-plugin-1.2.2.ebuild +++ b/xfce-extra/xfce4-systemload-plugin/xfce4-systemload-plugin-1.2.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -16,7 +16,7 @@ IUSE="upower" RDEPEND=">=xfce-base/libxfce4ui-4.12:=[gtk3(+)] >=xfce-base/xfce4-panel-4.12:= - upower? ( || ( >=sys-power/upower-0.9.23 sys-power/upower-pm-utils ) )" + upower? ( >=sys-power/upower-0.9.23 )" DEPEND="${RDEPEND} dev-util/intltool virtual/pkgconfig"
[gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-weather-plugin/
commit: 10f5982d5ba8a0155f58d4191e311269d4c84a14 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 21:57:34 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 21:57:53 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10f5982d xfce-extra/xfce4-weather-plugin: [QA] remove sys-power/upower-pm-utils dependency Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 xfce-extra/xfce4-weather-plugin/xfce4-weather-plugin-0.8.10.ebuild | 4 ++-- xfce-extra/xfce4-weather-plugin/xfce4-weather-plugin-0.9.0.ebuild | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/xfce-extra/xfce4-weather-plugin/xfce4-weather-plugin-0.8.10.ebuild b/xfce-extra/xfce4-weather-plugin/xfce4-weather-plugin-0.8.10.ebuild index 0b33afcde91..8966790e01a 100644 --- a/xfce-extra/xfce4-weather-plugin/xfce4-weather-plugin-0.8.10.ebuild +++ b/xfce-extra/xfce4-weather-plugin/xfce4-weather-plugin-0.8.10.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -21,7 +21,7 @@ RDEPEND=">=dev-libs/glib-2.20:= >=xfce-base/libxfce4ui-4.10:= >=xfce-base/libxfce4util-4.10:= >=xfce-base/xfce4-panel-4.10:= - upower? ( || ( >=sys-power/upower-0.9.23 sys-power/upower-pm-utils ) )" + upower? ( >=sys-power/upower-0.9.23 )" DEPEND="${RDEPEND} dev-util/intltool virtual/pkgconfig" diff --git a/xfce-extra/xfce4-weather-plugin/xfce4-weather-plugin-0.9.0.ebuild b/xfce-extra/xfce4-weather-plugin/xfce4-weather-plugin-0.9.0.ebuild index bd1e3599809..c12b6aeea44 100644 --- a/xfce-extra/xfce4-weather-plugin/xfce4-weather-plugin-0.9.0.ebuild +++ b/xfce-extra/xfce4-weather-plugin/xfce4-weather-plugin-0.9.0.ebuild @@ -21,7 +21,7 @@ RDEPEND=">=dev-libs/glib-2.42 >=xfce-base/libxfce4ui-4.12:= >=xfce-base/libxfce4util-4.12:= >=xfce-base/xfce4-panel-4.12:= - upower? ( || ( >=sys-power/upower-0.9.23 sys-power/upower-pm-utils ) )" + upower? ( >=sys-power/upower-0.9.23 )" DEPEND="${RDEPEND} dev-util/intltool virtual/pkgconfig"
[gentoo-commits] repo/gentoo:master commit in: dev-dotnet/libgdiplus/
commit: 223413f0c84af0b85d525fd6ac86908250c6b6fa Author: Anthony G. Basile gentoo org> AuthorDate: Sat Dec 8 21:46:37 2018 + Commit: Anthony G. Basile gentoo org> CommitDate: Sat Dec 8 21:46:37 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=223413f0 dev-dotnet/libgdiplus: 4.2-r3 stable on arm Signed-off-by: Anthony G. Basile gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 dev-dotnet/libgdiplus/libgdiplus-4.2-r3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-dotnet/libgdiplus/libgdiplus-4.2-r3.ebuild b/dev-dotnet/libgdiplus/libgdiplus-4.2-r3.ebuild index 172fd0b6b92..bfb35078be8 100644 --- a/dev-dotnet/libgdiplus/libgdiplus-4.2-r3.ebuild +++ b/dev-dotnet/libgdiplus/libgdiplus-4.2-r3.ebuild @@ -10,7 +10,7 @@ HOMEPAGE="http://www.mono-project.com"; LICENSE="MIT" SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 x86 ~amd64-linux ~x86-linux ~x86-solaris" +KEYWORDS="amd64 arm ~arm64 ppc ppc64 x86 ~amd64-linux ~x86-linux ~x86-solaris" SRC_URI="http://download.mono-project.com/sources/${PN}/${P}.tar.gz"; IUSE="cairo"
[gentoo-commits] repo/gentoo:master commit in: app-crypt/tpm-tools/, app-crypt/tpm-tools/files/
commit: 46685dd4934db31ab2c732f28a1a7909750e4c59 Author: Alon Bar-Lev gentoo org> AuthorDate: Sat Dec 8 21:40:59 2018 + Commit: Alon Bar-Lev gentoo org> CommitDate: Sat Dec 8 21:41:16 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46685dd4 app-crypt/tpm-tools: support openssl-1.1 Closes: https://bugs.gentoo.org/show_bug.cgi?id=672756 Signed-off-by: Alon Bar-Lev gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 .../files/tpm-tools-1.3.9.1-openssl-1.1.patch | 241 + app-crypt/tpm-tools/tpm-tools-1.3.9.1-r1.ebuild| 51 + 2 files changed, 292 insertions(+) diff --git a/app-crypt/tpm-tools/files/tpm-tools-1.3.9.1-openssl-1.1.patch b/app-crypt/tpm-tools/files/tpm-tools-1.3.9.1-openssl-1.1.patch new file mode 100644 index 000..a5747dbca70 --- /dev/null +++ b/app-crypt/tpm-tools/files/tpm-tools-1.3.9.1-openssl-1.1.patch @@ -0,0 +1,241 @@ +From 31d9cebc43833de939a0e13be0110ed830b66cbd Mon Sep 17 00:00:00 2001 +From: Alon Bar-Lev +Date: Sat, 8 Dec 2018 23:28:54 +0200 +Subject: [PATCH] data_import.c: support openssl-1.1 + +Signed-off-by: Alon Bar-Lev +Bug: https://sourceforge.net/p/trousers/bugs/227/ +--- + src/data_mgmt/data_import.c | 159 +--- + 1 file changed, 112 insertions(+), 47 deletions(-) + +diff --git a/src/data_mgmt/data_import.c b/src/data_mgmt/data_import.c +index f534717..33c76e7 100644 +--- a/src/data_mgmt/data_import.c b/src/data_mgmt/data_import.c +@@ -39,6 +39,30 @@ + #include + #include + ++#if OPENSSL_VERSION_NUMBER < 0x1010L || (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x2070L) ++static void RSA_get0_key(const RSA *r, const BIGNUM **n, const BIGNUM **e, const BIGNUM **d) { ++ if ( n ) ++ *n = r->n; ++ if ( e ) ++ *e = r->e; ++ if ( d ) ++ *d = r->d; ++} ++static void RSA_get0_factors(const RSA *r, const BIGNUM **p, const BIGNUM **q) { ++ if ( p ) ++ *p = r->p; ++ if ( q ) ++ *q = r->q; ++} ++static void RSA_get0_crt_params(const RSA *r, const BIGNUM **dmp1, const BIGNUM **dmq1, const BIGNUM **iqmp) { ++ if ( dmp1 ) ++ *dmp1 = r->dmp1; ++ if ( dmq1 ) ++ *dmq1 = r->dmq1; ++ if ( iqmp ) ++ *iqmp = r->iqmp; ++} ++#endif + + /* + * Global variables +@@ -372,7 +396,7 @@ readX509Cert( const char *a_pszFile, + goto out; + } + +- if ( EVP_PKEY_type( pKey->type ) != EVP_PKEY_RSA ) { ++ if ( EVP_PKEY_base_id( pKey ) != EVP_PKEY_RSA ) { + logError( TOKEN_RSA_KEY_ERROR ); + + X509_free( pX509 ); +@@ -691,17 +715,35 @@ createRsaPubKeyObject( RSA *a_pRsa, + + int rc = -1; + +- int nLen = BN_num_bytes( a_pRsa->n ); +- int eLen = BN_num_bytes( a_pRsa->e ); ++ const BIGNUM *bn; ++ const BIGNUM *be; ++ int nLen; ++ int eLen; ++ CK_BYTE *n = NULL; ++ CK_BYTE *e = NULL; ++ ++ RSA_get0_key( a_pRsa, &bn, &be, NULL ); ++ ++ nLen = BN_num_bytes( bn ); ++ eLen = BN_num_bytes( be ); ++ n = malloc( nLen ); ++ e = malloc( eLen ); ++ ++ if ( !n || !e ) { ++ logError( TOKEN_MEMORY_ERROR ); ++ goto out; ++ } ++ ++ // Get binary representations of the RSA key information ++ BN_bn2bin( bn, n ); ++ BN_bn2bin( be, e ); + ++ { + CK_RV rv; + + CK_BBOOL bTrue = TRUE; + CK_BBOOL bFalse = FALSE; + +- CK_BYTE *n = malloc( nLen ); +- CK_BYTE *e = malloc( eLen ); +- + CK_OBJECT_CLASS clPubClass = CKO_PUBLIC_KEY; + CK_KEY_TYPE tKeyType= CKK_RSA; + CK_BBOOL bPrivate= ( !g_bPublic ) ? TRUE : FALSE; +@@ -726,21 +768,13 @@ createRsaPubKeyObject( RSA *a_pRsa, + + *a_hObject = 0; + +- if ( !n || !e ) { +- logError( TOKEN_MEMORY_ERROR ); +- goto out; +- } +- +- // Get binary representations of the RSA key information +- BN_bn2bin( a_pRsa->n, n ); +- BN_bn2bin( a_pRsa->e, e ); +- + // Create the RSA public key object + rv = createObject( a_hSession, tAttr, ulAttrCount, a_hObject ); + if ( rv != CKR_OK ) + goto out; + + rc = 0; ++ } + + out: + free( n ); +@@ -760,29 +794,74 @@ createRsaPrivKeyObject( RSA *a_pRsa, + + int rc = -1; + +- int nLen = BN_num_bytes( a_pRsa->n ); +- int eLen = BN_num_bytes( a_pRsa->e ); +- int dLen = BN_num_bytes( a_pRsa->d ); +- int pLen = BN_num_bytes( a_pRsa->p ); +- int qLen = BN_num_bytes( a_pRsa->q ); +- int dmp1Len = BN_num_bytes( a_pRsa->dmp1 ); +- int dmq1Len = BN_num_bytes( a_pRsa->dmq1 ); +- int iqmpLen = BN_num_bytes( a_pRsa->iqmp ); ++ const BIGNUM *bn; ++ const BIGNUM *be; ++ const BIGNUM *bd; ++
[gentoo-commits] repo/gentoo:master commit in: sci-libs/libsigrokdecode/
commit: da8003446af291b36f9f6598faa4c792e0bafe1c Author: Sven Wegener gentoo org> AuthorDate: Thu Nov 29 13:10:04 2018 + Commit: Sven Wegener gentoo org> CommitDate: Sat Dec 8 21:33:09 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da800344 sci-libs/libsigrokdecode: Support python3.7 Signed-off-by: Sven Wegener gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 sci-libs/libsigrokdecode/libsigrokdecode-0.5.2.ebuild | 4 ++-- sci-libs/libsigrokdecode/libsigrokdecode-.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sci-libs/libsigrokdecode/libsigrokdecode-0.5.2.ebuild b/sci-libs/libsigrokdecode/libsigrokdecode-0.5.2.ebuild index 7c39504420c..27391aa2923 100644 --- a/sci-libs/libsigrokdecode/libsigrokdecode-0.5.2.ebuild +++ b/sci-libs/libsigrokdecode/libsigrokdecode-0.5.2.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="6" -PYTHON_COMPAT=( python3_{4,5,6} ) +PYTHON_COMPAT=( python3_{4,5,6,7} ) inherit eutils python-single-r1 diff --git a/sci-libs/libsigrokdecode/libsigrokdecode-.ebuild b/sci-libs/libsigrokdecode/libsigrokdecode-.ebuild index f16280982d7..d05556cc64e 100644 --- a/sci-libs/libsigrokdecode/libsigrokdecode-.ebuild +++ b/sci-libs/libsigrokdecode/libsigrokdecode-.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="6" -PYTHON_COMPAT=( python3_{4,5,6} ) +PYTHON_COMPAT=( python3_{4,5,6,7} ) inherit eutils python-single-r1
[gentoo-commits] repo/gentoo:master commit in: sci-electronics/pulseview/
commit: 0b630ce1721a7fbe7ab11a43ac4c86ae8b8d71e0 Author: Sven Wegener gentoo org> AuthorDate: Thu Nov 29 13:11:39 2018 + Commit: Sven Wegener gentoo org> CommitDate: Sat Dec 8 21:33:13 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b630ce1 sci-electronics/pulseview: Support python3.7 Signed-off-by: Sven Wegener gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 sci-electronics/pulseview/pulseview-0.4.1.ebuild | 2 +- sci-electronics/pulseview/pulseview-.ebuild | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sci-electronics/pulseview/pulseview-0.4.1.ebuild b/sci-electronics/pulseview/pulseview-0.4.1.ebuild index 61c3fc56308..0b56a419853 100644 --- a/sci-electronics/pulseview/pulseview-0.4.1.ebuild +++ b/sci-electronics/pulseview/pulseview-0.4.1.ebuild @@ -3,7 +3,7 @@ EAPI="6" -PYTHON_COMPAT=( python3_{4,5,6} ) +PYTHON_COMPAT=( python3_{4,5,6,7} ) inherit cmake-utils gnome2-utils python-single-r1 xdg-utils diff --git a/sci-electronics/pulseview/pulseview-.ebuild b/sci-electronics/pulseview/pulseview-.ebuild index c91f1edbcbb..b2459121ecd 100644 --- a/sci-electronics/pulseview/pulseview-.ebuild +++ b/sci-electronics/pulseview/pulseview-.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="6" -PYTHON_COMPAT=( python3_{4,5,6} ) +PYTHON_COMPAT=( python3_{4,5,6,7} ) inherit cmake-utils gnome2-utils python-single-r1 xdg-utils
[gentoo-commits] repo/gentoo:master commit in: sci-libs/libsigrok/
commit: 4806e87dda892682f83e8e1886376f563f157945 Author: Sven Wegener gentoo org> AuthorDate: Thu Nov 29 13:09:06 2018 + Commit: Sven Wegener gentoo org> CommitDate: Sat Dec 8 21:30:43 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4806e87d sci-libs/libsigrok: Support python3.7 Signed-off-by: Sven Wegener gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 sci-libs/libsigrok/libsigrok-0.5.1.ebuild | 2 +- sci-libs/libsigrok/libsigrok-.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sci-libs/libsigrok/libsigrok-0.5.1.ebuild b/sci-libs/libsigrok/libsigrok-0.5.1.ebuild index 8d56edf9699..8ebbf15dc3d 100644 --- a/sci-libs/libsigrok/libsigrok-0.5.1.ebuild +++ b/sci-libs/libsigrok/libsigrok-0.5.1.ebuild @@ -3,7 +3,7 @@ EAPI="6" -PYTHON_COMPAT=( python{2_7,3_{4,5,6}} ) +PYTHON_COMPAT=( python{2_7,3_{4,5,6,7}} ) inherit eutils gnome2-utils python-single-r1 java-pkg-opt-2 xdg-utils diff --git a/sci-libs/libsigrok/libsigrok-.ebuild b/sci-libs/libsigrok/libsigrok-.ebuild index aeb0f3c4579..694f44c3d60 100644 --- a/sci-libs/libsigrok/libsigrok-.ebuild +++ b/sci-libs/libsigrok/libsigrok-.ebuild @@ -3,7 +3,7 @@ EAPI="6" -PYTHON_COMPAT=( python{2_7,3_{4,5,6}} ) +PYTHON_COMPAT=( python{2_7,3_{4,5,6,7}} ) inherit eutils gnome2-utils python-single-r1 java-pkg-opt-2 xdg-utils
[gentoo-commits] repo/gentoo:master commit in: sci-electronics/sigrok-cli/
commit: 03b0a5fd3f29eaecff2d267d8dcee373185f8f41 Author: Sven Wegener gentoo org> AuthorDate: Thu Nov 29 13:11:02 2018 + Commit: Sven Wegener gentoo org> CommitDate: Sat Dec 8 21:33:11 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03b0a5fd sci-electronics/sigrok-cli: Support python3.7 Signed-off-by: Sven Wegener gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 sci-electronics/sigrok-cli/sigrok-cli-0.7.1.ebuild | 2 +- sci-electronics/sigrok-cli/sigrok-cli-.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sci-electronics/sigrok-cli/sigrok-cli-0.7.1.ebuild b/sci-electronics/sigrok-cli/sigrok-cli-0.7.1.ebuild index 553ed7bf8c6..0ff21059349 100644 --- a/sci-electronics/sigrok-cli/sigrok-cli-0.7.1.ebuild +++ b/sci-electronics/sigrok-cli/sigrok-cli-0.7.1.ebuild @@ -3,7 +3,7 @@ EAPI="6" -PYTHON_COMPAT=( python3_{4,5,6} ) +PYTHON_COMPAT=( python3_{4,5,6,7} ) inherit gnome2-utils python-single-r1 xdg-utils diff --git a/sci-electronics/sigrok-cli/sigrok-cli-.ebuild b/sci-electronics/sigrok-cli/sigrok-cli-.ebuild index 553ed7bf8c6..0ff21059349 100644 --- a/sci-electronics/sigrok-cli/sigrok-cli-.ebuild +++ b/sci-electronics/sigrok-cli/sigrok-cli-.ebuild @@ -3,7 +3,7 @@ EAPI="6" -PYTHON_COMPAT=( python3_{4,5,6} ) +PYTHON_COMPAT=( python3_{4,5,6,7} ) inherit gnome2-utils python-single-r1 xdg-utils
[gentoo-commits] proj/kde:master commit in: app-office/libalkimia/
commit: a694c51415e821e31b952e185d1b3bf3a3a6a64f Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Dec 8 21:06:43 2018 + Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Dec 8 21:06:43 2018 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=a694c514 app-office/libalkimia: Fix typo Thanks-to: genterminl in #gentoo-kde Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> app-office/libalkimia/libalkimia-.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-office/libalkimia/libalkimia-.ebuild b/app-office/libalkimia/libalkimia-.ebuild index 6ffbf3dc2c..a922276028 100644 --- a/app-office/libalkimia/libalkimia-.ebuild +++ b/app-office/libalkimia/libalkimia-.ebuild @@ -19,7 +19,7 @@ SLOT="0/7" IUSE="doc" RDEPEND=" - $(add_frameworks_dep kcompletions) + $(add_frameworks_dep kcompletion) $(add_frameworks_dep kcodecs) $(add_frameworks_dep kconfig) $(add_frameworks_dep kcoreaddons)
[gentoo-commits] proj/qt:master commit in: dev-qt/qtmultimedia/, dev-qt/qtsensors/, dev-qt/qtpositioning/, ...
commit: 648a26620094f0d6f3079918a094a0232b79ef64 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Dec 8 20:31:38 2018 + Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Dec 8 20:31:38 2018 + URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=648a2662 dev-qt: keyworded 5.11.3 for sparc, bug #672636 dev-qt/linguist-tools-5.11. dev-qt/qtmultimedia-5.11. dev-qt/qtpositioning-5.11. dev-qt/qtsensors-5.11. dev-qt/qttranslations-5.11. dev-qt/qtwebsockets-5.11. Thanks-to: Rolf Eike Beer sf-mail.de> Thanks-to: Sergei Trofimovich gentoo.org> Signed-off-by: Andreas Sturmlechner gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 dev-qt/linguist-tools/linguist-tools-5.11..ebuild | 2 +- dev-qt/qtmultimedia/qtmultimedia-5.11..ebuild | 2 +- dev-qt/qtpositioning/qtpositioning-5.11..ebuild | 2 +- dev-qt/qtsensors/qtsensors-5.11..ebuild | 2 +- dev-qt/qttranslations/qttranslations-5.11..ebuild | 2 +- dev-qt/qtwebsockets/qtwebsockets-5.11..ebuild | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dev-qt/linguist-tools/linguist-tools-5.11..ebuild b/dev-qt/linguist-tools/linguist-tools-5.11..ebuild index 72c04bdc..c544a070 100644 --- a/dev-qt/linguist-tools/linguist-tools-5.11..ebuild +++ b/dev-qt/linguist-tools/linguist-tools-5.11..ebuild @@ -8,7 +8,7 @@ inherit qt5-build DESCRIPTION="Tools for working with Qt translation data files" if [[ ${QT5_BUILD_TYPE} == release ]]; then - KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd" + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd" fi IUSE="qml" diff --git a/dev-qt/qtmultimedia/qtmultimedia-5.11..ebuild b/dev-qt/qtmultimedia/qtmultimedia-5.11..ebuild index 04cc34da..8dd9750e 100644 --- a/dev-qt/qtmultimedia/qtmultimedia-5.11..ebuild +++ b/dev-qt/qtmultimedia/qtmultimedia-5.11..ebuild @@ -7,7 +7,7 @@ inherit qt5-build DESCRIPTION="Multimedia (audio, video, radio, camera) library for the Qt5 framework" if [[ ${QT5_BUILD_TYPE} == release ]]; then - KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd" + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd" fi IUSE="alsa gles2 gstreamer openal pulseaudio qml widgets" diff --git a/dev-qt/qtpositioning/qtpositioning-5.11..ebuild b/dev-qt/qtpositioning/qtpositioning-5.11..ebuild index ff571ce7..282cf1bc 100644 --- a/dev-qt/qtpositioning/qtpositioning-5.11..ebuild +++ b/dev-qt/qtpositioning/qtpositioning-5.11..ebuild @@ -8,7 +8,7 @@ inherit qt5-build DESCRIPTION="Physical position determination library for the Qt5 framework" if [[ ${QT5_BUILD_TYPE} == release ]]; then - KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86" fi IUSE="geoclue +qml" diff --git a/dev-qt/qtsensors/qtsensors-5.11..ebuild b/dev-qt/qtsensors/qtsensors-5.11..ebuild index d0b0c5b6..ffdc8260 100644 --- a/dev-qt/qtsensors/qtsensors-5.11..ebuild +++ b/dev-qt/qtsensors/qtsensors-5.11..ebuild @@ -7,7 +7,7 @@ inherit qt5-build DESCRIPTION="Hardware sensor access library for the Qt5 framework" if [[ ${QT5_BUILD_TYPE} == release ]]; then - KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86" fi # TODO: simulator diff --git a/dev-qt/qttranslations/qttranslations-5.11..ebuild b/dev-qt/qttranslations/qttranslations-5.11..ebuild index 02291152..6a321bc6 100644 --- a/dev-qt/qttranslations/qttranslations-5.11..ebuild +++ b/dev-qt/qttranslations/qttranslations-5.11..ebuild @@ -7,7 +7,7 @@ inherit qt5-build DESCRIPTION="Translation files for the Qt5 framework" if [[ ${QT5_BUILD_TYPE} == release ]]; then - KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd" + KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd" fi IUSE="" diff --git a/dev-qt/qtwebsockets/qtwebsockets-5.11..ebuild b/dev-qt/qtwebsockets/qtwebsockets-5.11..ebuild index 362a0a81..1299e9e3 100644 --- a/dev-qt/qtwebsockets/qtwebsockets-5.11..ebuild +++ b/dev-qt/qtwebsockets/qtwebsockets-5.11..ebuild @@ -7,7 +7,7 @@ inherit qt5-build DESCRIPTION="Implementation of the WebSocket protocol for the Qt5 framework" if [[ ${QT5_BUILD_TYPE} == release ]]; then - KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86" fi IUSE="qml +ssl"
[gentoo-commits] repo/gentoo:master commit in: sys-auth/consolekit/
commit: 882bb9513e78ffaf1d058de93a070a4a395fab2c Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 20:08:10 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 20:08:32 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=882bb951 sys-auth/consolekit: mark s390 stable Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 sys-auth/consolekit/consolekit-1.2.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-auth/consolekit/consolekit-1.2.1.ebuild b/sys-auth/consolekit/consolekit-1.2.1.ebuild index 20c615d2de4..f1a5d163a52 100644 --- a/sys-auth/consolekit/consolekit-1.2.1.ebuild +++ b/sys-auth/consolekit/consolekit-1.2.1.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/${MY_PN}/${MY_PN}/releases/download/${PV}/${MY_P}.ta LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux" IUSE="acl cgroups debug doc evdev kernel_linux pam pm-utils policykit selinux test udev" COMMON_DEPEND=">=dev-libs/glib-2.40:2=[dbus]
[gentoo-commits] repo/gentoo:master commit in: eclass/
commit: c4945b28532728c8aafd2804256e09c3002c883b Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Dec 3 17:58:25 2018 + Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Dec 8 20:07:00 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4945b28 qt5-build.eclass: xkbcommon-{evdev,x11} was dropped in >=5.12.1 Bug: https://bugs.gentoo.org/672340 Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/qt5-build.eclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index d709e3cd58b..ee4875deaad 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -612,10 +612,10 @@ qt5_base_configure() { -no-libpng -no-libjpeg -no-freetype -no-harfbuzz -no-openssl -no-libproxy - -no-xkbcommon-x11 -no-xkbcommon-evdev -no-xcb-xlib - $([[ ${QT5_MINOR_VERSION} -lt 12 ]] && echo -no-xinput2) - $([[ ${QT5_MINOR_VERSION} -ge 12 ]] && echo -no-xcb-xinput) + $([[ ${QT5_MINOR_VERSION} -lt 12 ]] && echo -no-xinput2 -no-xkbcommon-x11 -no-xkbcommon-evdev) + $([[ ${PV} = 5.12.0* ]] && echo -no-xcb-xinput -no-xkbcommon-x11 -no-xkbcommon-evdev) # bug 672340 + $([[ ${QT5_MINOR_VERSION} -ge 12 && ${PV} != 5.12.0* ]] && echo -no-xcb-xinput -no-xkbcommon) # bug 672340 # cannot use -no-gif because there is no way to override it later #-no-gif
[gentoo-commits] repo/gentoo:master commit in: eclass/
commit: 624918befdffa2eb70f2d47e014f4d9f3574a390 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Dec 3 19:09:31 2018 + Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Dec 8 20:07:01 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=624918be qt5-build.eclass: Cleanup obsolete -gt/-ge conditionals Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/qt5-build.eclass | 172 +++- 1 file changed, 81 insertions(+), 91 deletions(-) diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index 3189f0c086f..ef104429f00 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -200,9 +200,7 @@ qt5-build_src_prepare() { src/{corelib/corelib,gui/gui}.pro || die "sed failed (optimize_full)" # Respect build variables in configure tests (bug #639494) - if [[ ${QT5_MINOR_VERSION} -ge 9 ]]; then - sed -i -e "s|\"\$outpath/bin/qmake\" \"\$relpathMangled\" -- \"\$@\"|& $(qt5_qmake_args) |" configure || die - fi + sed -i -e "s|\"\$outpath/bin/qmake\" \"\$relpathMangled\" -- \"\$@\"|& $(qt5_qmake_args) |" configure || die fi default @@ -508,9 +506,7 @@ qt5_base_configure() { export LD="$(tc-getCXX)" # bug 633838 - if [[ ${QT5_MINOR_VERSION} -ge 9 ]]; then - unset QMAKESPEC XQMAKESPEC QMAKEPATH QMAKEFEATURES - fi + unset QMAKESPEC XQMAKESPEC QMAKEPATH QMAKEFEATURES # configure arguments local conf=( @@ -670,7 +666,7 @@ qt5_base_configure() { -no-warnings-are-errors # enable in respective modules to avoid poisoning QT.global_private.enabled_features - $([[ ${QT5_MINOR_VERSION} -ge 9 ]] && echo -no-gui -no-widgets) + -no-gui -no-widgets # module-specific options "${myconf[@]}" @@ -681,11 +677,9 @@ qt5_base_configure() { einfo "Configuring with: ${conf[@]}" "${S}"/configure "${conf[@]}" || die "configure failed" - if [[ ${QT5_MINOR_VERSION} -ge 8 ]]; then - # a forwarding header is no longer created since 5.8, causing the system - # config to always be used. bug 599636 - cp src/corelib/global/qconfig.h include/QtCore/ || die - fi + # a forwarding header is no longer created since 5.8, causing the system + # config to always be used. bug 599636 + cp src/corelib/global/qconfig.h include/QtCore/ || die popd >/dev/null || die @@ -769,7 +763,7 @@ qt5_install_module_config() { > "${T}"/${PN}-qconfig.h > "${T}"/${PN}-qconfig.pri - [[ ${QT5_MINOR_VERSION} -ge 9 ]] && > "${T}"/${PN}-qmodule.pri + > "${T}"/${PN}-qmodule.pri # generate qconfig_{add,remove} and ${PN}-qconfig.h for x in "${QT5_GENTOO_CONFIG[@]}"; do @@ -803,32 +797,30 @@ qt5_install_module_config() { doins "${T}"/${PN}-qconfig.pri ) - if [[ ${QT5_MINOR_VERSION} -ge 9 ]]; then - # generate qprivateconfig - for x in "${QT5_GENTOO_PRIVATE_CONFIG[@]}"; do - local flag=${x%%:*} - x=${x#${flag}:} - local feature=${x%%:*} - x=${x#${feature}:} - - if [[ -z ${flag} ]] || { [[ ${flag} != '!' ]] && use ${flag}; }; then - [[ -n ${feature} ]] && qprivateconfig_add+=" ${feature}" - else - [[ -n ${feature} ]] && qprivateconfig_remove+=" ${feature}" - fi - done + # generate qprivateconfig + for x in "${QT5_GENTOO_PRIVATE_CONFIG[@]}"; do + local flag=${x%%:*} + x=${x#${flag}:} + local feature=${x%%:*} + x=${x#${feature}:} - # generate and install ${PN}-qmodule.pri - [[ -n ${qprivateconfig_add} ]] && echo "QT.global_private.enabled_features = ${qprivateconfig_add}" >> "${T}"/${PN}-qmodule.pri - [[ -n ${qprivateconfig_remove} ]] && echo "QT.global_private.disabled_features = ${qprivateconfig_remove}" >> "${T}"/${PN}-qmodule.pri - [[ -s ${T}/${PN}-qmodule.pri ]] && ( - insinto "${QT5_ARCHDATADIR#${EPREFIX}}"/mkspecs/gentoo - doins "${T}"/${PN}-qmodule.pri - ) - fi + if [[ -z ${flag} ]] || { [[ ${flag} != '!' ]] && use ${flag}; }; then + [[ -n ${feature} ]] && qprivateconfig_add+=" ${feature}" + else + [[ -n ${feature} ]] && qprivateconfig_remove+=" ${feature}" + fi + done + + # generate and install ${PN}-qmodule.pri + [[ -n ${qprivateconfig_add} ]]
[gentoo-commits] repo/gentoo:master commit in: eclass/
commit: 219094c8f5c89461f25d65d8b0b1b8a03307fbaa Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Dec 3 17:49:16 2018 + Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Dec 8 20:07:00 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=219094c8 qt5-build.eclass: Cleanup quirks for no longer available versions Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/qt5-build.eclass | 31 ++- 1 file changed, 2 insertions(+), 29 deletions(-) diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index 70f2bed9e4e..3189f0c086f 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -174,14 +174,8 @@ qt5-build_src_prepare() { qt5_symlink_tools_to_build_dir # Avoid unnecessary qmake recompilations - if [[ ${QT5_MINOR_VERSION} -ge 8 ]]; then - sed -i -e "/Creating qmake/i if [ '!' -e \"\$outpath/bin/qmake\" ]; then" \ - -e '/echo "Done."/a fi' \ - configure || die "sed failed (skip qmake bootstrap)" - else - sed -i -re "s|^if true;.*(\[ '\!').*(\"\\\$outpath/bin/qmake\".*)|if \1 -e \2 then|" \ - configure || die "sed failed (skip qmake bootstrap)" - fi + sed -i -e "/Creating qmake/i if [ '!' -e \"\$outpath/bin/qmake\" ]; then" \ + -e '/echo "Done."/a fi' configure || die "sed failed (skip qmake bootstrap)" # Respect CC, CXX, *FLAGS, MAKEOPTS and EXTRA_EMAKE when bootstrapping qmake sed -i -e "/outpath\/qmake\".*\"\$MAKE\")/ s:): \ @@ -196,12 +190,6 @@ qt5-build_src_prepare() { sed -i -e "/^QMAKE_CONF_COMPILER=/ s:=.*:=\"$(tc-getCXX)\":" \ configure || die "sed failed (QMAKE_CONF_COMPILER)" - if [[ ${QT5_MINOR_VERSION} -le 7 ]]; then - # Respect toolchain and flags in config.tests - find config.tests/unix -name '*.test' -type f -execdir \ - sed -i -e 's/-nocache //' '{}' + || die - fi - # Don't inject -msse/-mavx/... into CXXFLAGS when detecting # compiler support for extended instruction sets (bug 552942) find config.tests/common -name '*.pro' -type f -execdir \ @@ -579,9 +567,6 @@ qt5_base_configure() { # build shared libraries -shared - # always enable large file support - $([[ ${QT5_MINOR_VERSION} -lt 8 ]] && echo -largefile) - # disabling accessibility is not recommended by upstream, as # it will break QStyle and may break other internal parts of Qt -accessibility @@ -624,7 +609,6 @@ qt5_base_configure() { # disable everything to prevent automagic deps (part 2) -no-gtk - $([[ ${QT5_MINOR_VERSION} -lt 8 ]] && echo -no-pulseaudio -no-alsa) # exclude examples and tests from default build -nomake examples @@ -637,10 +621,6 @@ qt5_base_configure() { # print verbose information about each configure test -verbose - # always enable iconv support - # since 5.8 this is handled in qtcore - $([[ ${QT5_MINOR_VERSION} -lt 8 ]] && echo -iconv) - # disable everything to prevent automagic deps (part 3) -no-cups -no-evdev -no-tslib -no-icu -no-fontconfig -no-dbus @@ -667,10 +647,6 @@ qt5_base_configure() { # disable undocumented X11-related flags, override in qtgui # (not shown in ./configure -help output) -no-xkb - $([[ ${QT5_MINOR_VERSION} -lt 8 ]] && echo -no-xrender) - - # disable obsolete/unused X11-related flags - $([[ ${QT5_MINOR_VERSION} -lt 8 ]] && echo -no-mitshm -no-xcursor -no-xfixes -no-xrandr -no-xshape -no-xsync) # always enable session management support: it doesn't need extra deps # at configure time and turning it off is dangerous, see bug 518262 @@ -686,9 +662,6 @@ qt5_base_configure() { # disable libinput-based generic plugin by default, override in qtgui -no-libinput - # disable gstreamer by default, override in qtmultimedia - $([[ ${QT5_MINOR_VERSION} -lt 8 ]] && echo -no-gstreamer) - # respect system proxies by default: it's the most natural # setting, and it'll become the new upstream default in 5.8 -system-proxies
[gentoo-commits] repo/gentoo:master commit in: eclass/
commit: 1c681d0511f7300434a5c8bddba14a43627c3a4b Author: Jimi Huotari gentoo org> AuthorDate: Wed Aug 15 11:18:45 2018 + Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Dec 8 20:07:00 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c681d05 qt5-build.eclass: fix configure for 5.12 The 'xinput2' configure option has been renamed to 'xcb-xinput' in: http://code.qt.io/cgit/qt/qtbase.git/commit/?h=5.12&id=a692d7cd Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/qt5-build.eclass | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index defbcad2e6b..d709e3cd58b 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -613,7 +613,9 @@ qt5_base_configure() { -no-freetype -no-harfbuzz -no-openssl -no-libproxy -no-xkbcommon-x11 -no-xkbcommon-evdev - -no-xinput2 -no-xcb-xlib + -no-xcb-xlib + $([[ ${QT5_MINOR_VERSION} -lt 12 ]] && echo -no-xinput2) + $([[ ${QT5_MINOR_VERSION} -ge 12 ]] && echo -no-xcb-xinput) # cannot use -no-gif because there is no way to override it later #-no-gif
[gentoo-commits] repo/gentoo:master commit in: eclass/
commit: f3a504e74a8b24fb181e766fad19bdf565896021 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Dec 6 12:20:35 2018 + Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Dec 8 20:07:01 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3a504e7 qt5-build.eclass: Drop obsolete pre-Qt-5.11 quirks Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/qt5-build.eclass | 31 +++ 1 file changed, 7 insertions(+), 24 deletions(-) diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index ef104429f00..83f66220c73 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -80,26 +80,14 @@ case ${PV} in *_alpha*|*_beta*|*_rc*) # development release QT5_BUILD_TYPE="release" - - if [[ ${QT5_MINOR_VERSION} -ge 10 ]]; then - MY_P=${QT5_MODULE}-everywhere-src-${PV/_/-} - else - MY_P=${QT5_MODULE}-opensource-src-${PV/_/-} - fi - + MY_P=${QT5_MODULE}-everywhere-src-${PV/_/-} SRC_URI="https://download.qt.io/development_releases/qt/${PV%.*}/${PV/_/-}/submodules/${MY_P}.tar.xz"; S=${WORKDIR}/${MY_P} ;; *) # official stable release QT5_BUILD_TYPE="release" - - if [[ ${QT5_MINOR_VERSION} -ge 10 ]]; then - MY_P=${QT5_MODULE}-everywhere-src-${PV} - else - MY_P=${QT5_MODULE}-opensource-src-${PV} - fi - + MY_P=${QT5_MODULE}-everywhere-src-${PV} SRC_URI="https://download.qt.io/official_releases/qt/${PV%.*}/${PV}/submodules/${MY_P}.tar.xz"; S=${WORKDIR}/${MY_P} ;; @@ -535,13 +523,11 @@ qt5_base_configure() { echo -platform freebsd-clang fi fi) - $(if [[ ${QT5_MINOR_VERSION} -ge 10 ]]; then - if use kernel_linux; then - if tc-is-gcc; then - echo -platform linux-g++ - elif tc-is-clang; then - echo -platform linux-clang - fi + $(if use kernel_linux; then + if tc-is-gcc; then + echo -platform linux-g++ + elif tc-is-clang; then + echo -platform linux-clang fi fi) @@ -571,9 +557,6 @@ qt5_base_configure() { -no-sql-db2 -no-sql-ibase -no-sql-mysql -no-sql-oci -no-sql-odbc -no-sql-psql -no-sql-sqlite -no-sql-sqlite2 -no-sql-tds - # ensure the QML debugging support (qmltooling) is built in qtdeclarative - $([[ ${QT5_MINOR_VERSION} -lt 11 ]] && echo -qml-debug) - # MIPS DSP instruction set extensions $(is-flagq -mno-dsp && echo -no-mips_dsp) $(is-flagq -mno-dspr2 && echo -no-mips_dspr2)
[gentoo-commits] repo/gentoo:master commit in: eclass/
commit: 88a80f7fd189ed9ef81c6da078ae4e214ba6623e Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Dec 4 23:52:07 2018 + Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Dec 8 20:07:00 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88a80f7f qt5-build.eclass: Drop obsolete qtwebkit quirks Remaining qtwebkit ebuild uses CMake. Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/qt5-build.eclass | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index ee4875deaad..70f2bed9e4e 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -123,14 +123,13 @@ esac IUSE="debug test" -[[ ${PN} == qtwebkit ]] && RESTRICT+=" mirror" # bug 524584 [[ ${QT5_BUILD_TYPE} == release ]] && RESTRICT+=" test" # bug 457182 DEPEND=" dev-lang/perl virtual/pkgconfig " -if [[ (${PN} != qttest && ${PN} != qtwebkit) || (${PN} == qtwebkit && ${QT5_MINOR_VERSION} -lt 9) ]]; then +if [[ ${PN} != qttest ]]; then DEPEND+=" test? ( ~dev-qt/qttest-${PV} )" fi RDEPEND=" @@ -147,7 +146,7 @@ EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_install sr # Unpacks the sources. qt5-build_src_unpack() { # bug 307861 - if [[ ${PN} == qtwebengine || ${PN} == qtwebkit ]]; then + if [[ ${PN} == qtwebengine ]]; then eshopts_push -s extglob if is-flagq '-g?(gdb)?([1-9])'; then ewarn
[gentoo-commits] repo/gentoo:master commit in: dev-lang/rust/
commit: e1a0d1ade3ea7d342557e6dd81c7d230a666f058 Author: Patrick McLean gentoo org> AuthorDate: Sat Dec 8 20:00:36 2018 + Commit: Patrick McLean gentoo org> CommitDate: Sat Dec 8 20:05:27 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1a0d1ad dev-lang/rust: Version bump to 1.31.0 (bug #672646) Closes: https://bugs.gentoo.org/672646 Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Patrick McLean gentoo.org> dev-lang/rust/Manifest | 14 ++ dev-lang/rust/rust-1.31.0.ebuild | 297 +++ 2 files changed, 311 insertions(+) diff --git a/dev-lang/rust/Manifest b/dev-lang/rust/Manifest index 7ee673aefe7..857f32cd4f8 100644 --- a/dev-lang/rust/Manifest +++ b/dev-lang/rust/Manifest @@ -24,6 +24,20 @@ DIST rust-1.29.2-powerpc64-unknown-linux-gnu.tar.xz 103432092 BLAKE2B ed700d2987 DIST rust-1.29.2-powerpc64le-unknown-linux-gnu.tar.xz 106607384 BLAKE2B de19f341dcc1cc580e68865d3b0034f781ed4ca0ac1b07c89352409684670c7d0fd5c95ea6018fc7de4fbfacf4f7d0ebeec34c036c0062ca7f776403511df7dd SHA512 b9181da601a467f46713f2f438fc7ad69c46fc310e62a8d45f665744c8578491d832b8624ff454c19c94f1694fa406846a82289250241030a70b2cb4b88913d1 DIST rust-1.29.2-s390x-unknown-linux-gnu.tar.xz 99114900 BLAKE2B 08e9251bd8e9c9ac6352ab81735b720052b3288b5fd344f6ba69205c7971f362270f0acce7dbd3763b20d3b1e976ff5404151253acb9c29708f36038d23299f1 SHA512 f76a030257edbdd993d7a4e83da895c8b4749904fb2252a125b3e4ef4331a1cb2c389ec54a372bea413718e3dad987e4b17eb29d301c29ba330222502e6b9b75 DIST rust-1.29.2-x86_64-unknown-linux-gnu.tar.xz 148275708 BLAKE2B bd7c974f5c8cf78a1fbfc73544ecdab97b7f9ab28ed9ab66759eca3e0fa085fdb2689ba5dfc6dccc6746bab91b6b0b544c44cb729e493e2f9ed84c96a247 SHA512 8bc05942a72b186ea1765831bea6921f734e2dd58790a8e427a6d63a2db0d9064937d3198ca3febffeba73b1cc3bef716155ef6cb32127ddeef29ac884cde4b8 +DIST rust-1.30.1-aarch64-unknown-linux-gnu.tar.xz 114223904 BLAKE2B ca3f93d8cb59f5ecc8680ab018f8666a5c0df1bf671af4220c39178a946ce77a05588d91709facd42a1d693120c46c472c4d6dc0b6a5e7d3330b9f0807ff3fcc SHA512 5fb9cb0281cd76b1995bcd6c4dd824f8a4d4c1ffc61a0a54f62b45340b98a7b41cf5ec3d4a8ec370c2603c14f9dc5451ae1a47ea96ebbd520770dfd22cf0ffdc +DIST rust-1.30.1-arm-unknown-linux-gnueabi.tar.xz 120865688 BLAKE2B 18934c592882ad3608b82ab9aac68412790d02c148c2af0a37a5027ebe059ff697a8556c4dcbf0ac5cf37c6fbd37c51abbf88a3f0ce274742ff1d7ec94f96f04 SHA512 871e0b036273ec62e28712fe1d5d1c74b061eabb59f9cc852e8924df1aaa3797af28d51dde643010920321fa71382ddd70f2d97d25c06999d5663f5209ffc6b7 +DIST rust-1.30.1-arm-unknown-linux-gnueabihf.tar.xz 121114868 BLAKE2B 6410c16e3019b67d2e299b06527db6d7291a1426c4606012234bd8e93b3e3738dda5907aa6d9e48ac25f2a7e06a441f7e42095ec81de01408c235577e0df2df5 SHA512 73ac63f81a86b70ea0378e859b6a913f3f6e2044f1ddcb056c53a18d3f32011a47abf29bf2a84f3a9d6732bec348741662448104e320bcaebf2a3667209fcedb +DIST rust-1.30.1-armv7-unknown-linux-gnueabihf.tar.xz 122390768 BLAKE2B 39c38b9bf96e94023b9c6d81fce8c341e789f182b59bf1b540a6d22be24e0498c638d0d3aa1433f49e52048795f91f5f4ca707dd8fcb998ea51caa932537b74e SHA512 88f9f23f431cc34d6b7ddc51c2321905df03dc714aab0b3a5e067390de5092b472f8092ba25a5c09666ad9b138efc2f4b625ca86dbe10ddeea213b8e9d70c9b3 +DIST rust-1.30.1-i686-unknown-linux-gnu.tar.xz 143689500 BLAKE2B 0b654570e295c785b074625c8fe7649e1841327fba790e38e08e912ad0602440e08a205318e637c903989bd19bab4c0a726583f2ab457d75ff71e96524251aa0 SHA512 66c56107fd8c83f9c1948137aee09c67633f6f472823696719a22b5f0b0e28925b0a6b6545b8fe4d741b8473ddc49db30fe112fc5b0e6fc63439901ff5462a86 +DIST rust-1.30.1-mips-unknown-linux-gnu.tar.xz 112662912 BLAKE2B ded8631f76ac5fc16cae298f5a7afdb8c451ff95af03c827959bd19484d513066ac387e956577f5ee42369fc5d68c1e2cbf4cfc72c364739eea31643844ba936 SHA512 8a1681f054a57d62050a2d11ae3109e7be4f6638319b059d10612f0be073de63f2dffea79bb29452763fad8a64274367d9bbe5ca0636e78c34a6cdce542118a0 +DIST rust-1.30.1-mips64-unknown-linux-gnuabi64.tar.xz 117355424 BLAKE2B fcc583d99a6b17e1d38d26a48d39768b09c52e6a6fa3cd36d9513bd9385fd4560d06c3a737b69c396b5bb465ae261321dbbaf7bda4378d7e4be165bc889d8b2d SHA512 c18cd513021753d2b8e1a9ea2bf0bd73817e2c81dcf246993b52c7055b3b18d9f20c935dec4281acbd2792a6964dbfb0c05b5cb2075703aaa444352ef8f06d50 +DIST rust-1.30.1-mipsel-unknown-linux-gnu.tar.xz 114622708 BLAKE2B 5d62f6744cb1bf69d7047bb18e246623ee98c94bfa083fd5269bdcf8dd1c2c0824747dd641f703931f0b22fd513ee8a65a4dec103bf479f6a00e72098541a1aa SHA512 3d084c5c986ba379a3213c9662bc6a0e24c9d3a1c4ae4e28c3f807841eacb15dd8fb42bcb190967ba4a9e8e5397b63e6bbd3990bd9826d52a127bd71ac5b361e +DIST rust-1.30.1-powerpc-unknown-linux-gnu.tar.xz 110375696 BLAKE2B 6ffa7b6b7ae569c7ebf6b0ab43287421e4a5e2ea8654638902e61df42f7e3de7f14c14f2e585d7b3e140f2ebc7a0e1149b814fd5a6d6c0374f9d8059ff3369c3 SHA512 ebbd2c2b160e6e36a03eee205a333cddf0a36cd0ce42135a7e4119469be41b76cedda143cf9e9491ae0d9aaf65e2e927550e2e0358401fc5f657ee02b37959b4 +DIST rust-1.30.1-powerpc64-unknown-linux-gnu.tar.xz 1
[gentoo-commits] repo/gentoo:master commit in: dev-lang/rust-bin/
commit: 29d186fa594fa49a72d8be3a0eefcc0a1a8de82f Author: Patrick McLean gentoo org> AuthorDate: Sat Dec 8 20:01:28 2018 + Commit: Patrick McLean gentoo org> CommitDate: Sat Dec 8 20:05:28 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29d186fa dev-lang/rust-bin: Version bump to 1.31.0 Bug: https://bugs.gentoo.org/672646 Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Patrick McLean gentoo.org> dev-lang/rust-bin/Manifest | 13 +++ dev-lang/rust-bin/rust-bin-1.31.0.ebuild | 144 +++ 2 files changed, 157 insertions(+) diff --git a/dev-lang/rust-bin/Manifest b/dev-lang/rust-bin/Manifest index 961c1354640..ed56b604e0b 100644 --- a/dev-lang/rust-bin/Manifest +++ b/dev-lang/rust-bin/Manifest @@ -30,3 +30,16 @@ DIST rust-1.30.1-powerpc64-unknown-linux-gnu.tar.xz 118698168 BLAKE2B 58905ab6c6 DIST rust-1.30.1-powerpc64le-unknown-linux-gnu.tar.xz 121569444 BLAKE2B d4d390ea24298cd88d224efe3c1a1dc3a802b678d977bc0aa26197e291547a6ca823a0fe5e35491204a649cb6a5419343a825ef32408aa2638d057b209b1c15c SHA512 b4595f031a006335ac778ec6a07c398fd6cce78ed3c0ed5730a5c06fa3a390dbab1afda0468756330783baa86dafb2f0c7ca7c75b735eb532c268027e22975e6 DIST rust-1.30.1-s390x-unknown-linux-gnu.tar.xz 124025168 BLAKE2B b4a8df333b093ae36a6b9005aca7f424f209d629041c4fce1efc7e19b176f6e6325bf3552e8de93faa311ebf065ad4b9f104de3ee412b2a3fda70156c2b0 SHA512 592764d3d5b4d8a2a7628f4969ba5204da4ea63ca92efc17d4f9339274fce00aecc4d1ebb1f4d0499da8559375ad205054b26e12775af622a7112b20b8c8d4fb DIST rust-1.30.1-x86_64-unknown-linux-gnu.tar.xz 145148116 BLAKE2B e70d667d880656209c036b72f619b1bd29679878ff4b8865f0453c064c4a8a53a96e73994509637312032e1260eeb0e53f7372ca1526760b1631846ed6a4c571 SHA512 05238b65b5184e3df81dbcf1cc1035a03054ef09a8563fe60877e4f078d0d2cad71aec73c1451196171f39f8e729059e91c7eed7b1402e03801c0b7e81815885 +DIST rust-1.31.0-aarch64-unknown-linux-gnu.tar.xz 117860740 BLAKE2B 1074e8cf1ea2ff6f51770593304a1c803ae826293bdab1600306ddde7f634d3be4837e7e7163a3ee076159699551cba61eef2fd4c415e1ff762e0e5227a70111 SHA512 ac8df9779295d6270dd383399fb575f51d3d67da547cdd428929d5e8bcd74e052d2364b5fa3105c7375dc9639fc6327dee5a3e2f6645ffe90be4831968968381 +DIST rust-1.31.0-arm-unknown-linux-gnueabi.tar.xz 124536044 BLAKE2B a437e3bb97a57f2048048f1300e16c785f43c243b8706236fe659c2a917e0739d8037ea68a15ab642ca4bc8a394c5248149d61bdeb42cf05301f5683a158f578 SHA512 05092981310c72edee0b9bf6ad643c673ffaa376c6bfd6bc15916a680e007b7aac846db92a02f86f8b3a6da135d8d96edba3cc2a6ef297512bee648e7486dd81 +DIST rust-1.31.0-arm-unknown-linux-gnueabihf.tar.xz 124835432 BLAKE2B a670e0bf6cd32fe96efc12b5f7abde34aaadba5277c198688a5a055eb74cdb9374da43ebbd54d3d0e7e1b75a950c65374f6abea19eabdcda68fa2505a192d2a0 SHA512 f3c8356fb85ab46e01250da3ec93c9e1f9e833762748754c3b86d811e184af574c1dbc81c6e826291ced5ce9d5ebc2a8fefa639071bfc95183820a60377cc63a +DIST rust-1.31.0-armv7-unknown-linux-gnueabihf.tar.xz 126254120 BLAKE2B db7ae95afce5791bca7c934356ade914cbe916c10c9f95c0f71e56cfc91d11f58524e7e10c97314b3cfcb7d4ab19fd1f329fab5a7efe70ccd0bcc7f3faa170e4 SHA512 8a49cf20b158b3ead117dc686aa3eb298cd75d13cf30320f644c8545d6d9d8b26aad55dc1d7de4050233210ae2c9adbf3669555a7ef5c77589de2675bab73913 +DIST rust-1.31.0-i686-unknown-linux-gnu.tar.xz 147089208 BLAKE2B 9fc6d56a9d733e86e0b480c963dc4ac6f0a8a3a31c8e3dbc00225ebec128359fb72e0b1008420c89ccc7ee149b7e74446194f0534afd4c17bd0b547b3e0dcd52 SHA512 d1f783823c5b8ecba180d7e0e7831c8d4402c5c0717f9b93eb5262c7648264816579b61db71ac56efd110b6d0e39f53a9f19ea87d905855a8251b127ae6bc14c +DIST rust-1.31.0-mips-unknown-linux-gnu.tar.xz 115600024 BLAKE2B 73fc083d359dbdd42d1add5b94cbdf81e699e87500dfe24c386c1145befa17b6428225ff87228496ae218c46cfdb57edd39b2b1130ceeca8bf87122e5786f585 SHA512 b3cdd7d14e9c710077649071aac4644b36997e8e673c3d3a93ebfcb60f0dc539c641d605e1f10370a8b98b6370c93c39fc7d897acf008b328b6790f803fc3961 +DIST rust-1.31.0-mips64-unknown-linux-gnuabi64.tar.xz 120683432 BLAKE2B bf907ae1b3191121f2c8d99cbaf73242b41d438223aacf48feeb0cb4810918f7536ef31b9c45694a0d33f101baf99b887a19305c67ecd33c585af8e74449044b SHA512 e5e19ce317c37de50533e21206a1646f6633f643444d37a456ecc8f151241f687a0cfd7c2b49d12fd0171be1ad7217c8274d8e5bd8d962ba2a5ac7a01c55a1bd +DIST rust-1.31.0-mipsel-unknown-linux-gnu.tar.xz 117572476 BLAKE2B 9fa1f95d47441c32f4c53d65fa44d0a2365dbe1739d16b076e551422df94c0e984872a4ff457a1dbfe1a3855cc3903758a7e9492e0036af28ed617763141addd SHA512 ab0fdced2f4c281b554c06a298bb248109418ecf19b5e6211d478a812f5b06a84f2d95bfc590d8d354aea17a7426d01f910c0ccc01db6b6115090fba838a24ed +DIST rust-1.31.0-powerpc-unknown-linux-gnu.tar.xz 113276512 BLAKE2B 7c559d306e7c8cfa78e1affb02561e5d6ac03fa6c1849fbf0391713bbd5eef327ddf613bad8d4931b3878db0f1c7c95fc7d8c6d0242d90ea3ffadc0ff26b598e SHA512 bfc5209baf2751ce8aaead6d4640c4276c4fd65d3973beb93800e9d3f205e8f33676d4bd27576199b1c87e79e2fde20cbbb0873efa06139604a6007307b05484 +DIST rust-1.31.0-powerpc64-unknown-linux
[gentoo-commits] repo/gentoo:master commit in: virtual/rust/
commit: a0ec442ebd5cc04acba4531d55d42cf855e75e78 Author: Patrick McLean gentoo org> AuthorDate: Sat Dec 8 20:03:58 2018 + Commit: Patrick McLean gentoo org> CommitDate: Sat Dec 8 20:05:28 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0ec442e virtual/rust: Version bump to 1.31.0 Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Patrick McLean gentoo.org> virtual/rust/rust-1.31.0.ebuild | 15 +++ 1 file changed, 15 insertions(+) diff --git a/virtual/rust/rust-1.31.0.ebuild b/virtual/rust/rust-1.31.0.ebuild new file mode 100644 index 000..f0642556ce5 --- /dev/null +++ b/virtual/rust/rust-1.31.0.ebuild @@ -0,0 +1,15 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Virtual for Rust language compiler" +HOMEPAGE="" +SRC_URI="" + +LICENSE="" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +BDEPEND="" +RDEPEND="|| ( =dev-lang/rust-${PV}* =dev-lang/rust-bin-${PV}* )"
[gentoo-commits] repo/gentoo:master commit in: virtual/cargo/
commit: b4c1199e167e44b117a25e8e593e1f00131ca2ab Author: Patrick McLean gentoo org> AuthorDate: Sat Dec 8 20:04:44 2018 + Commit: Patrick McLean gentoo org> CommitDate: Sat Dec 8 20:05:28 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4c1199e virtual/cargo: Version bump to 1.31.0 Bug: https://bugs.gentoo.org/672646 Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Patrick McLean gentoo.org> virtual/cargo/cargo-1.31.0.ebuild | 17 + 1 file changed, 17 insertions(+) diff --git a/virtual/cargo/cargo-1.31.0.ebuild b/virtual/cargo/cargo-1.31.0.ebuild new file mode 100644 index 000..8d3318f5f69 --- /dev/null +++ b/virtual/cargo/cargo-1.31.0.ebuild @@ -0,0 +1,17 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Package manager for Rust" +HOMEPAGE="" +SRC_URI="" + +LICENSE="" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +RDEPEND="|| ( + =dev-lang/rust-${PV}* + =dev-lang/rust-bin-${PV}* + )"
[gentoo-commits] repo/gentoo:master commit in: sys-kernel/vanilla-sources/
commit: 719f8703871114746aed1ec06ed9994d8897d58f Author: Mike Pagano gentoo org> AuthorDate: Sat Dec 8 20:03:54 2018 + Commit: Mike Pagano gentoo org> CommitDate: Sat Dec 8 20:04:02 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=719f8703 sys-kernel/vanilla-sources: Removal of 4.18.20. Series is EOL Signed-off-by: Mike Pagano gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 sys-kernel/vanilla-sources/Manifest | 2 -- .../vanilla-sources/vanilla-sources-4.18.20.ebuild | 16 2 files changed, 18 deletions(-) diff --git a/sys-kernel/vanilla-sources/Manifest b/sys-kernel/vanilla-sources/Manifest index 3664a6d1b0c..1ad0e238bef 100644 --- a/sys-kernel/vanilla-sources/Manifest +++ b/sys-kernel/vanilla-sources/Manifest @@ -1,12 +1,10 @@ DIST linux-3.16.tar.xz 80501624 BLAKE2B 46de37c6e1bc3c57d4b77f772ccd372fd77f96989d19d341b8098dab13a86659e0c74802859226fc7b22879ddb05788cfc1aad020920e3acc53d5383aa496afa SHA512 64033e741d3f42ed06010e63e69d66e1d3d9414ef20f76834508878d4218b72619541a18ef4fd377204af2859e52198310998109b20ed9b67722586b28c9a231 DIST linux-4.14.tar.xz 100770500 BLAKE2B 85dc4aa953fe65e273a24473d8de98e4f204f97c43be9fc87cf5be01f796f94cfde5c8f9c84619751f1cac51f83ce0b4681fb19c5f2965a72d4a94fe5577846a SHA512 77e43a02d766c3d73b7e25c4aafb2e931d6b16e870510c22cef0cdb05c3acb7952b8908ebad12b10ef982c6efbe286364b1544586e715cf38390e483927904d8 -DIST linux-4.18.tar.xz 101781564 BLAKE2B 138bdc49dc8871e5566b5e23a9e5ed0e68fff480a7a04fc659a9efe2d4bcc778ac01368a32bc5d1dbde870102ce7294b9d315f81c4e6e762ee781135e83033f2 SHA512 950eb85ac743b291afe9f21cd174d823e25f11883ee62cecfbfff8fe8c5672aae707654b1b8f29a133b1f2e3529e63b9f7fba4c45d6da8000b3a9a9ae038 DIST linux-4.19.tar.xz 103117552 BLAKE2B 1dbf16cf410867412d17568fe42bc1e90c034183b654d270b650621ff7664a321950943d0639205bc1ee7ef6210be170c1f2c785a042ed8a4ec5e3a486d890e0 SHA512 ab67cc746b375a8b135e8b23e35e1d6787930d19b3c26b2679787d62951cbdbc3bb66f8ededeb9b890e5008b2459397f9018f1a6772fdef67780b06a4cb9f6f4 DIST linux-4.4.tar.xz 87295988 BLAKE2B f260f1858994f5d481fd078c86e51bddbc958f7c5d1586f60dced772e1b1107ecf3aae0558c3e6f39c36f7d3aa1e6cd1e5c64ec9d6f2218f47b98413da6466fb SHA512 13c8459933a8b80608e226a1398e3d1848352ace84bcfb7e6a4a33cb230bbe1ab719d4b58e067283df91ce5311be6d2d595fc8c19e2ae6ecc652499415614b3e DIST linux-4.9.tar.xz 93192404 BLAKE2B 83ae310b17d47f1f18d6d28537c31e10f3e60458c5954c4611158ca99e71cc0da2e051272eabf27d5887df4a7cb4a5dd66ff993077c11d2221e92d300a0b48d7 SHA512 bf67ff812cc3cb7e5059e82cc5db0d9a7c5637f7ed9a42e4730c715bf7047c81ed3a571225f92a33ef0b6d65f35595bc32d773356646df2627da55e9bc7f1f1a DIST patch-3.16.61.xz 2218496 BLAKE2B 286740e401f343f160c219a167c6e8a7f407ce478c9c2e20b9c6f36ff6d14a70038ef722d224d68f6cbc2edf952b8cb725e3971312fefe3629bdc69aea0298b2 SHA512 85dbd1e75348614d10d366e21eabae967297d7a781b4efa1a8881f07a5b8f9c057e594f4b912ac804651e1e93f2a939602d0c022b1bb462280dca381fe7a3b95 DIST patch-4.14.87.xz 2063920 BLAKE2B afbc7ca7a1a1d08f9f790ff8020c781bfee7038d1400e2e60cc242becd32e175f0f2aaa760c0b0acea96f3f08f54548d753654a386fa8cd47715bca7f5964eb3 SHA512 c35f3299537a6e9450762003403a7f04d43e5f2888d4aa9ebcb106076a20b0f2c3240c27a5ac5f3147e114affbfd6612747cc62159bcf61c66625accddc674f7 -DIST patch-4.18.20.xz 652212 BLAKE2B 7351cd9ee275fe7687e0260262763faa54fdbec9ec2c6cbc2d8169b900227ab82851ed43f3d1052a6e59b547380a19488dec4e8e64ba2985c0a460dad96124ec SHA512 c44403f5fb71a0dcbc8c39037cfc982d73edc2f411ec9cef0eb0220d422ef369b57e849e9047bea1ca734fa4706483e72c0e91a4be0c31e4df45223b388091d4 DIST patch-4.19.8.xz 308440 BLAKE2B 1b3b1eb11e44ddb92ec7bfa2229dacbb0876a02159015d2393f55ac577d24cd105ac197f5bbb2c09efabaaf822e71360d7275934e0a0b6f7a277a09fa6c357f3 SHA512 c53092846a7f9a3d34eaf42085d2b404fd85e1acebe11b3f18c98123ce317012ec71d51fb5cb0f5db865f3a46a82f026db5ea02032f579c20cbea7dc15b5e145 DIST patch-4.4.166.xz 2256752 BLAKE2B a59f73eb70a98ab611a05d58cb2022dd1d73698f95d8fd371fea9fdef8459a2209e68c07465162d9edc4ab167b74559213da95db3f03c186a2964bf42f60b42b SHA512 c1f74863c25974c77a6ced7269d5e5e8fa1f1d1bbf126bb952b814c758b8e6be5f0533c828c5d8e699d013ba0df1573f2854198c86f7e48bebff255ea545e8fa DIST patch-4.9.144.xz 2455248 BLAKE2B a4577e160d9c0f76e1f74d5982d45e1b6293f10f57cebbbd6436ee1daa1d9025adaf735c1f0cac90d6c0ed30f6bff00e84ba1b6cd134adbfb6a96922ae148cf7 SHA512 536a2639f215d9834db65e148f07048c0367bd8183133a68b24654d37c0d1f7a522ca87ca8d3746b6bbc80556725153060bd359ec7e53cced5b37f6b1f36c910 diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.18.20.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-4.18.20.ebuild deleted file mode 100644 index 4d8a2803b8a..000 --- a/sys-kernel/vanilla-sources/vanilla-sources-4.18.20.ebuild +++ /dev/null @@ -1,16 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -K_NOUSENAME="yes" -K_NOSETEXTRAVERSION="yes" -K_SEC
[gentoo-commits] repo/gentoo:master commit in: sys-kernel/gentoo-sources/
commit: 85408ed01d859174a8db596956a6902dfbaae16b Author: Mike Pagano gentoo org> AuthorDate: Sat Dec 8 20:02:55 2018 + Commit: Mike Pagano gentoo org> CommitDate: Sat Dec 8 20:03:03 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85408ed0 sys-kernel/gentoo-sources: Cleanup of 4.19.X series. Signed-off-by: Mike Pagano gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 sys-kernel/gentoo-sources/Manifest | 24 --- .../gentoo-sources/gentoo-sources-4.19.0.ebuild| 28 -- .../gentoo-sources/gentoo-sources-4.19.1.ebuild| 28 -- .../gentoo-sources/gentoo-sources-4.19.2.ebuild| 28 -- .../gentoo-sources/gentoo-sources-4.19.3.ebuild| 28 -- .../gentoo-sources/gentoo-sources-4.19.4.ebuild| 28 -- .../gentoo-sources/gentoo-sources-4.19.5.ebuild| 28 -- .../gentoo-sources/gentoo-sources-4.19.6.ebuild| 28 -- .../gentoo-sources/gentoo-sources-4.19.7.ebuild| 28 -- 9 files changed, 248 deletions(-) diff --git a/sys-kernel/gentoo-sources/Manifest b/sys-kernel/gentoo-sources/Manifest index 9e06696f135..7c1bff3a1db 100644 --- a/sys-kernel/gentoo-sources/Manifest +++ b/sys-kernel/gentoo-sources/Manifest @@ -10,30 +10,6 @@ DIST genpatches-4.14-93.extras.tar.xz 17488 BLAKE2B 00af3f4f310d0862cfacd11742d1 DIST genpatches-4.14-94.base.tar.xz 2256712 BLAKE2B 5666fbb839e1b33481778c67833a5880a541e7cc0a29bb53ec418fe1223865c7f4ef3cc121b9b719d054fa5846edb3b2b6abb2839071f90a39260f311db4 SHA512 26df6f65a5a5a2179a0d3e8cc59a94df48e4af136b76796b3d1926ddeb12a8e80548df22fc62afaf9326c5c709ab3c08226fa1c032cab1e34ad0875025cd8c28 DIST genpatches-4.14-94.experimental.tar.xz 5224 BLAKE2B a70d19dc0c262425280de991c26a90be16cdb1fae4209784ed16cc4cc0470a2b31a0cdb64baa59d2678c100476492cdf4756572ffb936943a818228f40e2c4e5 SHA512 cd1a741c0998d5b00cf3647024dd62b3826a317668478d2f7823bdddb712a3780f31df7cbd5e8dc93be48db0ee329c7092b1d254f6dc73cce52c5d035d2cc488 DIST genpatches-4.14-94.extras.tar.xz 17496 BLAKE2B e96dc5be7dad25f1d4efa1081b6e9316e86e2d33daa9440f6c0e5b523b64a4a73b6f2f38643bc4ff392dc568984eeaeeeb63cca1c57c4f4c28f431db20f42b1f SHA512 138f1f2761fea1bb432b1c620b245f636c0183bcadad238952f8d4056809b5d9a6b55ea0bd4010c7333a11685417d5b099dba4487f74d277a243e369a6826cf9 -DIST genpatches-4.19-1.base.tar.xz 4088 BLAKE2B 4cf8b20b0fdacfeb2e4e30442e3022306c5f84db838f155612c84cab2e3c74ead821f33623679f840839da6e71b6133e593c5c2650a6bd50737ab5d83127ee9b SHA512 a5b00977b59030c0240ecf6a0d6d73050ab223c745c34518bff0d8a009ebb624d3fac1a574beb174e9ad48ee191bb9433e798597bfbf5ba6aea214dca6122b11 -DIST genpatches-4.19-1.experimental.tar.xz 5224 BLAKE2B dcedc912566883c0c57934acc23a8c5d89c95d14bc3e6f52b715562a414a535896774f5e184c1c83f1d601c32231ab3b98579eac848fd6a71ee7f833a044088a SHA512 6beeb2a40e8f668f833da082d79fa33a3901891a7f062fca56f4f6182fe6d6368466ed9eef4ad1daddc62b383ec5aeb8189b09577b33fd39be9b53e1e53c920a -DIST genpatches-4.19-1.extras.tar.xz 17480 BLAKE2B d0baf2d2fa347e8df30f6d6525947a0810355ea6f86b7d70f943294e8da041e05670a35180579443897f393a40dfad3de057a1bc94e30e7db9c21b72693aca94 SHA512 332dd814d4e9c70321623aa50762249f4f23fc09dcf5b2df63c06ddd17abbc5eaa2e9fad4bf666361cea01454821b9e6f28e542fbe0e67a23ff0f267bfe3ff01 -DIST genpatches-4.19-2.base.tar.xz 13356 BLAKE2B 17749ec6877a571061006d7f154078c153696f05d8eda7f5db8d24945b70a7bffb3f7c4d88c7f9cdea79c4f3bdcef9bd4fcbda4ee2e25d26f93ef644dc673fc7 SHA512 5d445db0dfdfac66b0936c408b26c3c10ca3c4f2cea9f64f83c9ae91afdbf7a4d50e8f25e18b9514238d4a6ff87c20677717ea81401fb162eb4e263e20c3 -DIST genpatches-4.19-2.experimental.tar.xz 5220 BLAKE2B 68fb137e87a7be41c9ac64fee33b9fa58510085e7e32784a49728f2f12ab4de134b801b6772571bcdb16f6f1d481b93968a574c1c60b6070c31938982bc5eddb SHA512 e1e7fdc44a02b9f9412430b3430f843239ac1801ee797c1ea55ece4477087b53fb1379342f3e4ef24bbebc59df7e38bc802cdb222db6df0f2d3f1cc04fe163ad -DIST genpatches-4.19-2.extras.tar.xz 17480 BLAKE2B d6b72d42a27cdf94fbf741f3c0e5a178bc51d980836b54b8bb75723f59c4d9c5d7d96f58009cfd58759de20963528735ba3603839da8366e8369931421a69f49 SHA512 5187ba3df73681cb78e2df50e04cb6a4f458a0ebd79c0a2d5fc06bbd9aeb58f3686b224e26ee59edc55d2a2817b7a7cb60ba1df1febf2eb4ba2e628e578b9b75 -DIST genpatches-4.19-3.base.tar.xz 133624 BLAKE2B 347353821bcaefa97ccb72151f9e240c72576b00a57fe8c1be6bf1d9c9dc5a839753c8358f29e167a16bd0765b283bbefac7920269725a9b665c7f614dc6ed36 SHA512 02729fc31be11211d880b542ea30cdb9a16213231c92b044d5dcded1aae818925cd33fcfce9000581315846eeb8a98437d6ec6c1b269620be3489d59c6133e33 -DIST genpatches-4.19-3.experimental.tar.xz 5220 BLAKE2B d360659f0b5d6bfd80832b0972a11c8b057a800455c4bc41a576cb0bb58c542b3df20917a5e8a5c188536f146ec6acf18157039a07de299fe738753098f1e855 SHA512 10eef1f441c6b6345f1c718c2c4863cb3000600ae239e6847dfea7f4834d0b43e0d029a65b824487100a5558ae160744c2
[gentoo-commits] repo/gentoo:master commit in: media-libs/harfbuzz/
commit: 4bc4c3686542a2710462005676e435099ec282a3 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 20:01:34 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 20:02:03 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bc4c368 media-libs/harfbuzz: s390 stable wrt bug #671588 Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 media-libs/harfbuzz/harfbuzz-2.0.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/harfbuzz/harfbuzz-2.0.2.ebuild b/media-libs/harfbuzz/harfbuzz-2.0.2.ebuild index 6dd1ab3c4ee..1674c2a5bed 100644 --- a/media-libs/harfbuzz/harfbuzz-2.0.2.ebuild +++ b/media-libs/harfbuzz/harfbuzz-2.0.2.ebuild @@ -15,7 +15,7 @@ if [[ ${PV} = ]] ; then inherit git-r3 autotools else SRC_URI="https://www.freedesktop.org/software/${PN}/release/${P}.tar.bz2"; - KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x64-solaris" + KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x64-solaris" fi LICENSE="Old-MIT ISC icu"
[gentoo-commits] repo/gentoo:master commit in: sys-kernel/gentoo-sources/
commit: 2d7d735651b0451c9600ba2fcdeffc02118693e7 Author: Mike Pagano gentoo org> AuthorDate: Sat Dec 8 20:00:11 2018 + Commit: Mike Pagano gentoo org> CommitDate: Sat Dec 8 20:00:18 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d7d7356 sys-kernel/gentoo-sources: Removal of EOL'd 4.18.X series Signed-off-by: Mike Pagano gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 sys-kernel/gentoo-sources/Manifest | 10 .../gentoo-sources-4.18.18-r1.ebuild | 28 -- .../gentoo-sources/gentoo-sources-4.18.19.ebuild | 28 -- .../gentoo-sources/gentoo-sources-4.18.20.ebuild | 28 -- 4 files changed, 94 deletions(-) diff --git a/sys-kernel/gentoo-sources/Manifest b/sys-kernel/gentoo-sources/Manifest index 1c2f991f330..9e06696f135 100644 --- a/sys-kernel/gentoo-sources/Manifest +++ b/sys-kernel/gentoo-sources/Manifest @@ -10,15 +10,6 @@ DIST genpatches-4.14-93.extras.tar.xz 17488 BLAKE2B 00af3f4f310d0862cfacd11742d1 DIST genpatches-4.14-94.base.tar.xz 2256712 BLAKE2B 5666fbb839e1b33481778c67833a5880a541e7cc0a29bb53ec418fe1223865c7f4ef3cc121b9b719d054fa5846edb3b2b6abb2839071f90a39260f311db4 SHA512 26df6f65a5a5a2179a0d3e8cc59a94df48e4af136b76796b3d1926ddeb12a8e80548df22fc62afaf9326c5c709ab3c08226fa1c032cab1e34ad0875025cd8c28 DIST genpatches-4.14-94.experimental.tar.xz 5224 BLAKE2B a70d19dc0c262425280de991c26a90be16cdb1fae4209784ed16cc4cc0470a2b31a0cdb64baa59d2678c100476492cdf4756572ffb936943a818228f40e2c4e5 SHA512 cd1a741c0998d5b00cf3647024dd62b3826a317668478d2f7823bdddb712a3780f31df7cbd5e8dc93be48db0ee329c7092b1d254f6dc73cce52c5d035d2cc488 DIST genpatches-4.14-94.extras.tar.xz 17496 BLAKE2B e96dc5be7dad25f1d4efa1081b6e9316e86e2d33daa9440f6c0e5b523b64a4a73b6f2f38643bc4ff392dc568984eeaeeeb63cca1c57c4f4c28f431db20f42b1f SHA512 138f1f2761fea1bb432b1c620b245f636c0183bcadad238952f8d4056809b5d9a6b55ea0bd4010c7333a11685417d5b099dba4487f74d277a243e369a6826cf9 -DIST genpatches-4.18-22.base.tar.xz 536292 BLAKE2B 895f4ca73e806c0adcfdf112fbd95637eac431c8fe3fee8cdd0b55b2fc0ea9090b2e12231d36796e939c61b4af677493689a1e058fa432f5844b37c2e4e3cf63 SHA512 35ceb9b1b5a74dbea3dda098f26b27f5a5435405b882e0e20db5b87853cd870e1f65abc31f4ad534cb32293afb0d7820dabb6a4b14459e9f266371623c4a1791 -DIST genpatches-4.18-22.experimental.tar.xz 5224 BLAKE2B 6e3aca3283f92697a8663a163c266e92c20ac2fad166f099355f5ada443a9d595b2e536c15766783460ef1903ad4b8e5b3c8136ebbd7cf9f57782ebb11008f6e SHA512 460abbef7e277913a991693a9da4db139b602e01a2f2fef11ab6e3e64d5cee37cbd332aa5b74da16efb0b25a8560d8527958cf32a181cb7fa3d529aaea9b -DIST genpatches-4.18-22.extras.tar.xz 17512 BLAKE2B aec6396dfea2387b2223462250719b5941995a4f7f005b7b1eef41c7be58fdc9079901759a9bb106d6a38cea7967dbd5b5859415430f4ea5866ada541a41b0f6 SHA512 e600a54e0ed3cca5f14feb698bd4f732d4e5ecf07c49d7f5c0785123ba19e574bb3a4470e20d0b86c752bb3422247c3fb33cf693bfd32f324e210ecd5c66a202 -DIST genpatches-4.18-23.base.tar.xz 638892 BLAKE2B 5cc70daad93067c3e59ffec62c74a42731c8671bf56097fda74383b467c80cea7d9e074efbf906381f96ad40b3bc49f7c6e513c99566da57c719d9535bd20796 SHA512 e01de2b165a8369e0f938623acfd17fd805d17e9083cc9f82aee624c6bf77df209d2cbb17f13c7c922bd4bc8a2af2226dd4fa7c295e170667e6721a078d7a33c -DIST genpatches-4.18-23.experimental.tar.xz 5224 BLAKE2B d0c065a8a0f4bfff7c262792d11f70fc8460bd71ab9dfe7eb0647f1bcf4cf39b5c53da1a88aad610d86ef32c19eb5bcd0acf1623a9497c6093cf2a2d9d6df7e8 SHA512 ff5ddb3d1838f47c19288160863bd9ad406bd3f1c5ff1bf6df46d4e85cbda25c0ba2dc90842607b0419f92376bf5adb437f860897eae15ce97bcff84e20301e2 -DIST genpatches-4.18-23.extras.tar.xz 17496 BLAKE2B eb2a601a65a5383eb9caafe8e27b8ebf8cb6373c985c504048cc1b5dfbbedf2a5eb2c6ee618c8c665ba7310983c963764c9ff66334078d15b416d799eea66577 SHA512 fead30687dac95b92477dc88710ad3c91cee0da9c45249929ee9116157fc7bc6a62539604cb8ca5e4fa8678e7e54fa16506779bc082e023defdaa55688203bff -DIST genpatches-4.18-24.base.tar.xz 676012 BLAKE2B 4bbd3fbcad9b0c8d73f9b92cb5ba832d713ce59ce74c8001595abd32d8979df3b31a8a1d180620a0504627cce6be1f90be0148c35b1a57dba7355cc6efe29ada SHA512 52fb28392276217e95c45876c42a88e14291e7a9ce662e3e1bd38b535b6a0df723ad3e16745c7427a947883f456b35d1dff67257e10810fa1f22d84d918ba1d9 -DIST genpatches-4.18-24.experimental.tar.xz 5220 BLAKE2B 5e5f8d5556b0bf954bd6a82e4c854aaa295350afae8889cd4bb4c52ae6a1377b17446e0a8e675b958fbd1e96058b27704554918a77b2505ad8639bf9c98b9c88 SHA512 da15d89fc88228958197eff47021397c4b36f7d32ef629b97f8252e7f5cd3c70d9e5f1b96cf0c0c3f914b7a90eb654c27ff74eff022a4eb563e130dbf1cbc4db -DIST genpatches-4.18-24.extras.tar.xz 17508 BLAKE2B 3c82fa61713a8db34c4ab1ffd469f0fb98074fd09dada98e0bd70fb5aa25f948d7a07e5d5e7ad8609d56a2a24b7af29032cba8ebaf023de6ab726b19bb06d0e2 SHA512 7e4b2172ed091c2ac35f1017869ee137e45368efa2cd2b58fed77ceaefda29deef2e22b82df3b9ab92af9d66e967efe6e3ba4f60ad701061f0991309a516480a DIST genpatches-4.19-1.base.tar.xz 4088 BLA
[gentoo-commits] repo/gentoo:master commit in: sys-kernel/gentoo-sources/
commit: 64c8f76d808a5f173d38f289f541e6856ccab11e Author: Mike Pagano gentoo org> AuthorDate: Sat Dec 8 19:58:55 2018 + Commit: Mike Pagano gentoo org> CommitDate: Sat Dec 8 19:59:03 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64c8f76d sys-kernel/gentoo-sources: Cleanup of Linux patrch series 4.14.X Signed-off-by: Mike Pagano gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 sys-kernel/gentoo-sources/Manifest | 21 .../gentoo-sources/gentoo-sources-4.14.78.ebuild | 28 -- .../gentoo-sources/gentoo-sources-4.14.79.ebuild | 28 -- .../gentoo-sources/gentoo-sources-4.14.80.ebuild | 28 -- .../gentoo-sources/gentoo-sources-4.14.81.ebuild | 28 -- .../gentoo-sources/gentoo-sources-4.14.82.ebuild | 28 -- .../gentoo-sources/gentoo-sources-4.14.84.ebuild | 28 -- .../gentoo-sources/gentoo-sources-4.14.85.ebuild | 28 -- 8 files changed, 217 deletions(-) diff --git a/sys-kernel/gentoo-sources/Manifest b/sys-kernel/gentoo-sources/Manifest index 0d6c30a885d..1c2f991f330 100644 --- a/sys-kernel/gentoo-sources/Manifest +++ b/sys-kernel/gentoo-sources/Manifest @@ -1,30 +1,9 @@ DIST genpatches-4.14-71.base.tar.xz 1731348 BLAKE2B 0b34671aede1514bde244e76319cd91ad73ce8f6a4b0b5708aef4664bc8bec1e246b407429711dcda49d150415fffb1d1284dccf50ca6e6aff58bfe898d732dd SHA512 9a6154fd4948389f1431833f7f743760dd9ac2ae4f8b6ea045e928384f48823303b2883f84b42f841ec83d0b80ed221011f01d2d94f22afac7eef6fba6c7c6a0 DIST genpatches-4.14-71.experimental.tar.xz 5228 BLAKE2B 9cf712fc523acd6c7325f2f726e8b658d5df27c9d183d748374a700023f059c40a2eb25bfb1a9b5d682ed0e1fefcc9c88431a421392c7d5ec8a7612d0fb503bc SHA512 6ba3451a7248226b18d37d1496aaee3159f46ae533288f1a090129aef9660b5bdadbff7bd7f90e3677100180afcb09afeb610d1c6a97483815399467ae1ad036 DIST genpatches-4.14-71.extras.tar.xz 17492 BLAKE2B 6c382cf00c22aba0dd280e6ce7ef0e8689560ca4318205a56b674c9c2f1c01e6942f9fcfcc6d417d56cabba0a762bb6a7250f0df8af5f88a0ac2dfcc02e77af5 SHA512 72ab2425270c43ec4bf36be83f22a25030e0d3ea3a01fc4835fe31652c7a61a07510f01ff99f02f6311eaeff651d249faaf2e0d4315c0983ff0114be91938537 -DIST genpatches-4.14-85.base.tar.xz 2050508 BLAKE2B 3d4b9917b538d6f906f8112cce00d06e07d09783fce9478ce7f166c900707d56cc147d30ffe4dcc6f26c1975881aa2771dfb76dd21d3580dc47430c035d6d850 SHA512 23b1b30c43e78ebe57c7dc06fb6a6aea035b1160d421c6577eaeb5afe0eb8c72390eb5b33e708990f3c0452fad4678946a74279f3e9ba547ebd385f59bfc6ead -DIST genpatches-4.14-85.experimental.tar.xz 5224 BLAKE2B dcedc912566883c0c57934acc23a8c5d89c95d14bc3e6f52b715562a414a535896774f5e184c1c83f1d601c32231ab3b98579eac848fd6a71ee7f833a044088a SHA512 6beeb2a40e8f668f833da082d79fa33a3901891a7f062fca56f4f6182fe6d6368466ed9eef4ad1daddc62b383ec5aeb8189b09577b33fd39be9b53e1e53c920a -DIST genpatches-4.14-85.extras.tar.xz 17492 BLAKE2B 220ed00e4813e2b94bc1815e5cdca40409239864b1447bc7eb261a37a6b132b92935f0cf1a01749d4d2b2522c7e932c2e5fd3eb127fb0d09b7b3615dcb8d531c SHA512 fa0cf06245bb72a36bece9cd98daa55ae49b82e08ad5bdd3474ac6fd875f43278eaaf85e64620c120856700222e4f8b61102cb0349566be3a2f39e561140bd43 -DIST genpatches-4.14-86.base.tar.xz 2079548 BLAKE2B 222359dcf32e823bca80c453bf3cb1f15b7ae99fbc57e5fd58e26b847c9e2e1c12bd0ac842f0867c0b408c220c015fb0d9b0cb48eecc240097977492b86aa092 SHA512 748b21c90c6f9954886c383fb9143ae149bfbe17d311f072f4b4f48bd352d946fd28adffe348f268a7a7c7315a36b7ba560a362d627b282509a3920f7b40032b -DIST genpatches-4.14-86.experimental.tar.xz 5220 BLAKE2B 68fb137e87a7be41c9ac64fee33b9fa58510085e7e32784a49728f2f12ab4de134b801b6772571bcdb16f6f1d481b93968a574c1c60b6070c31938982bc5eddb SHA512 e1e7fdc44a02b9f9412430b3430f843239ac1801ee797c1ea55ece4477087b53fb1379342f3e4ef24bbebc59df7e38bc802cdb222db6df0f2d3f1cc04fe163ad -DIST genpatches-4.14-86.extras.tar.xz 17496 BLAKE2B 02fcd8d7df697b97635dec9dafc6e4ea48f5b86cb17ffd084417bbca4837fe76751f2b766e4c02440a9aa30776c04c527d1eb95e85256c0a9e64bcc05e74167d SHA512 b01ba58775ba5583624faebbe05f98eb7e8f9db6cee09422c4825a7156f5318980a9fb2c32dc5d6648ccf57912993b699a267c9a1eaeb501de05b9e7f65c9fd5 -DIST genpatches-4.14-87.base.tar.xz 2086464 BLAKE2B fb03dd1fce0ba3a2f2d885ab20a5d522a6cb0c2d789bb0b55775aad3e1d054949663db9e6ac0aa008baed84e60e12a00c5967420300f69b0570f484650d8a7f2 SHA512 af489fcf1be24af0cba18cf493fafadae65afad2748fc3b985d3940eb60ac90852fdcd430ac30b9cc551929c1cb4967641ac7b389e1decd7898ddc57c1a94879 -DIST genpatches-4.14-87.experimental.tar.xz 5224 BLAKE2B dcedc912566883c0c57934acc23a8c5d89c95d14bc3e6f52b715562a414a535896774f5e184c1c83f1d601c32231ab3b98579eac848fd6a71ee7f833a044088a SHA512 6beeb2a40e8f668f833da082d79fa33a3901891a7f062fca56f4f6182fe6d6368466ed9eef4ad1daddc62b383ec5aeb8189b09577b33fd39be9b53e1e53c920a -DIST genpatches-4.14-87.extras.tar.xz 17492 BLAKE2B b5694d2ddea89f7efa36a218a5786f40e126af1888bcb1cb586d259d
[gentoo-commits] repo/gentoo:master commit in: sys-kernel/gentoo-sources/
commit: 7def297a7a2e86d295fbeca3de86ce807f89d0c7 Author: Mike Pagano gentoo org> AuthorDate: Sat Dec 8 19:57:05 2018 + Commit: Mike Pagano gentoo org> CommitDate: Sat Dec 8 19:57:13 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7def297a sys-kernel/gentoo-sources: Cleanup Linux patch series 4.9.X Signed-off-by: Mike Pagano gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 sys-kernel/gentoo-sources/Manifest | 24 --- .../gentoo-sources/gentoo-sources-4.9.132.ebuild | 28 -- .../gentoo-sources/gentoo-sources-4.9.133.ebuild | 28 -- .../gentoo-sources/gentoo-sources-4.9.134.ebuild | 28 -- .../gentoo-sources/gentoo-sources-4.9.136.ebuild | 28 -- .../gentoo-sources/gentoo-sources-4.9.137.ebuild | 28 -- .../gentoo-sources/gentoo-sources-4.9.138.ebuild | 28 -- .../gentoo-sources/gentoo-sources-4.9.141.ebuild | 28 -- .../gentoo-sources/gentoo-sources-4.9.142.ebuild | 28 -- 9 files changed, 248 deletions(-) diff --git a/sys-kernel/gentoo-sources/Manifest b/sys-kernel/gentoo-sources/Manifest index 2a25e228caa..0d6c30a885d 100644 --- a/sys-kernel/gentoo-sources/Manifest +++ b/sys-kernel/gentoo-sources/Manifest @@ -88,36 +88,12 @@ DIST genpatches-4.4-167.extras.tar.xz 16452 BLAKE2B bc0a60ffd38d57bc3ce3d374108e DIST genpatches-4.9-126.base.tar.xz 2350460 BLAKE2B 78e57b619a1ed60ccc91afd330638c88f41366019322edafe261065407620ecc128f6564934879042859734f4edfb1da31d4874c2d4bd39fd4eecb6095681e81 SHA512 7d476e3e52f747b93dd23004e6c180fa760d499c278dff104fafa52e845ff37ad963a8ed75c54c5a121bc1f8469775a23d123dcd0c2fa3be7d9df9d13d3f5658 DIST genpatches-4.9-126.experimental.tar.xz 106412 BLAKE2B a7b77b95ffd76d1a337752cdec820599dd9e71c25d4c943e4374986dec08b6ff3526459807ae85d47beb5c6948763bcaf302ac6addc3139b4ca1e1f0ef0640e6 SHA512 1060c045836060eada07a716def24547e575c7a67edd69f663369f40f7737a8c2592a602aa184f6d69db8dcba0a1bffb687c91af55917d9e52ed48a091873e00 DIST genpatches-4.9-126.extras.tar.xz 17344 BLAKE2B 0d28a44855994d1fead8eca518822ea8c706f2fdd3b845c17bf7771a03dc68fcafbf1eeca81a1982bffc38a1ab14192a182996a07ab0717dd31ce4f836dae9ec SHA512 72b3c88fa2beb9305de8792de4057716a1e4cf96f456cf2e0f8e2db385be0641bb975de3b809a5f230bc911cdf9fa63eba9ae25b5ce2633765bb3b4ea01dd329 -DIST genpatches-4.9-136.base.tar.xz 2499112 BLAKE2B d68b80514607892807b343ba310cd87df1e655f290e265572e6162529bf65205723dc89cf3520ada6f7f9d2d94e9f9a9ed2a9f709096e2c4fae5db07a5921540 SHA512 286063c44a5752162924d4a1b1a1f34dda1f9bb5f81576a96a083d1b91ff2f846d813fb7c5bf312f711e4fbb5c1cebe700907eba78d936259fff27c27db0ab6f -DIST genpatches-4.9-136.experimental.tar.xz 106404 BLAKE2B 7b3434f32eb16392162824e1a374f675c1e993a3e076b0d464812b420fcbb0d887bd8fc5b1316b71a4adcfeef714b9576a09c737e0c22374967d771417664757 SHA512 1241adbf933ec79f1ed809521c55e44a51b3060ef544ade05ee90ffbfd355613268beda4a1683f9b9a7b172f8f6305271b3caa9adea99980a0b1848f94e8cb86 -DIST genpatches-4.9-136.extras.tar.xz 17360 BLAKE2B e038a5f1fab6209642f023bbe789f540c2ffc4e946fa0c0d460ae9a9ee7c712c1c932317838313694a4a3312a4639e1f56db8e181825d2055c321e2f0fa6015e SHA512 49ec9be3ad02078fb235e4dda2111069244c37d04d434028d4fd5eb81e495480b2fdf1953d3671254839b3ddbf50a74c1f86bce2738db05180a0f3eb0b2d25f0 -DIST genpatches-4.9-137.base.tar.xz 2509096 BLAKE2B e3165ed862705fd51aacd8803cb5f1987b4be318d637c9fbb94ee0151b9031f53ab91b62b6533321aa46e6622007bd92a6dd4863bf7bdd905aa3887891c15024 SHA512 2e168bb38f3051dcfcb6cfbf39153588fbd9c23399a0c5b80503e686a0f296ec6173f9658ea1c4e52456978a3cf49b19e795e55e4c7833a88ba07338faf4 -DIST genpatches-4.9-137.experimental.tar.xz 106388 BLAKE2B 35fd2b3abc3bfc9a239248a90592592c19d4205beed2b3c8c9ffea522031121d3eafb513f40c719fd86ed0fb116e6db4ffbc56274dc5676669c0fc5056aee3fe SHA512 70d53587939c6a1503823e56f9837b9f4133a4e7aa1152815d8996bdd12fb6a66fa21c552c4c7901b37178015aa141e5b48bfbf6cf0f6f68eb8e83119fc01b0d -DIST genpatches-4.9-137.extras.tar.xz 17360 BLAKE2B e2c34195a7fdba0b30b2d4df4a922cc02e980986ecf1041fb623357ceb8a78fd580a52a0e3d7195b6e2544df93ede2a1daef648b515f14c1430234b29443ffc6 SHA512 f38c7a06c7adc4f57b6564a645de8ca98ca44d69441f95eeac4bea0d6ff6b5daa490b9b0c60a7513fdf051122a2fa6a6dd2335807988e7b2c6d199b8fc4a8696 -DIST genpatches-4.9-138.base.tar.xz 2535084 BLAKE2B 4c0bfaa7076a069fd7d506048efc55b3548d1c416081dacbaf2406eea164be7c579a23a8f225c15314c726d00db236b1e6b0cfceaa79aacfdddea5df8bea193e SHA512 1889caf81a833fe4cacebb2aaaf1efc0433172af20e64bf5800ea6d6484568df6f9e6acb114f01ee5e42529ec6605b46b28d44b6f53761e71b2e76ba0e6d421a -DIST genpatches-4.9-138.experimental.tar.xz 106396 BLAKE2B 251204916d878f6b1a6c85ae03f8189ec71fc5026c946b973e752d3c3bee896fe2c9acebac3706c5d3fb9e52fcd8d491d323adc6e17b47603c59330f513bfa8d SHA512 1a4144e9dcc6dde30c5df4766fda4fe5a1be368ae0a8af076e3f401b3b4d06f6fa72
[gentoo-commits] proj/musl:master commit in: x11-libs/libpciaccess/
commit: 1d529db574dd84235c7a4e717acdee93c99f8323 Author: Anthony G. Basile gentoo org> AuthorDate: Sat Dec 8 19:54:19 2018 + Commit: Anthony G. Basile gentoo org> CommitDate: Sat Dec 8 19:54:19 2018 + URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=1d529db5 x11-libs/libpciaccess: version bump, keeping up with the tree Signed-off-by: Anthony G. Basile gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 x11-libs/libpciaccess/Manifest | 1 + x11-libs/libpciaccess/libpciaccess-0.14.ebuild | 39 ++ 2 files changed, 40 insertions(+) diff --git a/x11-libs/libpciaccess/Manifest b/x11-libs/libpciaccess/Manifest index b38f11e..c6b5e01 100644 --- a/x11-libs/libpciaccess/Manifest +++ b/x11-libs/libpciaccess/Manifest @@ -1 +1,2 @@ DIST libpciaccess-0.13.4.tar.bz2 372004 SHA256 07f864654561e4ac8629a0ef9c8f07fbc1f8592d1b6c418431593e9ba2cf2fcf SHA512 d5b32c525dd36dc85c9a09f45696808730eabbbd3cce892a6dbfb02a566598baad27be58567eb7ced15b3d99fb9afa1d1c24ec19754bcf7a1857a0c8cea34d92 WHIRLPOOL d48ecb99e7e31bc1c13e779261b7ae579ca28a054b20521cb7503c2bfe3182fa2f96c939eee0ebcca1783f3f38c07535173a3bb9a0713834cadd4b9709f25174 +DIST libpciaccess-0.14.tar.bz2 361375 BLAKE2B 05af836e52c7a8e19537a5c246f2dbbfee0a8c078ed0d6c45de6d1cc5f07b70d91b9409846b175da74f31b0e2536e38ffcb65983d79d40a54abc878b679d845d SHA512 bf40214dfd22f2a223f7c948566e6eaa4bfed60116e71b3eb19f6fe7ab2c4546649eb0416c06d5983e476ea5e27de036936646eb5f800ea97763b6d1f1976f4b diff --git a/x11-libs/libpciaccess/libpciaccess-0.14.ebuild b/x11-libs/libpciaccess/libpciaccess-0.14.ebuild new file mode 100644 index 000..fad152f --- /dev/null +++ b/x11-libs/libpciaccess/libpciaccess-0.14.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +XORG_MULTILIB=yes +inherit xorg-2 + +DESCRIPTION="Library providing generic access to the PCI bus and devices" +KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~x86" +IUSE="zlib" + +DEPEND="!=sys-libs/zlib-1.2.8-r1:=[${MULTILIB_USEDEP}] )" +RDEPEND="${DEPEND} + sys-apps/hwids" + +PATCHES=( + "${FILESDIR}"/${PN}-0.13.2-limits.patch + "${FILESDIR}"/${PN}-0.13.2-arm.patch +) + +pkg_setup() { + xorg-2_pkg_setup + + XORG_CONFIGURE_OPTIONS=( + "$(use_with zlib)" + "--with-pciids-path=${EPREFIX}/usr/share/misc" + ) +} + +multilib_src_install() { + default + + if multilib_is_native_abi; then + dodir /usr/bin + ${BASH} libtool --mode=install "$(type -P install)" -c scanpci/scanpci "${ED}"/usr/bin || die + fi +}
[gentoo-commits] proj/musl:master commit in: x11-libs/libpciaccess/
commit: 0033a33db0ac8e29751d8b00e51d2e8b67499137 Author: Anthony G. Basile gentoo org> AuthorDate: Sat Dec 8 19:55:58 2018 + Commit: Anthony G. Basile gentoo org> CommitDate: Sat Dec 8 19:55:58 2018 + URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=0033a33d x11-libs/libpciaccess: 0.14 stable on musl supported arches Signed-off-by: Anthony G. Basile gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 x11-libs/libpciaccess/libpciaccess-0.14.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x11-libs/libpciaccess/libpciaccess-0.14.ebuild b/x11-libs/libpciaccess/libpciaccess-0.14.ebuild index fad152f..e0f9cab 100644 --- a/x11-libs/libpciaccess/libpciaccess-0.14.ebuild +++ b/x11-libs/libpciaccess/libpciaccess-0.14.ebuild @@ -7,7 +7,7 @@ XORG_MULTILIB=yes inherit xorg-2 DESCRIPTION="Library providing generic access to the PCI bus and devices" -KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~x86" +KEYWORDS="amd64 arm ~arm64 ~mips ppc x86" IUSE="zlib" DEPEND="!
[gentoo-commits] repo/gentoo:master commit in: profiles/arch/s390/
commit: 3a79e99e50f7a3e776138aac8983f4b5d89e4bf3 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 19:54:36 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 19:55:03 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a79e99e profiles/arch/s390: stop acceptin ~s390 by default Signed-off-by: Mikle Kolyada gentoo.org> profiles/arch/s390/make.defaults | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/arch/s390/make.defaults b/profiles/arch/s390/make.defaults index 476bb25aa01..aab19aa835d 100644 --- a/profiles/arch/s390/make.defaults +++ b/profiles/arch/s390/make.defaults @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 ARCH="s390" -ACCEPT_KEYWORDS="s390 ~s390" +ACCEPT_KEYWORDS="s390" MULTILIB_ABIS="s390" DEFAULT_ABI="s390"
[gentoo-commits] repo/gentoo:master commit in: app-backup/bacula/
commit: 585b758c33cc02c8bc2a494bcc9c43ce81c99b08 Author: Thomas Beierlein gentoo org> AuthorDate: Sat Dec 8 18:58:51 2018 + Commit: Thomas Beierlein gentoo org> CommitDate: Sat Dec 8 18:58:51 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=585b758c app-backup/bacula: Fix wrong handling for new batch-insert USE flag. Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Thomas Beierlein gentoo.org> app-backup/bacula/bacula-9.2.2-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-backup/bacula/bacula-9.2.2-r1.ebuild b/app-backup/bacula/bacula-9.2.2-r1.ebuild index 019a34fdab1..584865827b1 100644 --- a/app-backup/bacula/bacula-9.2.2-r1.ebuild +++ b/app-backup/bacula/bacula-9.2.2-r1.ebuild @@ -218,7 +218,7 @@ src_configure() { myconf="${myconf} \ $(use_with X x) \ - $(use_with batch-insert) \ + $(use_enable batch-insert) \ $(use_enable !readline conio) \ $(use_enable readline) \ $(use_with readline readline /usr) \
[gentoo-commits] proj/qt:master commit in: dev-qt/qtspeech/files/
commit: c7a6447e3c720e1b594b56fb441cdb0a4f8b5bcf Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Dec 8 18:55:57 2018 + Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Dec 8 18:55:57 2018 + URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=c7a6447e dev-qt/qtspeech: Restore accidentally removed patch Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-qt/qtspeech/files/qtspeech-5.9.4-nogui.patch | 12 1 file changed, 12 insertions(+) diff --git a/dev-qt/qtspeech/files/qtspeech-5.9.4-nogui.patch b/dev-qt/qtspeech/files/qtspeech-5.9.4-nogui.patch new file mode 100644 index ..fa5d900a --- /dev/null +++ b/dev-qt/qtspeech/files/qtspeech-5.9.4-nogui.patch @@ -0,0 +1,12 @@ +Bug: https://bugs.gentoo.org/651012 + +--- a/src/plugins/tts/speechdispatcher/speechdispatcher.pro b/src/plugins/tts/speechdispatcher/speechdispatcher.pro +@@ -5,6 +5,7 @@ + load(qt_plugin) + + QT += core texttospeech ++QT -= gui + + CONFIG += link_pkgconfig + packagesExist(speech-dispatcher): PKGCONFIG = speech-dispatcher
[gentoo-commits] repo/gentoo:master commit in: dev-lang/nasm/, dev-lang/nasm/files/
commit: 416dae40d938b83ecdc44de5e76f04721d5cf066 Author: Sergei Trofimovich gentoo org> AuthorDate: Sat Dec 8 18:50:01 2018 + Commit: Sergei Trofimovich gentoo org> CommitDate: Sat Dec 8 18:54:43 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=416dae40 dev-lang/nasm: backport default filename fix, bug #670944 Pulled upstream fix for input==output for single-argument invocation from https://bugzilla.nasm.us/show_bug.cgi?id=3392529 Reported-by: Toralf Förster Bug: https://bugs.gentoo.org/670944 Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Sergei Trofimovich gentoo.org> .../files/nasm-2.14-default-path-BR-3392529.patch | 41 ++ .../nasm/{nasm-2.14.ebuild => nasm-2.14-r1.ebuild} | 1 + 2 files changed, 42 insertions(+) diff --git a/dev-lang/nasm/files/nasm-2.14-default-path-BR-3392529.patch b/dev-lang/nasm/files/nasm-2.14-default-path-BR-3392529.patch new file mode 100644 index 000..57cbb741505 --- /dev/null +++ b/dev-lang/nasm/files/nasm-2.14-default-path-BR-3392529.patch @@ -0,0 +1,41 @@ +https://bugzilla.nasm.us/show_bug.cgi?id=3392529 +https://bugs.gentoo.org/670944 + +From 7b6371b9d35705ee3800082ca245f8dd289bb216 Mon Sep 17 00:00:00 2001 +From: "H. Peter Anvin (Intel)" +Date: Tue, 20 Nov 2018 10:56:57 -0800 +Subject: [PATCH] BR 3392529: if the default output name is the same as input + -> nasm.out + +If no output filename is specified, then a default filename is used +based on the input filename. If that ends up the *same* as the input +filename, change the output filename to "nasm.out". + +Signed-off-by: H. Peter Anvin (Intel) +--- + asm/nasm.c | 11 --- + 1 file changed, 8 insertions(+), 3 deletions(-) + +--- a/asm/nasm.c b/asm/nasm.c +@@ -514,9 +514,14 @@ int main(int argc, char **argv) + * is a preprocess mode, we're perfectly + * fine to output into stdout. + */ +-if (!outname) { +-if (!(operating_mode & OP_PREPROCESS)) +-outname = filename_set_extension(inname, ofmt->extension); ++if (!outname && !(operating_mode & OP_PREPROCESS)) { ++outname = filename_set_extension(inname, ofmt->extension); ++if (!strcmp(outname, inname)) { ++outname = "nasm.out"; ++nasm_error(ERR_WARNING, ++ "default output file same as input, using `%s' for output\n", ++ inname, outname); ++} + } + + depend_ptr = (depend_file || (operating_mode & OP_DEPEND)) +-- +2.19.2 + diff --git a/dev-lang/nasm/nasm-2.14.ebuild b/dev-lang/nasm/nasm-2.14-r1.ebuild similarity index 95% rename from dev-lang/nasm/nasm-2.14.ebuild rename to dev-lang/nasm/nasm-2.14-r1.ebuild index 46c8d440a40..7a17a31be97 100644 --- a/dev-lang/nasm/nasm-2.14.ebuild +++ b/dev-lang/nasm/nasm-2.14-r1.ebuild @@ -34,6 +34,7 @@ S=${WORKDIR}/${P/_} PATCHES=( "${FILESDIR}"/${PN}-2.13.03-bsd-cp-doc.patch + "${FILESDIR}"/${P}-default-path-BR-3392529.patch ) src_configure() {
[gentoo-commits] repo/gentoo:master commit in: profiles/
commit: bf9717d96a7b02a3d428b0d68c690bd24c13ccd7 Author: Sergei Trofimovich gentoo org> AuthorDate: Sat Dec 8 18:51:16 2018 + Commit: Sergei Trofimovich gentoo org> CommitDate: Sat Dec 8 18:54:44 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf9717d9 profiles/package.mask: unmask >=nasm-2.14, bug #670944 dev-lang/nasm-2.14-r1 has the fix. Reported-by: Toralf Förster Closes: https://bugs.gentoo.org/670944 Signed-off-by: Sergei Trofimovich gentoo.org> profiles/package.mask | 6 -- 1 file changed, 6 deletions(-) diff --git a/profiles/package.mask b/profiles/package.mask index 64a7fe7d100..16513c5a853 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -109,12 +109,6 @@ dev-python/django-filer dev-python/django-mptt dev-python/django-standard-form -# Sergei Trofimovich (13 Nov 2018) -# New version started creating files when input file is not set. -# This is unexpected behaviour change and causes sandbox -# violations: bug #670944 ->=dev-lang/nasm-2.14 - # Hans de Graaff (12 Nov 2018) # Mask ruby23-only packages for removal. These packages are not # compatible with ruby24+ or they are old slots that are ruby23-only
[gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-icon-theme/
commit: 937dc677077f17d03096bdab688151953847bb21 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 18:08:59 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 18:08:59 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=937dc677 x11-themes/adwaita-icon-theme: mark s390 stable Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 x11-themes/adwaita-icon-theme/adwaita-icon-theme-3.24.0.ebuild | 4 ++-- x11-themes/adwaita-icon-theme/adwaita-icon-theme-3.26.1.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/x11-themes/adwaita-icon-theme/adwaita-icon-theme-3.24.0.ebuild b/x11-themes/adwaita-icon-theme/adwaita-icon-theme-3.24.0.ebuild index c9bba922a7b..3aee6a8fcf0 100644 --- a/x11-themes/adwaita-icon-theme/adwaita-icon-theme-3.24.0.ebuild +++ b/x11-themes/adwaita-icon-theme/adwaita-icon-theme-3.24.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="6" @@ -17,7 +17,7 @@ LICENSE=" " SLOT="0" IUSE="branding" -KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris" # gtk+:3 is needed for build for the gtk-encode-symbolic-svg utility # librsvg is needed for gtk-encode-symbolic-svg to be able to read the source SVG via its pixbuf loader and at runtime for rendering scalable icons shipped by the theme diff --git a/x11-themes/adwaita-icon-theme/adwaita-icon-theme-3.26.1.ebuild b/x11-themes/adwaita-icon-theme/adwaita-icon-theme-3.26.1.ebuild index 58e3fa1e076..685e2ae981d 100644 --- a/x11-themes/adwaita-icon-theme/adwaita-icon-theme-3.26.1.ebuild +++ b/x11-themes/adwaita-icon-theme/adwaita-icon-theme-3.26.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="6" @@ -17,7 +17,7 @@ LICENSE=" " SLOT="0" IUSE="branding" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris" # gtk+:3 is needed for build for the gtk-encode-symbolic-svg utility # librsvg is needed for gtk-encode-symbolic-svg to be able to read the source SVG via its pixbuf loader and at runtime for rendering scalable icons shipped by the theme
[gentoo-commits] repo/gentoo:master commit in: x11-misc/xbitmaps/
commit: 4fa22e9983bcf3973dce128b04a4065f9552be90 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 18:07:26 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 18:07:26 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fa22e99 x11-misc/xbitmaps: mark s390 stable Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 x11-misc/xbitmaps/xbitmaps-1.1.2-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x11-misc/xbitmaps/xbitmaps-1.1.2-r1.ebuild b/x11-misc/xbitmaps/xbitmaps-1.1.2-r1.ebuild index 8bf08bfdeb5..0bb27cf96fc 100644 --- a/x11-misc/xbitmaps/xbitmaps-1.1.2-r1.ebuild +++ b/x11-misc/xbitmaps/xbitmaps-1.1.2-r1.ebuild @@ -9,7 +9,7 @@ SRC_URI="mirror://xorg/data/${P}.tar.bz2" LICENSE="MIT" SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris ~x86-winnt" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris ~x86-winnt" IUSE="" RDEPEND=""
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Package-Stash-XS/
commit: 8445b282e2db1c4e703a0eb34f2ce142623f1507 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 18:05:15 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 18:05:15 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8445b282 dev-perl/Package-Stash-XS: mark s390 stable Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 dev-perl/Package-Stash-XS/Package-Stash-XS-0.280.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-perl/Package-Stash-XS/Package-Stash-XS-0.280.0.ebuild b/dev-perl/Package-Stash-XS/Package-Stash-XS-0.280.0.ebuild index b0b9ba10133..7f0f2c3bbcb 100644 --- a/dev-perl/Package-Stash-XS/Package-Stash-XS-0.280.0.ebuild +++ b/dev-perl/Package-Stash-XS/Package-Stash-XS-0.280.0.ebuild @@ -10,7 +10,7 @@ inherit perl-module DESCRIPTION="Faster and more correct implementation of the Package::Stash API" SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="test" RDEPEND=""
[gentoo-commits] repo/gentoo:master commit in: dev-libs/protobuf/
commit: d79eed58cae55a6bcbc3920a9b3f38c90f69caaf Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 18:04:04 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 18:04:25 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d79eed58 dev-libs/protobuf: mark s390 stable Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 dev-libs/protobuf/protobuf-3.6.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-libs/protobuf/protobuf-3.6.1.ebuild b/dev-libs/protobuf/protobuf-3.6.1.ebuild index c0f6dbe06fb..247140feda2 100644 --- a/dev-libs/protobuf/protobuf-3.6.1.ebuild +++ b/dev-libs/protobuf/protobuf-3.6.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/protocolbuffers/${PN}/archive/v${PV}.tar.gz -> ${P}. LICENSE="BSD" SLOT="0/17" -KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" +KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" IUSE="emacs examples static-libs test zlib" RDEPEND="emacs? ( virtual/emacs )
[gentoo-commits] repo/gentoo:master commit in: sys-libs/binutils-libs/
commit: 18244570a482912126a0694e986faf74b14a71ba Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat Dec 8 17:56:05 2018 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Sat Dec 8 18:03:11 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18244570 sys-libs/binutils-libs: drop old Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Andreas K. Hüttel gentoo.org> sys-libs/binutils-libs/Manifest| 2 - .../binutils-libs/binutils-libs-2.30-r3.ebuild | 106 - sys-libs/binutils-libs/binutils-libs-2.31.1.ebuild | 106 - 3 files changed, 214 deletions(-) diff --git a/sys-libs/binutils-libs/Manifest b/sys-libs/binutils-libs/Manifest index ad30b2d7d09..5f5fe06da69 100644 --- a/sys-libs/binutils-libs/Manifest +++ b/sys-libs/binutils-libs/Manifest @@ -7,10 +7,8 @@ DIST binutils-2.28.1.tar.bz2 28120394 BLAKE2B 3a0ed2bcf0c859638546b7460d9e6f0a55 DIST binutils-2.29.1-patches-2.tar.xz 18528 BLAKE2B 514496d6c9609362782d66b6cecbe3fe617f96dfb86e174a80d0b9113cbd4fce9d760fa61660ba2cfafbe1e482e955391cb8d3ef78d2c166c82796416a7ee106 SHA512 b60a3af9cd6a681f32a59fc4a30602ee1290f75cc93c8ad38ab0de17a7f30538a751b801dbaf079e3d514b9671e34e91742c4c9c953a8c9794505b571b7e80f0 DIST binutils-2.29.1.tar.bz2 29123355 BLAKE2B 83de518a27bae0f13c57b1979493dd7f7cabae424cff5e8495d1f064da24b6ef9e1c19d1d1adad2dca7142372782023f66b4b4223170a49b96ba3834266fe878 SHA512 4063d3426922376ccceb3f14b43e287442e82a8038cf50f4f51ad97d438c672c0e310ca4b856c9aff5aa9911073e256e8298a7a3f1844eeb60b90d955592 DIST binutils-2.30-patches-2.tar.xz 490272 BLAKE2B a28a5b5bb8faa33fec269f2c69d6ed0e4e7d5a9169861aa4b3c45511794e1e749c216862a8258c2029f1b40c511dcb2a0aeaecda57e75d52418f10d6f345718f SHA512 1686d5b58ee968f2000647acab2bee4c263d1c85fd43fed8c820fccfc0d7024a01211e7853cd5ce452fa90da500bc17309edf6dbc901c7fd6fc7b3e3d6f42581 -DIST binutils-2.30-patches-3.tar.xz 548804 BLAKE2B 428a1750233ae3f019e20cb5ed1d8e6fe6455181e8f5961dbfe7b66493d1c42050f889e45c02c1fc1a84d545c9e61f81ad6ffd5afc0b1099a702ccc7637c3abe SHA512 c91e902d1d9fc2e9782df04c93173c3207c771f1c063e2ff12c9336593c954ea3f1b2474a8fc045927d72fe18f7401874059599d100c4a1fd152081f05913d03 DIST binutils-2.30-patches-5.tar.xz 590864 BLAKE2B 71de4d08f92ab1898ad576a21763f955067cbbed543250888e0c5d51f4ef77d0d829049e9a835691cf2de03965fbcc9bcfa092eb304c03f9b885e7a3dadab286 SHA512 029b3be6ae9b8620f8580a35701bd4517b4e0232ff3cf9983b3808475c7443cbf500b6cace2c052df0bd1e47202838f4d2453238db28709a947117071d9ae804 DIST binutils-2.30.tar.xz 20286700 BLAKE2B 2dd5436a15a601011a1950e6082ec00082f5916fb82ce95ceab424fd8dc19f6daa7ac32a149f222ccdcc603354165cc206fde070eaa44fe2cc5e57486efc7868 SHA512 e747ea20d8d79fcd21b9d9f6695059caa7189d60f19256da398e34b789fea9a133c32b192e9693b5828d27683739b0198431bf8b3e39fb3b04884cf89d9aa839 -DIST binutils-2.31.1-patches-2.tar.xz 11232 BLAKE2B b8ac65872017c063650d4e04855efa3fd3e9faa566e81fa9fb3ae777c1337627023c1af85b708a7933b577a69652451ff488340d7cc9f035d3a3a655da0fc8d6 SHA512 2d0ee2e727586fc39cdb8abc7251c12dd350d18dd84103ddacc08978db48d45445c05b7ea5f095842f6e0350db94d593270b23a38920a01ca59c363decaa2a58 DIST binutils-2.31.1-patches-3.tar.xz 12640 BLAKE2B 3444b219dd02ad513e6c36214d649a8a74638382103c88ec8de76a579be0ee13f8d1450e3b8d82dfddad55f2f851b32aee910a99230c7d8673f8426fc79a4cd9 SHA512 67b23c17518305561d190a15cba4a1af18a0a3cf1d7e62583ac7667d2fa40e7c7ec024cc981009d5d1caf1939633ab55fc0a198b69af02dc7841be43ff1acd13 DIST binutils-2.31.1-patches-4.tar.xz 63460 BLAKE2B 6507d03a3b75fe4b65b3c58377baaf377e07aa3e5dee4f6f4cd25336f53a15b4249e72a107213062611c8674be2bcd478a8f1406940385e0b0e58ad5a7c61cc0 SHA512 aa9f2a5b9c2189c528f34c55cd2609eae5fb47e46b51a8f9aa595b0a1e2c3f103880dcc8f07e48b10971d669e4c2a7ce8a41be4763a1ebf9e956e3f1eade8f22 DIST binutils-2.31.1.tar.xz 20467996 BLAKE2B 6b914df1fbb7cf54f2159f71b2c2b09f3f6a569b7a3cb4cf9790d0a3733a7548bc0ea32334a178ed3b56e8b97656ae99c7abaf212601beeaeae9a0884c0f6051 SHA512 0fca326feb1d5f5fe505a827b20237fe3ec9c13eaf7ec7e35847fd71184f605ba1cefe1314b1b8f8a29c0aa9d88162849ee1c1a3e70c2f7407d88339b17edb30 diff --git a/sys-libs/binutils-libs/binutils-libs-2.30-r3.ebuild b/sys-libs/binutils-libs/binutils-libs-2.30-r3.ebuild deleted file mode 100644 index cdcb554c079..000 --- a/sys-libs/binutils-libs/binutils-libs-2.30-r3.ebuild +++ /dev/null @@ -1,106 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PATCH_VER=3 - -inherit eutils toolchain-funcs multilib-minimal - -MY_PN="binutils" -MY_P="${MY_PN}-${PV}" -PATCH_BINUTILS_VER=${PATCH_BINUTILS_VER:-${PV}} -PATCH_DEV=${PATCH_DEV:-dilfridge} - -DESCRIPTION="Core binutils libraries (libbfd, libopcodes, libiberty) for external packages" -HOMEPAGE="https://sourceware.org/binutils/"; -SRC_URI="mirror://gnu/binutils/${MY_P}.tar.xz - mirror://gentoo/${MY_PN}-${PATCH_BINUTILS_VER}-patches-${P
[gentoo-commits] repo/gentoo:master commit in: sys-devel/binutils-hppa64/
commit: 8a8de3cb391b2ae420e75b310bd56d7ca40d01c6 Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat Dec 8 17:58:25 2018 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Sat Dec 8 18:03:11 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a8de3cb sys-devel/binutils-hppa64: drop old Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Andreas K. Hüttel gentoo.org> sys-devel/binutils-hppa64/Manifest | 2 - .../binutils-hppa64/binutils-hppa64-2.30-r3.ebuild | 393 - .../binutils-hppa64/binutils-hppa64-2.31.1.ebuild | 393 - 3 files changed, 788 deletions(-) diff --git a/sys-devel/binutils-hppa64/Manifest b/sys-devel/binutils-hppa64/Manifest index f23bed67be8..2c22887f693 100644 --- a/sys-devel/binutils-hppa64/Manifest +++ b/sys-devel/binutils-hppa64/Manifest @@ -13,10 +13,8 @@ DIST binutils-2.29.1-patches-2.tar.xz 18528 BLAKE2B 514496d6c9609362782d66b6cecb DIST binutils-2.29.1.tar.bz2 29123355 BLAKE2B 83de518a27bae0f13c57b1979493dd7f7cabae424cff5e8495d1f064da24b6ef9e1c19d1d1adad2dca7142372782023f66b4b4223170a49b96ba3834266fe878 SHA512 4063d3426922376ccceb3f14b43e287442e82a8038cf50f4f51ad97d438c672c0e310ca4b856c9aff5aa9911073e256e8298a7a3f1844eeb60b90d955592 DIST binutils-2.29.tar.bz2 29073316 BLAKE2B 0eb7bbefa1ac5f4d753ca9328d339a466d4f75c69d5d860802aded8e42ce4293f65c72a0f0596b170e90e1cc3ded23ea30576948cb875eea044cb02bb55bb2d3 SHA512 8148587d7e4f14ebcbcb3f984b116deaae5d4008228628acde14bc242a64a4b53faf1f6077a2c4ca4750e2f254b698ba506bd657f79e1202e87e7029b0069337 DIST binutils-2.30-patches-2.tar.xz 490272 BLAKE2B a28a5b5bb8faa33fec269f2c69d6ed0e4e7d5a9169861aa4b3c45511794e1e749c216862a8258c2029f1b40c511dcb2a0aeaecda57e75d52418f10d6f345718f SHA512 1686d5b58ee968f2000647acab2bee4c263d1c85fd43fed8c820fccfc0d7024a01211e7853cd5ce452fa90da500bc17309edf6dbc901c7fd6fc7b3e3d6f42581 -DIST binutils-2.30-patches-3.tar.xz 548804 BLAKE2B 428a1750233ae3f019e20cb5ed1d8e6fe6455181e8f5961dbfe7b66493d1c42050f889e45c02c1fc1a84d545c9e61f81ad6ffd5afc0b1099a702ccc7637c3abe SHA512 c91e902d1d9fc2e9782df04c93173c3207c771f1c063e2ff12c9336593c954ea3f1b2474a8fc045927d72fe18f7401874059599d100c4a1fd152081f05913d03 DIST binutils-2.30-patches-5.tar.xz 590864 BLAKE2B 71de4d08f92ab1898ad576a21763f955067cbbed543250888e0c5d51f4ef77d0d829049e9a835691cf2de03965fbcc9bcfa092eb304c03f9b885e7a3dadab286 SHA512 029b3be6ae9b8620f8580a35701bd4517b4e0232ff3cf9983b3808475c7443cbf500b6cace2c052df0bd1e47202838f4d2453238db28709a947117071d9ae804 DIST binutils-2.30.tar.xz 20286700 BLAKE2B 2dd5436a15a601011a1950e6082ec00082f5916fb82ce95ceab424fd8dc19f6daa7ac32a149f222ccdcc603354165cc206fde070eaa44fe2cc5e57486efc7868 SHA512 e747ea20d8d79fcd21b9d9f6695059caa7189d60f19256da398e34b789fea9a133c32b192e9693b5828d27683739b0198431bf8b3e39fb3b04884cf89d9aa839 -DIST binutils-2.31.1-patches-2.tar.xz 11232 BLAKE2B b8ac65872017c063650d4e04855efa3fd3e9faa566e81fa9fb3ae777c1337627023c1af85b708a7933b577a69652451ff488340d7cc9f035d3a3a655da0fc8d6 SHA512 2d0ee2e727586fc39cdb8abc7251c12dd350d18dd84103ddacc08978db48d45445c05b7ea5f095842f6e0350db94d593270b23a38920a01ca59c363decaa2a58 DIST binutils-2.31.1-patches-3.tar.xz 12640 BLAKE2B 3444b219dd02ad513e6c36214d649a8a74638382103c88ec8de76a579be0ee13f8d1450e3b8d82dfddad55f2f851b32aee910a99230c7d8673f8426fc79a4cd9 SHA512 67b23c17518305561d190a15cba4a1af18a0a3cf1d7e62583ac7667d2fa40e7c7ec024cc981009d5d1caf1939633ab55fc0a198b69af02dc7841be43ff1acd13 DIST binutils-2.31.1-patches-4.tar.xz 63460 BLAKE2B 6507d03a3b75fe4b65b3c58377baaf377e07aa3e5dee4f6f4cd25336f53a15b4249e72a107213062611c8674be2bcd478a8f1406940385e0b0e58ad5a7c61cc0 SHA512 aa9f2a5b9c2189c528f34c55cd2609eae5fb47e46b51a8f9aa595b0a1e2c3f103880dcc8f07e48b10971d669e4c2a7ce8a41be4763a1ebf9e956e3f1eade8f22 DIST binutils-2.31.1.tar.xz 20467996 BLAKE2B 6b914df1fbb7cf54f2159f71b2c2b09f3f6a569b7a3cb4cf9790d0a3733a7548bc0ea32334a178ed3b56e8b97656ae99c7abaf212601beeaeae9a0884c0f6051 SHA512 0fca326feb1d5f5fe505a827b20237fe3ec9c13eaf7ec7e35847fd71184f605ba1cefe1314b1b8f8a29c0aa9d88162849ee1c1a3e70c2f7407d88339b17edb30 diff --git a/sys-devel/binutils-hppa64/binutils-hppa64-2.30-r3.ebuild b/sys-devel/binutils-hppa64/binutils-hppa64-2.30-r3.ebuild deleted file mode 100644 index da743be6046..000 --- a/sys-devel/binutils-hppa64/binutils-hppa64-2.30-r3.ebuild +++ /dev/null @@ -1,393 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -export CTARGET=hppa64-${CHOST#*-} - -inherit eutils libtool flag-o-matic gnuconfig multilib versionator - -DESCRIPTION="Tools necessary to build programs" -HOMEPAGE="https://sourceware.org/binutils/"; -LICENSE="GPL-3+" -IUSE="+cxx doc multitarget +nls static-libs test" - -# Variables that can be set here: -# PATCH_VER - the patchset version -# Default: empty, no patching -# PATCH_BINUTILS
[gentoo-commits] repo/gentoo:master commit in: sys-devel/binutils/
commit: 39bff4d8ecf2590b647d7aef196b7f22d57b85c6 Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat Dec 8 17:54:03 2018 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Sat Dec 8 18:03:10 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39bff4d8 sys-devel/binutils: rekeyword Closes: https://bugs.gentoo.org/672398 Bug: https://bugs.gentoo.org/623566 Closes: https://bugs.gentoo.org/672126 Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Andreas K. Hüttel gentoo.org> sys-devel/binutils/binutils-2.31.1-r2.ebuild | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sys-devel/binutils/binutils-2.31.1-r2.ebuild b/sys-devel/binutils/binutils-2.31.1-r2.ebuild index 351a427d7dc..e912ce32036 100644 --- a/sys-devel/binutils/binutils-2.31.1-r2.ebuild +++ b/sys-devel/binutils/binutils-2.31.1-r2.ebuild @@ -42,8 +42,7 @@ case ${PV} in *) SRC_URI="mirror://gnu/binutils/binutils-${PV}.tar.xz" SLOT=$(get_version_component_range 1-2) - #KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" - KEYWORDS="" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" ;; esac
[gentoo-commits] repo/gentoo:master commit in: sys-devel/binutils-hppa64/
commit: a2429266ec0588051085d0e1e074cc5fdc903621 Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat Dec 8 17:57:43 2018 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Sat Dec 8 18:03:11 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2429266 sys-devel/binutils-hppa64: patchlevel bump Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Andreas K. Hüttel gentoo.org> sys-devel/binutils-hppa64/Manifest | 1 + .../binutils-hppa64-2.31.1-r2.ebuild | 391 + 2 files changed, 392 insertions(+) diff --git a/sys-devel/binutils-hppa64/Manifest b/sys-devel/binutils-hppa64/Manifest index 3f56ede6a0b..f23bed67be8 100644 --- a/sys-devel/binutils-hppa64/Manifest +++ b/sys-devel/binutils-hppa64/Manifest @@ -18,4 +18,5 @@ DIST binutils-2.30-patches-5.tar.xz 590864 BLAKE2B 71de4d08f92ab1898ad576a21763f DIST binutils-2.30.tar.xz 20286700 BLAKE2B 2dd5436a15a601011a1950e6082ec00082f5916fb82ce95ceab424fd8dc19f6daa7ac32a149f222ccdcc603354165cc206fde070eaa44fe2cc5e57486efc7868 SHA512 e747ea20d8d79fcd21b9d9f6695059caa7189d60f19256da398e34b789fea9a133c32b192e9693b5828d27683739b0198431bf8b3e39fb3b04884cf89d9aa839 DIST binutils-2.31.1-patches-2.tar.xz 11232 BLAKE2B b8ac65872017c063650d4e04855efa3fd3e9faa566e81fa9fb3ae777c1337627023c1af85b708a7933b577a69652451ff488340d7cc9f035d3a3a655da0fc8d6 SHA512 2d0ee2e727586fc39cdb8abc7251c12dd350d18dd84103ddacc08978db48d45445c05b7ea5f095842f6e0350db94d593270b23a38920a01ca59c363decaa2a58 DIST binutils-2.31.1-patches-3.tar.xz 12640 BLAKE2B 3444b219dd02ad513e6c36214d649a8a74638382103c88ec8de76a579be0ee13f8d1450e3b8d82dfddad55f2f851b32aee910a99230c7d8673f8426fc79a4cd9 SHA512 67b23c17518305561d190a15cba4a1af18a0a3cf1d7e62583ac7667d2fa40e7c7ec024cc981009d5d1caf1939633ab55fc0a198b69af02dc7841be43ff1acd13 +DIST binutils-2.31.1-patches-4.tar.xz 63460 BLAKE2B 6507d03a3b75fe4b65b3c58377baaf377e07aa3e5dee4f6f4cd25336f53a15b4249e72a107213062611c8674be2bcd478a8f1406940385e0b0e58ad5a7c61cc0 SHA512 aa9f2a5b9c2189c528f34c55cd2609eae5fb47e46b51a8f9aa595b0a1e2c3f103880dcc8f07e48b10971d669e4c2a7ce8a41be4763a1ebf9e956e3f1eade8f22 DIST binutils-2.31.1.tar.xz 20467996 BLAKE2B 6b914df1fbb7cf54f2159f71b2c2b09f3f6a569b7a3cb4cf9790d0a3733a7548bc0ea32334a178ed3b56e8b97656ae99c7abaf212601beeaeae9a0884c0f6051 SHA512 0fca326feb1d5f5fe505a827b20237fe3ec9c13eaf7ec7e35847fd71184f605ba1cefe1314b1b8f8a29c0aa9d88162849ee1c1a3e70c2f7407d88339b17edb30 diff --git a/sys-devel/binutils-hppa64/binutils-hppa64-2.31.1-r2.ebuild b/sys-devel/binutils-hppa64/binutils-hppa64-2.31.1-r2.ebuild new file mode 100644 index 000..4fd4d3e753a --- /dev/null +++ b/sys-devel/binutils-hppa64/binutils-hppa64-2.31.1-r2.ebuild @@ -0,0 +1,391 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +export CTARGET=hppa64-${CHOST#*-} + +inherit eutils libtool flag-o-matic gnuconfig multilib versionator + +DESCRIPTION="Tools necessary to build programs" +HOMEPAGE="https://sourceware.org/binutils/"; +LICENSE="GPL-3+" +IUSE="+cxx doc multitarget +nls static-libs test" + +# Variables that can be set here: +# PATCH_VER - the patchset version +# Default: empty, no patching +# PATCH_BINUTILS_VER - the binutils version in the patchset name +#- Default: PV +# PATCH_DEV - Use download URI https://dev.gentoo.org/~{PATCH_DEV}/distfiles/... +# for the patchsets +# Default: slyfox + +PATCH_VER=4 +PATCH_DEV=dilfridge + +case ${PV} in + ) + BVER="git" + EGIT_REPO_URI="https://sourceware.org/git/binutils-gdb.git"; + inherit git-r3 + S=${WORKDIR}/binutils + EGIT_CHECKOUT_DIR=${S} + ;; + *) + BVER=${PV} + SRC_URI="mirror://gnu/binutils/binutils-${BVER}.tar.xz https://sourceware.org/pub/binutils/releases/binutils-${BVER}.tar.xz"; + ;; +esac +SLOT=$(get_version_component_range 1-2) +KEYWORDS="-* ~hppa" + +# +# The Gentoo patchset +# +PATCH_BINUTILS_VER=${PATCH_BINUTILS_VER:-${BVER}} +PATCH_DEV=${PATCH_DEV:-slyfox} + +[[ -z ${PATCH_VER} ]] || SRC_URI="${SRC_URI} + https://dev.gentoo.org/~${PATCH_DEV}/distfiles/binutils-${PATCH_BINUTILS_VER}-patches-${PATCH_VER}.tar.xz"; + +# +# The cross-compile logic +# +export CTARGET=${CTARGET:-${CHOST}} +if [[ ${CTARGET} == ${CHOST} ]] ; then + if [[ ${CATEGORY} == cross-* ]] ; then + export CTARGET=${CATEGORY#cross-} + fi +fi +is_cross() { [[ ${CHOST} != ${CTARGET} ]] ; } + +# +# The dependencies +# +RDEPEND=" + >=sys-devel/binutils-config-3 + sys-libs/zlib +" +DEPEND="${RDEPEND} + doc? ( sys-apps/texinfo ) + test? ( dev-util/dejagnu ) + nls? ( sys-devel/gettext ) + sys-devel/flex + virtual/yacc +" + +MY_BUILDDIR
[gentoo-commits] repo/gentoo:master commit in: sys-libs/binutils-libs/
commit: 20f12e240cd213b4587832d97cc0d430eaf09461 Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat Dec 8 17:55:07 2018 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Sat Dec 8 18:03:10 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20f12e24 sys-libs/binutils-libs: rekeyword Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Andreas K. Hüttel gentoo.org> sys-libs/binutils-libs/binutils-libs-2.31.1-r2.ebuild | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sys-libs/binutils-libs/binutils-libs-2.31.1-r2.ebuild b/sys-libs/binutils-libs/binutils-libs-2.31.1-r2.ebuild index d5a1cdf072d..f1b21d9e2c1 100644 --- a/sys-libs/binutils-libs/binutils-libs-2.31.1-r2.ebuild +++ b/sys-libs/binutils-libs/binutils-libs-2.31.1-r2.ebuild @@ -23,8 +23,7 @@ LICENSE="|| ( GPL-3 LGPL-3 )" # -r1 is a one-off subslot bump where SONAME changed for bug #666100 SLOT="0/${PV}-r1" IUSE="64-bit-bfd multitarget nls static-libs" -#KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" -KEYWORDS="" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" COMMON_DEPEND="sys-libs/zlib[${MULTILIB_USEDEP}]" DEPEND="${COMMON_DEPEND}
[gentoo-commits] repo/gentoo:master commit in: dev-python/html5lib/
commit: 523b7549b46601351076da8f135b9792cee629b2 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 17:51:50 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 17:54:00 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=523b7549 dev-python/html5lib: mark s390 stable Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 dev-python/html5lib/html5lib-1.0.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/html5lib/html5lib-1.0.1.ebuild b/dev-python/html5lib/html5lib-1.0.1.ebuild index c8f05387945..97a61983336 100644 --- a/dev-python/html5lib/html5lib-1.0.1.ebuild +++ b/dev-python/html5lib/html5lib-1.0.1.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x64-macos" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-fbsd ~x64-macos" IUSE="test" RDEPEND=">=dev-python/six-1.9[${PYTHON_USEDEP}]
[gentoo-commits] repo/gentoo:master commit in: dev-perl/XML-XPath/
commit: e07a1a29938331a4c8046e2dd1e117f0efe2523d Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 17:49:00 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 17:53:56 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e07a1a29 dev-perl/XML-XPath: mark s390 stable Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 dev-perl/XML-XPath/XML-XPath-1.420.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-perl/XML-XPath/XML-XPath-1.420.0.ebuild b/dev-perl/XML-XPath/XML-XPath-1.420.0.ebuild index cc16d338cfc..f3569e3abd6 100644 --- a/dev-perl/XML-XPath/XML-XPath-1.420.0.ebuild +++ b/dev-perl/XML-XPath/XML-XPath-1.420.0.ebuild @@ -11,7 +11,7 @@ inherit perl-module DESCRIPTION="A XPath Perl Module" SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="test" RDEPEND=">=dev-perl/XML-Parser-2.230.0"
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Tie-IxHash/
commit: 50407cd90ec61a91a0027285634a78bb18aeabec Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 17:50:33 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 17:53:58 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50407cd9 dev-perl/Tie-IxHash: mark s390 stable Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 dev-perl/Tie-IxHash/Tie-IxHash-1.230.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-perl/Tie-IxHash/Tie-IxHash-1.230.0.ebuild b/dev-perl/Tie-IxHash/Tie-IxHash-1.230.0.ebuild index 62b3adc7075..186f42826a4 100644 --- a/dev-perl/Tie-IxHash/Tie-IxHash-1.230.0.ebuild +++ b/dev-perl/Tie-IxHash/Tie-IxHash-1.230.0.ebuild @@ -10,7 +10,7 @@ inherit perl-module DESCRIPTION="Ordered associative arrays for Perl" SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="test" RDEPEND=""
[gentoo-commits] repo/gentoo:master commit in: dev-perl/XML-Handler-YAWriter/
commit: ed35bb473863848a0190728ffadf8aa2deeed709 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 17:49:55 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 17:53:57 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed35bb47 dev-perl/XML-Handler-YAWriter: mark s390 stable Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 dev-perl/XML-Handler-YAWriter/XML-Handler-YAWriter-0.230.0-r2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-perl/XML-Handler-YAWriter/XML-Handler-YAWriter-0.230.0-r2.ebuild b/dev-perl/XML-Handler-YAWriter/XML-Handler-YAWriter-0.230.0-r2.ebuild index 9a739e9f762..3be5e652c8f 100644 --- a/dev-perl/XML-Handler-YAWriter/XML-Handler-YAWriter-0.230.0-r2.ebuild +++ b/dev-perl/XML-Handler-YAWriter/XML-Handler-YAWriter-0.230.0-r2.ebuild @@ -11,7 +11,7 @@ DESCRIPTION="A Perl module providing a simple API to parsed XML instances" LICENSE="GPL-2" # GPL SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" RDEPEND=">=dev-perl/libxml-perl-0.07-r1"
[gentoo-commits] repo/gentoo:master commit in: dev-python/mccabe/
commit: 32a4ecce938b996f67978108a4b91f6603929b56 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 17:52:32 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 17:54:01 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32a4ecce dev-python/mccabe: mark s390 stable Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 dev-python/mccabe/mccabe-0.2.1.ebuild | 4 ++-- dev-python/mccabe/mccabe-0.6.1.ebuild | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-python/mccabe/mccabe-0.2.1.ebuild b/dev-python/mccabe/mccabe-0.2.1.ebuild index 11311256327..e4540b3038f 100644 --- a/dev-python/mccabe/mccabe-0.2.1.ebuild +++ b/dev-python/mccabe/mccabe-0.2.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -11,7 +11,7 @@ DESCRIPTION="A plugin for flake8" HOMEPAGE="https://github.com/flintwork/mccabe"; SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86" IUSE="" LICENSE="MIT" SLOT="0" diff --git a/dev-python/mccabe/mccabe-0.6.1.ebuild b/dev-python/mccabe/mccabe-0.6.1.ebuild index b49e728c2ba..a6f9f1da559 100644 --- a/dev-python/mccabe/mccabe-0.6.1.ebuild +++ b/dev-python/mccabe/mccabe-0.6.1.ebuild @@ -11,7 +11,7 @@ DESCRIPTION="flake8 plugin: McCabe complexity checker" HOMEPAGE="https://github.com/PyCQA/mccabe"; SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="test" LICENSE="MIT" SLOT="0"
[gentoo-commits] repo/gentoo:master commit in: x11-misc/makedepend/
commit: 65fa22b31a750c339ec6ac262623fafd5f919bb5 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 17:53:41 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 17:54:02 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65fa22b3 x11-misc/makedepend: mark s390 stable Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 x11-misc/makedepend/makedepend-1.0.5-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x11-misc/makedepend/makedepend-1.0.5-r1.ebuild b/x11-misc/makedepend/makedepend-1.0.5-r1.ebuild index 98dbb8d1fd1..4d6a30b7d6c 100644 --- a/x11-misc/makedepend/makedepend-1.0.5-r1.ebuild +++ b/x11-misc/makedepend/makedepend-1.0.5-r1.ebuild @@ -13,7 +13,7 @@ if [[ ${PV} == ]]; then LIVE_DEPEND=">=x11-misc/util-macros-1.18" else SRC_URI="mirror://xorg/util/${P}.tar.bz2" - KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" + KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" fi LICENSE="MIT"
[gentoo-commits] repo/gentoo:master commit in: sys-devel/distcc/
commit: 7ed650e78de908a1850cb87619b4b36d4b3e544e Author: Michał Górny gentoo org> AuthorDate: Sat Dec 8 17:49:06 2018 + Commit: Michał Górny gentoo org> CommitDate: Sat Dec 8 17:53:35 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ed650e7 sys-devel/distcc: Discourage distcc-pump Signed-off-by: Michał Górny gentoo.org> sys-devel/distcc/distcc-3.2_rc1-r4.ebuild | 6 ++ sys-devel/distcc/distcc-3.2_rc1-r5.ebuild | 6 ++ sys-devel/distcc/distcc-3.3.2.ebuild | 6 ++ sys-devel/distcc/distcc-3.3.ebuild| 6 ++ 4 files changed, 8 insertions(+), 16 deletions(-) diff --git a/sys-devel/distcc/distcc-3.2_rc1-r4.ebuild b/sys-devel/distcc/distcc-3.2_rc1-r4.ebuild index d7ff5a79c40..0267f059b07 100644 --- a/sys-devel/distcc/distcc-3.2_rc1-r4.ebuild +++ b/sys-devel/distcc/distcc-3.2_rc1-r4.ebuild @@ -168,10 +168,8 @@ pkg_postinst() { elog "Tips on using distcc with Gentoo can be found at" elog "https://wiki.gentoo.org/wiki/Distcc"; elog - elog "How to use pump mode with Gentoo:" - elog "# distcc-config --set-hosts \"foo,cpp,lzo bar,cpp,lzo baz,cpp,lzo\"" - elog "# echo 'FEATURES=\"\${FEATURES} distcc distcc-pump\"' >> /etc/portage/make.conf" - elog "# emerge -u world" + elog "distcc-pump is known to cause breakage with multiple packages." + elog "Do NOT enable it globally." elog elog "To use the distccmon programs with Gentoo you should use this command:" elog "# DISTCC_DIR=\"${DISTCC_DIR:-${BUILD_PREFIX}/.distcc}\" distccmon-text 5" diff --git a/sys-devel/distcc/distcc-3.2_rc1-r5.ebuild b/sys-devel/distcc/distcc-3.2_rc1-r5.ebuild index 7ce1fa8b812..58a62383bae 100644 --- a/sys-devel/distcc/distcc-3.2_rc1-r5.ebuild +++ b/sys-devel/distcc/distcc-3.2_rc1-r5.ebuild @@ -166,10 +166,8 @@ pkg_postinst() { elog "Tips on using distcc with Gentoo can be found at" elog "https://wiki.gentoo.org/wiki/Distcc"; elog - elog "How to use pump mode with Gentoo:" - elog "# distcc-config --set-hosts \"foo,cpp,lzo bar,cpp,lzo baz,cpp,lzo\"" - elog "# echo 'FEATURES=\"\${FEATURES} distcc distcc-pump\"' >> /etc/portage/make.conf" - elog "# emerge -u world" + elog "distcc-pump is known to cause breakage with multiple packages." + elog "Do NOT enable it globally." elog elog "To use the distccmon programs with Gentoo you should use this command:" elog "# DISTCC_DIR=\"${DISTCC_DIR:-${BUILD_PREFIX}/.distcc}\" distccmon-text 5" diff --git a/sys-devel/distcc/distcc-3.3.2.ebuild b/sys-devel/distcc/distcc-3.3.2.ebuild index 70496857256..2b510f85325 100644 --- a/sys-devel/distcc/distcc-3.3.2.ebuild +++ b/sys-devel/distcc/distcc-3.3.2.ebuild @@ -166,10 +166,8 @@ pkg_postinst() { elog "Tips on using distcc with Gentoo can be found at" elog "https://wiki.gentoo.org/wiki/Distcc"; elog - elog "How to use pump mode with Gentoo:" - elog "# distcc-config --set-hosts \"foo,cpp,lzo bar,cpp,lzo baz,cpp,lzo\"" - elog "# echo 'FEATURES=\"\${FEATURES} distcc distcc-pump\"' >> /etc/portage/make.conf" - elog "# emerge -u world" + elog "distcc-pump is known to cause breakage with multiple packages." + elog "Do NOT enable it globally." elog elog "To use the distccmon programs with Gentoo you should use this command:" elog "# DISTCC_DIR=\"${DISTCC_DIR:-${BUILD_PREFIX}/.distcc}\" distccmon-text 5" diff --git a/sys-devel/distcc/distcc-3.3.ebuild b/sys-devel/distcc/distcc-3.3.ebuild index b958b16f653..4ee28df450f 100644 --- a/sys-devel/distcc/distcc-3.3.ebuild +++ b/sys-devel/distcc/distcc-3.3.ebuild @@ -166,10 +166,8 @@ pkg_postinst() { elog "Tips on using distcc with Gentoo can be found at" elog "https://wiki.gentoo.org/wiki/Distcc"; elog - elog "How to use pump mode with Gentoo:" - elog "# distcc-config --set-hosts \"foo,cpp,lzo bar,cpp,lzo baz,cpp,lzo\"" - elog "# echo 'FEATURES=\"\${FEATURES} distcc distcc-pump\"' >> /etc/portage/make.conf" - elog "# emerge -u world" + elog "distcc-pump is known to cause breakage with multiple packages." + elog "Do NOT enable it globally." elog elog "To use the distccmon programs with Gentoo you should use this command:" elog "# DISTCC_DIR=\"${DISTCC_DIR:-${BUILD_PREFIX}/.distcc}\" distccmon-text 5"
[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtbluetooth/, dev-qt/linguist-tools/, dev-qt/qtscript/, ...
commit: b6e96b5749eed9f0a479ac111987bf17582c50d6 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Dec 5 23:14:33 2018 + Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Dec 8 17:49:01 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6e96b57 dev-qt: Drop Qt 5.11.2 Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-qt/assistant/Manifest | 1 - dev-qt/assistant/assistant-5.11.2.ebuild | 55 --- dev-qt/designer/Manifest | 1 - dev-qt/designer/designer-5.11.2.ebuild | 57 --- dev-qt/linguist-tools/Manifest | 1 - dev-qt/linguist-tools/linguist-tools-5.11.2.ebuild | 35 - dev-qt/linguist/Manifest | 1 - dev-qt/linguist/linguist-5.11.2.ebuild | 48 -- dev-qt/pixeltool/Manifest | 1 - dev-qt/pixeltool/pixeltool-5.11.2.ebuild | 25 --- dev-qt/qdbus/Manifest | 1 - dev-qt/qdbus/qdbus-5.11.2.ebuild | 25 --- dev-qt/qdbusviewer/Manifest| 1 - dev-qt/qdbusviewer/qdbusviewer-5.11.2.ebuild | 45 -- dev-qt/qdoc/Manifest | 1 - dev-qt/qdoc/qdoc-5.11.2.ebuild | 37 - dev-qt/qt3d/Manifest | 1 - dev-qt/qt3d/qt3d-5.11.2.ebuild | 32 dev-qt/qtbluetooth/Manifest| 1 - dev-qt/qtbluetooth/qtbluetooth-5.11.2.ebuild | 33 dev-qt/qtcharts/Manifest | 1 - dev-qt/qtcharts/qtcharts-5.11.2.ebuild | 29 dev-qt/qtconcurrent/Manifest | 1 - dev-qt/qtconcurrent/qtconcurrent-5.11.2.ebuild | 23 --- dev-qt/qtcore/Manifest | 1 - .../files/qtcore-5.11.2-export-qt_open64.patch | 31 dev-qt/qtcore/qtcore-5.11.2-r1.ebuild | 79 -- dev-qt/qtdatavis3d/Manifest| 1 - dev-qt/qtdatavis3d/qtdatavis3d-5.11.2.ebuild | 31 dev-qt/qtdbus/Manifest | 1 - dev-qt/qtdbus/qtdbus-5.11.2.ebuild | 43 -- dev-qt/qtdeclarative/Manifest | 1 - dev-qt/qtdeclarative/qtdeclarative-5.11.2.ebuild | 64 dev-qt/qtdiag/Manifest | 1 - dev-qt/qtdiag/qtdiag-5.11.2.ebuild | 36 - dev-qt/qtgraphicaleffects/Manifest | 1 - .../qtgraphicaleffects-5.11.2.ebuild | 21 --- dev-qt/qtgui/Manifest | 1 - .../files/qtgui-5.11.2-qapplication-block.patch| 53 --- dev-qt/qtgui/qtgui-5.11.2-r1.ebuild| 172 - dev-qt/qthelp/Manifest | 1 - dev-qt/qthelp/qthelp-5.11.2.ebuild | 30 dev-qt/qtimageformats/Manifest | 1 - dev-qt/qtimageformats/qtimageformats-5.11.2.ebuild | 29 dev-qt/qtlocation/Manifest | 1 - dev-qt/qtlocation/qtlocation-5.11.2.ebuild | 44 -- dev-qt/qtmultimedia/Manifest | 1 - dev-qt/qtmultimedia/qtmultimedia-5.11.2.ebuild | 68 dev-qt/qtnetwork/Manifest | 1 - dev-qt/qtnetwork/qtnetwork-5.11.2.ebuild | 57 --- dev-qt/qtnetworkauth/Manifest | 1 - dev-qt/qtnetworkauth/qtnetworkauth-5.11.2.ebuild | 20 --- dev-qt/qtopengl/Manifest | 1 - dev-qt/qtopengl/qtopengl-5.11.2.ebuild | 34 dev-qt/qtpaths/Manifest| 1 - dev-qt/qtpaths/qtpaths-5.11.2.ebuild | 23 --- dev-qt/qtplugininfo/Manifest | 1 - dev-qt/qtplugininfo/qtplugininfo-5.11.2.ebuild | 23 --- dev-qt/qtpositioning/Manifest | 1 - dev-qt/qtpositioning/qtpositioning-5.11.2.ebuild | 40 - dev-qt/qtprintsupport/Manifest | 1 - dev-qt/qtprintsupport/qtprintsupport-5.11.2.ebuild | 42 - dev-qt/qtquickcontrols/Manifest| 1 - .../qtquickcontrols/qtquickcontrols-5.11.2.ebuild | 32 dev-qt/qtquickcontrols2/Manifest | 1 - .../qtquickcontrols2-5.11.2.ebuild | 30 dev-qt/qtscript/Manifest | 1 - dev-qt/qtscript/qtscript-5.11.2.ebuild | 36 - dev-qt/qtscxml/Manifest| 1 - dev-qt/qtscxml/qtscxml-5.11.2.ebuild | 19 --- dev-qt/qtsensors/Manifest | 1 - dev-qt/qtsensors/qtsensors-5.11.2.ebuild | 28 dev-qt/qtserialbus/Manifest| 1 - dev-qt/qtserialbus/qtserialb
[gentoo-commits] repo/gentoo:master commit in: x11-libs/libdrm/
commit: 0f1d42635c22b686452225f09b14a0c73862db6c Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 17:45:05 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 17:45:05 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f1d4263 x11-libs/libdrm: mark s390 stable Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 x11-libs/libdrm/libdrm-2.4.96.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x11-libs/libdrm/libdrm-2.4.96.ebuild b/x11-libs/libdrm/libdrm-2.4.96.ebuild index 4b57c2f2b4f..e171872afad 100644 --- a/x11-libs/libdrm/libdrm-2.4.96.ebuild +++ b/x11-libs/libdrm/libdrm-2.4.96.ebuild @@ -17,7 +17,7 @@ if [[ ${PV} = * ]]; then SRC_URI="" else SRC_URI="https://dri.freedesktop.org/libdrm/${P}.tar.bz2"; - KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux" + KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux" fi VIDEO_CARDS="amdgpu exynos freedreno intel nouveau omap radeon tegra vc4 vivante vmware"
[gentoo-commits] repo/gentoo:master commit in: x11-libs/libSM/
commit: ffcfc76d1bfb2e186ca0319b0dad4f1b200793e5 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 17:44:15 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 17:44:15 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffcfc76d x11-libs/libSM: mark s390 stable Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 x11-libs/libSM/libSM-1.2.3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x11-libs/libSM/libSM-1.2.3.ebuild b/x11-libs/libSM/libSM-1.2.3.ebuild index 36b0c8694a6..54e95364d4b 100644 --- a/x11-libs/libSM/libSM-1.2.3.ebuild +++ b/x11-libs/libSM/libSM-1.2.3.ebuild @@ -9,7 +9,7 @@ inherit xorg-2 DESCRIPTION="X.Org Session Management library" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt" IUSE="doc ipv6 +uuid" RDEPEND="x11-base/xorg-proto
[gentoo-commits] repo/gentoo:master commit in: sys-libs/libnih/
commit: e18ec5a83c9c495782b4befc09cd5be595a2db68 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 17:45:53 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 17:45:53 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e18ec5a8 sys-libs/libnih: mark s390 stable Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 sys-libs/libnih/libnih-1.0.3-r3.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-libs/libnih/libnih-1.0.3-r3.ebuild b/sys-libs/libnih/libnih-1.0.3-r3.ebuild index 5d3f7fd4106..32d0d66bcd1 100644 --- a/sys-libs/libnih/libnih-1.0.3-r3.ebuild +++ b/sys-libs/libnih/libnih-1.0.3-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="4" @@ -11,7 +11,7 @@ SRC_URI="https://launchpad.net/${PN}/$(get_version_component_range 1-2)/${PV}/+d LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86" IUSE="+dbus nls static-libs +threads" # The configure phase will check for valgrind headers, and the tests will use
[gentoo-commits] repo/gentoo:master commit in: dev-python/beautifulsoup/
commit: bf3bd2255a819aef269a04ddc94722d3f5aef0ea Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 17:42:55 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 17:42:55 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf3bd225 dev-python/beautifulsoup: mark s390 stable Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 dev-python/beautifulsoup/beautifulsoup-4.5.1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-python/beautifulsoup/beautifulsoup-4.5.1.ebuild b/dev-python/beautifulsoup/beautifulsoup-4.5.1.ebuild index 84f52ff0e4b..a41cdad3fda 100644 --- a/dev-python/beautifulsoup/beautifulsoup-4.5.1.ebuild +++ b/dev-python/beautifulsoup/beautifulsoup-4.5.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz" LICENSE="MIT" SLOT="4" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" IUSE="doc test"
[gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-shutil/
commit: f30e3f862995e5b11baad771823254cfcfbc572b Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 17:36:30 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 17:36:30 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f30e3f86 dev-python/pytest-shutil: mark s390 stable Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 dev-python/pytest-shutil/pytest-shutil-1.2.11.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-python/pytest-shutil/pytest-shutil-1.2.11.ebuild b/dev-python/pytest-shutil/pytest-shutil-1.2.11.ebuild index 19306f8a712..b3d6006a5f9 100644 --- a/dev-python/pytest-shutil/pytest-shutil-1.2.11.ebuild +++ b/dev-python/pytest-shutil/pytest-shutil-1.2.11.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-fbsd" IUSE="test" RDEPEND="
[gentoo-commits] repo/gentoo:master commit in: dev-util/cppunit/
commit: b90ad250f51622b278ba1f19f80017bce4deda64 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 17:41:10 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 17:41:10 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b90ad250 dev-util/cppunit: mark s390 stable Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 dev-util/cppunit/cppunit-1.13.2-r2.ebuild | 4 ++-- dev-util/cppunit/cppunit-1.14.0.ebuild| 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-util/cppunit/cppunit-1.13.2-r2.ebuild b/dev-util/cppunit/cppunit-1.13.2-r2.ebuild index 753684a176d..9c300614235 100644 --- a/dev-util/cppunit/cppunit-1.13.2-r2.ebuild +++ b/dev-util/cppunit/cppunit-1.13.2-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -15,7 +15,7 @@ LICENSE="LGPL-2.1" SLOT="0" # Don't move KEYWORDS on the previous line or ekeyword won't work # 399061 [[ ${PV} = ]] || \ -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" IUSE="doc examples static-libs" RDEPEND="" diff --git a/dev-util/cppunit/cppunit-1.14.0.ebuild b/dev-util/cppunit/cppunit-1.14.0.ebuild index 7d7191bbb95..448262ad3b3 100644 --- a/dev-util/cppunit/cppunit-1.14.0.ebuild +++ b/dev-util/cppunit/cppunit-1.14.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -15,7 +15,7 @@ LICENSE="LGPL-2.1" SLOT="0" # Don't move KEYWORDS on the previous line or ekeyword won't work # 399061 [[ ${PV} = ]] || \ -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" IUSE="doc examples static-libs" RDEPEND=""
[gentoo-commits] repo/gentoo:master commit in: dev-python/bleach/
commit: e735252415d4652976e2b4d6401d5ad5091a7e21 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 17:38:00 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 17:38:00 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7352524 dev-python/bleach: mark s390 stable Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 dev-python/bleach/bleach-1.5.0.ebuild | 4 ++-- dev-python/bleach/bleach-2.1.3.ebuild | 2 +- dev-python/bleach/bleach-3.0.2.ebuild | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-python/bleach/bleach-1.5.0.ebuild b/dev-python/bleach/bleach-1.5.0.ebuild index 632e3e55c87..fc1dbd3b26d 100644 --- a/dev-python/bleach/bleach-1.5.0.ebuild +++ b/dev-python/bleach/bleach-1.5.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -12,7 +12,7 @@ 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 ppc ppc64 sparc x86" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86" IUSE="test" RDEPEND=" diff --git a/dev-python/bleach/bleach-2.1.3.ebuild b/dev-python/bleach/bleach-2.1.3.ebuild index 23ed3a93ac8..b397e3a658b 100644 --- a/dev-python/bleach/bleach-2.1.3.ebuild +++ b/dev-python/bleach/bleach-2.1.3.ebuild @@ -12,7 +12,7 @@ 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 ppc ppc64 sparc x86 ~amd64-fbsd" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-fbsd" IUSE="test" RDEPEND=" diff --git a/dev-python/bleach/bleach-3.0.2.ebuild b/dev-python/bleach/bleach-3.0.2.ebuild index 71d5a9790dc..3ae4009d0bb 100644 --- a/dev-python/bleach/bleach-3.0.2.ebuild +++ b/dev-python/bleach/bleach-3.0.2.ebuild @@ -12,7 +12,7 @@ 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 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd" IUSE="test" RDEPEND="
[gentoo-commits] repo/gentoo:master commit in: dev-python/psutil/
commit: b58b19d415a4ed439a54f9dfd93170452019dc61 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 17:33:26 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 17:33:26 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b58b19d4 dev-python/psutil: mark s390 stable Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 dev-python/psutil/psutil-5.4.3.ebuild | 2 +- dev-python/psutil/psutil-5.4.7.ebuild | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-python/psutil/psutil-5.4.3.ebuild b/dev-python/psutil/psutil-5.4.3.ebuild index 97e59a03bd9..ddd20191796 100644 --- a/dev-python/psutil/psutil-5.4.3.ebuild +++ b/dev-python/psutil/psutil-5.4.3.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="alpha amd64 arm arm64 ia64 ~ppc ppc64 sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm arm64 ia64 ~ppc ppc64 s390 sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="test" DEPEND=" diff --git a/dev-python/psutil/psutil-5.4.7.ebuild b/dev-python/psutil/psutil-5.4.7.ebuild index 71eb3eb3dc9..039f78170ff 100644 --- a/dev-python/psutil/psutil-5.4.7.ebuild +++ b/dev-python/psutil/psutil-5.4.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~s390 ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="test" DEPEND="
[gentoo-commits] repo/gentoo:master commit in: x11-libs/gtk+/
commit: 9e224f56adfa60dabcb30cb53746d83d48042ce7 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 8 17:35:39 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 8 17:35:39 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e224f56 x11-libs/gtk+: mark s390 stable Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 x11-libs/gtk+/gtk+-2.24.32-r1.ebuild | 2 +- x11-libs/gtk+/gtk+-3.24.1.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/x11-libs/gtk+/gtk+-2.24.32-r1.ebuild b/x11-libs/gtk+/gtk+-2.24.32-r1.ebuild index 009b7445191..bf8acfda009 100644 --- a/x11-libs/gtk+/gtk+-2.24.32-r1.ebuild +++ b/x11-libs/gtk+/gtk+-2.24.32-r1.ebuild @@ -18,7 +18,7 @@ REQUIRED_USE=" xinerama? ( !aqua ) " -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" # Upstream wants us to do their job: # https://bugzilla.gnome.org/show_bug.cgi?id=768663#c1 diff --git a/x11-libs/gtk+/gtk+-3.24.1.ebuild b/x11-libs/gtk+/gtk+-3.24.1.ebuild index 50215462585..8764d73d082 100644 --- a/x11-libs/gtk+/gtk+-3.24.1.ebuild +++ b/x11-libs/gtk+/gtk+-3.24.1.ebuild @@ -18,7 +18,7 @@ REQUIRED_USE=" xinerama? ( X ) " -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" # Upstream wants us to do their job: # https://bugzilla.gnome.org/show_bug.cgi?id=768662#c1