[gentoo-commits] proj/portage:master commit in: bin/
commit: a468a995ba3e5931971804bdda485a88e68b0e18 Author: kewl fft alto eu org> AuthorDate: Sat May 26 06:05:59 2018 + Commit: Zac Medico gentoo org> CommitDate: Sat May 26 06:29:21 2018 + URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=a468a995 etc-update: consistently use double bracket operator Closes: https://github.com/gentoo/portage/pull/323 bin/etc-update | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/bin/etc-update b/bin/etc-update index 4f02876ef..afdd48ce8 100755 --- a/bin/etc-update +++ b/bin/etc-update @@ -146,8 +146,8 @@ scan() { find_opts+=( "$name_opt" ) find_opts+=( ! -name '.*~' ! -iname '.*.bak' -print ) - if [ ! -w "${path}" ] ; then - [ -e "${path}" ] || continue + if [[ ! -w ${path} ]] ; then + [[ -e ${path} ]] || continue die "Need write access to ${path}" fi @@ -383,7 +383,7 @@ read_int() { } do_file() { - interactive_echo() { [ "${OVERWRITE_ALL}" != "yes" ] && [ "${DELETE_ALL}" != "yes" ] && echo; } + interactive_echo() { [[ ${OVERWRITE_ALL} != yes ]] && [[ ${DELETE_ALL} != yes ]] && echo; } interactive_echo local -i my_input local -i linecnt @@ -541,17 +541,17 @@ do_cfg() { case ${my_input} in 1) echo "Replacing ${ofile} with ${file}" do_mv_ln ${mv_opts} "${file}" "${ofile}" - [ -n "${OVERWRITE_ALL}" ] && my_input=-1 + [[ -n ${OVERWRITE_ALL} ]] && my_input=-1 continue ;; 2) echo "Deleting ${file}" rm ${rm_opts} "${file}" - [ -n "${DELETE_ALL}" ] && my_input=-1 + [[ -n ${DELETE_ALL} ]] && my_input=-1 continue ;; 3) do_merge "${file}" "${ofile}" my_input=${?} -# [ ${my_input} == 255 ] && my_input=-1 +# [[ ${my_input} == 255 ]] && my_input=-1 continue ;; 4) continue @@ -696,10 +696,10 @@ die() { trap SIGINT local msg=$1 exitcode=${2:-1} - if [ ${exitcode} -eq 0 ] ; then + if [[ ${exitcode} -eq 0 ]] ; then ${QUIET} || printf 'Exiting: %b\n' "${msg}" scan > /dev/null - ! ${QUIET} && [ ${count} -gt 0 ] && echo "NOTE: ${count} updates remaining" + ! ${QUIET} && [[ ${count} -gt 0 ]] && echo "NOTE: ${count} updates remaining" else error "${msg}" fi
[gentoo-commits] repo/gentoo:master commit in: profiles/
commit: 388b1386ed6c676a75ebc1c887e734372524e725 Author: Michał Górny gentoo org> AuthorDate: Sat May 26 06:26:10 2018 + Commit: Michał Górny gentoo org> CommitDate: Sat May 26 06:26:10 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=388b1386 package.mask: Unmask games-action/shadowgrounds-* Remove games-action/shadowgrounds-* from the BLAKE2B removal to avoid accidental removal since they're updated now. profiles/package.mask | 2 -- 1 file changed, 2 deletions(-) diff --git a/profiles/package.mask b/profiles/package.mask index 266d437ec5f..2364771e515 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -137,8 +137,6 @@ sci-libs/freesteam # Remaining fetch-restricted game packages missing BLAKE2B hashes. # Please provide updated hashes if you have the matching distfiles. # Bug #642876. Removal in 30 days. -games-action/shadowgrounds-bin -games-action/shadowgrounds-survivor-bin games-action/trine2 games-misc/dont-starve games-puzzle/larry
[gentoo-commits] proj/portage:master commit in: pym/portage/package/ebuild/
commit: cd44fea4c8c8154fee74bcc37529c0d5c2e9d789 Author: Zac Medico gentoo org> AuthorDate: Sat May 26 05:46:36 2018 + Commit: Zac Medico gentoo org> CommitDate: Sat May 26 06:07:55 2018 + URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=cd44fea4 prepare_build_dirs: convert PermissionError to PermissionDenied (bug 656542) This supresses display of a big PermissionError traceback for bin/ebuild, like in https://bugs.gentoo.org/656542#c0, and also suppresses additional messages that may occur when the unhandled PermissionError prevents bin/ebuild from cleanly closing the asyncio event loop. Bug: https://bugs.gentoo.org/656542 pym/portage/package/ebuild/prepare_build_dirs.py | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pym/portage/package/ebuild/prepare_build_dirs.py b/pym/portage/package/ebuild/prepare_build_dirs.py index 21e2aa87c..e53ccd0fb 100644 --- a/pym/portage/package/ebuild/prepare_build_dirs.py +++ b/pym/portage/package/ebuild/prepare_build_dirs.py @@ -19,6 +19,7 @@ from portage.localization import _ from portage.output import colorize from portage.util import apply_recursive_permissions, \ apply_secpass_permissions, ensure_dirs, normalize_path, writemsg +from portage.util.install_mask import _raise_exc from portage.const import EPREFIX def prepare_build_dirs(myroot=None, settings=None, cleanup=False): @@ -50,7 +51,9 @@ def prepare_build_dirs(myroot=None, settings=None, cleanup=False): clean_dir, noiselevel=-1) return 1 else: - raise + # Wrap with PermissionDenied if appropriate, so that callers + # display a short error message without a traceback. + _raise_exc(oe) def makedirs(dir_path): try:
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/deep_merge/
commit: fa2a3d8a7915b6a04d58b5393de7f60fe125e803 Author: Hans de Graaff gentoo org> AuthorDate: Sat May 26 04:54:07 2018 + Commit: Hans de Graaff gentoo org> CommitDate: Sat May 26 04:54:07 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa2a3d8a dev-ruby/deep_merge: amd64 stable, bug 656210 Package-Manager: Portage-2.3.36, Repoman-2.3.9 dev-ruby/deep_merge/deep_merge-1.2.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-ruby/deep_merge/deep_merge-1.2.1.ebuild b/dev-ruby/deep_merge/deep_merge-1.2.1.ebuild index 323a011a58b..3617b51faab 100644 --- a/dev-ruby/deep_merge/deep_merge-1.2.1.ebuild +++ b/dev-ruby/deep_merge/deep_merge-1.2.1.ebuild @@ -15,7 +15,7 @@ HOMEPAGE="http://trac.misuse.org/science/wiki/DeepMerge"; LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 x86" +KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 x86" IUSE="" each_ruby_test() {
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/hiera/
commit: 29bb709f21694b85c3b8c29bc36ed04e843e352a Author: Hans de Graaff gentoo org> AuthorDate: Sat May 26 04:53:19 2018 + Commit: Hans de Graaff gentoo org> CommitDate: Sat May 26 04:53:19 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29bb709f dev-ruby/hiera: amd64 stable, bug 656210 Package-Manager: Portage-2.3.36, Repoman-2.3.9 dev-ruby/hiera/hiera-3.4.3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-ruby/hiera/hiera-3.4.3.ebuild b/dev-ruby/hiera/hiera-3.4.3.ebuild index b68644f8a73..b105b1649d8 100644 --- a/dev-ruby/hiera/hiera-3.4.3.ebuild +++ b/dev-ruby/hiera/hiera-3.4.3.ebuild @@ -18,7 +18,7 @@ HOMEPAGE="https://docs.puppet.com/hiera/"; LICENSE="Apache-2.0" SLOT="0" IUSE="" -KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc x86" +KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc x86" ruby_add_bdepend "test? ( dev-ruby/mocha )"
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/capybara/
commit: f22fdb282d8d6cec78e02901512767d06aba3f64 Author: Hans de Graaff gentoo org> AuthorDate: Sat May 26 04:44:15 2018 + Commit: Hans de Graaff gentoo org> CommitDate: Sat May 26 04:44:15 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f22fdb28 dev-ruby/capybara: add 3.1.1 Package-Manager: Portage-2.3.36, Repoman-2.3.9 dev-ruby/capybara/Manifest | 1 + dev-ruby/capybara/capybara-3.1.1.ebuild | 50 + 2 files changed, 51 insertions(+) diff --git a/dev-ruby/capybara/Manifest b/dev-ruby/capybara/Manifest index 1a334394f76..b918032ad51 100644 --- a/dev-ruby/capybara/Manifest +++ b/dev-ruby/capybara/Manifest @@ -2,3 +2,4 @@ DIST capybara-2.16.1.gem 273408 BLAKE2B 1d1a68427fcfed9a8153e409e17fc043dd8d926c DIST capybara-2.18.0.gem 274432 BLAKE2B 992799362025b81a0d074fb06fdafef4c4385ca18ea85a7095d9e58625df6a59a349b60b462c5c4f403a6af955466bc46d82be6cd91724fc2b12cbe15ed74a4c SHA512 3bb994e022593d485a07296193a16cae7b45e96e87dd10b2bd4807ad2bc990801044c0493360598d1626c3e367e8de87e407f65c2c6f42674d5f1b9c0b5c1933 DIST capybara-3.0.3.gem 276480 BLAKE2B a1aa8e8ccc3846c87bdc989f456fdd0c09f41b2939cfe322faa6ae478bacdd1d6b4b13dba55fc74edd50fcfe28eb59eb8a2add8e3fc5ba948bcf8365c0ffbb96 SHA512 7af6c04304f3308322ec374d226b6cd874ba2068be5451da482a6bd2861e404b580e4c74604f0873cd91a52f1d95117efdf850cf19eb9c6265715cff5d503c47 DIST capybara-3.1.0.gem 282112 BLAKE2B 71b275c548e3327dcbad779d48563b6784cbfcc0e5c3ba5fa478488ef90276bab1aeeaecd229255047cd23e01be6923c68c1f753b9d76d3428cc0ce75ff3ede3 SHA512 64c7a22eb8d566b245084e7b95d79dec2c72162e003418c0367a46e1072ad83569e97702f61f9a87f996160a62df3a653543d33878c6d3a46ebc2c286fcfbfd7 +DIST capybara-3.1.1.gem 282112 BLAKE2B 82740933a34bc80ff4901fdf538b9d48d3ae8b5d9c906f462a964104ee1312a74697528f1803eeead0a250823baaedb1f2d4839053b26e4a9ed0fccbc224a137 SHA512 955918a004f11af93caecf964738108edd31ebfb239d6af752bc48ac74b754320014b997d01b8cd12bec5aeef27c88b6737cf7d0ba7dfdb4ce983939ae534546 diff --git a/dev-ruby/capybara/capybara-3.1.1.ebuild b/dev-ruby/capybara/capybara-3.1.1.ebuild new file mode 100644 index 000..0ff180fb058 --- /dev/null +++ b/dev-ruby/capybara/capybara-3.1.1.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +USE_RUBY="ruby23 ruby24 ruby25" + +RUBY_FAKEGEM_EXTRADOC="History.md README.md" + +# Rake tasks are not distributed in the gem. +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_TASK_TEST="" + +inherit virtualx ruby-fakegem + +DESCRIPTION="Capybara aims to simplify the process of integration testing Rack applications" +HOMEPAGE="https://github.com/jnicklas/capybara"; +LICENSE="MIT" + +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~x86" +SLOT="3" +IUSE="test" + +DEPEND="${DEPEND} test? ( www-client/firefox )" + +ruby_add_bdepend "test? ( dev-ruby/rspec:3 dev-ruby/launchy >=dev-ruby/selenium-webdriver-2.0 dev-ruby/sinatra )" + +ruby_add_rdepend " + dev-ruby/addressable + >=dev-ruby/mini_mime-0.1.3 + >=dev-ruby/nokogiri-1.8:0 + >=dev-ruby/rack-1.6.0:* + >=dev-ruby/rack-test-0.6.3:* + dev-ruby/xpath:3" + +all_ruby_prepare() { + sed -i -e '/bundler/d' -e '/pry/d' -e '1igem "sinatra"' spec/spec_helper.rb || die + + # Avoid window-manager specific tests (sizes are specific for fluxbox) + sed -i -e '/#maximize/,/^ end/ s:^:#:' lib/capybara/spec/session/window/window_spec.rb || die + + # Avoid spec that requires unpackaged geckodriver + sed -i -e '/describe.*register_server/,/^ end/ s:^:#:' spec/capybara_spec.rb || die + + # Avoid test dependency on puma server for now + sed -i -e '/should have :puma registered/,/^end/ s:^:#:' spec/capybara_spec.rb || die +} + +each_ruby_test() { + virtx ${RUBY} -Ilib -S rspec-3 spec || die "Tests failed." +}
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/jwt/
commit: d968b442c459cca7b6b274ef8ca59766fa0a8fab Author: Hans de Graaff gentoo org> AuthorDate: Sat May 26 04:48:15 2018 + Commit: Hans de Graaff gentoo org> CommitDate: Sat May 26 04:48:15 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d968b442 dev-ruby/jwt: add 2.1.0 Package-Manager: Portage-2.3.36, Repoman-2.3.9 dev-ruby/jwt/Manifest | 1 + dev-ruby/jwt/jwt-2.1.0.ebuild | 30 ++ 2 files changed, 31 insertions(+) diff --git a/dev-ruby/jwt/Manifest b/dev-ruby/jwt/Manifest index 996f46fdd2c..688e41bdf27 100644 --- a/dev-ruby/jwt/Manifest +++ b/dev-ruby/jwt/Manifest @@ -1,2 +1,3 @@ DIST jwt-1.5.6.tar.gz 28586 BLAKE2B d1fa2e735cf93126866c7a5eca14d63ee2646a66b9759fa59ec3191544efb2e0f502c7474e41a1b0d494ed8d692462db64efd718b8c6fa8acb4fcd9b58ab1c32 SHA512 f112bb815ef1af1f77d082574f5157f33469c2caba88716aa16b20dc48d279f8579730f75db81aa31480d6edd5deaa110adbaf3f52372b0397d5822a964a759e DIST jwt-2.0.0.tar.gz 32205 BLAKE2B ba356abd8bc37e819576485e381eb6025324ca3a8872a6d64d0e2a2ff51dd11a804fa904384c47d58b6dee46331fa7f6ca19feb042d3e65de30583211ff7af17 SHA512 d194e06df17edfbde49d9ae6caad5e220f602ce722ae4361a5118024e08dcaddccc71a8fbac99e75ce3b19033e6368825914eed3e91e402b2cf208ebaabf23a5 +DIST jwt-2.1.0.tar.gz 34188 BLAKE2B 0022dbb76cd8570aee84b6590f24639320977ae8d6d5fa53ef1d260da12bc732f9fdc01d59f6c994dc36642a7b67786b607ae76aca8044b7d5f5c60dc300966a SHA512 ad65b6ddd5fb7f33efe0036103f8f7482fd35090b8545219141e8885298fb4809d2386fd6e986c9bca0f85c823c9d4a6500785c0c5964db22d023a99c603ec47 diff --git a/dev-ruby/jwt/jwt-2.1.0.ebuild b/dev-ruby/jwt/jwt-2.1.0.ebuild new file mode 100644 index 000..844582f3420 --- /dev/null +++ b/dev-ruby/jwt/jwt-2.1.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +USE_RUBY="ruby24 ruby25" + +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" + +inherit ruby-fakegem + +DESCRIPTION="A Ruby implementation of JSON Web Token draft 06" +HOMEPAGE="https://github.com/jwt/ruby-jwt"; +SRC_URI="https://github.com/jwt/ruby-jwt/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="2" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="" + +RUBY_S="ruby-jwt-${PV}" + +all_ruby_prepare() { + sed -i -e "/simplecov/ s:^:#:" \ + -e '/^SimpleCov.configure/,/^end/ s:^:#:' \ + -e '/codeclimate/I s:^:#:' \ + -e '/codacy/I s:^:#:' \ + spec/spec_helper.rb || die +}
[gentoo-commits] repo/gentoo:master commit in: app-text/aiksaurus/
commit: 9f8fbe18900b6daa8d7cb58b7019fd14802b83f2 Author: Aaron Bauman gentoo org> AuthorDate: Sat May 26 00:35:41 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Sat May 26 02:05:01 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f8fbe18 app-text/aiksaurus: bump EAPI and drop eutils Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-text/aiksaurus/aiksaurus-1.2.1.ebuild | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app-text/aiksaurus/aiksaurus-1.2.1.ebuild b/app-text/aiksaurus/aiksaurus-1.2.1.ebuild index d359b259e03..fcf08e959e7 100644 --- a/app-text/aiksaurus/aiksaurus-1.2.1.ebuild +++ b/app-text/aiksaurus/aiksaurus-1.2.1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=2 -inherit flag-o-matic eutils libtool +EAPI=6 +inherit flag-o-matic libtool DESCRIPTION="A thesaurus lib, tool and database" HOMEPAGE="https://sourceforge.net/projects/aiksaurus"; @@ -17,9 +17,10 @@ RDEPEND="gtk? ( x11-libs/gtk+:2 )" DEPEND="${RDEPEND} gtk? ( virtual/pkgconfig )" -src_prepare() { - epatch "${FILESDIR}"/${P}-gcc43.patch #214248 +PATCHES=( "${FILESDIR}/${P}-gcc43.patch" ) +src_prepare() { + default # Needed to make relink work on FreeBSD, without it won't install. # Also needed for a sane .so versionning there. elibtoolize @@ -32,5 +33,4 @@ src_configure() { src_install() { emake DESTDIR="${D}" install || die - dodoc AUTHORS README* ChangeLog }
[gentoo-commits] repo/gentoo:master commit in: net-wireless/gobi_loader/
commit: 6b477adf298cb7f6dd556cbe2041f8e4762a11d0 Author: Aaron Bauman gentoo org> AuthorDate: Sat May 26 00:23:28 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Sat May 26 02:05:01 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b477adf net-wireless/gobi_loader: bump EAPI and drop eutils Package-Manager: Portage-2.3.40, Repoman-2.3.9 net-wireless/gobi_loader/gobi_loader-0.7-r2.ebuild | 14 -- 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/net-wireless/gobi_loader/gobi_loader-0.7-r2.ebuild b/net-wireless/gobi_loader/gobi_loader-0.7-r2.ebuild index 3f26f58daac..4d649f9e0ea 100644 --- a/net-wireless/gobi_loader/gobi_loader-0.7-r2.ebuild +++ b/net-wireless/gobi_loader/gobi_loader-0.7-r2.ebuild @@ -1,12 +1,12 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="2" -inherit eutils multilib udev +EAPI=6 +inherit multilib udev DESCRIPTION="gobi_loader is a firmware loader for Qualcomm Gobi USB chipsets" -HOMEPAGE="http://www.codon.org.uk/~mjg59/gobi_loader/"; -SRC_URI="http://www.codon.org.uk/~mjg59/${PN}/download/${P}.tar.gz"; +HOMEPAGE="https://www.codon.org.uk/~mjg59/gobi_loader/"; +SRC_URI="https://www.codon.org.uk/~mjg59/${PN}/download/${P}.tar.gz"; LICENSE="GPL-2" SLOT="0" @@ -16,8 +16,10 @@ IUSE="" DEPEND="virtual/libusb:0" RDEPEND="${DEPEND}" +PATCHES=( "${FILESDIR}/${P}-makefile.patch" ) + src_prepare() { - epatch "${FILESDIR}"/${P}-makefile.patch + default sed "s:%UDEVDIR%:$(get_udevdir):" -i Makefile || die }
[gentoo-commits] repo/gentoo:master commit in: net-dns/odsclient/
commit: b57fe056aa008db216700f439e06d45246fdef0a Author: Aaron Bauman gentoo org> AuthorDate: Sat May 26 00:19:55 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Sat May 26 02:05:00 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b57fe056 net-dns/odsclient: bump EAPI and drop eutils Package-Manager: Portage-2.3.40, Repoman-2.3.9 Closes: https://github.com/gentoo/gentoo/pull/8591 net-dns/odsclient/odsclient-1.03-r1.ebuild | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/net-dns/odsclient/odsclient-1.03-r1.ebuild b/net-dns/odsclient/odsclient-1.03-r1.ebuild index d679353f724..bf24d233dae 100644 --- a/net-dns/odsclient/odsclient-1.03-r1.ebuild +++ b/net-dns/odsclient/odsclient-1.03-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="2" +EAPI=6 -inherit eutils toolchain-funcs +inherit toolchain-funcs DESCRIPTION="Client for the Open Domain Server's dynamic dns" HOMEPAGE="http://www.ods.org/"; @@ -14,10 +14,11 @@ SLOT="0" KEYWORDS="~amd64 x86" IUSE="" +PATCHES=( "${FILESDIR}/${PV}-gentoo.patch" ) + src_prepare() { + default sed -i Makefile -e 's| -o | $(LDFLAGS)&|g' || die "sed failed" - - epatch "${FILESDIR}"/${PV}-gentoo.patch } src_compile() { @@ -30,5 +31,4 @@ src_compile() { src_install() { dosbin odsclient - dodoc README }
[gentoo-commits] repo/gentoo:master commit in: sys-fs/autorun/, sys-fs/autorun/files/
commit: c4895cc7013e2e7ba1745a6c3b029aa08cc5587a Author: Aaron Bauman gentoo org> AuthorDate: Sat May 26 01:23:56 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Sat May 26 02:05:01 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4895cc7 sys-fs/autorun: bump EAPI and drop eutils Package-Manager: Portage-2.3.40, Repoman-2.3.9 sys-fs/autorun/autorun-3.17.ebuild | 10 +++--- sys-fs/autorun/files/autorun-3.17-headers.patch | 4 ++-- 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/sys-fs/autorun/autorun-3.17.ebuild b/sys-fs/autorun/autorun-3.17.ebuild index 0b1869badd0..3fba603c6a6 100644 --- a/sys-fs/autorun/autorun-3.17.ebuild +++ b/sys-fs/autorun/autorun-3.17.ebuild @@ -1,8 +1,7 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=2 -inherit eutils +EAPI=7 DESCRIPTION="auto cdrom mounter for the lazy user" HOMEPAGE="http://autorun.sourceforge.net/"; @@ -19,9 +18,7 @@ DEPEND="sys-devel/gettext app-text/xmlto app-text/docbook-xml-dtd:4.1.2" -src_prepare() { - epatch "${FILESDIR}"/${P}-headers.patch -} +PATCHES=( "${FILESDIR}/${P}-headers.patch" ) src_configure() { export KDEDIR=/usr @@ -31,5 +28,4 @@ src_configure() { src_install() { emake DESTDIR="${D}" install || die - dodoc AUTHORS ChangeLog NEWS README } diff --git a/sys-fs/autorun/files/autorun-3.17-headers.patch b/sys-fs/autorun/files/autorun-3.17-headers.patch index 642f1596b70..4fc487d656b 100644 --- a/sys-fs/autorun/files/autorun-3.17-headers.patch +++ b/sys-fs/autorun/files/autorun-3.17-headers.patch @@ -1,7 +1,7 @@ https://bugs.gentoo.org/251684 autorun.cc -+++ autorun.cc +--- a/autorun.cc b/autorun.cc @@ -90,6 +90,8 @@ char *strchr (), *strrchr (); #include
[gentoo-commits] repo/gentoo:master commit in: app-arch/unp/
commit: 404fe8a681ee5b92da8e17863882bef1749b1042 Author: Aaron Bauman gentoo org> AuthorDate: Sat May 26 00:39:23 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Sat May 26 01:27:03 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=404fe8a6 app-arch/unp: drop old EAPIs Package-Manager: Portage-2.3.40, Repoman-2.3.9 Closes: https://github.com/gentoo/gentoo/pull/8589 app-arch/unp/Manifest | 1 - app-arch/unp/unp-2.0_pre7.ebuild| 41 app-arch/unp/unp-2.0_pre7_p1.ebuild | 47 - 3 files changed, 89 deletions(-) diff --git a/app-arch/unp/Manifest b/app-arch/unp/Manifest index ddaec04e69e..7f7b15c166c 100644 --- a/app-arch/unp/Manifest +++ b/app-arch/unp/Manifest @@ -1,2 +1 @@ DIST unp_2.0~pre7+nmu1.tar.bz2 17537 BLAKE2B 7ef6cfcc524daf95c7cd9dc41ba690cb8db1b1983cd45709c8764591af36d6d00631975bfef0359ac633aae1c11b73efe827e367931f73fe7c5fcc8832b0fe84 SHA512 1b30f14c8d17e0a6b149ca4795f2219e9180f814347410e7ff7fa2b9720a9d308190f2ded8fcfd11bac9b5bb7a64ffd93f140bdaffcba1127f0e15e3d2737362 -DIST unp_2.0~pre7.tar.bz2 14492 BLAKE2B 5155aa3a63ba9aaad981c42ea88602b97c08416384d166979f35a1ddec592b7cfbf4f002a500de0f21a374732f1a5aec85e69bcbb915ca7936edd67f04875898 SHA512 b90238a3e359d45e4b0ec3e5559a682fce3a7a37f74dd5419b005bb7bd3e3e5be03dde2e5d40d1671c0274ff1d795560fa238a572fe6cf3ab12f17dd1e2bcd1d diff --git a/app-arch/unp/unp-2.0_pre7.ebuild b/app-arch/unp/unp-2.0_pre7.ebuild deleted file mode 100644 index 17f3ea39960..000 --- a/app-arch/unp/unp-2.0_pre7.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=2 - -inherit eutils bash-completion-r1 - -DESCRIPTION="Script for unpacking various file formats" -HOMEPAGE="https://packages.qa.debian.org/u/unp.html"; -SRC_URI="mirror://debian/pool/main/u/unp/${PN}_${PV/_/$'\x7e'}.tar.bz2" -S="${WORKDIR}/${PN}-${PV/_/$'\x7e'}" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm ~hppa ~ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris" -IUSE="nls" - -DEPEND="nls? ( sys-devel/gettext )" - -RDEPEND="${DEPEND} - dev-lang/perl" - -src_compile() { - if use nls; then - cd po - emake - fi -} - -src_install() { - dobin unp || die "dobin failed" - dosym unp /usr/bin/ucat - doman debian/unp.1 || die "doman failed" - dodoc debian/changelog debian/README.Debian - dobashcomp bash_completion.d/unp - - if use nls; then - cd po - emake DESTDIR="${D}" install - fi -} diff --git a/app-arch/unp/unp-2.0_pre7_p1.ebuild b/app-arch/unp/unp-2.0_pre7_p1.ebuild deleted file mode 100644 index 3c2f98f8f9c..000 --- a/app-arch/unp/unp-2.0_pre7_p1.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit eutils bash-completion-r1 - -DESCRIPTION="Script for unpacking various file formats" -HOMEPAGE="https://packages.qa.debian.org/u/unp.html"; -TEMP_PV="${PV/_pre/$'\x7e'pre}" -MY_PV="${TEMP_PV/_p/+nmu}" -SRC_URI="mirror://debian/pool/main/u/unp/${PN}_${MY_PV}.tar.bz2" -S="${WORKDIR}/${PN}-${MY_PV}" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~arm ~hppa ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris" -IUSE="nls" - -DEPEND="nls? ( sys-devel/gettext )" - -RDEPEND="${DEPEND} - dev-lang/perl" - -src_prepare() { - epatch "${FILESDIR}/${P}-remove-deprecated-have.diff" -} - -src_compile() { - if use nls; then - cd po - emake - fi -} - -src_install() { - dobin unp || die "dobin failed" - dosym unp /usr/bin/ucat - doman debian/unp.1 || die "doman failed" - dodoc debian/changelog debian/README.Debian - dobashcomp bash_completion.d/unp - - if use nls; then - cd po - emake DESTDIR="${D}" install - fi -}
[gentoo-commits] repo/gentoo:master commit in: sys-auth/pam_ssh/files/, sys-auth/pam_ssh/
commit: 161287a6247d726419f811545d115a38ca46a13d Author: Aaron Bauman gentoo org> AuthorDate: Sat May 26 00:56:15 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Sat May 26 01:26:42 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=161287a6 sys-auth/pam_ssh: drop old EAPIs Package-Manager: Portage-2.3.40, Repoman-2.3.9 Closes: https://github.com/gentoo/gentoo/pull/8590 sys-auth/pam_ssh/Manifest | 1 - sys-auth/pam_ssh/files/pam_ssh-1.97-EOF.patch | 11 - .../pam_ssh/files/pam_ssh-1.97-doublefree.patch| 20 - sys-auth/pam_ssh/pam_ssh-1.97-r1.ebuild| 45 --- sys-auth/pam_ssh/pam_ssh-1.97-r2.ebuild| 51 - sys-auth/pam_ssh/pam_ssh-1.97-r3.ebuild| 52 -- 6 files changed, 180 deletions(-) diff --git a/sys-auth/pam_ssh/Manifest b/sys-auth/pam_ssh/Manifest index 293dace2b75..4f6c1889d98 100644 --- a/sys-auth/pam_ssh/Manifest +++ b/sys-auth/pam_ssh/Manifest @@ -1,3 +1,2 @@ -DIST pam_ssh-1.97.tar.bz2 200184 BLAKE2B 572d42850b7eab5ba5a810f63ef39d7654248d87d020961d91ed6d982b9a89c3b233410772171e0ad66dd00fa723bae6c5b599026ec425a809465f65b2aaed90 SHA512 78632ef5baf8c7ac6d28d16a4c7e452978ad09a969c562cfcc708b835dbba3da12317569a618768ef6f9d59db1d5d31f2a0c7b2ab1244ed9caa37eb89413494e DIST pam_ssh-1.98.tar.bz2 292989 BLAKE2B 08744c6649aa58c7221e5ec07e0c6aefa8d045cf30df01b941962d29f3abdae902b0fbad37923e3ff05536e422a1062732a6998e4b58d978d369df3d866ec1aa SHA512 bf6da4ced0619549d56516c6b24e899664e0948da7a0cc04ff1b536d06cc8c26242c83eb36ed835668c824b777e270aa293162ac77e3c479311386e6e5da39ff DIST pam_ssh-2.1.tar.xz 361000 BLAKE2B f22836af20b41ae7254f816c33793bb3a128b604ec36a20b207610deebf61f4d5dd070fd6f5093c6f7b6eb9e14f85cd81ddbbed7e97ee581124e5335722d036b SHA512 8252b15efffa5687f740963f7a3c3479b73f99eca26a17155f915a10b9a71362a2778449adf10f01c174cc8545961ce3ea64459338a7c995c242b209529fd640 diff --git a/sys-auth/pam_ssh/files/pam_ssh-1.97-EOF.patch b/sys-auth/pam_ssh/files/pam_ssh-1.97-EOF.patch deleted file mode 100644 index 80214a1df70..000 --- a/sys-auth/pam_ssh/files/pam_ssh-1.97-EOF.patch +++ /dev/null @@ -1,11 +0,0 @@ pam_ssh-1.92.orig/pam_get_pass.c 2004-02-19 19:59:05.0 +0100 -+++ pam_ssh-1.92/pam_get_pass.c2009-04-18 13:51:10.0 +0200 -@@ -63,6 +63,8 @@ - retval = conv->conv(1, msgs, &resp, conv->appdata_ptr); - if (retval != PAM_SUCCESS) - return retval; -+ if (resp[0].resp == NULL) -+ return PAM_AUTHTOK_RECOVERY_ERR; - retval = pam_set_item(pamh, PAM_AUTHTOK, resp[0].resp); - if (retval != PAM_SUCCESS) - return retval; diff --git a/sys-auth/pam_ssh/files/pam_ssh-1.97-doublefree.patch b/sys-auth/pam_ssh/files/pam_ssh-1.97-doublefree.patch deleted file mode 100644 index 2f63ff8bdcb..000 --- a/sys-auth/pam_ssh/files/pam_ssh-1.97-doublefree.patch +++ /dev/null @@ -1,20 +0,0 @@ pam_ssh-1.97/pam_ssh.c.orig2009-08-01 20:11:00.0 +0200 -+++ pam_ssh-1.97/pam_ssh.c 2009-08-01 20:11:16.0 +0200 -@@ -627,7 +627,7 @@ - * than the file creation time */ - if (retval = stat(per_agent, &stat_buf)) { - pam_ssh_log(LOG_ERR, "stat() failed on %s", per_agent); --free(per_agent); -+pam_set_data(pamh, "ssh_agent_env_agent", NULL, NULL); - fclose(env_read); - return retval; - } -@@ -646,7 +646,7 @@ - if (start_agent) { - if ((env_write = open(per_agent, O_CREAT | O_WRONLY, S_IRUSR | S_IWUSR)) < 0) { - pam_ssh_log(LOG_ERR, "can't write to %s", per_agent); --free(per_agent); -+pam_set_data(pamh, "ssh_agent_env_agent", NULL, NULL); - openpam_restore_cred(pamh); - return PAM_SERVICE_ERR; - } diff --git a/sys-auth/pam_ssh/pam_ssh-1.97-r1.ebuild b/sys-auth/pam_ssh/pam_ssh-1.97-r1.ebuild deleted file mode 100644 index 37f128a8923..000 --- a/sys-auth/pam_ssh/pam_ssh-1.97-r1.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=2 - -inherit pam autotools eutils - -DESCRIPTION="Uses ssh-agent to provide single sign-on" -HOMEPAGE="http://pam-ssh.sourceforge.net/"; -SRC_URI="mirror://sourceforge/pam-ssh/${P}.tar.bz2" - -LICENSE="BSD-2 BSD ISC" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-linux ~x86-linux" -IUSE="" - -# Doesn't work on OpenPAM. -DEPEND="sys-libs/pam - sys-devel/libtool" - -RDEPEND="sys-libs/pam - virtual/ssh" - -src_prepare() { - epatch "${FILESDIR}/${P}-doublefree.patch" - eautoreconf -} - -src_configure() { - econf \ - "
[gentoo-commits] repo/gentoo:master commit in: net-misc/networkmanager-openvpn/
commit: b33ea937becc6b6a0b7cf3050698b03058f48c78 Author: Manuel Rüger gentoo org> AuthorDate: Sat May 26 01:12:42 2018 + Commit: Manuel Rüger gentoo org> CommitDate: Sat May 26 01:12:42 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b33ea937 net-misc/networkmanager-openvpn: Version bump to 1.8.4 Package-Manager: Portage-2.3.40, Repoman-2.3.9 net-misc/networkmanager-openvpn/Manifest | 1 + .../networkmanager-openvpn-1.8.4.ebuild| 55 ++ 2 files changed, 56 insertions(+) diff --git a/net-misc/networkmanager-openvpn/Manifest b/net-misc/networkmanager-openvpn/Manifest index 3d2301259dc..8bdde4eb923 100644 --- a/net-misc/networkmanager-openvpn/Manifest +++ b/net-misc/networkmanager-openvpn/Manifest @@ -1 +1,2 @@ DIST NetworkManager-openvpn-1.8.2.tar.xz 540912 BLAKE2B e972a1767fa8219aff2ecfb18c69d309f0147db16ff08db2fe50f9154defea2e805142ac38e77854902f430390f0909c692110a8bcb2e18cec27ce9661a1510c SHA512 c17f0de1d41df00b3359ab2dcce939574104b1272896bd403834b426c3fc3f177a5d2ea9cb5a1b98268f63095bc14c5904bd98c2fcf23481e78d8b8acb667927 +DIST NetworkManager-openvpn-1.8.4.tar.xz 547984 BLAKE2B bb637c824414b792c6272a1791a3e99ebb3c0fc7145b01b4fa6c9b0bc2d8a0879141b7e2d1f3157b8b05366e3d0410370d3523dbe0d2daf069e4f73cdd9cf84c SHA512 dd0381175fa6a88259726a848ac46b7a5ee07a797cbe34382d3f4c0b6d8ad3807d224bfbb53cff793f4854558484d77fc7c6a6970e5364d39d058da5c35eac5a diff --git a/net-misc/networkmanager-openvpn/networkmanager-openvpn-1.8.4.ebuild b/net-misc/networkmanager-openvpn/networkmanager-openvpn-1.8.4.ebuild new file mode 100644 index 000..6a30526364c --- /dev/null +++ b/net-misc/networkmanager-openvpn/networkmanager-openvpn-1.8.4.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +GNOME_ORG_MODULE="NetworkManager-${PN##*-}" + +inherit gnome2 user + +DESCRIPTION="NetworkManager OpenVPN plugin" +HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager"; + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="gtk test" + +RDEPEND=" + >=dev-libs/glib-2.32:2 + >=net-misc/networkmanager-1.7.0:= + >=net-vpn/openvpn-2.1 + gtk? ( + >=app-crypt/libsecret-0.18 + >=gnome-extra/nm-applet-1.7.0 + >=x11-libs/gtk+-3.4:3 + ) +" +DEPEND="${RDEPEND} + sys-devel/gettext + >=dev-util/intltool-0.35 + virtual/pkgconfig +" + +pkg_setup() { + enewgroup nm-openvpn + enewuser nm-openvpn -1 -1 -1 nm-openvpn +} + +src_prepare() { + # Test will fail if the machine doesn't have a particular locale installed + # FAIL: (tls-import-data) unexpected 'ca' secret value, upstream bug #742708 + sed '/test_non_utf8_import (plugin, test_dir)/ d' \ + -i properties/tests/test-import-export.c || die "sed failed" + + gnome2_src_prepare +} + +src_configure() { + # --localstatedir=/var needed per bug #536248 + gnome2_src_configure \ + --localstatedir=/var \ + --disable-more-warnings \ + --disable-static \ + --with-dist-version=Gentoo \ + $(use_with gtk gnome) +}
[gentoo-commits] repo/gentoo:master commit in: dev-python/docker-py/
commit: 2e0699cd4f2f77a0f7bea8220230592aaccba023 Author: Manuel Rüger gentoo org> AuthorDate: Sat May 26 01:18:04 2018 + Commit: Manuel Rüger gentoo org> CommitDate: Sat May 26 01:18:04 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e0699cd dev-python/docker-py: Version bump to 3.3.0 Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-python/docker-py/Manifest | 1 + dev-python/docker-py/docker-py-3.3.0.ebuild | 50 + 2 files changed, 51 insertions(+) diff --git a/dev-python/docker-py/Manifest b/dev-python/docker-py/Manifest index 7b031d3b0aa..ba0d97550a1 100644 --- a/dev-python/docker-py/Manifest +++ b/dev-python/docker-py/Manifest @@ -3,3 +3,4 @@ DIST docker-py-2.7.0.tar.gz 196369 BLAKE2B dd181dbf32f5afda06e748cb49f15d5fc6ff4 DIST docker-py-3.1.4.tar.gz 202064 BLAKE2B 6ee3672cd1f62cd570d3939805465698879d747215b8424bc4edd79253c5bc25d193582dbfa6aa423f9b183d477486d6347f65ac7245d601d3f1fe2a1fd124ed SHA512 78081010ce4027156d3b4ebafee6023f387ee8e7ee4d77ee671a16a3fcb646fca91c5c36cfbaf94157f8a524a3e1a09b9cbfabf304e278a3c1e0132df5d13d13 DIST docker-py-3.2.0.tar.gz 205546 BLAKE2B 0784408a0373721e30cc101bf9e20e93af4721ace3841721b851efa49874163a1684239db6a56b7e91e83ad77eb4290dde61f53d70d6656853cedaff95da90b2 SHA512 fa36b65a047aec6dbec07b2ee5ac895b333acc804e372b5b3ccae587045fa03613f4083c66cd6289e188fd78c6f7012c4252e9bbf9f30a980fb94f32efba03b7 DIST docker-py-3.2.1.tar.gz 205815 BLAKE2B fc9b23f57f64e3d25a922b896619f3d03780d446f03adb987c6a203df2c41fbc03b202cc8dac30392158dd0da4d600372b6af284d785179c0cf58f7048735da3 SHA512 c66f960bd507d8c4ed99e56480c24d11b13cf49420eee2f0934cede7516a8a9b984e5e0540a1d82d830768d3a5f021861255d55e7bd1b984072cd6e48a44 +DIST docker-py-3.3.0.tar.gz 206523 BLAKE2B dd5b1edda8b4c31c3febcedf8352262f090c6232419a0751181c1e765220905b93b50f26091123c31b7193aeb5d94e30f1ba49d114d1c2006a2c60ebaca80865 SHA512 ed2dedd57df344ab576053ac6d458808c67ce5aeeacddb1729ea5ebd0fb741e8f08cf9ed472e28d40eaba3a45f6c26727bff0ab7ece832bc3238f441ed149c05 diff --git a/dev-python/docker-py/docker-py-3.3.0.ebuild b/dev-python/docker-py/docker-py-3.3.0.ebuild new file mode 100644 index 000..8ce9ced0503 --- /dev/null +++ b/dev-python/docker-py/docker-py-3.3.0.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) + +inherit distutils-r1 + +DESCRIPTION="Python client for Docker" +HOMEPAGE="https://github.com/docker/docker-py"; +SRC_URI="https://github.com/docker/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="doc test" + +RDEPEND=" + >=dev-python/docker-pycreds-0.2.3[${PYTHON_USEDEP}] + !~dev-python/requests-2.18.0[${PYTHON_USEDEP}] + >=dev-python/requests-2.14.2[${PYTHON_USEDEP}] + >=dev-python/six-1.4.0[${PYTHON_USEDEP}] + >=dev-python/websocket-client-0.32.0[${PYTHON_USEDEP}] + $(python_gen_cond_dep '>=dev-python/backports-ssl-match-hostname-3.5[${PYTHON_USEDEP}]' 'python2_7' 'python3_4' ) + $(python_gen_cond_dep '>=dev-python/ipaddress-1.0.16[${PYTHON_USEDEP}]' 'python2_7' ) +" +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + ${RDEPEND} + >=dev-python/mock-1.0.1[${PYTHON_USEDEP}] + dev-python/pytest-runner[${PYTHON_USEDEP}] + >=dev-python/pytest-2.9.1[${PYTHON_USEDEP}] + ) + doc? ( + dev-python/recommonmark[${PYTHON_USEDEP}] + >=dev-python/sphinx-1.4.6[${PYTHON_USEDEP}] + ) +" + +python_compile_all() { + if use doc; then + sphinx-build docs html || die "docs failed to build" + HTML_DOCS=( html/. ) + fi +} + +python_test() { + py.test tests/unit/ || die "tests failed under ${EPYTHON}" +}
[gentoo-commits] repo/gentoo:master commit in: dev-python/docker-pycreds/
commit: 29fba7e4d77fa1f90eec37a86f994ce0522be09f Author: Manuel Rüger gentoo org> AuthorDate: Sat May 26 01:17:34 2018 + Commit: Manuel Rüger gentoo org> CommitDate: Sat May 26 01:17:34 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29fba7e4 dev-python/docker-pycreds: Version bump to 0.2.3 Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-python/docker-pycreds/Manifest| 1 + dev-python/docker-pycreds/docker-pycreds-0.2.3.ebuild | 19 +++ 2 files changed, 20 insertions(+) diff --git a/dev-python/docker-pycreds/Manifest b/dev-python/docker-pycreds/Manifest index 51e6bb3f007..c9e99c9f99d 100644 --- a/dev-python/docker-pycreds/Manifest +++ b/dev-python/docker-pycreds/Manifest @@ -1,2 +1,3 @@ DIST docker-pycreds-0.2.1.tar.gz 7555 BLAKE2B e9934a357cb59d995971f0d3b247e6d84efb9c105cbd71792b536fd98088a6e658361e9621360b79a3a1041cea3f063fb66d58124cca717d003f9253e2c8e908 SHA512 04a2dbd00c4e0a02bee13eaf23255e660b0e8640ef4225eff94e6c2391e5ceaf539b373ef932737dbc8eb4383746b374aca5a018a1f21c1eebb2f53160662338 DIST docker-pycreds-0.2.2.tar.gz 7787 BLAKE2B 4ab61bc9bb3f9f75667e7d74212a8e83d214bf2210e200abad593ded94aae8290b216edd28cf2304a8d8d6192faba0b3b764bbfc0f2a446efceaf33558849b84 SHA512 dc0394f7cc34b36b6a7edd61fa5937743da573d14b75f7ed06ca9d5c15a980d7c43252e846e529e2bc799e7f7b72fb1f4ca03b28c2677cc38afbfda16fbbcb55 +DIST docker-pycreds-0.2.3.tar.gz 8220 BLAKE2B db645de930becc3ad6ecb2d6476d36d1845fbaa55b7c6d2d6590e45036713b6e215b189e6ea961c31c0898e8f231943e05abe96a63c15ac43bebf0f7787b954b SHA512 d4199a48a0bda29ac6126ca9a196c0722667a744998b5f81b360066d48f1bd1f9e6e423df2b53e37117316f3dada6fa47e956c6d2c7d90f851d97a434dcb595f diff --git a/dev-python/docker-pycreds/docker-pycreds-0.2.3.ebuild b/dev-python/docker-pycreds/docker-pycreds-0.2.3.ebuild new file mode 100644 index 000..cf82e0ccca5 --- /dev/null +++ b/dev-python/docker-pycreds/docker-pycreds-0.2.3.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) +inherit distutils-r1 + +DESCRIPTION="Python bindings for the docker credentials store API" +HOMEPAGE="https://github.com/shin-/dockerpy-creds/"; +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND=">=dev-python/six-1.4.0[${PYTHON_USEDEP}]"
[gentoo-commits] repo/gentoo:master commit in: net-vpn/openvpn/
commit: c5f422c9b6e6bd7a823d2d493cb9ffdb560413bc Author: Manuel Rüger gentoo org> AuthorDate: Sat May 26 01:18:27 2018 + Commit: Manuel Rüger gentoo org> CommitDate: Sat May 26 01:18:27 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5f422c9 net-vpn/openvpn: Version bump to 2.4.6 Package-Manager: Portage-2.3.40, Repoman-2.3.9 net-vpn/openvpn/Manifest | 1 + net-vpn/openvpn/openvpn-2.4.6.ebuild | 163 +++ 2 files changed, 164 insertions(+) diff --git a/net-vpn/openvpn/Manifest b/net-vpn/openvpn/Manifest index 12a16e3cbd2..a6cf60bfcb5 100644 --- a/net-vpn/openvpn/Manifest +++ b/net-vpn/openvpn/Manifest @@ -1,3 +1,4 @@ DIST mock_msg.h 1356 BLAKE2B da7585cfeee89c0a4d3aa6326de6e2324804ed2a57a0e8bf7c2e51b25a91a8e1fcf9d29bba90fe58e40bf0197793a76fc1e83d8b6d677228cdc5e5333253b1a3 SHA512 930775a5837bc7f97a26817ea028782d555e0e71ba06b04c39941f4c01bbc3ca0a5dc63bcf19dc694e0e746b3a382f22daf6a6373a3443c5afd7398cbaaef6ea DIST openvpn-2.4.4.tar.gz 1390194 BLAKE2B 52aa5b9d301b4b5a14acf685f4d4c520d5ec1aa06755262a8504a4c3bb5ee1b8435f68eb4278f25b900f9ae182f31688ef36e4e839ec7a211ad6aba0f76a897a SHA512 3c3cb77397569e21c5af52b065b081714ce53e2dd0b890c881de8e57220dc23d97cd61eaf5a6bf8e5e89186414c4c93da22a3ab65f4b61f80b04d862b4116e76 DIST openvpn-2.4.5.tar.gz 1430930 BLAKE2B 3ff1324b18fdc24109085a4958401e6d5636b5dc47d30e21392c17410625215bb20473409410ed74995a1b4bb2650ed62217b64b9184805a15ac1ff64a7a8a73 SHA512 a2e3e23bb5374e26d5af393f75686af1962980838c46aee062bc65cc9ffb6f1d20c2c261d1f9abae56ff84a5d22da4a5edb21e39943b33f4a205f809190383c6 +DIST openvpn-2.4.6.tar.gz 1431971 BLAKE2B 1ab0746a845fc56bf738c1730cc187c27f61d5bb763df149640978f0bf87450a01e3e40372265440f1aae4e1c58b6d9a1ee1f2aade970d19fd8e8813e0b487a7 SHA512 cdd70bfd03177bc6cb70d0d614e40389df00816b7097740b4cda9d7bee094d1463fdb5afeaf604c52c7b3167d1edb098a2e095e131a8b9fed0ed8b29da90cbe8 diff --git a/net-vpn/openvpn/openvpn-2.4.6.ebuild b/net-vpn/openvpn/openvpn-2.4.6.ebuild new file mode 100644 index 000..40d83109d70 --- /dev/null +++ b/net-vpn/openvpn/openvpn-2.4.6.ebuild @@ -0,0 +1,163 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit autotools flag-o-matic user systemd linux-info + +DESCRIPTION="Robust and highly flexible tunneling application compatible with many OSes" +SRC_URI="http://swupdate.openvpn.net/community/releases/${P}.tar.gz + test? ( https://raw.githubusercontent.com/OpenVPN/${PN}/v${PV}/tests/unit_tests/${PN}/mock_msg.h )" +HOMEPAGE="http://openvpn.net/"; + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x86-macos" + +IUSE="down-root examples inotify iproute2 libressl lz4 +lzo mbedtls pam" +IUSE+=" pkcs11 +plugins selinux +ssl static systemd test userland_BSD" + +REQUIRED_USE="static? ( !plugins !pkcs11 ) + mbedtls? ( ssl !libressl ) + pkcs11? ( ssl ) + !plugins? ( !pam !down-root ) + inotify? ( plugins )" + +CDEPEND=" + kernel_linux? ( + iproute2? ( sys-apps/iproute2[-minimal] ) + !iproute2? ( >=sys-apps/net-tools-1.60_p20160215155418 ) + ) + pam? ( virtual/pam ) + ssl? ( + !mbedtls? ( + !libressl? ( >=dev-libs/openssl-0.9.8:* ) + libressl? ( dev-libs/libressl ) + ) + mbedtls? ( net-libs/mbedtls ) + ) + lz4? ( app-arch/lz4 ) + lzo? ( >=dev-libs/lzo-1.07 ) + pkcs11? ( >=dev-libs/pkcs11-helper-1.11 ) + systemd? ( sys-apps/systemd )" +DEPEND="${CDEPEND} + test? ( dev-util/cmocka )" +RDEPEND="${CDEPEND} + selinux? ( sec-policy/selinux-openvpn )" + +CONFIG_CHECK="~TUN" + +PATCHES=( + "${FILESDIR}/${PN}-external-cmocka.patch" + "${FILESDIR}/${PN}-2.4.5-libressl-macro-fix.patch" +) + +pkg_setup() { + linux-info_pkg_setup +} + +src_prepare() { + default + eautoreconf + + if use test; then + cp "${DISTDIR}/mock_msg.h" tests/unit_tests/${PN} || die + fi +} + +src_configure() { + use static && append-ldflags -Xcompiler -static + SYSTEMD_UNIT_DIR=$(systemd_get_systemunitdir) \ + TMPFILES_DIR="/usr/lib/tmpfiles.d" \ + IFCONFIG=/bin/ifconfig \ + ROUTE=/bin/route \ + econf \ + $(usex mbedtls '--with-crypto-library=mbedtls' '') \ + $(use_enable inotify async-push) \ + $(use_enable ssl crypto) \ + $(use_enable lz4) \ + $(use_enable lzo) \ + $(use_enable pkcs11) \ + $(use_enable plugins) \ + $(use_enable iproute2) \ + $(use_enable pam plugin-auth-pam) \ + $(use_enable down-root plugin-down-root) \ + $(use_enable tes
[gentoo-commits] repo/gentoo:master commit in: app-admin/keepass/
commit: a1d4e70c995ff21aa40a6904d05c1304c1f27554 Author: Manuel Rüger gentoo org> AuthorDate: Sat May 26 01:09:41 2018 + Commit: Manuel Rüger gentoo org> CommitDate: Sat May 26 01:09:41 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1d4e70c app-admin/keepass: Version bump to 2.39.1 Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-admin/keepass/Manifest | 1 + app-admin/keepass/keepass-2.39.1.ebuild | 111 2 files changed, 112 insertions(+) diff --git a/app-admin/keepass/Manifest b/app-admin/keepass/Manifest index bc4630ab04e..66fb3b02e55 100644 --- a/app-admin/keepass/Manifest +++ b/app-admin/keepass/Manifest @@ -1 +1,2 @@ DIST KeePass-2.38-Source.zip 5091900 BLAKE2B 22e3f7046984204a3e0c4a1c6d8303661048bc0fee4bcdb7999b521d0ed6e5463d89044d2897cfec0c932349cc80a7b43d4c8dfbceb4f2e88041c642e0c0d231 SHA512 42fa7274874d4858da360a6772eb25adbf3a6dafe375093459d9a25903d8c159360ea722e969fe8b330bccf62ee5d381e131bd0ba075445932d8019eee19bf20 +DIST KeePass-2.39.1-Source.zip 5109228 BLAKE2B 0b1214ac70d3d615e029c89abe63176f31e29a3fb800d84b6102220d2d39ebba848e3100e85e6f3d5cd4965461c68798ba880d5b229e8f8e6a20b0d65c2c632c SHA512 9f2b5f6c86b00932f132f8eea24fc35f08c217ed3feb047afe585592761f5297b76140c3154fb519dc5c9137718227a0bc4b6a45d22d1eb0ac95d08c73a70314 diff --git a/app-admin/keepass/keepass-2.39.1.ebuild b/app-admin/keepass/keepass-2.39.1.ebuild new file mode 100644 index 000..e1e03bb233e --- /dev/null +++ b/app-admin/keepass/keepass-2.39.1.ebuild @@ -0,0 +1,111 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit eutils gnome2-utils xdg-utils + +MY_PN="KeePass" +DESCRIPTION="A free, open source, light-weight and easy-to-use password manager" +HOMEPAGE="https://keepass.info/"; +SRC_URI="mirror://sourceforge/${PN}/${MY_PN}-${PV}-Source.zip" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="aot" + +COMMON_DEPEND="dev-lang/mono" +DEPEND="${COMMON_DEPEND} + app-arch/unzip +" +RDEPEND="${COMMON_DEPEND} + dev-dotnet/libgdiplus[cairo] +" + +S="${WORKDIR}" +PATCHES=( "${FILESDIR}/${PN}-2.36-xsl-path-detection.patch" ) + +src_prepare() { + # KeePass looks for some XSL files in the same folder as the executable, + # we prefer to have it in /usr/share/KeePass. Apply patch using base function. + # This XSL file will not be upstreamed since the KeePass creator said that + # including this patch would break the Portable USB version of KeePass + # (which keeps/looks for xsl files in its own folder) + default + + # Switch into build dir so the mono prepration script works correctly + pushd Build || die + source PrepMonoDev.sh || die + popd || die +} + +src_compile() { + # Build with Release target + xbuild /target:KeePass /property:Configuration=Release || die + + # Run Ahead Of Time compiler on the binary + if use aot; then + cp Ext/KeePass.exe.config Build/KeePass/Release/ || die + mono --aot -O=all Build/KeePass/Release/KeePass.exe || die + fi +} + +src_install() { + # Wrapper script to launch mono + make_wrapper "${PN}" "mono /usr/$(get_libdir)/${PN}/KeePass.exe" + + # Some XSL files + insinto "/usr/share/${PN}/XSL" + doins Ext/XSL/* + + insinto "/usr/$(get_libdir)/${PN}" + exeinto "/usr/$(get_libdir)/${PN}" + + doins Ext/KeePass.exe.config + + # Default configuration, simply says to use user-specific configuration + doins Ext/KeePass.config.xml + + # The actual executable + doexe Build/KeePass/Release/KeePass.exe + + # Copy the AOT compilation result + if use aot; then + doexe Build/KeePass/Release/KeePass.exe.so + fi + + # Prepare the icons + newicon -s 256 Ext/Icons_04_CB/Finals/plockb.png "${PN}.png" + newicon -s 256 -t gnome -c mimetypes Ext/Icons_04_CB/Finals/plockb.png "application-x-${PN}2.png" + + # Create a desktop entry and associate it with the KeePass mime type + make_desktop_entry "${PN}" "${MY_PN}" "${PN}" "System;Security" "MimeType=application/x-keepass2;" + + # MIME descriptor for .kdbx files + insinto /usr/share/mime/packages + doins "${FILESDIR}/${PN}.xml" + + # sed, because patching this really sucks + sed -i 's/mono/mono --verify-all/g' "${D}/usr/bin/keepass" || die +} + +pkg_postinst() { + gnome2_icon_cache_update + xdg_desktop_database_update + xdg_mimeinfo_database_update + + if ! has_version x11-misc/xdotool ; then + elog "Optional dependencies:" + elog " x11-misc/xdotool (enables autotype/autofill)" + fi + + elog "Some systems may experience issues with copy and paste operations." + elog "If you encounter this, please install x11-misc/xse
[gentoo-commits] repo/gentoo:master commit in: kde-plasma/drkonqi/
commit: 87a4e1b4a64a4bd11f0b66933284fdc5bdced868 Author: Thomas Deutschmann gentoo org> AuthorDate: Sat May 26 00:47:43 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Sat May 26 00:52:04 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87a4e1b4 kde-plasma/drkonqi: x86 stable (bug #654740) Package-Manager: Portage-2.3.40, Repoman-2.3.9 kde-plasma/drkonqi/drkonqi-5.12.5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kde-plasma/drkonqi/drkonqi-5.12.5.ebuild b/kde-plasma/drkonqi/drkonqi-5.12.5.ebuild index b0aab719fb3..e28cb720083 100644 --- a/kde-plasma/drkonqi/drkonqi-5.12.5.ebuild +++ b/kde-plasma/drkonqi/drkonqi-5.12.5.ebuild @@ -7,7 +7,7 @@ inherit kde5 DESCRIPTION="Plasma crash handler, gives the user feedback if a program crashed" -KEYWORDS="amd64 ~arm ~arm64 ~x86" +KEYWORDS="amd64 ~arm ~arm64 x86" IUSE="X" COMMON_DEPEND="
[gentoo-commits] repo/gentoo:master commit in: kde-plasma/breeze-plymouth/
commit: 2c679e6d5438d8d123fd50c0983d4ea951229fb2 Author: Thomas Deutschmann gentoo org> AuthorDate: Sat May 26 00:49:45 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Sat May 26 00:52:12 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c679e6d kde-plasma/breeze-plymouth: x86 stable (bug #654740) Package-Manager: Portage-2.3.40, Repoman-2.3.9 kde-plasma/breeze-plymouth/breeze-plymouth-5.12.5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kde-plasma/breeze-plymouth/breeze-plymouth-5.12.5.ebuild b/kde-plasma/breeze-plymouth/breeze-plymouth-5.12.5.ebuild index 9226b4d25a5..864289fc692 100644 --- a/kde-plasma/breeze-plymouth/breeze-plymouth-5.12.5.ebuild +++ b/kde-plasma/breeze-plymouth/breeze-plymouth-5.12.5.ebuild @@ -8,7 +8,7 @@ inherit kde5 DESCRIPTION="Breeze theme for Plymouth" LICENSE="GPL-2+ GPL-3+" -KEYWORDS="amd64 ~arm ~x86" +KEYWORDS="amd64 ~arm x86" IUSE="" RDEPEND="sys-boot/plymouth"
[gentoo-commits] repo/gentoo:master commit in: kde-plasma/kwayland-integration/
commit: 336982ae852e5a6d8a1cca81fd686f1ebb753013 Author: Thomas Deutschmann gentoo org> AuthorDate: Sat May 26 00:48:56 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Sat May 26 00:52:09 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=336982ae kde-plasma/kwayland-integration: x86 stable (bug #654740) Package-Manager: Portage-2.3.40, Repoman-2.3.9 kde-plasma/kwayland-integration/kwayland-integration-5.12.5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kde-plasma/kwayland-integration/kwayland-integration-5.12.5.ebuild b/kde-plasma/kwayland-integration/kwayland-integration-5.12.5.ebuild index a1dc65141b5..c6abb17c4d7 100644 --- a/kde-plasma/kwayland-integration/kwayland-integration-5.12.5.ebuild +++ b/kde-plasma/kwayland-integration/kwayland-integration-5.12.5.ebuild @@ -9,7 +9,7 @@ DESCRIPTION="Provides integration plugins for various KDE frameworks for Wayland HOMEPAGE="https://cgit.kde.org/kwayland-integration.git"; LICENSE="LGPL-2.1" -KEYWORDS="amd64 ~arm ~x86" +KEYWORDS="amd64 ~arm x86" IUSE="" DEPEND="
[gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-nm/
commit: 077c324de4932fa0be6dbd6144e3055330b61b62 Author: Thomas Deutschmann gentoo org> AuthorDate: Sat May 26 00:45:37 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Sat May 26 00:51:57 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=077c324d kde-plasma/plasma-nm: x86 stable (bug #654740) Package-Manager: Portage-2.3.40, Repoman-2.3.9 kde-plasma/plasma-nm/plasma-nm-5.12.5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kde-plasma/plasma-nm/plasma-nm-5.12.5.ebuild b/kde-plasma/plasma-nm/plasma-nm-5.12.5.ebuild index c6f2e64279b..72bb68a3501 100644 --- a/kde-plasma/plasma-nm/plasma-nm-5.12.5.ebuild +++ b/kde-plasma/plasma-nm/plasma-nm-5.12.5.ebuild @@ -7,7 +7,7 @@ inherit kde5 DESCRIPTION="KDE Plasma applet for NetworkManager" LICENSE="GPL-2 LGPL-2.1" -KEYWORDS="amd64 ~arm ~x86" +KEYWORDS="amd64 ~arm x86" IUSE="modemmanager openconnect teamd" DEPEND="
[gentoo-commits] repo/gentoo:master commit in: kde-plasma/libksysguard/
commit: 6436f55bcb5149bade800eed76abf68088237476 Author: Thomas Deutschmann gentoo org> AuthorDate: Sat May 26 00:50:39 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Sat May 26 00:52:16 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6436f55b kde-plasma/libksysguard: x86 stable (bug #654740) Package-Manager: Portage-2.3.40, Repoman-2.3.9 kde-plasma/libksysguard/libksysguard-5.12.5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kde-plasma/libksysguard/libksysguard-5.12.5.ebuild b/kde-plasma/libksysguard/libksysguard-5.12.5.ebuild index 3537ea33b1b..af43768d315 100644 --- a/kde-plasma/libksysguard/libksysguard-5.12.5.ebuild +++ b/kde-plasma/libksysguard/libksysguard-5.12.5.ebuild @@ -9,7 +9,7 @@ inherit kde5 DESCRIPTION="Task management and system monitoring library" LICENSE="LGPL-2+" -KEYWORDS="amd64 ~arm ~arm64 ~x86" +KEYWORDS="amd64 ~arm ~arm64 x86" IUSE="+detailedmemory minimal X" COMMON_DEPEND="
[gentoo-commits] repo/gentoo:master commit in: kde-plasma/kscreenlocker/
commit: 9d79264f2e8a6e77e65e23a746275f8f4e0e6407 Author: Thomas Deutschmann gentoo org> AuthorDate: Sat May 26 00:42:30 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Sat May 26 00:51:45 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d79264f kde-plasma/kscreenlocker: x86 stable (bug #654740) Package-Manager: Portage-2.3.40, Repoman-2.3.9 kde-plasma/kscreenlocker/kscreenlocker-5.12.5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kde-plasma/kscreenlocker/kscreenlocker-5.12.5.ebuild b/kde-plasma/kscreenlocker/kscreenlocker-5.12.5.ebuild index dce870dfad0..a28a5f5d642 100644 --- a/kde-plasma/kscreenlocker/kscreenlocker-5.12.5.ebuild +++ b/kde-plasma/kscreenlocker/kscreenlocker-5.12.5.ebuild @@ -8,7 +8,7 @@ VIRTUALX_REQUIRED="test" inherit kde5 pam DESCRIPTION="Library and components for secure lock screen architecture" -KEYWORDS="amd64 ~arm ~arm64 ~x86" +KEYWORDS="amd64 ~arm ~arm64 x86" IUSE="consolekit +pam seccomp" REQUIRED_USE="seccomp? ( pam )"
[gentoo-commits] repo/gentoo:master commit in: kde-plasma/kde-gtk-config/
commit: e92cc16ecde7f2ed45fab54b859cb1b97b1d754a Author: Thomas Deutschmann gentoo org> AuthorDate: Sat May 26 00:49:23 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Sat May 26 00:52:11 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e92cc16e kde-plasma/kde-gtk-config: x86 stable (bug #654740) Package-Manager: Portage-2.3.40, Repoman-2.3.9 kde-plasma/kde-gtk-config/kde-gtk-config-5.12.5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kde-plasma/kde-gtk-config/kde-gtk-config-5.12.5.ebuild b/kde-plasma/kde-gtk-config/kde-gtk-config-5.12.5.ebuild index 8275ffca8ae..e43fd2b58da 100644 --- a/kde-plasma/kde-gtk-config/kde-gtk-config-5.12.5.ebuild +++ b/kde-plasma/kde-gtk-config/kde-gtk-config-5.12.5.ebuild @@ -10,7 +10,7 @@ inherit kde5 DESCRIPTION="KDE Plasma systemsettings kcm to set GTK application look&feel" HOMEPAGE="https://cgit.kde.org/kde-gtk-config.git"; LICENSE="GPL-3" -KEYWORDS="amd64 ~arm ~x86" +KEYWORDS="amd64 ~arm x86" IUSE="" DEPEND="
[gentoo-commits] repo/gentoo:master commit in: kde-plasma/plymouth-kcm/
commit: 6e2121f68df14f85200780c4280417b6ccf9067c Author: Thomas Deutschmann gentoo org> AuthorDate: Sat May 26 00:40:40 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Sat May 26 00:51:39 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e2121f6 kde-plasma/plymouth-kcm: x86 stable (bug #654740) Package-Manager: Portage-2.3.40, Repoman-2.3.9 kde-plasma/plymouth-kcm/plymouth-kcm-5.12.5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kde-plasma/plymouth-kcm/plymouth-kcm-5.12.5.ebuild b/kde-plasma/plymouth-kcm/plymouth-kcm-5.12.5.ebuild index 9a2464b8bfe..50b8077c877 100644 --- a/kde-plasma/plymouth-kcm/plymouth-kcm-5.12.5.ebuild +++ b/kde-plasma/plymouth-kcm/plymouth-kcm-5.12.5.ebuild @@ -10,7 +10,7 @@ DESCRIPTION="KDE Plasma control module for Plymouth" HOMEPAGE="https://cgit.kde.org/plymouth-kcm.git"; LICENSE="GPL-2+" -KEYWORDS="amd64 ~arm ~x86" +KEYWORDS="amd64 ~arm x86" IUSE="" DEPEND="
[gentoo-commits] repo/gentoo:master commit in: kde-plasma/kwin/
commit: 8e797987070e899661d95d1db52928bf29ef1c66 Author: Thomas Deutschmann gentoo org> AuthorDate: Sat May 26 00:43:32 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Sat May 26 00:51:49 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e797987 kde-plasma/kwin: x86 stable (bug #654740) Package-Manager: Portage-2.3.40, Repoman-2.3.9 kde-plasma/kwin/kwin-5.12.5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kde-plasma/kwin/kwin-5.12.5.ebuild b/kde-plasma/kwin/kwin-5.12.5.ebuild index 93d07a79efe..2541c24b248 100644 --- a/kde-plasma/kwin/kwin-5.12.5.ebuild +++ b/kde-plasma/kwin/kwin-5.12.5.ebuild @@ -10,7 +10,7 @@ inherit kde5 DESCRIPTION="KDE window manager" LICENSE="GPL-2+" -KEYWORDS="amd64 ~arm ~arm64 ~x86" +KEYWORDS="amd64 ~arm ~arm64 x86" IUSE="caps gles2 multimedia" COMMON_DEPEND="
[gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-sdk/
commit: a1411c5008726901c158fab629aed63f657607a7 Author: Thomas Deutschmann gentoo org> AuthorDate: Sat May 26 00:48:08 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Sat May 26 00:52:06 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1411c50 kde-plasma/plasma-sdk: x86 stable (bug #654740) Package-Manager: Portage-2.3.40, Repoman-2.3.9 kde-plasma/plasma-sdk/plasma-sdk-5.12.5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kde-plasma/plasma-sdk/plasma-sdk-5.12.5.ebuild b/kde-plasma/plasma-sdk/plasma-sdk-5.12.5.ebuild index 938a80331c3..6a4aedfcc5d 100644 --- a/kde-plasma/plasma-sdk/plasma-sdk-5.12.5.ebuild +++ b/kde-plasma/plasma-sdk/plasma-sdk-5.12.5.ebuild @@ -8,7 +8,7 @@ VIRTUALX_REQUIRED="test" inherit kde5 DESCRIPTION="Useful applications for Plasma development" -KEYWORDS="amd64 ~arm ~x86" +KEYWORDS="amd64 ~arm x86" IUSE="" DEPEND="
[gentoo-commits] repo/gentoo:master commit in: kde-plasma/kactivitymanagerd/
commit: 019fd13bbfb5513c7ee123eb9b26ac100c347e1a Author: Thomas Deutschmann gentoo org> AuthorDate: Sat May 26 00:39:49 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Sat May 26 00:51:35 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=019fd13b kde-plasma/kactivitymanagerd: x86 stable (bug #654740) Package-Manager: Portage-2.3.40, Repoman-2.3.9 kde-plasma/kactivitymanagerd/kactivitymanagerd-5.12.5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kde-plasma/kactivitymanagerd/kactivitymanagerd-5.12.5.ebuild b/kde-plasma/kactivitymanagerd/kactivitymanagerd-5.12.5.ebuild index ab265cc3840..44c92ce623f 100644 --- a/kde-plasma/kactivitymanagerd/kactivitymanagerd-5.12.5.ebuild +++ b/kde-plasma/kactivitymanagerd/kactivitymanagerd-5.12.5.ebuild @@ -7,7 +7,7 @@ inherit kde5 DESCRIPTION="System service to manage user's activities, track the usage patterns etc." LICENSE="|| ( GPL-2 GPL-3 )" -KEYWORDS="amd64 ~arm ~arm64 ~x86" +KEYWORDS="amd64 ~arm ~arm64 x86" IUSE="" COMMON_DEPEND="
[gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-integration/
commit: 62d17ae0763e675a49e655941cf64bc5c4591399 Author: Thomas Deutschmann gentoo org> AuthorDate: Sat May 26 00:41:08 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Sat May 26 00:51:40 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62d17ae0 kde-plasma/plasma-integration: x86 stable (bug #654740) Package-Manager: Portage-2.3.40, Repoman-2.3.9 kde-plasma/plasma-integration/plasma-integration-5.12.5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kde-plasma/plasma-integration/plasma-integration-5.12.5.ebuild b/kde-plasma/plasma-integration/plasma-integration-5.12.5.ebuild index 0bcde9e80a8..aed44959768 100644 --- a/kde-plasma/plasma-integration/plasma-integration-5.12.5.ebuild +++ b/kde-plasma/plasma-integration/plasma-integration-5.12.5.ebuild @@ -8,7 +8,7 @@ inherit kde5 DESCRIPTION="Qt Platform Theme integration plugins for the Plasma workspaces" LICENSE="LGPL-2+" -KEYWORDS="amd64 ~arm ~arm64 ~x86" +KEYWORDS="amd64 ~arm ~arm64 x86" IUSE="" DEPEND="
[gentoo-commits] repo/gentoo:master commit in: kde-plasma/ksysguard/
commit: fb1369397d951248f41abc4ddeef656db501f57f Author: Thomas Deutschmann gentoo org> AuthorDate: Sat May 26 00:43:57 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Sat May 26 00:51:50 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb136939 kde-plasma/ksysguard: x86 stable (bug #654740) Package-Manager: Portage-2.3.40, Repoman-2.3.9 kde-plasma/ksysguard/ksysguard-5.12.5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kde-plasma/ksysguard/ksysguard-5.12.5.ebuild b/kde-plasma/ksysguard/ksysguard-5.12.5.ebuild index fb9d94970d2..71b63220f1f 100644 --- a/kde-plasma/ksysguard/ksysguard-5.12.5.ebuild +++ b/kde-plasma/ksysguard/ksysguard-5.12.5.ebuild @@ -8,7 +8,7 @@ inherit kde5 DESCRIPTION="Network-enabled task manager and system monitor" LICENSE="GPL-2+" -KEYWORDS="amd64 ~arm ~arm64 ~x86" +KEYWORDS="amd64 ~arm ~arm64 x86" IUSE="lm_sensors" DEPEND="
[gentoo-commits] repo/gentoo:master commit in: kde-plasma/kinfocenter/
commit: 0d345825ea0a6ee7ee10f2eb867220e85f190f74 Author: Thomas Deutschmann gentoo org> AuthorDate: Sat May 26 00:46:29 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Sat May 26 00:52:01 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d345825 kde-plasma/kinfocenter: x86 stable (bug #654740) Package-Manager: Portage-2.3.40, Repoman-2.3.9 kde-plasma/kinfocenter/kinfocenter-5.12.5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kde-plasma/kinfocenter/kinfocenter-5.12.5.ebuild b/kde-plasma/kinfocenter/kinfocenter-5.12.5.ebuild index 3c5e72ce192..6b359cfb845 100644 --- a/kde-plasma/kinfocenter/kinfocenter-5.12.5.ebuild +++ b/kde-plasma/kinfocenter/kinfocenter-5.12.5.ebuild @@ -9,7 +9,7 @@ inherit kde5 DESCRIPTION="A utility that provides information about a computer system" HOMEPAGE="https://www.kde.org/applications/system/kinfocenter/"; SRC_URI+=" https://www.gentoo.org/assets/img/logo/gentoo-3d-small.png -> glogo-small.png" -KEYWORDS="amd64 ~arm ~x86" +KEYWORDS="amd64 ~arm x86" IUSE="gles2 ieee1394 +opengl +pci wayland" REQUIRED_USE="wayland? ( || ( gles2 opengl ) )"
[gentoo-commits] repo/gentoo:master commit in: kde-plasma/kwallet-pam/
commit: 9f9d8ef6ee1e597a50c3b95a1858098b3056f20f Author: Thomas Deutschmann gentoo org> AuthorDate: Sat May 26 00:50:11 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Sat May 26 00:52:14 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f9d8ef6 kde-plasma/kwallet-pam: x86 stable (bug #654740) Package-Manager: Portage-2.3.40, Repoman-2.3.9 kde-plasma/kwallet-pam/kwallet-pam-5.12.5-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kde-plasma/kwallet-pam/kwallet-pam-5.12.5-r1.ebuild b/kde-plasma/kwallet-pam/kwallet-pam-5.12.5-r1.ebuild index 19d63b3fd91..a9886b94ab5 100644 --- a/kde-plasma/kwallet-pam/kwallet-pam-5.12.5-r1.ebuild +++ b/kde-plasma/kwallet-pam/kwallet-pam-5.12.5-r1.ebuild @@ -7,7 +7,7 @@ inherit kde5 DESCRIPTION="KWallet PAM module to not enter password again" LICENSE="LGPL-2.1" -KEYWORDS="amd64 ~arm ~x86" +KEYWORDS="amd64 ~arm x86" IUSE="" DEPEND="
[gentoo-commits] repo/gentoo:master commit in: kde-plasma/kdeplasma-addons/
commit: dd26dbc23ca781852e0ac8804e41e8433e896285 Author: Thomas Deutschmann gentoo org> AuthorDate: Sat May 26 00:41:36 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Sat May 26 00:51:42 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd26dbc2 kde-plasma/kdeplasma-addons: x86 stable (bug #654740) Package-Manager: Portage-2.3.40, Repoman-2.3.9 kde-plasma/kdeplasma-addons/kdeplasma-addons-5.12.5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kde-plasma/kdeplasma-addons/kdeplasma-addons-5.12.5.ebuild b/kde-plasma/kdeplasma-addons/kdeplasma-addons-5.12.5.ebuild index c5a35bb23d3..dbcb15f5cd7 100644 --- a/kde-plasma/kdeplasma-addons/kdeplasma-addons-5.12.5.ebuild +++ b/kde-plasma/kdeplasma-addons/kdeplasma-addons-5.12.5.ebuild @@ -7,7 +7,7 @@ inherit kde5 DESCRIPTION="Extra Plasma applets and engines" LICENSE="GPL-2 LGPL-2" -KEYWORDS="amd64 ~arm ~x86" +KEYWORDS="amd64 ~arm x86" IUSE="dictionary share" DEPEND="
[gentoo-commits] repo/gentoo:master commit in: kde-plasma/libkscreen/
commit: 03bfea024b6a0d2a86a44fb5bcae289aed78373f Author: Thomas Deutschmann gentoo org> AuthorDate: Sat May 26 00:45:07 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Sat May 26 00:51:56 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03bfea02 kde-plasma/libkscreen: x86 stable (bug #654740) Package-Manager: Portage-2.3.40, Repoman-2.3.9 kde-plasma/libkscreen/libkscreen-5.12.5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kde-plasma/libkscreen/libkscreen-5.12.5.ebuild b/kde-plasma/libkscreen/libkscreen-5.12.5.ebuild index f6323a3abc7..2b448835024 100644 --- a/kde-plasma/libkscreen/libkscreen-5.12.5.ebuild +++ b/kde-plasma/libkscreen/libkscreen-5.12.5.ebuild @@ -9,7 +9,7 @@ inherit kde5 DESCRIPTION="Plasma screen management library" SLOT="5/7" -KEYWORDS="amd64 ~arm ~arm64 ~x86" +KEYWORDS="amd64 ~arm ~arm64 x86" IUSE="" DEPEND="
[gentoo-commits] repo/gentoo:master commit in: kde-plasma/breeze-grub/
commit: 8ad12e68d971a8606d8c3da9fd689c3b9b7db4ec Author: Thomas Deutschmann gentoo org> AuthorDate: Sat May 26 00:42:51 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Sat May 26 00:51:47 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ad12e68 kde-plasma/breeze-grub: x86 stable (bug #654740) Package-Manager: Portage-2.3.40, Repoman-2.3.9 kde-plasma/breeze-grub/breeze-grub-5.12.5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kde-plasma/breeze-grub/breeze-grub-5.12.5.ebuild b/kde-plasma/breeze-grub/breeze-grub-5.12.5.ebuild index 693b198a4c1..8d76ae6cf10 100644 --- a/kde-plasma/breeze-grub/breeze-grub-5.12.5.ebuild +++ b/kde-plasma/breeze-grub/breeze-grub-5.12.5.ebuild @@ -9,7 +9,7 @@ inherit kde5 DESCRIPTION="Breeze theme for GRUB" LICENSE="GPL-3+" -KEYWORDS="amd64 ~arm ~x86" +KEYWORDS="amd64 ~arm x86" IUSE="" src_prepare() {
[gentoo-commits] repo/gentoo:master commit in: kde-plasma/kdecoration/
commit: e0b39f4a70b4c8dd3b83e1e5dea9a7f089216dc1 Author: Thomas Deutschmann gentoo org> AuthorDate: Sat May 26 00:46:00 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Sat May 26 00:51:59 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0b39f4a kde-plasma/kdecoration: x86 stable (bug #654740) Package-Manager: Portage-2.3.40, Repoman-2.3.9 kde-plasma/kdecoration/kdecoration-5.12.5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kde-plasma/kdecoration/kdecoration-5.12.5.ebuild b/kde-plasma/kdecoration/kdecoration-5.12.5.ebuild index f758b538ee7..25ef3325803 100644 --- a/kde-plasma/kdecoration/kdecoration-5.12.5.ebuild +++ b/kde-plasma/kdecoration/kdecoration-5.12.5.ebuild @@ -9,7 +9,7 @@ inherit kde5 DESCRIPTION="Plugin based library to create window decorations" LICENSE="|| ( LGPL-2.1 LGPL-3 )" -KEYWORDS="amd64 ~arm ~arm64 ~x86" +KEYWORDS="amd64 ~arm ~arm64 x86" IUSE="" DEPEND="$(add_qt_dep qtgui)"
[gentoo-commits] repo/gentoo:master commit in: kde-plasma/kmenuedit/
commit: d657309e89f07c69eaab6464c293b842f14b17f3 Author: Thomas Deutschmann gentoo org> AuthorDate: Sat May 26 00:44:43 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Sat May 26 00:51:54 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d657309e kde-plasma/kmenuedit: x86 stable (bug #654740) Package-Manager: Portage-2.3.40, Repoman-2.3.9 kde-plasma/kmenuedit/kmenuedit-5.12.5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kde-plasma/kmenuedit/kmenuedit-5.12.5.ebuild b/kde-plasma/kmenuedit/kmenuedit-5.12.5.ebuild index b47a90c0a25..f8a9158860f 100644 --- a/kde-plasma/kmenuedit/kmenuedit-5.12.5.ebuild +++ b/kde-plasma/kmenuedit/kmenuedit-5.12.5.ebuild @@ -8,7 +8,7 @@ inherit kde5 DESCRIPTION="KDE Plasma menu editor" HOMEPAGE="https://cgit.kde.org/kmenuedit.git"; -KEYWORDS="amd64 ~arm ~x86" +KEYWORDS="amd64 ~arm x86" IUSE="+hotkeys" DEPEND="
[gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-workspace/
commit: 18500f9a1e10eeff0cf2ee163566355051739c96 Author: Thomas Deutschmann gentoo org> AuthorDate: Sat May 26 00:47:17 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Sat May 26 00:52:02 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18500f9a kde-plasma/plasma-workspace: x86 stable (bug #654740) Package-Manager: Portage-2.3.40, Repoman-2.3.9 kde-plasma/plasma-workspace/plasma-workspace-5.12.5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kde-plasma/plasma-workspace/plasma-workspace-5.12.5.ebuild b/kde-plasma/plasma-workspace/plasma-workspace-5.12.5.ebuild index bcf446915c5..dc44f14bff6 100644 --- a/kde-plasma/plasma-workspace/plasma-workspace-5.12.5.ebuild +++ b/kde-plasma/plasma-workspace/plasma-workspace-5.12.5.ebuild @@ -9,7 +9,7 @@ VIRTUALX_REQUIRED="test" inherit kde5 qmake-utils DESCRIPTION="KDE Plasma workspace" -KEYWORDS="amd64 ~arm ~arm64 ~x86" +KEYWORDS="amd64 ~arm ~arm64 x86" IUSE="appstream +calendar geolocation gps prison qalculate +semantic-desktop systemd" REQUIRED_USE="gps? ( geolocation )"
[gentoo-commits] repo/gentoo:master commit in: kde-plasma/polkit-kde-agent/
commit: f1d54d2acc3064b53d9a77648005653c78bb12ed Author: Thomas Deutschmann gentoo org> AuthorDate: Sat May 26 00:42:00 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Sat May 26 00:51:44 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1d54d2a kde-plasma/polkit-kde-agent: x86 stable (bug #654740) Package-Manager: Portage-2.3.40, Repoman-2.3.9 kde-plasma/polkit-kde-agent/polkit-kde-agent-5.12.5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kde-plasma/polkit-kde-agent/polkit-kde-agent-5.12.5.ebuild b/kde-plasma/polkit-kde-agent/polkit-kde-agent-5.12.5.ebuild index 050895c51ba..e324bf4c42d 100644 --- a/kde-plasma/polkit-kde-agent/polkit-kde-agent-5.12.5.ebuild +++ b/kde-plasma/polkit-kde-agent/polkit-kde-agent-5.12.5.ebuild @@ -8,7 +8,7 @@ inherit kde5 DESCRIPTION="PolKit agent module for KDE Plasma" HOMEPAGE="https://www.kde.org"; -KEYWORDS="amd64 ~arm ~arm64 ~x86" +KEYWORDS="amd64 ~arm ~arm64 x86" IUSE="" DEPEND="
[gentoo-commits] repo/gentoo:master commit in: kde-plasma/breeze/
commit: d3a2b048cb2656c171508862fe5bfb3b64c12467 Author: Thomas Deutschmann gentoo org> AuthorDate: Sat May 26 00:48:33 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Sat May 26 00:52:07 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3a2b048 kde-plasma/breeze: x86 stable (bug #654740) Package-Manager: Portage-2.3.40, Repoman-2.3.9 kde-plasma/breeze/breeze-5.12.5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kde-plasma/breeze/breeze-5.12.5.ebuild b/kde-plasma/breeze/breeze-5.12.5.ebuild index b72fcfb3069..d02c0fea41e 100644 --- a/kde-plasma/breeze/breeze-5.12.5.ebuild +++ b/kde-plasma/breeze/breeze-5.12.5.ebuild @@ -7,7 +7,7 @@ inherit kde5 DESCRIPTION="Breeze visual style for the Plasma desktop" HOMEPAGE="https://cgit.kde.org/breeze.git"; -KEYWORDS="amd64 ~arm ~arm64 ~x86" +KEYWORDS="amd64 ~arm ~arm64 x86" IUSE="wayland X" COMMON_DEPEND="
[gentoo-commits] repo/gentoo:master commit in: kde-plasma/breeze-gtk/
commit: 7c3a32151f8d8a0d1df60d1eec77c6243338532d Author: Thomas Deutschmann gentoo org> AuthorDate: Sat May 26 00:44:19 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Sat May 26 00:51:52 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c3a3215 kde-plasma/breeze-gtk: x86 stable (bug #654740) Package-Manager: Portage-2.3.40, Repoman-2.3.9 kde-plasma/breeze-gtk/breeze-gtk-5.12.5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kde-plasma/breeze-gtk/breeze-gtk-5.12.5.ebuild b/kde-plasma/breeze-gtk/breeze-gtk-5.12.5.ebuild index 31849d91c19..016965c6d10 100644 --- a/kde-plasma/breeze-gtk/breeze-gtk-5.12.5.ebuild +++ b/kde-plasma/breeze-gtk/breeze-gtk-5.12.5.ebuild @@ -8,5 +8,5 @@ inherit kde5 DESCRIPTION="Official GTK+ port of Plasma's Breeze widget style" HOMEPAGE="https://cgit.kde.org/breeze-gtk.git"; LICENSE="LGPL-2.1+" -KEYWORDS="amd64 ~arm ~x86" +KEYWORDS="amd64 ~arm x86" IUSE=""
[gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-vault/
commit: 115de0090b3398c744d7440ed7ce1d98dcf1362a Author: Thomas Deutschmann gentoo org> AuthorDate: Sat May 26 00:40:14 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Sat May 26 00:51:37 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=115de009 kde-plasma/plasma-vault: x86 stable (bug #654740) Package-Manager: Portage-2.3.40, Repoman-2.3.9 kde-plasma/plasma-vault/plasma-vault-5.12.5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kde-plasma/plasma-vault/plasma-vault-5.12.5.ebuild b/kde-plasma/plasma-vault/plasma-vault-5.12.5.ebuild index 38e6f4f469a..85aaaf65069 100644 --- a/kde-plasma/plasma-vault/plasma-vault-5.12.5.ebuild +++ b/kde-plasma/plasma-vault/plasma-vault-5.12.5.ebuild @@ -9,7 +9,7 @@ DESCRIPTION="Plasma applet and services for creating encrypted vaults" HOMEPAGE+=" https://cukic.co/2017/02/03/vaults-encryption-in-plasma/"; LICENSE="LGPL-3" -KEYWORDS="amd64 ~arm ~x86" +KEYWORDS="amd64 ~arm x86" IUSE="" DEPEND="
[gentoo-commits] repo/gentoo:master commit in: x11-misc/imwheel/
commit: 1aab8e90b1934803ac592df62459dd78d62a1ce9 Author: Aaron Bauman gentoo org> AuthorDate: Fri May 25 23:08:36 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Sat May 26 00:14:38 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1aab8e90 x11-misc/imwheel: bump EAPI and drop eutils Package-Manager: Portage-2.3.40, Repoman-2.3.9 x11-misc/imwheel/imwheel-1.0.0_pre13_p20100827.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/x11-misc/imwheel/imwheel-1.0.0_pre13_p20100827.ebuild b/x11-misc/imwheel/imwheel-1.0.0_pre13_p20100827.ebuild index bef62cd2ef7..87c285d6cef 100644 --- a/x11-misc/imwheel/imwheel-1.0.0_pre13_p20100827.ebuild +++ b/x11-misc/imwheel/imwheel-1.0.0_pre13_p20100827.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="2" +EAPI=6 -inherit autotools eutils +inherit autotools DESCRIPTION="mouse tool for advanced features such as wheels and 3+ buttons" HOMEPAGE="http://imwheel.sourceforge.net/"; @@ -25,6 +25,7 @@ DEPEND="${RDEPEND} >=sys-apps/sed-4" src_prepare() { + default sed -i -e "s:/etc:${D}/etc:g" Makefile.am || die eautoreconf } @@ -38,5 +39,4 @@ src_configure() { src_install() { emake DESTDIR="${D}" install || die "make install failed" - dodoc AUTHORS BUGS ChangeLog EMACS M-BA47 NEWS README TODO }
[gentoo-commits] repo/gentoo:master commit in: x11-misc/fluxter/files/
commit: b7fbb5aea7e6690acb017b9ecfb673a684f69b68 Author: Aaron Bauman gentoo org> AuthorDate: Sat May 26 00:08:31 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Sat May 26 00:14:39 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7fbb5ae x11-misc/fluxter: fix patch for EAPI=6 Package-Manager: Portage-2.3.40, Repoman-2.3.9 x11-misc/fluxter/files/fluxter-0.1.0-asneeded.patch | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/x11-misc/fluxter/files/fluxter-0.1.0-asneeded.patch b/x11-misc/fluxter/files/fluxter-0.1.0-asneeded.patch index 8b68260741e..453aae8a2e2 100644 --- a/x11-misc/fluxter/files/fluxter-0.1.0-asneeded.patch +++ b/x11-misc/fluxter/files/fluxter-0.1.0-asneeded.patch @@ -1,13 +1,13 @@ Makefile.am -+++ Makefile.am +--- a/Makefile.am b/Makefile.am @@ -17,4 +17,4 @@ NETInterface.cc NETInterface.hh \ blackboxstyle.hh EXTRA_DIST = BUGS TODO -fluxter_LDADD = @X_LIBS@ +fluxter_LDADD = @LIBS@ configure.in -+++ configure.in +--- a/configure.in b/configure.in @@ -18,14 +18,12 @@ [ test "$CFLAGS" = "" && CFLAGS="-g -Wall -DDEBUG"
[gentoo-commits] repo/gentoo:master commit in: x11-misc/bblaunch/
commit: aa0693168dc3c742bb198ddc3c760a5cadff9919 Author: Aaron Bauman gentoo org> AuthorDate: Fri May 25 22:57:38 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Sat May 26 00:14:34 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa069316 x11-misc/bblaunch: bump EAPI and drop eutils Package-Manager: Portage-2.3.40, Repoman-2.3.9 Closes: https://github.com/gentoo/gentoo/pull/8588 x11-misc/bblaunch/bblaunch-0.0.3.ebuild | 10 +++--- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/x11-misc/bblaunch/bblaunch-0.0.3.ebuild b/x11-misc/bblaunch/bblaunch-0.0.3.ebuild index bf560a38b57..e83f8e58137 100644 --- a/x11-misc/bblaunch/bblaunch-0.0.3.ebuild +++ b/x11-misc/bblaunch/bblaunch-0.0.3.ebuild @@ -1,8 +1,7 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=2 -inherit eutils +EAPI=7 DESCRIPTION="An application launcher for Blackbox type window managers" SRC_URI="http://www.stud.ifi.uio.no/~steingrd/${P}.tar.gz"; @@ -13,11 +12,8 @@ SLOT="0" KEYWORDS="ppc x86 ~x86-fbsd" IUSE="" -src_prepare() { - epatch "${FILESDIR}"/${P}.patch -} +PATCHES=( "${FILESDIR}/${P}.patch" ) src_install() { emake DESTDIR="${D}" install || die - dodoc README CHANGELOG AUTHORS }
[gentoo-commits] repo/gentoo:master commit in: x11-misc/peksystray/
commit: dae62865bf0f6dda08c573f7412de13a4058a80e Author: Aaron Bauman gentoo org> AuthorDate: Fri May 25 23:05:45 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Sat May 26 00:14:37 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dae62865 x11-misc/peksystray: bump EAPI drop eutils Package-Manager: Portage-2.3.40, Repoman-2.3.9 x11-misc/peksystray/peksystray-0.4.0.ebuild | 11 ++- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/x11-misc/peksystray/peksystray-0.4.0.ebuild b/x11-misc/peksystray/peksystray-0.4.0.ebuild index 6d0c9e545da..96faffa1dae 100644 --- a/x11-misc/peksystray/peksystray-0.4.0.ebuild +++ b/x11-misc/peksystray/peksystray-0.4.0.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=2 -inherit autotools eutils +EAPI=6 +inherit autotools DESCRIPTION="A system tray dockapp for window managers supporting docking" HOMEPAGE="http://peksystray.sourceforge.net/"; @@ -16,12 +16,13 @@ IUSE="" DEPEND="x11-libs/libX11 x11-libs/libXt" +PATCHES=( "${FILESDIR}/${P}-asneeded.patch" ) + src_prepare() { - epatch "${FILESDIR}"/${P}-asneeded.patch + default eautoreconf } src_install() { dobin src/peksystray || die - dodoc AUTHORS ChangeLog NEWS README REFS THANKS TODO }
[gentoo-commits] repo/gentoo:master commit in: x11-misc/fluxter/
commit: ba208f8b77ed4a52490a19f9f22328341eadc1ce Author: Aaron Bauman gentoo org> AuthorDate: Fri May 25 23:00:21 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Sat May 26 00:14:35 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba208f8b x11-misc/fluxter: bump EAPI and drop eutils Package-Manager: Portage-2.3.40, Repoman-2.3.9 x11-misc/fluxter/fluxter-0.1.0.ebuild | 11 ++- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/x11-misc/fluxter/fluxter-0.1.0.ebuild b/x11-misc/fluxter/fluxter-0.1.0.ebuild index 0bcbe35e507..121d5f5ed91 100644 --- a/x11-misc/fluxter/fluxter-0.1.0.ebuild +++ b/x11-misc/fluxter/fluxter-0.1.0.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=2 -inherit autotools eutils +EAPI=6 +inherit autotools DESCRIPTION="workspace pager dockapp, particularly useful with the Fluxbox window manager" HOMEPAGE="http://www.isomedia.com/homes/stevencooper"; @@ -17,8 +17,10 @@ DEPEND="x11-libs/libX11 x11-libs/libSM x11-libs/libICE" +PATCHES=( "${FILESDIR}/${P}-asneeded.patch" ) + src_prepare() { - epatch "${FILESDIR}"/${P}-asneeded.patch + default eautoreconf } @@ -29,5 +31,4 @@ src_configure() { src_install() { emake DESTDIR="${D}" install || die - dodoc AUTHORS BUGS ChangeLog README TODO }
[gentoo-commits] repo/gentoo:master commit in: x11-misc/peksystray/files/
commit: d2df8be1afc0ae9ab974177e590c2c80183d5ebf Author: Aaron Bauman gentoo org> AuthorDate: Sat May 26 00:09:57 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Sat May 26 00:14:41 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2df8be1 x11-misc/peksystray: fix patch for EAPI Package-Manager: Portage-2.3.40, Repoman-2.3.9 x11-misc/peksystray/files/peksystray-0.4.0-asneeded.patch | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/x11-misc/peksystray/files/peksystray-0.4.0-asneeded.patch b/x11-misc/peksystray/files/peksystray-0.4.0-asneeded.patch index 1fc376a8ac9..a21987e3624 100644 --- a/x11-misc/peksystray/files/peksystray-0.4.0-asneeded.patch +++ b/x11-misc/peksystray/files/peksystray-0.4.0-asneeded.patch @@ -1,5 +1,5 @@ configure.in -+++ configure.in +--- a/configure.in b/configure.in @@ -4,6 +4,7 @@ AM_INIT_AUTOMAKE(peksystray, 0.4.0) @@ -23,8 +23,8 @@ AC_OUTPUT([ Makefile src/Makefile.am -+++ src/Makefile.am +--- a/src/Makefile.am b/src/Makefile.am @@ -1,7 +1,4 @@ bin_PROGRAMS = peksystray
[gentoo-commits] repo/gentoo:master commit in: app-text/odt2txt/
commit: 96d13cbaec3be932d47fbadcb2d0a886643602d2 Author: Thomas Deutschmann gentoo org> AuthorDate: Fri May 25 22:40:40 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Fri May 25 23:57:54 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96d13cba app-text/odt2txt: x86 stable (bug #656164) Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-text/odt2txt/odt2txt-0.5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-text/odt2txt/odt2txt-0.5.ebuild b/app-text/odt2txt/odt2txt-0.5.ebuild index 1e9be393bda..be432c0d4fa 100644 --- a/app-text/odt2txt/odt2txt-0.5.ebuild +++ b/app-text/odt2txt/odt2txt-0.5.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/dstosberg/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ia64 ~ppc64 ~sparc ~x86 ~x86-macos" +KEYWORDS="~alpha amd64 ia64 ~ppc64 ~sparc x86 ~x86-macos" IUSE="" RDEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/phonon-vlc/
commit: 0d5d4eaacdff4fcb4e80938ef6cdfbb436cabef6 Author: Thomas Deutschmann gentoo org> AuthorDate: Fri May 25 22:41:49 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Fri May 25 23:57:59 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d5d4eaa media-libs/phonon-vlc: x86 stable (bug #652942) Package-Manager: Portage-2.3.40, Repoman-2.3.9 media-libs/phonon-vlc/phonon-vlc-0.10.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/phonon-vlc/phonon-vlc-0.10.1.ebuild b/media-libs/phonon-vlc/phonon-vlc-0.10.1.ebuild index a54cb1d6d54..13ad0d371f8 100644 --- a/media-libs/phonon-vlc/phonon-vlc-0.10.1.ebuild +++ b/media-libs/phonon-vlc/phonon-vlc-0.10.1.ebuild @@ -7,7 +7,7 @@ MY_PN="phonon-backend-vlc" if [[ ${PV} != ** ]]; then SRC_URI="mirror://kde/stable/phonon/${MY_PN}/${PV}/${MY_PN}-${PV}.tar.xz" - KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" + KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86" else EGIT_REPO_URI=( "git://anongit.kde.org/${PN}" ) inherit git-r3
[gentoo-commits] repo/gentoo:master commit in: net-misc/stunnel/
commit: bd02ebc654919b5a10f2f9f2462c0c5625fa8ebd Author: Thomas Deutschmann gentoo org> AuthorDate: Fri May 25 22:51:51 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Fri May 25 23:58:24 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd02ebc6 net-misc/stunnel: x86 stable (bug #656370) Package-Manager: Portage-2.3.40, Repoman-2.3.9 net-misc/stunnel/stunnel-5.43.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/stunnel/stunnel-5.43.ebuild b/net-misc/stunnel/stunnel-5.43.ebuild index d5432ff3028..62fe9a4b0ce 100644 --- a/net-misc/stunnel/stunnel-5.43.ebuild +++ b/net-misc/stunnel/stunnel-5.43.ebuild @@ -17,7 +17,7 @@ SRC_URI="ftp://ftp.stunnel.org/stunnel/archive/${PV%%.*}.x/${P}.tar.gz LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x86-macos" +KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x86-macos" IUSE="ipv6 libressl selinux stunnel3 tcpd" DEPEND="tcpd? ( sys-apps/tcp-wrappers )
[gentoo-commits] repo/gentoo:master commit in: dev-python/rply/
commit: 8ad8b33e943736239773a574c69f60288f12ed91 Author: Thomas Deutschmann gentoo org> AuthorDate: Fri May 25 22:49:36 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Fri May 25 23:58:19 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ad8b33e dev-python/rply: x86 stable (bug #656390) Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-python/rply/rply-0.7.5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/rply/rply-0.7.5.ebuild b/dev-python/rply/rply-0.7.5.ebuild index cc54268d31f..791f9bab87f 100644 --- a/dev-python/rply/rply-0.7.5.ebuild +++ b/dev-python/rply/rply-0.7.5.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/alex/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 x86" IUSE="test" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
[gentoo-commits] repo/gentoo:master commit in: app-admin/logcheck/
commit: c36a794835362686bee8961f98070e7fbd29 Author: Thomas Deutschmann gentoo org> AuthorDate: Fri May 25 22:36:11 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Fri May 25 23:57:41 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c36a7948 app-admin/logcheck: x86 stable (bug #656160) Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-admin/logcheck/logcheck-1.3.18-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-admin/logcheck/logcheck-1.3.18-r1.ebuild b/app-admin/logcheck/logcheck-1.3.18-r1.ebuild index f7f8569bb21..eae9a3e7327 100644 --- a/app-admin/logcheck/logcheck-1.3.18-r1.ebuild +++ b/app-admin/logcheck/logcheck-1.3.18-r1.ebuild @@ -10,7 +10,7 @@ SRC_URI="mirror://debian/pool/main/l/${PN}/${PN}_${PV}.tar.xz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 ~ppc ~sparc ~x86" +KEYWORDS="amd64 ~ppc ~sparc x86" IUSE="" DEPEND=""
[gentoo-commits] repo/gentoo:master commit in: sys-auth/polkit-qt/
commit: 1e1ce3547e2960b5712065012d69d23fa0ebdfbf Author: Thomas Deutschmann gentoo org> AuthorDate: Fri May 25 22:47:21 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Fri May 25 23:58:12 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e1ce354 sys-auth/polkit-qt: x86 stable (bug #654060) Package-Manager: Portage-2.3.40, Repoman-2.3.9 sys-auth/polkit-qt/polkit-qt-0.112.0_p20160416-r2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-auth/polkit-qt/polkit-qt-0.112.0_p20160416-r2.ebuild b/sys-auth/polkit-qt/polkit-qt-0.112.0_p20160416-r2.ebuild index e909e08a5bf..3e7c64731dc 100644 --- a/sys-auth/polkit-qt/polkit-qt-0.112.0_p20160416-r2.ebuild +++ b/sys-auth/polkit-qt/polkit-qt-0.112.0_p20160416-r2.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://dev.gentoo.org/~kensington/distfiles/${MY_P}.tar.xz"; LICENSE="LGPL-2" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~x86-fbsd" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 x86 ~x86-fbsd" IUSE="debug examples" RDEPEND="
[gentoo-commits] repo/gentoo:master commit in: net-analyzer/sarg/
commit: 396c506a2a645b7483531f701f9481023393690f Author: Thomas Deutschmann gentoo org> AuthorDate: Fri May 25 22:50:28 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Fri May 25 23:58:21 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=396c506a net-analyzer/sarg: x86 stable (bug #653220) Package-Manager: Portage-2.3.40, Repoman-2.3.9 net-analyzer/sarg/sarg-2.3.11-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-analyzer/sarg/sarg-2.3.11-r1.ebuild b/net-analyzer/sarg/sarg-2.3.11-r1.ebuild index 82677c35481..904a6011019 100644 --- a/net-analyzer/sarg/sarg-2.3.11-r1.ebuild +++ b/net-analyzer/sarg/sarg-2.3.11-r1.ebuild @@ -9,7 +9,7 @@ HOMEPAGE="http://sarg.sourceforge.net/"; SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="~amd64 ~ppc x86" SLOT="0" IUSE="+gd ldap pcre"
[gentoo-commits] repo/gentoo:master commit in: app-crypt/qca/
commit: 39f2eaa3317f4adf3b0961e92210640b3d2f5344 Author: Thomas Deutschmann gentoo org> AuthorDate: Fri May 25 22:46:12 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Fri May 25 23:58:10 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39f2eaa3 app-crypt/qca: x86 stable (bug #654060) Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-crypt/qca/qca-2.1.3-r2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-crypt/qca/qca-2.1.3-r2.ebuild b/app-crypt/qca/qca-2.1.3-r2.ebuild index 36d32fac527..14ad2014729 100644 --- a/app-crypt/qca/qca-2.1.3-r2.ebuild +++ b/app-crypt/qca/qca-2.1.3-r2.ebuild @@ -11,7 +11,7 @@ SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz" LICENSE="LGPL-2.1" SLOT="2" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris" IUSE="botan debug doc examples gcrypt gpg libressl logger nss pkcs11 sasl softstore +ssl test"
[gentoo-commits] repo/gentoo:master commit in: media-video/mjpegtools/
commit: e8f63fae8b55586bf59dfd8fa080dcfed5f1f9fe Author: Thomas Deutschmann gentoo org> AuthorDate: Fri May 25 22:38:10 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Fri May 25 23:57:45 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8f63fae media-video/mjpegtools: x86 stable (bug #656180) Package-Manager: Portage-2.3.40, Repoman-2.3.9 media-video/mjpegtools/mjpegtools-2.1.0-r3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-video/mjpegtools/mjpegtools-2.1.0-r3.ebuild b/media-video/mjpegtools/mjpegtools-2.1.0-r3.ebuild index 54dba2b2613..2f24a7391af 100644 --- a/media-video/mjpegtools/mjpegtools-2.1.0-r3.ebuild +++ b/media-video/mjpegtools/mjpegtools-2.1.0-r3.ebuild @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/mjpeg/${P}.tar.gz" LICENSE="GPL-2" SLOT="1" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 sparc ~x86 ~amd64-fbsd" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 sparc x86 ~amd64-fbsd" IUSE="cpu_flags_x86_mmx dv gtk png quicktime sdl sdlgfx static-libs" REQUIRED_USE="sdlgfx? ( sdl )"
[gentoo-commits] repo/gentoo:master commit in: sys-process/procps/
commit: ab900adbff426923366f82cfd225a49af464f6a2 Author: Thomas Deutschmann gentoo org> AuthorDate: Fri May 25 22:44:08 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Fri May 25 23:58:06 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab900adb sys-process/procps: x86 stable (bug #656022) Package-Manager: Portage-2.3.40, Repoman-2.3.9 sys-process/procps/procps-3.3.15-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-process/procps/procps-3.3.15-r1.ebuild b/sys-process/procps/procps-3.3.15-r1.ebuild index 294aca285e1..b9400e536c0 100644 --- a/sys-process/procps/procps-3.3.15-r1.ebuild +++ b/sys-process/procps/procps-3.3.15-r1.ebuild @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}-ng/${PN}-ng-${PV}.tar.xz" LICENSE="GPL-2" SLOT="0/6" # libprocps.so -KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux" IUSE="elogind +kill modern-top +ncurses nls selinux static-libs systemd test unicode" COMMON_DEPEND="
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/yaml-cpp/
commit: 788dfa59d7cfd7718dd08d4e70e8ba7d76dc4516 Author: Thomas Deutschmann gentoo org> AuthorDate: Fri May 25 22:54:58 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Fri May 25 23:58:31 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=788dfa59 dev-cpp/yaml-cpp: x86 stable (bug #614850) Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-cpp/yaml-cpp/yaml-cpp-0.6.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-cpp/yaml-cpp/yaml-cpp-0.6.2.ebuild b/dev-cpp/yaml-cpp/yaml-cpp-0.6.2.ebuild index 608eab3ed61..fec9c44151f 100644 --- a/dev-cpp/yaml-cpp/yaml-cpp-0.6.2.ebuild +++ b/dev-cpp/yaml-cpp/yaml-cpp-0.6.2.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/jbeder/${PN}/archive/${P}.tar.gz"; LICENSE="MIT" SLOT="0/0.6" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux" IUSE="test" DEPEND="test? ( dev-cpp/gtest )"
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/mocha/
commit: d874a967f805330c51b907e97b91e5adf19f8775 Author: Thomas Deutschmann gentoo org> AuthorDate: Fri May 25 22:39:39 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Fri May 25 23:57:50 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d874a967 dev-ruby/mocha: x86 stable (bug #656206) Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-ruby/mocha/mocha-1.4.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-ruby/mocha/mocha-1.4.0.ebuild b/dev-ruby/mocha/mocha-1.4.0.ebuild index 34d978e3fd3..fe41dd219a7 100644 --- a/dev-ruby/mocha/mocha-1.4.0.ebuild +++ b/dev-ruby/mocha/mocha-1.4.0.ebuild @@ -18,7 +18,7 @@ HOMEPAGE="http://gofreerange.com/mocha/docs/"; LICENSE="MIT" SLOT="1.0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~sparc x86" IUSE="" ruby_add_bdepend "
[gentoo-commits] repo/gentoo:master commit in: dev-util/qstlink2/
commit: ced2d73d1b4e16e5aa03b97d666faba7fb521de5 Author: Thomas Deutschmann gentoo org> AuthorDate: Fri May 25 22:49:03 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Fri May 25 23:58:17 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ced2d73d dev-util/qstlink2: x86 stable (bug #644378) Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-util/qstlink2/qstlink2-1.2.3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-util/qstlink2/qstlink2-1.2.3.ebuild b/dev-util/qstlink2/qstlink2-1.2.3.ebuild index 7899e17f8d8..680f49ef0ce 100644 --- a/dev-util/qstlink2/qstlink2-1.2.3.ebuild +++ b/dev-util/qstlink2/qstlink2-1.2.3.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/fpoussin/QStlink2/archive/v${PV}.tar.gz -> ${P}.tar. LICENSE="GPL-3" SLOT="0" -KEYWORDS="amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="" RDEPEND="
[gentoo-commits] repo/gentoo:master commit in: sci-geosciences/qgis/
commit: 97fec39d83c1fe581c0f0ffec195e1ea90f79e71 Author: Thomas Deutschmann gentoo org> AuthorDate: Fri May 25 22:48:36 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Fri May 25 23:58:15 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97fec39d sci-geosciences/qgis: x86 stable (bug #656090) Package-Manager: Portage-2.3.40, Repoman-2.3.9 sci-geosciences/qgis/qgis-3.0.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sci-geosciences/qgis/qgis-3.0.2.ebuild b/sci-geosciences/qgis/qgis-3.0.2.ebuild index ee1a3c82ea4..cd2fb0afe94 100644 --- a/sci-geosciences/qgis/qgis-3.0.2.ebuild +++ b/sci-geosciences/qgis/qgis-3.0.2.ebuild @@ -10,7 +10,7 @@ QT_MIN_VER="5.9.4" if [[ ${PV} != * ]]; then SRC_URI="https://qgis.org/downloads/${P}.tar.bz2 examples? ( https://qgis.org/downloads/data/qgis_sample_data.tar.gz -> qgis_sample_data-2.8.14.tar.gz )" - KEYWORDS="amd64 ~x86" + KEYWORDS="amd64 x86" else GIT_ECLASS="git-r3" EGIT_REPO_URI="https://github.com/${PN}/${PN^^}.git";
[gentoo-commits] repo/gentoo:master commit in: media-fonts/terminus-font/
commit: 040b0943558f735bccbd63b90dcd6b0c826ce630 Author: Thomas Deutschmann gentoo org> AuthorDate: Fri May 25 22:52:54 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Fri May 25 23:58:26 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=040b0943 media-fonts/terminus-font: x86 stable (bug #656362) Package-Manager: Portage-2.3.40, Repoman-2.3.9 media-fonts/terminus-font/terminus-font-4.46.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-fonts/terminus-font/terminus-font-4.46.ebuild b/media-fonts/terminus-font/terminus-font-4.46.ebuild index 6fe4b660df3..cf5b4034470 100644 --- a/media-fonts/terminus-font/terminus-font-4.46.ebuild +++ b/media-fonts/terminus-font/terminus-font-4.46.ebuild @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}/${P}.tar.gz" LICENSE="OFL-1.1 GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" IUSE="a-like-o +center-tilde distinct-l +pcf +pcf-unicode-only +psf quote ru-dv +ru-g ru-i ru-k"
[gentoo-commits] repo/gentoo:master commit in: app-misc/vifm/
commit: 33cab97282ae22e4cad269ce6fd56e6f3c0ee6ef Author: Thomas Deutschmann gentoo org> AuthorDate: Fri May 25 22:53:49 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Fri May 25 23:58:28 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33cab972 app-misc/vifm: x86 stable (bug #656356) Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-misc/vifm/vifm-0.9.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-misc/vifm/vifm-0.9.1.ebuild b/app-misc/vifm/vifm-0.9.1.ebuild index 55fc501b520..bc79abdf6fc 100644 --- a/app-misc/vifm/vifm-0.9.1.ebuild +++ b/app-misc/vifm/vifm-0.9.1.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/vifm/${MY_P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc x86" IUSE="X developer +extended-keys gtk +magic vim vim-syntax" DEPEND="
[gentoo-commits] repo/gentoo:master commit in: media-libs/libbluray/
commit: a2134c44a7b9ba66be9c3dff3b1c630dd577df92 Author: Thomas Deutschmann gentoo org> AuthorDate: Fri May 25 22:34:35 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Fri May 25 23:57:36 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2134c44 media-libs/libbluray: x86 stable (bug #655336) Package-Manager: Portage-2.3.40, Repoman-2.3.9 media-libs/libbluray/libbluray-1.0.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/libbluray/libbluray-1.0.2.ebuild b/media-libs/libbluray/libbluray-1.0.2.ebuild index 955ed347c52..6fa860eb5b2 100644 --- a/media-libs/libbluray/libbluray-1.0.2.ebuild +++ b/media-libs/libbluray/libbluray-1.0.2.ebuild @@ -7,7 +7,7 @@ if [[ "${PV#}" != "${PV}" ]] ; then inherit git-r3 EGIT_REPO_URI="https://git.videolan.org/git/libbluray.git"; else - KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 sparc ~x86 ~amd64-fbsd ~x86-fbsd" + KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd" SRC_URI="https://downloads.videolan.org/pub/videolan/libbluray/${PV}/${P}.tar.bz2"; fi
[gentoo-commits] repo/gentoo:master commit in: media-libs/opencolorio/
commit: 183d729874ad5221e7841c277e15f5a3e427f7cb Author: Thomas Deutschmann gentoo org> AuthorDate: Fri May 25 22:41:08 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Fri May 25 23:57:57 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=183d7298 media-libs/opencolorio: x86 stable (bug #656196) Package-Manager: Portage-2.3.40, Repoman-2.3.9 media-libs/opencolorio/opencolorio-1.1.0-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/opencolorio/opencolorio-1.1.0-r1.ebuild b/media-libs/opencolorio/opencolorio-1.1.0-r1.ebuild index 8343ce9ccba..9fba65db598 100644 --- a/media-libs/opencolorio/opencolorio-1.1.0-r1.ebuild +++ b/media-libs/opencolorio/opencolorio-1.1.0-r1.ebuild @@ -15,7 +15,7 @@ SRC_URI="https://github.com/imageworks/OpenColorIO/archive/v${PV}.tar.gz -> ${P} LICENSE="BSD" SLOT="0" -KEYWORDS="amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="cpu_flags_x86_sse2 doc opengl python static-libs test" REQUIRED_USE=" doc? ( python )
[gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/
commit: b8da7c0bf7b63ae1601d0324b47f11276918b6e2 Author: Thomas Deutschmann gentoo org> AuthorDate: Fri May 25 22:37:12 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Fri May 25 23:57:43 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8da7c0b net-libs/loudmouth: x86 stable (bug #653156) Package-Manager: Portage-2.3.40, Repoman-2.3.9 net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild b/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild index 76ee3d61471..4971d04dd28 100644 --- a/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild +++ b/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://github.com/mcabber/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos" +KEYWORDS="~alpha ~amd64 ~arm ia64 ~ppc ~ppc64 ~sparc x86 ~ppc-macos" IUSE="asyncns ssl openssl static-libs test"
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/instantiator/
commit: 739df4c0ef660db20bab55d2271f1dd821da8f7a Author: Thomas Deutschmann gentoo org> AuthorDate: Fri May 25 22:40:17 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Fri May 25 23:57:52 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=739df4c0 dev-ruby/instantiator: x86 stable (bug #656206) Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-ruby/instantiator/instantiator-0.0.7.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-ruby/instantiator/instantiator-0.0.7.ebuild b/dev-ruby/instantiator/instantiator-0.0.7.ebuild index 41c9c4b429a..5e5f654341c 100644 --- a/dev-ruby/instantiator/instantiator-0.0.7.ebuild +++ b/dev-ruby/instantiator/instantiator-0.0.7.ebuild @@ -15,7 +15,7 @@ HOMEPAGE="https://github.com/floehopper/introspection"; LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ~ppc ~ppc64 ~sparc x86" IUSE="" ruby_add_rdepend "dev-ruby/blankslate:*"
[gentoo-commits] repo/gentoo:master commit in: media-libs/phonon/
commit: c554137a1c506b921444d55b97d1bbcbca416cef Author: Thomas Deutschmann gentoo org> AuthorDate: Fri May 25 22:42:39 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Fri May 25 23:58:01 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c554137a media-libs/phonon: x86 stable (bug #652942) Package-Manager: Portage-2.3.40, Repoman-2.3.9 media-libs/phonon/phonon-4.10.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/phonon/phonon-4.10.1.ebuild b/media-libs/phonon/phonon-4.10.1.ebuild index 93ca3f635de..58820d1003c 100644 --- a/media-libs/phonon/phonon-4.10.1.ebuild +++ b/media-libs/phonon/phonon-4.10.1.ebuild @@ -5,7 +5,7 @@ EAPI=6 if [[ ${PV} != ** ]]; then SRC_URI="mirror://kde/stable/phonon/${PV}/${P}.tar.xz" - KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-fbsd" + KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86 ~amd64-fbsd" else EGIT_REPO_URI=( "git://anongit.kde.org/${PN}" ) inherit git-r3
[gentoo-commits] repo/gentoo:master commit in: dev-libs/libdbusmenu-qt/
commit: d633dc92647aa7505934d3bd7a4f565af5d5 Author: Thomas Deutschmann gentoo org> AuthorDate: Fri May 25 22:45:01 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Fri May 25 23:58:08 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d633 dev-libs/libdbusmenu-qt: x86 stable (bug #654060) Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-libs/libdbusmenu-qt/libdbusmenu-qt-0.9.3_pre20160218-r2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-libs/libdbusmenu-qt/libdbusmenu-qt-0.9.3_pre20160218-r2.ebuild b/dev-libs/libdbusmenu-qt/libdbusmenu-qt-0.9.3_pre20160218-r2.ebuild index 96ef62ac05b..78b684330cd 100644 --- a/dev-libs/libdbusmenu-qt/libdbusmenu-qt-0.9.3_pre20160218-r2.ebuild +++ b/dev-libs/libdbusmenu-qt/libdbusmenu-qt-0.9.3_pre20160218-r2.ebuild @@ -13,7 +13,7 @@ HOMEPAGE="https://launchpad.net/libdbusmenu-qt/"; if [[ ${PV} != * ]] ; then MY_PV=${PV/_pre/+16.04.} SRC_URI="https://launchpad.net/ubuntu/+archive/primary/+files/${PN}_${MY_PV}.orig.tar.gz"; - KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" + KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux" fi LICENSE="LGPL-2"
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/introspection/
commit: d1dc4fe2f49dac134c5dbf5f969c1eeb6ce8a80b Author: Thomas Deutschmann gentoo org> AuthorDate: Fri May 25 22:38:52 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Fri May 25 23:57:48 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1dc4fe2 dev-ruby/introspection: x86 stable (bug #656206) Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-ruby/introspection/introspection-0.0.4.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-ruby/introspection/introspection-0.0.4.ebuild b/dev-ruby/introspection/introspection-0.0.4.ebuild index 61335595af1..1850849247f 100644 --- a/dev-ruby/introspection/introspection-0.0.4.ebuild +++ b/dev-ruby/introspection/introspection-0.0.4.ebuild @@ -16,7 +16,7 @@ HOMEPAGE="http://jamesmead.org/"; LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~sparc x86" IUSE="" ruby_add_rdepend ">=dev-ruby/metaclass-0.0.1"
[gentoo-commits] repo/gentoo:master commit in: media-libs/phonon-gstreamer/
commit: 6deb1195757e964e13bb8219e70c100d7a78cb84 Author: Thomas Deutschmann gentoo org> AuthorDate: Fri May 25 22:43:27 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Fri May 25 23:58:03 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6deb1195 media-libs/phonon-gstreamer: x86 stable (bug #652942) Package-Manager: Portage-2.3.40, Repoman-2.3.9 media-libs/phonon-gstreamer/phonon-gstreamer-4.9.0-r2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/phonon-gstreamer/phonon-gstreamer-4.9.0-r2.ebuild b/media-libs/phonon-gstreamer/phonon-gstreamer-4.9.0-r2.ebuild index 0a4c3229123..ace0c03d2dc 100644 --- a/media-libs/phonon-gstreamer/phonon-gstreamer-4.9.0-r2.ebuild +++ b/media-libs/phonon-gstreamer/phonon-gstreamer-4.9.0-r2.ebuild @@ -8,7 +8,7 @@ MY_P=${MY_PN}-${PV} if [[ ${PV} != ** ]]; then SRC_URI="mirror://kde/stable/phonon/${MY_PN}/${PV}/${MY_P}.tar.xz" - KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-fbsd" + KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86 ~amd64-fbsd" else EGIT_REPO_URI=( "git://anongit.kde.org/${PN}" ) inherit git-r3
[gentoo-commits] repo/gentoo:master commit in: media-libs/libraw/
commit: addd2ad09a74b97c31a70fa2b98d444959122b69 Author: Thomas Deutschmann gentoo org> AuthorDate: Fri May 25 22:35:30 2018 + Commit: Thomas Deutschmann gentoo org> CommitDate: Fri May 25 23:57:39 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=addd2ad0 media-libs/libraw: x86 stable (bug #654376) Package-Manager: Portage-2.3.40, Repoman-2.3.9 media-libs/libraw/libraw-0.18.11.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/libraw/libraw-0.18.11.ebuild b/media-libs/libraw/libraw-0.18.11.ebuild index ffecd964bdf..676dbd1dc24 100644 --- a/media-libs/libraw/libraw-0.18.11.ebuild +++ b/media-libs/libraw/libraw-0.18.11.ebuild @@ -22,7 +22,7 @@ SRC_URI="https://www.libraw.org/data/${MY_P}.tar.gz LICENSE="LGPL-2.1 CDDL demosaic? ( GPL-2 GPL-3 )" SLOT="0/16" # subslot = libraw soname version -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux" IUSE="demosaic examples jpeg jpeg2k +lcms openmp" RDEPEND="jpeg? ( >=virtual/jpeg-0-r2:0[${MULTILIB_USEDEP}] )
[gentoo-commits] repo/gentoo:master commit in: dev-python/python-efl/
commit: d851525459f876f2af1dfb71be117b0f20c7900f Author: Joonas Niilola gmail com> AuthorDate: Wed May 23 07:49:41 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Fri May 25 22:50:23 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8515254 dev-python/python-efl: bump to 1.20.0 Add myself as proxy-maintainer. Bump EAPI to 7. Clean metadata.xml file. Package-Manager: Portage[mgorny]-2.3.36.1 Closes: https://github.com/gentoo/gentoo/pull/8530 dev-python/python-efl/Manifest | 1 + dev-python/python-efl/metadata.xml | 16 +- dev-python/python-efl/python-efl-1.20.0.ebuild | 71 ++ 3 files changed, 87 insertions(+), 1 deletion(-) diff --git a/dev-python/python-efl/Manifest b/dev-python/python-efl/Manifest index e40092e6ee1..59edc28ae69 100644 --- a/dev-python/python-efl/Manifest +++ b/dev-python/python-efl/Manifest @@ -1,2 +1,3 @@ DIST python-efl-1.17.0.tar.xz 8835228 BLAKE2B 0380bfa9ac8a9553bf3c1fa4ed7f4c65007e75ebe159427aff12cfd7359859b42e56b5ebcb02af97324696c3addbc9fe31b4dbe23d4dbe2574b056e4e6d23297 SHA512 ff610dbacf72853b6c8fb1dcd41451f97156845efeb67a2d5d6c35d9b20c0f024c145a26a579f675bc2ad5844c23e58d8b21a09374aa195174f1a0c6316c0de4 DIST python-efl-1.18.0.tar.xz 8927932 BLAKE2B c1b41e1316c78fc42cf21541aba386dce799f1ec26549dda8c547de4cf47870a100070bb442d21116ce956808bcf948eba96601343512ba61fb1fc472e2574be SHA512 c1fc8d4129c2ac61b367ad373ad676a60cf0aed4c9150104d7e81bf464c44a3a5ae555d2298bbf1bdf6a3d6ba3b7d934af390e36755a1516972db2675d920c2b +DIST python-efl-1.20.0.tar.xz 8984492 BLAKE2B 526c530d7b8dad59d01cefcbb6cad2710cb46c3b62eb0b2746c3552c8c1ef42cc4691072fbbce16a8a3b6ea9d6b5651a3645ca739e569a0f4db3dd9988ddf2fa SHA512 93d8d6c990350074e203bf3632d92b5253f34f318b30357b05ab5ab73a9f6656d127ff0c1831af1bf7c736822b483c12754085e52103eb0e41362cc28db5651f diff --git a/dev-python/python-efl/metadata.xml b/dev-python/python-efl/metadata.xml index 6f49eba8f49..1b546bfae6d 100644 --- a/dev-python/python-efl/metadata.xml +++ b/dev-python/python-efl/metadata.xml @@ -1,5 +1,19 @@ http://www.gentoo.org/dtd/metadata.dtd";> - + +juip...@gmail.com + + +proxy-ma...@gentoo.org +Proxy Maintainers + + +EFL is a collection of libraries for handling many common tasks a +developer man have such as data structures, communication, +rendering, widgets and more. + +PYTHON-EFL are the python bindings for the whole EFL stack (eo, +evas, ecore, edje, emotion, ethumb and elementary) + diff --git a/dev-python/python-efl/python-efl-1.20.0.ebuild b/dev-python/python-efl/python-efl-1.20.0.ebuild new file mode 100644 index 000..0fc4a05569d --- /dev/null +++ b/dev-python/python-efl/python-efl-1.20.0.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) +inherit distutils-r1 + +DESCRIPTION="Python bindings for Enlightenment Foundation Libraries" +HOMEPAGE="https://phab.enlightenment.org/w/projects/python_bindings_for_efl/"; +SRC_URI="https://download.enlightenment.org/rel/bindings/python/${P}.tar.xz"; + +LICENSE="|| ( GPL-3 LGPL-3 )" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc test" + +RDEPEND=" + >=dev-libs/efl-${PV} + >=dev-python/dbus-python-0.83[${PYTHON_USEDEP}] +" +DEPEND=" + ${RDEPEND} + >=dev-python/cython-0.21[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] + virtual/pkgconfig + doc? ( + >=dev-python/sphinx-1.1[${PYTHON_USEDEP}] + media-gfx/graphviz + ) +" + +python_compile_all() { + if use doc ; then + # Point sphinx to right location with built sources + sed -i 's|"../build/"+d|"'"${BUILD_DIR}"'/lib"|g' doc/conf.py || die + + esetup.py build_doc --build-dir "${S}"/build/doc/ + fi + + distutils-r1_python_compile +} + +python_test() { + cd "${S}"/tests || die + + # Tries to download a file under /tmp + rm -f ecore/test_09_file_download.py || die + + # Tries to use that file which failed to download + rm -f ecore/test_10_file_monitor.py || die + + # Seems to need connman up and running during the test, requires: + # net-misc/connman + # dev-libs/efl[connman] + rm -f ecore/test_11_con.py || die + + # Test fails because of deleted files above + sed -i 's/>= 13/>= 10/g' ecore/test_08_exe.py || die + + sed -i 's:verbosity=1:verbosity=3:' 00_run_all_tests.py || die + ${PYTHON} 00_run_all_tests.py --verbose || die "Tests failed with ${EPYTHON}" +} + +python_install_all() { + if use doc ; then + local HTML_DOCS=( build/doc/html/. ) + fi + + distutils-r1_python_install_all +}
[gentoo-commits] repo/gentoo:master commit in: www-apps/redmine/, www-apps/redmine/files/
commit: 5a985b6fcfa46754da0d7dda4f797996dcd7f037 Author: Azamat H. Hackimov gmail com> AuthorDate: Wed May 23 20:08:00 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Fri May 25 22:37:45 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a985b6f www-apps/redmine: version bump and fixes Bump to 3.3.7 and 3.4.5. Branch 3.2 support officialy discontinued, removed. Fixes dependencies conflict that prevents launch application with installed but unsupported gems (#645178 and #652880). Fixes bug when fresh installation cannot be configured. Closes: https://bugs.gentoo.org/645178 Closes: https://bugs.gentoo.org/652880 Package-Manager: Portage-2.3.24, Repoman-2.3.6 Closes: https://github.com/gentoo/gentoo/pull/8539 www-apps/redmine/Manifest | 5 +- .../files/redmine-3.3.7_gemfile_versions.patch | 44 + .../redmine/files/redmine-3.4.3_requires.patch | 73 --- .../files/redmine-3.4.5_gemfile_versions.patch | 41 www-apps/redmine/redmine-3.3.6.ebuild | 219 - .../{redmine-3.4.4.ebuild => redmine-3.3.7.ebuild} | 36 ++-- .../{redmine-3.2.9.ebuild => redmine-3.4.5.ebuild} | 39 ++-- 7 files changed, 130 insertions(+), 327 deletions(-) diff --git a/www-apps/redmine/Manifest b/www-apps/redmine/Manifest index dcdd6872f69..1aa30ff383b 100644 --- a/www-apps/redmine/Manifest +++ b/www-apps/redmine/Manifest @@ -1,3 +1,2 @@ -DIST redmine-3.2.9.tar.gz 2323496 BLAKE2B 16aea04eb8ddbe4e97c95f32ad62c6d4332001d7e8afd0b842cc76f9f1dc492b48e1dc11c8017d635520fbccda6e1044ced8be51435f76db24482bf11b5a70d9 SHA512 0bf52f245a08cfd66acd07fe849cfac7a460623cdd223806ee4c7c9c3d17753c1b2914b7bcdc950ac8401ba54c004e399f685d38946b1fbe2259943de5a18f29 -DIST redmine-3.3.6.tar.gz 2371226 BLAKE2B 4465ebf3d89e05a8c53f59b11190eb290a152e6a11fa08a210c471f31e857c3c21ce226e056be00dec7bb5b78172a929969e1cae410ce9fa4c03280c427e99c2 SHA512 124a74ccbe9e66460551fc0fb9feb5b72237c5b711463b467d665fd973c3f0a06f63c708629716401f9997cefc1c3060d64c73917d3791750b4340eda69c8848 -DIST redmine-3.4.4.tar.gz 2447358 BLAKE2B 1f5aa3c24e06029405c59e25c40c98975c98033658ee0a931b1fa95aac54187c7304f1fc0af4805226c4ef274f85d89856ffd39b0ae71b34337865d3e8f4a5ff SHA512 12bf58aade53c02df35b33ba62dd97091a5ac20fb6ef0f16f046226c62dfd06fc6cea5451f433e00f7d9374c158035dc5457d65eafdbc35a90199c5a407c7752 +DIST redmine-3.3.7.tar.gz 2371716 BLAKE2B ba1e69419f846ddfa64ddc5d26fda281737501374f5aa4f79bd4c59d5b483a28070103fcc3bf2f3b1c7a4ce96dbfb32d1d1f21a6b74603aad012ce7d2e3373ed SHA512 ba106eb60587788ccd3162274a9a40d2876324e647e1fcafce0f943d69d8fe216a01cbddb2a5a4f41f64513e287c80ec518cef5a6033b3d1ed0bcfc7d1cfcc64 +DIST redmine-3.4.5.tar.gz 2448231 BLAKE2B 11041cbac5ea33c060a90ead56a4479cc86137bad5e0eb6135aed8d19059aedecd2ad52ac63ae6fcc5bbb13b5fc4cd6b05695aff484932b55ad5d7be7cb1c396 SHA512 c77ce76fadb7a2b9d6daf77a898a1ca4d7b1c8616922e89026cee3a4b0ec1a187a746f0a054b786663e78fc510596be736fd12d71b2569f6a63a21d0c95a05ad diff --git a/www-apps/redmine/files/redmine-3.3.7_gemfile_versions.patch b/www-apps/redmine/files/redmine-3.3.7_gemfile_versions.patch new file mode 100644 index 000..c338a385a96 --- /dev/null +++ b/www-apps/redmine/files/redmine-3.3.7_gemfile_versions.patch @@ -0,0 +1,44 @@ +diff -Nuar redmine-3.3.7.orig/Gemfile redmine-3.3.7/Gemfile +--- redmine-3.3.7.orig/Gemfile 2018-05-23 22:36:30.756737829 +0300 redmine-3.3.7/Gemfile 2018-05-23 22:42:20.227720874 +0300 +@@ -4,7 +4,7 @@ + abort "Redmine requires Bundler 1.5.0 or higher (you're using #{Bundler::VERSION}).\nPlease update with 'gem update bundler'." + end + +-gem "rails", "4.2.7.1" ++gem "rails", "~> 4.2.10" + gem "addressable", "2.4.0" if RUBY_VERSION < "2.0" + if RUBY_VERSION < "2.1" + gem "public_suffix", (RUBY_VERSION < "2.0" ? "~> 1.4" : "~> 2.0.5") +@@ -17,12 +17,12 @@ + gem "protected_attributes" + gem "actionpack-action_caching" + gem "actionpack-xml_parser" +-gem "roadie-rails", "~> 1.1.1" +-gem "roadie", "~> 3.2.1" ++gem "roadie-rails", "~> 1.2.1" ++gem "roadie", "~> 3.3" + gem "mimemagic" +-gem "mail", "~> 2.6.4" ++gem "mail", "~> 2.7" + +-gem "nokogiri", (RUBY_VERSION >= "2.1" ? "~> 1.7.2" : "~> 1.6.8") ++gem "nokogiri", (RUBY_VERSION >= "2.1" ? "~> 1.8.2" : "~> 1.6.8") + gem "i18n", "~> 0.7.0" + gem "ffi", "1.9.14", :platforms => :mingw if RUBY_VERSION < "2.0" + +@@ -35,12 +35,12 @@ + + # Optional gem for LDAP authentication + group :ldap do +- gem "net-ldap", "~> 0.12.0" ++ gem "net-ldap", "~> 0.16.0" + end + + # Optional gem for OpenID authentication + group :openid do +- gem "ruby-openid", "~> 2.3.0", :require => "openid" ++ gem "ruby-openid", "~> 2.7.0", :require => "openid" + gem "rack-openid" + end + diff --git a/www-apps/redmine/files/redmine-3.4.3_requires.patch b/www-apps/redmine/files/redmine-3.4.3_requires.patch deleted file mode 100644 index 338f627adb1..000 --- a/www-apps/redmine/files/redmine-3.4.3_requires.patch ++
[gentoo-commits] repo/gentoo:master commit in: x11-wm/enlightenment/
commit: f0d1ff473f5252f74253af61a9bf55f294a983a8 Author: Joonas Niilola gmail com> AuthorDate: Mon May 21 06:53:28 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Fri May 25 22:35:23 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0d1ff47 x11-wm/enlightenment: call xdg_environment_reset in 0.22.3 Reported by Toralf Förster. Closes: https://bugs.gentoo.org/656146 Package-Manager: Portage[mgorny]-2.3.36.1 Closes: https://github.com/gentoo/gentoo/pull/8505 x11-wm/enlightenment/enlightenment-0.22.3.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/x11-wm/enlightenment/enlightenment-0.22.3.ebuild b/x11-wm/enlightenment/enlightenment-0.22.3.ebuild index e295cfe0e85..b637ae9ab61 100644 --- a/x11-wm/enlightenment/enlightenment-0.22.3.ebuild +++ b/x11-wm/enlightenment/enlightenment-0.22.3.ebuild @@ -68,6 +68,8 @@ DEPEND=" src_prepare() { default + xdg_environment_reset + # fix QA issues with .desktop files find data/desktop/ -type f -exec sed -i 's|OnlyShowIn=Enlightenment|OnlyShowIn=X-Enlightenment|g' {} \; || die sed -i 's/Categories=Audio/Categories=AudioVideo/g' src/modules/mixer/emixer.desktop || die
[gentoo-commits] repo/gentoo:master commit in: app-editors/retext/
commit: eedc60c38ab2c8d90e97cd9016d88b508f67ac27 Author: Nils Freydank posteo de> AuthorDate: Thu May 24 19:37:11 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Fri May 25 22:31:50 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eedc60c3 app-editors/retext: Revbump to backport fixes. Closes: https://bugs.gentoo.org/show_bug.cgi?id=626824 Package-Manager: Portage-2.3.38, Repoman-2.3.9 app-editors/retext/retext-7.0.0-r2.ebuild | 62 +++ 1 file changed, 62 insertions(+) diff --git a/app-editors/retext/retext-7.0.0-r2.ebuild b/app-editors/retext/retext-7.0.0-r2.ebuild new file mode 100644 index 000..b69ab5bac2a --- /dev/null +++ b/app-editors/retext/retext-7.0.0-r2.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{4,5,6} ) + +PLOCALES="ca cs cy da de es et eu fr hu it ja pl pt pt_BR ru sk sr sr@latin uk zh_TW" + +inherit distutils-r1 virtualx l10n xdg-utils + +MY_PN="ReText" +MY_P="${MY_PN}-${PV/_/~}" + +DESCRIPTION="Simple editor for Markdown and reStructuredText" +HOMEPAGE="https://github.com/retext-project/retext https://github.com/retext-project/retext/wiki"; + +if [[ ${PV} == * ]] + then + inherit git-r3 + EGIT_REPO_URI="https://github.com/retext-project/retext.git"; + else + SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + KEYWORDS="~amd64 ~x86" + S="${WORKDIR}"/${MY_P} +fi + +LICENSE="GPL-2" +SLOT="0" +IUSE="+spell" + +RDEPEND=" + dev-python/docutils[${PYTHON_USEDEP}] + dev-python/markdown[${PYTHON_USEDEP}] + >=dev-python/markups-2.0[${PYTHON_USEDEP}] + >=dev-python/chardet-2.3[${PYTHON_USEDEP}] + dev-python/pygments[${PYTHON_USEDEP}] + dev-python/PyQt5[gui,network,printsupport,webengine,widgets,${PYTHON_USEDEP}] + spell? ( dev-python/pyenchant[${PYTHON_USEDEP}] ) +" + +remove_locale() { + find "${ED}" -name "retext_${1}.qm" -delete || die "Failed to remove locale ${1}." +} + +python_test() { + virtx esetup.py test +} + +python_install_all() { + distutils-r1_python_install_all + + l10n_for_each_disabled_locale_do remove_locale +} + +pkg_postinst() { + xdg_desktop_database_update +} + +pkg_postrm() { + xdg_desktop_database_update +}
[gentoo-commits] repo/gentoo:master commit in: app-editors/retext/
commit: 4793b7b2677e4b1fa4764c944054b9065d03cad8 Author: Nils Freydank posteo de> AuthorDate: Thu May 24 19:35:06 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Fri May 25 22:31:50 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4793b7b2 app-editors/retext: Avoid duplicate files. Bug: https://bugs.gentoo.org/show_bug.cgi?id=626824 Package-Manager: Portage-2.3.38, Repoman-2.3.9 Closes: https://github.com/gentoo/gentoo/pull/8567 app-editors/retext/retext-.ebuild | 32 +--- 1 file changed, 21 insertions(+), 11 deletions(-) diff --git a/app-editors/retext/retext-.ebuild b/app-editors/retext/retext-.ebuild index 68382ad9fb7..b69ab5bac2a 100644 --- a/app-editors/retext/retext-.ebuild +++ b/app-editors/retext/retext-.ebuild @@ -1,25 +1,32 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=6 PYTHON_COMPAT=( python3_{4,5,6} ) PLOCALES="ca cs cy da de es et eu fr hu it ja pl pt pt_BR ru sk sr sr@latin uk zh_TW" -inherit distutils-r1 virtualx git-r3 l10n +inherit distutils-r1 virtualx l10n xdg-utils MY_PN="ReText" MY_P="${MY_PN}-${PV/_/~}" DESCRIPTION="Simple editor for Markdown and reStructuredText" HOMEPAGE="https://github.com/retext-project/retext https://github.com/retext-project/retext/wiki"; -SRC_URI="" -EGIT_REPO_URI="https://github.com/retext-project/retext.git"; + +if [[ ${PV} == * ]] + then + inherit git-r3 + EGIT_REPO_URI="https://github.com/retext-project/retext.git"; + else + SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + KEYWORDS="~amd64 ~x86" + S="${WORKDIR}"/${MY_P} +fi LICENSE="GPL-2" SLOT="0" -KEYWORDS="" IUSE="+spell" RDEPEND=" @@ -28,7 +35,7 @@ RDEPEND=" >=dev-python/markups-2.0[${PYTHON_USEDEP}] >=dev-python/chardet-2.3[${PYTHON_USEDEP}] dev-python/pygments[${PYTHON_USEDEP}] - dev-python/PyQt5[gui,network,printsupport,webkit,widgets,${PYTHON_USEDEP}] + dev-python/PyQt5[gui,network,printsupport,webengine,widgets,${PYTHON_USEDEP}] spell? ( dev-python/pyenchant[${PYTHON_USEDEP}] ) " @@ -43,10 +50,13 @@ python_test() { python_install_all() { distutils-r1_python_install_all - newicon {icons/,}${PN}.png - newicon {icons/,}${PN}.svg - l10n_for_each_disabled_locale_do remove_locale +} + +pkg_postinst() { + xdg_desktop_database_update +} - make_desktop_entry ${PN} "${MY_PN} Editor" ${PN} "Development;Utility;TextEditor" +pkg_postrm() { + xdg_desktop_database_update }
[gentoo-commits] repo/gentoo:master commit in: app-editors/retext/
commit: ee247a74cc2c7793698eea20b2133e92d357c929 Author: Nils Freydank posteo de> AuthorDate: Thu May 24 19:38:35 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Fri May 25 22:31:51 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee247a74 app-editors/retext: Cleanup buggy ebuilds. Bug: https://bugs.gentoo.org/show_bug.cgi?id=626824 Package-Manager: Portage-2.3.38, Repoman-2.3.9 app-editors/retext/retext-7.0.0-r1.ebuild | 61 --- app-editors/retext/retext-7.0.1-r1.ebuild | 61 --- 2 files changed, 122 deletions(-) diff --git a/app-editors/retext/retext-7.0.0-r1.ebuild b/app-editors/retext/retext-7.0.0-r1.ebuild deleted file mode 100644 index 00f57b4e518..000 --- a/app-editors/retext/retext-7.0.0-r1.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_{4,5,6} ) - -PLOCALES="ca cs cy da de es et eu fr hu it ja pl pt pt_BR ru sk sr sr@latin uk zh_TW" - -inherit distutils-r1 virtualx l10n eutils - -MY_PN="ReText" -MY_P="${MY_PN}-${PV/_/~}" - -DESCRIPTION="Simple editor for Markdown and reStructuredText" -HOMEPAGE="https://github.com/retext-project/retext https://github.com/retext-project/retext/wiki"; -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="+spell" - -RDEPEND=" - dev-python/docutils[${PYTHON_USEDEP}] - dev-python/markdown[${PYTHON_USEDEP}] - >=dev-python/markups-2.0[${PYTHON_USEDEP}] - >=dev-python/chardet-2.3[${PYTHON_USEDEP}] - dev-python/pygments[${PYTHON_USEDEP}] - dev-python/PyQt5[gui,network,printsupport,webengine,widgets,${PYTHON_USEDEP}] - spell? ( dev-python/pyenchant[${PYTHON_USEDEP}] ) -" - -S="${WORKDIR}"/${MY_P} - -remove_locale() { - find "${ED}" -name "retext_${1}.qm" -delete || die "Failed to remove locale ${1}." -} - -python_test() { - virtx esetup.py test -} - -python_install_all() { - distutils-r1_python_install_all - - newicon {icons/,}${PN}.png - newicon {icons/,}${PN}.svg - - l10n_for_each_disabled_locale_do remove_locale - - make_desktop_entry ${PN} "${MY_PN} Editor" ${PN} "Development;Utility;TextEditor" -} - -pkg_postinst() { - xdg_desktop_database_update -} - -pkg_postrm() { - xdg_desktop_database_update -} diff --git a/app-editors/retext/retext-7.0.1-r1.ebuild b/app-editors/retext/retext-7.0.1-r1.ebuild deleted file mode 100644 index 00f57b4e518..000 --- a/app-editors/retext/retext-7.0.1-r1.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_{4,5,6} ) - -PLOCALES="ca cs cy da de es et eu fr hu it ja pl pt pt_BR ru sk sr sr@latin uk zh_TW" - -inherit distutils-r1 virtualx l10n eutils - -MY_PN="ReText" -MY_P="${MY_PN}-${PV/_/~}" - -DESCRIPTION="Simple editor for Markdown and reStructuredText" -HOMEPAGE="https://github.com/retext-project/retext https://github.com/retext-project/retext/wiki"; -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="+spell" - -RDEPEND=" - dev-python/docutils[${PYTHON_USEDEP}] - dev-python/markdown[${PYTHON_USEDEP}] - >=dev-python/markups-2.0[${PYTHON_USEDEP}] - >=dev-python/chardet-2.3[${PYTHON_USEDEP}] - dev-python/pygments[${PYTHON_USEDEP}] - dev-python/PyQt5[gui,network,printsupport,webengine,widgets,${PYTHON_USEDEP}] - spell? ( dev-python/pyenchant[${PYTHON_USEDEP}] ) -" - -S="${WORKDIR}"/${MY_P} - -remove_locale() { - find "${ED}" -name "retext_${1}.qm" -delete || die "Failed to remove locale ${1}." -} - -python_test() { - virtx esetup.py test -} - -python_install_all() { - distutils-r1_python_install_all - - newicon {icons/,}${PN}.png - newicon {icons/,}${PN}.svg - - l10n_for_each_disabled_locale_do remove_locale - - make_desktop_entry ${PN} "${MY_PN} Editor" ${PN} "Development;Utility;TextEditor" -} - -pkg_postinst() { - xdg_desktop_database_update -} - -pkg_postrm() { - xdg_desktop_database_update -}
[gentoo-commits] repo/gentoo:master commit in: app-editors/retext/
commit: 44f063eaf8c99bc8db3ed4e23fa13e737fad45df Author: Nils Freydank posteo de> AuthorDate: Thu May 24 19:36:01 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Fri May 25 22:31:50 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44f063ea app-editors/retext: Revbump to backport fixes. Bug: https://bugs.gentoo.org/show_bug.cgi?id=626824 Package-Manager: Portage-2.3.38, Repoman-2.3.9 app-editors/retext/retext-7.0.1-r2.ebuild | 62 +++ 1 file changed, 62 insertions(+) diff --git a/app-editors/retext/retext-7.0.1-r2.ebuild b/app-editors/retext/retext-7.0.1-r2.ebuild new file mode 100644 index 000..b69ab5bac2a --- /dev/null +++ b/app-editors/retext/retext-7.0.1-r2.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{4,5,6} ) + +PLOCALES="ca cs cy da de es et eu fr hu it ja pl pt pt_BR ru sk sr sr@latin uk zh_TW" + +inherit distutils-r1 virtualx l10n xdg-utils + +MY_PN="ReText" +MY_P="${MY_PN}-${PV/_/~}" + +DESCRIPTION="Simple editor for Markdown and reStructuredText" +HOMEPAGE="https://github.com/retext-project/retext https://github.com/retext-project/retext/wiki"; + +if [[ ${PV} == * ]] + then + inherit git-r3 + EGIT_REPO_URI="https://github.com/retext-project/retext.git"; + else + SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + KEYWORDS="~amd64 ~x86" + S="${WORKDIR}"/${MY_P} +fi + +LICENSE="GPL-2" +SLOT="0" +IUSE="+spell" + +RDEPEND=" + dev-python/docutils[${PYTHON_USEDEP}] + dev-python/markdown[${PYTHON_USEDEP}] + >=dev-python/markups-2.0[${PYTHON_USEDEP}] + >=dev-python/chardet-2.3[${PYTHON_USEDEP}] + dev-python/pygments[${PYTHON_USEDEP}] + dev-python/PyQt5[gui,network,printsupport,webengine,widgets,${PYTHON_USEDEP}] + spell? ( dev-python/pyenchant[${PYTHON_USEDEP}] ) +" + +remove_locale() { + find "${ED}" -name "retext_${1}.qm" -delete || die "Failed to remove locale ${1}." +} + +python_test() { + virtx esetup.py test +} + +python_install_all() { + distutils-r1_python_install_all + + l10n_for_each_disabled_locale_do remove_locale +} + +pkg_postinst() { + xdg_desktop_database_update +} + +pkg_postrm() { + xdg_desktop_database_update +}
[gentoo-commits] repo/gentoo:master commit in: sci-misc/fitsverify/
commit: c0573d7e5e6c74e4684fd7c5254e9587ccf610fb Author: Michael Mair-Keimberger gmail com> AuthorDate: Fri May 25 19:56:26 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Fri May 25 22:28:08 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0573d7e sci-misc/fitsverify: use HTTPs sci-misc/fitsverify/fitsverify-4.17.ebuild | 4 ++-- sci-misc/fitsverify/fitsverify-4.18.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sci-misc/fitsverify/fitsverify-4.17.ebuild b/sci-misc/fitsverify/fitsverify-4.17.ebuild index b7daee4cc8e..ccfb7d6d509 100644 --- a/sci-misc/fitsverify/fitsverify-4.17.ebuild +++ b/sci-misc/fitsverify/fitsverify-4.17.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -6,7 +6,7 @@ EAPI=6 inherit toolchain-funcs DESCRIPTION="FITS file format checker" -HOMEPAGE="http://heasarc.gsfc.nasa.gov/docs/software/ftools/fitsverify/"; +HOMEPAGE="https://heasarc.gsfc.nasa.gov/docs/software/ftools/fitsverify/"; SRC_URI="${HOMEPAGE}/${P}.tar.gz" LICENSE="MIT" diff --git a/sci-misc/fitsverify/fitsverify-4.18.ebuild b/sci-misc/fitsverify/fitsverify-4.18.ebuild index b7daee4cc8e..ccfb7d6d509 100644 --- a/sci-misc/fitsverify/fitsverify-4.18.ebuild +++ b/sci-misc/fitsverify/fitsverify-4.18.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -6,7 +6,7 @@ EAPI=6 inherit toolchain-funcs DESCRIPTION="FITS file format checker" -HOMEPAGE="http://heasarc.gsfc.nasa.gov/docs/software/ftools/fitsverify/"; +HOMEPAGE="https://heasarc.gsfc.nasa.gov/docs/software/ftools/fitsverify/"; SRC_URI="${HOMEPAGE}/${P}.tar.gz" LICENSE="MIT"
[gentoo-commits] repo/gentoo:master commit in: dev-python/astropy/
commit: fefea0958098700d35a95da101c2243c3426a7cf Author: Michael Mair-Keimberger gmail com> AuthorDate: Fri May 25 19:52:22 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Fri May 25 22:28:07 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fefea095 dev-python/astropy: use HTTPs Closes: https://github.com/gentoo/gentoo/pull/8584 dev-python/astropy/astropy-1.2.1.ebuild | 4 ++-- dev-python/astropy/astropy-1.3.3.ebuild | 4 ++-- dev-python/astropy/astropy-2.0.1.ebuild | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dev-python/astropy/astropy-1.2.1.ebuild b/dev-python/astropy/astropy-1.2.1.ebuild index 2f2c8fcdb9d..c7daa8fd56d 100644 --- a/dev-python/astropy/astropy-1.2.1.ebuild +++ b/dev-python/astropy/astropy-1.2.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -8,7 +8,7 @@ PYTHON_COMPAT=( python2_7 python3_{4,5} ) inherit distutils-r1 xdg-utils DESCRIPTION="Core functionality for performing astrophysics with Python" -HOMEPAGE="http://astropy.org/"; +HOMEPAGE="https://www.astropy.org/"; SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" diff --git a/dev-python/astropy/astropy-1.3.3.ebuild b/dev-python/astropy/astropy-1.3.3.ebuild index b1a454a4e08..8eb789f8cfb 100644 --- a/dev-python/astropy/astropy-1.3.3.ebuild +++ b/dev-python/astropy/astropy-1.3.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -8,7 +8,7 @@ PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) inherit distutils-r1 xdg-utils DESCRIPTION="Core functionality for performing astrophysics with Python" -HOMEPAGE="http://astropy.org/"; +HOMEPAGE="https://www.astropy.org/"; SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" diff --git a/dev-python/astropy/astropy-2.0.1.ebuild b/dev-python/astropy/astropy-2.0.1.ebuild index fb535d4fd51..cac851d8af6 100644 --- a/dev-python/astropy/astropy-2.0.1.ebuild +++ b/dev-python/astropy/astropy-2.0.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -11,7 +11,7 @@ MYPV=${PV/_/} S=${WORKDIR}/${PN}-${MYPV} DESCRIPTION="Core functionality for performing astrophysics with Python" -HOMEPAGE="http://astropy.org/"; +HOMEPAGE="https://www.astropy.org/"; SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${PN}-${MYPV}.tar.gz" LICENSE="BSD"
[gentoo-commits] repo/gentoo:master commit in: sci-libs/cfitsio/
commit: bf6685a87498de8e8932628aa086612f5fe39cae Author: Michael Mair-Keimberger gmail com> AuthorDate: Fri May 25 19:55:40 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Fri May 25 22:28:08 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf6685a8 sci-libs/cfitsio: use HTTPs sci-libs/cfitsio/cfitsio-3.360.ebuild | 4 ++-- sci-libs/cfitsio/cfitsio-3.38-r1.ebuild | 4 ++-- sci-libs/cfitsio/cfitsio-3.39.ebuild| 4 ++-- sci-libs/cfitsio/cfitsio-3.410.ebuild | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sci-libs/cfitsio/cfitsio-3.360.ebuild b/sci-libs/cfitsio/cfitsio-3.360.ebuild index 113be5fdf36..4449edae4bf 100644 --- a/sci-libs/cfitsio/cfitsio-3.360.ebuild +++ b/sci-libs/cfitsio/cfitsio-3.360.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -8,7 +8,7 @@ FORTRAN_NEEDED=fortran inherit autotools-utils fortran-2 DESCRIPTION="C and Fortran library for manipulating FITS files" -HOMEPAGE="http://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html"; +HOMEPAGE="https://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html"; SRC_URI="https://dev.gentoo.org/~bicatali/distfiles/${P}.tar.gz"; LICENSE="MIT" diff --git a/sci-libs/cfitsio/cfitsio-3.38-r1.ebuild b/sci-libs/cfitsio/cfitsio-3.38-r1.ebuild index 7d3f7ad294b..5c7c6535756 100644 --- a/sci-libs/cfitsio/cfitsio-3.38-r1.ebuild +++ b/sci-libs/cfitsio/cfitsio-3.38-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -8,7 +8,7 @@ FORTRAN_NEEDED=fortran inherit autotools-multilib fortran-2 DESCRIPTION="C and Fortran library for manipulating FITS files" -HOMEPAGE="http://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html"; +HOMEPAGE="https://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html"; SRC_URI="https://dev.gentoo.org/~bicatali/distfiles/${P}.tar.gz"; LICENSE="MIT" diff --git a/sci-libs/cfitsio/cfitsio-3.39.ebuild b/sci-libs/cfitsio/cfitsio-3.39.ebuild index 9a75291ffa7..e38c68f855f 100644 --- a/sci-libs/cfitsio/cfitsio-3.39.ebuild +++ b/sci-libs/cfitsio/cfitsio-3.39.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -8,7 +8,7 @@ FORTRAN_NEEDED=fortran inherit fortran-2 multilib-minimal DESCRIPTION="C and Fortran library for manipulating FITS files" -HOMEPAGE="http://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html"; +HOMEPAGE="https://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html"; SRC_URI="https://dev.gentoo.org/~bicatali/distfiles/${P}.tar.gz"; LICENSE="MIT" diff --git a/sci-libs/cfitsio/cfitsio-3.410.ebuild b/sci-libs/cfitsio/cfitsio-3.410.ebuild index 9a75291ffa7..e38c68f855f 100644 --- a/sci-libs/cfitsio/cfitsio-3.410.ebuild +++ b/sci-libs/cfitsio/cfitsio-3.410.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -8,7 +8,7 @@ FORTRAN_NEEDED=fortran inherit fortran-2 multilib-minimal DESCRIPTION="C and Fortran library for manipulating FITS files" -HOMEPAGE="http://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html"; +HOMEPAGE="https://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html"; SRC_URI="https://dev.gentoo.org/~bicatali/distfiles/${P}.tar.gz"; LICENSE="MIT"
[gentoo-commits] repo/gentoo:master commit in: sci-libs/ccfits/
commit: 7a58fc67179eba626638206eb9ac830810a9de90 Author: Michael Mair-Keimberger gmail com> AuthorDate: Fri May 25 19:54:47 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Fri May 25 22:28:07 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a58fc67 sci-libs/ccfits: use HTTPs sci-libs/ccfits/ccfits-2.4-r1.ebuild | 4 ++-- sci-libs/ccfits/ccfits-2.5.ebuild| 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sci-libs/ccfits/ccfits-2.4-r1.ebuild b/sci-libs/ccfits/ccfits-2.4-r1.ebuild index a053f0dd3a6..30ea37fa12d 100644 --- a/sci-libs/ccfits/ccfits-2.4-r1.ebuild +++ b/sci-libs/ccfits/ccfits-2.4-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -9,7 +9,7 @@ MYPN=CCfits MYP=${MYPN}-${PV} DESCRIPTION="C++ interface for cfitsio" -HOMEPAGE="http://heasarc.gsfc.nasa.gov/fitsio/CCfits/"; +HOMEPAGE="https://heasarc.gsfc.nasa.gov/fitsio/CCfits/"; SRC_URI="${HOMEPAGE}/${MYP}.tar.gz" LICENSE="BSD" diff --git a/sci-libs/ccfits/ccfits-2.5.ebuild b/sci-libs/ccfits/ccfits-2.5.ebuild index 9530618f2c8..5f2b6eb5171 100644 --- a/sci-libs/ccfits/ccfits-2.5.ebuild +++ b/sci-libs/ccfits/ccfits-2.5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -9,7 +9,7 @@ MYPN=CCfits MYP=${MYPN}-${PV} DESCRIPTION="C++ interface for cfitsio" -HOMEPAGE="http://heasarc.gsfc.nasa.gov/fitsio/CCfits/"; +HOMEPAGE="https://heasarc.gsfc.nasa.gov/fitsio/CCfits/"; SRC_URI="${HOMEPAGE}/${MYP}.tar.gz" LICENSE="BSD"
[gentoo-commits] repo/gentoo:master commit in: sci-astronomy/kapteyn/
commit: 57ecccdb0f0f36efa5b644918eaa4c626e5f7c97 Author: Michael Mair-Keimberger gmail com> AuthorDate: Fri May 25 19:53:41 2018 + Commit: Aaron Bauman gentoo org> CommitDate: Fri May 25 22:28:07 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57ecccdb sci-astronomy/kapteyn: use HTTPs sci-astronomy/kapteyn/kapteyn-2.3.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sci-astronomy/kapteyn/kapteyn-2.3.ebuild b/sci-astronomy/kapteyn/kapteyn-2.3.ebuild index 853ec1ed2cf..91ca272bf85 100644 --- a/sci-astronomy/kapteyn/kapteyn-2.3.ebuild +++ b/sci-astronomy/kapteyn/kapteyn-2.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -8,8 +8,8 @@ PYTHON_COMPAT=( python2_7 ) inherit distutils-r1 DESCRIPTION="Collection of python tools for astronomy" -HOMEPAGE="http://www.astro.rug.nl/software/kapteyn"; -SRC_URI="http://www.astro.rug.nl/software/kapteyn/${P}.tar.gz"; +HOMEPAGE="https://www.astro.rug.nl/software/kapteyn/"; +SRC_URI="https://www.astro.rug.nl/software/kapteyn/${P}.tar.gz"; LICENSE="BSD" SLOT="0"
[gentoo-commits] repo/gentoo:master commit in: net-analyzer/argus/
commit: aa92607cc3544bef4a06198c8eaa61cb9a968a60 Author: Mikle Kolyada gentoo org> AuthorDate: Fri May 25 21:18:21 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Fri May 25 21:18:21 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa92607c net-analyzer/argus: ppc stable wrt bug #653822 Package-Manager: Portage-2.3.24, Repoman-2.3.6 net-analyzer/argus/argus-3.0.8.2-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-analyzer/argus/argus-3.0.8.2-r1.ebuild b/net-analyzer/argus/argus-3.0.8.2-r1.ebuild index 4f8d88d2e02..7b021685946 100644 --- a/net-analyzer/argus/argus-3.0.8.2-r1.ebuild +++ b/net-analyzer/argus/argus-3.0.8.2-r1.ebuild @@ -10,7 +10,7 @@ SRC_URI="${HOMEPAGE}dev/${P/_rc/.rc.}.tar.gz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" IUSE="debug +libtirpc sasl tcpd" RDEPEND="
[gentoo-commits] repo/gentoo:master commit in: sys-cluster/glusterfs/
commit: 81ebb0acc267866af01b384187b508cd58ea27e6 Author: Mikle Kolyada gentoo org> AuthorDate: Fri May 25 21:16:32 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Fri May 25 21:16:32 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81ebb0ac sys-cluster/glusterfs: ppc/ppc64 stable wrt bug #653796 Package-Manager: Portage-2.3.24, Repoman-2.3.6 sys-cluster/glusterfs/glusterfs-4.0.0-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-cluster/glusterfs/glusterfs-4.0.0-r1.ebuild b/sys-cluster/glusterfs/glusterfs-4.0.0-r1.ebuild index 3d8dd783507..b8c3d99fa8f 100644 --- a/sys-cluster/glusterfs/glusterfs-4.0.0-r1.ebuild +++ b/sys-cluster/glusterfs/glusterfs-4.0.0-r1.ebuild @@ -12,7 +12,7 @@ if [[ ${PV#} != ${PV} ]]; then EGIT_REPO_URI="https://github.com/gluster/glusterfs.git"; else SRC_URI="https://download.gluster.org/pub/gluster/${PN}/$(get_version_component_range '1-2')/${PV}/${P}.tar.gz" - KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86" + KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 x86" fi DESCRIPTION="GlusterFS is a powerful network/cluster filesystem"
[gentoo-commits] repo/gentoo:master commit in: dev-lang/mono/
commit: 58b6d789fd9cf759c34bb4d202d33fd63713c8ef Author: Mikle Kolyada gentoo org> AuthorDate: Fri May 25 21:13:42 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Fri May 25 21:13:42 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58b6d789 dev-lang/mono: ppc stable wrt bug #641286 Package-Manager: Portage-2.3.24, Repoman-2.3.6 dev-lang/mono/mono-4.8.0.524.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-lang/mono/mono-4.8.0.524.ebuild b/dev-lang/mono/mono-4.8.0.524.ebuild index 7cad9129620..2e12a884338 100644 --- a/dev-lang/mono/mono-4.8.0.524.ebuild +++ b/dev-lang/mono/mono-4.8.0.524.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://download.mono-project.com/sources/${PN}/${P}.tar.bz2"; LICENSE="MIT LGPL-2.1 GPL-2 BSD-4 NPL-1.1 Ms-PL GPL-2-with-linking-exception IDPL" SLOT="0" -KEYWORDS="amd64 ~arm64 ~ppc ~ppc64 x86 ~amd64-linux" +KEYWORDS="amd64 ~arm64 ppc ~ppc64 x86 ~amd64-linux" IUSE="nls minimal pax_kernel xen doc"
[gentoo-commits] repo/gentoo:master commit in: sci-libs/hdf/
commit: a782013e4df949e20265ca4cf11fae20d33d77ee Author: Mikle Kolyada gentoo org> AuthorDate: Fri May 25 21:10:14 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Fri May 25 21:10:14 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a782013e sci-libs/hdf: ppc stable wrt bug #630868 Package-Manager: Portage-2.3.24, Repoman-2.3.6 sci-libs/hdf/hdf-4.2.13-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sci-libs/hdf/hdf-4.2.13-r1.ebuild b/sci-libs/hdf/hdf-4.2.13-r1.ebuild index ed67c5f51be..63e729e7010 100644 --- a/sci-libs/hdf/hdf-4.2.13-r1.ebuild +++ b/sci-libs/hdf/hdf-4.2.13-r1.ebuild @@ -15,7 +15,7 @@ SRC_URI="http://www.hdfgroup.org/ftp/HDF/HDF_Current/src/${MYP}.tar.bz2"; SLOT="0" LICENSE="NCSA-HDF" -KEYWORDS="amd64 ia64 ~ppc x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ia64 ppc x86 ~amd64-linux ~x86-linux" IUSE="examples fortran szip static-libs test" REQUIRED_USE="test? ( szip )"
[gentoo-commits] repo/gentoo:master commit in: dev-perl/Net-Patricia/
commit: 1e70443b386509950bafcd2ea179a560de8f5cb3 Author: Mikle Kolyada gentoo org> AuthorDate: Fri May 25 21:06:45 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Fri May 25 21:06:45 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e70443b dev-perl/Net-Patricia: arm/ppc/ppc64 stable wrt bug #638518 Package-Manager: Portage-2.3.24, Repoman-2.3.6 dev-perl/Net-Patricia/Net-Patricia-1.220.0-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-perl/Net-Patricia/Net-Patricia-1.220.0-r1.ebuild b/dev-perl/Net-Patricia/Net-Patricia-1.220.0-r1.ebuild index c303bb50c30..019ea5f32b6 100644 --- a/dev-perl/Net-Patricia/Net-Patricia-1.220.0-r1.ebuild +++ b/dev-perl/Net-Patricia/Net-Patricia-1.220.0-r1.ebuild @@ -11,7 +11,7 @@ DESCRIPTION="Patricia Trie perl module for fast IP address lookups" LICENSE="GPL-2+" SLOT="0" -KEYWORDS="alpha amd64 ~arm hppa ia64 ~ppc ~ppc64 sparc x86 ~x86-fbsd" +KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd" IUSE="ipv6" RDEPEND="dev-perl/Net-CIDR-Lite
[gentoo-commits] repo/gentoo:master commit in: app-text/bibclean/
commit: 404f86958736daf77fd5b2d5d65e4ec7a3451e88 Author: Mikle Kolyada gentoo org> AuthorDate: Fri May 25 20:47:19 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Fri May 25 20:47:19 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=404f8695 app-text/bibclean: EAPI bump; drop eutils Package-Manager: Portage-2.3.24, Repoman-2.3.6 app-text/bibclean/bibclean-2.17.ebuild | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app-text/bibclean/bibclean-2.17.ebuild b/app-text/bibclean/bibclean-2.17.ebuild index 5e81ffbd2ce..fc8d456dd36 100644 --- a/app-text/bibclean/bibclean-2.17.ebuild +++ b/app-text/bibclean/bibclean-2.17.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=6 -inherit toolchain-funcs eutils +inherit toolchain-funcs DESCRIPTION="BibTeX bibliography prettyprinter and syntax checker" SRC_URI="http://www.math.utah.edu/pub/bibclean/${P}.tar.bz2"; @@ -11,7 +11,7 @@ HOMEPAGE="http://www.math.utah.edu/pub/bibclean/"; # http://packages.debian.org/changelogs/pool/main/b/bibclean/bibclean_2.11.4-5/bibclean.copyright LICENSE="GPL-2" -KEYWORDS="~x86 ~amd64" +KEYWORDS="~amd64 ~x86" IUSE="" SLOT="0"
[gentoo-commits] repo/gentoo:master commit in: app-text/bibclean/files/, app-text/bibclean/
commit: e4fcadb3f7519ea44106847696557dfaf1f1d57e Author: Mikle Kolyada gentoo org> AuthorDate: Fri May 25 20:42:53 2018 + Commit: Mikle Kolyada gentoo org> CommitDate: Fri May 25 20:43:50 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4fcadb3 app-text/bibclean: Drop old (EAPI=0) Package-Manager: Portage-2.3.24, Repoman-2.3.6 app-text/bibclean/Manifest | 1 - app-text/bibclean/bibclean-2.11.4.ebuild | 34 -- .../bibclean/files/bibclean-2.11.4-ldflags.patch | 13 - 3 files changed, 48 deletions(-) diff --git a/app-text/bibclean/Manifest b/app-text/bibclean/Manifest index efb5ee1e25d..c2646ad9b74 100644 --- a/app-text/bibclean/Manifest +++ b/app-text/bibclean/Manifest @@ -1,2 +1 @@ -DIST bibclean-2.11.4.tar.bz2 1244790 BLAKE2B d899753aa5c792f8713966e2d50f0658a0d3de8ba05cf4d490af30e9832dbe5d41e142dbc647ab046851822653e42bfdb7e64d23723ab81f2e285d345c708864 SHA512 e04f785ca017148600984a852e3093b86eb3ca1c67f41427556d2b08e57e11f05502db5a5beb868a33780a12ee06dc7f5eb9cf794c8f7346cfce582e4761ce14 DIST bibclean-2.17.tar.bz2 2253830 BLAKE2B 4d707f8d07f04c45c44fbea2b12bfffc7636cef2a847d90e62f339cb8fdadbb416cd89c2ba1cb04b0fc9c736dd7ca8480a2cbd4dab9c27b1f6804ddd18fc5419 SHA512 5f0d6b315ecc98c47f48c1e5fe7bcbd374cf97dec5cc97ce4438300a7419e6b2f1efae313efdf9d21211e9cd658c1f4bac10aa3b0d55dfa8a5783d982b1dde0f diff --git a/app-text/bibclean/bibclean-2.11.4.ebuild b/app-text/bibclean/bibclean-2.11.4.ebuild deleted file mode 100644 index d71a0f6dc5c..000 --- a/app-text/bibclean/bibclean-2.11.4.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit toolchain-funcs eutils - -DESCRIPTION="BibTeX bibliography prettyprinter and syntax checker" -SRC_URI="http://www.math.utah.edu/pub/bibclean/${P}.tar.bz2"; -HOMEPAGE="http://www.math.utah.edu/pub/bibclean/"; - -# http://packages.debian.org/changelogs/pool/main/b/bibclean/bibclean_2.11.4-5/bibclean.copyright -LICENSE="GPL-2" -KEYWORDS="~x86 ~amd64" -IUSE="" - -SLOT="0" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/${P}-ldflags.patch" -} - -src_compile() { - tc-export CC CXX - econf - emake LDFLAGS="${LDFLAGS}" || die "emake failed" -} - -src_install() { - dobin bibclean - newman bibclean.man bibclean.1 -} diff --git a/app-text/bibclean/files/bibclean-2.11.4-ldflags.patch b/app-text/bibclean/files/bibclean-2.11.4-ldflags.patch deleted file mode 100644 index e93c3be9103..000 --- a/app-text/bibclean/files/bibclean-2.11.4-ldflags.patch +++ /dev/null @@ -1,13 +0,0 @@ -Index: bibclean-2.11.4/Makefile.in -=== bibclean-2.11.4.orig/Makefile.in -+++ bibclean-2.11.4/Makefile.in -@@ -343,7 +343,7 @@ BIBCLEAN-OBJS = bibclean.o chek.o do.o - $(LIBOBJS) - - bibclean: $(BIBCLEAN-OBJS) -- $(CC) -o bibclean $(CFLAGS) $(BIBCLEAN-OBJS) $(LIBS) -+ $(CC) $(LDFLAGS) -o bibclean $(CFLAGS) $(BIBCLEAN-OBJS) $(LIBS) - - # This target converts the option descriptions from the manual pages - # to C code for inclusion in bibclean.c. The first awk command
[gentoo-commits] repo/gentoo:master commit in: app-misc/livecd-tools/
commit: 2094823501c5853335ec22beb1d13f67b161e1cf Author: William Hubbs gentoo org> AuthorDate: Fri May 25 20:42:51 2018 + Commit: William Hubbs gentoo org> CommitDate: Fri May 25 20:43:13 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20948235 app-misc/livecd-tools: 2.4 bump Package-Manager: Portage-2.3.24, Repoman-2.3.6 RepoMan-Options: --force app-misc/livecd-tools/Manifest| 1 + app-misc/livecd-tools/livecd-tools-2.4.ebuild | 41 +++ 2 files changed, 42 insertions(+) diff --git a/app-misc/livecd-tools/Manifest b/app-misc/livecd-tools/Manifest index 2c94b737ca3..a7b0030b4a6 100644 --- a/app-misc/livecd-tools/Manifest +++ b/app-misc/livecd-tools/Manifest @@ -1,2 +1,3 @@ DIST livecd-tools-2.2.tar.gz 11419 BLAKE2B 4dca047acd82bb8fa14bb117b42141c2b4a0cd441b965a677c33932c77166c2e89af2d396bc2f1e699174ad0f911e54c16431d93dfe7f8796ce66859e8e69fc3 SHA512 62891c132b0f392b775116d90740ea30a546a75736b17d10e5915ededa72ed730934555cab9a0b81a6def49e687c13db3e92e1e4f325854151569ad3e814bec0 DIST livecd-tools-2.3.tar.bz2 11128 BLAKE2B f89c02fac4ec60b36a1e11c547d52290c80e028e1b07d25533846bba8b8b861faa7b1d85ebffd4936593b5f975851b680e73e6502c23d62c68c03646d1373dbc SHA512 93a5742a4cc243fee07088f5957c1eb48c2276460c391c089502eccba5bfe80b52fa7a7d058502b18086130bd8686c8c0e4af8f3f03f72c98b482776e0f225a9 +DIST livecd-tools-2.4.tar.bz2 11506 BLAKE2B 0e7fc54ab4185ba725f2672dbd15a87e7cef249224e51895e2cedb1e163d8fc25566f989eb8fa118111d0d50bed2b6c7e303586b322b1e9b41bf746778a056f0 SHA512 52c2ecf583bca68ee5d3dfce9973268758753069a3255dd3d435b9240feb8c99d7c7595c0c009ddc89566d79c01552eab7dbc8a9055d4841104dfe4e224d832b diff --git a/app-misc/livecd-tools/livecd-tools-2.4.ebuild b/app-misc/livecd-tools/livecd-tools-2.4.ebuild new file mode 100644 index 000..6304b890ff8 --- /dev/null +++ b/app-misc/livecd-tools/livecd-tools-2.4.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +if [[ ${PV} == "" ]]; then + EGIT_REPO_URI="git://anongit.gentoo.org/proj/livecd-tools.git" + inherit git-r3 +else + SRC_URI="https://gitweb.gentoo.org/proj/livecd-tools.git/snapshot/${P}.tar.bz2"; + KEYWORDS="alpha amd64 hppa ia64 ~mips ppc ppc64 sparc x86" +fi + +DESCRIPTION="Gentoo LiveCD tools for autoconfiguration of hardware" +HOMEPAGE="https://www.gentoo.org"; + +SLOT="0" +LICENSE="GPL-2" +IUSE="" + +RDEPEND="dev-util/dialog + net-dialup/mingetty + >=sys-apps/baselayout-2 + >=sys-apps/openrc-0.8.2-r1 + sys-apps/pciutils + sys-apps/gawk + sys-apps/sed" + +pkg_setup() { + ewarn "This package is designed for use on the LiveCD only and will do" + ewarn "unspeakably horrible and unexpected things on a normal system." + ewarn "YOU HAVE BEEN WARNED!!!" +} + +src_install() { + doconfd conf.d/* + doinitd init.d/* + dosbin net-setup + into / + dosbin livecd-functions.sh +}
[gentoo-commits] repo/gentoo:master commit in: media-libs/opencv/
commit: ce65f89314c7512169830ae6a76ef0c23494b4b9 Author: Amy Liffey gentoo org> AuthorDate: Fri May 25 20:26:34 2018 + Commit: Amy Liffey gentoo org> CommitDate: Fri May 25 20:27:13 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce65f893 media-libs/opencv: remove not required cpu flags Package-Manager: Portage-2.3.24, Repoman-2.3.6 media-libs/opencv/opencv-3.4.1.ebuild | 2 -- 1 file changed, 2 deletions(-) diff --git a/media-libs/opencv/opencv-3.4.1.ebuild b/media-libs/opencv/opencv-3.4.1.ebuild index 0f07d45bf9b..93975a066b1 100644 --- a/media-libs/opencv/opencv-3.4.1.ebuild +++ b/media-libs/opencv/opencv-3.4.1.ebuild @@ -27,8 +27,6 @@ IUSE="contrib contrib_cvv contrib_dnn contrib_hdf contrib_sfm contrib_xfeatures2 # will silently disable it Wwithout the user knowing, which defeats the # purpose of the opengl use flag. REQUIRED_USE=" - cpu_flags_x86_sse - cpu_flags_x86_sse2 cuda? ( tesseract? ( opencl ) ) dnn_samples? ( examples ) gflags? ( contrib )
[gentoo-commits] proj/livecd-tools: New tag: 2.4
commit: Commit: William Hubbs gentoo org> CommitDate: Fri May 25 20:23:01 2018 + New tag: 2.4
[gentoo-commits] repo/gentoo:master commit in: net-dns/dnscrypt-proxy/
commit: 971332a063e816109a220ce0392755e7e0a8e1c1 Author: Georgy Yakovlev sysdump net> AuthorDate: Wed May 16 16:14:28 2018 + Commit: David Seifert gentoo org> CommitDate: Fri May 25 20:08:56 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=971332a0 net-dns/dnscrypt-proxy: version bump to 2.0.14 Package-Manager: Portage-2.3.36, Repoman-2.3.9 Closes: https://github.com/gentoo/gentoo/pull/8435 net-dns/dnscrypt-proxy/Manifest| 1 + .../dnscrypt-proxy/dnscrypt-proxy-2.0.14.ebuild| 97 ++ 2 files changed, 98 insertions(+) diff --git a/net-dns/dnscrypt-proxy/Manifest b/net-dns/dnscrypt-proxy/Manifest index 7cde5e81d8c..69b523c49d8 100644 --- a/net-dns/dnscrypt-proxy/Manifest +++ b/net-dns/dnscrypt-proxy/Manifest @@ -1,2 +1,3 @@ DIST dnscrypt-proxy-1.9.5.tar.bz2 1290573 BLAKE2B 8f16fdb58012e00a8b58d36364377c3bc25158b9484a8df2bd6bc98d1c9cbf5ac758997e31f95ecaeb9da2f6b7272316c5a4a1c069a39549fbc1c1b136857da0 SHA512 84c0f7587521b3a198292cf20dd71cb592ccf8a9e003abbc62c5ca112f6c5ed27c49b1642cf91f403d52b4147e25f24af540b65cecfcf93814338329097df836 DIST dnscrypt-proxy-2.0.12.tar.gz 2775112 BLAKE2B c3a1085c7c4d005d323d2d3e803b7bce447b86a8f2e9bff0eb7e5e145d275dd19fe6913c805be9469ba0a492f7a479a146af56a769432d8120790375628bb936 SHA512 757a7a88e8f6ed61462736184f0ca8426c40f800f54727881412de44c527e4334a6b42aa6906c19ecf9287d462a1ec7bd55cb471781bd94c2a0faa8ad7055137 +DIST dnscrypt-proxy-2.0.14.tar.gz 2876583 BLAKE2B f93b2ba8991668691d503a5c039c4bb8eee0f474893c99ebd68067faa2a530832434c08654f61482a9d5b876ecf10329117b76a20b837fde00d72521170a1d86 SHA512 2574f900b6e2f75e2f634e22df41145243c23cd9a890fcfa73f13b7d032bc2b029cbb6498f5c2cd33e212392ca2298a1dce6bb369be5c9afccc21a706613 diff --git a/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.14.ebuild b/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.14.ebuild new file mode 100644 index 000..0b64d8b992e --- /dev/null +++ b/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.14.ebuild @@ -0,0 +1,97 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +EGO_PN="github.com/jedisct1/${PN}" + +inherit fcaps golang-build systemd user + +DESCRIPTION="A flexible DNS proxy, with support for encrypted DNS protocols" +HOMEPAGE="https://github.com/jedisct1/dnscrypt-proxy"; +SRC_URI="https://${EGO_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" + +FILECAPS=( cap_net_bind_service+ep usr/bin/dnscrypt-proxy ) +PATCHES=( "${FILESDIR}"/config-full-paths-r10.patch ) + +pkg_setup() { + enewgroup dnscrypt-proxy + enewuser dnscrypt-proxy -1 -1 /var/empty dnscrypt-proxy +} + +src_prepare() { + default + # Create directory structure suitable for building + mkdir -p "src/${EGO_PN%/*}" || die + mv "${PN}" "src/${EGO_PN}" || die + mv "vendor" "src/" || die +} + +src_install() { + dobin dnscrypt-proxy + + insinto /etc/dnscrypt-proxy + newins "src/${EGO_PN}"/example-dnscrypt-proxy.toml dnscrypt-proxy.toml + doins "src/${EGO_PN}"/example-{blacklist.txt,whitelist.txt} + doins "src/${EGO_PN}"/example-{cloaking-rules.txt,forwarding-rules.txt} + + insinto "/usr/share/dnscrypt-proxy" + doins -r "utils/generate-domains-blacklists/." + + newinitd "${FILESDIR}"/dnscrypt-proxy-2.initd dnscrypt-proxy + newconfd "${FILESDIR}"/dnscrypt-proxy-2.confd dnscrypt-proxy + systemd_newunit "${FILESDIR}"/dnscrypt-proxy-2.service dnscrypt-proxy.service + systemd_newunit "${FILESDIR}"/dnscrypt-proxy-2.socket dnscrypt-proxy.socket + + einstalldocs +} + +pkg_postinst() { + fcaps_pkg_postinst + + if ! use filecaps; then + ewarn "'filecaps' USE flag is disabled" + ewarn "${PN} will fail to listen on port 53" + ewarn "please do one the following:" + ewarn "1) re-enable 'filecaps'" + ewarn "2) change port to > 1024" + ewarn "3) configure to run ${PN} as root (not recommended)" + ewarn + fi + + local v + for v in ${REPLACING_VERSIONS}; do + if [[ ${v} == 1.* ]] ; then + elog "Version 2 is a complete rewrite of ${PN}" + elog "please clean up old config/log files" + elog + fi + if [[ ${v} == 2.* ]] ; then + elog "As of version 2.0.12 of ${PN} runs as an 'dnscrypt-proxy' user/group" + elog "you can remove obsolete 'dnscrypt' accounts from the system" + elog + fi + done + + if systemd_is_booted || has_version sys-apps/systemd; then + elog "Using systemd socket activation may cause issues with speed" + elog "latency and reliability of ${PN} and is discouraged by upstream" +
[gentoo-commits] repo/gentoo:master commit in: net-dns/dnscrypt-proxy/
commit: 45d175343cc57773e3739f7b49b366095254c5da Author: Georgy Yakovlev sysdump net> AuthorDate: Sat May 19 22:30:45 2018 + Commit: David Seifert gentoo org> CommitDate: Fri May 25 20:09:04 2018 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45d17534 net-dns/dnscrypt-proxy: drop 2.0.12 Package-Manager: Portage-2.3.38, Repoman-2.3.9 net-dns/dnscrypt-proxy/Manifest| 1 - .../dnscrypt-proxy/dnscrypt-proxy-2.0.12.ebuild| 97 -- 2 files changed, 98 deletions(-) diff --git a/net-dns/dnscrypt-proxy/Manifest b/net-dns/dnscrypt-proxy/Manifest index 69b523c49d8..581fc01b565 100644 --- a/net-dns/dnscrypt-proxy/Manifest +++ b/net-dns/dnscrypt-proxy/Manifest @@ -1,3 +1,2 @@ DIST dnscrypt-proxy-1.9.5.tar.bz2 1290573 BLAKE2B 8f16fdb58012e00a8b58d36364377c3bc25158b9484a8df2bd6bc98d1c9cbf5ac758997e31f95ecaeb9da2f6b7272316c5a4a1c069a39549fbc1c1b136857da0 SHA512 84c0f7587521b3a198292cf20dd71cb592ccf8a9e003abbc62c5ca112f6c5ed27c49b1642cf91f403d52b4147e25f24af540b65cecfcf93814338329097df836 -DIST dnscrypt-proxy-2.0.12.tar.gz 2775112 BLAKE2B c3a1085c7c4d005d323d2d3e803b7bce447b86a8f2e9bff0eb7e5e145d275dd19fe6913c805be9469ba0a492f7a479a146af56a769432d8120790375628bb936 SHA512 757a7a88e8f6ed61462736184f0ca8426c40f800f54727881412de44c527e4334a6b42aa6906c19ecf9287d462a1ec7bd55cb471781bd94c2a0faa8ad7055137 DIST dnscrypt-proxy-2.0.14.tar.gz 2876583 BLAKE2B f93b2ba8991668691d503a5c039c4bb8eee0f474893c99ebd68067faa2a530832434c08654f61482a9d5b876ecf10329117b76a20b837fde00d72521170a1d86 SHA512 2574f900b6e2f75e2f634e22df41145243c23cd9a890fcfa73f13b7d032bc2b029cbb6498f5c2cd33e212392ca2298a1dce6bb369be5c9afccc21a706613 diff --git a/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.12.ebuild b/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.12.ebuild deleted file mode 100644 index 0b64d8b992e..000 --- a/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.12.ebuild +++ /dev/null @@ -1,97 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -EGO_PN="github.com/jedisct1/${PN}" - -inherit fcaps golang-build systemd user - -DESCRIPTION="A flexible DNS proxy, with support for encrypted DNS protocols" -HOMEPAGE="https://github.com/jedisct1/dnscrypt-proxy"; -SRC_URI="https://${EGO_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="ISC" -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" - -FILECAPS=( cap_net_bind_service+ep usr/bin/dnscrypt-proxy ) -PATCHES=( "${FILESDIR}"/config-full-paths-r10.patch ) - -pkg_setup() { - enewgroup dnscrypt-proxy - enewuser dnscrypt-proxy -1 -1 /var/empty dnscrypt-proxy -} - -src_prepare() { - default - # Create directory structure suitable for building - mkdir -p "src/${EGO_PN%/*}" || die - mv "${PN}" "src/${EGO_PN}" || die - mv "vendor" "src/" || die -} - -src_install() { - dobin dnscrypt-proxy - - insinto /etc/dnscrypt-proxy - newins "src/${EGO_PN}"/example-dnscrypt-proxy.toml dnscrypt-proxy.toml - doins "src/${EGO_PN}"/example-{blacklist.txt,whitelist.txt} - doins "src/${EGO_PN}"/example-{cloaking-rules.txt,forwarding-rules.txt} - - insinto "/usr/share/dnscrypt-proxy" - doins -r "utils/generate-domains-blacklists/." - - newinitd "${FILESDIR}"/dnscrypt-proxy-2.initd dnscrypt-proxy - newconfd "${FILESDIR}"/dnscrypt-proxy-2.confd dnscrypt-proxy - systemd_newunit "${FILESDIR}"/dnscrypt-proxy-2.service dnscrypt-proxy.service - systemd_newunit "${FILESDIR}"/dnscrypt-proxy-2.socket dnscrypt-proxy.socket - - einstalldocs -} - -pkg_postinst() { - fcaps_pkg_postinst - - if ! use filecaps; then - ewarn "'filecaps' USE flag is disabled" - ewarn "${PN} will fail to listen on port 53" - ewarn "please do one the following:" - ewarn "1) re-enable 'filecaps'" - ewarn "2) change port to > 1024" - ewarn "3) configure to run ${PN} as root (not recommended)" - ewarn - fi - - local v - for v in ${REPLACING_VERSIONS}; do - if [[ ${v} == 1.* ]] ; then - elog "Version 2 is a complete rewrite of ${PN}" - elog "please clean up old config/log files" - elog - fi - if [[ ${v} == 2.* ]] ; then - elog "As of version 2.0.12 of ${PN} runs as an 'dnscrypt-proxy' user/group" - elog "you can remove obsolete 'dnscrypt' accounts from the system" - elog - fi - done - - if systemd_is_booted || has_version sys-apps/systemd; then - elog "Using systemd socket activation may cause issues with speed" - elog "latency and reliability of ${PN} and is discouraged by upstream" - elog "Existing installations advised to disabl
[gentoo-commits] repo/proj/prefix:master commit in: sys-apps/portage/
commit: 9f340d4cd4e4d8ce5caa8e3e42f033195c781aa4 Author: Fabian Groffen gentoo org> AuthorDate: Fri May 25 20:06:20 2018 + Commit: Fabian Groffen gentoo org> CommitDate: Fri May 25 20:06:31 2018 + URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=9f340d4c sys-apps/portage: version bump to 2.3.40 Package-Manager: Portage-2.3.40-prefix, Repoman-2.3.9 sys-apps/portage/Manifest | 1 + sys-apps/portage/portage-2.3.40.ebuild | 264 + 2 files changed, 265 insertions(+) diff --git a/sys-apps/portage/Manifest b/sys-apps/portage/Manifest index d2ea65..5f8e220820 100644 --- a/sys-apps/portage/Manifest +++ b/sys-apps/portage/Manifest @@ -1,3 +1,4 @@ DIST prefix-portage-2.2.28.tar.bz2 1187416 BLAKE2B 1ec27def0b427f60b38dc60178461c2395d388500b6f20d5f9dcd76090c5e68e6578da0073cb5cc3b5b2beb2c2c55ef12afef70d7562fba0a6f0cf90847624ea SHA512 ea0661783d421d204272b9a210745aa2040a18ea347299b3d768588e10ca8dd2e24b46975249bf30010bf565514aea640f4edb9db2ca064312c899304a8c1f42 DIST prefix-portage-2.3.13.tar.bz2 1205509 BLAKE2B 851492dc1d3bd55721dfc1662af98a193c8071d87b6b64a09a736864031fa6482fe59a1662789ce8320b156241470688a9a815d79f7367b79500e590a41604f5 SHA512 4d59d04b9d6a896a545a40e04973a1c29f421b5d90f08012cb00a27ba1081eb914ddb625f543c26c93c8c75ba690f6ec72e4d9301f4f8e01a5fc68a3438cf46c DIST prefix-portage-2.3.18.tar.bz2 1230290 BLAKE2B 9a7a290493293f166520931aab32a720519ebec15f4c74fe0b0dcd7cc930d591c24e3c87cae4722da119d57826b020b37092ec492bb4e12b774e51334eccf156 SHA512 508a5891fc28297e68baf031f4e99674a58c6268b16d50e094adc6676fb42f81bb81bd6f3dc70c24636be64ae015db51df86c49267c8c5a98129fe5e006310d7 +DIST prefix-portage-2.3.40.tar.bz2 1255669 BLAKE2B 5798c6df2a552952c27c7fd8564f9d3699752c5e2e1c4465f709bd0b33d1b9c91167a2b4652aad7e4366e8a9cdb3f2689a2670705771db3fbc94d2d658cd80bb SHA512 5c85248f5a1f7f694a5271bb8cb62534ffaa5355469123909f2df2d25f85c684f88306ecc63a2549cb4d990c1a4d3e0126c3d3467739cfb3a979d8b286c6b83b diff --git a/sys-apps/portage/portage-2.3.40.ebuild b/sys-apps/portage/portage-2.3.40.ebuild new file mode 100644 index 00..bf7393b3ac --- /dev/null +++ b/sys-apps/portage/portage-2.3.40.ebuild @@ -0,0 +1,264 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +PYTHON_COMPAT=( + pypy + python3_4 python3_5 python3_6 + python2_7 +) +PYTHON_REQ_USE='bzip2(+),threads(+)' + +inherit eutils distutils-r1 multilib + +DESCRIPTION="Portage package manager used in Gentoo Prefix" +HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage"; +LICENSE="GPL-2" +KEYWORDS="~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +SLOT="0" +IUSE="build doc epydoc +ipc +native-extensions selinux xattr prefix-chaining" + +DEPEND="!build? ( $(python_gen_impl_dep 'ssl(+)') ) + >=app-arch/tar-1.27 + dev-lang/python-exec:2 + >=sys-apps/sed-4.0.5 sys-devel/patch + doc? ( app-text/xmlto ~app-text/docbook-xml-dtd-4.4 ) + epydoc? ( >=dev-python/epydoc-2.0[$(python_gen_usedep 'python2*')] )" +# Require sandbox-2.2 for bug #288863. +# For xattr, we can spawn getfattr and setfattr from sys-apps/attr, but that's +# quite slow, so it's not considered in the dependencies as an alternative to +# to python-3.3 / pyxattr. Also, xattr support is only tested with Linux, so +# for now, don't pull in xattr deps for other kernels. +# For whirlpool hash, require python[ssl] (bug #425046). +# For compgen, require bash[readline] (bug #445576). +RDEPEND=" + >=app-arch/tar-1.27 + dev-lang/python-exec:2 + !build? ( + >=sys-apps/sed-4.0.5 + app-shells/bash:0[readline] + >=app-admin/eselect-1.2 + $(python_gen_cond_dep 'dev-python/pyblake2[${PYTHON_USEDEP}]' \ + python{2_7,3_4,3_5} pypy) + ) + elibc_FreeBSD? ( !prefix? ( sys-freebsd/freebsd-bin ) ) + elibc_glibc? ( !prefix? ( >=sys-apps/sandbox-2.2 ) ) + elibc_uclibc? ( !prefix? ( >=sys-apps/sandbox-2.2 ) ) + kernel_linux? ( >=app-misc/pax-utils-0.1.17 ) + kernel_SunOS? ( >=app-misc/pax-utils-0.1.17 ) + kernel_FreeBSD? ( >=app-misc/pax-utils-0.1.17 ) + kernel_Darwin? ( >=app-misc/pax-utils-0.1.18 ) + kernel_AIX? ( >=sys-apps/aix-miscutils-0.1.1634 ) + selinux? ( >=sys-libs/libselinux-2.0.94[python,${PYTHON_USEDEP}] ) + xattr? ( kernel_linux? ( + >=sys-apps/install-xattr-0.3 + $(python_gen_cond_dep 'dev-python/pyxattr[${PYTHON_USEDEP}]' \ + python2_7 pypy) + ) ) + !https://dev.gentoo.org/~zmedico/portage/archives https://dev.gentoo.org/~grobian/distfiles"; + +prefix_src_archives() { + local x y + for x in ${@}; do + for y in ${SRC_ARCHIVES}; do +
[gentoo-commits] proj/portage:prefix commit in: /
commit: 0bf775500d26e7ed9ef3a5b0d68d68deca70fcbb Author: Fabian Groffen gentoo org> AuthorDate: Fri May 25 19:44:06 2018 + Commit: Fabian Groffen gentoo org> CommitDate: Fri May 25 19:44:06 2018 + URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=0bf77550 travis.sh: add helper script to run tests travis.sh | 32 1 file changed, 32 insertions(+) diff --git a/travis.sh b/travis.sh new file mode 100755 index 0..3c03149e6 --- /dev/null +++ b/travis.sh @@ -0,0 +1,32 @@ +#!/usr/bin/env bash + +# this script runs the tests as Travis would do (.travis.yml) and can be +# used to test the Prefix branch of portage on a non-Prefix system + +: ${TMPDIR=/var/tmp} + +HERE=$(dirname $(realpath ${BASH_SOURCE[0]})) +REPO=${HERE##*/}.$$ + +cd ${TMPDIR} +git clone ${HERE} ${REPO} + +cd ${REPO} +printf "[build_ext]\nportage-ext-modules=true" >> setup.cfg +find . -type f -exec \ +sed -e "s|@PORTAGE_EPREFIX@||" \ + -e "s|@PORTAGE_BASE@|${PWD}|" \ +-e "s|@PORTAGE_MV@|$(type -P mv)|" \ +-e "s|@PORTAGE_BASH@|$(type -P bash)|" \ +-e "s|@PREFIX_PORTAGE_PYTHON@|$(type -P python)|" \ +-e "s|@DEFAULT_PATH@|${EPREFIX}/usr/bin:${EPREFIX}/bin|" \ +-e "s|@EXTRA_PATH@|${EPREFIX}/usr/sbin:${EPREFIX}/sbin|" \ +-e "s|@portagegroup@|$(id -gn)|" \ +-e "s|@portageuser@|$(id -un)|" \ +-e "s|@rootuser@|$(id -un)|" \ +-e "s|@rootuid@|$(id -u)|" \ +-e "s|@rootgid@|$(id -g)|" \ +-e "s|@sysconfdir@|${EPREFIX}/etc|" \ +-i '{}' + +unset EPREFIX +./setup.py test