[gentoo-commits] proj/dotnet:master commit in: dev-lang/fsharp/
commit: b99cc564a9f6667fe81b474a9fb5879c0f0e2fa9 Author: Heather live ru> AuthorDate: Tue Oct 13 11:37:36 2015 + Commit: Heather Cynede gentoo org> CommitDate: Tue Oct 13 11:37:36 2015 + URL:https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=b99cc564 bump fsharp dev-lang/fsharp/{fsharp-4.0.0.3.ebuild => fsharp-4.0.0.4.ebuild} | 0 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/dev-lang/fsharp/fsharp-4.0.0.3.ebuild b/dev-lang/fsharp/fsharp-4.0.0.4.ebuild similarity index 100% rename from dev-lang/fsharp/fsharp-4.0.0.3.ebuild rename to dev-lang/fsharp/fsharp-4.0.0.4.ebuild
[gentoo-commits] proj/dotnet:master commit in: eclass/
commit: 4559734d5925611461005ada319c4eb373b7ca40 Author: Heather users noreply github com> AuthorDate: Sat Oct 17 06:39:07 2015 + Commit: Heather Cynede gentoo org> CommitDate: Sat Oct 17 06:39:07 2015 + URL:https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=4559734d improve eclass docs eclass/nuget.eclass | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/eclass/nuget.eclass b/eclass/nuget.eclass index 4356b88..1561fd6 100644 --- a/eclass/nuget.eclass +++ b/eclass/nuget.eclass @@ -5,7 +5,9 @@ # @ECLASS: nuget.eclass # @MAINTAINER: cyn...@gentoo.org # @BLURB: Common functionality for nuget apps -# @DESCRIPTION: Common functionality needed by fake build system. +# @DESCRIPTION: my idea of nuget was following: +# introduce nuget IUSE flag for packages that are on nuget to download them from nuget. (if sources fails with some reason or dependies is complicated or if user just want binaries). +# or maybe even introduce few packages that just downloads and instulls from nuget, reason is obviously - easy maintaince inherit dotnet @@ -66,7 +68,7 @@ else fi # @FUNCTION: nuget_src_unpack -# @DESCRIPTION: my idea of nuget was following: +# @DESCRIPTION: Runs nuget # Here is usage example where nuget is alternative way: https://github.com/gentoo/dotnet/blob/master/dev-dotnet/fake # Src_compile does nothing and src_install just installs sources from nuget_src_unpack nuget_src_unpack() {
[gentoo-commits] proj/dotnet:master commit in: eclass/
commit: d8d7b0a1ef60b9bae3977149720390245e43203c Author: Heather users noreply github com> AuthorDate: Sat Oct 17 06:37:47 2015 + Commit: Heather Cynede gentoo org> CommitDate: Sat Oct 17 06:37:47 2015 + URL:https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=d8d7b0a1 note about nuget_src_unpack eclass/nuget.eclass | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/eclass/nuget.eclass b/eclass/nuget.eclass index c7a3da2..4356b88 100644 --- a/eclass/nuget.eclass +++ b/eclass/nuget.eclass @@ -66,7 +66,9 @@ else fi # @FUNCTION: nuget_src_unpack -# @DESCRIPTION: Runs nuget. +# @DESCRIPTION: my idea of nuget was following: +# Here is usage example where nuget is alternative way: https://github.com/gentoo/dotnet/blob/master/dev-dotnet/fake +# Src_compile does nothing and src_install just installs sources from nuget_src_unpack nuget_src_unpack() { default nuget install "${NPN}" -Version "${NPV}" -OutputDirectory "${P}"
[gentoo-commits] proj/dotnet:master commit in: dev-lang/mono/
commit: 2d5881b282ec67ffdd01429ddfac75e1e39e37fe Author: Heather live ru> AuthorDate: Tue Oct 13 11:19:53 2015 + Commit: Heather Cynede gentoo org> CommitDate: Tue Oct 13 11:19:53 2015 + URL:https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=2d5881b2 bump mono dev-lang/mono/mono-4.2.1.60.ebuild | 113 + 1 file changed, 113 insertions(+) diff --git a/dev-lang/mono/mono-4.2.1.60.ebuild b/dev-lang/mono/mono-4.2.1.60.ebuild new file mode 100644 index 000..db52e5c --- /dev/null +++ b/dev-lang/mono/mono-4.2.1.60.ebuild @@ -0,0 +1,113 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +AUTOTOOLS_PRUNE_LIBTOOL_FILES="all" +AUTOTOOLS_AUTORECONF=1 + +inherit eutils linux-info mono-env flag-o-matic pax-utils autotools-utils versionator + +DESCRIPTION="Mono runtime and class libraries, a C# compiler/interpreter" +HOMEPAGE="http://www.mono-project.com/Main_Page"; +SRC_URI="http://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 ~ppc ~ppc64 ~x86 ~amd64-linux" + +IUSE="nls minimal pax_kernel xen doc" + +COMMONDEPEND=" + !minimal? ( >=dev-dotnet/libgdiplus-2.10 ) + ia64? ( sys-libs/libunwind ) + nls? ( sys-devel/gettext ) +" +RDEPEND="${COMMONDEPEND} + || ( www-client/links www-client/lynx ) +" +DEPEND="${COMMONDEPEND} + sys-devel/bc + virtual/yacc + pax_kernel? ( sys-apps/elfix ) + !dev-lang/mono-basic +" + +MAKEOPTS="${MAKEOPTS} -j1" #nowarn +S="${WORKDIR}/${PN}-$(get_version_component_range 1-3)" + +pkg_pretend() { + # If CONFIG_SYSVIPC is not set in your kernel .config, mono will hang while compiling. + # See http://bugs.gentoo.org/261869 for more info." + CONFIG_CHECK="SYSVIPC" + use kernel_linux && check_extra_config +} + +pkg_setup() { + linux-info_pkg_setup + mono-env_pkg_setup +} + +src_prepare() { + # we need to sed in the paxctl-ng -mr in the runtime/mono-wrapper.in so it don't + # get killed in the build proces when MPROTEC is enable. #286280 + # RANDMMAP kill the build proces to #347365 + if use pax_kernel ; then + ewarn "We are disabling MPROTECT on the mono binary." + + # issue 9 : https://github.com/Heather/gentoo-dotnet/issues/9 + sed '/exec "/ i\paxctl-ng -mr "$r/@mono_runtime@"' -i "${S}"/runtime/mono-wrapper.in || die "Failed to sed mono-wrapper.in" + fi + + # mono build system can fail otherwise + strip-flags + + # Fix VB targets + # http://osdir.com/ml/general/2015-05/msg20808.html + epatch "${FILESDIR}/add_missing_vb_portable_targets.patch" + + # Fix build when sgen disabled + # https://bugzilla.xamarin.com/show_bug.cgi?id=32015 + epatch "${FILESDIR}/${PN}-4.0.2.5-fix-mono-dis-makefile-am-when-without-sgen.patch" + + # Fix atomic_add_i4 support for 32-bit ppc + # https://github.com/mono/mono/compare/f967c79926900343f399c75624deedaba460e544^...8f379f0c8f98493180b508b9e68b9aa76c0c5bdf + epatch "${FILESDIR}/${PN}-4.0.2.5-fix-ppc-atomic-add-i4.patch" + + autotools-utils_src_prepare + + epatch "${FILESDIR}/systemweb3.patch" +} + +src_configure() { + local myeconfargs=( + --disable-silent-rules + $(use_with xen xen_opt) + --without-ikvm-native + --disable-dtrace + $(use_with doc mcs-docs) + $(use_enable nls) + ) + + autotools-utils_src_configure +} + +src_compile() { + autotools-utils_src_compile +} + +src_test() { + cd mcs/tests || die + emake check +} + +src_install() { + autotools-utils_src_install + + # Remove files not respecting LDFLAGS and that we are not supposed to provide, see Fedora + # mono.spec and http://www.mail-archive.com/mono-devel-list@lists.ximian.com/msg24870.html + # for reference. + rm -f "${ED}"/usr/lib/mono/{2.0,4.5}/mscorlib.dll.so || die + rm -f "${ED}"/usr/lib/mono/{2.0,4.5}/mcs.exe.so || die +}
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/racc/
commit: f2f7b0774f344c0ed6343f7e259c6d9f4cd5544b Author: Hans de Graaff gentoo org> AuthorDate: Fri Oct 16 05:43:49 2015 + Commit: Hans de Graaff gentoo org> CommitDate: Sat Oct 17 05:47:54 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2f7b077 dev-ruby/racc: add 1.4.13 Package-Manager: portage-2.2.20.1 dev-ruby/racc/Manifest | 1 + dev-ruby/racc/racc-1.4.13.ebuild | 66 2 files changed, 67 insertions(+) diff --git a/dev-ruby/racc/Manifest b/dev-ruby/racc/Manifest index 31c..e917561 100644 --- a/dev-ruby/racc/Manifest +++ b/dev-ruby/racc/Manifest @@ -1,2 +1,3 @@ DIST racc-1.4.11.gem 113664 SHA256 1e2e420d5e2e4b9f2b352e9b2828448a2ee13a16fdebf6a7e863252b5054c840 SHA512 147c3c0ade40ec5544397a9dbf8579514d97145c2cc9f4e16508d41265c1b5cd6fc986c09367792592b5ab6b274e271eb7dded02ea9c398eadafb8addda4ef0c WHIRLPOOL e54b553547bf13816033c103a4de79e7e5bd50bf30b58a7525a059ce0556071f01ee6658ad00febbc024314f322ce114b41864d1833ce8bc282519fe5c868f40 DIST racc-1.4.12.gem 115712 SHA256 bd9a6b06cf502abfdd7823c833ba69b74d038e8d365a5ce42d502f528f531db0 SHA512 7ae244127ba80ef07e1e2cabc1ec4c7c306b93d155d89e95ba425139c3ca24fdbc3c8cef3958b344a0b821fdfc36e25524d8b27de7f8a01ae2f1732edb11987f WHIRLPOOL 5c34ab9ab841f2062d697f7005e05a4b5bc54c8e210543ac4cc917f0a331cc8c823da9976b1f013b2a54664009e5bdc57d04da86d06882ec288438a304583642 +DIST racc-1.4.13.gem 115712 SHA256 1da7f490ab9df37109d44f7d626d63354bb4188d02ebf94a7181c652914ffd75 SHA512 f4ad94087afd115aa9c61de72d8fc2ae4a9f5cf4529bba3de02fd53a8e5ceb4ffc7180334bbbebbec162ddd27f5c98865812dd08e268be5a008d251bdfb65f4b WHIRLPOOL 518891400ae4a86de5dceef170e52d09cb388603337a6822fe1b78a128230f128da975813c162d89e09c2c7329ca2681d4f3d762d718222fca3f0a5729519853 diff --git a/dev-ruby/racc/racc-1.4.13.ebuild b/dev-ruby/racc/racc-1.4.13.ebuild new file mode 100644 index 000..cc8e209 --- /dev/null +++ b/dev-ruby/racc/racc-1.4.13.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +USE_RUBY="ruby19 ruby20 ruby21 ruby22" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" +RUBY_FAKEGEM_TASK_DOC="docs" +RUBY_FAKEGEM_EXTRADOC="README.rdoc README.ja.rdoc TODO ChangeLog" + +inherit multilib ruby-fakegem + +DESCRIPTION="A LALR(1) parser generator for Ruby" +HOMEPAGE="https://github.com/tenderlove/racc"; + +LICENSE="LGPL-2.1" +SLOT="0" + +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="doc test" + +ruby_add_bdepend "dev-ruby/rake + test? ( >=dev-ruby/minitest-4.0:0 )" + +all_ruby_prepare() { + sed -i -e 's|/tmp/out|${TMPDIR:-/tmp}/out|' test/helper.rb || die "tests fix failed" + + # Avoid depending on rake-compiler since we don't use it to compile + # the extension. + sed -i -e '/rake-compiler/ s:^:#:' -e '/extensiontask/ s:^:#:' Rakefile + sed -i -e '/ExtensionTask/,/^ end/ s:^:#:' Rakefile + + # Avoid isolation since dependencies are not properly declared. + sed -i -e 's/, :isolate//' Rakefile || die + + # Use a version of the minitest gem that works consistently accross + # all ruby versions. + sed -i -e '2i gem "minitest", "~>4.0"' test/helper.rb || die +} + +each_ruby_prepare() { + ${RUBY} -Cext/racc extconf.rb || die +} + +each_ruby_compile() { + emake V=1 -Cext/racc + # Copy over the file here so that we don't have to do + # special ruby install for JRuby and the other + # implementations. + cp -l ext/racc/cparse$(get_modname) lib/racc/cparse$(get_modname) || die +} + +each_ruby_test() { + ${RUBY} -Ilib:. -e "Dir['test/test_*.rb'].each{|f| require f}" || die +} + +all_ruby_install() { + all_fakegem_install + + dodoc -r rdoc + + docinto examples + dodoc -r sample +}
[gentoo-commits] repo/gentoo:master commit in: dev-ruby/ruby-gettext/
commit: c07ab6de3e51828b9678ef3e104f16b72be651f3 Author: Hans de Graaff gentoo org> AuthorDate: Thu Oct 15 05:35:03 2015 + Commit: Hans de Graaff gentoo org> CommitDate: Sat Oct 17 05:47:43 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c07ab6de dev-ruby/ruby-gettext: add 3.1.7 Package-Manager: portage-2.2.20.1 dev-ruby/ruby-gettext/Manifest | 1 + dev-ruby/ruby-gettext/ruby-gettext-3.1.7.ebuild | 66 + 2 files changed, 67 insertions(+) diff --git a/dev-ruby/ruby-gettext/Manifest b/dev-ruby/ruby-gettext/Manifest index 846cce7..be5d89c 100644 --- a/dev-ruby/ruby-gettext/Manifest +++ b/dev-ruby/ruby-gettext/Manifest @@ -1,3 +1,4 @@ DIST gettext-3.1.1.gem 221184 SHA256 323a1b07db0863e032436f6935a0e63a5ab7475ac8c387d2632065ee7bafc12a SHA512 b59462fd5c75aa64c1671fd54248ff86325be9aa53df2b4e720e663ae04d40febe83205c6ec75f6200dcf75abfdefe23db1effe838dc1149154457acc2fadc05 WHIRLPOOL 445999cff5241654252073b027388b058f272ffbaaa7d844208908996275cc22ed15c7055bd99a89977737192e60af84e0539bd6461b2da748bf97d41d5744f3 DIST gettext-3.1.2.gem 224768 SHA256 1ed987d0a46448cfc76617b486ad9a991e0d48501855e49eacb781aa531df6eb SHA512 14fbccf1d853bd58ae3ecbda3188294147404fb8473a54caeac505b93ffa25f96098786bd1171449aa1f0f74c4116e93b5d2f7c0705930dd014b210720667479 WHIRLPOOL 5a31bf87b38370276bf4c61886025f8721a7cb297012fbe6d1947abf82d1d35d779838506f5e56adbdda090a0ae20d4e5c74b9c4a08a4c782998d78b3a7c1768 DIST gettext-3.1.6.gem 282112 SHA256 b3b0d6cd779e3f99b3bd541300fd5ae8f5425f90d0314209b6eb70a7772c8a81 SHA512 8bf0f8203eef8b181400dfca8c67376b6dd64c7fc00177c20ced840791883c3988f12eefe55bb6b487473d8875f86ea8143feb15e814c83e29dcd0133dc2f73c WHIRLPOOL 5976fba52e84da77aa92aa61e498537ae8ee6294cdd64a0b18257b9df52e803e7ad3233a3964bdac9048cc4e78fc7a372b31cdbc117b2e164a84385419cc0f57 +DIST gettext-3.1.7.gem 283136 SHA256 383ab62cfef66247e6907fb735aac53048a79e0bea93a6c9aa448c3aa98ee9c1 SHA512 e7cd1674b0e40ac8593d398a874355216544cba9e5aa082dab4aecd8ab8ee5a30ba3003bda4f097db2ac10bd3861ff8fa6a0c389f68b4467f22d90b88120cad5 WHIRLPOOL 8945141b1d9534b2bcc177f3711bfd4b9e24560e4f704f6c3d7640aef207547e000287a25f6f6e895abf75702af1d26b9af424a0183763a2a62b3a3726c56c2f diff --git a/dev-ruby/ruby-gettext/ruby-gettext-3.1.7.ebuild b/dev-ruby/ruby-gettext/ruby-gettext-3.1.7.ebuild new file mode 100644 index 000..29b49b4 --- /dev/null +++ b/dev-ruby/ruby-gettext/ruby-gettext-3.1.7.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +USE_RUBY="ruby19 ruby20 ruby21 ruby22" + +RUBY_FAKEGEM_NAME="${PN/ruby-/}" +RUBY_FAKEGEM_VERSION="${PV%_*}" + +RUBY_FAKEGEM_RECIPE_DOC="yard" +RUBY_FAKEGEM_EXTRADOC="README.md doc/text/news.md" + +RUBY_FAKEGEM_TASK_TEST="none" + +RUBY_FAKEGEM_EXTRAINSTALL="locale po" + +inherit ruby-fakegem + +DESCRIPTION="Ruby GetText Package is Native Language Support Library and Tools modeled after GNU gettext package" +HOMEPAGE="http://ruby-gettext.github.io/"; + +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="doc test" +SLOT="0" +LICENSE="|| ( Ruby LGPL-3+ )" + +ruby_add_rdepend ">=dev-ruby/locale-2.0.5 >=dev-ruby/text-1.3.0" + +ruby_add_bdepend "doc? ( dev-ruby/yard ) + dev-ruby/racc" +ruby_add_bdepend "test? ( + dev-ruby/test-unit:2 + dev-ruby/test-unit-rr )" + +RDEPEND+=" sys-devel/gettext" +DEPEND+=" sys-devel/gettext" + +all_ruby_prepare() { + # Fix broken racc invocation + sed -i -e '/command_line/ s/#{racc}/-S racc/' Rakefile || die + + # Avoid bundler dependency + sed -i -e '/bundler/,/helper.install/ s:^:#:' \ + -e 's/helper.gemspec/Gem::Specification.new/' Rakefile || die + + # Avoid dependency on developer-specific tools. + sed -i -e '/notify/ s:^:#:' test/run-test.rb || die + + # Avoid tests failing due to a missing test file. + sed -i -e '/test_invalid_charset/,/end/ s:^:#:' test/test_mo.rb || die +} + +each_ruby_test() { + # Upstream tries to daisy-chain rake calls but they fail badly + # with our setup, so run it manually. + ${RUBY} test/run-test.rb || die "tests failed" +} + +all_ruby_install() { + all_fakegem_install + + insinto /usr/share/doc/${PF} + doins -r samples +}
[gentoo-commits] repo/gentoo:master commit in: sys-libs/glibc/
commit: a7136ae5ebe9b4dd350bb9bca2e90d87235263bb Author: Mike Frysinger gentoo org> AuthorDate: Sat Oct 17 04:55:33 2015 + Commit: Mike Frysinger gentoo org> CommitDate: Sat Oct 17 04:55:38 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7136ae5 sys-libs/glibc: more upstream fixes sys-libs/glibc/Manifest | 2 +- sys-libs/glibc/glibc-2.22.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-libs/glibc/Manifest b/sys-libs/glibc/Manifest index c75872e..283fdaa 100644 --- a/sys-libs/glibc/Manifest +++ b/sys-libs/glibc/Manifest @@ -20,7 +20,7 @@ DIST glibc-2.20-patches-5.tar.bz2 55986 SHA256 3d3eec9ac9b5d0530f9e05614f4646d64 DIST glibc-2.20.tar.xz 12283992 SHA256 f84b6d42aecc288d593c397b0a3d02260a33ee686bce0c634eb9b32798f36ba5 SHA512 7a8eea8b71d3ccba766c3f304cab61055446d451ef063309476b26dc40d880562dc33b1b68fbedeedb4b55b84c26415b9202311aaa71ef8c141b6849a814d2fa WHIRLPOOL 042f74d75c62a655ae35348c9cd0bed0845ab199e37a76635eb74c04ed927b5eca77723c38d2dc46f12fca62c1004001887b43946a914b079ad22f6a9cc8daaa DIST glibc-2.21-patches-5.tar.bz2 34237 SHA256 8f6a5dd094ad2c4b82368ef4b081ce6c634f61ea2783cdc68bcd9250d61682e1 SHA512 19b0e706cee387aa3a9ed40dd20081ffe98eaaf9a5ca027ee4abd3e46c3403af06c5189bd764d8d477cb356507e1142b5fde852ec710cf24e108c307f5843837 WHIRLPOOL 96c4ec00af41c60c238f681ea5448cec4db11dc59b4853eed5ba700aa21f804de2443166aa48d30f76af6b1a2eb74a47a7d1163e2067e5bbdcdbe3e4bf2a38c4 DIST glibc-2.21.tar.xz 12322092 SHA256 aeeb362437965a5d3f40b151094ca79def04a115bd363fdd4a9a0c69482923b8 SHA512 8cded6693618bec115f678fcbd0b77556f97dfa8337608f66e37224aefa55b38765ba61cb4d58beea37b5934e5ec8e30bad58613707388484906f2a0ce77997d WHIRLPOOL d07fec32bd92eade065a3b6170932b8bd41d07df4aa69dd5a860ebb9678c22bd1e20bf88b1fc05c3ecc18e709c0a63118e12525dc668e0399d7ef7fe4454702d -DIST glibc-2.22-patches-8.tar.bz2 35997 SHA256 e7ad308fa1af92312e01ac05d7e2ba2245f0f03999a85329ec5dd1d1d26c6a6c SHA512 68c081a21201c661894b6ee75d2143e81b819cd8b1a0b2efd072ae73ab7cba0edf144ff5b66aa8c0fe040996ddf77c167547e438193385f7aaa95629bf4698ba WHIRLPOOL 9147b4a261c0583f00c5b0ea13d39dbf37b8511f42bca600e58e058d0677e8bb9c07c405f8f7905426b50afdb999e9a142d1af859195b16d58193056452501ae +DIST glibc-2.22-patches-9.tar.bz2 37781 SHA256 724ebd9c068af2740b2058dfe6685e4c496c845a9e927efdacd763c22d5d9fbd SHA512 dda6ce3908f4261744178c0a345c016a3b0a7ca1d75063e1b216b6b95aea663f1741391e71966e0ed8018eea1a628786ccd026c6616def721bbedb961d5245e8 WHIRLPOOL 9725fabb933d3b48cdce5df4e5e9ed9bc58f737836405e1345849764ae6013cd2a2ac73a23137e87964d940bd79115f82b777bc807ce4c58a28a247cdf22f68f DIST glibc-2.22.tar.xz 12969072 SHA256 eb731406903befef1d8f878a46be75ef862b9056ab0cde1626d08a7a05328948 SHA512 a8719f3a4f8aa5fa8176fdafbea5082c6dfd85bd8c4cdce60571910263ab422b35bb8b55a84d37ccb146442133ba60a84d453ca4a439c8ccd35419bd051b WHIRLPOOL f7e707b3776fc197a2e7bf5633721925507237b154bbc1f94b9fc303c87e6fc039ff0758da6ee55b4c1a0daaa87c6e594a6c96e7b00a7ba8ae98ee29918709a7 DIST glibc-ports-2.13.tar.bz2 625945 SHA256 b11c4501ae929883447f409c31d65e82822b1c5693075a825a3d54612876ee5a SHA512 39ed578db363dab05e54d5272d3a8a0600493b91985c65a4d043b5a88d617ff46cca2d66d99ae69e92282d8f8a2357e79dcd5b0ae45b505497417d5137866ad6 WHIRLPOOL 766309e315f2f7edbe0b431691ea16f9917dd2f1c8d54b707e819b695f26dedac2d60c3a58499ee1b51a218b982e9930e49f79db096e166576c215a6ccac21e5 DIST glibc-ports-2.14.1.tar.bz2 630641 SHA256 1c830afb6d4aa166edaa09ec539580377ecbb16ba655d0aad6f5cb5a9a269aa9 SHA512 4ed18be51e2dec4395bf89701b32e443ba02e4e6b26ee1a72684a1f84ef302d58ed8b58f99e4e0ba3f539da0ade668de5881bb2b86fcd065d741448d9c129bae WHIRLPOOL 463aac8660f7f8d9d6e4ee5728aef2948892a54dc250d0543ffb3c2fb636a816384d5984631ab4420b98a51254d62b4b0ad8381a8006ceb1f632de135155939d diff --git a/sys-libs/glibc/glibc-2.22.ebuild b/sys-libs/glibc/glibc-2.22.ebuild index dcd307a..7fba994 100644 --- a/sys-libs/glibc/glibc-2.22.ebuild +++ b/sys-libs/glibc/glibc-2.22.ebuild @@ -27,7 +27,7 @@ case ${PV} in ;; esac GCC_BOOTSTRAP_VER="4.7.3-r1" -PATCH_VER="8" # Gentoo patchset +PATCH_VER="9" # Gentoo patchset : ${NPTL_KERN_VER:="2.6.32"} # min kernel version nptl requires IUSE="debug gd hardened multilib nscd selinux systemtap profile suid vanilla crosscompile_opts_headers-only"
[gentoo-commits] gentoo commit in src/patchsets/glibc/2.22: 00_all_0023-Fix-non-v9-32-bit-sparc-build.patch 00_all_0024-BZ-18921-Fix-opendir-inverted-o_directory_works-test.patch 00_all_0025-Use-HOST_
vapier 15/10/17 04:54:52 Modified: README.history Added:00_all_0023-Fix-non-v9-32-bit-sparc-build.patch 00_all_0024-BZ-18921-Fix-opendir-inverted-o_directory_works-test.patch 00_all_0025-Use-HOST_NAME_MAX-for-MAXHOSTNAMELEN-in-sys-param.h.patch 00_all_0026-Always-enable-pointer-guard-BZ-18928.patch Log: add more fixes from upstream Revision ChangesPath 1.9 src/patchsets/glibc/2.22/README.history file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/2.22/README.history?rev=1.9&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/2.22/README.history?rev=1.9&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/2.22/README.history?r1=1.8&r2=1.9 Index: README.history === RCS file: /var/cvsroot/gentoo/src/patchsets/glibc/2.22/README.history,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- README.history 26 Sep 2015 18:42:06 - 1.8 +++ README.history 17 Oct 2015 04:54:52 - 1.9 @@ -1,3 +1,9 @@ +9 17 Oct 2015 + + 00_all_0023-Fix-non-v9-32-bit-sparc-build.patch + + 00_all_0024-BZ-18921-Fix-opendir-inverted-o_directory_works-test.patch + + 00_all_0025-Use-HOST_NAME_MAX-for-MAXHOSTNAMELEN-in-sys-param.h.patch + + 00_all_0026-Always-enable-pointer-guard-BZ-18928.patch + 8 26 Sep 2015 + 00_all_0022-BZ-17250-Fix-static-dlopen-default-library-search-pa.patch 1.1 src/patchsets/glibc/2.22/00_all_0023-Fix-non-v9-32-bit-sparc-build.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/2.22/00_all_0023-Fix-non-v9-32-bit-sparc-build.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/2.22/00_all_0023-Fix-non-v9-32-bit-sparc-build.patch?rev=1.1&content-type=text/plain Index: 00_all_0023-Fix-non-v9-32-bit-sparc-build.patch === >From 6ff3aac23c2caa5c669e74da5f6c5a7264f51e39 Mon Sep 17 00:00:00 2001 From: Brett Neumeier Date: Mon, 31 Aug 2015 15:27:21 -0700 Subject: [PATCH] Fix non-v9 32-bit sparc build. [BZ #18870] * sysdeps/sparc/sparc32/sem_open.c: Add missing #include (cherry picked from commit 36c6e27a26b0afe0187f8790990cf880abdbf244) --- sysdeps/sparc/sparc32/sem_open.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sysdeps/sparc/sparc32/sem_open.c b/sysdeps/sparc/sparc32/sem_open.c index 16cb9ad..59df2d7 100644 --- a/sysdeps/sparc/sparc32/sem_open.c +++ b/sysdeps/sparc/sparc32/sem_open.c @@ -29,6 +29,7 @@ #include #include #include "semaphoreP.h" +#include #include -- 2.5.2 1.1 src/patchsets/glibc/2.22/00_all_0024-BZ-18921-Fix-opendir-inverted-o_directory_works-test.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/2.22/00_all_0024-BZ-18921-Fix-opendir-inverted-o_directory_works-test.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/2.22/00_all_0024-BZ-18921-Fix-opendir-inverted-o_directory_works-test.patch?rev=1.1&content-type=text/plain Index: 00_all_0024-BZ-18921-Fix-opendir-inverted-o_directory_works-test.patch === >From cdb1aad567b85b880a1325eb88555b8c8da9159b Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Fri, 4 Sep 2015 14:37:56 -0700 Subject: [PATCH] BZ#18921: Fix opendir inverted o_directory_works test. (cherry picked from commit bd9e69abb887d78d0d6708fc089cc9f3eabf106d) (cherry picked from commit 5c8c3123652045191474a4ca85fbb6e8d9e7d2bc) --- sysdeps/posix/opendir.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysdeps/posix/opendir.c b/sysdeps/posix/opendir.c index 6509f5c..9edf056 100644 --- a/sysdeps/posix/opendir.c +++ b/sysdeps/posix/opendir.c @@ -105,7 +105,7 @@ need_isdir_precheck (void) tryopen_o_directory (); /* We can skip the expensive `stat' call if O_DIRECTORY works. */ - return o_directory_works > 0; + return o_directory_works < 0; #endif return true; } -- 2.5.2 1.1 src/patchsets/glibc/2.22/00_all_0025-Use-HOST_NAME_MAX-for-MAXHOSTNAMELEN-in-sys-param.h.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/2.22/00_all_0025-Use-HOST_NAME_MAX-for-MAXHOSTNAMELEN-in-sys-param.h.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/2.22/00_all_0025-Use-HOST_NAME_MAX-for-MAXHOSTNAMELEN-in-sys-param.h.patch?rev=1.1&content-type=text/plain Index: 00_all_0025-Use-HOST_NAME_MAX-for-MAXHOSTNAMELEN-in-sys-param.h.patch === >From 5c4ac5014823e2bc93f74d4a8ac550
[gentoo-commits] proj/layman:master commit in: layman/
commit: 909afd209034ec26bca6f8c5d646852b2bd62c3e Author: Devan Franchini gentoo org> AuthorDate: Sat Oct 17 03:19:25 2015 + Commit: Devan Franchini gentoo org> CommitDate: Sat Oct 17 03:19:28 2015 + URL:https://gitweb.gentoo.org/proj/layman.git/commit/?id=909afd20 dbbase.py: Whitespace cleanup Shamelessly hiding the fact that I'm also ammending the lack of self.db_type use in the remove() function. layman/dbbase.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/layman/dbbase.py b/layman/dbbase.py index ebcd7a4..c2b25b8 100644 --- a/layman/dbbase.py +++ b/layman/dbbase.py @@ -173,8 +173,8 @@ class DbBase(object): self.output.die(msg) return db_ctl - - + + def add_new(self, xml=None, origin=None, from_dict=None): ''' Reads xml text and dictionary definitions and adds @@ -229,7 +229,7 @@ class DbBase(object): ''' Remove an overlay from the database. ''' -db_ctl = self._get_dbctl(db_type) +db_ctl = self._get_dbctl(self.db_type) db_ctl.remove(overlay, path)
[gentoo-commits] dev/jmbsvicetto:master commit in: www-apps/limesurvey/
commit: 3ade7191ae14e1118aedf8c64a9a7650fed1133a Author: Jorge Manuel B. S. Vicetto (jmbsvicetto) gentoo org> AuthorDate: Sat Oct 17 01:02:12 2015 + Commit: Jorge Manuel B. S. Vicetto gentoo org> CommitDate: Sat Oct 17 01:02:12 2015 + URL:https://gitweb.gentoo.org/dev/jmbsvicetto.git/commit/?id=3ade7191 [limesurvey] Fix URL {MY_P} -> ${MY_PV}. Signed-off-by: Jorge Manuel B. S. Vicetto (jmbsvicetto) gentoo.org> www-apps/limesurvey/limesurvey-2.06.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www-apps/limesurvey/limesurvey-2.06.ebuild b/www-apps/limesurvey/limesurvey-2.06.ebuild index 008d239..ab29a25 100644 --- a/www-apps/limesurvey/limesurvey-2.06.ebuild +++ b/www-apps/limesurvey/limesurvey-2.06.ebuild @@ -12,7 +12,7 @@ MY_PV="${PV}_plus_${MY_DATE}" DESCRIPTION="LimeSurvey is a popular Free Open Source Software survey tool" HOMEPAGE="https://www.limesurvey.org/"; -SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/${MY_P}.tar.gz -> ${P}.tar.gz" +SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2" KEYWORDS="~amd64 ~x86" IUSE="+gd ldap mssql mysql postgres zip"
[gentoo-commits] repo/gentoo:master commit in: dev-scheme/chicken/
commit: 08db0a2d383e2e8e62259ef2ae6d42b0b3c30d09 Author: Ian Delaney gentoo org> AuthorDate: Sat Oct 17 00:46:28 2015 + Commit: Ian Delaney gentoo org> CommitDate: Sat Oct 17 00:48:34 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08db0a2d dev-scheme/chicken: revbump drop use of parallel-build and the -parallel-build.patch by request of proxy maintainer via the gentoo bug, also many stylistic and qa improvements to the code of the ebuild Gentoo bug: #467966 Package-Manager: portage-2.2.20.1 dev-scheme/chicken/chicken-4.10.0-r1.ebuild | 67 + 1 file changed, 67 insertions(+) diff --git a/dev-scheme/chicken/chicken-4.10.0-r1.ebuild b/dev-scheme/chicken/chicken-4.10.0-r1.ebuild new file mode 100644 index 000..dc5992d --- /dev/null +++ b/dev-scheme/chicken/chicken-4.10.0-r1.ebuild @@ -0,0 +1,67 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +inherit eutils multilib versionator + +MY_PV=$(get_version_component_range 1-3) +DESCRIPTION="Chicken is a Scheme interpreter and native Scheme to C compiler" +HOMEPAGE="http://www.call-cc.org/"; +SRC_URI="http://code.call-cc.org/releases/${MY_PV}/${P}.tar.gz"; + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~x86" +IUSE="emacs doc" +DOCS=( NEWS README LICENSE ) + +DEPEND="sys-apps/texinfo + emacs? ( virtual/emacs )" +RDEPEND="emacs? ( virtual/emacs + app-emacs/scheme-complete )" + +src_prepare() { + #Because chicken's Upstream is in the habit of using variables that + #portage also uses :( eg. $ARCH and $A + sed "s,A\(\s?=\|)\),chicken&," \ + -i Makefile.cross-linux-mingw defaults.make rules.make || die + sed "s,ARCH,zARCH," \ + -i Makefile.* defaults.make rules.make || die + sed -e "s,\$(PREFIX)/lib,\$(PREFIX)/$(get_libdir)," \ + -e "s,\$(DATADIR)/doc,\$(SHAREDIR)/doc/${PF}," \ + -i defaults.make || die + + # remove HTML documentation if the user doesn't USE=doc + if ! use "doc" + then + rm -rf manual-html || die + fi +} + +src_compile() { + OPTIONS="-j1 PLATFORM=linux PREFIX=/usr" + + emake ${OPTIONS} C_COMPILER_OPTIMIZATION_OPTIONS="${CFLAGS}" \ + LINKER_OPTIONS="${LDFLAGS}" \ + HOSTSYSTEM="${CBUILD}" +} + +# chicken's testsuite is not runnable before install +# upstream has been notified of the issue +RESTRICT=test + +src_install() { + # still can't run make in parallel for the install target + emake -j1 ${OPTIONS} DESTDIR="${D}" HOSTSYSTEM="${CBUILD}" \ + LINKER_OPTIONS="${LDFLAGS}" install + + dodoc ${DOCS} + + if use "doc" + then + dodoc -r manual-html + fi + +}
[gentoo-commits] dev/jmbsvicetto:master commit in: www-apps/limesurvey/
commit: fc56fa6acaaae023f814a22136514a8cad25a5aa Author: Jorge Manuel B. S. Vicetto (jmbsvicetto) gentoo org> AuthorDate: Sat Oct 17 00:48:19 2015 + Commit: Jorge Manuel B. S. Vicetto gentoo org> CommitDate: Sat Oct 17 00:48:19 2015 + URL:https://gitweb.gentoo.org/dev/jmbsvicetto.git/commit/?id=fc56fa6a [limesurvey] Add LimeSurvey to my overlay. Signed-off-by: Jorge Manuel B. S. Vicetto (jmbsvicetto) gentoo.org> www-apps/limesurvey/Manifest | 1 + www-apps/limesurvey/limesurvey-2.06.ebuild | 58 ++ www-apps/limesurvey/metadata.xml | 13 +++ 3 files changed, 72 insertions(+) diff --git a/www-apps/limesurvey/Manifest b/www-apps/limesurvey/Manifest new file mode 100644 index 000..87f08ec --- /dev/null +++ b/www-apps/limesurvey/Manifest @@ -0,0 +1 @@ +DIST limesurvey-2.06.tar.gz 40991112 SHA256 eb41dcac8fb2e019495411badb9a62cd445e7f35fb8be47d25950e8e37e83844 SHA512 4044c369f60c3127997f5486740645b7f17e58ee6e41c27010c1a3a168c5f4e1e003924d1bc54848beb575bf6f8b752ef254fe4db9de53a06bbaaa29d28f0375 WHIRLPOOL c16fca091ec54c0505c11dcce959d41c5a517e7fcb06a059d7dfbe5c82f3535653473556f2d0cbe37f0794daef2b8912132c414a029eed2350306ca6a5069260 diff --git a/www-apps/limesurvey/limesurvey-2.06.ebuild b/www-apps/limesurvey/limesurvey-2.06.ebuild new file mode 100644 index 000..008d239 --- /dev/null +++ b/www-apps/limesurvey/limesurvey-2.06.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit webapp + +MY_PN="LimeSurvey" +MY_DATE="151016" +MY_PV="${PV}_plus_${MY_DATE}" + +DESCRIPTION="LimeSurvey is a popular Free Open Source Software survey tool" +HOMEPAGE="https://www.limesurvey.org/"; +SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/${MY_P}.tar.gz -> ${P}.tar.gz" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86" +IUSE="+gd ldap mssql mysql postgres zip" +REQUIRED_USE="^^ ( mssql mysql postgres )" + +DEPEND=" + app-admin/webapp-config +" +RDEPEND=" + dev-lang/php[gd?,hash,ldap?,session,zip?,zlib] + mssql? ( dev-lang/php[mssql] ) + mysql? ( dev-lang/php[mysqli] ) + postgres? ( dev-lang/php[postgres] ) +" +S="${WORKDIR}/${MY_PN}-${MY_PV}" + +pkg_config () { + + webapp_pkg_setup +} + +src_install () { + + webapp_src_preinst + + einfo "Installing files" + insinto "${MY_HTDOCSDIR}" + doins -r . + + webapp_src_install +} + +pkg_preinst () { + + fowners -R root:apache "${MY_HTDOCSDIR}" + fperms -R g-w,o-rwx "${MY_HTDOCSDIR}" + + # Allow writing to the tmp, upload and application/config directories + for dir in tmp upload application/config ; do + + fperms -R g+w "${MY_HTDOCSDIR}/${dir}" + done +} diff --git a/www-apps/limesurvey/metadata.xml b/www-apps/limesurvey/metadata.xml new file mode 100644 index 000..e9b832d --- /dev/null +++ b/www-apps/limesurvey/metadata.xml @@ -0,0 +1,13 @@ + +http://www.gentoo.org/dtd/metadata.dtd";> + + + jmbsvice...@gentoo.org + Jorge Manuel B. S. Vicetto + + + Used for captchas and nice charts + Import tokens using LDAP + Add zip support for template upload and resourcees import + +
[gentoo-commits] repo/gentoo:master commit in: net-misc/tor/
commit: f57a95ce161b407c528bde304dca08ee783b25a6 Author: Anthony G. Basile gentoo org> AuthorDate: Sat Oct 17 00:42:36 2015 + Commit: Anthony G. Basile gentoo org> CommitDate: Sat Oct 17 00:42:59 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f57a95ce net-misc/tor: rev bump 0.2.7.3_rc to push out changed USE dep. Package-Manager: portage-2.2.20.1 net-misc/tor/{tor-0.2.7.3_rc-r1.ebuild => tor-0.2.7.3_rc-r2.ebuild} | 0 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/net-misc/tor/tor-0.2.7.3_rc-r1.ebuild b/net-misc/tor/tor-0.2.7.3_rc-r2.ebuild similarity index 100% rename from net-misc/tor/tor-0.2.7.3_rc-r1.ebuild rename to net-misc/tor/tor-0.2.7.3_rc-r2.ebuild
[gentoo-commits] repo/gentoo:master commit in: media-sound/teamspeak-server-bin/
commit: 3bc7c56b1612961669fb9e790e67295fb49e6b76 Author: Ian Delaney gentoo org> AuthorDate: Sat Oct 17 00:00:08 2015 + Commit: Ian Delaney gentoo org> CommitDate: Sat Oct 17 00:00:39 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bc7c56b media-sound/teamspeak-server-bin: bump to -3.0.11.4 Added new proxy maintainer C. Kosteki to metadata under proxy-maintainers herd, bump submitted via the gentoo bug, cross tested by user 'undersys', vulnerable version cleaned Gentoo bug: #559112 (Security bug) Package-Manager: portage-2.2.20.1 media-sound/teamspeak-server-bin/Manifest | 4 ++-- media-sound/teamspeak-server-bin/metadata.xml | 19 ++- 3.ebuild => teamspeak-server-bin-3.0.11.4.ebuild} | 0 3 files changed, 12 insertions(+), 11 deletions(-) diff --git a/media-sound/teamspeak-server-bin/Manifest b/media-sound/teamspeak-server-bin/Manifest index 5b0a528..38c31fb 100644 --- a/media-sound/teamspeak-server-bin/Manifest +++ b/media-sound/teamspeak-server-bin/Manifest @@ -1,2 +1,2 @@ -DIST teamspeak3-server_linux-amd64-3.0.11.3.tar.gz 5022929 SHA256 448d35de0de5c0c9b17feba0697fc232920fb68ac2880bbbf022e0386a17b63b SHA512 14267c3d578e64e1a4bab278acf67b28cf80041d0341ba2e73051608643fe2eeaa7e3c7d3f28ae1826c76b5904b824deb68b7430f7e7d808977aeae7fb86beab WHIRLPOOL 2a4cd813b6428074b1d0a0568ebb78cbe5bb8b276d4cb114dd10bb87db03f78b7cd9e3d50a1706af99ae60346db1c2ae6e56c46f58688e1c32fb198743a64626 -DIST teamspeak3-server_linux-x86-3.0.11.3.tar.gz 5177437 SHA256 adf1eaf74056b24ffee798a6668de6c001801546adea2423a626388215729fa6 SHA512 241a86a728fd8990c75d1f509cf13d3ce97744492a5787c00e4294a6acca02a0ad8a6cdf64cc16e2dc41094eb5233b1528bced8c0cf73bdca66c27ee686f8ccd WHIRLPOOL db945e4fa04c2dcbabc6b5d75a7bf30e9e9367d02d57cc5df7d843aaf865c3baf1516c3c0536d99ba9929e143dc10de333764133c1de2c5c826b276e70ba19de +DIST teamspeak3-server_linux-amd64-3.0.11.4.tar.gz 5024057 SHA256 92123aff892740c88acc30a6e3e4df1615be44f9780acd396d663bac91323a40 SHA512 4e1d04e9943f02e1bc5042da0ee3cee3520a56eac9102c02ae6415e179a1daa4f8480c55eaa01c2c1d37a3c2bf6bd90b081131ea177a78f73ce2eddfb791224a WHIRLPOOL 19e1d3726d2782cca51495d6f7f034819596c3e04cacbd784c055b2baad03bf1aa92aa24223aa9f67f7ee5f1125c83556ed454bc9ceb62c14e0eb3166148c3f7 +DIST teamspeak3-server_linux-x86-3.0.11.4.tar.gz 5178378 SHA256 ca25c53aaf61f2111ba425263cd782d1556b42d579607f5390268676645c8dd2 SHA512 6bb6edbb9f8e7b5aeadfae4e9e01da6be113348648cf307d92132eb1f9e6e09406c69ec5f2769b51a0cae17776899c99e0867963dd39a515f802e01dc285d8b3 WHIRLPOOL f5a5123c99ed41e1032d96a2396e3de1c957fb4dd12ec11407f28e8768325cfb85fb5314961b1e91a2c5d34ed7226d5df417d02fc50fc95d11e96b16312fba32 diff --git a/media-sound/teamspeak-server-bin/metadata.xml b/media-sound/teamspeak-server-bin/metadata.xml index 9d47011..10b5499 100644 --- a/media-sound/teamspeak-server-bin/metadata.xml +++ b/media-sound/teamspeak-server-bin/metadata.xml @@ -1,13 +1,14 @@ http://www.gentoo.org/dtd/metadata.dtd";> - -maintainer-nee...@gentoo.org - - - TeamSpeak Server (Voice Communication Software) - - -Make use of TeamSpeak DNS. - + proxy-maintainers + + ck+gentoobugzi...@bl4ckb0x.de + Conrad Kostecki + Proxy maintaine, assign bugs to him + + TeamSpeak Server (Voice Communication Software) + + Make use of TeamSpeak DNS. + diff --git a/media-sound/teamspeak-server-bin/teamspeak-server-bin-3.0.11.3.ebuild b/media-sound/teamspeak-server-bin/teamspeak-server-bin-3.0.11.4.ebuild similarity index 100% rename from media-sound/teamspeak-server-bin/teamspeak-server-bin-3.0.11.3.ebuild rename to media-sound/teamspeak-server-bin/teamspeak-server-bin-3.0.11.4.ebuild
[gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-svn/
commit: 6c440194f35b55a676a5d65873cafc3755b1554b Author: Michael Orlitzky gentoo org> AuthorDate: Fri Oct 16 22:12:56 2015 + Commit: Michael Orlitzky gentoo org> CommitDate: Fri Oct 16 22:23:31 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c440194 dev-php/pecl-svn: depend on
[gentoo-commits] proj/pms:master commit in: /
commit: 9ba40ccf38cb460acac8292142b5404412bb7d3a Author: Ulrich Müller gentoo org> AuthorDate: Fri Oct 16 11:58:44 2015 + Commit: Ulrich Müller gentoo org> CommitDate: Fri Oct 16 11:58:44 2015 + URL:https://gitweb.gentoo.org/proj/pms.git/commit/?id=9ba40ccf pms.cls: Number all pages consecutively. To this effect, redefine the titlepage environment (which in its default implementation from report.cls unconditionally resets the page counter), since there seems to be no simpler way. pms.cls | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pms.cls b/pms.cls index e599702..af8e1b4 100644 --- a/pms.cls +++ b/pms.cls @@ -82,6 +82,9 @@ } \bibliographystyle{plainurl} +% Redefine the titlepage environment not to reset the page number +\renewenvironment{titlepage}{\newpage\thispagestyle{empty}}{\newpage} + % Enumerate subsubsections, but don't include them in the toc. \setcounter{secnumdepth}{3} \setcounter{tocdepth}{2}
[gentoo-commits] repo/gentoo:master commit in: app-portage/layman/
commit: 91d6125b5533cc9bd6b9ec5ba19370947f5ae70c Author: Devan Franchini gentoo org> AuthorDate: Fri Oct 16 21:02:21 2015 + Commit: Devan Franchini gentoo org> CommitDate: Fri Oct 16 21:09:03 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91d6125b app-portage/layman: Adds sqlite USE flag to ebuild Package-Manager: portage-2.2.20.1 app-portage/layman/layman-.ebuild | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app-portage/layman/layman-.ebuild b/app-portage/layman/layman-.ebuild index 1443944..1c1abf6 100644 --- a/app-portage/layman/layman-.ebuild +++ b/app-portage/layman/layman-.ebuild @@ -5,7 +5,7 @@ EAPI="5" PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy ) -PYTHON_REQ_USE="xml(+)" +PYTHON_REQ_USE="xml(+),sqlite?" inherit eutils distutils-r1 git-2 linux-info prefix @@ -17,10 +17,11 @@ EGIT_REPO_URI="git://anongit.gentoo.org/proj/layman.git" LICENSE="GPL-2" SLOT="0" KEYWORDS="" -IUSE="bazaar cvs darcs +git gpg g-sorcery mercurial squashfs subversion sync-plugin-portage test" +IUSE="bazaar cvs darcs +git gpg g-sorcery mercurial sqlite squashfs subversion sync-plugin-portage test" DEPEND="test? ( dev-vcs/subversion ) - app-text/asciidoc" + app-text/asciidoc + " RDEPEND=" bazaar? ( dev-vcs/bzr )
[gentoo-commits] repo/gentoo:master commit in: net-ftp/filezilla/
commit: cf13bca36d62406aab0c1c53cf9d50f5a80b8f76 Author: Bernard Cafarelli gentoo org> AuthorDate: Fri Oct 16 20:51:53 2015 + Commit: Bernard Cafarelli gentoo org> CommitDate: Fri Oct 16 20:52:08 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf13bca3 net-ftp/filezilla: bugfixes version bump Package-Manager: portage-2.2.23 net-ftp/filezilla/Manifest| 1 + net-ftp/filezilla/filezilla-3.14.1.ebuild | 79 +++ 2 files changed, 80 insertions(+) diff --git a/net-ftp/filezilla/Manifest b/net-ftp/filezilla/Manifest index 69c2e94..9008d0c 100644 --- a/net-ftp/filezilla/Manifest +++ b/net-ftp/filezilla/Manifest @@ -5,6 +5,7 @@ DIST FileZilla_3.12.0.2_src.tar.bz2 4440836 SHA256 7a296fc2cd94d00d3a14ad29b84ff DIST FileZilla_3.13.0_src.tar.bz2 4542742 SHA256 e6c21b41b1318d0d75273aca94cfda3039c9847bdb5adc4b9d480ecdcdfa4fc7 SHA512 f78b8387552fd829a3851bd358c1fbf78dfab3cea642734803220f4264029a898e7c65b0b82102373b27b981921d92143f2aaaf1163c20eed60a5727aca2ed12 WHIRLPOOL 21a8ba37b2fc96c8b047550c2c2634a81ec64c094d20c975a3ffdfafe0338c42f9e3f15e758f37bfb19bfa9f757ab877e52eb34d7b1e43901bd99d700bda26de DIST FileZilla_3.13.1_src.tar.bz2 4548641 SHA256 c16e7dc9f6b6663ff67de608df930148d693b61e70d76783a81db710f117e8c7 SHA512 98f78dee88976c506416bc02ea76fbfc57ca77d114f50530c9b4fc017bf0525cd4237da2d91f7587b9b510d59b0ec977529fc33765b8a0f9ec35169b9e7578db WHIRLPOOL c0b607f6479e21ed95c6ac6599c71135392b6585e44d55e3a4563053878f392e3ebc4902fb9d57ffef8eac7ed1705d75460b0ff46588e0c4458cfb0e1f748577 DIST FileZilla_3.14.0_src.tar.bz2 4415005 SHA256 92385ab4f30bc7e5e457d6a3310645cc6c4bd0e83a78e12c33f2778b73d579fd SHA512 00d81aeef1d30d16884d34a5c15584204f55f72d9a7ab88cca4ff953c6beda5ef2a7883d095c60826ccadc1c4529c0e6e93c50f5ececc598c2200c32cec5d4c5 WHIRLPOOL fd994ad7f150506111642015bf9ff87481231843512b6b5eac3b2e64ff4e63e2cd2933deb72b466785a09700fd88b9f45302b28dfed71f509001dbeb8a001d99 +DIST FileZilla_3.14.1_src.tar.bz2 4411187 SHA256 b10871b6ced5f52062b44deda037edb8a38090b226a018b9b64b1a1feb59d46c SHA512 c97767ed01f4538a2f4b8760601778ca7f9aa99b5b928cb86c9508eba0490bbc1f31921d098e0ccd30712ff06dc9f21d323201fb8bee80b9fb7a6528fbb03368 WHIRLPOOL 1fbccfbb0de5111fad14eb0b38ee190aefc4c80777c3611189c74412dfefdf2fd96d4a42c917791d3a3318b6ae22f01a7d24a4a0904386b22a98693151b5a822 DIST FileZilla_3.7.3_src.tar.bz2 3682494 SHA256 2b012970a6033d8ffd4629b1d57b50ace62cd3750efad70001109f25e520c042 SHA512 b20ec013110e643dd0afca960b4577dd4f17ae744caf63be64e0c8435b8812064aebb4167d0efb186ba171b26967bbc61b6b22a8866b2460530f5793d7d5ecfb WHIRLPOOL acfceb3976f53abcce8da25ea1358761ee6e1a5f556e335067ed665b710fb4a873cce4f62916a19ec784a542db367bed9380a17df37c6ae200fa52e5cd7cc910 DIST FileZilla_3.8.1_src.tar.bz2 4089186 SHA256 66bc9c082843ffdcb915c7902900b92bdf921ed7310f2a40ff6b96b03cfa1e4f SHA512 abe4b653ac0627f1dda8ae7b6bb3d1a92454b98ce69f6eb6fcced2e63b5d35edba578ba24f06b16218fcfd23edff21cc7c76fe1c7056efb129b081fddbd83101 WHIRLPOOL 94db8545244d1cd4bf0c3f4ed1daaabf150df262334c2311196b916a1d84d06026aa34707ce7d4e74a575a7eda18cb2da4c5e326d591bdc4bf71b69a6935fff9 DIST FileZilla_3.9.0.6_src.tar.bz2 4181121 SHA256 ce7f56b383fa59dc55b16d8695e9f03b6e86d59a04dce44a16b5d02b2391b0b7 SHA512 750bb9afc12d0015cab7f775878def5bbbc0d16eed7ab3d876888ebc1f72480e338acfd16cd2bbe9520c26d491a996c85f712f47d6cd7e05d083c189cd23899c WHIRLPOOL 4bdbbd570b2a0290e2c4dff1e02aec2484891f5100fc7829e75b3ccf4ff004a1cfacc328b85efbb60be9d058499d0b4b4e1e28927c345a9450e7204cd25746b2 diff --git a/net-ftp/filezilla/filezilla-3.14.1.ebuild b/net-ftp/filezilla/filezilla-3.14.1.ebuild new file mode 100644 index 000..00bfe84 --- /dev/null +++ b/net-ftp/filezilla/filezilla-3.14.1.ebuild @@ -0,0 +1,79 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +WX_GTK_VER="3.0" + +inherit autotools eutils flag-o-matic multilib wxwidgets + +MY_PV=${PV/_/-} +MY_P="FileZilla_${MY_PV}" + +DESCRIPTION="FTP client with lots of useful features and an intuitive interface" +HOMEPAGE="http://filezilla-project.org/"; +SRC_URI="mirror://sourceforge/${PN}/${MY_P}_src.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos" +IUSE="aqua dbus nls test" + +RDEPEND=">=app-eselect/eselect-wxwidgets-0.7-r1 + >=dev-db/sqlite-3.7 + net-dns/libidn + >=net-libs/gnutls-3.1.12 + aqua? ( >=x11-libs/wxGTK-3.0.2.0-r1:3.0[aqua] ) + !aqua? ( >=x11-libs/wxGTK-3.0.2.0-r1:3.0[X] x11-misc/xdg-utils ) + dbus? ( sys-apps/dbus )" +# >=dev-libs/pugixml-1.5 +DEPEND="${RDEPEND} + virtual/pkgconfig + >=sys-devel/libtool-1.4 + nls? ( >=sys-devel/gettext-0.11 ) + test? ( dev-util/cppunit )" + +S="${WORKDIR}"/${PN}-${MY_PV} + +pkg_pretend() { + if [[ ${MERGE_TYPE} != binary ]]; then + if ! test-flag-CXX -std
[gentoo-commits] repo/gentoo:master commit in: www-client/firefox/, www-client/firefox-bin/
commit: e874013c7209f95fd3e3496f245fe6db6095bcd6 Author: Ian Stakenvicius gentoo org> AuthorDate: Fri Oct 16 20:49:14 2015 + Commit: Ian Stakenvicius gentoo org> CommitDate: Fri Oct 16 20:50:18 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e874013c www-client/firefox{,-bin}: version bump to 41.0.2 for security bug 563230 Package-Manager: portage-2.2.20.1 www-client/firefox-bin/Manifest| 156 ++-- ...bin-41.0.1.ebuild => firefox-bin-41.0.2.ebuild} | 0 www-client/firefox/Manifest| 160 ++--- ...firefox-41.0.1.ebuild => firefox-41.0.2.ebuild} | 0 4 files changed, 158 insertions(+), 158 deletions(-) diff --git a/www-client/firefox-bin/Manifest b/www-client/firefox-bin/Manifest index e7a9325..8eca0e0 100644 --- a/www-client/firefox-bin/Manifest +++ b/www-client/firefox-bin/Manifest @@ -302,89 +302,89 @@ DIST firefox-38.3.0esr-uk.xpi 493314 SHA256 60c8b03bbf4805c3ba69234fa9cb04832d05 DIST firefox-38.3.0esr-vi.xpi 467505 SHA256 c24aa36964a321b9cab209a0ba851ccc268db3114f9209ff742c4ec0f4e4c8c8 SHA512 0536c4d48ee8ccce997e4f0302390af29ea63dab9152ec68baba4e6001510c1a003cdeaf8e96d6fe117039100f51a18f1c14e96908debdc7c30e627ba4e24cdf WHIRLPOOL 97911daa9241dcc9e844998eeaa6f0ace8084167ada3a94771f40fdb26650afb030075ef10e086a5ab79afdb4d54a53dec2aa459b82744a585fe9eed65781607 DIST firefox-38.3.0esr-zh-CN.xpi 488277 SHA256 1c1def4062ce15660670d7d31ee7672359fc50e9fe4b1f8d80e96f0d8adda199 SHA512 e9fa12f7b3fe537e82e93d9435f64d235c6f9c48b2a13c5fc43c8912c9fa6989eb28d69ea80abc55890f0e706490da56194af3a3af2133aecb4ffe8aa4bc2440 WHIRLPOOL 9de780fa30840d1193bf498cca66f81419c3e8526d1156d3629efc837855c2a771415ad8172bd24a85bcc64733da34a62f39a6f686b22cf8fabf9539d7cf9ccb DIST firefox-38.3.0esr-zh-TW.xpi 467844 SHA256 1dbaae6ea46991f5298bb5c03f0926b48d77c058ff07c44601377ecbe9837be3 SHA512 2a1b70a5199826983f877e1b435a650150533caa708e43b437ad41ea0f67d48225a54ad6980515eeacbda843c1a901fe0556b7e2362afdc3d63b67831b6b566b WHIRLPOOL 77f09701a72ddfb7610c842c97efef613cad31c573a3b8b4277f15f2c64e01423b2800dd5237b529a8a00b8aec876998a2f7c66d8ccbcc95880e3edc86cfdaf4 -DIST firefox-41.0.1-af.xpi 486122 SHA256 97350ade6c4b818a13c884c2840c196825d246386f11cef04fa7d45eab6329f3 SHA512 11357e648f080a1c9b9f04dc3171adfcc0922aba8dfa631d1b9d3488425218c7c69e293f8692dcfa4d1db911777def9d11acf7a511b97d7da9380ccd56de4f2b WHIRLPOOL 26f49c422c4887f5cd4d4efbc671ab452972d9a49ccf952d95f30bf89370c783d033f96a735c9761167d398e3ad5db5e1055c5bd68dd0147ea1e45a33457d01b -DIST firefox-41.0.1-ar.xpi 521161 SHA256 53d3aeb3303c1e0f73538a1af76617912c4faf78b5a463b9075c7fb9748bdf04 SHA512 ff099ecbf2778833fdad5b8990cfb148d1657143d665fb8914c53dc3c98379bb369af57726a7da5733bb0050f675eded31a5bca2bca2487bb5c6ff7206c18198 WHIRLPOOL 464874052f0fa19eab547f1c7c7b02f7496e4c9e26a2ba9d91c9f8610a525bbb90ae76919a0a4cc95e3f9b328c431399766f2de1ed5417ec7c9d509eff1da4ad -DIST firefox-41.0.1-as.xpi 511220 SHA256 12319363d20ae2d4338ef2faefd196c1aa79354266aaa96d5969365b27cf83aa SHA512 6ab50bbdcd7073ec2ecb59a3b95f6c4e5b0606fa9abc60e140baf74e4e8f125d43563c8975418545553da573ac15514a2fbebdfb11af50508238e88076e14846 WHIRLPOOL aee288fe315af256f8cc24096bfd486a970636767d48be2c19580ab20026136da85658e5122bc4fbf97e273d7ebdfcb75fad9644ec71da2917d425d139413947 -DIST firefox-41.0.1-ast.xpi 399124 SHA256 df0b1298c2bd9f6d2957357a5600fca58a5f370fdd9fdb3bc34d4308fe3ef8c5 SHA512 c3989a871b3c6fbf08590260c5c7af4073644d16f9cd4c997e0f1bc26471dd9e0622c54cdae0ed9b9d1ab25333fec172b477814c3282e81a86b592404fd4f2ab WHIRLPOOL 5d96386d9050542551d7a316228fdc0789f0babc53263b3192e26bc1e6812ade738d17b43317e0cae80a3ca7e1f3424762eb0b61744fa4ac70f3b9508f4c42ac -DIST firefox-41.0.1-be.xpi 453405 SHA256 bdf4c9737194edec2f44b810d9fc5059e9afff25993064edfca55f06d184df86 SHA512 698d890cad57a1d9001ecd5ec33d7286a3459aa510ce8671ec8d09bfbc44b0990ab021be23e9b57f8f1dfe0e856334eda7bb3ce15d21cb5e664086b7b4093511 WHIRLPOOL 052d83a88850583c2f3f886e83a8dc1bf32f71f3675c2cca5596497e5ca7b38033c9a6c81ea0e09eb096c2ae04e1db5326aa90e4f706069b1b8e4409120e6626 -DIST firefox-41.0.1-bg.xpi 492967 SHA256 b367bc4054df488173e914b3e872305f62ea9284ebf5b21828fa7f177c82883c SHA512 cf624a528fa6727a03ac453005d426319f1f0e40ea638149d611e43e4d31a8ef8a5be45f53502f5348866fe3a88f3ced8d9347302d90a6e2852158958df8859f WHIRLPOOL 98d6be18a84da6ae3b33322f2fd291c15866670fc39037b98954cc119875b43aea35da767bb66e2fc9515a1a475cb468a94e319eea865f8c7ed2b10d9eceb7dc -DIST firefox-41.0.1-bn-BD.xpi 527572 SHA256 8ed5167d4e7fc2a50e4af4da10e1bcf09cc8fbd850fa7ac481fb1654c10be945 SHA512 7abc61d0f7f127678c3ed9ace810845d3449ae313804c0daafeb5b98fdb9bd2d0ff67b821f622642756e9185add03f17f2cdd2dd3eea11332f137f46ef5bd7ce WHIRLPOOL 86252140dbed9d2c18135e4fe6af0d80c268095ff5a82d43b47ef10e112426fa735008018ff817d0b0fdce7155fb9154a9f928cba8acec8124f93c35ed140629 -DIST firefox-41.0.1-bn-IN.xpi 530270 SHA256 1cfd6cea984e69066fea5817366dd64ac491e5f9438b1
[gentoo-commits] repo/gentoo:master commit in: profiles/
commit: 32427c957a1c8b3e19d9d46f0b3c3aa7340a36c4 Author: Pawel Hajdan, Jr gentoo org> AuthorDate: Fri Oct 16 20:42:26 2015 + Commit: Paweł Hajdan gentoo org> CommitDate: Fri Oct 16 20:42:26 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32427c95 package.mask: roll mask for www-client/chromium-48 profiles/package.mask | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/profiles/package.mask b/profiles/package.mask index 212951e..e4f71e0 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -30,6 +30,11 @@ #--- END OF EXAMPLES --- +# Pawel Hajdan, Jr. (16 Oct 2015) +# Dev channel releases are only for people who are developers or want more +# experimental features and accept a more unstable release. +>=www-client/chromium-48 + # Hans de Graaff (11 Oct 2015) # Ruby 1.9 is no longer maintained upstream since January # 2015, bug 536852. @@ -264,11 +269,6 @@ app-portage/lightweight-cvs-toolkit # Masked for testing >=net-fs/samba-4.3.0 -# Pawel Hajdan, Jr. (08 Sep 2015) -# Dev channel releases are only for people who are developers or want more -# experimental features and accept a more unstable release. ->=www-client/chromium-47 - # Michael Palimaka (01 Sep 2015) # Fails to build (bug #559330). Dead upstream. # Masked for removal in 30 days.
[gentoo-commits] repo/gentoo:master commit in: www-client/chromium/
commit: 3e41e651d6b2810ed43cb1d65186104cbb20a63b Author: Pawel Hajdan, Jr gentoo org> AuthorDate: Fri Oct 16 20:44:58 2015 + Commit: Paweł Hajdan gentoo org> CommitDate: Fri Oct 16 20:44:58 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e41e651 www-client/chromium: dev channel bump (48.0.2535.0) Package-Manager: portage-2.2.20.1 www-client/chromium/Manifest| 1 + www-client/chromium/chromium-48.0.2535.0.ebuild | 654 2 files changed, 655 insertions(+) diff --git a/www-client/chromium/Manifest b/www-client/chromium/Manifest index 48430bd..f9a987b 100644 --- a/www-client/chromium/Manifest +++ b/www-client/chromium/Manifest @@ -5,3 +5,4 @@ DIST chromium-46.0.2490.42-lite.tar.xz 261753316 SHA256 8d24a64af63f88d2654141f2 DIST chromium-46.0.2490.71-lite.tar.xz 261722748 SHA256 28248eea8ee6855e6b5e41ff1cd28d8f5878896c2c388e113e419141c07dcbaf SHA512 e889739ab2783d617626e113642804c6e92bae08e4192b656c62f5efa57bee8db7eda2edc2e48a2245936f6c1a359ee55847c52a9d63588a0c5253332aeddd71 WHIRLPOOL b33fdc7f46dc90341acdb9cafd4854235479020d722fe6431c2e0e5626634eb0f8e1f34d0bb1f55adbc984c889f60f136f465bcc578005089f3b2b6360b57843 DIST chromium-47.0.2526.16-lite.tar.xz 302984700 SHA256 771deecde8d861e6ac7ba125113269566cad6a9dbdcf129eeac1005b38691096 SHA512 fed1e62c98ec2c21d7ff4b0357fdcd67b536b2bdf9eec3b043dd50127c073749cf8e138e7909481992ab3b4de4a47d34ede3bc348b4dad4964c4c2cd9cf52f84 WHIRLPOOL c45149bb9b91c215be65254680d878c5260ecdfb0a97325fd5726ad67d6fcedae8b70bb158ba1be1e10aed10cb6713625f444a85348c08098f25710df53be239 DIST chromium-47.0.2526.6-lite.tar.xz 302688196 SHA256 c794fa33f97b0ab9b77a9438d8ba86cd1311d18241acd53a6f23df058f051279 SHA512 838ca886e78e03e53bc8c6c9d0bd89d04004a8befc5021cc13cc1ac0b30620cac88d543353518a413ea94be503fcb64c0810b8bd24c706afa64c5e4425e4827e WHIRLPOOL ee7636c223d63bd46f65da05839af4da369445afe427eefb268066a86c5819385c75cdc1abb8ec9506defe631b0e1ef29b6e71a1d8d7331edc63c3be3a90a82a +DIST chromium-48.0.2535.0-lite.tar.xz 303353372 SHA256 5a15d41b5853308e49351abaf8063e3713ec0eb4496aa3bc732c31c2ee3966ff SHA512 70c6ec154be33bc6772b8bd06da0fbbbd6a159e54caa380f5e784e660d5e8838248591fc57cffa9356cb78a6a9abfff4a1ab028b41ed10e2b24593863149b98b WHIRLPOOL fba422c5d49c321c1cc15335b9050fe12f73df7d699afb55e438dcb4018b15d44eafecc907555de5a083e4e5b69f207c04bde9aea841ede61e0558ddbfd547fc diff --git a/www-client/chromium/chromium-48.0.2535.0.ebuild b/www-client/chromium/chromium-48.0.2535.0.ebuild new file mode 100644 index 000..bb24b4a --- /dev/null +++ b/www-client/chromium/chromium-48.0.2535.0.ebuild @@ -0,0 +1,654 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" +PYTHON_COMPAT=( python2_7 ) + +CHROMIUM_LANGS="am ar bg bn ca cs da de el en_GB es es_LA et fa fi fil fr gu he + hi hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt_BR pt_PT ro ru sk sl sr + sv sw ta te th tr uk vi zh_CN zh_TW" + +inherit check-reqs chromium eutils flag-o-matic multilib multiprocessing pax-utils \ + portability python-any-r1 readme.gentoo toolchain-funcs versionator virtualx + +DESCRIPTION="Open-source version of Google Chrome web browser" +HOMEPAGE="http://chromium.org/"; +SRC_URI="https://commondatastorage.googleapis.com/chromium-browser-official/${P}-lite.tar.xz"; + +LICENSE="BSD hotwording? ( no-source-code )" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="cups gnome gnome-keyring gtk3 hidpi hotwording kerberos neon pic +proprietary-codecs pulseaudio selinux +system-ffmpeg +tcmalloc widevine" +RESTRICT="!system-ffmpeg? ( proprietary-codecs? ( bindist ) )" + +# Native Client binaries are compiled with different set of flags, bug #452066. +QA_FLAGS_IGNORED=".*\.nexe" + +# Native Client binaries may be stripped by the build system, which uses the +# right tools for it, bug #469144 . +QA_PRESTRIPPED=".*\.nexe" + +RDEPEND=">=app-accessibility/speech-dispatcher-0.8:= + app-arch/bzip2:= + app-arch/snappy:= + cups? ( >=net-print/cups-1.3.11:= ) + >=dev-libs/elfutils-0.149 + dev-libs/expat:= + dev-libs/glib:= + >=dev-libs/icu-55.1:= + >=dev-libs/jsoncpp-0.5.0-r1:= + >=dev-libs/libevent-1.4.13:= + dev-libs/libxml2:=[icu] + dev-libs/libxslt:= + dev-libs/nspr:= + >=dev-libs/nss-3.14.3:= + dev-libs/re2:= + gnome? ( >=gnome-base/gconf-2.24.0:= ) + gnome-keyring? ( >=gnome-base/libgnome-keyring-3.12:= ) + >=media-libs/alsa-lib-1.0.19:= + media-libs/flac:= + media-libs/fontconfig:= + media-libs/freetype:= + media-libs/harfbuzz:=[icu(+)] + media-libs/libexif:= + >=media-libs/libjpeg-turbo-1.2.0-r1:= + media-libs/libpng:0= + >=media-libs/libwebp-0.4.0:= + media-libs/speex:= + pulseaudio? ( media-sound/pulseaudio:= ) + system-ffmpeg? ( >=media-video/ffmpeg-2.7.2:=[opus,v
[gentoo-commits] repo/gentoo:master commit in: dev-libs/openspecfun/
commit: 8cc232ae2c16cde07cf7ca2e86a4462e349ce2fc Author: Michael Schubert gmail com> AuthorDate: Fri Oct 16 15:07:48 2015 + Commit: Michał Górny gentoo org> CommitDate: Fri Oct 16 15:38:29 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cc232ae dev-libs/openspecfun-0.4-r1: respect ${EPREFIX} dev-libs/openspecfun/openspecfun-0.4-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-libs/openspecfun/openspecfun-0.4-r1.ebuild b/dev-libs/openspecfun/openspecfun-0.4-r1.ebuild index 2e6b994..26e1cde 100644 --- a/dev-libs/openspecfun/openspecfun-0.4-r1.ebuild +++ b/dev-libs/openspecfun/openspecfun-0.4-r1.ebuild @@ -20,5 +20,5 @@ src_prepare() { } src_install() { - emake DESTDIR="${D}" prefix="/usr" install + emake DESTDIR="${D}" prefix="${EPREFIX}/usr" install }
[gentoo-commits] repo/gentoo:master commit in: /
commit: 35078b9f03cfac62f597fb43453b442597c4137c Author: Michał Górny gentoo org> AuthorDate: Fri Oct 16 20:36:48 2015 + Commit: Michał Górny gentoo org> CommitDate: Fri Oct 16 20:36:48 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35078b9f dev-libs/openspecfun: Merge "Respect ${EPREFIX}" Pull-Request: https://github.com/gentoo/gentoo/pull/237 dev-libs/openspecfun/openspecfun-0.4-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
[gentoo-commits] repo/gentoo:master commit in: dev-util/abi-compliance-checker/
commit: 5ce49c10a88cbbe8b9cc49d44b99e49d2d582aeb Author: Michał Górny gentoo org> AuthorDate: Fri Oct 16 20:26:22 2015 + Commit: Michał Górny gentoo org> CommitDate: Fri Oct 16 20:28:57 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ce49c10 dev-util/abi-compliance-checker: Bump to 1.99.12 dev-util/abi-compliance-checker/Manifest | 1 + .../abi-compliance-checker-1.99.12.ebuild | 23 ++ 2 files changed, 24 insertions(+) diff --git a/dev-util/abi-compliance-checker/Manifest b/dev-util/abi-compliance-checker/Manifest index 1808a7d..309ea32 100644 --- a/dev-util/abi-compliance-checker/Manifest +++ b/dev-util/abi-compliance-checker/Manifest @@ -1 +1,2 @@ +DIST abi-compliance-checker-1.99.12.tar.gz 254441 SHA256 24b3dbf42d46f8ddb425b4156b0211288c30dd9d85a4bee34a3e3664b60a9f2e SHA512 6ba94d2b1ec6574f4e252e9829575ce1eab6f437e425bf98c94276359edfa41f8e014a9ddb5f06057a882ecdb63effab714cae9ce1089c28faa28b3e34ff0628 WHIRLPOOL 91605af7489e60b3217f5dec91bb9b6c574086158cad1929bd059ed092c709e2a406fd2dcc187872db38de28f22a4abddd119d01c392e92060d84b7a067003fa DIST abi-compliance-checker-1.99.9.tar.gz 272227 SHA256 52b0daca89fcda73cde126497c8015ca823417074ba02fcff68b7acf2f45e516 SHA512 bf3530463a93ed453c9479fa2907e8e68d34949e71bb552fabc43b37f7fa562a49339adc86de09596a13ccd5586bfc5fcb5df1d03ffa04020d9ac3622025b2be WHIRLPOOL 0d62b5c4b14e814231cfa06ffdcfd7fa44fecd2d154bf57b0abb13f2540f755b3de3179fd9d3c34720329f674285877b3b4e43dc904b9b1ae1c7b3c88467094e diff --git a/dev-util/abi-compliance-checker/abi-compliance-checker-1.99.12.ebuild b/dev-util/abi-compliance-checker/abi-compliance-checker-1.99.12.ebuild new file mode 100644 index 000..160c517 --- /dev/null +++ b/dev-util/abi-compliance-checker/abi-compliance-checker-1.99.12.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +DESCRIPTION="A tool for checking backward compatibility of a C/C++ library" +HOMEPAGE="http://ispras.linuxbase.org/index.php/ABI_compliance_checker"; +SRC_URI="https://github.com/lvc/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +src_compile() { + : +} + +src_install() { + mkdir -p "${D}"/usr || die + perl Makefile.pl --install --prefix=/usr --destdir="${D}" || die +}
[gentoo-commits] repo/gentoo:master commit in: dev-util/abi-compliance-checker/
commit: 883e194e455d012fa4b32eea027384cd64770c24 Author: Michał Górny gentoo org> AuthorDate: Fri Oct 16 20:21:38 2015 + Commit: Michał Górny gentoo org> CommitDate: Fri Oct 16 20:28:51 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=883e194e dev-util/abi-compliance-checker: ignore broken Makefile Ignore the Makefile that has been introduced upstream. It only calls 'install' with hardcoded '/usr' prefix, and does that as a default rule. Therefore, we need to wipe out src_compile() to make sure it doesn't try to install to the live system. dev-util/abi-compliance-checker/abi-compliance-checker-.ebuild | 4 1 file changed, 4 insertions(+) diff --git a/dev-util/abi-compliance-checker/abi-compliance-checker-.ebuild b/dev-util/abi-compliance-checker/abi-compliance-checker-.ebuild index 5359294..9c71e65 100644 --- a/dev-util/abi-compliance-checker/abi-compliance-checker-.ebuild +++ b/dev-util/abi-compliance-checker/abi-compliance-checker-.ebuild @@ -25,6 +25,10 @@ SRC_URI= KEYWORDS= #endif +src_compile() { + : +} + src_install() { mkdir -p "${D}"/usr || die perl Makefile.pl --install --prefix=/usr --destdir="${D}" || die
[gentoo-commits] proj/gentoolkit:master commit in: data/tmpfiles.d/, /
commit: f584990c08fc5a400277acfeaf01297f1d3b995b Author: Paul Varner gentoo org> AuthorDate: Fri Oct 16 20:00:54 2015 + Commit: Paul Varner gentoo org> CommitDate: Fri Oct 16 20:12:16 2015 + URL:https://gitweb.gentoo.org/proj/gentoolkit.git/commit/?id=f584990c revdep-rebuild: add tmpfiles.d file Add a configuration file to create /var/cache/revdep-rebuild. This is needed for fixing bug 498990 in the gentoolkit ebuild. data/tmpfiles.d/revdep-rebuild.conf | 1 + setup.py| 1 + 2 files changed, 2 insertions(+) diff --git a/data/tmpfiles.d/revdep-rebuild.conf b/data/tmpfiles.d/revdep-rebuild.conf new file mode 100644 index 000..2437bcf --- /dev/null +++ b/data/tmpfiles.d/revdep-rebuild.conf @@ -0,0 +1 @@ +d /var/cache/revdep-rebuild 0700 0 0 diff --git a/setup.py b/setup.py index ae4b7c7..b32b7d6 100755 --- a/setup.py +++ b/setup.py @@ -151,6 +151,7 @@ core.setup( (os.path.join(os.sep, EPREFIX.lstrip(os.sep), 'etc/revdep-rebuild'), ['data/revdep-rebuild/99revdep-rebuild']), (os.path.join(os.sep, EPREFIX.lstrip(os.sep), 'etc/eclean'), glob('data/eclean/*')), (os.path.join(os.sep, EPREFIX.lstrip(os.sep), 'usr/share/man/man1'), glob('man/*')), + (os.path.join(os.sep, EPREFIX.lstrip(os.sep), 'etc/tmpfiles.d'), ['data/tmpfiles.d/revdep-rebuild.conf']), ), cmdclass={ 'test': load_test(),
[gentoo-commits] repo/gentoo:master commit in: net-proxy/haproxy/
commit: 1600c8dff503f1c00b582b966163a09a6eab1393 Author: Christian Ruppert gentoo org> AuthorDate: Wed Oct 14 17:33:12 2015 + Commit: Christian Ruppert gentoo org> CommitDate: Fri Oct 16 20:10:18 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1600c8df net-proxy/haproxy: Remove old ebuilds Package-Manager: portage-2.2.23 net-proxy/haproxy/Manifest | 2 - net-proxy/haproxy/haproxy-1.4.25.ebuild | 89 -- net-proxy/haproxy/haproxy-1.5.4.ebuild | 128 3 files changed, 219 deletions(-) diff --git a/net-proxy/haproxy/Manifest b/net-proxy/haproxy/Manifest index 0c4fa2a..7f4d4fe 100644 --- a/net-proxy/haproxy/Manifest +++ b/net-proxy/haproxy/Manifest @@ -1,4 +1,2 @@ -DIST haproxy-1.4.25.tar.gz 838775 SHA256 84408ec1e37bf308c6b45ae3c7e66f2a9d2f762cb689ab6d322c67bba691db62 SHA512 c3424151309be5eea761ff02b29a0e54bd34f5fcb4087e8b99fb2f4cde17bbc3caf07b6cb41ae5a2606325f8a950a06c4683ceb04c05fd6ebf0177326030bca9 WHIRLPOOL 0b32acffc82d216325abd330073717d951aa8cff349d538fa42a9de76154e1f7be5b1718854d04be41f78834b914b83be804557eb20aa174db71769060c9f644 DIST haproxy-1.4.26.tar.gz 837280 SHA256 a8787dae723c045eebd0ed9e0213514f909a67325d64e963eaf50c35b147d3d3 SHA512 f21901069f651f3320c2b7cb6aee96fced5d4d5d4a73eec0d94dd8bd109a391d8da85026389e7209f85026cdefc1b879afcfd0a9bc0970e41aedd59e35935454 WHIRLPOOL 406b7f8bb4b9b3f6b8080f58431a804abea1d834ef9b8d86ede328b27e4f3fe944fbdae5bad8c3f7da75c81c92ff0e030950e09feac28eac4f763e511b5e7dce DIST haproxy-1.5.14.tar.gz 1345345 SHA256 9565dd38649064d0350a2883fa81ccfe92eb17dcda457ebdc01535e1ab0c8f99 SHA512 83d6101fd402f37845ab3febc914335e4c6d9bdebbb0ff81c8e048d5252ffa5a1b77c4250a434fed5dd541ef1f1f2c47d969b59f7a51d6ab9aea38a8646a9798 WHIRLPOOL 7d2c580589b9b31e1eba169e4bf930ac42d2564e21eb1c25adbdd39b701abd221fd671ebc227167ab956a48b2c30eeb740a6394355a8fa748c408ee42fdff6fc -DIST haproxy-1.5.4.tar.gz 1336140 SHA256 75056ca5b9121b193d383ba4ebc6e5a3782c537a7499db80fce8d6d5fd265e10 SHA512 9ba6a82207487a8e59117c21de0dd7a178cc4bf472cc99fbca21146883f8a2ffe1b3d0bab316999abc151e16ad363f80b593205f39fa2cb173ba37b086076323 WHIRLPOOL 19ef3cbe10aac30c80ac193e7728f5f5127ce690e4f4e314e3ea23743701adffb2f7248a37b2d3737461abf89f575612980208a8af8499dffc34e28b40817389 diff --git a/net-proxy/haproxy/haproxy-1.4.25.ebuild b/net-proxy/haproxy/haproxy-1.4.25.ebuild deleted file mode 100644 index 7bf4532..000 --- a/net-proxy/haproxy/haproxy-1.4.25.ebuild +++ /dev/null @@ -1,89 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" - -inherit user versionator toolchain-funcs flag-o-matic - -DESCRIPTION="A TCP/HTTP reverse proxy for high availability environments" -HOMEPAGE="http://haproxy.1wt.eu"; -SRC_URI="http://haproxy.1wt.eu/download/$(get_version_component_range 1-2)/src/${P}.tar.gz" - -LICENSE="GPL-2 LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="+crypt examples +pcre vim-syntax" - -DEPEND="pcre? ( dev-libs/libpcre )" -RDEPEND="${DEPEND}" - -pkg_setup() { - enewgroup haproxy - enewuser haproxy -1 -1 -1 haproxy -} - -src_compile() { - local args="TARGET=linux2628" - - if use pcre; then - args="${args} USE_PCRE=1" - else - args="${args} USE_PCRE=" - fi - -# if use kernel_linux; then -# args="${args} USE_LINUX_SPLICE=1 USE_LINUX_TPROXY=1" -# else -# args="${args} USE_LINUX_SPLICE= USE_LINUX_TPROXY=" -# fi - - if use crypt; then - args="${args} USE_LIBCRYPT=1" - else - args="${args} USE_LIBCRYPT=" - fi - - # For now, until the strict-aliasing breakage will be fixed -# append-cflags -fno-strict-aliasing - - emake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" CC=$(tc-getCC) ${args} || die -} - -src_install() { - dobin haproxy || die - - newinitd "${FILESDIR}/haproxy.initd-r2" haproxy || die - - # Don't install useless files - rm examples/build.cfg doc/*gpl.txt - - dodoc CHANGELOG ROADMAP TODO doc/{configuration,haproxy-en}.txt - doman doc/haproxy.1 - - if use examples; - then - docinto examples - dodoc examples/*.cfg || die - fi - - if use vim-syntax; - then - insinto /usr/share/vim/vimfiles/syntax - doins examples/haproxy.vim || die - fi -} - -pkg_postinst() { - if [[ ! -f "${ROOT}/etc/haproxy.cfg" ]] ; then - ewarn "You need to create /etc/haproxy.cfg before you start the haproxy service." - ewarn "It's best practice to not run haproxy as root, user and group haproxy was therefore created." - ewarn "Make use of them with the \"user\" and \"group\" directives." - - if [[ -d "${ROOT}/usr/share/doc/${PF}" ]]; then - einfo "
[gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-xineliboutput/
commit: b66c99006d161fbe84cdbc0cd9a6a70f9114e71b Author: Christian Ruppert gentoo org> AuthorDate: Sat Oct 10 19:16:08 2015 + Commit: Christian Ruppert gentoo org> CommitDate: Fri Oct 16 20:10:17 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b66c9900 media-plugins/vdr-xineliboutput: doinit -> doinitd Package-Manager: portage-2.2.23 .../vdr-xineliboutput/vdr-xineliboutput-2.0.0_p20130821.ebuild | 2 +- .../vdr-xineliboutput/vdr-xineliboutput-2.0.0_p20150220.ebuild | 2 +- media-plugins/vdr-xineliboutput/vdr-xineliboutput-.ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/media-plugins/vdr-xineliboutput/vdr-xineliboutput-2.0.0_p20130821.ebuild b/media-plugins/vdr-xineliboutput/vdr-xineliboutput-2.0.0_p20130821.ebuild index 98efcd1..1838c03 100644 --- a/media-plugins/vdr-xineliboutput/vdr-xineliboutput-2.0.0_p20130821.ebuild +++ b/media-plugins/vdr-xineliboutput/vdr-xineliboutput-2.0.0_p20130821.ebuild @@ -127,7 +127,7 @@ src_install() { fi if use xine; then - doinit "${FILESDIR}"/vdr-frontend + doinitd "${FILESDIR}"/vdr-frontend insinto $XINE_PLUGIN_DIR doins xineplug_inp_xvdr.so diff --git a/media-plugins/vdr-xineliboutput/vdr-xineliboutput-2.0.0_p20150220.ebuild b/media-plugins/vdr-xineliboutput/vdr-xineliboutput-2.0.0_p20150220.ebuild index a64f98d..637c1dc 100644 --- a/media-plugins/vdr-xineliboutput/vdr-xineliboutput-2.0.0_p20150220.ebuild +++ b/media-plugins/vdr-xineliboutput/vdr-xineliboutput-2.0.0_p20150220.ebuild @@ -117,7 +117,7 @@ src_install() { fi if use xine; then - doinit "${FILESDIR}"/vdr-frontend + doinitd "${FILESDIR}"/vdr-frontend insinto $XINE_PLUGIN_DIR doins xineplug_inp_xvdr.so diff --git a/media-plugins/vdr-xineliboutput/vdr-xineliboutput-.ebuild b/media-plugins/vdr-xineliboutput/vdr-xineliboutput-.ebuild index 9811633..ca97a9d 100644 --- a/media-plugins/vdr-xineliboutput/vdr-xineliboutput-.ebuild +++ b/media-plugins/vdr-xineliboutput/vdr-xineliboutput-.ebuild @@ -131,7 +131,7 @@ src_install() { fi if use xine; then - doinit "${FILESDIR}"/vdr-frontend + doinitd "${FILESDIR}"/vdr-frontend insinto $XINE_PLUGIN_DIR doins xineplug_inp_xvdr.so
[gentoo-commits] repo/gentoo:master commit in: net-proxy/haproxy/, net-proxy/haproxy/files/
commit: baa4e242781638ae2d093ed51017b3b89a8c47e9 Author: Christian Ruppert gentoo org> AuthorDate: Fri Oct 16 20:09:47 2015 + Commit: Christian Ruppert gentoo org> CommitDate: Fri Oct 16 20:10:20 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=baa4e242 net-proxy/haproxy: Version bump to 1.6.0. Also fixes bug 555864 Package-Manager: portage-2.2.23 net-proxy/haproxy/Manifest | 1 + net-proxy/haproxy/files/haproxy.confd| 14 +++ net-proxy/haproxy/files/haproxy.initd-r3 | 75 ++ net-proxy/haproxy/haproxy-1.6.0.ebuild | 161 +++ net-proxy/haproxy/metadata.xml | 1 + 5 files changed, 252 insertions(+) diff --git a/net-proxy/haproxy/Manifest b/net-proxy/haproxy/Manifest index 7f4d4fe..f2ed0d7 100644 --- a/net-proxy/haproxy/Manifest +++ b/net-proxy/haproxy/Manifest @@ -1,2 +1,3 @@ DIST haproxy-1.4.26.tar.gz 837280 SHA256 a8787dae723c045eebd0ed9e0213514f909a67325d64e963eaf50c35b147d3d3 SHA512 f21901069f651f3320c2b7cb6aee96fced5d4d5d4a73eec0d94dd8bd109a391d8da85026389e7209f85026cdefc1b879afcfd0a9bc0970e41aedd59e35935454 WHIRLPOOL 406b7f8bb4b9b3f6b8080f58431a804abea1d834ef9b8d86ede328b27e4f3fe944fbdae5bad8c3f7da75c81c92ff0e030950e09feac28eac4f763e511b5e7dce DIST haproxy-1.5.14.tar.gz 1345345 SHA256 9565dd38649064d0350a2883fa81ccfe92eb17dcda457ebdc01535e1ab0c8f99 SHA512 83d6101fd402f37845ab3febc914335e4c6d9bdebbb0ff81c8e048d5252ffa5a1b77c4250a434fed5dd541ef1f1f2c47d969b59f7a51d6ab9aea38a8646a9798 WHIRLPOOL 7d2c580589b9b31e1eba169e4bf930ac42d2564e21eb1c25adbdd39b701abd221fd671ebc227167ab956a48b2c30eeb740a6394355a8fa748c408ee42fdff6fc +DIST haproxy-1.6.0.tar.gz 1538022 SHA256 e83a272b7d3638cf1d37bba58d3e75f497c1862315ee5bb7f5efc1d98d26e25b SHA512 44bfcd040c87e0c3e7d925bb671009e8ed568a7a32ae32ac5d58921417aaa458b772a1368876fee8bf9252106fb315c1c3d29b7f03739a239567b86fb3c25e8e WHIRLPOOL 06afedc7dc7110e0985864f6d955261489997fd55644a16320203e47e14fc6f3bbb9020b772dfc571c01c76c7a55c8883a910f5b0553e70d4f321c1a14d97a2d diff --git a/net-proxy/haproxy/files/haproxy.confd b/net-proxy/haproxy/files/haproxy.confd new file mode 100644 index 000..5a989a7 --- /dev/null +++ b/net-proxy/haproxy/files/haproxy.confd @@ -0,0 +1,14 @@ +# HAProxy config file(s), space separated +#CONFIGS="/etc/haproxy/haproxy.cfg" + +# Additional HAProxy command line options +HAPROXY_OPTS="" + +# If you want to make use ot the new seamless reload you can just write your own +# reload_seamless function here. It will be called by the init script. +# For more information on how to use that feature please have a look at the +# "seamless_reload.txt" documentation file (requires net-proxy/haproxy[examples]) +#reload_seamless() { +# checkpath -d -m 0700 haproxy:haproxy "/var/run/haproxy/" +# socat /var/run/haproxy/socket - <<< "show servers state" > /var/run/haproxy/global.state +#} diff --git a/net-proxy/haproxy/files/haproxy.initd-r3 b/net-proxy/haproxy/files/haproxy.initd-r3 new file mode 100644 index 000..4b3a0e6 --- /dev/null +++ b/net-proxy/haproxy/files/haproxy.initd-r3 @@ -0,0 +1,75 @@ +#!/sbin/runscript +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +extra_commands="checkconfig" +extra_started_commands="reload" + +command="/usr/bin/haproxy" + +pidfile="${HAPROXY_PIDFILE:-/var/run/${SVCNAME}.pid}" + +configs= + +if [ -z "${CONFIGS}" ]; then + if [ -f "/etc/haproxy/${SVCNAME}.cfg" ]; then + CONFIGS=/etc/haproxy/${SVCNAME}.cfg + elif [ -f "/etc/${SVCNAME}.cfg" ]; then + CONFIGS=/etc/${SVCNAME}.cfg # Deprecated + fi +fi + +for conf in $CONFIGS; do + configs="${configs} -f ${conf}" +done + +command_args="-D -p ${pidfile} ${configs} ${HAPROXY_OPTS}" + +depend() { + need net + use dns logger +} + +checkconfig() { + if [ -z "${CONFIGS}" ]; then + eerror "No config(s) has been specified" + return 1 + fi + + for conf in $CONFIGS; do + if [ ! -f "${conf}" ]; then + eerror "${conf} does not exist!" + return 1 + fi + done + + ebegin "Checking ${CONFIGS}" + $command -q -c $configs $HAPROXY_OPTS + eend $? +} + +start_pre() { + if [ "${RC_CMD}" != "restart" ]; then + checkconfig || return 1 + fi +} + +stop_pre() { + if [ "${RC_CMD}" = "restart" ]; then + checkconfig || return 1 + fi +} + +reload() { + checkconfig || { eerror "Reloading failed, please fix your config(s) first"; return 1; } + + if [ "$(command -v reload_seamless)" = "reload_seamless" ]; then + einfo "Calling user-defined reload_seamless()" + reload_seamless || { eerror "reload_seamless() failed!"; return 1; } + fi + + ebegin "Reloading ${SVCNAME}" + $command -D -
[gentoo-commits] repo/gentoo:master commit in: x11-misc/sddm/files/, x11-misc/sddm/
commit: b10b19ab1f8fb85673011d7f37f6cf1a6ab4bb2e Author: Jauhien Piatlicki gentoo org> AuthorDate: Fri Oct 16 20:11:57 2015 + Commit: Jauhien Piatlicki gentoo org> CommitDate: Fri Oct 16 20:14:19 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b10b19ab x11-misc/sddm: fix CVE-2015-0856 x11-misc/sddm does not prevent access to the KDE crash handler Gentoo-Bug: 563108 Package-Manager: portage-2.2.20.1 .../sddm/files/sddm-0.12.0-CVE-2015-0856.patch | 34 ++ x11-misc/sddm/sddm-0.11.0-r3.ebuild| 4 +-- x11-misc/sddm/sddm-0.12.0.ebuild | 3 +- 3 files changed, 38 insertions(+), 3 deletions(-) diff --git a/x11-misc/sddm/files/sddm-0.12.0-CVE-2015-0856.patch b/x11-misc/sddm/files/sddm-0.12.0-CVE-2015-0856.patch new file mode 100644 index 000..7ae6773 --- /dev/null +++ b/x11-misc/sddm/files/sddm-0.12.0-CVE-2015-0856.patch @@ -0,0 +1,34 @@ +commit 4cfed6b0a625593fb43876f04badc4dd99799d86 +Author: David Edmundson +Date: Wed Oct 14 00:08:59 2015 +0100 + +Disable greeters from loading KDE's debug hander + +Some themes may use KDE components which will automatically load KDE's +crash handler. + +If the greeter were to then somehow crash, that would leave a crash +handler allowing other actions, albeit as the locked down SDDM user. + +Only SDDM users using the breeze theme from plasma-workspace are +affected. Safest and simplest fix is to handle this inside SDDM +disabling kcrash via an environment variable for all future themes that +may use these libraries. + +CVE-2015-0856 + +diff --git a/src/daemon/Greeter.cpp b/src/daemon/Greeter.cpp +index 68c4dc3..8c936b7 100644 +--- a/src/daemon/Greeter.cpp b/src/daemon/Greeter.cpp +@@ -145,6 +145,10 @@ namespace SDDM { + env.insert(QStringLiteral("XDG_VTNR"), QString::number(m_display->terminalId())); + env.insert(QStringLiteral("XDG_SESSION_CLASS"), QStringLiteral("greeter")); + env.insert(QStringLiteral("XDG_SESSION_TYPE"), m_display->sessionType()); ++ ++//some themes may use KDE components and that will automatically load KDE's crash handler which we don't want ++//counterintuitively setting this env disables that handler ++env.insert(QStringLiteral("KDE_DEBUG"), QStringLiteral("1")); + m_auth->insertEnvironment(env); + + // log message diff --git a/x11-misc/sddm/sddm-0.11.0-r3.ebuild b/x11-misc/sddm/sddm-0.11.0-r3.ebuild index 32fd737..6c5dac9 100644 --- a/x11-misc/sddm/sddm-0.11.0-r3.ebuild +++ b/x11-misc/sddm/sddm-0.11.0-r3.ebuild @@ -38,8 +38,8 @@ pkg_pretend() { src_prepare() { use consolekit && epatch "${FILESDIR}/${P}-consolekit.patch" use !systemd && epatch "${FILESDIR}/${PN}-0.10.0-upower.patch" - # fix bug 552318 - epatch "${FILESDIR}/${P}-dbus-config.patch" + # fix bug 552318 and bug 563108 + epatch "${FILESDIR}/${P}-dbus-config.patch" "${FILESDIR}/${PN}-0.12.0-CVE-2015-0856.patch" # respect user's cflags sed -e 's|-Wall -march=native||' \ diff --git a/x11-misc/sddm/sddm-0.12.0.ebuild b/x11-misc/sddm/sddm-0.12.0.ebuild index 14af057..0acdabc 100644 --- a/x11-misc/sddm/sddm-0.12.0.ebuild +++ b/x11-misc/sddm/sddm-0.12.0.ebuild @@ -43,7 +43,8 @@ pkg_pretend() { src_prepare() { cmake-utils_src_prepare - epatch "${FILESDIR}/${P}-respect-user-flags.patch" + # fix for flags handling and bug 563108 + epatch "${FILESDIR}/${P}-respect-user-flags.patch" "${FILESDIR}/${P}-CVE-2015-0856.patch" use consolekit && epatch "${FILESDIR}/${PN}-0.11.0-consolekit.patch" }
[gentoo-commits] repo/gentoo:master commit in: net-im/jabberd2/
commit: 7f11f335b062d10a0a9369bbd7d503f0d37e5234 Author: Julian Ospald gentoo org> AuthorDate: Fri Oct 16 19:20:36 2015 + Commit: Julian Ospald gentoo org> CommitDate: Fri Oct 16 19:28:54 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f11f335 net-im/jabberd2: add missing [-bindist] to dev-libs/openssl Gentoo-Bug: 563268 net-im/jabberd2/jabberd2-2.3.3-r1.ebuild | 157 +++ 1 file changed, 157 insertions(+) diff --git a/net-im/jabberd2/jabberd2-2.3.3-r1.ebuild b/net-im/jabberd2/jabberd2-2.3.3-r1.ebuild new file mode 100644 index 000..62311a9 --- /dev/null +++ b/net-im/jabberd2/jabberd2-2.3.3-r1.ebuild @@ -0,0 +1,157 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit db-use eutils flag-o-matic pam + +DESCRIPTION="Open Source Jabber Server" +HOMEPAGE="http://jabberd2.org"; +SRC_URI="https://github.com/jabberd2/jabberd2/releases/download/jabberd-${PV}/jabberd-${PV}.tar.xz"; + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd" +IUSE="berkdb debug experimental ldap memdebug mysql pam postgres sqlite ssl test zlib" +REQUIRED_USE="memdebug? ( debug )" + +# broken +RESTRICT="test" + +DEPEND="dev-libs/expat + net-libs/udns + net-dns/libidn + virtual/gsasl + berkdb? ( >=sys-libs/db-4.1.25:* ) + ldap? ( net-nds/openldap ) + mysql? ( virtual/mysql ) + pam? ( virtual/pam ) + postgres? ( dev-db/postgresql:* ) + ssl? ( >=dev-libs/openssl-1.0.1:0[-bindist] ) + sqlite? ( dev-db/sqlite:3 ) + zlib? ( sys-libs/zlib )" +RDEPEND="${DEPEND} + >=net-im/jabber-base-0.01" +DEPEND="${DEPEND} + app-arch/xz-utils + virtual/pkgconfig + test? ( dev-libs/check )" + +DOCS=( AUTHORS README ) + +S=${WORKDIR}/jabberd-${PV} + +src_prepare() { + # Fix some default directory locations + sed -i \ + -e 's,@localstatedir@/@package@/pid/,/var/run/@package@/,g' \ + -e 's,@localstatedir@/@package@/run/pbx,/var/run/@package@/pbx,g' \ + -e 's,@localstatedir@/@package@/log/,/var/log/@package@/,g' \ + -e 's,@localstatedir@/lib/jabberd2/fs,@localstatedir@/@package@/fs,g' \ + -e 's,@localstatedir@,/var/spool,g' \ + -e 's,@package@,jabber,g' \ + etc/{sm,router,c2s,s2s}.xml.dist.in || die "fixing default directory locations failed!" + + # If the package wasn't merged with sqlite then default to use berkdb + use sqlite || + sed -i \ + -e 's,<\(module\|driver\)>sqlite<\/\1>,<\1>db,g' \ + etc/{c2s,sm}.xml.dist.in || die "setting berkdb as default failed!" + + # avoid file collision with x11-misc/screen-message wrt #453994 + sed -i \ + -e 's/@jabberd_router_bin@/jabberd2-router/' \ + -e 's/@jabberd_c2s_bin@/jabberd2-c2s/' \ + -e 's/@jabberd_s2s_bin@/jabberd2-s2s/' \ + -e 's/@jabberd_sm_bin@/jabberd2-sm/' \ + etc/jabberd*.in || die "fixing file collisions failed!" + + # rename pid files wrt #241472 + sed -i \ + -e '/pidfile/s/c2s\.pid/jabberd2-c2s\.pid/' \ + -e '/pidfile/s/router\.pid/jabberd2-router\.pid/' \ + -e '/pidfile/s/s2s\.pid/jabberd2-s2s\.pid/' \ + -e '/pidfile/s/sm\.pid/jabberd2-sm\.pid/' \ + etc/*.xml.dist.in || die "renaming pid files failed!" +} + +src_configure() { + # https://bugs.gentoo.org/show_bug.cgi?id=207655#c3 + # https://github.com/jabberd2/jabberd2/issues/34 + replace-flags -O[3s] -O2 + + # --enable-pool-debug is currently broken + econf \ + --sysconfdir=/etc/jabber \ + $(usex debug "--enable-debug" "") \ + $(usex memdebug "--enable-nad-debug" "") \ + $(use_enable ssl) \ + $(use_enable mysql) \ + $(use_enable postgres pgsql) \ + $(use_enable sqlite) \ + $(use_enable berkdb db) \ + $(use_enable ldap) \ + $(use_enable pam) \ + --enable-pipe \ + --enable-anon \ + --enable-fs \ + $(use_enable experimental) \ + $(use_enable test tests) \ + $(usex berkdb "--with-extra-include-path=$(db_includedir)" "") \ + $(use_with zlib) +} + +src_install() { + local i + + default + prune_libtool_files --modules + + keepdir /var/spool/jabber/{fs,db} + fowners jabber:jabber /usr/bin/{jabberd,router,sm,c2s,s2s} \ + /var/spool/jabber/{fs,db} + fperms 770 /var/spool/jabber/{fs,db} + fperms 750 /usr/bin/{jabberd,router,sm,c2s,s2s} + + # avoid file collision with x11-misc/screen-message wrt #453994 + for i in ro
[gentoo-commits] repo/gentoo:master commit in: net-im/jabberd2/
commit: 4611e73baf38a00855a105e1b0a7fdf0957aa132 Author: Julian Ospald gentoo org> AuthorDate: Fri Oct 16 19:24:13 2015 + Commit: Julian Ospald gentoo org> CommitDate: Fri Oct 16 19:28:57 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4611e73b net-im/jabberd2: add libressl support net-im/jabberd2/jabberd2-2.3.3-r1.ebuild | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/net-im/jabberd2/jabberd2-2.3.3-r1.ebuild b/net-im/jabberd2/jabberd2-2.3.3-r1.ebuild index 62311a9..46f641a 100644 --- a/net-im/jabberd2/jabberd2-2.3.3-r1.ebuild +++ b/net-im/jabberd2/jabberd2-2.3.3-r1.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/jabberd2/jabberd2/releases/download/jabberd-${PV}/ja LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd" -IUSE="berkdb debug experimental ldap memdebug mysql pam postgres sqlite ssl test zlib" +IUSE="berkdb debug experimental ldap libressl memdebug mysql pam postgres sqlite ssl test zlib" REQUIRED_USE="memdebug? ( debug )" # broken @@ -28,7 +28,10 @@ DEPEND="dev-libs/expat mysql? ( virtual/mysql ) pam? ( virtual/pam ) postgres? ( dev-db/postgresql:* ) - ssl? ( >=dev-libs/openssl-1.0.1:0[-bindist] ) + ssl? ( + !libressl? ( >=dev-libs/openssl-1.0.1:0[-bindist] ) + libressl? ( dev-libs/libressl ) + ) sqlite? ( dev-db/sqlite:3 ) zlib? ( sys-libs/zlib )" RDEPEND="${DEPEND}
[gentoo-commits] repo/gentoo:master commit in: net-im/jabberd2/
commit: e4cb298d2de5f3b24f154cf0a5612a8f06ef4df9 Author: Julian Ospald gentoo org> AuthorDate: Fri Oct 16 19:20:57 2015 + Commit: Julian Ospald gentoo org> CommitDate: Fri Oct 16 19:28:56 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4cb298d net-im/jabberd2: rm old 2.3.3 net-im/jabberd2/jabberd2-2.3.3.ebuild | 157 -- 1 file changed, 157 deletions(-) diff --git a/net-im/jabberd2/jabberd2-2.3.3.ebuild b/net-im/jabberd2/jabberd2-2.3.3.ebuild deleted file mode 100644 index af82c89..000 --- a/net-im/jabberd2/jabberd2-2.3.3.ebuild +++ /dev/null @@ -1,157 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit db-use eutils flag-o-matic pam - -DESCRIPTION="Open Source Jabber Server" -HOMEPAGE="http://jabberd2.org"; -SRC_URI="https://github.com/jabberd2/jabberd2/releases/download/jabberd-${PV}/jabberd-${PV}.tar.xz"; - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd" -IUSE="berkdb debug experimental ldap memdebug mysql pam postgres sqlite ssl test zlib" -REQUIRED_USE="memdebug? ( debug )" - -# broken -RESTRICT="test" - -DEPEND="dev-libs/expat - net-libs/udns - net-dns/libidn - virtual/gsasl - berkdb? ( >=sys-libs/db-4.1.25:* ) - ldap? ( net-nds/openldap ) - mysql? ( virtual/mysql ) - pam? ( virtual/pam ) - postgres? ( dev-db/postgresql:* ) - ssl? ( >=dev-libs/openssl-1.0.1:0 ) - sqlite? ( dev-db/sqlite:3 ) - zlib? ( sys-libs/zlib )" -RDEPEND="${DEPEND} - >=net-im/jabber-base-0.01" -DEPEND="${DEPEND} - app-arch/xz-utils - virtual/pkgconfig - test? ( dev-libs/check )" - -DOCS=( AUTHORS README ) - -S=${WORKDIR}/jabberd-${PV} - -src_prepare() { - # Fix some default directory locations - sed -i \ - -e 's,@localstatedir@/@package@/pid/,/var/run/@package@/,g' \ - -e 's,@localstatedir@/@package@/run/pbx,/var/run/@package@/pbx,g' \ - -e 's,@localstatedir@/@package@/log/,/var/log/@package@/,g' \ - -e 's,@localstatedir@/lib/jabberd2/fs,@localstatedir@/@package@/fs,g' \ - -e 's,@localstatedir@,/var/spool,g' \ - -e 's,@package@,jabber,g' \ - etc/{sm,router,c2s,s2s}.xml.dist.in || die "fixing default directory locations failed!" - - # If the package wasn't merged with sqlite then default to use berkdb - use sqlite || - sed -i \ - -e 's,<\(module\|driver\)>sqlite<\/\1>,<\1>db,g' \ - etc/{c2s,sm}.xml.dist.in || die "setting berkdb as default failed!" - - # avoid file collision with x11-misc/screen-message wrt #453994 - sed -i \ - -e 's/@jabberd_router_bin@/jabberd2-router/' \ - -e 's/@jabberd_c2s_bin@/jabberd2-c2s/' \ - -e 's/@jabberd_s2s_bin@/jabberd2-s2s/' \ - -e 's/@jabberd_sm_bin@/jabberd2-sm/' \ - etc/jabberd*.in || die "fixing file collisions failed!" - - # rename pid files wrt #241472 - sed -i \ - -e '/pidfile/s/c2s\.pid/jabberd2-c2s\.pid/' \ - -e '/pidfile/s/router\.pid/jabberd2-router\.pid/' \ - -e '/pidfile/s/s2s\.pid/jabberd2-s2s\.pid/' \ - -e '/pidfile/s/sm\.pid/jabberd2-sm\.pid/' \ - etc/*.xml.dist.in || die "renaming pid files failed!" -} - -src_configure() { - # https://bugs.gentoo.org/show_bug.cgi?id=207655#c3 - # https://github.com/jabberd2/jabberd2/issues/34 - replace-flags -O[3s] -O2 - - # --enable-pool-debug is currently broken - econf \ - --sysconfdir=/etc/jabber \ - $(usex debug "--enable-debug" "") \ - $(usex memdebug "--enable-nad-debug" "") \ - $(use_enable ssl) \ - $(use_enable mysql) \ - $(use_enable postgres pgsql) \ - $(use_enable sqlite) \ - $(use_enable berkdb db) \ - $(use_enable ldap) \ - $(use_enable pam) \ - --enable-pipe \ - --enable-anon \ - --enable-fs \ - $(use_enable experimental) \ - $(use_enable test tests) \ - $(usex berkdb "--with-extra-include-path=$(db_includedir)" "") \ - $(use_with zlib) -} - -src_install() { - local i - - default - prune_libtool_files --modules - - keepdir /var/spool/jabber/{fs,db} - fowners jabber:jabber /usr/bin/{jabberd,router,sm,c2s,s2s} \ - /var/spool/jabber/{fs,db} - fperms 770 /var/spool/jabber/{fs,db} - fperms 750 /usr/bin/{jabberd,router,sm,c2s,s2s} - - # avoid file collision with x11-misc/screen-message wrt #453994 - for i in router sm c2s s2s ; do - einfo "renaming /usr/bin/${i}
[gentoo-commits] repo/gentoo:master commit in: app-portage/esearch/
commit: c83103c4959e92c5e4427cba407a71355a1d6918 Author: Mike Frysinger gentoo org> AuthorDate: Fri Oct 16 19:16:55 2015 + Commit: Mike Frysinger gentoo org> CommitDate: Fri Oct 16 19:18:42 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c83103c4 app-portage/esearch: mark 1.3-r1 arm64/s390/sh stable app-portage/esearch/esearch-1.3-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-portage/esearch/esearch-1.3-r1.ebuild b/app-portage/esearch/esearch-1.3-r1.ebuild index 1c8403b..311216d 100644 --- a/app-portage/esearch/esearch-1.3-r1.ebuild +++ b/app-portage/esearch/esearch-1.3-r1.ebuild @@ -16,7 +16,7 @@ LICENSE="GPL-2" SLOT="0" IUSE="linguas_fr linguas_it" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris" DEPEND="sys-apps/portage" RDEPEND="${DEPEND}"
[gentoo-commits] repo/gentoo:master commit in: dev-python/markupsafe/
commit: 2968a1507708049415e2ea2a3c07f2d2280e0fa4 Author: Mike Frysinger gentoo org> AuthorDate: Fri Oct 16 19:17:38 2015 + Commit: Mike Frysinger gentoo org> CommitDate: Fri Oct 16 19:18:49 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2968a150 dev-python/markupsafe: mark 0.23 arm64/s390/sh stable dev-python/markupsafe/markupsafe-0.23.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/markupsafe/markupsafe-0.23.ebuild b/dev-python/markupsafe/markupsafe-0.23.ebuild index c0c2bd8..31b2840 100644 --- a/dev-python/markupsafe/markupsafe-0.23.ebuild +++ b/dev-python/markupsafe/markupsafe-0.23.ebuild @@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris" IUSE="" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
[gentoo-commits] proj/layman:master commit in: /
commit: 861f9f8a7d4e5f1b4f527c81d5b71498551838a8 Author: Devan Franchini gentoo org> AuthorDate: Fri Oct 16 18:55:23 2015 + Commit: Devan Franchini gentoo org> CommitDate: Fri Oct 16 18:55:23 2015 + URL:https://gitweb.gentoo.org/proj/layman.git/commit/?id=861f9f8a setup.py: Closes bracket for database module appending setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d8f468d..140aacb 100755 --- a/setup.py +++ b/setup.py @@ -52,7 +52,7 @@ for mod in sorted(SELECTABLE): for plugin in sorted(DB_PLUGINS): if plugin in USE: -modules.append(DB_PLUGINS[plugin] +modules.append(DB_PLUGINS[plugin]) for plugin in sorted(SYNC_PLUGINS): if plugin in USE:
[gentoo-commits] repo/gentoo:master commit in: gnome-extra/synapse/
commit: 032c2042236157ab34593e405d47a139aec32461 Author: Justin Lecher gentoo org> AuthorDate: Fri Oct 16 18:54:31 2015 + Commit: Justin Lecher gentoo org> CommitDate: Fri Oct 16 18:54:42 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=032c2042 gnome-extra/synapse: Version Bump Package-Manager: portage-2.2.23 Signed-off-by: Justin Lecher gentoo.org> gnome-extra/synapse/Manifest| 1 + gnome-extra/synapse/synapse-0.2.99.1.ebuild | 62 + 2 files changed, 63 insertions(+) diff --git a/gnome-extra/synapse/Manifest b/gnome-extra/synapse/Manifest index 86bd467..f6a41c6 100644 --- a/gnome-extra/synapse/Manifest +++ b/gnome-extra/synapse/Manifest @@ -1 +1,2 @@ DIST synapse-0.2.10.tar.gz 625327 SHA256 d94f724be51f20e2085ead203495d398c5fece24071ffed7e805108be2219540 SHA512 e21e30b7b180642d3102aa17b5135917f2380a6a656e304ec4077f19021d65750f73c49a0c837e2761d4acb9ecad49db97e02f4d2a82a9f255af61efe4b0adc6 WHIRLPOOL 5ecf09168ec04f4bc7ebb0f955bd7490c10b053d5c0ab1cd1662ccb21f773fb72369682edcb0c7c0ff95a680885eb23b4361f08fe36af71f29734ba371ccbe68 +DIST synapse-0.2.99.1.tar.xz 427128 SHA256 846d8a5130580bb47c754bb7f20dc76311e589c00a18b02370a5d78b52409220 SHA512 7f91588759afd950d264b068eb11cd6971b86161f198735897405051a85c6d408d29ca2914c4546899a858673c6830290d63a26bc5e8060df1c821305af3eb92 WHIRLPOOL 1c077eb15c1d5710ccd9066bcc7a51170a4d8cca28d7d50245cbba1e944bb83e60764812de70e5b9f4801fc99d6100cbb2011aa708075f0eea0074fd69154344 diff --git a/gnome-extra/synapse/synapse-0.2.99.1.ebuild b/gnome-extra/synapse/synapse-0.2.99.1.ebuild new file mode 100644 index 000..5c8b577 --- /dev/null +++ b/gnome-extra/synapse/synapse-0.2.99.1.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +GCONF_DEBUG="no" # gnome2_src_configure is not being used +AUTOTOOLS_AUTORECONF=true + +inherit gnome2 autotools-utils vala + +DESCRIPTION="A program launcher in the style of GNOME Do" +HOMEPAGE="https://launchpad.net/synapse-project/"; +SRC_URI="https://launchpad.net/synapse-project/0.3/${PV}/+download/${P}.tar.xz"; + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +# "ayatana" support pending on GTK+-3.x version of synapse wrt #411613 +IUSE="plugins +zeitgeist" + +RDEPEND=" + dev-libs/libgee:0.8 + >=dev-libs/glib-2.28.0:2 + dev-libs/json-glib + dev-libs/keybinder:3 + dev-libs/libunique:1 + sys-apps/dbus + x11-libs/cairo + x11-libs/gdk-pixbuf:2 + x11-libs/gtkhotkey + >=x11-libs/gtk+-3.0.0:3 + x11-libs/libnotify + x11-libs/pango + x11-themes/gnome-icon-theme + plugins? ( >=net-libs/rest-0.7 ) + zeitgeist? ( + dev-libs/libzeitgeist + >=gnome-extra/zeitgeist-0.9.14 + gnome-extra/zeitgeist-extensions + || ( gnome-extra/zeitgeist[fts] gnome-extra/zeitgeist-extensions[fts] ) + )" + #ayatana? ( dev-libs/libappindicator ) +DEPEND="${RDEPEND} + $(vala_depend) + dev-util/intltool + virtual/pkgconfig" + +src_prepare() { + sed -i -e 's/GNOME/GNOME;GTK/' data/synapse.desktop.in || die + vala_src_prepare + autotools-utils_src_prepare +} + +src_configure() { + local myeconfargs=( + --enable-indicator=no + $(use_enable plugins librest yes) + $(use_enable zeitgeist) + ) + autotools-utils_src_configure +}
[gentoo-commits] repo/gentoo:master commit in: gnome-extra/synapse/
commit: 265cad94668d6aecccbfb3fe22ff9bbdcd3e2d3d Author: Justin Lecher gentoo org> AuthorDate: Fri Oct 16 18:29:11 2015 + Commit: Justin Lecher gentoo org> CommitDate: Fri Oct 16 18:54:42 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=265cad94 gnome-extra/synapse: Fix max vala version due to incompatibilities Package-Manager: portage-2.2.23 Signed-off-by: Justin Lecher gentoo.org> gnome-extra/synapse/synapse-0.2.10-r1.ebuild | 2 + gnome-extra/synapse/synapse-0.2.10.ebuild| 83 2 files changed, 2 insertions(+), 83 deletions(-) diff --git a/gnome-extra/synapse/synapse-0.2.10-r1.ebuild b/gnome-extra/synapse/synapse-0.2.10-r1.ebuild index 4c60891..c81d328 100644 --- a/gnome-extra/synapse/synapse-0.2.10-r1.ebuild +++ b/gnome-extra/synapse/synapse-0.2.10-r1.ebuild @@ -3,8 +3,10 @@ # $Id$ EAPI=5 + GCONF_DEBUG="no" # gnome2_src_configure is not being used AUTOTOOLS_AUTORECONF=true +VALA_MAX_API_VERSION=0.26 inherit gnome2 autotools-utils vala diff --git a/gnome-extra/synapse/synapse-0.2.10.ebuild b/gnome-extra/synapse/synapse-0.2.10.ebuild deleted file mode 100644 index b81e862..000 --- a/gnome-extra/synapse/synapse-0.2.10.ebuild +++ /dev/null @@ -1,83 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -AUTOTOOLS_AUTORECONF=true -VALA_MIN_API_VERSION=0.14 -VALA_MAX_API_VERSION=0.20 - -inherit gnome2 autotools-utils gnome2-utils vala - -DESCRIPTION="A program launcher in the style of GNOME Do" -HOMEPAGE="https://launchpad.net/synapse-project/"; -SRC_URI="https://launchpad.net/synapse-project/${PV%.*}/${PV}/+download/${P}.tar.gz"; - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -# "ayatana" support pending on GTK+-3.x version of synapse wrt #411613 -IUSE="plugins +zeitgeist" - -RDEPEND=" - dev-libs/libgee:0 - dev-libs/glib:2 - dev-libs/json-glib - dev-libs/libunique:1 - sys-apps/dbus - x11-libs/cairo - x11-libs/gdk-pixbuf:2 - x11-libs/gtkhotkey - x11-libs/gtk+:2 - x11-libs/libnotify - x11-libs/pango - x11-themes/gnome-icon-theme - plugins? ( net-libs/rest ) - zeitgeist? ( - dev-libs/libzeitgeist - gnome-extra/zeitgeist - gnome-extra/zeitgeist-extensions - || ( gnome-extra/zeitgeist[fts] gnome-extra/zeitgeist-extensions[fts] ) - )" - #ayatana? ( dev-libs/libappindicator ) -DEPEND="${RDEPEND} - $(vala_depend) - dev-util/intltool - virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}"/${PN}-0.2.8.2-underlinking.patch - "${FILESDIR}"/${PN}-0.2.8.2-zeitgeist.patch - ) - -pkg_preinst() { - gnome2_icon_savelist -} - -src_prepare() { - sed -i -e 's/GNOME/GNOME;GTK/' data/synapse.desktop.in || die - vala_src_prepare - autotools-utils_src_prepare -} - -src_configure() { - local myeconfargs=( - --enable-indicator=no - $(use_enable plugins librest yes) - $(use_enable zeitgeist) - ) - autotools-utils_src_configure -} - -pkg_preinst() { - gnome2_pkg_preinst -} - -pkg_postinst() { - gnome2_pkg_postinst -} - -pkg_postrm() { - gnome2_pkg_postrm -}
[gentoo-commits] proj/layman:master commit in: /
commit: 270a91aa1597b6637f297cba5dc8a334d9d59c58 Author: Devan Franchini gentoo org> AuthorDate: Fri Oct 16 17:39:53 2015 + Commit: Devan Franchini gentoo org> CommitDate: Fri Oct 16 17:39:53 2015 + URL:https://gitweb.gentoo.org/proj/layman.git/commit/?id=270a91aa setup.py: Makes sqlite database backend option setup.py | 15 +++ 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index a0343f9..d8f468d 100755 --- a/setup.py +++ b/setup.py @@ -28,6 +28,10 @@ SELECTABLE = { use_defaults = ' '.join(list(SELECTABLE)) +DB_PLUGINS = { +'sqlite': 'layman.db_modules.sqlite_db' +} + SYNC_PLUGINS = { 'sync-plugin-portage': 'portage.sync.modules.laymansync', } @@ -46,11 +50,14 @@ for mod in sorted(SELECTABLE): if mod in USE: modules.append('layman.overlays.modules.%s' % SELECTABLE[mod]) +for plugin in sorted(DB_PLUGINS): +if plugin in USE: +modules.append(DB_PLUGINS[plugin] + for plugin in sorted(SYNC_PLUGINS): if plugin in USE: modules.append(SYNC_PLUGINS[plugin]) - class setup_plugins(Command): """ Perform moves for the plugins into base namespace so they can be installed. """ @@ -84,9 +91,9 @@ setup( 'http://git.overlays.gentoo.org/gitweb/?p=proj/layman.git;a=summary', packages = ['layman', 'layman.config_modules', 'layman.config_modules.makeconf', 'layman.config_modules.reposconf', -'layman.db_modules', 'layman.db_modules.json_db', -'layman.db_modules.sqlite_db', 'layman.db_modules.xml_db', -'layman.overlays', 'layman.overlays.modules', +'layman.db_modules', 'layman.db_modules.json_db', +'layman.db_modules.xml_db', 'layman.overlays', +'layman.overlays.modules', ] + modules, scripts = ['bin/layman', 'bin/layman-overlay-maker', 'bin/layman-mounter', 'bin/layman-updater'],
[gentoo-commits] proj/layman:master commit in: layman/
commit: a4ee3c8a29db32aad6e5b5404fbc1714185f7ab8 Author: Devan Franchini gentoo org> AuthorDate: Fri Oct 16 18:47:06 2015 + Commit: Devan Franchini gentoo org> CommitDate: Fri Oct 16 18:47:06 2015 + URL:https://gitweb.gentoo.org/proj/layman.git/commit/?id=a4ee3c8a updater.py: Alters the way migrate_database handles an invalid db_type Instead of showing the user the error and raising an exception, an alternative method of dying after hitting the error has been implemented. layman/updater.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/layman/updater.py b/layman/updater.py index 25abf72..5cef2b0 100644 --- a/layman/updater.py +++ b/layman/updater.py @@ -118,8 +118,7 @@ class Main(object): if migrate_type not in DB_TYPES: msg = 'migrate_database() error; invalid migration type: '\ '"%(db_type)s"' % {'db_type': migrate_type} -self.output.error(' ' + msg) -raise Exception(msg) +self.output.die(msg) db = DB(self.config) installed = self.config['installed']
[gentoo-commits] proj/layman:master commit in: layman/
commit: d1c17e2c30f47ef5ac8450f269824976605b58a0 Author: Devan Franchini gentoo org> AuthorDate: Fri Oct 16 18:19:27 2015 + Commit: Devan Franchini gentoo org> CommitDate: Fri Oct 16 18:19:31 2015 + URL:https://gitweb.gentoo.org/proj/layman.git/commit/?id=d1c17e2c dbbase.py: Creates internal function to get database module controller This internal function centralizes the functionality of getting the database module controller while also adding in checks to gracefully handle invalid module names. layman/dbbase.py | 43 --- 1 file changed, 24 insertions(+), 19 deletions(-) diff --git a/layman/dbbase.py b/layman/dbbase.py index dc089d8..ebcd7a4 100644 --- a/layman/dbbase.py +++ b/layman/dbbase.py @@ -36,7 +36,7 @@ import os import os.path import sys -from layman.module import Modules +from layman.module import Modules, InvalidModuleName from layman.overlays.overlay import Overlay @@ -155,6 +155,26 @@ class DbBase(object): raise NotImplementedError(msg) +def _get_dbctl(self, db_type): +''' +Returns database module controller for class or dies trying. +''' +try: +db_ctl = self.mod_ctl.get_class(db_type)(self.config, +self.overlays, +self.paths, +self.ignore, +self.ignore_init_read_errors) +except InvalidModuleName: +msg = 'DbBase._get_dbctl() error:\nDatabase module name '\ + '"%(name)s" is invalid or not found.\nPlease set db_type '\ + 'variable to proper value to continue.'\ + % {'name': db_type.replace('_db', '')} +self.output.die(msg) + +return db_ctl + + def add_new(self, xml=None, origin=None, from_dict=None): ''' Reads xml text and dictionary definitions and adds @@ -188,12 +208,7 @@ class DbBase(object): if 'cache' in path and '.xml' in path: db_type = 'xml_db' -db_ctl = self.mod_ctl.get_class(db_type)(self.config, - self.overlays, - self.paths, - self.ignore, - self.ignore_init_read_errors) - +db_ctl = self._get_dbctl(db_type) db_ctl.read_db(path, text=text) @@ -206,12 +221,7 @@ class DbBase(object): if migrate_type: db_type = migrate_type + '_db' -db_ctl = self.mod_ctl.get_class(db_type)(self.config, - self.overlays, - self.paths, - self.ignore, - self.ignore_init_read_errors) - +db_ctl = self._get_dbctl(db_type) db_ctl.write(path, remove=remove) @@ -219,12 +229,7 @@ class DbBase(object): ''' Remove an overlay from the database. ''' -db_ctl = self.mod_ctl.get_class(self.db_type)(self.config, - self.overlays, - self.paths, - self.ignore, - self.ignore_init_read_errors) - +db_ctl = self._get_dbctl(db_type) db_ctl.remove(overlay, path)
[gentoo-commits] proj/qt:master commit in: dev-qt/qtpositioning/
commit: 7be2dfe5834681e757dc9fba34e9066963dca027 Author: Michael Palimaka gentoo org> AuthorDate: Fri Oct 16 18:43:51 2015 + Commit: Michael Palimaka gentoo org> CommitDate: Fri Oct 16 18:43:51 2015 + URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=7be2dfe5 dev-qt/qtpositioning: add missing dependency Package-Manager: portage-2.2.20.1 dev-qt/qtpositioning/qtpositioning-5.5.0.ebuild| 5 - dev-qt/qtpositioning/qtpositioning-5.5.1.ebuild| 5 - dev-qt/qtpositioning/qtpositioning-5.5..ebuild | 5 - dev-qt/qtpositioning/qtpositioning-5.6..ebuild | 5 - dev-qt/qtpositioning/qtpositioning-5..ebuild | 5 - 5 files changed, 20 insertions(+), 5 deletions(-) diff --git a/dev-qt/qtpositioning/qtpositioning-5.5.0.ebuild b/dev-qt/qtpositioning/qtpositioning-5.5.0.ebuild index aeb0529..6f3f800 100644 --- a/dev-qt/qtpositioning/qtpositioning-5.5.0.ebuild +++ b/dev-qt/qtpositioning/qtpositioning-5.5.0.ebuild @@ -21,7 +21,10 @@ RDEPEND=" app-misc/geoclue:0 dev-libs/glib:2 ) - qml? ( >=dev-qt/qtdeclarative-${PV}:5 ) + qml? ( + >=dev-qt/qtdeclarative-${PV}:5 + >=dev-qt/qtnetwork-${PV}:5 + ) " DEPEND="${RDEPEND}" diff --git a/dev-qt/qtpositioning/qtpositioning-5.5.1.ebuild b/dev-qt/qtpositioning/qtpositioning-5.5.1.ebuild index aeb0529..6f3f800 100644 --- a/dev-qt/qtpositioning/qtpositioning-5.5.1.ebuild +++ b/dev-qt/qtpositioning/qtpositioning-5.5.1.ebuild @@ -21,7 +21,10 @@ RDEPEND=" app-misc/geoclue:0 dev-libs/glib:2 ) - qml? ( >=dev-qt/qtdeclarative-${PV}:5 ) + qml? ( + >=dev-qt/qtdeclarative-${PV}:5 + >=dev-qt/qtnetwork-${PV}:5 + ) " DEPEND="${RDEPEND}" diff --git a/dev-qt/qtpositioning/qtpositioning-5.5..ebuild b/dev-qt/qtpositioning/qtpositioning-5.5..ebuild index aeb0529..6f3f800 100644 --- a/dev-qt/qtpositioning/qtpositioning-5.5..ebuild +++ b/dev-qt/qtpositioning/qtpositioning-5.5..ebuild @@ -21,7 +21,10 @@ RDEPEND=" app-misc/geoclue:0 dev-libs/glib:2 ) - qml? ( >=dev-qt/qtdeclarative-${PV}:5 ) + qml? ( + >=dev-qt/qtdeclarative-${PV}:5 + >=dev-qt/qtnetwork-${PV}:5 + ) " DEPEND="${RDEPEND}" diff --git a/dev-qt/qtpositioning/qtpositioning-5.6..ebuild b/dev-qt/qtpositioning/qtpositioning-5.6..ebuild index aeb0529..6f3f800 100644 --- a/dev-qt/qtpositioning/qtpositioning-5.6..ebuild +++ b/dev-qt/qtpositioning/qtpositioning-5.6..ebuild @@ -21,7 +21,10 @@ RDEPEND=" app-misc/geoclue:0 dev-libs/glib:2 ) - qml? ( >=dev-qt/qtdeclarative-${PV}:5 ) + qml? ( + >=dev-qt/qtdeclarative-${PV}:5 + >=dev-qt/qtnetwork-${PV}:5 + ) " DEPEND="${RDEPEND}" diff --git a/dev-qt/qtpositioning/qtpositioning-5..ebuild b/dev-qt/qtpositioning/qtpositioning-5..ebuild index aeb0529..6f3f800 100644 --- a/dev-qt/qtpositioning/qtpositioning-5..ebuild +++ b/dev-qt/qtpositioning/qtpositioning-5..ebuild @@ -21,7 +21,10 @@ RDEPEND=" app-misc/geoclue:0 dev-libs/glib:2 ) - qml? ( >=dev-qt/qtdeclarative-${PV}:5 ) + qml? ( + >=dev-qt/qtdeclarative-${PV}:5 + >=dev-qt/qtnetwork-${PV}:5 + ) " DEPEND="${RDEPEND}"
[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/
commit: 648ab3d50418f852cb2034ce16a057b640042151 Author: Mike Frysinger gentoo org> AuthorDate: Fri Oct 16 18:30:23 2015 + Commit: Mike Frysinger gentoo org> CommitDate: Fri Oct 16 18:30:23 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=648ab3d5 sys-fs/squashfs-tools: mark 4.3 arm68/m68k/s390/sh stable sys-fs/squashfs-tools/squashfs-tools-4.3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.3.ebuild b/sys-fs/squashfs-tools/squashfs-tools-4.3.ebuild index 52a045b..dc96dda 100644 --- a/sys-fs/squashfs-tools/squashfs-tools-4.3.ebuild +++ b/sys-fs/squashfs-tools/squashfs-tools-4.3.ebuild @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/squashfs/squashfs${PV}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86" IUSE="+xz lzma lz4 lzo xattr" RDEPEND="
[gentoo-commits] repo/gentoo:master commit in: sys-apps/install-xattr/
commit: 64b77b76d8a163e4fd4f453f3877baeb43fc1a05 Author: Mike Frysinger gentoo org> AuthorDate: Fri Oct 16 18:24:10 2015 + Commit: Mike Frysinger gentoo org> CommitDate: Fri Oct 16 18:26:25 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64b77b76 sys-apps/install-xattr: mark 0.5 arm64/m68k/s390/sh stable sys-apps/install-xattr/install-xattr-0.5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-apps/install-xattr/install-xattr-0.5.ebuild b/sys-apps/install-xattr/install-xattr-0.5.ebuild index 6d24a07..3cb7082 100644 --- a/sys-apps/install-xattr/install-xattr-0.5.ebuild +++ b/sys-apps/install-xattr/install-xattr-0.5.ebuild @@ -13,7 +13,7 @@ if [[ ${PV} == "" ]] ; then inherit git-2 else SRC_URI="https://dev.gentoo.org/~blueness/install-xattr/${P}.tar.bz2"; - KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86" + KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86" S=${WORKDIR}/${PN} fi
[gentoo-commits] repo/gentoo:master commit in: sys-apps/portage/
commit: 2878fc6d0c3bddc62757b62ac8d84b15795c4fc4 Author: Mike Frysinger gentoo org> AuthorDate: Fri Oct 16 18:25:04 2015 + Commit: Mike Frysinger gentoo org> CommitDate: Fri Oct 16 18:26:26 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2878fc6d sys-apps/portage: mark 2.2.20.1 arm64/m68k/s390/sh stable sys-apps/portage/portage-2.2.20.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-apps/portage/portage-2.2.20.1.ebuild b/sys-apps/portage/portage-2.2.20.1.ebuild index 5db3fab..46fa1ea 100644 --- a/sys-apps/portage/portage-2.2.20.1.ebuild +++ b/sys-apps/portage/portage-2.2.20.1.ebuild @@ -18,7 +18,7 @@ DESCRIPTION="Portage is the package management and distribution system for Gento HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage"; LICENSE="GPL-2" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" SLOT="0" IUSE="build doc epydoc +ipc linguas_ru selinux xattr"
[gentoo-commits] repo/gentoo:master commit in: sys-libs/glibc/files/eblits/
commit: ce18a6065c124e7509d90b804fe9bc0f570d355b Author: Mike Frysinger gentoo org> AuthorDate: Fri Oct 16 16:15:18 2015 + Commit: Mike Frysinger gentoo org> CommitDate: Fri Oct 16 18:26:24 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce18a606 sys-libs/glibc: ignore locale settings in preinst test When upgrading to a new version, the localedata format might have changed, which means the test programs may crash inside of glibc when trying to parse it. Since this test is not for verifying localedata (which we'll be rebuilding anyways), clear the active locale settings. sys-libs/glibc/files/eblits/pkg_preinst.eblit | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sys-libs/glibc/files/eblits/pkg_preinst.eblit b/sys-libs/glibc/files/eblits/pkg_preinst.eblit index 9160aaf..cb8f461 100644 --- a/sys-libs/glibc/files/eblits/pkg_preinst.eblit +++ b/sys-libs/glibc/files/eblits/pkg_preinst.eblit @@ -29,6 +29,9 @@ glibc_sanity_check() { *"statically linked"*) continue;; *"ASCII text"*) continue;; esac + # We need to clear the locale settings as the upgrade might want + # incompatible locale data. This test is not for verifying that. + LC_ALL=C \ ./ld-*.so --library-path . ${x} > /dev/null \ || die "simple run test (${x}) failed" done
[gentoo-commits] repo/gentoo:master commit in: sys-apps/install-xattr/
commit: fc4a45fee983f6c6fbf81342cfc3a26823c2f1c8 Author: Mike Frysinger gentoo org> AuthorDate: Fri Oct 16 18:23:29 2015 + Commit: Mike Frysinger gentoo org> CommitDate: Fri Oct 16 18:26:25 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc4a45fe sys-apps/install-xattr: drop pointless empty KEYWORDS This makes ekeyword misbehave and setting it empty is pointless. sys-apps/install-xattr/install-xattr-0.5.ebuild | 1 - sys-apps/install-xattr/install-xattr-.ebuild | 1 - 2 files changed, 2 deletions(-) diff --git a/sys-apps/install-xattr/install-xattr-0.5.ebuild b/sys-apps/install-xattr/install-xattr-0.5.ebuild index 5186798..6d24a07 100644 --- a/sys-apps/install-xattr/install-xattr-0.5.ebuild +++ b/sys-apps/install-xattr/install-xattr-0.5.ebuild @@ -10,7 +10,6 @@ inherit toolchain-funcs if [[ ${PV} == "" ]] ; then EGIT_REPO_URI="git://anongit.gentoo.org/proj/elfix.git" - KEYWORDS="alpha arm hppa ia64 sparc" inherit git-2 else SRC_URI="https://dev.gentoo.org/~blueness/install-xattr/${P}.tar.bz2"; diff --git a/sys-apps/install-xattr/install-xattr-.ebuild b/sys-apps/install-xattr/install-xattr-.ebuild index 471cd8d..4273b3e 100644 --- a/sys-apps/install-xattr/install-xattr-.ebuild +++ b/sys-apps/install-xattr/install-xattr-.ebuild @@ -10,7 +10,6 @@ inherit toolchain-funcs if [[ ${PV} == "" ]] ; then EGIT_REPO_URI="git://anongit.gentoo.org/proj/elfix.git" - KEYWORDS="" inherit git-2 else SRC_URI="https://dev.gentoo.org/~blueness/install-xattr/${P}.tar.bz2";
[gentoo-commits] repo/gentoo:master commit in: dev-libs/elfutils/
commit: 491215fa4fedebdbe9b4e514ac758c94e3148ac7 Author: Mike Frysinger gentoo org> AuthorDate: Fri Oct 16 16:14:37 2015 + Commit: Mike Frysinger gentoo org> CommitDate: Fri Oct 16 18:26:23 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=491215fa dev-libs/elfutils: version bump to 0.164 dev-libs/elfutils/Manifest | 1 + dev-libs/elfutils/elfutils-0.164.ebuild | 69 + 2 files changed, 70 insertions(+) diff --git a/dev-libs/elfutils/Manifest b/dev-libs/elfutils/Manifest index b88a8b7..8225c4d 100644 --- a/dev-libs/elfutils/Manifest +++ b/dev-libs/elfutils/Manifest @@ -11,3 +11,4 @@ DIST elfutils-0.162-portability.patch 70906 SHA256 71cd52c43af31a9e445ed14e2f51e DIST elfutils-0.162.tar.bz2 6021217 SHA256 526106bc6be898b3b3281a66b83d64993aa0ef1b55b0416766868ad53d0a1951 SHA512 5d62a84b509f638cb62175b332fdeaa68e04677893d5647fd944e5b5928fa4f0daf8f161dc64f7762dc736f74471c8d617cbc54464cf2e1f79141e937d3db4a9 WHIRLPOOL 2e8bee400f0209206373d716199835729f4d4da97116a4ec76a2dfe977e8a431601208655d576d66e6f1e4eb630dab004eedebabd58a03e4938b745f71daf35d DIST elfutils-0.163-portability.patch 72818 SHA256 e4e82315dad2efaa4e4476503e7537e01b7c1b1f98a96de4ca1c7fa85f4f1045 SHA512 c657da2c4a37e8dac6fe4b399ef72ff60b678721f0617fb1dc0a6d962cb1e609b8e72fa0dc5b2d50db8dd68dcd58096bf2e475f7c5461f1765a4ee4c0d2e WHIRLPOOL 0ff248e4767778351f46c91fd5f189d7d2cfee59ac2afdfd5fee659151b72e33d310440273da0ed6f5611f76f9ec651ff51acffcc0557a0ec111c50b819db091 DIST elfutils-0.163.tar.bz2 6029307 SHA256 7c774f1eef329309f3b05e730bdac50013155d437518a2ec0e24871d312f2e23 SHA512 80cb37b965e85f6c6b51247f0cb07cde9d9071e7cdde4c028479a609e12dfb196e428fa8743586ce8a46d49dac74073b55bcb812ea6118471c0de07b3dd7f772 WHIRLPOOL 5e2b7881ec96438e0ecb583b77202ccdad6ae7b46f2dcc0b2869119642173bc5da5f26d51bf4464fc9c5c1951f14a4a11bf8dfc6906e6dfd551782c4c9f28cd8 +DIST elfutils-0.164.tar.bz2 6065265 SHA256 9683c025928a12d06b7fe812928aa6235249e22d197d086f7084606a48165900 SHA512 83e0bdf17fff2c480cf5f99fe9d733a8b4f7cde0f9a3eeb4e3c4b4bd221a306e0a03bfd99e097f0085a33bb8b9f73fda10e390e17d30c3f5a1344e781065efce WHIRLPOOL d1de8d928b64e170358343c8984762286d63745c8cbe1375b7cdf07566c44091dd078f5876106c6b829831e630fda9d8db5e28c5c871c98a70eb1cda58596705 diff --git a/dev-libs/elfutils/elfutils-0.164.ebuild b/dev-libs/elfutils/elfutils-0.164.ebuild new file mode 100644 index 000..06df99a --- /dev/null +++ b/dev-libs/elfutils/elfutils-0.164.ebuild @@ -0,0 +1,69 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="4" + +inherit eutils flag-o-matic multilib-minimal + +DESCRIPTION="Libraries/utilities to handle ELF objects (drop in replacement for libelf)" +HOMEPAGE="https://fedorahosted.org/elfutils/"; +SRC_URI="https://fedorahosted.org/releases/e/l/${PN}/${PV}/${P}.tar.bz2"; + +LICENSE="GPL-2-with-exceptions" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux" +IUSE="bzip2 lzma nls static-libs test +threads +utils zlib" + +# This pkg does not actually seem to compile currently in a uClibc +# environment (xrealloc errs), but we need to ensure that glibc never +# gets pulled in as a dep since this package does not respect virtual/libc +RDEPEND="zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] ) + bzip2? ( >=app-arch/bzip2-1.0.6-r4[${MULTILIB_USEDEP}] ) + lzma? ( >=app-arch/xz-utils-5.0.5-r1[${MULTILIB_USEDEP}] ) + !dev-libs/libelf + abi_x86_32? ( + !<=app-emulation/emul-linux-x86-baselibs-20130224-r11 + !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] + )" +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext ) + >=sys-devel/flex-2.5.4a + sys-devel/m4" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-0.118-PaX-support.patch + use static-libs || sed -i -e '/^lib_LIBRARIES/s:=.*:=:' -e '/^%.os/s:%.o$::' lib{asm,dw,elf}/Makefile.in + sed -i 's:-Werror::' */Makefile.in + # some patches touch both configure and configure.ac + find -type f -exec touch -r configure {} + +} + +src_configure() { + use test && append-flags -g #407135 + multilib-minimal_src_configure +} + +multilib_src_configure() { + ECONF_SOURCE="${S}" econf \ + $(use_enable nls) \ + $(use_enable threads thread-safety) \ + --program-prefix="eu-" \ + $(use_with zlib) \ + $(use_with bzip2 bzlib) \ + $(use_with lzma) +} + +multilib_src_test() { + env LD_LIBRARY_PATH="${BUILD_DIR}/libelf:${BUILD_DIR}/libebl:${BUILD_DIR}/libdw:${BUILD_DIR}/libasm" \ + LC_ALL="C" \ + emake check || die +} + +multilib_src_install_all() { + einstalldocs + dodoc NOTES + # These build quick, and are needed for most
[gentoo-commits] proj/kde:master commit in: kde-apps/spectacle/, kde-apps/gwenview/
commit: 860ee4855134a6a2b4c1adfc9ba9ebbcd81577f3 Author: Andreas Sturmlechner gmail com> AuthorDate: Fri Oct 16 14:37:34 2015 + Commit: Michael Palimaka gentoo org> CommitDate: Fri Oct 16 18:24:10 2015 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=860ee485 kde-apps: Remove 5. min version dependencies Package-Manager: portage-2.2.20.1 kde-apps/gwenview/gwenview-15.08.2.ebuild | 4 ++-- kde-apps/gwenview/gwenview-15.08.49..ebuild | 4 ++-- kde-apps/gwenview/gwenview-.ebuild | 4 ++-- kde-apps/spectacle/spectacle-2.0.1.ebuild | 2 +- kde-apps/spectacle/spectacle-.ebuild| 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/kde-apps/gwenview/gwenview-15.08.2.ebuild b/kde-apps/gwenview/gwenview-15.08.2.ebuild index 6ab9e4e..f3c86f7 100644 --- a/kde-apps/gwenview/gwenview-15.08.2.ebuild +++ b/kde-apps/gwenview/gwenview-15.08.2.ebuild @@ -44,8 +44,8 @@ COMMON_DEPEND=" media-libs/libpng:0= media-libs/phonon[qt5] virtual/jpeg:0 - kipi? ( $(add_kdeapps_dep libkipi '' 5.) ) - raw? ( $(add_kdeapps_dep libkdcraw '' 5.) ) + kipi? ( $(add_kdeapps_dep libkipi) ) + raw? ( $(add_kdeapps_dep libkdcraw) ) semantic-desktop? ( $(add_frameworks_dep baloo) ) X? ( dev-qt/qtx11extras:5 diff --git a/kde-apps/gwenview/gwenview-15.08.49..ebuild b/kde-apps/gwenview/gwenview-15.08.49..ebuild index 1e883a2..a745400 100644 --- a/kde-apps/gwenview/gwenview-15.08.49..ebuild +++ b/kde-apps/gwenview/gwenview-15.08.49..ebuild @@ -44,8 +44,8 @@ COMMON_DEPEND=" media-libs/libpng:0= media-libs/phonon[qt5] virtual/jpeg:0 - kipi? ( $(add_kdeapps_dep libkipi '' 5.) ) - raw? ( $(add_kdeapps_dep libkdcraw '' 5.) ) + kipi? ( $(add_kdeapps_dep libkipi) ) + raw? ( $(add_kdeapps_dep libkdcraw) ) semantic-desktop? ( $(add_frameworks_dep baloo) ) X? ( dev-qt/qtx11extras:5 diff --git a/kde-apps/gwenview/gwenview-.ebuild b/kde-apps/gwenview/gwenview-.ebuild index 1e883a2..a745400 100644 --- a/kde-apps/gwenview/gwenview-.ebuild +++ b/kde-apps/gwenview/gwenview-.ebuild @@ -44,8 +44,8 @@ COMMON_DEPEND=" media-libs/libpng:0= media-libs/phonon[qt5] virtual/jpeg:0 - kipi? ( $(add_kdeapps_dep libkipi '' 5.) ) - raw? ( $(add_kdeapps_dep libkdcraw '' 5.) ) + kipi? ( $(add_kdeapps_dep libkipi) ) + raw? ( $(add_kdeapps_dep libkdcraw) ) semantic-desktop? ( $(add_frameworks_dep baloo) ) X? ( dev-qt/qtx11extras:5 diff --git a/kde-apps/spectacle/spectacle-2.0.1.ebuild b/kde-apps/spectacle/spectacle-2.0.1.ebuild index 42bb806..daf5cac 100644 --- a/kde-apps/spectacle/spectacle-2.0.1.ebuild +++ b/kde-apps/spectacle/spectacle-2.0.1.ebuild @@ -31,7 +31,7 @@ DEPEND=" dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 x11-libs/libxcb - kipi? ( $(add_kdeapps_dep libkipi '' '5.') ) + kipi? ( $(add_kdeapps_dep libkipi) ) " RDEPEND="${DEPEND} !kde-apps/ksnapshot diff --git a/kde-apps/spectacle/spectacle-.ebuild b/kde-apps/spectacle/spectacle-.ebuild index 1a7e0bc..12a4f97 100644 --- a/kde-apps/spectacle/spectacle-.ebuild +++ b/kde-apps/spectacle/spectacle-.ebuild @@ -30,7 +30,7 @@ DEPEND=" dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 x11-libs/libxcb - kipi? ( $(add_kdeapps_dep libkipi '' '5.') ) + kipi? ( $(add_kdeapps_dep libkipi) ) " RDEPEND="${DEPEND} !kde-apps/ksnapshot
[gentoo-commits] proj/kde:master commit in: media-plugins/kipi-plugins/
commit: 622b4d3295b3c2eae63664742eb2044e1cedff73 Author: Andreas Sturmlechner gmail com> AuthorDate: Fri Oct 16 13:50:43 2015 + Commit: Michael Palimaka gentoo org> CommitDate: Fri Oct 16 18:24:10 2015 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=622b4d32 media-plugins/kipi-plugins: Frameworks merged to master Package-Manager: portage-2.2.20.1 media-plugins/kipi-plugins/kipi-plugins-.ebuild | 1 - 1 file changed, 1 deletion(-) diff --git a/media-plugins/kipi-plugins/kipi-plugins-.ebuild b/media-plugins/kipi-plugins/kipi-plugins-.ebuild index c49f4dd..a4324cb 100644 --- a/media-plugins/kipi-plugins/kipi-plugins-.ebuild +++ b/media-plugins/kipi-plugins/kipi-plugins-.ebuild @@ -12,7 +12,6 @@ if [[ ${KDE_BUILD_TYPE} != live ]]; then KDE_HANDBOOK=true fi -EGIT_BRANCH=frameworks KDE_TEST=true inherit flag-o-matic kde5
[gentoo-commits] proj/kde:master commit in: kde-apps/libkipi/
commit: 560196c931ca6c847aee03aa39d1b933f10df72a Author: Andreas Sturmlechner gmail com> AuthorDate: Fri Oct 16 13:37:45 2015 + Commit: Michael Palimaka gentoo org> CommitDate: Fri Oct 16 18:24:09 2015 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=560196c9 kde-apps/libkipi: Frameworks merged to master Package-Manager: portage-2.2.20.1 kde-apps/libkipi/libkipi-5..ebuild | 26 -- kde-apps/libkipi/libkipi-.ebuild | 18 -- 2 files changed, 16 insertions(+), 28 deletions(-) diff --git a/kde-apps/libkipi/libkipi-5..ebuild b/kde-apps/libkipi/libkipi-5..ebuild deleted file mode 100644 index b1752e9..000 --- a/kde-apps/libkipi/libkipi-5..ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -EGIT_BRANCH="frameworks" -KDE_TEST="true" -inherit kde5 - -DESCRIPTION="A library for image plugins accross KDE applications" -KEYWORDS="" -IUSE="" - -DEPEND=" - $(add_frameworks_dep kconfig) - $(add_frameworks_dep kcoreaddons) - $(add_frameworks_dep ki18n) - $(add_frameworks_dep kservice) - $(add_frameworks_dep kxmlgui) - dev-qt/qtgui:5 - dev-qt/qtwidgets:5 - dev-qt/qtxml:5 -" - -RDEPEND="${DEPEND}" diff --git a/kde-apps/libkipi/libkipi-.ebuild b/kde-apps/libkipi/libkipi-.ebuild index d7867b3..3a13708 100644 --- a/kde-apps/libkipi/libkipi-.ebuild +++ b/kde-apps/libkipi/libkipi-.ebuild @@ -4,8 +4,22 @@ EAPI=5 -inherit kde4-base +KDE_TEST="true" +inherit kde5 DESCRIPTION="A library for image plugins accross KDE applications" KEYWORDS="" -IUSE="debug" +IUSE="" + +DEPEND=" + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kservice) + $(add_frameworks_dep kxmlgui) + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 + dev-qt/qtxml:5 +" + +RDEPEND="${DEPEND}"
[gentoo-commits] proj/kde:master commit in: kde-apps/libkdcraw/
commit: 2782ede8a6a070177dba120278d65ee1e0d1c1b4 Author: Andreas Sturmlechner gmail com> AuthorDate: Fri Oct 16 13:39:52 2015 + Commit: Michael Palimaka gentoo org> CommitDate: Fri Oct 16 18:24:10 2015 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=2782ede8 kde-apps/libkdcraw: Frameworks merged to master Package-Manager: portage-2.2.20.1 kde-apps/libkdcraw/libkdcraw-5..ebuild | 18 -- kde-apps/libkdcraw/libkdcraw-.ebuild | 9 + 2 files changed, 5 insertions(+), 22 deletions(-) diff --git a/kde-apps/libkdcraw/libkdcraw-5..ebuild b/kde-apps/libkdcraw/libkdcraw-5..ebuild deleted file mode 100644 index 8cdef38..000 --- a/kde-apps/libkdcraw/libkdcraw-5..ebuild +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -EGIT_BRANCH="frameworks" -inherit kde5 - -DESCRIPTION="Digital camera raw image library wrapper" -KEYWORDS="" -IUSE="" - -DEPEND=" - >=media-libs/libraw-0.16:= - dev-qt/qtgui:5 -" -RDEPEND="${DEPEND}" diff --git a/kde-apps/libkdcraw/libkdcraw-.ebuild b/kde-apps/libkdcraw/libkdcraw-.ebuild index 816276a..e9b627d 100644 --- a/kde-apps/libkdcraw/libkdcraw-.ebuild +++ b/kde-apps/libkdcraw/libkdcraw-.ebuild @@ -4,13 +4,14 @@ EAPI=5 -inherit kde4-base +inherit kde5 -DESCRIPTION="KDE digital camera raw image library wrapper" +DESCRIPTION="Digital camera raw image library wrapper" KEYWORDS="" -IUSE="debug" +IUSE="" DEPEND=" - >=media-libs/libraw-0.16_beta1-r1:= + >=media-libs/libraw-0.16:= + dev-qt/qtgui:5 " RDEPEND="${DEPEND}"
[gentoo-commits] proj/kde:master commit in: sets/
commit: 41bf6663efa2c113b86c3ddfe11ca830e511c044 Author: Andreas Sturmlechner gmail com> AuthorDate: Thu Oct 15 20:23:22 2015 + Commit: Michael Palimaka gentoo org> CommitDate: Fri Oct 16 18:24:09 2015 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=41bf6663 sets: Update kdenetwork-live sets/kdenetwork-live | 1 + 1 file changed, 1 insertion(+) diff --git a/sets/kdenetwork-live b/sets/kdenetwork-live index de950e2..5af7c3f 100644 --- a/sets/kdenetwork-live +++ b/sets/kdenetwork-live @@ -1,5 +1,6 @@ ~kde-apps/kaccounts-integration- ~kde-apps/kaccounts-providers- +~kde-apps/kdenetwork-filesharing- ~kde-apps/kio-extras- ~kde-apps/krfb- ~kde-apps/ktp-accounts-kcm-
[gentoo-commits] proj/kde:master commit in: kde-apps/libkgeomap/
commit: 11cc832c7128327074847d5c3d64375ed54ce4c3 Author: Andreas Sturmlechner gmail com> AuthorDate: Fri Oct 16 14:01:26 2015 + Commit: Michael Palimaka gentoo org> CommitDate: Fri Oct 16 18:24:10 2015 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=11cc832c kde-apps/libkgeomap: Frameworks merged to master Package-Manager: portage-2.2.20.1 kde-apps/libkgeomap/libkgeomap-5..ebuild | 36 kde-apps/libkgeomap/libkgeomap-.ebuild | 24 ++- 2 files changed, 18 insertions(+), 42 deletions(-) diff --git a/kde-apps/libkgeomap/libkgeomap-5..ebuild b/kde-apps/libkgeomap/libkgeomap-5..ebuild deleted file mode 100644 index 6901d78..000 --- a/kde-apps/libkgeomap/libkgeomap-5..ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -EGIT_BRANCH="frameworks" -KDE_TEST="true" -VIRTUALX_REQUIRED="test" -inherit kde5 - -DESCRIPTION="Wrapper library for world map components as marble, openstreetmap and googlemap" -HOMEPAGE="https://www.digikam.org/"; - -LICENSE="GPL-2" -KEYWORDS="" -IUSE="" - -DEPEND=" - $(add_frameworks_dep kconfig) - $(add_frameworks_dep kcoreaddons) - $(add_frameworks_dep kdelibs4support) - $(add_frameworks_dep ki18n) - $(add_frameworks_dep kio) - $(add_frameworks_dep ktextwidgets) - $(add_frameworks_dep kwidgetsaddons) - dev-qt/qtconcurrent:5 - dev-qt/qtgui:5 - dev-qt/qtnetwork:5 - dev-qt/qtwebkit:5 - dev-qt/qtwidgets:5 - dev-qt/qtxml:5 - kde-apps/libkexiv2:5= - kde-apps/marble:5=[kde] -" -RDEPEND="${DEPEND}" diff --git a/kde-apps/libkgeomap/libkgeomap-.ebuild b/kde-apps/libkgeomap/libkgeomap-.ebuild index c099c1a..bf9ec44 100644 --- a/kde-apps/libkgeomap/libkgeomap-.ebuild +++ b/kde-apps/libkgeomap/libkgeomap-.ebuild @@ -4,8 +4,9 @@ EAPI=5 +KDE_TEST="true" VIRTUALX_REQUIRED="test" -inherit kde4-base +inherit kde5 DESCRIPTION="Wrapper library for world map components as marble, openstreetmap and googlemap" HOMEPAGE="https://www.digikam.org/"; @@ -15,9 +16,20 @@ KEYWORDS="" IUSE="" DEPEND=" - kde-apps/libkexiv2:4= - kde-apps/marble:4=[kde,plasma] -" -RDEPEND="${DEPEND} - !media-libs/libkgeomap + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep kdelibs4support) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kio) + $(add_frameworks_dep ktextwidgets) + $(add_frameworks_dep kwidgetsaddons) + dev-qt/qtconcurrent:5 + dev-qt/qtgui:5 + dev-qt/qtnetwork:5 + dev-qt/qtwebkit:5 + dev-qt/qtwidgets:5 + dev-qt/qtxml:5 + kde-apps/libkexiv2:5= + kde-apps/marble:5=[kde] " +RDEPEND="${DEPEND}"
[gentoo-commits] proj/kde:master commit in: kde-apps/libkexiv2/
commit: f8f1903d65e67c1c26a57f2e42ba1807db30a988 Author: Andreas Sturmlechner gmail com> AuthorDate: Fri Oct 16 13:38:38 2015 + Commit: Michael Palimaka gentoo org> CommitDate: Fri Oct 16 18:24:10 2015 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=f8f1903d kde-apps/libkexiv2: Frameworks merged to master Package-Manager: portage-2.2.20.1 kde-apps/libkexiv2/libkexiv2-5..ebuild | 20 kde-apps/libkexiv2/libkexiv2-.ebuild | 8 +--- 2 files changed, 5 insertions(+), 23 deletions(-) diff --git a/kde-apps/libkexiv2/libkexiv2-5..ebuild b/kde-apps/libkexiv2/libkexiv2-5..ebuild deleted file mode 100644 index af293ce..000 --- a/kde-apps/libkexiv2/libkexiv2-5..ebuild +++ /dev/null @@ -1,20 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -EGIT_BRANCH="frameworks" -inherit kde5 - -DESCRIPTION="KDE Image Plugin Interface: an exiv2 library wrapper" -KEYWORDS="" -IUSE="+xmp" - -DEPEND=" - dev-qt/qtgui:5 - dev-qt/qtwidgets:5 - dev-qt/qtxml:5 - >=media-gfx/exiv2-0.25:=[xmp=] -" -RDEPEND="${DEPEND}" diff --git a/kde-apps/libkexiv2/libkexiv2-.ebuild b/kde-apps/libkexiv2/libkexiv2-.ebuild index 50def96..a8b2208 100644 --- a/kde-apps/libkexiv2/libkexiv2-.ebuild +++ b/kde-apps/libkexiv2/libkexiv2-.ebuild @@ -4,14 +4,16 @@ EAPI=5 -inherit kde4-base +inherit kde5 DESCRIPTION="KDE Image Plugin Interface: an exiv2 library wrapper" KEYWORDS="" -IUSE="debug +xmp" +IUSE="+xmp" DEPEND=" + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 + dev-qt/qtxml:5 >=media-gfx/exiv2-0.25:=[xmp=] - virtual/jpeg:0 " RDEPEND="${DEPEND}"
[gentoo-commits] proj/kde:master commit in: kde-apps/libksane/
commit: 4de16d1b00084ed1d1b5680f14a562dda3e2820e Author: Andreas Sturmlechner gmail com> AuthorDate: Fri Oct 16 14:00:12 2015 + Commit: Michael Palimaka gentoo org> CommitDate: Fri Oct 16 18:24:10 2015 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=4de16d1b kde-apps/libksane: Frameworks merged to master Package-Manager: portage-2.2.20.1 kde-apps/libksane/libksane-5..ebuild | 27 --- kde-apps/libksane/libksane-.ebuild | 13 +++-- 2 files changed, 11 insertions(+), 29 deletions(-) diff --git a/kde-apps/libksane/libksane-5..ebuild b/kde-apps/libksane/libksane-5..ebuild deleted file mode 100644 index e99fd67..000 --- a/kde-apps/libksane/libksane-5..ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -EGIT_BRANCH="frameworks" -inherit kde5 - -DESCRIPTION="SANE Library interface for KDE" -KEYWORDS="" -IUSE="" -LICENSE="LGPL-2" - -DEPEND=" - $(add_frameworks_dep kconfig) - $(add_frameworks_dep ki18n) - $(add_frameworks_dep ktextwidgets) - $(add_frameworks_dep kwallet) - $(add_frameworks_dep kwidgetsaddons) - $(add_frameworks_dep kwindowsystem) - dev-qt/qtgui:5 - dev-qt/qtwidgets:5 - dev-qt/qtxml:5 - media-gfx/sane-backends -" -RDEPEND="${DEPEND}" diff --git a/kde-apps/libksane/libksane-.ebuild b/kde-apps/libksane/libksane-.ebuild index abf54de..59f215f 100644 --- a/kde-apps/libksane/libksane-.ebuild +++ b/kde-apps/libksane/libksane-.ebuild @@ -4,14 +4,23 @@ EAPI=5 -inherit kde4-base +inherit kde5 DESCRIPTION="SANE Library interface for KDE" KEYWORDS="" -IUSE="debug" +IUSE="" LICENSE="LGPL-2" DEPEND=" + $(add_frameworks_dep kconfig) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep ktextwidgets) + $(add_frameworks_dep kwallet) + $(add_frameworks_dep kwidgetsaddons) + $(add_frameworks_dep kwindowsystem) + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 + dev-qt/qtxml:5 media-gfx/sane-backends " RDEPEND="${DEPEND}"
[gentoo-commits] proj/kde:master commit in: net-libs/libmediawiki/
commit: ee96a88054b291013f335c8fb0090e4b7132af99 Author: Andreas Sturmlechner gmail com> AuthorDate: Fri Oct 16 13:58:44 2015 + Commit: Michael Palimaka gentoo org> CommitDate: Fri Oct 16 18:24:10 2015 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=ee96a880 net-libs/libmediawiki: Frameworks merged to master Package-Manager: portage-2.2.20.1 net-libs/libmediawiki/libmediawiki-.ebuild | 1 - 1 file changed, 1 deletion(-) diff --git a/net-libs/libmediawiki/libmediawiki-.ebuild b/net-libs/libmediawiki/libmediawiki-.ebuild index 02b99c7..5b8f649 100644 --- a/net-libs/libmediawiki/libmediawiki-.ebuild +++ b/net-libs/libmediawiki/libmediawiki-.ebuild @@ -4,7 +4,6 @@ EAPI=5 -EGIT_BRANCH=frameworks inherit kde5 DESCRIPTION="KDE C++ interface for MediaWiki based web service as wikipedia.org"
[gentoo-commits] proj/kde:master commit in: kde-apps/kpimtextedit/
commit: e19fa791971fb6da141071b9b69824336627 Author: Andreas Sturmlechner gmail com> AuthorDate: Thu Oct 15 20:51:30 2015 + Commit: Michael Palimaka gentoo org> CommitDate: Fri Oct 16 18:24:09 2015 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=e19fa791 kde-apps/kpimtextedit: Fix DEPENDs Package-Manager: portage-2.2.23 kde-apps/kpimtextedit/kpimtextedit-.ebuild | 6 ++ 1 file changed, 6 insertions(+) diff --git a/kde-apps/kpimtextedit/kpimtextedit-.ebuild b/kde-apps/kpimtextedit/kpimtextedit-.ebuild index a41c203..dd13ed2 100644 --- a/kde-apps/kpimtextedit/kpimtextedit-.ebuild +++ b/kde-apps/kpimtextedit/kpimtextedit-.ebuild @@ -16,12 +16,18 @@ IUSE="" RDEPEND=" $(add_frameworks_dep kcodecs) $(add_frameworks_dep kcompletion) + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kconfigwidgets) $(add_frameworks_dep kemoticons) $(add_frameworks_dep ki18n) + $(add_frameworks_dep kiconthemes) $(add_frameworks_dep kio) $(add_frameworks_dep ktextwidgets) $(add_frameworks_dep kwidgetsaddons) + $(add_frameworks_dep kxmlgui) $(add_frameworks_dep sonnet) + dev-libs/grantlee:5 + dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 "
[gentoo-commits] proj/kde:master commit in: kde-apps/krfb/
commit: 13519fab9f45bba04a9d6acfa1932ecc11a34ed5 Author: Andreas Sturmlechner gmail com> AuthorDate: Thu Oct 15 23:04:23 2015 + Commit: Michael Palimaka gentoo org> CommitDate: Fri Oct 16 18:24:09 2015 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=13519fab kde-apps/krfb: Frameworks merged to master Package-Manager: portage-2.2.23 kde-apps/krfb/krfb-5..ebuild | 43 -- kde-apps/krfb/krfb-.ebuild | 45 ++-- 2 files changed, 25 insertions(+), 63 deletions(-) diff --git a/kde-apps/krfb/krfb-5..ebuild b/kde-apps/krfb/krfb-5..ebuild deleted file mode 100644 index 38e7739..000 --- a/kde-apps/krfb/krfb-5..ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -EGIT_BRANCH="frameworks" -KDE_DOXYGEN="true" -KDE_HANDBOOK="true" -inherit kde5 - -DESCRIPTION="VNC-compatible server to share KDE desktops" -HOMEPAGE="https://www.kde.org/applications/system/krfb/"; -KEYWORDS="" -IUSE="" - -DEPEND=" - $(add_frameworks_dep kcompletion) - $(add_frameworks_dep kconfig) - $(add_frameworks_dep kconfigwidgets) - $(add_frameworks_dep kcoreaddons) - $(add_frameworks_dep kcrash) - $(add_frameworks_dep kdbusaddons) - $(add_frameworks_dep kdnssd) - $(add_frameworks_dep ki18n) - $(add_frameworks_dep knotifications) - $(add_frameworks_dep kwallet) - $(add_frameworks_dep kwidgetsaddons) - $(add_frameworks_dep kxmlgui) - dev-qt/qtdbus:5 - dev-qt/qtgui:5 - dev-qt/qtnetwork:5 - dev-qt/qtwidgets:5 - dev-qt/qtx11extras:5 - >=net-libs/libvncserver-0.9.9 - sys-libs/zlib - virtual/jpeg:0 - x11-libs/libX11 - x11-libs/libXdamage - x11-libs/libXext - x11-libs/libXtst -" -RDEPEND="${DEPEND}" diff --git a/kde-apps/krfb/krfb-.ebuild b/kde-apps/krfb/krfb-.ebuild index 0157a97..649f1c4 100644 --- a/kde-apps/krfb/krfb-.ebuild +++ b/kde-apps/krfb/krfb-.ebuild @@ -4,34 +4,39 @@ EAPI=5 -KDE_HANDBOOK="optional" -inherit kde4-base +KDE_DOXYGEN="true" +KDE_HANDBOOK="true" +inherit kde5 DESCRIPTION="VNC-compatible server to share KDE desktops" HOMEPAGE="https://www.kde.org/applications/system/krfb/"; KEYWORDS="" -IUSE="debug telepathy ktp" -REQUIRED_USE="ktp? ( telepathy )" +IUSE="" DEPEND=" + $(add_frameworks_dep kcompletion) + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kconfigwidgets) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep kcrash) + $(add_frameworks_dep kdbusaddons) + $(add_frameworks_dep kdnssd) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep knotifications) + $(add_frameworks_dep kwallet) + $(add_frameworks_dep kwidgetsaddons) + $(add_frameworks_dep kxmlgui) + dev-qt/qtdbus:5 + dev-qt/qtgui:5 + dev-qt/qtnetwork:5 + dev-qt/qtwidgets:5 + dev-qt/qtx11extras:5 >=net-libs/libvncserver-0.9.9 sys-libs/zlib virtual/jpeg:0 - !aqua? ( - x11-libs/libX11 - x11-libs/libXdamage - x11-libs/libXext - x11-libs/libXtst - ) - telepathy? ( >=net-libs/telepathy-qt-0.9 ) + x11-libs/libX11 + x11-libs/libXdamage + x11-libs/libXext + x11-libs/libXtst " RDEPEND="${DEPEND}" - -src_configure() { - local mycmakeargs=( - $(cmake-utils_use_with telepathy TelepathyQt4) - $(cmake-utils_use_with ktp KTp) - ) - - kde4-base_src_configure -}
[gentoo-commits] proj/kde:master commit in: kde-apps/libkface/
commit: d1c41a43085418df8ad303967330bc255d57b91e Author: Andreas Sturmlechner gmail com> AuthorDate: Fri Oct 16 13:57:38 2015 + Commit: Michael Palimaka gentoo org> CommitDate: Fri Oct 16 18:24:10 2015 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=d1c41a43 kde-apps/libkface: Frameworks merged to master Package-Manager: portage-2.2.20.1 kde-apps/libkface/libkface-5..ebuild | 35 kde-apps/libkface/libkface-.ebuild | 21 --- 2 files changed, 18 insertions(+), 38 deletions(-) diff --git a/kde-apps/libkface/libkface-5..ebuild b/kde-apps/libkface/libkface-5..ebuild deleted file mode 100644 index ad62929..000 --- a/kde-apps/libkface/libkface-5..ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -EGIT_BRANCH="frameworks" -inherit kde5 - -DESCRIPTION="Qt/C++ wrapper around LibFace to perform face recognition and detection" -HOMEPAGE="http://api.kde.org/4.x-api/kdegraphics-apidocs/libs/libkface/libkface/html/index.html"; - -LICENSE="GPL-2" -IUSE="" - -KEYWORDS="" - -DEPEND=" - dev-qt/qtgui:5 - dev-qt/qtsql:5 - dev-qt/qtwidgets:5 - dev-qt/qtxml:5 - >=media-libs/opencv-3[contrib] -" -RDEPEND="${DEPEND} - !media-libs/libkface -" - -src_configure() { - local mycmakeargs=( - -DENABLE_OPENCV3=ON - ) - - kde5_src_configure -} diff --git a/kde-apps/libkface/libkface-.ebuild b/kde-apps/libkface/libkface-.ebuild index 65e1b8c..fc4c3d3 100644 --- a/kde-apps/libkface/libkface-.ebuild +++ b/kde-apps/libkface/libkface-.ebuild @@ -4,7 +4,7 @@ EAPI=5 -inherit kde4-base +inherit kde5 DESCRIPTION="Qt/C++ wrapper around LibFace to perform face recognition and detection" HOMEPAGE="http://api.kde.org/4.x-api/kdegraphics-apidocs/libs/libkface/libkface/html/index.html"; @@ -14,6 +14,21 @@ IUSE="" KEYWORDS="" -DEPEND=">=media-libs/opencv-2.4.9" +DEPEND=" + dev-qt/qtgui:5 + dev-qt/qtsql:5 + dev-qt/qtwidgets:5 + dev-qt/qtxml:5 + >=media-libs/opencv-3[contrib] +" RDEPEND="${DEPEND} - !media-libs/libkface" + !media-libs/libkface +" + +src_configure() { + local mycmakeargs=( + -DENABLE_OPENCV3=ON + ) + + kde5_src_configure +}
[gentoo-commits] proj/kde:master commit in: kde-apps/kdenetwork-filesharing/
commit: c0a2e0a9e04a836a65caeb609bd9d00d39a3e129 Author: Andreas Sturmlechner gmail com> AuthorDate: Thu Oct 15 20:20:53 2015 + Commit: Michael Palimaka gentoo org> CommitDate: Fri Oct 16 18:24:09 2015 + URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=c0a2e0a9 kde-apps/kdenetwork-filesharing: Add kf5 version Package-Manager: portage-2.2.23 .../kdenetwork-filesharing-.ebuild | 23 -- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/kde-apps/kdenetwork-filesharing/kdenetwork-filesharing-.ebuild b/kde-apps/kdenetwork-filesharing/kdenetwork-filesharing-.ebuild index 6cfc6e5..dbc8de3 100644 --- a/kde-apps/kdenetwork-filesharing/kdenetwork-filesharing-.ebuild +++ b/kde-apps/kdenetwork-filesharing/kdenetwork-filesharing-.ebuild @@ -4,8 +4,27 @@ EAPI=5 -inherit kde4-base +inherit kde5 DESCRIPTION="kcontrol filesharing config module for SMB" KEYWORDS="" -IUSE="debug" +IUSE="" + +DEPEND=" + $(add_frameworks_dep kcompletion) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kio) + $(add_frameworks_dep kwidgetsaddons) + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + -DCMAKE_DISABLE_FIND_PACKAGE_PackageKitQt5=ON + ) + + kde5_src_configure +}
[gentoo-commits] proj/qt:master commit in: dev-qt/qtmultimedia/
commit: 5e867829ffcd203afb15002c849032fc779b7823 Author: Michael Palimaka gentoo org> AuthorDate: Fri Oct 16 18:20:37 2015 + Commit: Michael Palimaka gentoo org> CommitDate: Fri Oct 16 18:21:05 2015 + URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=5e867829 dev-qt/qtmultimedia: add missing dependency Package-Manager: portage-2.2.20.1 dev-qt/qtmultimedia/metadata.xml | 1 + dev-qt/qtmultimedia/qtmultimedia-5.5.0.ebuild| 6 +- dev-qt/qtmultimedia/qtmultimedia-5.5.1.ebuild| 6 +- dev-qt/qtmultimedia/qtmultimedia-5.5..ebuild | 6 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/dev-qt/qtmultimedia/metadata.xml b/dev-qt/qtmultimedia/metadata.xml index 285042b..c018a17 100644 --- a/dev-qt/qtmultimedia/metadata.xml +++ b/dev-qt/qtmultimedia/metadata.xml @@ -3,6 +3,7 @@ qt + Enable EGL integration Add support for exceptions - like catching them inside the event loop (recommended by upstream) Enable audio support via media-libs/gstreamer:1.0 diff --git a/dev-qt/qtmultimedia/qtmultimedia-5.5.0.ebuild b/dev-qt/qtmultimedia/qtmultimedia-5.5.0.ebuild index dd56d86..e356a18 100644 --- a/dev-qt/qtmultimedia/qtmultimedia-5.5.0.ebuild +++ b/dev-qt/qtmultimedia/qtmultimedia-5.5.0.ebuild @@ -11,7 +11,7 @@ if [[ ${QT5_BUILD_TYPE} == release ]]; then KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86" fi -IUSE="alsa gstreamer gstreamer010 openal pulseaudio qml widgets" +IUSE="alsa egl gstreamer gstreamer010 openal pulseaudio qml widgets" REQUIRED_USE="?? ( gstreamer gstreamer010 )" RDEPEND=" @@ -20,11 +20,13 @@ RDEPEND=" >=dev-qt/qtnetwork-${PV}:5 alsa? ( media-libs/alsa-lib ) gstreamer? ( + dev-libs/glib:2 media-libs/gstreamer:1.0 media-libs/gst-plugins-bad:1.0 media-libs/gst-plugins-base:1.0 ) gstreamer010? ( + dev-libs/glib:2 media-libs/gstreamer:0.10 media-libs/gst-plugins-bad:0.10 media-libs/gst-plugins-base:0.10 @@ -32,6 +34,8 @@ RDEPEND=" pulseaudio? ( media-sound/pulseaudio ) qml? ( >=dev-qt/qtdeclarative-${PV}:5 + >=dev-qt/qtgui-${PV}:5[egl=] + egl? ( >=dev-qt/qtgui-${PV}:5[egl,gles2] ) openal? ( media-libs/openal ) ) widgets? ( diff --git a/dev-qt/qtmultimedia/qtmultimedia-5.5.1.ebuild b/dev-qt/qtmultimedia/qtmultimedia-5.5.1.ebuild index dd56d86..e356a18 100644 --- a/dev-qt/qtmultimedia/qtmultimedia-5.5.1.ebuild +++ b/dev-qt/qtmultimedia/qtmultimedia-5.5.1.ebuild @@ -11,7 +11,7 @@ if [[ ${QT5_BUILD_TYPE} == release ]]; then KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86" fi -IUSE="alsa gstreamer gstreamer010 openal pulseaudio qml widgets" +IUSE="alsa egl gstreamer gstreamer010 openal pulseaudio qml widgets" REQUIRED_USE="?? ( gstreamer gstreamer010 )" RDEPEND=" @@ -20,11 +20,13 @@ RDEPEND=" >=dev-qt/qtnetwork-${PV}:5 alsa? ( media-libs/alsa-lib ) gstreamer? ( + dev-libs/glib:2 media-libs/gstreamer:1.0 media-libs/gst-plugins-bad:1.0 media-libs/gst-plugins-base:1.0 ) gstreamer010? ( + dev-libs/glib:2 media-libs/gstreamer:0.10 media-libs/gst-plugins-bad:0.10 media-libs/gst-plugins-base:0.10 @@ -32,6 +34,8 @@ RDEPEND=" pulseaudio? ( media-sound/pulseaudio ) qml? ( >=dev-qt/qtdeclarative-${PV}:5 + >=dev-qt/qtgui-${PV}:5[egl=] + egl? ( >=dev-qt/qtgui-${PV}:5[egl,gles2] ) openal? ( media-libs/openal ) ) widgets? ( diff --git a/dev-qt/qtmultimedia/qtmultimedia-5.5..ebuild b/dev-qt/qtmultimedia/qtmultimedia-5.5..ebuild index dd56d86..e356a18 100644 --- a/dev-qt/qtmultimedia/qtmultimedia-5.5..ebuild +++ b/dev-qt/qtmultimedia/qtmultimedia-5.5..ebuild @@ -11,7 +11,7 @@ if [[ ${QT5_BUILD_TYPE} == release ]]; then KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86" fi -IUSE="alsa gstreamer gstreamer010 openal pulseaudio qml widgets" +IUSE="alsa egl gstreamer gstreamer010 openal pulseaudio qml widgets" REQUIRED_USE="?? ( gstreamer gstreamer010 )" RDEPEND=" @@ -20,11 +20,13 @@ RDEPEND=" >=dev-qt/qtnetwork-${PV}:5 alsa? ( media-libs/alsa-lib ) gstreamer? ( + dev-libs/glib:2 media-libs/gstreamer:1.0 media-libs/gst-plugins-bad:1.0 media-libs/gst-plugins-base:1.0 ) gstreamer010? ( + dev-libs/glib:2 media-libs/gstreamer:0.10 media-libs/gst-plugins-bad:0.10 media-libs/gst-plugins-base:0.10 @@ -32,6 +34,8 @@ RDEPEND=" pulseaudio? ( media-sound/
[gentoo-commits] proj/qt:master commit in: dev-qt/qtquick1/
commit: 5819750fc983386edd11d90680082626675dc948 Author: Michael Palimaka gentoo org> AuthorDate: Fri Oct 16 17:52:53 2015 + Commit: Michael Palimaka gentoo org> CommitDate: Fri Oct 16 17:53:41 2015 + URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=5819750f dev-qt/qtquick1: introduce gles2 USE flag opengl/gles2 selection in libqmlshadersplugin.so happens automagically based on how qtgui is built. Package-Manager: portage-2.2.20.1 dev-qt/qtquick1/metadata.xml | 1 + dev-qt/qtquick1/qtquick1-5.5.0.ebuild| 7 +-- dev-qt/qtquick1/qtquick1-5.5.1.ebuild| 7 +-- dev-qt/qtquick1/qtquick1-5.5..ebuild | 7 +-- dev-qt/qtquick1/qtquick1-5.6..ebuild | 7 +-- dev-qt/qtquick1/qtquick1-5..ebuild | 7 +-- 6 files changed, 26 insertions(+), 10 deletions(-) diff --git a/dev-qt/qtquick1/metadata.xml b/dev-qt/qtquick1/metadata.xml index ff6648b..c4dea83 100644 --- a/dev-qt/qtquick1/metadata.xml +++ b/dev-qt/qtquick1/metadata.xml @@ -4,6 +4,7 @@ qt Build plugin for dev-qt/designer + Use GLES 2.0 or later instead of full OpenGL Build the WebView import for QtQuick1 (requires QtWebKit) Build the XmlListModel import for QtQuick1 (requires QtXmlPatterns) diff --git a/dev-qt/qtquick1/qtquick1-5.5.0.ebuild b/dev-qt/qtquick1/qtquick1-5.5.0.ebuild index e2c3c3c..527e552 100644 --- a/dev-qt/qtquick1/qtquick1-5.5.0.ebuild +++ b/dev-qt/qtquick1/qtquick1-5.5.0.ebuild @@ -11,7 +11,7 @@ if [[ ${QT5_BUILD_TYPE} == release ]]; then KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~x86" fi -IUSE="designer opengl webkit xml" +IUSE="designer gles2 opengl webkit xml" # see bug 542698 for pinned dev-qt/designer dependency DEPEND=" @@ -25,7 +25,10 @@ DEPEND=" ~dev-qt/designer-${PV} >=dev-qt/qtdeclarative-${PV}:5 ) - opengl? ( >=dev-qt/qtopengl-${PV}:5 ) + opengl? ( + >=dev-qt/qtgui-${PV}:5[gles2=] + >=dev-qt/qtopengl-${PV}:5 + ) webkit? ( >=dev-qt/qtwebkit-${PV}:5 ) xml? ( >=dev-qt/qtxmlpatterns-${PV}:5 ) " diff --git a/dev-qt/qtquick1/qtquick1-5.5.1.ebuild b/dev-qt/qtquick1/qtquick1-5.5.1.ebuild index e2c3c3c..527e552 100644 --- a/dev-qt/qtquick1/qtquick1-5.5.1.ebuild +++ b/dev-qt/qtquick1/qtquick1-5.5.1.ebuild @@ -11,7 +11,7 @@ if [[ ${QT5_BUILD_TYPE} == release ]]; then KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~x86" fi -IUSE="designer opengl webkit xml" +IUSE="designer gles2 opengl webkit xml" # see bug 542698 for pinned dev-qt/designer dependency DEPEND=" @@ -25,7 +25,10 @@ DEPEND=" ~dev-qt/designer-${PV} >=dev-qt/qtdeclarative-${PV}:5 ) - opengl? ( >=dev-qt/qtopengl-${PV}:5 ) + opengl? ( + >=dev-qt/qtgui-${PV}:5[gles2=] + >=dev-qt/qtopengl-${PV}:5 + ) webkit? ( >=dev-qt/qtwebkit-${PV}:5 ) xml? ( >=dev-qt/qtxmlpatterns-${PV}:5 ) " diff --git a/dev-qt/qtquick1/qtquick1-5.5..ebuild b/dev-qt/qtquick1/qtquick1-5.5..ebuild index e2c3c3c..527e552 100644 --- a/dev-qt/qtquick1/qtquick1-5.5..ebuild +++ b/dev-qt/qtquick1/qtquick1-5.5..ebuild @@ -11,7 +11,7 @@ if [[ ${QT5_BUILD_TYPE} == release ]]; then KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~x86" fi -IUSE="designer opengl webkit xml" +IUSE="designer gles2 opengl webkit xml" # see bug 542698 for pinned dev-qt/designer dependency DEPEND=" @@ -25,7 +25,10 @@ DEPEND=" ~dev-qt/designer-${PV} >=dev-qt/qtdeclarative-${PV}:5 ) - opengl? ( >=dev-qt/qtopengl-${PV}:5 ) + opengl? ( + >=dev-qt/qtgui-${PV}:5[gles2=] + >=dev-qt/qtopengl-${PV}:5 + ) webkit? ( >=dev-qt/qtwebkit-${PV}:5 ) xml? ( >=dev-qt/qtxmlpatterns-${PV}:5 ) " diff --git a/dev-qt/qtquick1/qtquick1-5.6..ebuild b/dev-qt/qtquick1/qtquick1-5.6..ebuild index e2c3c3c..527e552 100644 --- a/dev-qt/qtquick1/qtquick1-5.6..ebuild +++ b/dev-qt/qtquick1/qtquick1-5.6..ebuild @@ -11,7 +11,7 @@ if [[ ${QT5_BUILD_TYPE} == release ]]; then KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~x86" fi -IUSE="designer opengl webkit xml" +IUSE="designer gles2 opengl webkit xml" # see bug 542698 for pinned dev-qt/designer dependency DEPEND=" @@ -25,7 +25,10 @@ DEPEND=" ~dev-qt/designer-${PV} >=dev-qt/qtdeclarative-${PV}:5 ) - opengl? ( >=dev-qt/qtopengl-${PV}:5 ) + opengl? ( + >=dev-qt/qtgui-${PV}:5[gles2=] + >=dev-qt/qtopengl-${PV}:5 + ) webkit? ( >=dev-qt/qtwebkit-${PV}:5 ) xml? ( >=dev-qt/qtxmlpatterns-${PV}:5 ) " diff --git a/dev-qt/qtquick1/qtquick1-5..ebuild b/dev-qt/qtquick1/qtquick1-5..ebuild index e2c3c3c..527e552 100644 --- a/dev-qt/qtquick1/qtquick1-5..ebuild +++ b/dev-qt/qtqu
[gentoo-commits] repo/gentoo:master commit in: dev-ml/qcheck/
commit: 9b55086ca66bd6cdfb25d21fa3c198055a770c94 Author: Matthew Brewer sina cn> AuthorDate: Fri Oct 16 11:59:04 2015 + Commit: Alexis Ballier gentoo org> CommitDate: Fri Oct 16 17:47:59 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b55086c dev-ml/qcheck: new ebuild - needed as a transitive dependency for Libre S3 1.1 (net-misc/libres3) dev-ml/qcheck/Manifest | 1 + dev-ml/qcheck/metadata.xml | 12 dev-ml/qcheck/qcheck-0.4.0.1.ebuild | 32 3 files changed, 45 insertions(+) diff --git a/dev-ml/qcheck/Manifest b/dev-ml/qcheck/Manifest new file mode 100644 index 000..9dba71e --- /dev/null +++ b/dev-ml/qcheck/Manifest @@ -0,0 +1 @@ +DIST qcheck-0.4.0.1.tar.gz 55783 SHA256 4c90f4babc35ed9672b9a48d69c480812b030e7194c617614a8b2d11d023ad65 SHA512 9a8476749ee5d97708d3f074e3c948511231aef8a49029c8d284a9d1413f2f5bb3b6bd048ec0998e4e762171626613a81f9275224ad16900094e735f4c82f057 WHIRLPOOL be8dcef3e6b8761fac35df1c41b2adc49f8afeaf7d06c1ba92ebba7ce6ac4a7f0fab213e2360277c074051f5ac48cad0b45069a6a1b8b3b3a6edcac72b769e21 diff --git a/dev-ml/qcheck/metadata.xml b/dev-ml/qcheck/metadata.xml new file mode 100644 index 000..04ee825 --- /dev/null +++ b/dev-ml/qcheck/metadata.xml @@ -0,0 +1,12 @@ + +http://www.gentoo.org/dtd/metadata.dtd";> + + ml + proxy-maintainers + + tombo...@sina.cn + + + Enable integration with ounit + + diff --git a/dev-ml/qcheck/qcheck-0.4.0.1.ebuild b/dev-ml/qcheck/qcheck-0.4.0.1.ebuild new file mode 100644 index 000..30bdabd --- /dev/null +++ b/dev-ml/qcheck/qcheck-0.4.0.1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +OASIS_BUILD_DOCS=1 + +inherit oasis + +DESCRIPTION="QuickCheck inspired property-based testing for OCaml" +HOMEPAGE="https://github.com/c-cube/qcheck"; +SRC_URI="https://github.com/c-cube/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="+ounit" + +RDEPEND=" + ounit? ( >=dev-ml/ounit-2:= ) +" +DEPEND=" + ${RDEPEND} +" + +src_configure() { + oasis_configure_opts=" + $(use_enable ounit) + " oasis_src_configure +} + +DOCS=( CHANGELOG.md README.md )
[gentoo-commits] repo/gentoo:master commit in: /
commit: 7b40e23738590fc5842676dab0cbdf7eaf49a7a2 Author: Alexis Ballier gentoo org> AuthorDate: Fri Oct 16 17:50:40 2015 + Commit: Alexis Ballier gentoo org> CommitDate: Fri Oct 16 17:50:40 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b40e237 Merge remote-tracking branch 'github/pr/232' dev-ml/qcheck/Manifest | 1 + dev-ml/qcheck/metadata.xml | 12 dev-ml/qcheck/qcheck-0.4.0.1.ebuild | 32 3 files changed, 45 insertions(+)
[gentoo-commits] proj/qt:master commit in: dev-qt/qtwayland/
commit: 9b6aeed0d45473bc481cf41f2092e9b41fd8a1de Author: Michael Palimaka gentoo org> AuthorDate: Fri Oct 16 17:16:44 2015 + Commit: Michael Palimaka gentoo org> CommitDate: Fri Oct 16 17:17:18 2015 + URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=9b6aeed0 dev-qt/qtwayland: fix automagic dependency Package-Manager: portage-2.2.20.1 dev-qt/qtwayland/qtwayland-5.5.0.ebuild| 5 - dev-qt/qtwayland/qtwayland-5.5.1.ebuild| 5 - dev-qt/qtwayland/qtwayland-5.5..ebuild | 5 - dev-qt/qtwayland/qtwayland-5.6..ebuild | 5 - dev-qt/qtwayland/qtwayland-5..ebuild | 5 - 5 files changed, 20 insertions(+), 5 deletions(-) diff --git a/dev-qt/qtwayland/qtwayland-5.5.0.ebuild b/dev-qt/qtwayland/qtwayland-5.5.0.ebuild index 963447e..42f300b 100644 --- a/dev-qt/qtwayland/qtwayland-5.5.0.ebuild +++ b/dev-qt/qtwayland/qtwayland-5.5.0.ebuild @@ -19,7 +19,9 @@ DEPEND=" >=dev-qt/qtgui-${PV}:5[egl=] media-libs/mesa[egl?] >=x11-libs/libxkbcommon-0.2.0 - qml? ( >=dev-qt/qtdeclarative-${PV}:5 ) + wayland-compositor? ( + qml? ( >=dev-qt/qtdeclarative-${PV}:5 ) + ) xcomposite? ( x11-libs/libX11 x11-libs/libXcomposite @@ -33,6 +35,7 @@ src_configure() { fi qt_use_compile_test xcomposite + qt_use_disable_mod qml quick src/compositor/compositor_api/compositor_api.pri qt5-build_src_configure } diff --git a/dev-qt/qtwayland/qtwayland-5.5.1.ebuild b/dev-qt/qtwayland/qtwayland-5.5.1.ebuild index 963447e..42f300b 100644 --- a/dev-qt/qtwayland/qtwayland-5.5.1.ebuild +++ b/dev-qt/qtwayland/qtwayland-5.5.1.ebuild @@ -19,7 +19,9 @@ DEPEND=" >=dev-qt/qtgui-${PV}:5[egl=] media-libs/mesa[egl?] >=x11-libs/libxkbcommon-0.2.0 - qml? ( >=dev-qt/qtdeclarative-${PV}:5 ) + wayland-compositor? ( + qml? ( >=dev-qt/qtdeclarative-${PV}:5 ) + ) xcomposite? ( x11-libs/libX11 x11-libs/libXcomposite @@ -33,6 +35,7 @@ src_configure() { fi qt_use_compile_test xcomposite + qt_use_disable_mod qml quick src/compositor/compositor_api/compositor_api.pri qt5-build_src_configure } diff --git a/dev-qt/qtwayland/qtwayland-5.5..ebuild b/dev-qt/qtwayland/qtwayland-5.5..ebuild index 963447e..42f300b 100644 --- a/dev-qt/qtwayland/qtwayland-5.5..ebuild +++ b/dev-qt/qtwayland/qtwayland-5.5..ebuild @@ -19,7 +19,9 @@ DEPEND=" >=dev-qt/qtgui-${PV}:5[egl=] media-libs/mesa[egl?] >=x11-libs/libxkbcommon-0.2.0 - qml? ( >=dev-qt/qtdeclarative-${PV}:5 ) + wayland-compositor? ( + qml? ( >=dev-qt/qtdeclarative-${PV}:5 ) + ) xcomposite? ( x11-libs/libX11 x11-libs/libXcomposite @@ -33,6 +35,7 @@ src_configure() { fi qt_use_compile_test xcomposite + qt_use_disable_mod qml quick src/compositor/compositor_api/compositor_api.pri qt5-build_src_configure } diff --git a/dev-qt/qtwayland/qtwayland-5.6..ebuild b/dev-qt/qtwayland/qtwayland-5.6..ebuild index 963447e..42f300b 100644 --- a/dev-qt/qtwayland/qtwayland-5.6..ebuild +++ b/dev-qt/qtwayland/qtwayland-5.6..ebuild @@ -19,7 +19,9 @@ DEPEND=" >=dev-qt/qtgui-${PV}:5[egl=] media-libs/mesa[egl?] >=x11-libs/libxkbcommon-0.2.0 - qml? ( >=dev-qt/qtdeclarative-${PV}:5 ) + wayland-compositor? ( + qml? ( >=dev-qt/qtdeclarative-${PV}:5 ) + ) xcomposite? ( x11-libs/libX11 x11-libs/libXcomposite @@ -33,6 +35,7 @@ src_configure() { fi qt_use_compile_test xcomposite + qt_use_disable_mod qml quick src/compositor/compositor_api/compositor_api.pri qt5-build_src_configure } diff --git a/dev-qt/qtwayland/qtwayland-5..ebuild b/dev-qt/qtwayland/qtwayland-5..ebuild index 963447e..42f300b 100644 --- a/dev-qt/qtwayland/qtwayland-5..ebuild +++ b/dev-qt/qtwayland/qtwayland-5..ebuild @@ -19,7 +19,9 @@ DEPEND=" >=dev-qt/qtgui-${PV}:5[egl=] media-libs/mesa[egl?] >=x11-libs/libxkbcommon-0.2.0 - qml? ( >=dev-qt/qtdeclarative-${PV}:5 ) + wayland-compositor? ( + qml? ( >=dev-qt/qtdeclarative-${PV}:5 ) + ) xcomposite? ( x11-libs/libX11 x11-libs/libXcomposite @@ -33,6 +35,7 @@ src_configure() { fi qt_use_compile_test xcomposite + qt_use_disable_mod qml quick src/compositor/compositor_api/compositor_api.pri qt5-build_src_configure }
[gentoo-commits] proj/qt:master commit in: dev-qt/qtdbus/
commit: a2556aabcddfc7dedcbd9d8747430c9930c49f89 Author: Michael Palimaka gentoo org> AuthorDate: Fri Oct 16 17:11:57 2015 + Commit: Michael Palimaka gentoo org> CommitDate: Fri Oct 16 17:11:57 2015 + URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=a2556aab dev-qt/qtdbus: remove unused dependency Package-Manager: portage-2.2.20.1 dev-qt/qtdbus/qtdbus-5.5.0.ebuild| 1 - dev-qt/qtdbus/qtdbus-5.5.1.ebuild| 1 - dev-qt/qtdbus/qtdbus-5.5..ebuild | 1 - dev-qt/qtdbus/qtdbus-5.6..ebuild | 1 - dev-qt/qtdbus/qtdbus-5..ebuild | 1 - 5 files changed, 5 deletions(-) diff --git a/dev-qt/qtdbus/qtdbus-5.5.0.ebuild b/dev-qt/qtdbus/qtdbus-5.5.0.ebuild index aa94752..bc41ade 100644 --- a/dev-qt/qtdbus/qtdbus-5.5.0.ebuild +++ b/dev-qt/qtdbus/qtdbus-5.5.0.ebuild @@ -17,7 +17,6 @@ IUSE="" DEPEND=" ~dev-qt/qtcore-${PV} >=sys-apps/dbus-1.4.20 - >=sys-libs/zlib-1.2.5 " RDEPEND="${DEPEND}" diff --git a/dev-qt/qtdbus/qtdbus-5.5.1.ebuild b/dev-qt/qtdbus/qtdbus-5.5.1.ebuild index aa94752..bc41ade 100644 --- a/dev-qt/qtdbus/qtdbus-5.5.1.ebuild +++ b/dev-qt/qtdbus/qtdbus-5.5.1.ebuild @@ -17,7 +17,6 @@ IUSE="" DEPEND=" ~dev-qt/qtcore-${PV} >=sys-apps/dbus-1.4.20 - >=sys-libs/zlib-1.2.5 " RDEPEND="${DEPEND}" diff --git a/dev-qt/qtdbus/qtdbus-5.5..ebuild b/dev-qt/qtdbus/qtdbus-5.5..ebuild index aa94752..bc41ade 100644 --- a/dev-qt/qtdbus/qtdbus-5.5..ebuild +++ b/dev-qt/qtdbus/qtdbus-5.5..ebuild @@ -17,7 +17,6 @@ IUSE="" DEPEND=" ~dev-qt/qtcore-${PV} >=sys-apps/dbus-1.4.20 - >=sys-libs/zlib-1.2.5 " RDEPEND="${DEPEND}" diff --git a/dev-qt/qtdbus/qtdbus-5.6..ebuild b/dev-qt/qtdbus/qtdbus-5.6..ebuild index aa94752..bc41ade 100644 --- a/dev-qt/qtdbus/qtdbus-5.6..ebuild +++ b/dev-qt/qtdbus/qtdbus-5.6..ebuild @@ -17,7 +17,6 @@ IUSE="" DEPEND=" ~dev-qt/qtcore-${PV} >=sys-apps/dbus-1.4.20 - >=sys-libs/zlib-1.2.5 " RDEPEND="${DEPEND}" diff --git a/dev-qt/qtdbus/qtdbus-5..ebuild b/dev-qt/qtdbus/qtdbus-5..ebuild index aa94752..bc41ade 100644 --- a/dev-qt/qtdbus/qtdbus-5..ebuild +++ b/dev-qt/qtdbus/qtdbus-5..ebuild @@ -17,7 +17,6 @@ IUSE="" DEPEND=" ~dev-qt/qtcore-${PV} >=sys-apps/dbus-1.4.20 - >=sys-libs/zlib-1.2.5 " RDEPEND="${DEPEND}"
[gentoo-commits] repo/gentoo:master commit in: dev-ml/ocplib-endian/
commit: 182769d44981f1bcdea876e93fd6b00e387c62e8 Author: Matthew Brewer sina cn> AuthorDate: Fri Oct 16 12:20:48 2015 + Commit: Alexis Ballier gentoo org> CommitDate: Fri Oct 16 16:53:19 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=182769d4 dev-ml/ocplib-endian: new ebuild - needed as a transitive dependency of Libre S3 1.1 (net-misc/libres3) - explicit support for MirageOS is not enabled dev-ml/ocplib-endian/Manifest | 1 + dev-ml/ocplib-endian/metadata.xml | 9 + dev-ml/ocplib-endian/ocplib-endian-0.8.ebuild | 25 + 3 files changed, 35 insertions(+) diff --git a/dev-ml/ocplib-endian/Manifest b/dev-ml/ocplib-endian/Manifest new file mode 100644 index 000..57464cb --- /dev/null +++ b/dev-ml/ocplib-endian/Manifest @@ -0,0 +1 @@ +DIST ocplib-endian-0.8.tar.gz 56733 SHA256 34a9ffda92459ae0ccd0b6e97cd947ed59f565f5a5776f51e18f5fec27c8ea44 SHA512 6978e9e306faf115d1b732e221dad8a1eea1c2eae12b5ca6f5462ee8b603900fcc585dc5a20e0a35fa793cf3d9fe50833b284a4385bc3d251e86457bf54a8697 WHIRLPOOL 9f595128d0c1281c56c70ef76522afa721d5b7e81199218b6509d9aa4b8a7c32b5f64b1d6b3dd65c9c7dc5a638233f3e46ef7ed1de88614f62d2a6a6c70e3be6 diff --git a/dev-ml/ocplib-endian/metadata.xml b/dev-ml/ocplib-endian/metadata.xml new file mode 100644 index 000..a33970c --- /dev/null +++ b/dev-ml/ocplib-endian/metadata.xml @@ -0,0 +1,9 @@ + +http://www.gentoo.org/dtd/metadata.dtd";> + +ml +proxy-maintainers + +tombo...@sina.cn + + diff --git a/dev-ml/ocplib-endian/ocplib-endian-0.8.ebuild b/dev-ml/ocplib-endian/ocplib-endian-0.8.ebuild new file mode 100644 index 000..445b2f8 --- /dev/null +++ b/dev-ml/ocplib-endian/ocplib-endian-0.8.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +OASIS_BUILD_TESTS=1 + +inherit oasis + +DESCRIPTION="Optimised functions to read and write int16/32/64 from strings, bytes and bigarrays" +HOMEPAGE="https://github.com/OCamlPro/ocplib-endian"; +SRC_URI="https://github.com/OCamlPro/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-2.1-with-linking-exception" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND=" + >=dev-lang/ocaml-4.01 + >=dev-ml/cppo-1.1.0 +" +RDEPEND="" + +DOCS=( CHANGES.md COPYING.txt README.md )
[gentoo-commits] repo/gentoo:master commit in: /
commit: 97d14feb6d70f8c0ff719ba8fe1e941ac4133081 Author: Alexis Ballier gentoo org> AuthorDate: Fri Oct 16 17:10:19 2015 + Commit: Alexis Ballier gentoo org> CommitDate: Fri Oct 16 17:10:19 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97d14feb Merge remote-tracking branch 'github/pr/230' dev-ml/ocplib-endian/Manifest | 1 + dev-ml/ocplib-endian/metadata.xml | 9 + dev-ml/ocplib-endian/ocplib-endian-0.8.ebuild | 25 + 3 files changed, 35 insertions(+)
[gentoo-commits] repo/gentoo:master commit in: profiles/arch/x86-fbsd/
commit: 277de5de2bccd3385807a608a88cce159f0b663b Author: Davide Pesavento gentoo org> AuthorDate: Fri Oct 16 16:58:10 2015 + Commit: Davide Pesavento gentoo org> CommitDate: Fri Oct 16 16:58:10 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=277de5de profiles: unmask Qt >= 4.8.6 on x86-fbsd dev-qt/qtchooser has finally been keyworded. Signed-off-by: Davide Pesavento gentoo.org> profiles/arch/x86-fbsd/package.mask | 31 --- 1 file changed, 31 deletions(-) diff --git a/profiles/arch/x86-fbsd/package.mask b/profiles/arch/x86-fbsd/package.mask deleted file mode 100644 index 5264156..000 --- a/profiles/arch/x86-fbsd/package.mask +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -# Davide Pesavento (20 Nov 2014) -# Qt4 multilib ebuilds, masked until dev-qt/qtchooser -# gets keyworded. See bug 529196. ->=dev-qt/assistant-4.8.6:4 ->=dev-qt/designer-4.8.6:4 ->=dev-qt/linguist-4.8.6:4 ->=dev-qt/pixeltool-4.8.6:4 ->=dev-qt/qdbusviewer-4.8.6:4 ->=dev-qt/qt3support-4.8.6:4 ->=dev-qt/qtbearer-4.8.6:4 ->=dev-qt/qtcore-4.8.6:4 ->=dev-qt/qtdbus-4.8.6:4 ->=dev-qt/qtdeclarative-4.8.6:4 ->=dev-qt/qtdemo-4.8.6:4 ->=dev-qt/qtgui-4.8.6:4 ->=dev-qt/qthelp-4.8.6:4 ->=dev-qt/qtmultimedia-4.8.6:4 ->=dev-qt/qtopengl-4.8.6:4 ->=dev-qt/qtopenvg-4.8.6:4 ->=dev-qt/qtphonon-4.8.6:4 ->=dev-qt/qtscript-4.8.6:4 ->=dev-qt/qtsql-4.8.6:4 ->=dev-qt/qtsvg-4.8.6:4 ->=dev-qt/qttest-4.8.6:4 ->=dev-qt/qttranslations-4.8.6:4 ->=dev-qt/qtwebkit-4.8.6:4 ->=dev-qt/qtxmlpatterns-4.8.6:4
[gentoo-commits] proj/qt:master commit in: dev-qt/qtx11extras/
commit: dfb1354889d4e7f2d6a7babe203a05b4ee2674e4 Author: Michael Palimaka gentoo org> AuthorDate: Fri Oct 16 16:37:21 2015 + Commit: Michael Palimaka gentoo org> CommitDate: Fri Oct 16 16:37:21 2015 + URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=dfb13548 dev-qt/qtx11extras: add test dependency Package-Manager: portage-2.2.20.1 dev-qt/qtx11extras/qtx11extras-5.5.0.ebuild| 4 +++- dev-qt/qtx11extras/qtx11extras-5.5.1.ebuild| 4 +++- dev-qt/qtx11extras/qtx11extras-5.5..ebuild | 4 +++- dev-qt/qtx11extras/qtx11extras-5.6..ebuild | 4 +++- dev-qt/qtx11extras/qtx11extras-5..ebuild | 4 +++- 5 files changed, 15 insertions(+), 5 deletions(-) diff --git a/dev-qt/qtx11extras/qtx11extras-5.5.0.ebuild b/dev-qt/qtx11extras/qtx11extras-5.5.0.ebuild index a84d269..d5a72d5 100644 --- a/dev-qt/qtx11extras/qtx11extras-5.5.0.ebuild +++ b/dev-qt/qtx11extras/qtx11extras-5.5.0.ebuild @@ -17,4 +17,6 @@ RDEPEND=" ~dev-qt/qtcore-${PV} ~dev-qt/qtgui-${PV}[xcb] " -DEPEND="${RDEPEND}" +DEPEND="${RDEPEND} + test? ( ~dev-qt/qtwidgets-${PV} ) +" diff --git a/dev-qt/qtx11extras/qtx11extras-5.5.1.ebuild b/dev-qt/qtx11extras/qtx11extras-5.5.1.ebuild index a84d269..d5a72d5 100644 --- a/dev-qt/qtx11extras/qtx11extras-5.5.1.ebuild +++ b/dev-qt/qtx11extras/qtx11extras-5.5.1.ebuild @@ -17,4 +17,6 @@ RDEPEND=" ~dev-qt/qtcore-${PV} ~dev-qt/qtgui-${PV}[xcb] " -DEPEND="${RDEPEND}" +DEPEND="${RDEPEND} + test? ( ~dev-qt/qtwidgets-${PV} ) +" diff --git a/dev-qt/qtx11extras/qtx11extras-5.5..ebuild b/dev-qt/qtx11extras/qtx11extras-5.5..ebuild index a84d269..d5a72d5 100644 --- a/dev-qt/qtx11extras/qtx11extras-5.5..ebuild +++ b/dev-qt/qtx11extras/qtx11extras-5.5..ebuild @@ -17,4 +17,6 @@ RDEPEND=" ~dev-qt/qtcore-${PV} ~dev-qt/qtgui-${PV}[xcb] " -DEPEND="${RDEPEND}" +DEPEND="${RDEPEND} + test? ( ~dev-qt/qtwidgets-${PV} ) +" diff --git a/dev-qt/qtx11extras/qtx11extras-5.6..ebuild b/dev-qt/qtx11extras/qtx11extras-5.6..ebuild index a84d269..d5a72d5 100644 --- a/dev-qt/qtx11extras/qtx11extras-5.6..ebuild +++ b/dev-qt/qtx11extras/qtx11extras-5.6..ebuild @@ -17,4 +17,6 @@ RDEPEND=" ~dev-qt/qtcore-${PV} ~dev-qt/qtgui-${PV}[xcb] " -DEPEND="${RDEPEND}" +DEPEND="${RDEPEND} + test? ( ~dev-qt/qtwidgets-${PV} ) +" diff --git a/dev-qt/qtx11extras/qtx11extras-5..ebuild b/dev-qt/qtx11extras/qtx11extras-5..ebuild index a84d269..d5a72d5 100644 --- a/dev-qt/qtx11extras/qtx11extras-5..ebuild +++ b/dev-qt/qtx11extras/qtx11extras-5..ebuild @@ -17,4 +17,6 @@ RDEPEND=" ~dev-qt/qtcore-${PV} ~dev-qt/qtgui-${PV}[xcb] " -DEPEND="${RDEPEND}" +DEPEND="${RDEPEND} + test? ( ~dev-qt/qtwidgets-${PV} ) +"
[gentoo-commits] proj/qt:master commit in: dev-qt/qtx11extras/
commit: 6b900b77257e76b6d282a7eb33546f3b5359c97b Author: Michael Palimaka gentoo org> AuthorDate: Fri Oct 16 16:34:43 2015 + Commit: Michael Palimaka gentoo org> CommitDate: Fri Oct 16 16:34:43 2015 + URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=6b900b77 dev-qt/qtx11extras: remove unused dependency Upstream-commit: 41451c6247d35e90581622b969515378632f3313 Package-Manager: portage-2.2.20.1 dev-qt/qtx11extras/qtx11extras-5.5.0.ebuild| 1 - dev-qt/qtx11extras/qtx11extras-5.5.1.ebuild| 1 - dev-qt/qtx11extras/qtx11extras-5.5..ebuild | 1 - dev-qt/qtx11extras/qtx11extras-5.6..ebuild | 1 - dev-qt/qtx11extras/qtx11extras-5..ebuild | 1 - 5 files changed, 5 deletions(-) diff --git a/dev-qt/qtx11extras/qtx11extras-5.5.0.ebuild b/dev-qt/qtx11extras/qtx11extras-5.5.0.ebuild index c22571b..a84d269 100644 --- a/dev-qt/qtx11extras/qtx11extras-5.5.0.ebuild +++ b/dev-qt/qtx11extras/qtx11extras-5.5.0.ebuild @@ -16,6 +16,5 @@ IUSE="" RDEPEND=" ~dev-qt/qtcore-${PV} ~dev-qt/qtgui-${PV}[xcb] - ~dev-qt/qtwidgets-${PV} " DEPEND="${RDEPEND}" diff --git a/dev-qt/qtx11extras/qtx11extras-5.5.1.ebuild b/dev-qt/qtx11extras/qtx11extras-5.5.1.ebuild index c22571b..a84d269 100644 --- a/dev-qt/qtx11extras/qtx11extras-5.5.1.ebuild +++ b/dev-qt/qtx11extras/qtx11extras-5.5.1.ebuild @@ -16,6 +16,5 @@ IUSE="" RDEPEND=" ~dev-qt/qtcore-${PV} ~dev-qt/qtgui-${PV}[xcb] - ~dev-qt/qtwidgets-${PV} " DEPEND="${RDEPEND}" diff --git a/dev-qt/qtx11extras/qtx11extras-5.5..ebuild b/dev-qt/qtx11extras/qtx11extras-5.5..ebuild index c22571b..a84d269 100644 --- a/dev-qt/qtx11extras/qtx11extras-5.5..ebuild +++ b/dev-qt/qtx11extras/qtx11extras-5.5..ebuild @@ -16,6 +16,5 @@ IUSE="" RDEPEND=" ~dev-qt/qtcore-${PV} ~dev-qt/qtgui-${PV}[xcb] - ~dev-qt/qtwidgets-${PV} " DEPEND="${RDEPEND}" diff --git a/dev-qt/qtx11extras/qtx11extras-5.6..ebuild b/dev-qt/qtx11extras/qtx11extras-5.6..ebuild index c22571b..a84d269 100644 --- a/dev-qt/qtx11extras/qtx11extras-5.6..ebuild +++ b/dev-qt/qtx11extras/qtx11extras-5.6..ebuild @@ -16,6 +16,5 @@ IUSE="" RDEPEND=" ~dev-qt/qtcore-${PV} ~dev-qt/qtgui-${PV}[xcb] - ~dev-qt/qtwidgets-${PV} " DEPEND="${RDEPEND}" diff --git a/dev-qt/qtx11extras/qtx11extras-5..ebuild b/dev-qt/qtx11extras/qtx11extras-5..ebuild index c22571b..a84d269 100644 --- a/dev-qt/qtx11extras/qtx11extras-5..ebuild +++ b/dev-qt/qtx11extras/qtx11extras-5..ebuild @@ -16,6 +16,5 @@ IUSE="" RDEPEND=" ~dev-qt/qtcore-${PV} ~dev-qt/qtgui-${PV}[xcb] - ~dev-qt/qtwidgets-${PV} " DEPEND="${RDEPEND}"
[gentoo-commits] repo/gentoo:master commit in: x11-wm/page/
commit: 86d86e715faf8b53b09ac69661e3ea5489bbd6a7 Author: Patrice Clement gentoo org> AuthorDate: Fri Oct 16 16:12:19 2015 + Commit: Patrice Clement gentoo org> CommitDate: Fri Oct 16 16:15:00 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86d86e71 x11-wm/page: Add SLOT to glib and clean QA warning. Package-Manager: portage-2.2.20.1 Signed-off-by: Patrice Clement gentoo.org> x11-wm/page/page-1.9.6-r3.ebuild | 36 1 file changed, 36 insertions(+) diff --git a/x11-wm/page/page-1.9.6-r3.ebuild b/x11-wm/page/page-1.9.6-r3.ebuild new file mode 100644 index 000..db546ca --- /dev/null +++ b/x11-wm/page/page-1.9.6-r3.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +DESCRIPTION="A mouse friendly tiling window manager" +HOMEPAGE="http://www.hzog.net/index.php/Main_Page"; +SRC_URI="http://www.hzog.net/pub/${P}.tar.gz"; + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="x11-proto/xcb-proto + x11-libs/libxcb + x11-libs/xcb-util + x11-libs/libXfixes + x11-libs/libXdamage + x11-proto/damageproto + x11-proto/randrproto + x11-libs/libXrandr + x11-proto/xproto + x11-proto/fixesproto + x11-proto/compositeproto + x11-libs/libXcomposite + x11-proto/renderproto + x11-libs/libXrender + x11-libs/libXext + x11-proto/xextproto + x11-libs/cairo[xcb] + x11-libs/pango + dev-libs/glib:2" + +RDEPEND="${DEPEND} + !dev-tcltk/tcllib"
[gentoo-commits] repo/gentoo:master commit in: x11-wm/page/
commit: d529f612d55014df2574481e7cbfbebf29e96991 Author: Patrice Clement gentoo org> AuthorDate: Fri Oct 16 16:13:04 2015 + Commit: Patrice Clement gentoo org> CommitDate: Fri Oct 16 16:15:04 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d529f612 x11-wm/page: Clean up old. Package-Manager: portage-2.2.20.1 Signed-off-by: Patrice Clement gentoo.org> x11-wm/page/page-1.9.6-r1.ebuild | 35 --- x11-wm/page/page-1.9.6-r2.ebuild | 36 2 files changed, 71 deletions(-) diff --git a/x11-wm/page/page-1.9.6-r1.ebuild b/x11-wm/page/page-1.9.6-r1.ebuild deleted file mode 100644 index a2341d8..000 --- a/x11-wm/page/page-1.9.6-r1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" - -DESCRIPTION="A mouse friendly tiling window manager" -HOMEPAGE="http://www.hzog.net/index.php/Main_Page"; -SRC_URI="http://www.hzog.net/pub/${P}.tar.gz"; - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -DEPEND="x11-proto/xcb-proto - x11-libs/libxcb - x11-libs/xcb-util - x11-libs/libXfixes - x11-libs/libXdamage - x11-proto/damageproto - x11-proto/randrproto - x11-libs/libXrandr - x11-proto/xproto - x11-proto/fixesproto - x11-proto/compositeproto - x11-libs/libXcomposite - x11-proto/renderproto - x11-libs/libXrender - x11-libs/libXext - x11-proto/xextproto - x11-libs/cairo[xcb] - x11-libs/pango - dev-libs/glib" - -RDEPEND="!dev-tcltk/tcllib" diff --git a/x11-wm/page/page-1.9.6-r2.ebuild b/x11-wm/page/page-1.9.6-r2.ebuild deleted file mode 100644 index ca5672c..000 --- a/x11-wm/page/page-1.9.6-r2.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" - -DESCRIPTION="A mouse friendly tiling window manager" -HOMEPAGE="http://www.hzog.net/index.php/Main_Page"; -SRC_URI="http://www.hzog.net/pub/${P}.tar.gz"; - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -DEPEND="x11-proto/xcb-proto - x11-libs/libxcb - x11-libs/xcb-util - x11-libs/libXfixes - x11-libs/libXdamage - x11-proto/damageproto - x11-proto/randrproto - x11-libs/libXrandr - x11-proto/xproto - x11-proto/fixesproto - x11-proto/compositeproto - x11-libs/libXcomposite - x11-proto/renderproto - x11-libs/libXrender - x11-libs/libXext - x11-proto/xextproto - x11-libs/cairo[xcb] - x11-libs/pango - dev-libs/glib" - -RDEPEND="${DEPEND} - !dev-tcltk/tcllib"
[gentoo-commits] repo/gentoo:master commit in: x11-wm/fvwm/
commit: 8b40b7e1313a94a13dc297ee24a2b323b1d8fe16 Author: Ian Stakenvicius gentoo org> AuthorDate: Fri Oct 16 16:12:22 2015 + Commit: Ian Stakenvicius gentoo org> CommitDate: Fri Oct 16 16:12:22 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b40b7e1 x11-wm/fvwm: fix mising slot-0 pegs and slot operators on deps Package-Manager: portage-2.2.20.1 x11-wm/fvwm/{fvwm-2.6.5.ebuild => fvwm-2.6.5-r1.ebuild} | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/x11-wm/fvwm/fvwm-2.6.5.ebuild b/x11-wm/fvwm/fvwm-2.6.5-r1.ebuild similarity index 97% rename from x11-wm/fvwm/fvwm-2.6.5.ebuild rename to x11-wm/fvwm/fvwm-2.6.5-r1.ebuild index 74bc6a5..172bafa 100644 --- a/x11-wm/fvwm/fvwm-2.6.5.ebuild +++ b/x11-wm/fvwm/fvwm-2.6.5-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -29,10 +29,10 @@ COMMON_DEPEND=" x11-libs/libXrandr x11-libs/libXrender bidi? ( dev-libs/fribidi ) - png? ( media-libs/libpng ) + png? ( media-libs/libpng:0= ) readline? ( - sys-libs/ncurses - sys-libs/readline + sys-libs/ncurses:0= + sys-libs/readline:0= ) stroke? ( dev-libs/libstroke ) svg? ( gnome-base/librsvg )
[gentoo-commits] proj/qt:master commit in: dev-qt/qtmultimedia/
commit: 18f084901a4995609c8dec743034b4eefb5cecf8 Author: Michael Palimaka gentoo org> AuthorDate: Fri Oct 16 16:07:30 2015 + Commit: Michael Palimaka gentoo org> CommitDate: Fri Oct 16 16:07:30 2015 + URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=18f08490 dev-qt/qtmultimedia: improve local USE flag descriptions Package-Manager: portage-2.2.20.1 dev-qt/qtmultimedia/metadata.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-qt/qtmultimedia/metadata.xml b/dev-qt/qtmultimedia/metadata.xml index 92a1217..285042b 100644 --- a/dev-qt/qtmultimedia/metadata.xml +++ b/dev-qt/qtmultimedia/metadata.xml @@ -5,8 +5,8 @@ Add support for exceptions - like catching them inside the event loop (recommended by upstream) - Enable HTML5 audio/video support via media-libs/gstreamer:1.0 - Enable HTML5 audio/video support via media-libs/gstreamer:0.10 + Enable audio support via media-libs/gstreamer:1.0 + Enable audio support via media-libs/gstreamer:0.10 Build QML/QtQuick bindings and imports Build the QtMultimediaWidgets module
[gentoo-commits] repo/gentoo:master commit in: x11-wm/pekwm/
commit: 4797aa797363bc1560ab54891b098a5ebf7171bf Author: Ian Stakenvicius gentoo org> AuthorDate: Fri Oct 16 15:44:19 2015 + Commit: Ian Stakenvicius gentoo org> CommitDate: Fri Oct 16 15:44:44 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4797aa79 x11-wm/pekwm: set proper slot-0 peg and slot operator to libpng and jpeg atoms Package-Manager: portage-2.2.20.1 x11-wm/pekwm/{pekwm-0.1.17.ebuild => pekwm-0.1.17-r1.ebuild} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/x11-wm/pekwm/pekwm-0.1.17.ebuild b/x11-wm/pekwm/pekwm-0.1.17-r1.ebuild similarity index 95% rename from x11-wm/pekwm/pekwm-0.1.17.ebuild rename to x11-wm/pekwm/pekwm-0.1.17-r1.ebuild index 3e160f2..2800782 100644 --- a/x11-wm/pekwm/pekwm-0.1.17.ebuild +++ b/x11-wm/pekwm/pekwm-0.1.17-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -18,8 +18,8 @@ KEYWORDS=" amd64 ~mips ppc x86 ~x86-fbsd" IUSE="contrib debug themes truetype xinerama" RDEPEND=" - media-libs/libpng - virtual/jpeg + media-libs/libpng:0= + virtual/jpeg:0 x11-libs/libXpm x11-libs/libXrandr x11-libs/libXrender
[gentoo-commits] repo/gentoo:master commit in: net-libs/ignition-transport/
commit: ed27b0d79c8fc0c9ad9408f0577bea8ecb296231 Author: Alexis Ballier gentoo org> AuthorDate: Fri Oct 16 15:39:10 2015 + Commit: Alexis Ballier gentoo org> CommitDate: Fri Oct 16 15:39:10 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed27b0d7 net-libs/ignition-transport: Add missing dep on net-libs/cppzmq. Bug #563248. Package-Manager: portage-2.2.23 ...gnition-transport-0.9.0.ebuild => ignition-transport-0.9.0-r1.ebuild} | 1 + 1 file changed, 1 insertion(+) diff --git a/net-libs/ignition-transport/ignition-transport-0.9.0.ebuild b/net-libs/ignition-transport/ignition-transport-0.9.0-r1.ebuild similarity index 98% rename from net-libs/ignition-transport/ignition-transport-0.9.0.ebuild rename to net-libs/ignition-transport/ignition-transport-0.9.0-r1.ebuild index 1a6971c..f965d2f 100644 --- a/net-libs/ignition-transport/ignition-transport-0.9.0.ebuild +++ b/net-libs/ignition-transport/ignition-transport-0.9.0-r1.ebuild @@ -19,6 +19,7 @@ DEPEND=" dev-libs/protobuf:= >=net-libs/zeromq-3.2.0:= sys-apps/util-linux + net-libs/cppzmq " RDEPEND="${DEPEND}" DEPEND="${DEPEND}
[gentoo-commits] repo/user/goris:master commit in: app-cdr/lacie-lightscribe-labeler/, app-cdr/lacie-lightscribe-labeler/files/
commit: ec10fb7ec85812db629a679094dca68208f275fc Author: Norayr Mirakyan gmail com> AuthorDate: Fri Oct 16 15:37:55 2015 + Commit: Norayr Mirakyan gmail com> CommitDate: Fri Oct 16 15:37:55 2015 + URL:https://gitweb.gentoo.org/repo/user/goris.git/commit/?id=ec10fb7e lacie labeler version 1.0.6 files removed .../files/digest-lacie-lightscribe-labeler-1.0.6 | 3 - .../lacie-lightscribe-labeler-1.0.6.ebuild | 74 -- 2 files changed, 77 deletions(-) diff --git a/app-cdr/lacie-lightscribe-labeler/files/digest-lacie-lightscribe-labeler-1.0.6 b/app-cdr/lacie-lightscribe-labeler/files/digest-lacie-lightscribe-labeler-1.0.6 deleted file mode 100644 index 70397c4..000 --- a/app-cdr/lacie-lightscribe-labeler/files/digest-lacie-lightscribe-labeler-1.0.6 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 11fc8b2daeaed2b61a567056413bdefd 4L-1.0-r6.i586.rpm 3603229 -RMD160 2ae0a33ae1051c793a623784a5abf04b149c5372 4L-1.0-r6.i586.rpm 3603229 -SHA256 7d6a04ed0ca5d129d992160ede24d59f992293f5cb003578e719a52a92530724 4L-1.0-r6.i586.rpm 3603229 diff --git a/app-cdr/lacie-lightscribe-labeler/lacie-lightscribe-labeler-1.0.6.ebuild b/app-cdr/lacie-lightscribe-labeler/lacie-lightscribe-labeler-1.0.6.ebuild deleted file mode 100644 index a4e3252..000 --- a/app-cdr/lacie-lightscribe-labeler/lacie-lightscribe-labeler-1.0.6.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header$ - -inherit rpm - -DESCRIPTION="LaCie LightScribe Labeler 4L" -HOMEPAGE="http://www.lacie.com/us/products/product.htm?pid=10803"; -SRC_URI="http://www.lacie.com/download/drivers/4L-1.0-r6.i586.rpm"; -LICENSE="" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" -RESTRICT="mirror strip" -DEPEND="" -RDEPEND="virtual/libc - =virtual/libstdc++-3* - sys-devel/gcc - dev-libs/libxml2 - media-libs/freetype - media-libs/fontconfig - sys-libs/zlib - || ( x11-libs/libX11 virtual/x11 ) - x11-libs/libXau - x11-libs/libXcursor - x11-libs/libXdmcp - x11-libs/libXext - x11-libs/libXfixes - x11-libs/libXi - x11-libs/libXinerama - x11-libs/libXrender - x11-libs/libXrandr - app-cdr/lightscribe - " - -src_unpack() { - rpm_src_unpack -} - -src_compile() { :; } - -src_install() { - cd ${WORKDIR} - - # we don't like /usr/4L, binary - # stuff shall go to /opt. - dodir /opt/${PN} - insinto /opt/${PN} - exeinto /opt/${PN} - doexe ./usr/4L/4L-cli - doexe ./usr/4L/4L-gui - # 4L-gui looks for translations in /usr/4L - # and the current directory, so we use a - # wrapper script for 4L-gui which changes - # to the installation directory first, so - # 4L-gui can find its translations - { - echo '#!/bin/sh'; - echo "cd /opt/${PN} && exec ./4L-gui" - } >${T}/4L-gui-wrapper.sh - doexe ${T}/4L-gui-wrapper.sh - doexe ./usr/4L/lacie_website.sh - dodir /opt/${PN}/templates - insinto /opt/${PN}/templates - doins ./usr/4L/templates/* - dodir /opt/${PN}/translations - insinto /opt/${PN}/translations - doins ./usr/4L/translations/* - dodoc ./usr/4L/doc/4L_User_Manual.pdf - dosym /opt/${PN}/4L-cli /usr/bin/4L-cli - dosym /opt/${PN}/4L-gui-wrapper.sh /usr/bin/4L-gui - insinto /usr/share/applications/ - doins ${FILESDIR}/${PN}.desktop -}
[gentoo-commits] repo/user/goris:master commit in: app-cdr/lacie-lightscribe-labeler/, app-cdr/lacie-lightscribe-labeler/files/
commit: fc268e75c1755d6a6371ea15c550fc71409f4f97 Author: Norayr Mirakyan gmail com> AuthorDate: Fri Oct 16 15:34:18 2015 + Commit: Norayr Mirakyan gmail com> CommitDate: Fri Oct 16 15:34:18 2015 + URL:https://gitweb.gentoo.org/repo/user/goris.git/commit/?id=fc268e75 Lacie 4L: new EAPI 5 ebuild, SRC_URI and desktop entry fixed, icon added. app-cdr/lacie-lightscribe-labeler/Manifest| 7 --- .../files/lacie-lightscribe-labeler.desktop | 8 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/app-cdr/lacie-lightscribe-labeler/Manifest b/app-cdr/lacie-lightscribe-labeler/Manifest index 045688d..bd80993 100644 --- a/app-cdr/lacie-lightscribe-labeler/Manifest +++ b/app-cdr/lacie-lightscribe-labeler/Manifest @@ -1,3 +1,4 @@ -AUX lacie-lightscribe-labeler.desktop 284 SHA256 7e9d03a81c0493504e45ceaf9380e1560a2e9bdbbd6e488381989dab0f36399a SHA512 5fa5d3d6a317b7e270f62c86c55f97f393c7d7d3c58866df0aaa6a0984833a872b79bcc4462d68af31f2869db3626198d21b1f7cdbfafa3702a175209d2b3da4 WHIRLPOOL aba5e29e794ad3c1bbadbf018b15fef7a5eee19ca83866690db33d29531b725ac6ea1c521bb0421584345b5cca4db8e89855e85fe3e6b01e04ca011cec9de974 -DIST 4L-1.0-r6.i586.rpm 3603229 SHA256 7d6a04ed0ca5d129d992160ede24d59f992293f5cb003578e719a52a92530724 SHA512 29ee29520a843095b7fd8269f9f402c70a6c491739451efe4959e6fdfc8739bbed5286dd0ebaf72d5120350add6a31114d48c04be210dae81c87be3704543329 WHIRLPOOL 94c9820b584a2698305e896c708660e78913104a7deba9e7fa50895d84a0b813fe7c2274c2adc7c657c77f49766f8d870a6d12bc8b20bc6ec295ffc041dde104 -EBUILD lacie-lightscribe-labeler-1.0.6.ebuild 1779 SHA256 3461da1bc838992788c85dd273ded7b320ab242b262eaa9ad6d3bad9238e3a0f SHA512 5a138bbd76f5416855125d0b898ee2af92a934dc45a8e7ba32c4959cc893079b2b8b4f6b92d5a5f3532c6e988f770ef1ab254c0a971ed5f198460067e4d6e8b4 WHIRLPOOL f41673d8606944d8e6ab9b6243667d6c1dd1de87bb6b3be0cd91dc14a625456567eed465d1a1883a46adab4f56985b45ac5b5a3332d58c5e47a20994a4d790a7 +AUX lacie-lightscribe-labeler.desktop 264 SHA256 470521d723ea84ba19d65fcb6f82708e8bf1e791b816b1ca083b64bf6510a512 SHA512 f8c63df0aaf82153f5edd875195907523878d693da246fdc951fba14ebca4009fb75e94f488b66f5b78bcf4b72a1d6131cf465699485a4d86faf556bfd24ab9c WHIRLPOOL 8ae55dc55781f4c84dc4ae55ce9b18300e09d84d9e4ecebb6dcc6466bad25a4ba330d164cd3b277acf2f4a1c72bc6c19014d25e01a3cc5b1fd9c655f08c517ec +AUX lacie-lightscribe-labeler.png 4636 SHA256 667fdc5fd65611519fc77dbffb06eba09707272c7c3eeae01292e2bdc5c10245 SHA512 4556cb5484c25f8b6224225ded0fc49a35927fce5c9357d10267927089528fe4c467984f9226bd80088f5a155208adeaf6fb8c6b70315a094c23c9012f72cc59 WHIRLPOOL 35bd553d3b2d63f5eb7683c1df3fe26b422ed7ba25221ec8bca4edc2e31cc4022c13fbe5149c65d991a73b57fb71ee31ef928aeb78e4ea14fb274f5a91df +DIST lacie-lightscribe-labeler-1.0.rpm 3603229 SHA256 7d6a04ed0ca5d129d992160ede24d59f992293f5cb003578e719a52a92530724 SHA512 29ee29520a843095b7fd8269f9f402c70a6c491739451efe4959e6fdfc8739bbed5286dd0ebaf72d5120350add6a31114d48c04be210dae81c87be3704543329 WHIRLPOOL 94c9820b584a2698305e896c708660e78913104a7deba9e7fa50895d84a0b813fe7c2274c2adc7c657c77f49766f8d870a6d12bc8b20bc6ec295ffc041dde104 +EBUILD lacie-lightscribe-labeler-1.0.ebuild 1937 SHA256 3e874b1a19528d0aa969abf332e9dd1ca3cbbb6a0318a05aae0fec88699e SHA512 65405631739a89ac539172ef36b68a9cfcbdde26e10d5dba31c10e9bbece43851aa2c0041ce15a3b498ec22b4379cc5f89e8a888d792a881e6aac322d17ab0d7 WHIRLPOOL 69492a94c2529a925ac272165c95419e30ec065dedd52e91897cc31d1d6de90c48df640f5ad9a72f6282fa28feae812d1df8e6ad31fcbd83f5ee2a7e4ee181b0 diff --git a/app-cdr/lacie-lightscribe-labeler/files/lacie-lightscribe-labeler.desktop b/app-cdr/lacie-lightscribe-labeler/files/lacie-lightscribe-labeler.desktop index b2c57d4..7766855 100644 --- a/app-cdr/lacie-lightscribe-labeler/files/lacie-lightscribe-labeler.desktop +++ b/app-cdr/lacie-lightscribe-labeler/files/lacie-lightscribe-labeler.desktop @@ -1,9 +1,9 @@ [Desktop Entry] +Type=Application +Version=1.0 Name=LaCie LightScribe Labeler 4L Comment=LaCie LightScribe Optical Media Labeling Software Exec=4L-gui -Icon=/usr/share/apps/k3b/icons/hicolor/48x48/actions/cdburn.png -Type=Application +Icon=/opt/lacie-lightscribe-labeler/icons/lacie-lightscribe-labeler.png Terminal=false -Encoding=UTF-8 -Categories=Application;AudioVideo;DiscBurning;System +Categories=Graphics;System;
[gentoo-commits] repo/gentoo:master commit in: dev-python/pyxattr/
commit: bf948418d56afc6846ea443e38fb004d166c84b2 Author: Mike Frysinger gentoo org> AuthorDate: Fri Oct 16 15:30:13 2015 + Commit: Mike Frysinger gentoo org> CommitDate: Fri Oct 16 15:30:24 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf948418 dev-python/pyxattr: mark 0.5.3 m68k/s390/sh stable dev-python/pyxattr/pyxattr-0.5.3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/pyxattr/pyxattr-0.5.3.ebuild b/dev-python/pyxattr/pyxattr-0.5.3.ebuild index aef674e..2e75ec8 100644 --- a/dev-python/pyxattr/pyxattr-0.5.3.ebuild +++ b/dev-python/pyxattr/pyxattr-0.5.3.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~arm-linux ~x86-linux" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-linux ~arm-linux ~x86-linux" IUSE="doc test" RDEPEND="sys-apps/attr"
[gentoo-commits] repo/user/goris:master commit in: app-cdr/lacie-lightscribe-labeler/files/, app-cdr/lacie-lightscribe-labeler/
commit: cb109f7d1b73a90f87e96a75f813aa631f7998d5 Author: Norayr Mirakyan gmail com> AuthorDate: Fri Oct 16 15:26:44 2015 + Commit: Norayr Mirakyan gmail com> CommitDate: Fri Oct 16 15:26:44 2015 + URL:https://gitweb.gentoo.org/repo/user/goris.git/commit/?id=cb109f7d Lacie 4L: new EAPI 5 ebuild, SRC_URI and desktop entry fixed, icon added. .../files/lacie-lightscribe-labeler.png| Bin 0 -> 4636 bytes .../lacie-lightscribe-labeler-1.0.ebuild | 74 + 2 files changed, 74 insertions(+) diff --git a/app-cdr/lacie-lightscribe-labeler/files/lacie-lightscribe-labeler.png b/app-cdr/lacie-lightscribe-labeler/files/lacie-lightscribe-labeler.png new file mode 100644 index 000..8da82e9 Binary files /dev/null and b/app-cdr/lacie-lightscribe-labeler/files/lacie-lightscribe-labeler.png differ diff --git a/app-cdr/lacie-lightscribe-labeler/lacie-lightscribe-labeler-1.0.ebuild b/app-cdr/lacie-lightscribe-labeler/lacie-lightscribe-labeler-1.0.ebuild new file mode 100644 index 000..75504cf --- /dev/null +++ b/app-cdr/lacie-lightscribe-labeler/lacie-lightscribe-labeler-1.0.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit rpm + +DESCRIPTION="LaCie LightScribe Labeler 4L" +HOMEPAGE="http://www.lacie.com/us/products/product.htm?pid=10803"; +SRC_URI="http://www.lacie.com/files/lacie-content/download/drivers/LaCie%20LightScribe%20Labeler%201.0%20Linux.rpm -> ${P}.rpm + http://freenet.am/~v/distfiles/lacie-lightscribe-labeler-1.0.rpm"; +LICENSE="" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +RESTRICT="mirror strip" +DEPEND="" +RDEPEND="virtual/libc + =virtual/libstdc++-3* + sys-devel/gcc + dev-libs/libxml2 + media-libs/freetype + media-libs/fontconfig + sys-libs/zlib + || ( x11-libs/libX11 virtual/x11 ) + x11-libs/libXau + x11-libs/libXcursor + x11-libs/libXdmcp + x11-libs/libXext + x11-libs/libXfixes + x11-libs/libXi + x11-libs/libXinerama + x11-libs/libXrender + x11-libs/libXrandr + app-cdr/lightscribe + " + +S="${WORKDIR}" + +src_install() { + # we don't like /usr/4L, binary + # stuff shall go to /opt. + dodir /opt/${PN} + insinto /opt/${PN} + exeinto /opt/${PN} + doexe ./usr/4L/4L-cli + doexe ./usr/4L/4L-gui + # 4L-gui looks for translations in /usr/4L + # and the current directory, so we use a + # wrapper script for 4L-gui which changes + # to the installation directory first, so + # 4L-gui can find its translations + { + echo '#!/bin/sh'; + echo "cd /opt/${PN} && exec ./4L-gui" + } >${T}/4L-gui-wrapper.sh + doexe ${T}/4L-gui-wrapper.sh + doexe ./usr/4L/lacie_website.sh + dodir /opt/${PN}/templates + insinto /opt/${PN}/templates + doins ./usr/4L/templates/* + dodir /opt/${PN}/translations + insinto /opt/${PN}/translations + doins ./usr/4L/translations/* + dodoc ./usr/4L/doc/4L_User_Manual.pdf + dosym /opt/${PN}/4L-cli /usr/bin/4L-cli + dosym /opt/${PN}/4L-gui-wrapper.sh /usr/bin/4L-gui + dodir /opt/${PN}/icons + insinto /opt/${PN}/icons + doins ${FILESDIR}/${PN}.png + insinto /usr/share/applications/ + doins ${FILESDIR}/${PN}.desktop +}
[gentoo-commits] repo/gentoo:master commit in: dev-java/invokebinder/
commit: 713098141f1305d66da876193706bc24247dfdcf Author: Patrice Clement gentoo org> AuthorDate: Fri Oct 16 15:16:31 2015 + Commit: Patrice Clement gentoo org> CommitDate: Fri Oct 16 15:19:59 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71309814 dev-java/invokebinder: Stable for amd64. Stable for x86 using the ALLARCHES policy. Package-Manager: portage-2.2.20.1 Signed-off-by: Patrice Clement gentoo.org> dev-java/invokebinder/invokebinder-1.6.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-java/invokebinder/invokebinder-1.6.ebuild b/dev-java/invokebinder/invokebinder-1.6.ebuild index dbc0c03..c393fe2 100644 --- a/dev-java/invokebinder/invokebinder-1.6.ebuild +++ b/dev-java/invokebinder/invokebinder-1.6.ebuild @@ -13,7 +13,7 @@ HOMEPAGE="https://github.com/headius/invokebinder"; SRC_URI="https://github.com/headius/${PN}/archive/${P}.tar.gz"; SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" LICENSE="Apache-2.0" S="${WORKDIR}/${PN}-${P}"
[gentoo-commits] repo/gentoo:master commit in: dev-java/invokebinder/, dev-java/invokebinder/files/
commit: f7b897a27191ba477f225cb2b877ce413516243f Author: Patrice Clement gentoo org> AuthorDate: Fri Oct 16 15:18:50 2015 + Commit: Patrice Clement gentoo org> CommitDate: Fri Oct 16 15:20:02 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7b897a2 dev-java/invokebinder: Clean up old. Fixes bug 472306. Package-Manager: portage-2.2.20.1 Signed-off-by: Patrice Clement gentoo.org> dev-java/invokebinder/Manifest | 1 - .../invokebinder/files/invokebinder-1.2-build.xml | 255 - dev-java/invokebinder/invokebinder-1.2.ebuild | 46 3 files changed, 302 deletions(-) diff --git a/dev-java/invokebinder/Manifest b/dev-java/invokebinder/Manifest index 966c75c..dd9c156 100644 --- a/dev-java/invokebinder/Manifest +++ b/dev-java/invokebinder/Manifest @@ -1,2 +1 @@ -DIST invokebinder-1.2.tar.gz 28581 SHA256 378ab47e625729974b25c81a60abd425abf155a27f60c7c2728ad3a78fd9a1d4 SHA512 aaf56fa008307d56805c6de7d47285d358f4c5018f1704a8f3b44c5bda5045dc20f588e70ce6fbb3486a48f80d30a7669d568e373717401780b13dd4737a8b16 WHIRLPOOL 1c46acfcb2d6c2c53bb24e94aca5afdc578fb6a72c7b3f83e80c22e69cb98e44257c10ba92bfa86c4ec766fea6216cb0604d9be5b2bb755efcae0fa5b0bc8859 DIST invokebinder-1.6.tar.gz 36027 SHA256 db59600de448c9253976c0a288ad6575edbdc83ed6a6d58332b902ab9d337c4d SHA512 cacdd6dd5fe74bbba940be1b3d53b183adc247b74e89cc0784805b2ad2c63d12ca1abe20bacf0a90ea50db7574e43d4ac52b5a46e61912e5153e2ac2f6bc559a WHIRLPOOL 967f8bb39b588d381e3495756e79b7e738f631935aadddf5c6396d7367fcd19584f4d4ae3cb9734aafac17ca62906da8fc0459a9194f9f55671d5503b19265de diff --git a/dev-java/invokebinder/files/invokebinder-1.2-build.xml b/dev-java/invokebinder/files/invokebinder-1.2-build.xml deleted file mode 100644 index fdf8984..000 --- a/dev-java/invokebinder/files/invokebinder-1.2-build.xml +++ /dev/null @@ -1,255 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -=== WARNING === - JUnit is not present in your $ANT_HOME/lib directory. Tests not executed. - === - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -https://oss.sonatype.org/content/repositories/snapshots/junit/junit/4.9/junit-4.9.jar"; - dest="${maven.repo.local}/junit/junit/4.9/junit-4.9.jar" - usetimestamp="false" - ignoreerrors="true"/> -http://repo.maven.apache.org/maven2/junit/junit/4.9/junit-4.9.jar"; - dest="${maven.repo.local}/junit/junit/4.9/junit-4.9.jar" - usetimestamp="false" - ignoreerrors="true"/> - -https://oss.sonatype.org/content/repositories/snapshots/org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.jar"; - dest="${maven.repo.local}/org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.jar" - usetimestamp="false" - ignoreerrors="true"/> -http://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.jar"; - dest="${maven.repo.local}/org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.jar" - usetimestamp="false" - ignoreerrors="true"/> - - - diff --git a/dev-java/invokebinder/invokebinder-1.2.ebuild b/dev-java/invokebinder/invokebinder-1.2.ebuild deleted file mode 100644 index c90d070..000 --- a/dev-java/invokebinder/invokebinder-1.2.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" - -JAVA_PKG_IUSE="doc source test" - -inherit java-pkg-2 java-ant-2 - -DESCRIPTION="Provide a friendly DSL for binding method handles" -SRC_URI="https://github.com/headius/invokebinder/archive/invokebinder-1.2.tar.gz"; -HOMEPAGE="https://github.com/headius/invokebinder"; - -SLOT="0" -KEYWORDS="~amd64 ~x86" -LICENSE="Apache-2.0" - -S="${WORKDIR}/${PN}-${P}" - -DEPEND=">=virtual/jdk-1.7" -RDEPEND=">=virtual/jre-1.7" - -# Tests fail, three similar errors where a string is inconvertible to int. -# Bug #472306. -RESTRICT="test" - -java_prepare() { - cp "${FILESDIR}"/${P}-build.xml build.xm
[gentoo-commits] proj/qt:master commit in: dev-qt/qtpaths/, dev-qt/qtcore/, dev-qt/qdbusviewer/, dev-qt/qtsql/, ...
commit: a15ffa901044bb76612dfa3ae54daec0c71d3554 Author: Michael Palimaka gentoo org> AuthorDate: Fri Oct 16 15:12:47 2015 + Commit: Michael Palimaka gentoo org> CommitDate: Fri Oct 16 15:12:47 2015 + URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=a15ffa90 dev-qt: bump to 5.5.1 Package-Manager: portage-2.2.20.1 dev-qt/assistant/Manifest | 1 + dev-qt/assistant/assistant-5.5.1.ebuild| 38 + dev-qt/designer/Manifest | 1 + dev-qt/designer/designer-5.5.1.ebuild | 41 + dev-qt/linguist-tools/Manifest | 1 + dev-qt/linguist-tools/linguist-tools-5.5.1.ebuild | 36 + dev-qt/linguist/Manifest | 1 + dev-qt/linguist/linguist-5.5.1.ebuild | 29 dev-qt/pixeltool/Manifest | 1 + dev-qt/pixeltool/pixeltool-5.5.1.ebuild| 27 dev-qt/qdbus/Manifest | 1 + dev-qt/qdbus/qdbus-5.5.1.ebuild| 26 dev-qt/qdbusviewer/Manifest| 1 + dev-qt/qdbusviewer/qdbusviewer-5.5.1.ebuild| 28 dev-qt/qdoc/Manifest | 1 + dev-qt/qdoc/qdoc-5.5.1.ebuild | 25 dev-qt/qtbluetooth/Manifest| 1 + dev-qt/qtbluetooth/qtbluetooth-5.5.1.ebuild| 35 + dev-qt/qtconcurrent/Manifest | 1 + dev-qt/qtconcurrent/qtconcurrent-5.5.1.ebuild | 24 +++ dev-qt/qtcore/Manifest | 1 + dev-qt/qtcore/qtcore-5.5.1.ebuild | 41 + dev-qt/qtdbus/Manifest | 1 + dev-qt/qtdbus/qtdbus-5.5.1.ebuild | 40 + dev-qt/qtdeclarative/Manifest | 1 + dev-qt/qtdeclarative/qtdeclarative-5.5.1.ebuild| 47 ++ dev-qt/qtdiag/Manifest | 1 + dev-qt/qtdiag/qtdiag-5.5.1.ebuild | 26 dev-qt/qtgraphicaleffects/Manifest | 1 + .../qtgraphicaleffects-5.5.1.ebuild| 28 dev-qt/qtgui/Manifest | 1 + dev-qt/qtgui/qtgui-5.5.1.ebuild| 166 + dev-qt/qthelp/Manifest | 1 + dev-qt/qthelp/qthelp-5.5.1.ebuild | 32 dev-qt/qtimageformats/Manifest | 1 + dev-qt/qtimageformats/qtimageformats-5.5.1.ebuild | 24 +++ dev-qt/qtmultimedia/Manifest | 1 + dev-qt/qtmultimedia/qtmultimedia-5.5.1.ebuild | 74 + dev-qt/qtnetwork/Manifest | 1 + dev-qt/qtnetwork/qtnetwork-5.5.1.ebuild| 58 +++ dev-qt/qtopengl/Manifest | 1 + dev-qt/qtopengl/qtopengl-5.5.1.ebuild | 35 + dev-qt/qtpaths/Manifest| 1 + dev-qt/qtpaths/qtpaths-5.5.1.ebuild| 24 +++ dev-qt/qtpositioning/Manifest | 1 + dev-qt/qtpositioning/qtpositioning-5.5.1.ebuild| 36 + dev-qt/qtprintsupport/Manifest | 1 + dev-qt/qtprintsupport/qtprintsupport-5.5.1.ebuild | 43 ++ dev-qt/qtquick1/Manifest | 1 + dev-qt/qtquick1/qtquick1-5.5.1.ebuild | 50 +++ dev-qt/qtquickcontrols/Manifest| 1 + .../qtquickcontrols/qtquickcontrols-5.5.1.ebuild | 33 dev-qt/qtscript/Manifest | 1 + dev-qt/qtscript/qtscript-5.5.1.ebuild | 37 + dev-qt/qtsensors/Manifest | 1 + dev-qt/qtsensors/qtsensors-5.5.1.ebuild| 27 dev-qt/qtserialport/Manifest | 1 + dev-qt/qtserialport/qtserialport-5.5.1.ebuild | 20 +++ dev-qt/qtsql/Manifest | 1 + dev-qt/qtsql/qtsql-5.5.1.ebuild| 54 +++ dev-qt/qtsvg/Manifest | 1 + dev-qt/qtsvg/qtsvg-5.5.1.ebuild| 24 +++ dev-qt/qttest/Manifest | 1 + dev-qt/qttest/qttest-5.5.1.ebuild | 30 dev-qt/qttranslations/Manifest | 1 + dev-qt/qttranslations/qttranslations-5.5.1.ebuild | 20 +++ dev-qt/qtwayland/Manifest | 1 + dev-qt/qtwayland/qtwayland-5.5.1.ebuild| 38 + dev-qt/qtwebchannel/Manifest | 1 + dev-qt/qtwebchannel/qtwebchannel-5.5.1.ebuild | 27 dev-qt/qtwebkit/Manifest | 1 + dev-qt/qtwebkit/qtwebkit-5.5.1.ebuild | 101 + dev-qt/qtwebsockets/Manifest | 1 + dev-qt/qtwebsockets/qtwebsockets-5.5.1.ebuild | 28 dev-qt/qtwidgets/Manifest
[gentoo-commits] repo/gentoo:master commit in: dev-ml/odns/
commit: 873e1d671d1bf5da6a09e3fc8089cb1cde3f3663 Author: Matthew Brewer sina cn> AuthorDate: Fri Oct 16 12:17:53 2015 + Commit: Alexis Ballier gentoo org> CommitDate: Fri Oct 16 15:10:15 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=873e1d67 dev-ml/odns: revision bump Makes sure odns doesn't get installed alongside ocaml-dns. dev-ml/odns/{odns-0.3.ebuild => odns-0.3-r1.ebuild} | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/dev-ml/odns/odns-0.3.ebuild b/dev-ml/odns/odns-0.3-r1.ebuild similarity index 77% rename from dev-ml/odns/odns-0.3.ebuild rename to dev-ml/odns/odns-0.3-r1.ebuild index b267178..0b3b02f 100644 --- a/dev-ml/odns/odns-0.3.ebuild +++ b/dev-ml/odns/odns-0.3-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -15,7 +15,11 @@ SLOT="0/${PV}" KEYWORDS="~amd64" IUSE="" -RDEPEND=">=dev-lang/ocaml-3.10.2:=[ocamlopt]" +# It is ancient and upstream is dead. Consider using ocaml-dns instead. +RDEPEND=" + >=dev-lang/ocaml-3.10.2:=[ocamlopt] + !dev-ml/ocaml-dns +" DEPEND="${RDEPEND}" CLIBS="" # Workaround for bug #422683
[gentoo-commits] repo/gentoo:master commit in: dev-java/java-service-wrapper/
commit: 3c4ccb1a9161cacebfe7f55aa4be807d5c094d6a Author: Patrice Clement gentoo org> AuthorDate: Fri Oct 16 15:04:33 2015 + Commit: Patrice Clement gentoo org> CommitDate: Fri Oct 16 15:06:53 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c4ccb1a dev-java/java-service-wrapper: Stable for amd64. Stable for x86 using the ALLARCHES policy. Package-Manager: portage-2.2.20.1 Signed-off-by: Patrice Clement gentoo.org> dev-java/java-service-wrapper/java-service-wrapper-3.5.25-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-java/java-service-wrapper/java-service-wrapper-3.5.25-r1.ebuild b/dev-java/java-service-wrapper/java-service-wrapper-3.5.25-r1.ebuild index 4c74fbd..9017dc4 100644 --- a/dev-java/java-service-wrapper/java-service-wrapper-3.5.25-r1.ebuild +++ b/dev-java/java-service-wrapper/java-service-wrapper-3.5.25-r1.ebuild @@ -17,7 +17,7 @@ SRC_URI="http://${MY_PN}.tanukisoftware.org/download/${PV}/${MY_P}.tar.gz"; LICENSE="tanuki-community" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="" RDEPEND="
[gentoo-commits] repo/gentoo:master commit in: dev-java/java-service-wrapper/
commit: 2a1b7ba4d793e76e069642ffd1bffed0c10d14d9 Author: Patrice Clement gentoo org> AuthorDate: Fri Oct 16 15:04:00 2015 + Commit: Patrice Clement gentoo org> CommitDate: Fri Oct 16 15:06:50 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a1b7ba4 dev-java/java-service-wrapper: Call ejavadoc wrapper instead of javadoc. Stick patches in PATCHES array. Package-Manager: portage-2.2.20.1 Signed-off-by: Patrice Clement gentoo.org> .../java-service-wrapper-3.5.25-r1.ebuild | 72 ++ 1 file changed, 72 insertions(+) diff --git a/dev-java/java-service-wrapper/java-service-wrapper-3.5.25-r1.ebuild b/dev-java/java-service-wrapper/java-service-wrapper-3.5.25-r1.ebuild new file mode 100644 index 000..4c74fbd --- /dev/null +++ b/dev-java/java-service-wrapper/java-service-wrapper-3.5.25-r1.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +WANT_ANT_TASKS="ant-nodeps" +JAVA_PKG_IUSE="doc source test" + +inherit eutils java-pkg-2 java-ant-2 + +MY_PN="wrapper" +MY_P="${MY_PN}_${PV}_src" +DESCRIPTION="A wrapper that makes it possible to install a Java Application as daemon" +HOMEPAGE="http://wrapper.tanukisoftware.org/"; +SRC_URI="http://${MY_PN}.tanukisoftware.org/download/${PV}/${MY_P}.tar.gz"; + +LICENSE="tanuki-community" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + >=virtual/jre-1.4" +DEPEND=" + >=virtual/jdk-1.4 + test? ( + dev-java/ant-junit + )" + +S="${WORKDIR}/${MY_P}" + +JAVA_ANT_REWRITE_CLASSPATH="true" + +PATCHES=( + "${FILESDIR}"/${P}-as-needed.patch + "${FILESDIR}"/${P}-gentoo-wrapper-defaults.patch + "${FILESDIR}"/${P}-testsuite.patch +) + +java_prepare() { + epatch "${PATCHES[@]}" + + cp "${S}/src/c/Makefile-linux-armel-32.make" "${S}/src/c/Makefile-linux-arm-32.make" +} + +src_compile() { + tc-export CC + BITS="32" + use amd64 && BITS="64" + eant -Dbits=${BITS} jar compile-c + if use doc; then + ejavadoc -d api -sourcepath src/java/ -subpackages org \ + || die "javadoc failed" + fi +} + +src_test() { + ANT_TASKS="ant-junit ant-nodeps" eant -Dbits="${BITS}" test +} + +src_install() { + java-pkg_dojar lib/wrapper.jar + java-pkg_doso lib/libwrapper.so + + dobin bin/wrapper + dodoc README*.txt || die + dodoc doc/revisions.txt || die + + use doc && java-pkg_dojavadoc api + use source && java-pkg_dosrc src/java/* +}
[gentoo-commits] repo/gentoo:master commit in: dev-java/java-service-wrapper/, dev-java/java-service-wrapper/files/
commit: 01bc2277306537769a0e5f63f94904a9352be1c1 Author: Patrice Clement gentoo org> AuthorDate: Fri Oct 16 15:06:05 2015 + Commit: Patrice Clement gentoo org> CommitDate: Fri Oct 16 15:06:57 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01bc2277 dev-java/java-service-wrapper: Clean up old. Package-Manager: portage-2.2.20.1 Signed-off-by: Patrice Clement gentoo.org> dev-java/java-service-wrapper/Manifest | 1 - .../java-service-wrapper-3.2.3-build.xml.patch | 53 - .../java-service-wrapper-3.3.1-as-needed.patch | 62 --- .../java-service-wrapper-3.5.14-as-needed.patch| 62 --- ...ce-wrapper-3.5.14-gentoo-wrapper-defaults.patch | 22 --- .../java-service-wrapper-3.5.14-r1.ebuild | 67 - .../java-service-wrapper-3.5.25.ebuild | 69 -- 7 files changed, 336 deletions(-) diff --git a/dev-java/java-service-wrapper/Manifest b/dev-java/java-service-wrapper/Manifest index f799fca..1107afd 100644 --- a/dev-java/java-service-wrapper/Manifest +++ b/dev-java/java-service-wrapper/Manifest @@ -1,2 +1 @@ -DIST wrapper_3.5.14_src.tar.gz 499693 SHA256 dac159a3e68a54926deaa545b92d1ed54671ccc44a375b38d0fb514e1a846481 SHA512 7787d3edd46f61cbf1d1a175b8994c074b5471a35c0ccb9e5b860e709e5e7d3cbd40282c2ee222e7e8e076f84e3ad5af1019fae069809333ef1ab04f6eea2b26 WHIRLPOOL 30715d5ec3e8fdb15c489bf17112437b151a1bd1cfd2f02c1369c47002aa6aff689ef1c7996170283e5671beeaf8ed36076fac9f752a7956226f85f7e10663c2 DIST wrapper_3.5.25_src.tar.gz 556678 SHA256 3cbecb7f2101eda82125e3649e3245fc1e7b4b4d6501b479990ea8b18ac6450b SHA512 4ce8ab5dc7acc4d78e7b902a61bb1e3785b5455f81438aa61a877107647e88ade595075ff0b8d5db0ff2b33bb94d70c2b1331561d6d282e497998eea9494c6f4 WHIRLPOOL d6bcf8aa40525e80e7bfeb927b690cd818c69da276a0d6cfd2b6a37afb88cb0b826485fc25cb76fa89d7c6227e49735f31361641f966944caba5ee2cec44bec0 diff --git a/dev-java/java-service-wrapper/files/java-service-wrapper-3.2.3-build.xml.patch b/dev-java/java-service-wrapper/files/java-service-wrapper-3.2.3-build.xml.patch deleted file mode 100644 index 80d24f7..000 --- a/dev-java/java-service-wrapper/files/java-service-wrapper-3.2.3-build.xml.patch +++ /dev/null @@ -1,53 +0,0 @@ build.xml 2008-02-24 20:10:00.0 +1300 -+++ build.xml 2008-02-24 20:17:10.0 +1300 -@@ -397,16 +397,6 @@ - - - -- -- -- -- -- - - - -@@ -430,6 +420,24 @@ - - - -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ - - - -@@ -636,7 +644,7 @@ - - - -- -+ - - - http://wrapper.tanukisoftware.org/doc/english/licenseOverview.html - --COMPILE = gcc -O3 -Wall --pedantic -DLINUX -D_FILE_OFFSET_BITS=64 -+COMPILE = $(CC) -DLINUX -D_FILE_OFFSET_BITS=64 - - INCLUDE=$(JAVA_HOME)/include - -@@ -33,14 +33,14 @@ - if test ! -d .deps; then mkdir .deps; fi - - wrapper: $(wrapper_SOURCE) -- $(COMPILE) -lm -pthread $(wrapper_SOURCE) -o $(BIN)/wrapper -+ $(COMPILE) $(CFLAGS) $(LDFLAGS) -pthread $(wrapper_SOURCE) -o $(BIN)/wrapper -lm - - libwrapper.so: $(libwrapper_so_OBJECTS) -- ${COMPILE} -lm -shared -fPIC $(libwrapper_so_OBJECTS) -o $(LIB)/libwrapper.so -+ ${COMPILE} $(LDFLAGS) -shared -fPIC -o $(LIB)/libwrapper.so $(libwrapper_so_OBJECTS) -lm - - %.o: %.c -- @echo '$(COMPILE) -c $<'; \ -- $(COMPILE) $(DEFS) -Wp,-MD,.deps/$(*F).pp -c $< -+ @echo '$(COMPILE) $(CFLAGS) -c $<'; \ -+ $(COMPILE) $(CFLAGS) $(DEFS) -Wp,-MD,.deps/$(*F).pp -c $< - @-cp .deps/$(*F).pp .deps/$(*F).P; \ - tr ' ' '\012' < .deps/$(*F).pp \ - | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \ -diff -Nur wrapper_3.3.1_src/src/c/Makefile-linux-x86-64.make wrapper_3.3.1_src_patched/src/c/Makefile-linux-x86-64.make wrapper_3.3.1_src/src/c/Makefile-linux-x86-64.make 2008-08-17 10:40:04.0 +0300 -+++ wrapper_3.3.1_src_patched/src/c/Makefile-linux-x86-64.make 2008-11-16 17:31:54.0 +0200 -@@ -7,7 +7,7 @@ - # license agreement you entered into with Tanuki Software. - # http://wrapper.tanukisoftware.org/doc/english/licenseOverview.html - --COMPILE = gcc -O3 -fPIC -Wall --pedantic -DLINUX -D_FILE_OFFSET_BITS=64 -+COMPILE = $(CC) -fPIC -DLINUX -D_FILE_OFFSET_BITS=64 - - INCLUDE=$(JAVA_HOME)/include - -@@ -33,14 +33,14 @@ - if test ! -d .deps; then mkdir .deps; fi - - wrapper: $(wrapper_SOURCE) -- $(COMPILE) -lm -pthread $(wrapper_SOURCE) -o $(BIN)/wrapper -+ $(COMPILE) $(CFLAGS) $(LDFLAGS) -pthread $(wrapper_SOURCE) -o $(BIN)/wrapper -lm - - libwrapper.so: $(libwrapper_so_OBJECTS) -- ${COMPILE} -lm -shared $(libwrapper_so_OBJ
[gentoo-commits] repo/gentoo:master commit in: x11-wm/plwm/files/, x11-wm/plwm/
commit: 8777fa076b155b11ab8e191a3df832f761da0b6f Author: Ian Stakenvicius gentoo org> AuthorDate: Fri Oct 16 14:58:56 2015 + Commit: Ian Stakenvicius gentoo org> CommitDate: Fri Oct 16 14:58:56 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8777fa07 x11-wm/plwm: take maintainership, drop to ~arch This commit cleans up the versions that used the old python.eclass, and also drops stable keywords as the age of the upstream package combined with the fact that I don't use it means to me that it isn't a good stable candidate. Please file a bug if there is a particular need from end users to have this package stabilized. Package-Manager: portage-2.2.20.1 x11-wm/plwm/Manifest | 1 - x11-wm/plwm/files/plwm-2.5-destdir.patch | 33 --- x11-wm/plwm/files/plwm-2.5-pep0263.patch | 8 x11-wm/plwm/files/plwm-2.5-python2.5.patch | 21 - x11-wm/plwm/files/plwm-2.6_alpha-pep0263.patch | 17 x11-wm/plwm/files/plwm-2.6_alpha-python2.5.patch | 21 - x11-wm/plwm/files/plwm-2.6_alpha.patch | 27 x11-wm/plwm/metadata.xml | 2 +- x11-wm/plwm/plwm-2.5-r1.ebuild | 47 - x11-wm/plwm/plwm-2.7_rc1.ebuild | 54 10 files changed, 1 insertion(+), 230 deletions(-) diff --git a/x11-wm/plwm/Manifest b/x11-wm/plwm/Manifest index e1dbc24..5be5c17 100644 --- a/x11-wm/plwm/Manifest +++ b/x11-wm/plwm/Manifest @@ -1,2 +1 @@ DIST PLWM-2.7rc1.tar.gz 343570 SHA256 789fbd6229ad63ee9b2d939e27d049282dca45315d8e22debad56636a3b0a305 SHA512 4716677c86cf6b31ba8ea6c4e8fad729d9cf7d9c09b7d56ba6686173793c5b248865f0af281561a2df161433ea0fb2f2ca050dfb3b6c9fedbe41ff0ad0c07f7e WHIRLPOOL c1e678b4f15701c644e3f609c9b53100fe376a09f96454094fddba83c7a1f5c167c4746962e4996586568d110dfb3c4232e0bcaf33d09492946454b2e400d5eb -DIST plwm-2.5.tar.gz 127248 SHA256 c1fc72f3dd7959743655c2fb2025faf598d1c5b0d75812282b4bb548aedd14de SHA512 026f059056610d7a91dee18ce2ac4cbbd9d0569334e011cefb377b38abcb5f16e76bf5ab733a0c5cc43dc115e38c3a34e776b24d309f59256e3ed11d61ed2202 WHIRLPOOL 1e29b0386f7f234870029e2202b56cdbcf18e2e13c94ef940b99a7d1ce39fb4a9205bbcb7731a5e5726edb3b617f6db122265cfb230f3dfa973524bbcf698e67 diff --git a/x11-wm/plwm/files/plwm-2.5-destdir.patch b/x11-wm/plwm/files/plwm-2.5-destdir.patch deleted file mode 100644 index 8bcd015..000 --- a/x11-wm/plwm/files/plwm-2.5-destdir.patch +++ /dev/null @@ -1,33 +0,0 @@ -diff -ur plwm-2.5.orig/Makefile.in plwm-2.5/Makefile.in plwm-2.5.orig/Makefile.in 2007-06-29 13:30:28.0 +0200 -+++ plwm-2.5/Makefile.in 2007-06-29 14:07:42.0 +0200 -@@ -24,19 +24,16 @@ - all: - - install: -- -$(INSTALL) -d $(bindir) -- -$(INSTALL) -d $(PLWM_PATH) -- $(INSTALL) -m 644 $(PLWM_MODULES) $(PLWM_PATH) -- echo >> $(PLWM_PATH)/__init__.py -- echo "__version__ = '$(VERSION)'" >> $(PLWM_PATH)/__init__.py -- echo >> $(PLWM_PATH)/__init__.py -- --# Compile .pyc and .pyo-files -- $(PYTHON) -c 'import sys; sys.path.insert(0, "$(PYTHON_SITE_PATH)"); import plwm.xlibpath; from plwm import *' -- $(PYTHON) -O -c 'import sys; sys.path.insert(0, "$(PYTHON_SITE_PATH)"); import plwm.xlibpath; from plwm import *' -- ./install-plwm.sh "$(PLWM)" $(bindir)/plwm -- ./install-plwm.sh "$(WMM)" $(bindir)/wmm -- ./install-plwm.sh "$(INSPECT_PLWM)" $(bindir)/inspect_plwm -+ -$(INSTALL) -d $(DESTDIR)$(bindir) -+ -$(INSTALL) -d $(DESTDIR)$(PLWM_PATH) -+ $(INSTALL) -m 644 $(PLWM_MODULES) $(DESTDIR)$(PLWM_PATH) -+ echo >> $(DESTDIR)$(PLWM_PATH)/__init__.py -+ echo "__version__ = '$(VERSION)'" >> $(DESTDIR)$(PLWM_PATH)/__init__.py -+ echo >> $(DESTDIR)$(PLWM_PATH)/__init__.py -+ -+ ./install-plwm.sh "$(PLWM)" $(DESTDIR)$(bindir)/plwm -+ ./install-plwm.sh "$(WMM)" $(DESTDIR)$(bindir)/wmm -+ ./install-plwm.sh "$(INSPECT_PLWM)" $(DESTDIR)$(bindir)/inspect_plwm - - clean: - diff --git a/x11-wm/plwm/files/plwm-2.5-pep0263.patch b/x11-wm/plwm/files/plwm-2.5-pep0263.patch deleted file mode 100644 index ae4562d..000 --- a/x11-wm/plwm/files/plwm-2.5-pep0263.patch +++ /dev/null @@ -1,8 +0,0 @@ -diff -ur plwm-2.5.orig/plwm/mw_apm.py plwm-2.5/plwm/mw_apm.py plwm-2.5.orig/plwm/mw_apm.py 2007-08-27 15:02:46.0 +0200 -+++ plwm-2.5/plwm/mw_apm.py2007-08-27 15:04:01.0 +0200 -@@ -1,3 +1,4 @@ -+# -*- coding: utf-8 -*- - # $Id: mw_apm.py,v 1.4 2001/10/18 09:36:52 petli Exp $ - # - # mw_apm.py -- display APM status in a modewindow diff --git a/x11-wm/plwm/files/plwm-2.5-python2.5.patch b/x11-wm/plwm/files/plwm-2.5-python2.5.patch deleted file mode 100644 index 334ac94..000 --- a/x11-wm/plwm/files/plwm-2.5-python2.5.patch +++ /dev/null @@ -1,21 +0,0 @@ -diff -ur plwm-2.5.orig/plwm/inspect.py plwm-2.5/plwm/inspect.py plwm-2.5.orig/plwm/inspect.py
[gentoo-commits] data/api:master commit in: files/packages/
commit: 627fba45a59c7bbe9680e51c2c11150a21528d04 Author: Patrice Clement gentoo org> AuthorDate: Fri Oct 16 14:42:01 2015 + Commit: Patrice Clement gentoo org> CommitDate: Fri Oct 16 14:42:18 2015 + URL:https://gitweb.gentoo.org/data/api.git/commit/?id=627fba45 herds.xml: remove extra > in my email address. Signed-off-by: Patrice Clement gentoo.org> files/packages/herds.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/packages/herds.xml b/files/packages/herds.xml index 257e505..8ca3b3b 100644 --- a/files/packages/herds.xml +++ b/files/packages/herds.xml @@ -2674,7 +2674,7 @@ Maxim Koltsov -monsieurp>@gentoo.org +monsie...@gentoo.org Partice Clement
[gentoo-commits] proj/sci:master commit in: dev-python/qtconsole/
commit: c528e00270cfd4621570dfb3ad98a85460dfa557 Author: Marius Brehler linux sungazer de> AuthorDate: Fri Oct 16 14:39:46 2015 + Commit: Marius Brehler linux sungazer de> CommitDate: Fri Oct 16 14:39:46 2015 + URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=c528e002 dev-python/qtconsole: Version bump to 4.1.0 Package-Manager: portage-2.2.20.1 dev-python/qtconsole/ChangeLog | 6 +++ dev-python/qtconsole/qtconsole-4.1.0.ebuild | 67 + 2 files changed, 73 insertions(+) diff --git a/dev-python/qtconsole/ChangeLog b/dev-python/qtconsole/ChangeLog index 3f59785..34ac84d 100644 --- a/dev-python/qtconsole/ChangeLog +++ b/dev-python/qtconsole/ChangeLog @@ -2,6 +2,12 @@ # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 # $Id$ +*qtconsole-4.1.0 (16 Oct 2015) + + 16 Oct 2015; Marius Brehler + +qtconsole-4.1.0.ebuild: + dev-python/qtconsole: Version bump to 4.1.0 + 22 Sep 2015; Marius Brehler qtconsole-.ebuild: dev-python/qtconsole: Add ~x86 to KEYWORDS, fixes #561032 diff --git a/dev-python/qtconsole/qtconsole-4.1.0.ebuild b/dev-python/qtconsole/qtconsole-4.1.0.ebuild new file mode 100644 index 000..8ac99f4 --- /dev/null +++ b/dev-python/qtconsole/qtconsole-4.1.0.ebuild @@ -0,0 +1,67 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python2_7 python{3_3,3_4} ) + +inherit distutils-r1 + +DESCRIPTION="Qt-based console for Jupyter with support for rich media output" +HOMEPAGE="http://jupyter.org"; + +if [ ${PV} == "" ] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/jupyter/${PN}.git git://github.com/jupyter/${PN}.git" +else + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="BSD" +SLOT="0" +IUSE="doc test" + +RDEPEND=" + dev-python/ipykernel[${PYTHON_USEDEP}] + dev-python/jupyter_client[${PYTHON_USEDEP}] + " +DEPEND="${RDEPEND} + doc? ( + dev-python/ipython[${PYTHON_USEDEP}] + dev-python/sphinx[${PYTHON_USEDEP}] + ) + test? ( + >=dev-python/nose-0.10.1[${PYTHON_USEDEP}] + ) + || ( + dev-python/PyQt4[${PYTHON_USEDEP},svg] + dev-python/PyQt5[${PYTHON_USEDEP},svg] + dev-python/pyside[${PYTHON_USEDEP},svg] + ) + dev-python/pygments[${PYTHON_USEDEP}] + >=dev-python/pyzmq-13[${PYTHON_USEDEP}] + " +PDEPEND="dev-python/ipython[${PYTHON_USEDEP}]" + +python_prepare_all() { + # Prevent un-needed download during build + if use doc; then + sed -e "/^'sphinx.ext.intersphinx',/d" -i docs/source/conf.py || die + fi + + distutils-r1_python_prepare_all +} + +python_compile_all() { + use doc && emake -C docs html +} + +python_test() { + nosetests --with-coverage --cover-package qtconsole qtconsole || die +} + +python_install_all() { + use doc && HTML_DOCS=( docs/build/html/. ) + distutils-r1_python_install_all +}
[gentoo-commits] proj/qt:master commit in: dev-qt/qtmultimedia/
commit: a1bf4e9d98be833c07ac3193bcdd32bf92b25c34 Author: Pablo Cholaky slash cl> AuthorDate: Sun Sep 27 17:13:49 2015 + Commit: Michael Palimaka gentoo org> CommitDate: Fri Oct 16 14:39:54 2015 + URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=a1bf4e9d dev-qt/qtmultimedia: add gstreamer1.0 support dev-qt/qtmultimedia/metadata.xml | 2 ++ dev-qt/qtmultimedia/qtmultimedia-5.5.0.ebuild| 11 +-- dev-qt/qtmultimedia/qtmultimedia-5.5..ebuild | 11 +-- dev-qt/qtmultimedia/qtmultimedia-5.6..ebuild | 11 +-- dev-qt/qtmultimedia/qtmultimedia-5..ebuild | 11 +-- 5 files changed, 38 insertions(+), 8 deletions(-) diff --git a/dev-qt/qtmultimedia/metadata.xml b/dev-qt/qtmultimedia/metadata.xml index b408e5c..92a1217 100644 --- a/dev-qt/qtmultimedia/metadata.xml +++ b/dev-qt/qtmultimedia/metadata.xml @@ -5,6 +5,8 @@ Add support for exceptions - like catching them inside the event loop (recommended by upstream) + Enable HTML5 audio/video support via media-libs/gstreamer:1.0 + Enable HTML5 audio/video support via media-libs/gstreamer:0.10 Build QML/QtQuick bindings and imports Build the QtMultimediaWidgets module diff --git a/dev-qt/qtmultimedia/qtmultimedia-5.5.0.ebuild b/dev-qt/qtmultimedia/qtmultimedia-5.5.0.ebuild index cac4c48..dd56d86 100644 --- a/dev-qt/qtmultimedia/qtmultimedia-5.5.0.ebuild +++ b/dev-qt/qtmultimedia/qtmultimedia-5.5.0.ebuild @@ -11,7 +11,8 @@ if [[ ${QT5_BUILD_TYPE} == release ]]; then KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86" fi -IUSE="alsa +gstreamer openal pulseaudio qml widgets" +IUSE="alsa gstreamer gstreamer010 openal pulseaudio qml widgets" +REQUIRED_USE="?? ( gstreamer gstreamer010 )" RDEPEND=" >=dev-qt/qtcore-${PV}:5 @@ -19,6 +20,11 @@ RDEPEND=" >=dev-qt/qtnetwork-${PV}:5 alsa? ( media-libs/alsa-lib ) gstreamer? ( + media-libs/gstreamer:1.0 + media-libs/gst-plugins-bad:1.0 + media-libs/gst-plugins-base:1.0 + ) + gstreamer010? ( media-libs/gstreamer:0.10 media-libs/gst-plugins-bad:0.10 media-libs/gst-plugins-base:0.10 @@ -61,7 +67,8 @@ src_prepare() { src_configure() { local myqmakeargs=( - $(usex gstreamer 'GST_VERSION=0.10' '') + $(usex gstreamer 'GST_VERSION=1.0' '') + $(usex gstreamer010 'GST_VERSION=0.10' '') ) qt5-build_src_configure } diff --git a/dev-qt/qtmultimedia/qtmultimedia-5.5..ebuild b/dev-qt/qtmultimedia/qtmultimedia-5.5..ebuild index cac4c48..dd56d86 100644 --- a/dev-qt/qtmultimedia/qtmultimedia-5.5..ebuild +++ b/dev-qt/qtmultimedia/qtmultimedia-5.5..ebuild @@ -11,7 +11,8 @@ if [[ ${QT5_BUILD_TYPE} == release ]]; then KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86" fi -IUSE="alsa +gstreamer openal pulseaudio qml widgets" +IUSE="alsa gstreamer gstreamer010 openal pulseaudio qml widgets" +REQUIRED_USE="?? ( gstreamer gstreamer010 )" RDEPEND=" >=dev-qt/qtcore-${PV}:5 @@ -19,6 +20,11 @@ RDEPEND=" >=dev-qt/qtnetwork-${PV}:5 alsa? ( media-libs/alsa-lib ) gstreamer? ( + media-libs/gstreamer:1.0 + media-libs/gst-plugins-bad:1.0 + media-libs/gst-plugins-base:1.0 + ) + gstreamer010? ( media-libs/gstreamer:0.10 media-libs/gst-plugins-bad:0.10 media-libs/gst-plugins-base:0.10 @@ -61,7 +67,8 @@ src_prepare() { src_configure() { local myqmakeargs=( - $(usex gstreamer 'GST_VERSION=0.10' '') + $(usex gstreamer 'GST_VERSION=1.0' '') + $(usex gstreamer010 'GST_VERSION=0.10' '') ) qt5-build_src_configure } diff --git a/dev-qt/qtmultimedia/qtmultimedia-5.6..ebuild b/dev-qt/qtmultimedia/qtmultimedia-5.6..ebuild index cac4c48..dd56d86 100644 --- a/dev-qt/qtmultimedia/qtmultimedia-5.6..ebuild +++ b/dev-qt/qtmultimedia/qtmultimedia-5.6..ebuild @@ -11,7 +11,8 @@ if [[ ${QT5_BUILD_TYPE} == release ]]; then KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86" fi -IUSE="alsa +gstreamer openal pulseaudio qml widgets" +IUSE="alsa gstreamer gstreamer010 openal pulseaudio qml widgets" +REQUIRED_USE="?? ( gstreamer gstreamer010 )" RDEPEND=" >=dev-qt/qtcore-${PV}:5 @@ -19,6 +20,11 @@ RDEPEND=" >=dev-qt/qtnetwork-${PV}:5 alsa? ( media-libs/alsa-lib ) gstreamer? ( + media-libs/gstreamer:1.0 + media-libs/gst-plugins-bad:1.0 + media-libs/gst-plugins-base:1.0 + ) + gstreamer010? ( media-libs/gstreamer:0.10 media-libs/gst-plugins-bad:0.10 media-libs/gst-plugins-base:0.10 @@ -61,7 +67,8 @@ src_prepa
[gentoo-commits] proj/sci:master commit in: dev-python/notebook/
commit: 3839b6acc8f7487ff0c465671e726b049c1c0286 Author: Marius Brehler linux sungazer de> AuthorDate: Fri Oct 16 14:36:59 2015 + Commit: Marius Brehler linux sungazer de> CommitDate: Fri Oct 16 14:36:59 2015 + URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=3839b6ac dev-python/notebook: Version bump to 4.0.6, drop 4.0.5 Package-Manager: portage-2.2.20.1 dev-python/notebook/ChangeLog | 6 ++ .../notebook/{notebook-4.0.5.ebuild => notebook-4.0.6.ebuild} | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/dev-python/notebook/ChangeLog b/dev-python/notebook/ChangeLog index f5c44fd..be49522 100644 --- a/dev-python/notebook/ChangeLog +++ b/dev-python/notebook/ChangeLog @@ -2,6 +2,12 @@ # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 # $Id$ +*notebook-4.0.6 (16 Oct 2015) + + 16 Oct 2015; Marius Brehler +notebook-4.0.6.ebuild, + -notebook-4.0.5.ebuild: + dev-python/notebook: Version bump to 4.0.6, drop 4.0.5 + 02 Oct 2015; Marius Brehler notebook-4.0.5.ebuild: dev-python/notebook: Fix SRC_URI diff --git a/dev-python/notebook/notebook-4.0.5.ebuild b/dev-python/notebook/notebook-4.0.6.ebuild similarity index 97% rename from dev-python/notebook/notebook-4.0.5.ebuild rename to dev-python/notebook/notebook-4.0.6.ebuild index d467425..80fa9fc 100644 --- a/dev-python/notebook/notebook-4.0.5.ebuild +++ b/dev-python/notebook/notebook-4.0.6.ebuild @@ -9,7 +9,7 @@ inherit distutils-r1 DESCRIPTION="Jupyter Interactive Notebook" HOMEPAGE="http://jupyter.org"; -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tgz" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" KEYWORDS="~amd64 ~x86" LICENSE="BSD"
[gentoo-commits] repo/gentoo:master commit in: x11-wm/windowmaker/
commit: 0affb91ea237cd078dfa733711fc475c95d9b884 Author: Ian Stakenvicius gentoo org> AuthorDate: Fri Oct 16 14:17:34 2015 + Commit: Ian Stakenvicius gentoo org> CommitDate: Fri Oct 16 14:18:20 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0affb91e x11-wm/windowmaker-0.95.5: fix missing slot dep Cures repoman warnings and ensures correctness of VDB. Package-Manager: portage-2.2.20.1 .../{windowmaker-0.95.5-r1.ebuild => windowmaker-0.95.5-r2.ebuild}| 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x11-wm/windowmaker/windowmaker-0.95.5-r1.ebuild b/x11-wm/windowmaker/windowmaker-0.95.5-r2.ebuild similarity index 97% rename from x11-wm/windowmaker/windowmaker-0.95.5-r1.ebuild rename to x11-wm/windowmaker/windowmaker-0.95.5-r2.ebuild index ef35c19..679ad08 100644 --- a/x11-wm/windowmaker/windowmaker-0.95.5-r1.ebuild +++ b/x11-wm/windowmaker/windowmaker-0.95.5-r2.ebuild @@ -21,9 +21,9 @@ DEPEND="media-libs/fontconfig x11-libs/libXpm x11-libs/libXt x11-libs/libXv - gif? ( >=media-libs/giflib-4.1.0-r3 ) + gif? ( >=media-libs/giflib-4.1.0-r3:0= ) png? ( media-libs/libpng:0= ) - jpeg? ( virtual/jpeg ) + jpeg? ( virtual/jpeg:0= ) tiff? ( media-libs/tiff:0 ) xinerama? ( x11-libs/libXinerama ) xrandr? ( x11-libs/libXrandr )"
[gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce-theme-manager/files/, xfce-extra/xfce-theme-manager/
commit: e11aa4e2f19b541ae84afe293daf0ef3d6acb3bb Author: Christoph Mende gentoo org> AuthorDate: Fri Oct 16 14:15:30 2015 + Commit: Christoph Mende gentoo org> CommitDate: Fri Oct 16 14:15:30 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e11aa4e2 xfce-extra/xfce-theme-manager: version bump to 0.3.6 Package-Manager: portage-2.2.23 xfce-extra/xfce-theme-manager/Manifest | 1 + .../xfce-theme-manager-0.3.6-format-security.patch | 13 + .../xfce-theme-manager-0.3.6.ebuild| 58 ++ 3 files changed, 72 insertions(+) diff --git a/xfce-extra/xfce-theme-manager/Manifest b/xfce-extra/xfce-theme-manager/Manifest index 812cf6a..796b6fc 100644 --- a/xfce-extra/xfce-theme-manager/Manifest +++ b/xfce-extra/xfce-theme-manager/Manifest @@ -1 +1,2 @@ DIST Xfce-Theme-Manager-0.3.5.tar.gz 209269 SHA256 948ce9f26d3cece7eb839499a83e696efbd2376ba6c03628a5d548e9e4415b8b SHA512 41029dc93c464c8b0d47dc36fdf8417811e59aae5cd41dd55fcf4a47199ba114bc17d74f6d4a2c7a6f999cf2afc6c6f1c0d53a0c6f4166537e8c9090acfc1a80 WHIRLPOOL 85bdd10f4a4e6753c1c81821f6c81a0bc0e371cd567f8f5d74c79ada9cd56d2b0998641b0a49d4304fb8342e088c7764fe8c6cdb14829e24a1a844c4e9248cd6 +DIST Xfce-Theme-Manager-0.3.6.tar.gz 339444 SHA256 fb9782c30bde3db988f98895ab5600d4d55b03dcc0fe4f2fd16216d4c95dfb11 SHA512 4590f454675d9303ad9de3a3d7dc99e40c923bf7fe66195731ba7b4d42bbfba56e005e9d6c5629b4fa536fb05f221e10ade5098a171d179b9224cc4bb7fd28ca WHIRLPOOL 45bbca1069ceb9d628e712bf690921b77d71d40db8e8e46161c882ffe46aebf4f1dd3fbb6956542e1b8f0894cac367c4e18831af2d4f86b5e874bf5de08fca47 diff --git a/xfce-extra/xfce-theme-manager/files/xfce-theme-manager-0.3.6-format-security.patch b/xfce-extra/xfce-theme-manager/files/xfce-theme-manager-0.3.6-format-security.patch new file mode 100644 index 000..1c40baf --- /dev/null +++ b/xfce-extra/xfce-theme-manager/files/xfce-theme-manager-0.3.6-format-security.patch @@ -0,0 +1,13 @@ +diff --git a/Xfce-Theme-Manager/src/database.cpp b/Xfce-Theme-Manager/src/database.cpp +index f333dee..3de189b 100644 +--- a/Xfce-Theme-Manager/src/database.cpp b/Xfce-Theme-Manager/src/database.cpp +@@ -516,7 +516,7 @@ gpointer rebuildDB(gpointer data) + if(g_key_file_load_from_file(keyfile,indexfile,G_KEY_FILE_NONE,NULL)) + displayname=g_key_file_get_string(keyfile,"Icon Theme","Name",NULL); + else +- asprintf(&displayname,entry); ++ asprintf(&displayname,"%s",entry); + + asprintf(&thumbfile,"%s/%s.png",cursorsFolder,entry); + makecursor((char*)entry,thumbfile); diff --git a/xfce-extra/xfce-theme-manager/xfce-theme-manager-0.3.6.ebuild b/xfce-extra/xfce-theme-manager/xfce-theme-manager-0.3.6.ebuild new file mode 100644 index 000..204c393 --- /dev/null +++ b/xfce-extra/xfce-theme-manager/xfce-theme-manager-0.3.6.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit xfconf + +MY_PN=Xfce-Theme-Manager +MY_P=${MY_PN}-${PV} + +DESCRIPTION="An alternative theme manager for The Xfce Desktop Environment" +HOMEPAGE="http://keithhedger.hostingsiteforfree.com/pages/apps.html#themeed"; +SRC_URI="http://keithhedger.hostingsiteforfree.com/zips/xfcethememanager/${MY_P}.tar.gz"; + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=dev-libs/glib-2.30 + >=x11-libs/gtk+-2.24:2 + x11-libs/libXcursor + >=xfce-base/libxfce4ui-4.10 + >=xfce-base/xfconf-4.10 + >=xfce-base/xfdesktop-4.10" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +S=${WORKDIR}/${MY_P} + +pkg_setup() { + DOCS=( ChangeLog ) + PATCHES=( "${FILESDIR}"/${P}-format-security.patch ) +} + +src_prepare() { + sed -i \ + -e '/^Cat/s:;;Settings::' \ + -e '/^Cat/s:Gnome:GNOME:' \ + ${MY_PN}/resources/pixmaps/${MY_PN}.desktop || die + + local configext desktopversion=10 + has_version '>=xfce-base/xfdesktop-4.11' && desktopversion=11 + [[ -x configure ]] || configext=.ac + + sed -i \ + -e '/^CFLAGS/s:=-Wall:"& $CFLAGS":' \ + -e '/^CXXFLAGS/s:=-Wall:"& $CXXFLAGS":' \ + -e "/^desktopversion/s:=.*:=$desktopversion:" \ + configure${configext} || die + + xfconf_src_prepare +} + +src_insta
[gentoo-commits] repo/gentoo:master commit in: profiles/
commit: 805b0f0e12ca4072fdbf28d3cafc0308cc32b723 Author: Julian Ospald gentoo org> AuthorDate: Fri Oct 16 13:58:37 2015 + Commit: Julian Ospald gentoo org> CommitDate: Fri Oct 16 13:59:08 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=805b0f0e profiles: mask net-misc/iputils-20150815-r1 Gentoo-Bug: 563244 profiles/package.mask | 1 + 1 file changed, 1 insertion(+) diff --git a/profiles/package.mask b/profiles/package.mask index d4d6ae7..212951e 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -289,6 +289,7 @@ app-emulation/kvm-kmod # Lars Wendler (20 Aug 2015) # Masked for testing =net-misc/iputils-20150815 +=net-misc/iputils-20150815-r1 # Brian Evans (16 Aug 2015) # Mask new PEAR installer as it is likely to break
[gentoo-commits] repo/gentoo:master commit in: net-irc/irssi-otr/
commit: 0fac2c9dbc987ad3c185cea525524bc960bb27fd Author: Michael Palimaka gentoo org> AuthorDate: Fri Oct 16 13:56:23 2015 + Commit: Michael Palimaka gentoo org> CommitDate: Fri Oct 16 13:56:45 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fac2c9d net-irc/irssi-otr: remove old Package-Manager: portage-2.2.20.1 net-irc/irssi-otr/Manifest| 2 -- net-irc/irssi-otr/irssi-otr-0.2.ebuild| 40 net-irc/irssi-otr/irssi-otr-0.3-r1.ebuild | 43 --- net-irc/irssi-otr/irssi-otr-1.0.0.ebuild | 31 -- 4 files changed, 116 deletions(-) diff --git a/net-irc/irssi-otr/Manifest b/net-irc/irssi-otr/Manifest index 734d76f..daf890f 100644 --- a/net-irc/irssi-otr/Manifest +++ b/net-irc/irssi-otr/Manifest @@ -1,3 +1 @@ -DIST irssi-otr-0.2.tar.gz 28618 SHA256 fbdf4375056cf5122e7aebd624364d1201f7c7473e1876f2c28dd009b7628c11 SHA512 03ddec87c5fea0e3ad60fafdcebd49340978f41dc8bf9fb5918d90aca61d1fa69634b2304b46b25822f00e3bd258e0953d8d9436384e5bfee036f36d512b08aa WHIRLPOOL d7ff7057feec54b7de48aa4d13710d3894eada1c0b5f80d324f8007b69e3e50f3e7f0976837bb129a7cf1837ff55d6960300677cf6c0d5e0673d57fff32115ec -DIST irssi-otr-0.3.tar.gz 33514 SHA256 816cb13794c0efa33ee1618a4e926b3f1c3587c675ad3cc44b4f8de3b1b2c60e SHA512 3a3ad788b94887c6bedf6b172cd2267ac4d88fa4a78f7d2c5a8728ea9cb261339bbae1e975cbf44e5d1ec557865342cafc8beb716887ffd92742a9cd407e9f8f WHIRLPOOL ed0100ac58fa23a87b60fe5205bcd8469573df0432d9a4d9b40ddc2ba919db4a169b2cbc3410b8690f0b57e49f42e2c7f0dd46e66c8139f4c94528f6b30bf0f5 DIST irssi-otr-1.0.0.tar.gz 39481 SHA256 bad09a2853ea6fb1a7af42c8f15868fd3ce45f973be90c78944ddf04f8ab517e SHA512 988e50b9df430511ae21a9128ffd27ad27efc102aaa10ec59992c6e642f38dd776396a0768021e3a0588d2a8c30e6316a7b0720d31a05ac21bb47055b0d8c488 WHIRLPOOL 998dc495fb600e635ba342162efc153483fe838d5466995ab248d3c1da358f0cf538d020280157cbe27fbe91b504ed48d1ce28bb396515f560f1fe9197f4 diff --git a/net-irc/irssi-otr/irssi-otr-0.2.ebuild b/net-irc/irssi-otr/irssi-otr-0.2.ebuild deleted file mode 100644 index ec098cc..000 --- a/net-irc/irssi-otr/irssi-otr-0.2.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ -EAPI=2 - -inherit cmake-utils eutils - -DESCRIPTION="Off-The-Record messaging (OTR) for irssi" -HOMEPAGE="http://irssi-otr.tuxfamily.org"; - -# This should probably be exported by cmake-utils as a variable -CMAKE_BINARY_DIR="${WORKDIR}"/${PN}_build -mycmakeargs="-DDOCDIR=/usr/share/doc/${PF}" - -SRC_URI="ftp://download.tuxfamily.org/irssiotr/${PF}.tar.gz"; - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~sparc x86" -IUSE="debug" - -RDEPEND="http://irssi-otr.tuxfamily.org"; -SRC_URI="ftp://download.tuxfamily.org/irssiotr/${P}.tar.gz"; - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~hppa ~sparc ~x86" -IUSE="debug" - -RDEPEND="https://github.com/cryptodotis/irssi-otr"; -SRC_URI="https://github.com/cryptodotis/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~hppa ~sparc x86" -IUSE="" - -# please note >=libotr-4.1.0 is required due to critical bugfix -# d748757e581b74e7298df155ad49174cb914102b, see README.md -RDEPEND=" - >=dev-libs/glib-2.22.0:2 - >=dev-libs/libgcrypt-1.2.0:0 - >=net-libs/libotr-4.1.0 - >=net-irc/irssi-0.8.15[perl]" - -DEPEND="${RDEPEND} - virtual/pkgconfig" - -AUTOTOOLS_AUTORECONF="yes" -DOCS=( README.md ) -PATCHES=( "${FILESDIR}/${P}-cflags.patch" )
[gentoo-commits] repo/gentoo:master commit in: dev-libs/libressl/
commit: 0171d63fb6075caf0db45f1d26ff18556afb5ab5 Author: Julian Ospald gentoo org> AuthorDate: Fri Oct 16 13:49:49 2015 + Commit: Julian Ospald gentoo org> CommitDate: Fri Oct 16 13:51:09 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0171d63f dev-libs/libressl: security version bump to 2.2.4 Gentoo-Bug: 563236 dev-libs/libressl/Manifest | 1 + dev-libs/libressl/libressl-2.2.4.ebuild | 48 + 2 files changed, 49 insertions(+) diff --git a/dev-libs/libressl/Manifest b/dev-libs/libressl/Manifest index c94beec..3870554 100644 --- a/dev-libs/libressl/Manifest +++ b/dev-libs/libressl/Manifest @@ -1 +1,2 @@ DIST libressl-2.2.3.tar.gz 2967547 SHA256 a1ccc21adf91d60e99246031b99c930c9af5e1b1b5a61b1bec87beef6f16d882 SHA512 79f0cd57d2f1202e7d1213a9f9e0665bce11d1c1e5a4ba48c98b81f94e09a8c72733a5dfb0a5626b91db146641cfbec79acb9a5cbb437a60924b7f028d224500 WHIRLPOOL 1e8a49f7c491af558052257c0456b5c4d965abcfc8c7c274f7c42670f4f06a46d3e0360359fd19ecbbaf2fa461b80457e692eb2cb7b1a4bd92d0ad9a68e6663a +DIST libressl-2.2.4.tar.gz 2966157 SHA256 6b409859be8654afc3862549494e097017e64c8d167f12584383586306ef9a7e SHA512 390fbf4f531976c873a0a1163fd57f33097686c6956ec4d3eb69e8271a4e40abfec76d65172b34ae50af8936dd8b5c3ca5fefee9d8686ca468a5577d432c3fe5 WHIRLPOOL 44d36b582efad0cff8015e507ea7c95befd5a44f2beaf69b534454cee4288681d55390a9d4c41ded8a535f0ad6c210348f365534fe3d82725e6b918a89b99e43 diff --git a/dev-libs/libressl/libressl-2.2.4.ebuild b/dev-libs/libressl/libressl-2.2.4.ebuild new file mode 100644 index 000..e3b97b5 --- /dev/null +++ b/dev-libs/libressl/libressl-2.2.4.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit eutils multilib-minimal + +DESCRIPTION="Free version of the SSL/TLS protocol forked from OpenSSL" +HOMEPAGE="http://www.libressl.org/"; +SRC_URI="http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/${P}.tar.gz"; + +LICENSE="ISC openssl" +SLOT="0/35" # reflects ABI of libcrypto.so and libssl.so +KEYWORDS="~amd64 ~mips ~ppc ~ppc64 ~x86" +IUSE="+asm static-libs" + +RDEPEND="!dev-libs/openssl:0" +DEPEND="${RDEPEND}" +PDEPEND="app-misc/ca-certificates" + +src_prepare() { + touch crypto/Makefile.in + + sed -i \ + -e '/^[ \t]*CFLAGS=/s#-g ##' \ + -e '/^[ \t]*CFLAGS=/s#-g"#"#' \ + -e '/^[ \t]*CFLAGS=/s#-O2 ##' \ + -e '/^[ \t]*CFLAGS=/s#-O2"#"#' \ + -e '/^[ \t]*USER_CFLAGS=/s#-O2 ##' \ + -e '/^[ \t]*USER_CFLAGS=/s#-O2"#"#' \ + configure || die "fixing CFLAGS failed" +} + +multilib_src_configure() { + ECONF_SOURCE="${S}" econf \ + $(use_enable asm) \ + $(use_enable static-libs static) +} + +multilib_src_test() { + emake check +} + +multilib_src_install_all() { + einstalldocs + prune_libtool_files +}
[gentoo-commits] repo/gentoo:master commit in: dev-libs/libressl/
commit: 01b218d46346e441cd768f2f8e985abb14bbb6ab Author: Julian Ospald gentoo org> AuthorDate: Fri Oct 16 13:51:36 2015 + Commit: Julian Ospald gentoo org> CommitDate: Fri Oct 16 13:51:36 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01b218d4 dev-libs/libressl: security cleanup of 2.2.3 dev-libs/libressl/Manifest | 1 - dev-libs/libressl/libressl-2.2.3.ebuild | 48 - 2 files changed, 49 deletions(-) diff --git a/dev-libs/libressl/Manifest b/dev-libs/libressl/Manifest index 3870554..b6de318 100644 --- a/dev-libs/libressl/Manifest +++ b/dev-libs/libressl/Manifest @@ -1,2 +1 @@ -DIST libressl-2.2.3.tar.gz 2967547 SHA256 a1ccc21adf91d60e99246031b99c930c9af5e1b1b5a61b1bec87beef6f16d882 SHA512 79f0cd57d2f1202e7d1213a9f9e0665bce11d1c1e5a4ba48c98b81f94e09a8c72733a5dfb0a5626b91db146641cfbec79acb9a5cbb437a60924b7f028d224500 WHIRLPOOL 1e8a49f7c491af558052257c0456b5c4d965abcfc8c7c274f7c42670f4f06a46d3e0360359fd19ecbbaf2fa461b80457e692eb2cb7b1a4bd92d0ad9a68e6663a DIST libressl-2.2.4.tar.gz 2966157 SHA256 6b409859be8654afc3862549494e097017e64c8d167f12584383586306ef9a7e SHA512 390fbf4f531976c873a0a1163fd57f33097686c6956ec4d3eb69e8271a4e40abfec76d65172b34ae50af8936dd8b5c3ca5fefee9d8686ca468a5577d432c3fe5 WHIRLPOOL 44d36b582efad0cff8015e507ea7c95befd5a44f2beaf69b534454cee4288681d55390a9d4c41ded8a535f0ad6c210348f365534fe3d82725e6b918a89b99e43 diff --git a/dev-libs/libressl/libressl-2.2.3.ebuild b/dev-libs/libressl/libressl-2.2.3.ebuild deleted file mode 100644 index e3b97b5..000 --- a/dev-libs/libressl/libressl-2.2.3.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit eutils multilib-minimal - -DESCRIPTION="Free version of the SSL/TLS protocol forked from OpenSSL" -HOMEPAGE="http://www.libressl.org/"; -SRC_URI="http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/${P}.tar.gz"; - -LICENSE="ISC openssl" -SLOT="0/35" # reflects ABI of libcrypto.so and libssl.so -KEYWORDS="~amd64 ~mips ~ppc ~ppc64 ~x86" -IUSE="+asm static-libs" - -RDEPEND="!dev-libs/openssl:0" -DEPEND="${RDEPEND}" -PDEPEND="app-misc/ca-certificates" - -src_prepare() { - touch crypto/Makefile.in - - sed -i \ - -e '/^[ \t]*CFLAGS=/s#-g ##' \ - -e '/^[ \t]*CFLAGS=/s#-g"#"#' \ - -e '/^[ \t]*CFLAGS=/s#-O2 ##' \ - -e '/^[ \t]*CFLAGS=/s#-O2"#"#' \ - -e '/^[ \t]*USER_CFLAGS=/s#-O2 ##' \ - -e '/^[ \t]*USER_CFLAGS=/s#-O2"#"#' \ - configure || die "fixing CFLAGS failed" -} - -multilib_src_configure() { - ECONF_SOURCE="${S}" econf \ - $(use_enable asm) \ - $(use_enable static-libs static) -} - -multilib_src_test() { - emake check -} - -multilib_src_install_all() { - einstalldocs - prune_libtool_files -}