diff --git a/app-admin/sshguard/Manifest b/app-admin/sshguard/Manifest index 2ac4e6665e26..45f47aa941a7 100644 --- a/app-admin/sshguard/Manifest +++ b/app-admin/sshguard/Manifest @@ -1,4 +1,3 @@ DIST sshguard-1.5.tar.bz2 303767 SHA256 b537f8765455fdf8424f87d4bd695e5b675b88e5d164865452137947093e7e19 SHA512 6d17abccd94af9e7fb04a54477ff5686caa64dc36e2f2cbc4a8cd7bc293923daf2fee87fa7f2e247eba1b310abe68549e652ab3224c2d19822d2e8a0306e49e6 WHIRLPOOL 7d579f5c9a03d79f7cc7b51b537b91b053faa56653ba7c5182550ddab41c0fbcd12a6cd7a6dfb2d1e2323905ef3e35aaef9ca8175d97e26cb953d57403f46562 -DIST sshguard-1.6.2.tar.xz 405092 SHA256 57f56724f475e81bbe5fc75dfcb573213bf7e446d7dd039dcf5ba8fa5bc2cb2b SHA512 2819ef9270474c8b3f1d4c997818cf654aaf06089f3112a24a840df7708822a3d66189f5c7a4e4dba06d7c25bf011c43377f3f9aa97de4f9e664fe97464a5c57 WHIRLPOOL b25ae60deadb771623a6d09a75844fb42815dcdeba239a65c565942bd70586ea661428b38e76e413ff1305aa39387c0117c4d205a8b4a8694575a811cab23799 -DIST sshguard-1.6.4.tar.gz 546934 SHA256 654d5412ed010e500e2715ddeebfda57ab23c47a2bd30dfdc1e68c4f04c912a9 SHA512 ac8eeb7c303757cfd8ebfa69425afa1a1c6f07998cbb49ee91649c23ff2693f66f315ca6cd04b2011a4d1951f10d69be0db9bbc05b8814d85376eeb3a3f294ee WHIRLPOOL bc4e678d1f2a9d153d105308bd70bd5801560ada691596601c6358145cd1684ff4403913a63af023a62c590b4a9bdde6bc2afe547d93e58dcc1e43ae347e26b6 DIST sshguard-1.7.0.tar.gz 769779 SHA256 5ce784bc25dc9801fbfadc4117669ee02397526c420170ae1145ada96df8cd59 SHA512 876789ee0a457b656f9d9488043f0d4f59cb2ba5a6fc3243f6f05e64995c6cf719bffa01bea7f96897b7092946e441507f2ced4f372fb475dfd7ec0cd70bda55 WHIRLPOOL 7ade8de747f398c7552b17bc3b6ce8c9400e169757072cd10147b2f0ca2e67c427a09e4761a63d9bcc24caca499464301388b4d8b709a4f8cc4325e57dbb312d +DIST sshguard-1.7.1.tar.gz 832220 SHA256 2e527589c9b33219222d827dff63974229d044de945729aa47271c4a29aaa195 SHA512 205f45f0f1260ebf2a1efabe5b4391b23c219f37df096383d87c220e7392cf58827a4e509be65287bac5b2af49fa0fc390775e1472cff4fb28f2323821f00fd1 WHIRLPOOL 2810c8c77d623dd21baace30bcd4c20efe1f7544e0db3a8abe84ca823e4cc391ecde072d56e63e10c2a490d1417e18fcd9cae16692ac72fffbf216a23036798e diff --git a/app-admin/sshguard/sshguard-1.6.2.ebuild b/app-admin/sshguard/sshguard-1.6.2.ebuild deleted file mode 100644 index 7e740f360a14..000000000000 --- a/app-admin/sshguard/sshguard-1.6.2.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -inherit flag-o-matic - -DESCRIPTION="protects hosts from brute force attacks against ssh" -HOMEPAGE="http://sshguard.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~x86-fbsd" -IUSE="ipfilter kernel_FreeBSD kernel_linux" - -CDEPEND=" - kernel_linux? ( net-firewall/iptables ) - kernel_FreeBSD? ( !ipfilter? ( sys-freebsd/freebsd-pf ) ) -" -DEPEND=" - ${CDEPEND} - sys-devel/flex -" -RDEPEND=" - ${CDEPEND} - sys-apps/openrc - virtual/logger -" - -DOCS=( ChangeLog README.rst scripts/sshguard_backendgen.sh ) - -src_prepare() { - sed -i -e '/OPTIMIZER_CFLAGS=/d' configure || die -} - -src_configure() { - # Needed for usleep(3), see "nasty" in src/sshguard_logsuck.c - append-cppflags -D_BSD_SOURCE - - local myconf - if use kernel_linux; then - myconf="--with-firewall=iptables" - elif use kernel_FreeBSD; then - if use ipfilter; then - myconf="--with-firewall=ipfw" - else - myconf="--with-firewall=pf" - fi - fi - - econf ${myconf} -} - -src_install() { - default - - dodoc -r examples/ - - newinitd "${FILESDIR}"/${PN}.initd ${PN} - newconfd "${FILESDIR}"/${PN}.confd ${PN} -} diff --git a/app-admin/sshguard/sshguard-1.6.4.ebuild b/app-admin/sshguard/sshguard-1.7.1.ebuild similarity index 87% rename from app-admin/sshguard/sshguard-1.6.4.ebuild rename to app-admin/sshguard/sshguard-1.7.1.ebuild index e0c4c3692ed2..aeed93f04f28 100644 --- a/app-admin/sshguard/sshguard-1.6.4.ebuild +++ b/app-admin/sshguard/sshguard-1.7.1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 inherit flag-o-matic DESCRIPTION="protects hosts from brute force attacks against ssh" @@ -28,9 +28,16 @@ RDEPEND=" virtual/logger " -DOCS=( ChangeLog README.rst ) +DOCS=( + CHANGELOG.rst + README.rst + examples/sshguard.service + examples/whitelistfile.example +) src_prepare() { + default + sed -i -e '/OPTIMIZER_CFLAGS=/d' configure || die } @@ -55,8 +62,6 @@ src_configure() { src_install() { default - dodoc -r examples/ - newinitd "${FILESDIR}"/${PN}.initd ${PN} newconfd "${FILESDIR}"/${PN}.confd ${PN} } diff --git a/dev-libs/libclc/Manifest b/dev-libs/libclc/Manifest index 698a4a4b40e1..93ede1bb7062 100644 --- a/dev-libs/libclc/Manifest +++ b/dev-libs/libclc/Manifest @@ -3,3 +3,4 @@ DIST libclc-0.0.1_pre20141027.tar.xz 43784 SHA256 91f2c78fc31c76112899ce30b529f0 DIST libclc-0.1.0_pre20150305.tar.xz 45492 SHA256 5c221bc70438d50cc5893797ebd59a444910e057ccfce0671f3cdeb118854806 SHA512 5d6aa3d80da161fb987f954a1c192a06bab59de345e31a7fa55be1947feb14439f00e0d1a92d146428bfe257ab4be6ab949b9147e0650e2156124f5e9db7270c WHIRLPOOL 3fed78801b25cdcd56411847a679a511775ca7b42582d0b6791dfbe9ff544e15325cf4e5d528458d4db0334d400d4770ccdefd60db56043cc3508ce82862b1cc DIST libclc-0.2.0_pre20151006.tar.xz 74584 SHA256 188c013e9115fcef934fdac92bac9f306394742d9e6f82bdc9304e1ddbad8f21 SHA512 2e5231325c06f863bd032c91f44e2f681d4d0e24adde780e5c81114fc6121f762794a6fa8ee398aa379daf1645251cb5c69946ac19f1edc1fec102e2f281cdff WHIRLPOOL d85602cad06052d4b80951b42653fb0444d3f904bd97b5ef2e9071026e14f20764811de297537ddd4e95b5c86f1aa971aa3867c611e7cb720e66d4f0667c0844 DIST libclc-0.2.0_pre20160209.tar.xz 75756 SHA256 4ed3491997cc524faa0c982a29bc3b4028c1054786e6dfe929d9c43265d78ed7 SHA512 d3edff5e04dc3d34033fdccc0a0d8256ea03515bd98b32818ec181d541141acf9ea06bb7e6bb149ea5e7f5dbcbb76ba13453fb1f461b4737a15ac60c7b3fc4ca WHIRLPOOL 111f75bb89c8288ffefc7a2e1448fd79d41f47990450984537405e423cbf7ea3717e102408774667ac654650db44109c1473a25c2e84d79fa19bc3dad0f7b69c +DIST libclc-0.2.0_pre20160921.tar.gz 127817 SHA256 82c89bb15f79eaf525d283dda82403b213ef1a11b1ea9d843799fb04e08d190d SHA512 5aae6010f32935c0b8fa510fc27cfd0be2df3d58d73cb5fb280d6758aafe54bd63a0137e59053aa81dca01ad2c5a0591ee1d4a83e3ef9a590a009a1a19062373 WHIRLPOOL 6e29280dfa585999d0aa6720a0a33b329b08be31a9f19246e23cbca723210337f834d14a8064541796b05e27dd999af1d3050f04c4fbcdc1e0fe2af574cdb243 diff --git a/dev-libs/libclc/libclc-0.2.0_pre20160921.ebuild b/dev-libs/libclc/libclc-0.2.0_pre20160921.ebuild new file mode 100644 index 000000000000..73ddf3691977 --- /dev/null +++ b/dev-libs/libclc/libclc-0.2.0_pre20160921.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +PYTHON_COMPAT=( python2_7 ) + +EGIT_REPO_URI="http://llvm.org/git/${PN}.git + https://github.com/llvm-mirror/${PN}.git" +EGIT_COMMIT="520743b0b72862a987ead6213dc1a5321a2010f9" + +if [[ ${PV} = 9999* ]]; then + GIT_ECLASS="git-r3" + EXPERIMENTAL="true" +else + GIT_ECLASS="vcs-snapshot" +fi + +inherit python-any-r1 ${GIT_ECLASS} + +DESCRIPTION="OpenCL C library" +HOMEPAGE="http://libclc.llvm.org/" + +if [[ ${PV} = 9999* ]]; then + SRC_URI="${SRC_PATCHES}" +else + SRC_URI="https://github.com/llvm-mirror/libclc/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz + ${SRC_PATCHES}" +fi + +LICENSE="|| ( MIT BSD )" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND=" + >=sys-devel/clang-3.9 + >=sys-devel/llvm-3.9" +DEPEND="${RDEPEND} + ${PYTHON_DEPS}" + +src_configure() { + ./configure.py \ + --with-llvm-config="${EPREFIX}/usr/bin/llvm-config" \ + --prefix="${EPREFIX}/usr" || die +} + +src_compile() { + emake VERBOSE=1 +} diff --git a/dev-libs/libclc/metadata.xml b/dev-libs/libclc/metadata.xml index e943b72b8a48..98a86df877bd 100644 --- a/dev-libs/libclc/metadata.xml +++ b/dev-libs/libclc/metadata.xml @@ -5,4 +5,7 @@ x11@gentoo.org X11 + + llvm@gentoo.org + diff --git a/dev-perl/DBD-mysql/DBD-mysql-4.37.0.ebuild b/dev-perl/DBD-mysql/DBD-mysql-4.37.0.ebuild index 32ed103ab2a0..2fcdd6007e5e 100644 --- a/dev-perl/DBD-mysql/DBD-mysql-4.37.0.ebuild +++ b/dev-perl/DBD-mysql/DBD-mysql-4.37.0.ebuild @@ -11,7 +11,7 @@ inherit eutils perl-module DESCRIPTION="MySQL driver for the Perl5 Database Interface (DBI)" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" # embedded=on disables ssl support # https://metacpan.org/source/MICHIELB/DBD-mysql-4.036/dbdimp.c#L1886 diff --git a/dev-python/pyparted/Manifest b/dev-python/pyparted/Manifest index 2fdb9ead7d07..90e0e72b8ac4 100644 --- a/dev-python/pyparted/Manifest +++ b/dev-python/pyparted/Manifest @@ -1,3 +1,3 @@ DIST pyparted-3.10.3.tar.gz 96927 SHA256 ba385beff0bd31e64886ac1ed699306c49474dcf5dc33f96f867d208f8d7e992 SHA512 238da222bb76e6838861f4fdff63f52823d0c7ace068fd4f40d5ccf5de5b7c26fadf52add689ec143755d568c52788b79262ba1090639560c3b54daa67e6507f WHIRLPOOL 9fab91096f345507fc3528c960ae8e151975abd36e8e76f5f55b48aabee6c23ac6e16c7b471b1b01a5977c7157f32b3726b1ce0fbb0d221ba0a07a0df9f19c13 -DIST pyparted-3.10.4.tar.gz 99746 SHA256 1121d6457dac0efa64cd1efe326ba2147c25c27e2ade3e1043cdbd188ab828a1 SHA512 8af3381b548f4f08eadfec2607b9b355d503fefc3057fd76c1bbe63d17f885a37604594593a1b2160c46ee608e4dcf217c7b0e2aee33d5ed4eeb9283f5bee030 WHIRLPOOL a8341ad50f5ed00623f291c146fae98069c64bb05928f3c5d37ad186dfe1b3c41a6dd6df543506b23ff3747d754ba4c27d180032d40d454e44527a9f72f05610 DIST pyparted-3.10.5.tar.gz 99638 SHA256 8cbaf024fbbc73cdceab2eac0937035052da48295970fe9eaa84b19d8e353e19 SHA512 c3cdc370d9a86278d47b97ed0b54d225fc6e92285aabda3ed529c0df67f4f45835016c7eea7bc02981f9273961948d5d7096f8f35c1f8eafde67ad241d9ec9fa WHIRLPOOL d79d8fcbaf04ae3f1a61b27bace5fd101fd70b271d11ff45be9dc3aebad6c7f5ad2e80e1694a68ebb0ad3a9633d3b8161ba7276f7f60a8696e365451989c63f3 +DIST pyparted-3.10.7.tar.gz 99879 SHA256 5914e3a60437fe3e3758a9e86ee4a539dfa46cfe18e3df386a5cf1f75a963431 SHA512 c57fed2a8d04511b12891fd59b6dd6840439aada7e5ebeab14a56e6e4f201c249046ee87d9d25af1b3f02960994efb0a2973f25928a9df85d48bbd1bc196ab07 WHIRLPOOL 9ffa320c496e511d4735209dbb7e9c1b6328e11513839a1299f1b5c3d32c7ed225d081db43482ee57774a13de862d3fef24fa80dba34a117386b8f63dd07ba74 diff --git a/dev-python/pyparted/pyparted-3.10.4.ebuild b/dev-python/pyparted/pyparted-3.10.7.ebuild similarity index 71% rename from dev-python/pyparted/pyparted-3.10.4.ebuild rename to dev-python/pyparted/pyparted-3.10.7.ebuild index a2078e6421af..9176e67930e4 100644 --- a/dev-python/pyparted/pyparted-3.10.4.ebuild +++ b/dev-python/pyparted/pyparted-3.10.7.ebuild @@ -1,15 +1,15 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 -PYTHON_COMPAT=( python{2_7,3_{3,4}} ) +PYTHON_COMPAT=( python{2_7,3_{4,5}} ) inherit distutils-r1 DESCRIPTION="Python bindings for sys-block/parted" -HOMEPAGE="https://github.com/dcantrell/pyparted/" -SRC_URI="${HOMEPAGE}archive/${P}.tar.gz" +HOMEPAGE="https://github.com/rhinstaller/pyparted/" +SRC_URI="${HOMEPAGE}archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2+" SLOT="0" @@ -29,11 +29,8 @@ DEPEND=" virtual/pkgconfig " -S=${WORKDIR}/${PN}-${P} - PATCHES=( "${FILESDIR}"/${PN}-3.10.3-greater.patch - "${FILESDIR}"/${PN}-3.10.3-sbin-parted.patch ) python_test() { diff --git a/dev-ruby/uglifier/Manifest b/dev-ruby/uglifier/Manifest index 428985d6986f..c52b75bd9c9f 100644 --- a/dev-ruby/uglifier/Manifest +++ b/dev-ruby/uglifier/Manifest @@ -1,4 +1,3 @@ DIST uglifier-2.7.2.gem 84480 SHA256 9f05989ffbcdef532a58062443ab7107319dbec3b76b6d604669853a3e31fa57 SHA512 03c8fffbd385db9ee0fa8f422bf571ba99803f810828d536f1b00bc99a21108ac0ed232015d39f1ab88441fef0a3371df10944873fbadae6c8bd2624e3e1a65d WHIRLPOOL e28e8ebbee1e677e8e0eff453ef37e795df3b0e18414a8af5c1143fe463b987bca157fef3aebab247176fd6931cd07993caa462409832a3c8632110bd49e7e8f -DIST uglifier-3.0.0.gem 93696 SHA256 b00c78cf5b3f2d3c9727a1cba3ada40cac8b808e753a29465b3852fa3fee4715 SHA512 4e0df459d2a87cfd531a12485f9c7787af42c2ea9606c325a1836a62b860db856470c84bb3e8cc7c0aa9a50979e82852d7bdc3b02b129abaf1c3303b8373abba WHIRLPOOL 46b1c7b1efc6843cd1258f9f23b72752f9655f940acb0bf84fdc86c9d876b69d9027a49236b6772b45dbe2ac210f1af1cd1727a451bf947e19a5fe4303e2c5b5 -DIST uglifier-3.0.1.gem 96768 SHA256 d9e75a8b2649ec889f31c2c9c21659be49090c597c76fa2cae89a8e07af1debb SHA512 f14083adc72ff6d58b03b2bd8e7fd2da8e65b14a4ef90ae049e7eac8790c89e37e46c896d93a5dec15e998c501c9bfa7e0f99e9d79c03ee81d09c98963181212 WHIRLPOOL bd2ba8df0dc1700e52bccd298e855c7635c7abb318320166e14566eb4fe643aaec632d21b9605371940c768beb6b388674b72f339a23a8d63f834c02e5d1288e DIST uglifier-3.0.2.gem 97280 SHA256 ccc57a83cf6c0aacf41fe728edfdfef75e915e3accf75339e903cc304cd06038 SHA512 e52ff3a7a1ffc1981875eb42104086fdbba48b2a9b576e60bfb8fb56bfea849be228e59a906b908982b9d4654233d3b321d4ec7f881d459bc9f621d24b538a63 WHIRLPOOL 30494754e7670265af87eeffa660ddde341706301fffa9a0f98b0605184139b4236128d91023c9fee7b0c17e987f4818f5c6b47e94a07719c54ba0eb9c89a65c +DIST uglifier-3.0.3.tar.gz 94580 SHA256 4315e2a0248d820743a73cd117119b7d609056df6bf06e9e05708eca7c710b17 SHA512 a303cd55dfac5139098b1505afb7f06693cad0aa986c62cb0d769c04eb99a9ca711bbc530e0071d5b9f68302fad9216e7f49be50850aabba97ad42e2352d0215 WHIRLPOOL 74116eb7fb2de9c2c3aceda67cd9e25bc73e547d05ac5d7f35451f9f49d4c3c1e0794cdca2ce9651e9d464c26299b5d4c695dc0eb4f97f219aadbbe007cb60d9 diff --git a/dev-ruby/uglifier/uglifier-3.0.0.ebuild b/dev-ruby/uglifier/uglifier-3.0.0.ebuild deleted file mode 100644 index f77f680fef04..000000000000 --- a/dev-ruby/uglifier/uglifier-3.0.0.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22 ruby23" - -RUBY_FAKEGEM_RECIPE_DOC="rdoc" - -RUBY_FAKEGEM_RECIPE_TEST="rspec3" - -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" - -inherit ruby-fakegem - -DESCRIPTION="Ruby wrapper for UglifyJS JavaScript compressor" -HOMEPAGE="https://github.com/lautis/uglifier" - -LICENSE="MIT" -SLOT="3" -KEYWORDS="~amd64 ~arm ~amd64-linux" - -IUSE="test" - -ruby_add_rdepend ">=dev-ruby/execjs-0.3.0:*" - -ruby_add_bdepend "test? ( dev-ruby/sourcemap )" diff --git a/dev-ruby/uglifier/uglifier-3.0.1.ebuild b/dev-ruby/uglifier/uglifier-3.0.3.ebuild similarity index 72% rename from dev-ruby/uglifier/uglifier-3.0.1.ebuild rename to dev-ruby/uglifier/uglifier-3.0.3.ebuild index f77f680fef04..0a643f80a26f 100644 --- a/dev-ruby/uglifier/uglifier-3.0.1.ebuild +++ b/dev-ruby/uglifier/uglifier-3.0.3.ebuild @@ -11,10 +11,13 @@ RUBY_FAKEGEM_RECIPE_TEST="rspec3" RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" + inherit ruby-fakegem DESCRIPTION="Ruby wrapper for UglifyJS JavaScript compressor" HOMEPAGE="https://github.com/lautis/uglifier" +SRC_URI="https://github.com/lautis/uglifier/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="3" @@ -25,3 +28,7 @@ IUSE="test" ruby_add_rdepend ">=dev-ruby/execjs-0.3.0:*" ruby_add_bdepend "test? ( dev-ruby/sourcemap )" + +all_ruby_prepare() { + sed -i -e 's/git ls-files -z/find -print0/' ${RUBY_FAKEGEM_GEMSPEC} || die +} diff --git a/games-puzzle/atomix/Manifest b/games-puzzle/atomix/Manifest index 72e889f0f058..c5770920c7e6 100644 --- a/games-puzzle/atomix/Manifest +++ b/games-puzzle/atomix/Manifest @@ -1,2 +1,3 @@ DIST atomix-3.18.0.tar.xz 262624 SHA256 3751cb2810bb993fd71d2a8441c4e08dccd36042ff02b7175c7c828b62db1de6 SHA512 a5d6614d9d4a0a37ce2740bf0e1fce5632fb45ea1d878868f13fde5ec2d8ed13d9ea12e7af5bdfc91f64cba623fb4bdf4c48a2a67331443101ebc0dc40d4dd95 WHIRLPOOL 5d4198912a3a4456d0de2dd01dcfb6b433310297a2011841937b0d7c7d3bca061da6c8eab9f7bd1f7998c0ef086362a904b0b27a24fc64e9cc8d4db872d7a5c5 DIST atomix-3.20.0.tar.xz 573180 SHA256 d7ffb2ddc8efd4af11986296b051be0af5bfe2226dac2b890290d3b285dd707f SHA512 883622952916e339710f31b89266afa14fee2b305bb4e68539bbce0cbf518490c60178d71fc1192ca07e35222ff6669afac8b824af8fb80d5f6b63f0b4fb5076 WHIRLPOOL 710b03090d356f2c19083d727812b5e66a49c02e1ae9f6f606c12afd99ca69f51381815654f13e7b2a9da504267263270b1329477b70c2dc9f59b1cebdc6be5c +DIST atomix-3.22.0.tar.xz 551424 SHA256 95caf79181381ecc1725fc76b937a2440640739bb4cfbaff91db79e714e7427f SHA512 111c1d1cbd4e07ef7fdfa6d6431b2b7f460dfcceabd1460675640c3965e7f40fb145c921d27e0f3c06605e943190fd36af6d6d462533dca207b8d29487470212 WHIRLPOOL 50fbf803b878c720fe5d975b88b1c1d853a2e24028f6c373259fe7f69b1db59e99580f3f42b0af81a477bb3e2cc46e0bed558f9a08efaa9d0870f57bc37cd062 diff --git a/games-puzzle/atomix/atomix-3.22.0.ebuild b/games-puzzle/atomix/atomix-3.22.0.ebuild new file mode 100644 index 000000000000..006b0d934a5a --- /dev/null +++ b/games-puzzle/atomix/atomix-3.22.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit gnome2 + +DESCRIPTION="Build molecules, from simple inorganic to extremely complex organic ones" +HOMEPAGE="http://ftp.gnome.org/pub/GNOME/sources/atomix/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND=" + >=dev-libs/glib-2.36:2 + >=x11-libs/gdk-pixbuf-2.0.5:2 + >=x11-libs/gtk+-3.10:3 +" +DEPEND="${RDEPEND} + dev-libs/appstream-glib + >=dev-util/intltool-0.40 + sys-devel/gettext + virtual/pkgconfig +" diff --git a/gnome-extra/evolution-data-server/Manifest b/gnome-extra/evolution-data-server/Manifest index b245e95e4627..3fe0ad5ab13e 100644 --- a/gnome-extra/evolution-data-server/Manifest +++ b/gnome-extra/evolution-data-server/Manifest @@ -1,3 +1,2 @@ -DIST evolution-data-server-3.18.5.tar.xz 5414416 SHA256 a897c789925e86df31a1c78212b431cca13dc4d5a3d87e1fb3d507df3994e8e1 SHA512 10b17b771dbb55ad8320b742d96f6d720f3245bed24fdc415027df6920b0847afa89eb839cd5d4613c0ec40972634c7c695e4ea0ce819973eab0de99987c253e WHIRLPOOL 3c95f43113882409bf85b8f97d49cea74e857ce4c562b625b0936bd014b0799ea16b6c7d2d9c0c0cdbd1f6ce7daf509c15d6413b26f275050da30030a5f0d2a3 -DIST evolution-data-server-3.20.4.tar.xz 5068932 SHA256 f250e3ccb8b6308086f330a1766b235a9d2643ae3e170384eb6391316d0b080e SHA512 51cf71dfb8fc36d91a698006d068e63d3937a8c503329e4d8af62ec914ab6702805eb9c9f11a7c4569f5357eba4a8322f1c017919f5267a318ce15d12185234f WHIRLPOOL 26dec9733aa9479da18fdbde8716dfdb44f56f15dae17a7b8e38e9b995b88b62042cf655791b4a6d24eae378e4f71a2c10b7f79e34886f41d9b7b3242d0d98ed DIST evolution-data-server-3.20.5.tar.xz 5067732 SHA256 0d1586cd326d997497a2a6fddd939a83892be07cb20f8c88fda5013f8c5bbe7e SHA512 8376331ae0ee96013d5c61b1da92393486d0eb9e0fed63199d4b6c28d92cb6d9dc45826fd65b476d894141d507742e8574168bc99b8704bebe8b39bbd297606e WHIRLPOOL 3c3417603bd2a18c7a3370e32af7f1581fc399ebe6f721d0ac678a5978d667b58df2927eb02f240b4c2f139133e06f25e13a47879b7b7a470cd1283a186bba10 +DIST evolution-data-server-3.22.1.tar.xz 5541744 SHA256 5ea1a25c26c2b5587b912661fc0eadf0ef8bc89ec01be9bb23cfffdf30ab41d9 SHA512 bc3484d303d529c4f45152850465f628d426cfea7d3711bdf7bcb63905a8e81130aa4f00e6c33ae99ff0e35a943454cd6be267545b8008d657f792fb3755ba81 WHIRLPOOL 1b08ee8e2639ac31769a97c8e5566f158325448b5bddfb77d9f2a2def35be0e7ebef889eb2b2efef4c349d33e0a311cf0a31e0c0b8ed8e414c7797bd082485cf diff --git a/gnome-extra/evolution-data-server/evolution-data-server-3.18.5.ebuild b/gnome-extra/evolution-data-server/evolution-data-server-3.18.5.ebuild deleted file mode 100644 index bafbc08a524d..000000000000 --- a/gnome-extra/evolution-data-server/evolution-data-server-3.18.5.ebuild +++ /dev/null @@ -1,137 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" -GCONF_DEBUG="no" -GNOME2_LA_PUNT="yes" -PYTHON_COMPAT=( python2_7 python3_{4,5} pypy ) -VALA_USE_DEPEND="vapigen" - -inherit db-use flag-o-matic gnome2 python-any-r1 vala virtualx - -DESCRIPTION="Evolution groupware backend" -HOMEPAGE="https://wiki.gnome.org/Apps/Evolution" - -# Note: explicitly "|| ( LGPL-2 LGPL-3 )", not "LGPL-2+". -LICENSE="|| ( LGPL-2 LGPL-3 ) BSD Sleepycat" -SLOT="0/54" # subslot = libcamel-1.2 soname version - -IUSE="api-doc-extras +berkdb +gnome-online-accounts +gtk +introspection ipv6 ldap kerberos vala +weather" -REQUIRED_USE="vala? ( introspection )" - -KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-solaris" - -# sys-libs/db is only required for migrating from <3.13 versions -# gdata-0.15.1 is required for google tasks -# berkdb needed only for migrating old calendar data, bug #519512 -RDEPEND=" - >=app-crypt/gcr-3.4 - >=app-crypt/libsecret-0.5[crypt] - >=dev-db/sqlite-3.7.17:= - >=dev-libs/glib-2.40:2 - >=dev-libs/libgdata-0.10:= - >=dev-libs/libical-0.43:= - >=net-libs/libsoup-2.42:2.4 - >=dev-libs/libxml2-2 - >=dev-libs/nspr-4.4:= - >=dev-libs/nss-3.9:= - - dev-libs/icu:= - sys-libs/zlib:= - virtual/libiconv - - berkdb? ( >=sys-libs/db-4:= ) - gtk? ( - >=app-crypt/gcr-3.4[gtk] - >=x11-libs/gtk+-3.10:3 - ) - gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.8 ) - introspection? ( >=dev-libs/gobject-introspection-0.9.12:= ) - kerberos? ( virtual/krb5:= ) - ldap? ( >=net-nds/openldap-2:= ) - weather? ( >=dev-libs/libgweather-3.10:2= ) -" -DEPEND="${RDEPEND} - ${PYTHON_DEPS} - dev-util/gdbus-codegen - dev-util/gperf - >=dev-util/gtk-doc-am-1.14 - >=dev-util/intltool-0.35.5 - >=sys-devel/gettext-0.17 - virtual/pkgconfig - vala? ( $(vala_depend) ) -" - -# eautoreconf needs: -# >=gnome-base/gnome-common-2 - -# Some tests fail due to missings locales. -# Also, dbus tests are flacky, bugs #397975 #501834 -# It looks like a nightmare to disable those for now. -RESTRICT="test" - -pkg_setup() { - python-any-r1_pkg_setup -} - -src_prepare() { - use vala && vala_src_prepare - - # Fix relink issues in src_install - ELTCONF="--reverse-deps" - - gnome2_src_prepare -} - -src_configure() { - # /usr/include/db.h is always db-1 on FreeBSD - # so include the right dir in CPPFLAGS - use berkdb && append-cppflags "-I$(db_includedir)" - - # phonenumber does not exist in tree - gnome2_src_configure \ - $(use_enable api-doc-extras gtk-doc) \ - $(use_with api-doc-extras private-docs) \ - $(usex berkdb --with-libdb="${EPREFIX}"/usr --with-libdb=no) \ - $(use_enable gnome-online-accounts goa) \ - $(use_enable gtk) \ - $(use_enable introspection) \ - $(use_enable ipv6) \ - $(use_with kerberos krb5 "${EPREFIX}"/usr) \ - $(use_with kerberos krb5-libs "${EPREFIX}"/usr/$(get_libdir)) \ - $(use_with ldap openldap) \ - $(use_enable vala vala-bindings) \ - $(use_enable weather) \ - --enable-google \ - --enable-largefile \ - --enable-smime \ - --without-phonenumber \ - --disable-examples \ - --disable-uoa -} - -src_test() { - unset ORBIT_SOCKETDIR - unset SESSION_MANAGER - unset DISPLAY - Xemake check -} - -src_install() { - gnome2_src_install - - if use ldap; then - insinto /etc/openldap/schema - doins "${FILESDIR}"/calentry.schema - dosym /usr/share/${PN}/evolutionperson.schema /etc/openldap/schema/evolutionperson.schema - fi -} - -pkg_postinst() { - gnome2_pkg_postinst - if ! use berkdb; then - ewarn "You will need to enable berkdb USE for migrating old" - ewarn "(pre-3.12 evolution versions) addressbook data" - fi -} diff --git a/gnome-extra/evolution-data-server/evolution-data-server-3.20.4.ebuild b/gnome-extra/evolution-data-server/evolution-data-server-3.22.1.ebuild similarity index 85% rename from gnome-extra/evolution-data-server/evolution-data-server-3.20.4.ebuild rename to gnome-extra/evolution-data-server/evolution-data-server-3.22.1.ebuild index b71a107ef4f4..fa33e59fa6b1 100644 --- a/gnome-extra/evolution-data-server/evolution-data-server-3.20.4.ebuild +++ b/gnome-extra/evolution-data-server/evolution-data-server-3.22.1.ebuild @@ -7,16 +7,16 @@ GNOME2_LA_PUNT="yes" PYTHON_COMPAT=( python2_7 python3_{4,5} pypy ) VALA_USE_DEPEND="vapigen" -inherit db-use flag-o-matic gnome2 python-any-r1 vala virtualx +inherit db-use flag-o-matic gnome2 python-any-r1 systemd vala virtualx DESCRIPTION="Evolution groupware backend" HOMEPAGE="https://wiki.gnome.org/Apps/Evolution" # Note: explicitly "|| ( LGPL-2 LGPL-3 )", not "LGPL-2+". LICENSE="|| ( LGPL-2 LGPL-3 ) BSD Sleepycat" -SLOT="0/57" # subslot = libcamel-1.2 soname version +SLOT="0/59" # subslot = libcamel-1.2 soname version -IUSE="api-doc-extras +berkdb +gnome-online-accounts +gtk google +introspection ipv6 ldap kerberos vala +weather" +IUSE="api-doc-extras berkdb +gnome-online-accounts +gtk google +introspection ipv6 ldap kerberos vala +weather" REQUIRED_USE="vala? ( introspection )" KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-solaris" @@ -28,7 +28,7 @@ RDEPEND=" >=app-crypt/gcr-3.4 >=app-crypt/libsecret-0.5[crypt] >=dev-db/sqlite-3.7.17:= - >=dev-libs/glib-2.40:2 + >=dev-libs/glib-2.46:2 >=dev-libs/libgdata-0.10:= >=dev-libs/libical-0.43:= >=dev-libs/libxml2-2 @@ -48,7 +48,7 @@ RDEPEND=" google? ( >=dev-libs/json-glib-1.0.4 >=dev-libs/libgdata-0.15.1:= - >=net-libs/webkit-gtk-2.4.9:3 + >=net-libs/webkit-gtk-2.11.91:4 ) gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.8:= ) introspection? ( >=dev-libs/gobject-introspection-0.9.12:= ) @@ -62,14 +62,12 @@ DEPEND="${RDEPEND} dev-util/gperf >=dev-util/gtk-doc-am-1.14 >=dev-util/intltool-0.35.5 + >=gnome-base/gnome-common-2 >=sys-devel/gettext-0.17 virtual/pkgconfig vala? ( $(vala_depend) ) " -# eautoreconf needs: -# >=gnome-base/gnome-common-2 - # Some tests fail due to missings locales. # Also, dbus tests are flacky, bugs #397975 #501834 # It looks like a nightmare to disable those for now. @@ -107,6 +105,7 @@ src_configure() { $(use_enable weather) \ --enable-largefile \ --enable-smime \ + --with-systemduserunitdir="$(systemd_get_userunitdir)" \ --without-phonenumber \ --disable-examples \ --disable-uoa @@ -127,11 +126,3 @@ src_install() { dosym /usr/share/${PN}/evolutionperson.schema /etc/openldap/schema/evolutionperson.schema fi } - -pkg_postinst() { - gnome2_pkg_postinst - if ! use berkdb; then - ewarn "You will need to enable berkdb USE for migrating old" - ewarn "(pre-3.12 evolution versions) addressbook data" - fi -} diff --git a/gnome-extra/evolution-ews/Manifest b/gnome-extra/evolution-ews/Manifest index d3740002e6e9..139c553aa11b 100644 --- a/gnome-extra/evolution-ews/Manifest +++ b/gnome-extra/evolution-ews/Manifest @@ -1,3 +1,2 @@ -DIST evolution-ews-3.18.5.tar.xz 702984 SHA256 7e1ed3b18161a620ba358ebf23e4c7aea85c0c5070be3c20a8a2ef012fbcfc55 SHA512 a1359803a9929391ac8b2945e411058cef6038c607706a08c1ab270c40d2b0840537e5c29416bf74bc9d5b3b6a073257f21f0c16951e6e1aa49ee8f983725c27 WHIRLPOOL 0d742407b3d293d4f70656e40dce3f1503f0e5f2ac599d2681a8cb49a34e5647aa4a8b3a85aeebd025e543fc54bc4f282c103bdb09d50d0be633c8e52fb2d4fb -DIST evolution-ews-3.20.4.tar.xz 712112 SHA256 6cff88d0fcdf060a84998e1dd886bea7d18aebe2a7fc94b6750881fc4d9dd988 SHA512 0bd5615dbfedb1df428d3905b3e0b36777bb36a7b45e947e9f413fe205624beadfa752909079f203a8adc5306c864c8b6633ef44c91b03323135d2e29c4bd053 WHIRLPOOL d0eeb8a7f8426b343e93771c465118cd6a840144c7f7fdee299d1778694f77869b8837d65ab192962d64f07f2a62a28f30ef1dcc2c2b833ff8acdc680f038d2b DIST evolution-ews-3.20.5.tar.xz 712400 SHA256 dec65397f7c7e5ac591335e3b5c0fe5f8e8ff7c624d6555d08edf74933d7e424 SHA512 1f4b850d1c7da861e727fecd4f8d7b4935b680ff72052335ace84b9518686457aaac879e0ae61fa0256e75b570770e61ae260cacdb771066dea20d80a599f175 WHIRLPOOL 4c1a36bcce66faf63549706822adc84eb44dc837f0a86f9c87588ed3257a89c1f240e94638bdff943156dc0cdaa18bbabc5f70cc6293222072d25682585dcb5f +DIST evolution-ews-3.22.1.tar.xz 714064 SHA256 678daee5933f4dfb000bb23f134523c2b10e5894c461ccf7fabfcf5af99feff8 SHA512 199632c3eaa094a999e5bbd0c5c0bd068c3d5baeb39efb785d87238809eaee331dc4420e2829aeffd89d7bb4dc951cbd05666a62a31dbc155133c83255d74c42 WHIRLPOOL deb15adea2df4959613d60dcd20dff9e9d0943615518ae88cb1d05d43a21730f2c2912a608d255a7343afcb520b266fb762ab3568c85c0b3e64b92dffaf0b0a4 diff --git a/gnome-extra/evolution-ews/evolution-ews-3.18.5.ebuild b/gnome-extra/evolution-ews/evolution-ews-3.18.5.ebuild deleted file mode 100644 index e2bcc43a07e5..000000000000 --- a/gnome-extra/evolution-ews/evolution-ews-3.18.5.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" -GCONF_DEBUG="no" -GNOME2_LA_PUNT="yes" - -inherit gnome2 - -DESCRIPTION="Evolution module for connecting to Microsoft Exchange Web Services" -HOMEPAGE="https://wiki.gnome.org/Apps/Evolution" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="test" - -RDEPEND=" - dev-db/sqlite:3= - >=dev-libs/glib-2.40:2 - dev-libs/libical:0= - >=dev-libs/libxml2-2 - >=gnome-extra/evolution-data-server-${PV}:0= - >=mail-client/evolution-${PV}:2.0 - >=net-libs/libsoup-2.42:2.4 - >=x11-libs/gtk+-3:3 -" -DEPEND="${RDEPEND} - >=dev-util/gtk-doc-am-1.9 - >=dev-util/intltool-0.35.5 - virtual/pkgconfig - test? ( net-libs/uhttpmock ) -" - -src_configure() { - # We don't have libmspack, needing internal lzx - gnome2_src_configure \ - --with-internal-lzx \ - $(use_enable test tests) -} diff --git a/gnome-extra/evolution-ews/evolution-ews-3.20.4.ebuild b/gnome-extra/evolution-ews/evolution-ews-3.22.1.ebuild similarity index 100% rename from gnome-extra/evolution-ews/evolution-ews-3.20.4.ebuild rename to gnome-extra/evolution-ews/evolution-ews-3.22.1.ebuild diff --git a/kde-apps/kdeartwork-emoticons/Manifest b/kde-apps/kdeartwork-emoticons/Manifest deleted file mode 100644 index eaa8addc37c1..000000000000 --- a/kde-apps/kdeartwork-emoticons/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST kdeartwork-15.08.3.tar.xz 140847804 SHA256 fb3fe3a0502de6e5e3acc4a6bab5b11e861fa596cc3f8acf2f4f86451c003b0c SHA512 780a7f8bd3f897907adc2d3573145b9cf52a740488fc604cd2d5b9e84e172b25a4d7824f30c77bec398a92db688e18f937d44912c033c90dd86ef4ef9fc9b520 WHIRLPOOL 312d2b3d7ccba86ae9368a210b6fb92e69af51e17c118846e05e2cc8efde55484511f2c18b39068b25ea9834173514a3293425d27fa8dbee908743b9e2a5ee71 diff --git a/kde-apps/kdeartwork-emoticons/kdeartwork-emoticons-15.08.3.ebuild b/kde-apps/kdeartwork-emoticons/kdeartwork-emoticons-15.08.3.ebuild deleted file mode 100644 index 0b01075f263b..000000000000 --- a/kde-apps/kdeartwork-emoticons/kdeartwork-emoticons-15.08.3.ebuild +++ /dev/null @@ -1,16 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -RESTRICT="binchecks strip" - -KMMODULE="emoticons" -KMNAME="kdeartwork" -KDE_SCM="svn" -inherit kde4-meta - -DESCRIPTION="EmotIcons (icons for things like smilies :-) for kde" -KEYWORDS="amd64 ~arm x86" -IUSE="" diff --git a/kde-apps/kdeartwork-emoticons/metadata.xml b/kde-apps/kdeartwork-emoticons/metadata.xml deleted file mode 100644 index 2fdbf33d963d..000000000000 --- a/kde-apps/kdeartwork-emoticons/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - kde@gentoo.org - Gentoo KDE Project - - diff --git a/kde-misc/colord-kde/Manifest b/kde-misc/colord-kde/Manifest index 7ad6bca1b54f..1d16d927971c 100644 --- a/kde-misc/colord-kde/Manifest +++ b/kde-misc/colord-kde/Manifest @@ -1 +1,2 @@ DIST colord-kde-0.3.0.tar.bz2 48933 SHA256 ab3cdb7c8c98aa2ee8de32a92f87770e1fbd58eade6471f3f24d932b50b4cf09 SHA512 21e20b79cc0875c33b7b240b46d63b045ba3db45445a4d6d3c533577c0f9d9e1f1efc48dc9a35c588eb93e02d0eedb1bceb39d5eaa982bb01acae07e55abe0ba WHIRLPOOL f4ec74c8e20952eb84cb16435275a564fc8bd53c15bc3e2b4d67b6fa5ae5144e8043eb22acf58c6d81d051b7820824e10f525999c7a9ee4e7ba985217157d1ad +DIST colord-kde-0.5.0.tar.xz 97572 SHA256 6c545009af737ad67900e4d8549086bc65b979c799b2402871bba44addb52d2f SHA512 f285931f0f97462fcf173f64aaf2f32752bddb0b724d2055055ce5beb7dbe89ccebc62cb8c2ce455a8d68beb737fd55bf89be8e4dc7eaa37f09878b757370f07 WHIRLPOOL 4dc42e0378caded5277f665e3ee79b6f38f91ec97c37cf10f022d02e20b470b785c07a59ca02cc2918b8dfebc47bd9c0d8a644572b91e6ad00decd10e0e3291f diff --git a/kde-misc/colord-kde/colord-kde-0.5.0.ebuild b/kde-misc/colord-kde/colord-kde-0.5.0.ebuild new file mode 100644 index 000000000000..6f5e83bae725 --- /dev/null +++ b/kde-misc/colord-kde/colord-kde-0.5.0.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit kde5 + +DESCRIPTION="Provides interfaces and session daemon to colord" +HOMEPAGE="http://projects.kde.org/projects/playground/graphics/colord-kde" +SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz" + +LICENSE="GPL-2+" +KEYWORDS="~amd64 ~x86" +IUSE="" + +COMMON_DEPEND=" + $(add_frameworks_dep kcmutils) + $(add_frameworks_dep kconfigwidgets) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep kdbusaddons) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kservice) + $(add_frameworks_dep kwidgetsaddons) + $(add_qt_dep qtdbus) + $(add_qt_dep qtgui) + $(add_qt_dep qtwidgets) + $(add_qt_dep qtx11extras) + media-libs/lcms:2 + x11-libs/libxcb + x11-libs/libX11 + x11-libs/libXrandr +" +DEPEND="${COMMON_DEPEND} + $(add_frameworks_dep kwindowsystem) +" +RDEPEND="${COMMON_DEPEND} + $(add_plasma_dep kde-cli-tools) + x11-misc/colord +" + +PATCHES=( "${FILESDIR}/${P}-unused-deps.patch" ) + +pkg_postinst() { + kde5_pkg_postinst + if ! has_version "gnome-extra/gnome-color-manager"; then + elog "You may want to install gnome-extra/gnome-color-manager to add support for" + elog "colorhug calibration devices." + fi +} diff --git a/kde-misc/colord-kde/files/colord-kde-0.5.0-unused-deps.patch b/kde-misc/colord-kde/files/colord-kde-0.5.0-unused-deps.patch new file mode 100644 index 000000000000..48b1f4277df5 --- /dev/null +++ b/kde-misc/colord-kde/files/colord-kde-0.5.0-unused-deps.patch @@ -0,0 +1,68 @@ +From be1d302200fb3f3f2ef9cf41c34cb4ac5d970df2 Mon Sep 17 00:00:00 2001 +From: Michael Palimaka +Date: Sat, 22 Oct 2016 21:46:18 +1100 +Subject: [PATCH] Remove unused dependencies. + +REVIEW: 129240 +--- + CMakeLists.txt | 4 ++-- + colord-kcm/CMakeLists.txt | 1 - + icc-importer/CMakeLists.txt | 2 -- + icc-importer/main.cpp | 1 - + 4 files changed, 2 insertions(+), 6 deletions(-) + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index fcace67..6d6093a 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -28,8 +28,8 @@ find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS + find_package(X11) + find_package(XCB COMPONENTS XCB RANDR) + +-find_package(KF5 REQUIRED Config ConfigWidgets CoreAddons DBusAddons IconThemes I18n KCMUtils KIO +- Notifications Plasma WidgetsAddons WindowSystem ItemViews) ++find_package(KF5 REQUIRED ConfigWidgets CoreAddons DBusAddons I18n KCMUtils ++ WidgetsAddons WindowSystem) + + add_definitions(-DTRANSLATION_DOMAIN=\"colord-kde\") + +diff --git a/colord-kcm/CMakeLists.txt b/colord-kcm/CMakeLists.txt +index a078ed3..712bf1a 100644 +--- a/colord-kcm/CMakeLists.txt ++++ b/colord-kcm/CMakeLists.txt +@@ -53,7 +53,6 @@ target_link_libraries(kcm_colord + Qt5::DBus + KF5::CoreAddons + KF5::I18n +- KF5::IconThemes + KF5::KCMUtils + ${LCMS2_LIBRARIES} + ) +diff --git a/icc-importer/CMakeLists.txt b/icc-importer/CMakeLists.txt +index af3cee0..a6ac1f9 100644 +--- a/icc-importer/CMakeLists.txt ++++ b/icc-importer/CMakeLists.txt +@@ -18,8 +18,6 @@ target_link_libraries(colord-kde-icc-importer + KF5::CoreAddons + KF5::I18n + KF5::WidgetsAddons +- KF5::IconThemes +- KF5::ConfigCore + ${LCMS2_LIBRARIES} + ) + +diff --git a/icc-importer/main.cpp b/icc-importer/main.cpp +index 2af0e85..bb72f32 100644 +--- a/icc-importer/main.cpp ++++ b/icc-importer/main.cpp +@@ -31,7 +31,6 @@ + #include + + #include +-#include + #include + #include + +-- +2.7.3 + diff --git a/mail-client/evolution/Manifest b/mail-client/evolution/Manifest index 8519bdb9a942..b1be789612eb 100644 --- a/mail-client/evolution/Manifest +++ b/mail-client/evolution/Manifest @@ -1,3 +1,2 @@ -DIST evolution-3.18.5.2.tar.xz 12076700 SHA256 3331bee17fc660df9e83f0e070cc2494a9335108e400c889f3a2edf0c293a643 SHA512 1c6200874a5c7e72a6a8976aa7bf5558e5f0084f7a19227866e5d84007115b92954d1e36e83c9cb092b90c722a21222a5ed84cd94596bc853d2639bf374eff9e WHIRLPOOL 8e9d9799aa1ca6d665ca3da42827da3fb15adfa1c28615af82c09848b7dad045523fda9567490d8b3dd007923086af5876af8a270f1bdaa69b95593bb7360bbb -DIST evolution-3.20.4.tar.xz 12133788 SHA256 2c29733cb49042dca093bb4b3c4a3eb7fdc5d7437d1bd048fa39822f4d5436bc SHA512 c3f256c41022b7098ca63c542af01bf1a1ecb9c6fd20991518ee383df3e9e0f62f4a527512b39d2ee994ca4fac84bfa1df110e3b46732a124d1d985659159912 WHIRLPOOL 617d88ff2227aeb64a7357594bfa02d7addc2a8e009901fe111b918db0a5ccb8ea8be9b2b75c415ac60ab29c8624f971fc327da7c896241564a36c26897f7d13 DIST evolution-3.20.5.tar.xz 12133872 SHA256 2e13551ce0996963506f0bdde5e01c3b8aa0622849a272ff12877cd595baeb6e SHA512 4b974ac5d8f3918a8012192634e8d131b1f6af0ed40a32181eb9500bc43b8bf4cf29a6fc7e49620638ada8f2456117e263e6162f21c0e1deef81861789a97906 WHIRLPOOL 1ed38bd2b9de97ad50bb832e03b76bf94131e65f0cf05c555d9e62d0e908467382b7e879d8eeb9513a6a09396da77eb2b2ac3a0dd3b97c6f2cde373dd65222ae +DIST evolution-3.22.1.tar.xz 12257260 SHA256 fa652d830f4185c33666770e6e9cfcc39d5e2f09486bbd63a084f3527064e52e SHA512 7306605160fd39999ec8c710f65f4cdadd18b19e5b354748e896d0f3a381fc387b7c6017407db69acb681f67e944d15459d31bf9bd392e7c6071610e0be6d1b9 WHIRLPOOL 183c837ed6629c0fbe858cb8423f03a889db2398c2b4c060346628f111daeee1142ec2f53b12a25f5937e1af36b8002a36abed497236423d4ad19a07891b4643 diff --git a/mail-client/evolution/evolution-3.18.5.2.ebuild b/mail-client/evolution/evolution-3.18.5.2.ebuild deleted file mode 100644 index 67e663abea32..000000000000 --- a/mail-client/evolution/evolution-3.18.5.2.ebuild +++ /dev/null @@ -1,150 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" -GCONF_DEBUG="no" -GNOME2_LA_PUNT="yes" - -inherit eutils flag-o-matic readme.gentoo-r1 gnome2 - -DESCRIPTION="Integrated mail, addressbook and calendaring functionality" -HOMEPAGE="https://wiki.gnome.org/Apps/Evolution" - -# Note: explicitly "|| ( LGPL-2 LGPL-3 )", not "LGPL-2+". -LICENSE="|| ( LGPL-2 LGPL-3 ) CC-BY-SA-3.0 FDL-1.3+ OPENLDAP" -SLOT="2.0" - -IUSE="+bogofilter crypt highlight ldap map spamassassin spell ssl +weather" - -KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 x86 ~x86-fbsd" - -# We need a graphical pinentry frontend to be able to ask for the GPG -# password from inside evolution, bug 160302 -PINENTRY_DEPEND="|| ( app-crypt/pinentry[gnome-keyring] app-crypt/pinentry[gtk] app-crypt/pinentry[qt4] )" - -# glade-3 support is for maintainers only per configure.ac -# pst is not mature enough and changes API/ABI frequently -# dconf explicitely needed for backup plugin -# gnome-desktop support is optional with --enable-gnome-desktop -# gnome-autoar (currently disabled because no release has been made) -COMMON_DEPEND=" - >=app-crypt/gcr-3.4 - >=app-text/enchant-1.1.7 - >=dev-libs/glib-2.40:2[dbus] - >=dev-libs/libxml2-2.7.3:2 - >=gnome-base/gnome-desktop-2.91.3:3= - >=gnome-base/gsettings-desktop-schemas-2.91.92 - >=gnome-extra/evolution-data-server-3.18.2:=[gtk,weather?] - >=media-libs/libcanberra-0.25[gtk3] - >=net-libs/libsoup-2.42:2.4 - >=net-libs/webkit-gtk-2.2:3 - >=x11-libs/cairo-1.9.15:=[glib] - >=x11-libs/gdk-pixbuf-2.24:2 - >=x11-libs/gtk+-3.10:3 - >=x11-libs/libnotify-0.7:= - >=x11-misc/shared-mime-info-0.22 - - >=app-text/iso-codes-0.49 - dev-libs/atk - gnome-base/dconf - dev-libs/libical:= - x11-libs/libSM - x11-libs/libICE - - crypt? ( - >=app-crypt/gnupg-1.4 - ${PINENTRY_DEPEND} - x11-libs/libcryptui ) - map? ( - >=media-libs/libchamplain-0.12:0.12[gtk] - >=media-libs/clutter-1.0.0:1.0 - >=media-libs/clutter-gtk-0.90:1.0 - >=sci-geosciences/geocode-glib-3.10.0 - x11-libs/mx:1.0 ) - spell? ( app-text/gtkspell:3 ) - ldap? ( >=net-nds/openldap-2:= ) - ssl? ( - >=dev-libs/nspr-4.6.1:= - >=dev-libs/nss-3.11:= ) - weather? ( >=dev-libs/libgweather-3.10:2= ) -" -DEPEND="${COMMON_DEPEND} - app-text/docbook-xml-dtd:4.1.2 - dev-util/gtk-doc-am - >=dev-util/intltool-0.40.0 - dev-util/itstool - virtual/pkgconfig -" -# eautoreconf needs: -# app-text/yelp-tools -# >=gnome-base/gnome-common-2.12 -RDEPEND="${COMMON_DEPEND} - bogofilter? ( mail-filter/bogofilter ) - highlight? ( app-text/highlight ) - spamassassin? ( mail-filter/spamassassin ) - !gnome-extra/evolution-exchange -" - -DISABLE_AUTOFORMATTING="yes" -DOC_CONTENTS="To change the default browser if you are not using GNOME, edit -~/.local/share/applications/mimeapps.list so it includes the -following content: - -[Default Applications] -x-scheme-handler/http=firefox.desktop -x-scheme-handler/https=firefox.desktop - -(replace firefox.desktop with the name of the appropriate .desktop -file from /usr/share/applications if you use a different browser)." - -src_prepare() { - # Fix relink issues in src_install - ELTCONF="--reverse-deps" - gnome2_src_prepare -} - -src_configure() { - # Use NSS/NSPR only if 'ssl' is enabled. - gnome2_src_configure \ - --without-glade-catalog \ - --disable-autoar \ - --disable-code-coverage \ - --disable-installed-tests \ - --disable-pst-import \ - --enable-canberra \ - $(use_enable crypt libcryptui) \ - $(use_enable highlight text-highlight) \ - $(use_enable map contact-maps) \ - $(use_enable spell gtkspell) \ - $(use_enable ssl nss) \ - $(use_enable ssl smime) \ - $(use_with bogofilter) \ - $(use_with ldap openldap) \ - $(use_with spamassassin) \ - $(usex ssl --enable-nss=yes "--without-nspr-libs - --without-nspr-includes - --without-nss-libs - --without-nss-includes") \ - $(use_enable weather) -} - -src_install() { - DOCS="AUTHORS ChangeLog* HACKING MAINTAINERS NEWS* README" - - gnome2_src_install - - # Problems with prelink: - # https://bugzilla.gnome.org/show_bug.cgi?id=731680 - # https://bugzilla.gnome.org/show_bug.cgi?id=732148 - # https://bugzilla.redhat.com/show_bug.cgi?id=1114538 - echo PRELINK_PATH_MASK=/usr/bin/evolution > ${T}/99${PN} - doenvd "${T}"/99${PN} - - readme.gentoo_create_doc -} - -pkg_postinst() { - gnome2_pkg_postinst - readme.gentoo_print_elog -} diff --git a/mail-client/evolution/evolution-3.20.4.ebuild b/mail-client/evolution/evolution-3.22.1.ebuild similarity index 90% rename from mail-client/evolution/evolution-3.20.4.ebuild rename to mail-client/evolution/evolution-3.22.1.ebuild index 954a5faf11c3..8c24ac7ea72d 100644 --- a/mail-client/evolution/evolution-3.20.4.ebuild +++ b/mail-client/evolution/evolution-3.22.1.ebuild @@ -5,7 +5,7 @@ EAPI=6 GNOME2_LA_PUNT="yes" -inherit flag-o-matic readme.gentoo-r1 gnome2 +inherit gnome2 flag-o-matic readme.gentoo-r1 DESCRIPTION="Integrated mail, addressbook and calendaring functionality" HOMEPAGE="https://wiki.gnome.org/Apps/Evolution" @@ -14,13 +14,13 @@ HOMEPAGE="https://wiki.gnome.org/Apps/Evolution" LICENSE="|| ( LGPL-2 LGPL-3 ) CC-BY-SA-3.0 FDL-1.3+ OPENLDAP" SLOT="2.0" -IUSE="+bogofilter crypt highlight ldap map spamassassin spell ssl +weather" +IUSE="+bogofilter crypt geolocation highlight ldap spamassassin spell ssl +weather" KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd" # We need a graphical pinentry frontend to be able to ask for the GPG # password from inside evolution, bug 160302 -PINENTRY_DEPEND="|| ( app-crypt/pinentry[gnome-keyring] app-crypt/pinentry[gtk] app-crypt/pinentry[qt4] )" +PINENTRY_DEPEND="|| ( app-crypt/pinentry[gnome-keyring] app-crypt/pinentry[gtk] app-crypt/pinentry[qt4] app-crypt/pinentry[qt5] )" # glade-3 support is for maintainers only per configure.ac # pst is not mature enough and changes API/ABI frequently @@ -30,14 +30,14 @@ PINENTRY_DEPEND="|| ( app-crypt/pinentry[gnome-keyring] app-crypt/pinentry[gtk] COMMON_DEPEND=" >=app-crypt/gcr-3.4:= >=app-text/enchant-1.1.7 - >=dev-libs/glib-2.40:2[dbus] + >=dev-libs/glib-2.46:2[dbus] >=dev-libs/libxml2-2.7.3:2 >=gnome-base/gnome-desktop-2.91.3:3= >=gnome-base/gsettings-desktop-schemas-2.91.92 >=gnome-extra/evolution-data-server-3.20.3:=[gtk,weather?] >=media-libs/libcanberra-0.25[gtk3] >=net-libs/libsoup-2.42:2.4 - >=net-libs/webkit-gtk-2.2:3 + >=net-libs/webkit-gtk-2.13.90:4 >=x11-libs/cairo-1.9.15:=[glib] >=x11-libs/gdk-pixbuf-2.24:2 >=x11-libs/gtk+-3.10:3 @@ -55,14 +55,14 @@ COMMON_DEPEND=" >=app-crypt/gnupg-1.4 ${PINENTRY_DEPEND} x11-libs/libcryptui ) - map? ( + geolocation? ( >=media-libs/libchamplain-0.12:0.12[gtk] >=media-libs/clutter-1.0.0:1.0 >=media-libs/clutter-gtk-0.90:1.0 >=sci-geosciences/geocode-glib-3.10.0 x11-libs/mx:1.0 ) - spell? ( app-text/gtkspell:3 ) ldap? ( >=net-nds/openldap-2:= ) + spell? ( app-text/gtkspell:3 ) ssl? ( >=dev-libs/nspr-4.6.1:= >=dev-libs/nss-3.11:= ) @@ -70,14 +70,12 @@ COMMON_DEPEND=" " DEPEND="${COMMON_DEPEND} app-text/docbook-xml-dtd:4.1.2 - dev-util/gtk-doc-am + app-text/yelp-tools + >=dev-util/gtk-doc-am-1.14 >=dev-util/intltool-0.40.0 - dev-util/itstool + >=gnome-base/gnome-common-2.12 virtual/pkgconfig " -# eautoreconf needs: -# app-text/yelp-tools -# >=gnome-base/gnome-common-2.12 RDEPEND="${COMMON_DEPEND} bogofilter? ( mail-filter/bogofilter ) highlight? ( app-text/highlight ) @@ -108,7 +106,7 @@ src_configure() { --enable-canberra \ $(use_enable crypt libcryptui) \ $(use_enable highlight text-highlight) \ - $(use_enable map contact-maps) \ + $(use_enable geolocation contact-maps) \ $(use_enable spell gtkspell) \ $(use_enable ssl nss) \ $(use_enable ssl smime) \ diff --git a/media-fonts/hack/hack-2.020.ebuild b/media-fonts/hack/hack-2.020.ebuild index 8351fb4e05e9..62e2fc4cb34d 100644 --- a/media-fonts/hack/hack-2.020.ebuild +++ b/media-fonts/hack/hack-2.020.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/chrissimpkins/Hack/releases/download/v${PV}/Hack-v$( LICENSE="OFL-1.1" SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" +KEYWORDS="amd64 ~arm x86" IUSE="" RESTRICT="binchecks strip" diff --git a/metadata/dtd/timestamp.chk b/metadata/dtd/timestamp.chk index cbe6f4d35cd8..25c082ececa8 100644 --- a/metadata/dtd/timestamp.chk +++ b/metadata/dtd/timestamp.chk @@ -1 +1 @@ -Wed, 26 Oct 2016 05:40:31 +0000 +Wed, 26 Oct 2016 14:40:32 +0000 diff --git a/metadata/glsa/timestamp.chk b/metadata/glsa/timestamp.chk index cbe6f4d35cd8..25c082ececa8 100644 --- a/metadata/glsa/timestamp.chk +++ b/metadata/glsa/timestamp.chk @@ -1 +1 @@ -Wed, 26 Oct 2016 05:40:31 +0000 +Wed, 26 Oct 2016 14:40:32 +0000 diff --git a/metadata/md5-cache/app-admin/sshguard-1.6.4 b/metadata/md5-cache/app-admin/sshguard-1.6.4 deleted file mode 100644 index f02eeaf91aba..000000000000 --- a/metadata/md5-cache/app-admin/sshguard-1.6.4 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install prepare -DEPEND=kernel_linux? ( net-firewall/iptables ) kernel_FreeBSD? ( !ipfilter? ( sys-freebsd/freebsd-pf ) ) sys-devel/flex -DESCRIPTION=protects hosts from brute force attacks against ssh -EAPI=5 -HOMEPAGE=http://sshguard.sourceforge.net/ -IUSE=ipfilter kernel_FreeBSD kernel_linux -KEYWORDS=~amd64 ~x86 ~x86-fbsd -LICENSE=BSD -RDEPEND=kernel_linux? ( net-firewall/iptables ) kernel_FreeBSD? ( !ipfilter? ( sys-freebsd/freebsd-pf ) ) sys-apps/openrc virtual/logger -SLOT=0 -SRC_URI=mirror://sourceforge/sshguard/sshguard-1.6.4.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 -_md5_=eeddbc958d50084b28fa3f9fb2e62876 diff --git a/metadata/md5-cache/app-admin/sshguard-1.6.2 b/metadata/md5-cache/app-admin/sshguard-1.7.1 similarity index 86% rename from metadata/md5-cache/app-admin/sshguard-1.6.2 rename to metadata/md5-cache/app-admin/sshguard-1.7.1 index 38c37b50f22e..597bf541497b 100644 --- a/metadata/md5-cache/app-admin/sshguard-1.6.2 +++ b/metadata/md5-cache/app-admin/sshguard-1.7.1 @@ -1,13 +1,13 @@ DEFINED_PHASES=configure install prepare DEPEND=kernel_linux? ( net-firewall/iptables ) kernel_FreeBSD? ( !ipfilter? ( sys-freebsd/freebsd-pf ) ) sys-devel/flex DESCRIPTION=protects hosts from brute force attacks against ssh -EAPI=5 +EAPI=6 HOMEPAGE=http://sshguard.sourceforge.net/ IUSE=ipfilter kernel_FreeBSD kernel_linux KEYWORDS=~amd64 ~x86 ~x86-fbsd LICENSE=BSD RDEPEND=kernel_linux? ( net-firewall/iptables ) kernel_FreeBSD? ( !ipfilter? ( sys-freebsd/freebsd-pf ) ) sys-apps/openrc virtual/logger SLOT=0 -SRC_URI=mirror://sourceforge/sshguard/sshguard-1.6.2.tar.xz +SRC_URI=mirror://sourceforge/sshguard/sshguard-1.7.1.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 -_md5_=8d4da7678376f46a50c42782d78b97bd +_md5_=7497533df364ca743f01ec0d44a9e28b diff --git a/metadata/md5-cache/dev-libs/libclc-0.2.0_pre20160921 b/metadata/md5-cache/dev-libs/libclc-0.2.0_pre20160921 new file mode 100644 index 000000000000..5b10e80108f1 --- /dev/null +++ b/metadata/md5-cache/dev-libs/libclc-0.2.0_pre20160921 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure setup unpack +DEPEND=>=sys-devel/clang-3.9 >=sys-devel/llvm-3.9 || ( >=dev-lang/python-2.7.5-r2:2.7 ) +DESCRIPTION=OpenCL C library +EAPI=6 +HOMEPAGE=http://libclc.llvm.org/ +KEYWORDS=~amd64 ~ppc ~x86 +LICENSE=|| ( MIT BSD ) +RDEPEND=>=sys-devel/clang-3.9 >=sys-devel/llvm-3.9 +SLOT=0 +SRC_URI=https://github.com/llvm-mirror/libclc/archive/520743b0b72862a987ead6213dc1a5321a2010f9.tar.gz -> libclc-0.2.0_pre20160921.tar.gz +_eclasses_=multilib 165fc17c38d1b11dac2008280dab6e80 python-any-r1 1c20f9b800324335a8e3b137363362e8 python-utils-r1 1797277ea0e7cee5c7de7ce74cf8acd8 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 vcs-snapshot 2b65ecb2d0f91e4322c2ac8d673993bd +_md5_=13298b8b05266bec969426c0ac444881 diff --git a/metadata/md5-cache/dev-perl/DBD-mysql-4.37.0 b/metadata/md5-cache/dev-perl/DBD-mysql-4.37.0 index 47dc2c42f3f4..2ef44195d21c 100644 --- a/metadata/md5-cache/dev-perl/DBD-mysql-4.37.0 +++ b/metadata/md5-cache/dev-perl/DBD-mysql-4.37.0 @@ -4,11 +4,11 @@ DESCRIPTION=MySQL driver for the Perl5 Database Interface (DBI) EAPI=6 HOMEPAGE=http://search.cpan.org/dist/DBD-mysql/ IUSE=embedded test +ssl -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=>=dev-perl/DBI-1.609.0 virtual/libmysqlclient:= embedded? ( virtual/mysql[embedded] ) dev-lang/perl:= REQUIRED_USE=?? ( embedded ssl ) SLOT=0 SRC_URI=mirror://cpan/authors/id/M/MI/MICHIELB/DBD-mysql-4.037.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions aac50de73be0a80ebe780e0b20850130 perl-module c584f9e0fe426f3dcc2c46c6f7cb95ce toolchain-funcs 1b1da0c45c555989dc5d832b54880783 -_md5_=b87653839f2a4815a1e0defae454a22c +_md5_=47305dcc8dd2e09e966f58dd5de004c9 diff --git a/metadata/md5-cache/dev-python/pyparted-3.10.4 b/metadata/md5-cache/dev-python/pyparted-3.10.4 deleted file mode 100644 index 07e1d6ed7aba..000000000000 --- a/metadata/md5-cache/dev-python/pyparted-3.10.4 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=sys-block/parted-3.1 dev-python/decorator[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] test? ( dev-python/pychecker ) virtual/pkgconfig python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] -DESCRIPTION=Python bindings for sys-block/parted -EAPI=5 -HOMEPAGE=https://github.com/dcantrell/pyparted/ -IUSE=test python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 -KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 -LICENSE=GPL-2+ -RDEPEND=>=sys-block/parted-3.1 dev-python/decorator[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] -REQUIRED_USE=test? ( python_targets_python2_7 ) || ( python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 ) -SLOT=0 -SRC_URI=https://github.com/dcantrell/pyparted/archive/pyparted-3.10.4.tar.gz -_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 1797277ea0e7cee5c7de7ce74cf8acd8 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=3946f4413a0148fb8a9e4f5a2401cb6e diff --git a/metadata/md5-cache/dev-python/pyparted-3.10.7 b/metadata/md5-cache/dev-python/pyparted-3.10.7 new file mode 100644 index 000000000000..fabedd7d88eb --- /dev/null +++ b/metadata/md5-cache/dev-python/pyparted-3.10.7 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=sys-block/parted-3.1 dev-python/decorator[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] test? ( dev-python/pychecker ) virtual/pkgconfig python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +DESCRIPTION=Python bindings for sys-block/parted +EAPI=6 +HOMEPAGE=https://github.com/rhinstaller/pyparted/ +IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 +KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +LICENSE=GPL-2+ +RDEPEND=>=sys-block/parted-3.1 dev-python/decorator[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +REQUIRED_USE=test? ( python_targets_python2_7 ) || ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) +SLOT=0 +SRC_URI=https://github.com/rhinstaller/pyparted/archive/v3.10.7.tar.gz -> pyparted-3.10.7.tar.gz +_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 1797277ea0e7cee5c7de7ce74cf8acd8 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=cf5e7de377e22c33a0d1cff700f4e755 diff --git a/metadata/md5-cache/dev-ruby/uglifier-3.0.0 b/metadata/md5-cache/dev-ruby/uglifier-3.0.0 deleted file mode 100644 index 15e075ca6807..000000000000 --- a/metadata/md5-cache/dev-ruby/uglifier-3.0.0 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby20? ( >=dev-ruby/execjs-0.3.0:*[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/execjs-0.3.0:*[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/execjs-0.3.0:*[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/execjs-0.3.0:*[ruby_targets_ruby23] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/sourcemap[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/sourcemap[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/sourcemap[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/sourcemap[ruby_targets_ruby23] ) ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby20? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby23] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby23] ) ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) test? ( ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ) -DESCRIPTION=Ruby wrapper for UglifyJS JavaScript compressor -EAPI=5 -HOMEPAGE=https://github.com/lautis/uglifier -IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 doc test test -KEYWORDS=~amd64 ~arm ~amd64-linux -LICENSE=MIT -RDEPEND=ruby_targets_ruby20? ( >=dev-ruby/execjs-0.3.0:*[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/execjs-0.3.0:*[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/execjs-0.3.0:*[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/execjs-0.3.0:*[ruby_targets_ruby23] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) -REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ) -SLOT=3 -SRC_URI=mirror://rubygems/uglifier-3.0.0.gem -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=35af6b6df5947683b0b608f0f9b15bfa diff --git a/metadata/md5-cache/dev-ruby/uglifier-3.0.1 b/metadata/md5-cache/dev-ruby/uglifier-3.0.3 similarity index 96% rename from metadata/md5-cache/dev-ruby/uglifier-3.0.1 rename to metadata/md5-cache/dev-ruby/uglifier-3.0.3 index 541fd39b7a86..9fe692b98421 100644 --- a/metadata/md5-cache/dev-ruby/uglifier-3.0.1 +++ b/metadata/md5-cache/dev-ruby/uglifier-3.0.3 @@ -9,6 +9,6 @@ LICENSE=MIT RDEPEND=ruby_targets_ruby20? ( >=dev-ruby/execjs-0.3.0:*[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/execjs-0.3.0:*[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/execjs-0.3.0:*[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/execjs-0.3.0:*[ruby_targets_ruby23] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ) SLOT=3 -SRC_URI=mirror://rubygems/uglifier-3.0.1.gem +SRC_URI=https://github.com/lautis/uglifier/archive/v3.0.3.tar.gz -> uglifier-3.0.3.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=35af6b6df5947683b0b608f0f9b15bfa +_md5_=d39ff5177cd822f05af43799209e98ec diff --git a/metadata/md5-cache/games-puzzle/atomix-3.22.0 b/metadata/md5-cache/games-puzzle/atomix-3.22.0 new file mode 100644 index 000000000000..2d49129faa4c --- /dev/null +++ b/metadata/md5-cache/games-puzzle/atomix-3.22.0 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare +DEPEND=>=dev-libs/glib-2.36:2 >=x11-libs/gdk-pixbuf-2.0.5:2 >=x11-libs/gtk+-3.10:3 dev-libs/appstream-glib >=dev-util/intltool-0.40 sys-devel/gettext virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=Build molecules, from simple inorganic to extremely complex organic ones +EAPI=6 +HOMEPAGE=http://ftp.gnome.org/pub/GNOME/sources/atomix/ +KEYWORDS=~amd64 ~ppc ~x86 +LICENSE=GPL-2 +RDEPEND=>=dev-libs/glib-2.36:2 >=x11-libs/gdk-pixbuf-2.0.5:2 >=x11-libs/gtk+-3.10:3 +SLOT=0 +SRC_URI=mirror://gnome/sources/atomix/3.22/atomix-3.22.0.tar.xz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 gnome.org ad34f378a3d57a6f2f2b8b4aaca4543e gnome2 21c81ea94c12e45a63f7f14fba666e3d gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=90ce473943a30ea7c24aec98438979fd diff --git a/metadata/md5-cache/gnome-extra/evolution-data-server-3.18.5 b/metadata/md5-cache/gnome-extra/evolution-data-server-3.18.5 deleted file mode 100644 index b89f7d829c55..000000000000 --- a/metadata/md5-cache/gnome-extra/evolution-data-server-3.18.5 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=app-crypt/gcr-3.4 >=app-crypt/libsecret-0.5[crypt] >=dev-db/sqlite-3.7.17:= >=dev-libs/glib-2.40:2 >=dev-libs/libgdata-0.10:= >=dev-libs/libical-0.43:= >=net-libs/libsoup-2.42:2.4 >=dev-libs/libxml2-2 >=dev-libs/nspr-4.4:= >=dev-libs/nss-3.9:= dev-libs/icu:= sys-libs/zlib:= virtual/libiconv berkdb? ( >=sys-libs/db-4:= ) gtk? ( >=app-crypt/gcr-3.4[gtk] >=x11-libs/gtk+-3.10:3 ) gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.8 ) introspection? ( >=dev-libs/gobject-introspection-0.9.12:= ) kerberos? ( virtual/krb5:= ) ldap? ( >=net-nds/openldap-2:= ) weather? ( >=dev-libs/libgweather-3.10:2= ) || ( dev-lang/python:3.5 dev-lang/python:3.4 >=dev-lang/python-2.7.5-r2:2.7 virtual/pypy:0 ) dev-util/gdbus-codegen dev-util/gperf >=dev-util/gtk-doc-am-1.14 >=dev-util/intltool-0.35.5 >=sys-devel/gettext-0.17 virtual/pkgconfig vala? ( || ( dev-lang/vala:0.32[vapigen(+)] dev-lang/vala:0.30[vapigen(+)] dev-lang/vala:0.28[vapigen(+)] dev-lang/vala:0.26[vapigen(+)] ) ) app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) -DESCRIPTION=Evolution groupware backend -EAPI=5 -HOMEPAGE=https://wiki.gnome.org/Apps/Evolution -IUSE=api-doc-extras +berkdb +gnome-online-accounts +gtk +introspection ipv6 ldap kerberos vala +weather test -KEYWORDS=~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-solaris -LICENSE=|| ( LGPL-2 LGPL-3 ) BSD Sleepycat -RDEPEND=>=app-crypt/gcr-3.4 >=app-crypt/libsecret-0.5[crypt] >=dev-db/sqlite-3.7.17:= >=dev-libs/glib-2.40:2 >=dev-libs/libgdata-0.10:= >=dev-libs/libical-0.43:= >=net-libs/libsoup-2.42:2.4 >=dev-libs/libxml2-2 >=dev-libs/nspr-4.4:= >=dev-libs/nss-3.9:= dev-libs/icu:= sys-libs/zlib:= virtual/libiconv berkdb? ( >=sys-libs/db-4:= ) gtk? ( >=app-crypt/gcr-3.4[gtk] >=x11-libs/gtk+-3.10:3 ) gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.8 ) introspection? ( >=dev-libs/gobject-introspection-0.9.12:= ) kerberos? ( virtual/krb5:= ) ldap? ( >=net-nds/openldap-2:= ) weather? ( >=dev-libs/libgweather-3.10:2= ) -REQUIRED_USE=vala? ( introspection ) -RESTRICT=test -SLOT=0/54 -SRC_URI=mirror://gnome/sources/evolution-data-server/3.18/evolution-data-server-3.18.5.tar.xz -_eclasses_=db-use a4966c7f4f7df444ead1212848c13cc9 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome.org ad34f378a3d57a6f2f2b8b4aaca4543e gnome2 21c81ea94c12e45a63f7f14fba666e3d gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 python-any-r1 1c20f9b800324335a8e3b137363362e8 python-utils-r1 1797277ea0e7cee5c7de7ce74cf8acd8 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 vala 764817a25b405b65269d8619e203a52f versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=5d7036f3a5d099f5cbb6f0c108acd1ce diff --git a/metadata/md5-cache/gnome-extra/evolution-data-server-3.20.4 b/metadata/md5-cache/gnome-extra/evolution-data-server-3.20.4 deleted file mode 100644 index ee740cc5da0e..000000000000 --- a/metadata/md5-cache/gnome-extra/evolution-data-server-3.20.4 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test -DEPEND=>=app-crypt/gcr-3.4 >=app-crypt/libsecret-0.5[crypt] >=dev-db/sqlite-3.7.17:= >=dev-libs/glib-2.40:2 >=dev-libs/libgdata-0.10:= >=dev-libs/libical-0.43:= >=dev-libs/libxml2-2 >=dev-libs/nspr-4.4:= >=dev-libs/nss-3.9:= >=net-libs/libsoup-2.42:2.4 dev-libs/icu:= sys-libs/zlib:= virtual/libiconv berkdb? ( >=sys-libs/db-4:= ) gtk? ( >=app-crypt/gcr-3.4[gtk] >=x11-libs/gtk+-3.10:3 ) google? ( >=dev-libs/json-glib-1.0.4 >=dev-libs/libgdata-0.15.1:= >=net-libs/webkit-gtk-2.4.9:3 ) gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.8:= ) introspection? ( >=dev-libs/gobject-introspection-0.9.12:= ) kerberos? ( virtual/krb5:= ) ldap? ( >=net-nds/openldap-2:= ) weather? ( >=dev-libs/libgweather-3.10:2= ) || ( dev-lang/python:3.5 dev-lang/python:3.4 >=dev-lang/python-2.7.5-r2:2.7 virtual/pypy:0 ) dev-util/gdbus-codegen dev-util/gperf >=dev-util/gtk-doc-am-1.14 >=dev-util/intltool-0.35.5 >=sys-devel/gettext-0.17 virtual/pkgconfig vala? ( || ( dev-lang/vala:0.32[vapigen(+)] dev-lang/vala:0.30[vapigen(+)] dev-lang/vala:0.28[vapigen(+)] dev-lang/vala:0.26[vapigen(+)] ) ) app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) -DESCRIPTION=Evolution groupware backend -EAPI=6 -HOMEPAGE=https://wiki.gnome.org/Apps/Evolution -IUSE=api-doc-extras +berkdb +gnome-online-accounts +gtk google +introspection ipv6 ldap kerberos vala +weather test -KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-solaris -LICENSE=|| ( LGPL-2 LGPL-3 ) BSD Sleepycat -RDEPEND=>=app-crypt/gcr-3.4 >=app-crypt/libsecret-0.5[crypt] >=dev-db/sqlite-3.7.17:= >=dev-libs/glib-2.40:2 >=dev-libs/libgdata-0.10:= >=dev-libs/libical-0.43:= >=dev-libs/libxml2-2 >=dev-libs/nspr-4.4:= >=dev-libs/nss-3.9:= >=net-libs/libsoup-2.42:2.4 dev-libs/icu:= sys-libs/zlib:= virtual/libiconv berkdb? ( >=sys-libs/db-4:= ) gtk? ( >=app-crypt/gcr-3.4[gtk] >=x11-libs/gtk+-3.10:3 ) google? ( >=dev-libs/json-glib-1.0.4 >=dev-libs/libgdata-0.15.1:= >=net-libs/webkit-gtk-2.4.9:3 ) gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.8:= ) introspection? ( >=dev-libs/gobject-introspection-0.9.12:= ) kerberos? ( virtual/krb5:= ) ldap? ( >=net-nds/openldap-2:= ) weather? ( >=dev-libs/libgweather-3.10:2= ) -REQUIRED_USE=vala? ( introspection ) -RESTRICT=test -SLOT=0/57 -SRC_URI=mirror://gnome/sources/evolution-data-server/3.20/evolution-data-server-3.20.4.tar.xz -_eclasses_=db-use a4966c7f4f7df444ead1212848c13cc9 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome.org ad34f378a3d57a6f2f2b8b4aaca4543e gnome2 21c81ea94c12e45a63f7f14fba666e3d gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 python-any-r1 1c20f9b800324335a8e3b137363362e8 python-utils-r1 1797277ea0e7cee5c7de7ce74cf8acd8 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 vala 764817a25b405b65269d8619e203a52f versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=32621d0589f149fb166743dfa6cee28f diff --git a/metadata/md5-cache/gnome-extra/evolution-data-server-3.22.1 b/metadata/md5-cache/gnome-extra/evolution-data-server-3.22.1 new file mode 100644 index 000000000000..0317f1e4d690 --- /dev/null +++ b/metadata/md5-cache/gnome-extra/evolution-data-server-3.22.1 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test +DEPEND=>=app-crypt/gcr-3.4 >=app-crypt/libsecret-0.5[crypt] >=dev-db/sqlite-3.7.17:= >=dev-libs/glib-2.46:2 >=dev-libs/libgdata-0.10:= >=dev-libs/libical-0.43:= >=dev-libs/libxml2-2 >=dev-libs/nspr-4.4:= >=dev-libs/nss-3.9:= >=net-libs/libsoup-2.42:2.4 dev-libs/icu:= sys-libs/zlib:= virtual/libiconv berkdb? ( >=sys-libs/db-4:= ) gtk? ( >=app-crypt/gcr-3.4[gtk] >=x11-libs/gtk+-3.10:3 ) google? ( >=dev-libs/json-glib-1.0.4 >=dev-libs/libgdata-0.15.1:= >=net-libs/webkit-gtk-2.11.91:4 ) gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.8:= ) introspection? ( >=dev-libs/gobject-introspection-0.9.12:= ) kerberos? ( virtual/krb5:= ) ldap? ( >=net-nds/openldap-2:= ) weather? ( >=dev-libs/libgweather-3.10:2= ) || ( dev-lang/python:3.5 dev-lang/python:3.4 >=dev-lang/python-2.7.5-r2:2.7 virtual/pypy:0 ) dev-util/gdbus-codegen dev-util/gperf >=dev-util/gtk-doc-am-1.14 >=dev-util/intltool-0.35.5 >=gnome-base/gnome-common-2 >=sys-devel/gettext-0.17 virtual/pkgconfig vala? ( || ( dev-lang/vala:0.32[vapigen(+)] dev-lang/vala:0.30[vapigen(+)] dev-lang/vala:0.28[vapigen(+)] dev-lang/vala:0.26[vapigen(+)] ) ) app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info virtual/pkgconfig test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) +DESCRIPTION=Evolution groupware backend +EAPI=6 +HOMEPAGE=https://wiki.gnome.org/Apps/Evolution +IUSE=api-doc-extras berkdb +gnome-online-accounts +gtk google +introspection ipv6 ldap kerberos vala +weather test +KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-solaris +LICENSE=|| ( LGPL-2 LGPL-3 ) BSD Sleepycat +RDEPEND=>=app-crypt/gcr-3.4 >=app-crypt/libsecret-0.5[crypt] >=dev-db/sqlite-3.7.17:= >=dev-libs/glib-2.46:2 >=dev-libs/libgdata-0.10:= >=dev-libs/libical-0.43:= >=dev-libs/libxml2-2 >=dev-libs/nspr-4.4:= >=dev-libs/nss-3.9:= >=net-libs/libsoup-2.42:2.4 dev-libs/icu:= sys-libs/zlib:= virtual/libiconv berkdb? ( >=sys-libs/db-4:= ) gtk? ( >=app-crypt/gcr-3.4[gtk] >=x11-libs/gtk+-3.10:3 ) google? ( >=dev-libs/json-glib-1.0.4 >=dev-libs/libgdata-0.15.1:= >=net-libs/webkit-gtk-2.11.91:4 ) gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.8:= ) introspection? ( >=dev-libs/gobject-introspection-0.9.12:= ) kerberos? ( virtual/krb5:= ) ldap? ( >=net-nds/openldap-2:= ) weather? ( >=dev-libs/libgweather-3.10:2= ) +REQUIRED_USE=vala? ( introspection ) +RESTRICT=test +SLOT=0/59 +SRC_URI=mirror://gnome/sources/evolution-data-server/3.22/evolution-data-server-3.22.1.tar.xz +_eclasses_=db-use a4966c7f4f7df444ead1212848c13cc9 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome.org ad34f378a3d57a6f2f2b8b4aaca4543e gnome2 21c81ea94c12e45a63f7f14fba666e3d gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 python-any-r1 1c20f9b800324335a8e3b137363362e8 python-utils-r1 1797277ea0e7cee5c7de7ce74cf8acd8 systemd 5b6ca8b2fc1307ca593223f327342c96 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 vala 764817a25b405b65269d8619e203a52f versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=3e78b11cdd1abf1b9f3918868ad2304a diff --git a/metadata/md5-cache/gnome-extra/evolution-ews-3.18.5 b/metadata/md5-cache/gnome-extra/evolution-ews-3.18.5 deleted file mode 100644 index bfdde4f62809..000000000000 --- a/metadata/md5-cache/gnome-extra/evolution-ews-3.18.5 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare unpack -DEPEND=dev-db/sqlite:3= >=dev-libs/glib-2.40:2 dev-libs/libical:0= >=dev-libs/libxml2-2 >=gnome-extra/evolution-data-server-3.18.5:0= >=mail-client/evolution-3.18.5:2.0 >=net-libs/libsoup-2.42:2.4 >=x11-libs/gtk+-3:3 >=dev-util/gtk-doc-am-1.9 >=dev-util/intltool-0.35.5 virtual/pkgconfig test? ( net-libs/uhttpmock ) app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=Evolution module for connecting to Microsoft Exchange Web Services -EAPI=5 -HOMEPAGE=https://wiki.gnome.org/Apps/Evolution -IUSE=test -KEYWORDS=amd64 x86 -LICENSE=LGPL-2.1 -RDEPEND=dev-db/sqlite:3= >=dev-libs/glib-2.40:2 dev-libs/libical:0= >=dev-libs/libxml2-2 >=gnome-extra/evolution-data-server-3.18.5:0= >=mail-client/evolution-3.18.5:2.0 >=net-libs/libsoup-2.42:2.4 >=x11-libs/gtk+-3:3 -SLOT=0 -SRC_URI=mirror://gnome/sources/evolution-ews/3.18/evolution-ews-3.18.5.tar.xz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 gnome.org ad34f378a3d57a6f2f2b8b4aaca4543e gnome2 21c81ea94c12e45a63f7f14fba666e3d gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=414ad9154288dee0b5b83161138fe96f diff --git a/metadata/md5-cache/gnome-extra/evolution-ews-3.20.4 b/metadata/md5-cache/gnome-extra/evolution-ews-3.22.1 similarity index 81% rename from metadata/md5-cache/gnome-extra/evolution-ews-3.20.4 rename to metadata/md5-cache/gnome-extra/evolution-ews-3.22.1 index 6adf078d946b..2026cc787e1a 100644 --- a/metadata/md5-cache/gnome-extra/evolution-ews-3.20.4 +++ b/metadata/md5-cache/gnome-extra/evolution-ews-3.22.1 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare -DEPEND=dev-db/sqlite:3= >=dev-libs/glib-2.40:2 dev-libs/libical:0= >=dev-libs/libxml2-2 >=gnome-extra/evolution-data-server-3.20.4:0= >=mail-client/evolution-3.20.4:2.0 >=net-libs/libsoup-2.42:2.4 >=x11-libs/gtk+-3:3 >=dev-util/gtk-doc-am-1.9 >=dev-util/intltool-0.35.5 virtual/pkgconfig test? ( net-libs/uhttpmock ) app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info +DEPEND=dev-db/sqlite:3= >=dev-libs/glib-2.40:2 dev-libs/libical:0= >=dev-libs/libxml2-2 >=gnome-extra/evolution-data-server-3.22.1:0= >=mail-client/evolution-3.22.1:2.0 >=net-libs/libsoup-2.42:2.4 >=x11-libs/gtk+-3:3 >=dev-util/gtk-doc-am-1.9 >=dev-util/intltool-0.35.5 virtual/pkgconfig test? ( net-libs/uhttpmock ) app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info DESCRIPTION=Evolution module for connecting to Microsoft Exchange Web Services EAPI=6 HOMEPAGE=https://wiki.gnome.org/Apps/Evolution IUSE=test KEYWORDS=~amd64 ~x86 LICENSE=LGPL-2.1 -RDEPEND=dev-db/sqlite:3= >=dev-libs/glib-2.40:2 dev-libs/libical:0= >=dev-libs/libxml2-2 >=gnome-extra/evolution-data-server-3.20.4:0= >=mail-client/evolution-3.20.4:2.0 >=net-libs/libsoup-2.42:2.4 >=x11-libs/gtk+-3:3 +RDEPEND=dev-db/sqlite:3= >=dev-libs/glib-2.40:2 dev-libs/libical:0= >=dev-libs/libxml2-2 >=gnome-extra/evolution-data-server-3.22.1:0= >=mail-client/evolution-3.22.1:2.0 >=net-libs/libsoup-2.42:2.4 >=x11-libs/gtk+-3:3 SLOT=0 -SRC_URI=mirror://gnome/sources/evolution-ews/3.20/evolution-ews-3.20.4.tar.xz +SRC_URI=mirror://gnome/sources/evolution-ews/3.22/evolution-ews-3.22.1.tar.xz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 gnome.org ad34f378a3d57a6f2f2b8b4aaca4543e gnome2 21c81ea94c12e45a63f7f14fba666e3d gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 _md5_=bd2f696a3a106588b0f3dbc516aa9f77 diff --git a/metadata/md5-cache/kde-apps/kdeartwork-emoticons-15.08.3 b/metadata/md5-cache/kde-apps/kdeartwork-emoticons-15.08.3 deleted file mode 100644 index f5cfd3a4a38c..000000000000 --- a/metadata/md5-cache/kde-apps/kdeartwork-emoticons-15.08.3 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] -DESCRIPTION=EmotIcons (icons for things like smilies :-) for kde -EAPI=5 -HOMEPAGE=https://www.kde.org/ -IUSE=aqua -KEYWORDS=amd64 ~arm x86 -LICENSE=GPL-2 -RDEPEND=!kde-base/kdeartwork-emoticons:4 kde-frameworks/oxygen-icons dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] -RESTRICT=binchecks strip -SLOT=4/15.08 -SRC_URI=mirror://kde/stable/applications/15.08.3/src/kdeartwork-15.08.3.tar.xz -_eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde4-base dd93ab23a8421a2802d4c139cd30a3c0 kde4-functions 8a4cfd7f1a927a64f5dbcc8f3277ec51 kde4-meta cc1175ba18c9391fbc67922aecead7da multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=1a840c8cc55a25cd9090a17d7266fbb7 diff --git a/metadata/md5-cache/kde-misc/colord-kde-0.5.0 b/metadata/md5-cache/kde-misc/colord-kde-0.5.0 new file mode 100644 index 000000000000..d59f1080a3ec --- /dev/null +++ b/metadata/md5-cache/kde-misc/colord-kde-0.5.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack +DEPEND=>=kde-frameworks/kcmutils-5.23.0:5 >=kde-frameworks/kconfigwidgets-5.23.0:5 >=kde-frameworks/kcoreaddons-5.23.0:5 >=kde-frameworks/kdbusaddons-5.23.0:5 >=kde-frameworks/ki18n-5.23.0:5 >=kde-frameworks/kservice-5.23.0:5 >=kde-frameworks/kwidgetsaddons-5.23.0:5 >=dev-qt/qtdbus-5.6.1:5 >=dev-qt/qtgui-5.6.1:5 >=dev-qt/qtwidgets-5.6.1:5 >=dev-qt/qtx11extras-5.6.1:5 media-libs/lcms:2 x11-libs/libxcb x11-libs/libX11 x11-libs/libXrandr >=kde-frameworks/kwindowsystem-5.23.0:5 sys-devel/make >=dev-util/cmake-2.8.12 >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info >=kde-frameworks/extra-cmake-modules-5.23.0:5 >=dev-qt/qtcore-5.6.1:5 dev-util/desktop-file-utils app-arch/xz-utils +DESCRIPTION=Provides interfaces and session daemon to colord +EAPI=6 +HOMEPAGE=http://projects.kde.org/projects/playground/graphics/colord-kde +IUSE=debug +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2+ +RDEPEND=>=kde-frameworks/kcmutils-5.23.0:5 >=kde-frameworks/kconfigwidgets-5.23.0:5 >=kde-frameworks/kcoreaddons-5.23.0:5 >=kde-frameworks/kdbusaddons-5.23.0:5 >=kde-frameworks/ki18n-5.23.0:5 >=kde-frameworks/kservice-5.23.0:5 >=kde-frameworks/kwidgetsaddons-5.23.0:5 >=dev-qt/qtdbus-5.6.1:5 >=dev-qt/qtgui-5.6.1:5 >=dev-qt/qtwidgets-5.6.1:5 >=dev-qt/qtx11extras-5.6.1:5 media-libs/lcms:2 x11-libs/libxcb x11-libs/libX11 x11-libs/libXrandr >=kde-plasma/kde-cli-tools-5.4.1:5 x11-misc/colord >=kde-frameworks/kf-env-3 >=dev-qt/qtcore-5.6.1:5 +SLOT=5 +SRC_URI=mirror://kde/stable/colord-kde/0.5.0/src/colord-kde-0.5.0.tar.xz +_eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde5 096d27672c1010f7ae84e5ad0f0f4193 kde5-functions 59d60b16fb2817a6e0eddda11a6c31e4 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=f381e0203d66c3a641069554dfb233d2 diff --git a/metadata/md5-cache/mail-client/evolution-3.18.5.2 b/metadata/md5-cache/mail-client/evolution-3.18.5.2 deleted file mode 100644 index 1fc1ef8e0f42..000000000000 --- a/metadata/md5-cache/mail-client/evolution-3.18.5.2 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare unpack -DEPEND=>=app-crypt/gcr-3.4 >=app-text/enchant-1.1.7 >=dev-libs/glib-2.40:2[dbus] >=dev-libs/libxml2-2.7.3:2 >=gnome-base/gnome-desktop-2.91.3:3= >=gnome-base/gsettings-desktop-schemas-2.91.92 >=gnome-extra/evolution-data-server-3.18.2:=[gtk,weather?] >=media-libs/libcanberra-0.25[gtk3] >=net-libs/libsoup-2.42:2.4 >=net-libs/webkit-gtk-2.2:3 >=x11-libs/cairo-1.9.15:=[glib] >=x11-libs/gdk-pixbuf-2.24:2 >=x11-libs/gtk+-3.10:3 >=x11-libs/libnotify-0.7:= >=x11-misc/shared-mime-info-0.22 >=app-text/iso-codes-0.49 dev-libs/atk gnome-base/dconf dev-libs/libical:= x11-libs/libSM x11-libs/libICE crypt? ( >=app-crypt/gnupg-1.4 || ( app-crypt/pinentry[gnome-keyring] app-crypt/pinentry[gtk] app-crypt/pinentry[qt4] ) x11-libs/libcryptui ) map? ( >=media-libs/libchamplain-0.12:0.12[gtk] >=media-libs/clutter-1.0.0:1.0 >=media-libs/clutter-gtk-0.90:1.0 >=sci-geosciences/geocode-glib-3.10.0 x11-libs/mx:1.0 ) spell? ( app-text/gtkspell:3 ) ldap? ( >=net-nds/openldap-2:= ) ssl? ( >=dev-libs/nspr-4.6.1:= >=dev-libs/nss-3.11:= ) weather? ( >=dev-libs/libgweather-3.10:2= ) app-text/docbook-xml-dtd:4.1.2 dev-util/gtk-doc-am >=dev-util/intltool-0.40.0 dev-util/itstool virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=Integrated mail, addressbook and calendaring functionality -EAPI=5 -HOMEPAGE=https://wiki.gnome.org/Apps/Evolution -IUSE=+bogofilter crypt highlight ldap map spamassassin spell ssl +weather -KEYWORDS=~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 x86 ~x86-fbsd -LICENSE=|| ( LGPL-2 LGPL-3 ) CC-BY-SA-3.0 FDL-1.3+ OPENLDAP -RDEPEND=>=app-crypt/gcr-3.4 >=app-text/enchant-1.1.7 >=dev-libs/glib-2.40:2[dbus] >=dev-libs/libxml2-2.7.3:2 >=gnome-base/gnome-desktop-2.91.3:3= >=gnome-base/gsettings-desktop-schemas-2.91.92 >=gnome-extra/evolution-data-server-3.18.2:=[gtk,weather?] >=media-libs/libcanberra-0.25[gtk3] >=net-libs/libsoup-2.42:2.4 >=net-libs/webkit-gtk-2.2:3 >=x11-libs/cairo-1.9.15:=[glib] >=x11-libs/gdk-pixbuf-2.24:2 >=x11-libs/gtk+-3.10:3 >=x11-libs/libnotify-0.7:= >=x11-misc/shared-mime-info-0.22 >=app-text/iso-codes-0.49 dev-libs/atk gnome-base/dconf dev-libs/libical:= x11-libs/libSM x11-libs/libICE crypt? ( >=app-crypt/gnupg-1.4 || ( app-crypt/pinentry[gnome-keyring] app-crypt/pinentry[gtk] app-crypt/pinentry[qt4] ) x11-libs/libcryptui ) map? ( >=media-libs/libchamplain-0.12:0.12[gtk] >=media-libs/clutter-1.0.0:1.0 >=media-libs/clutter-gtk-0.90:1.0 >=sci-geosciences/geocode-glib-3.10.0 x11-libs/mx:1.0 ) spell? ( app-text/gtkspell:3 ) ldap? ( >=net-nds/openldap-2:= ) ssl? ( >=dev-libs/nspr-4.6.1:= >=dev-libs/nss-3.11:= ) weather? ( >=dev-libs/libgweather-3.10:2= ) bogofilter? ( mail-filter/bogofilter ) highlight? ( app-text/highlight ) spamassassin? ( mail-filter/spamassassin ) !gnome-extra/evolution-exchange -SLOT=2.0 -SRC_URI=mirror://gnome/sources/evolution/3.18/evolution-3.18.5.2.tar.xz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome.org ad34f378a3d57a6f2f2b8b4aaca4543e gnome2 21c81ea94c12e45a63f7f14fba666e3d gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 readme.gentoo-r1 03878c06495db70bc36bd717383c09f7 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=244e80501b60a4284dbe62140a2d80e6 diff --git a/metadata/md5-cache/mail-client/evolution-3.20.4 b/metadata/md5-cache/mail-client/evolution-3.20.4 deleted file mode 100644 index 905395426dce..000000000000 --- a/metadata/md5-cache/mail-client/evolution-3.20.4 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare -DEPEND=>=app-crypt/gcr-3.4:= >=app-text/enchant-1.1.7 >=dev-libs/glib-2.40:2[dbus] >=dev-libs/libxml2-2.7.3:2 >=gnome-base/gnome-desktop-2.91.3:3= >=gnome-base/gsettings-desktop-schemas-2.91.92 >=gnome-extra/evolution-data-server-3.20.3:=[gtk,weather?] >=media-libs/libcanberra-0.25[gtk3] >=net-libs/libsoup-2.42:2.4 >=net-libs/webkit-gtk-2.2:3 >=x11-libs/cairo-1.9.15:=[glib] >=x11-libs/gdk-pixbuf-2.24:2 >=x11-libs/gtk+-3.10:3 >=x11-libs/libnotify-0.7:= >=x11-misc/shared-mime-info-0.22 >=app-text/iso-codes-0.49 dev-libs/atk gnome-base/dconf dev-libs/libical:= x11-libs/libSM x11-libs/libICE crypt? ( >=app-crypt/gnupg-1.4 || ( app-crypt/pinentry[gnome-keyring] app-crypt/pinentry[gtk] app-crypt/pinentry[qt4] ) x11-libs/libcryptui ) map? ( >=media-libs/libchamplain-0.12:0.12[gtk] >=media-libs/clutter-1.0.0:1.0 >=media-libs/clutter-gtk-0.90:1.0 >=sci-geosciences/geocode-glib-3.10.0 x11-libs/mx:1.0 ) spell? ( app-text/gtkspell:3 ) ldap? ( >=net-nds/openldap-2:= ) ssl? ( >=dev-libs/nspr-4.6.1:= >=dev-libs/nss-3.11:= ) weather? ( >=dev-libs/libgweather-3.10:2= ) app-text/docbook-xml-dtd:4.1.2 dev-util/gtk-doc-am >=dev-util/intltool-0.40.0 dev-util/itstool virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=Integrated mail, addressbook and calendaring functionality -EAPI=6 -HOMEPAGE=https://wiki.gnome.org/Apps/Evolution -IUSE=+bogofilter crypt highlight ldap map spamassassin spell ssl +weather -KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd -LICENSE=|| ( LGPL-2 LGPL-3 ) CC-BY-SA-3.0 FDL-1.3+ OPENLDAP -RDEPEND=>=app-crypt/gcr-3.4:= >=app-text/enchant-1.1.7 >=dev-libs/glib-2.40:2[dbus] >=dev-libs/libxml2-2.7.3:2 >=gnome-base/gnome-desktop-2.91.3:3= >=gnome-base/gsettings-desktop-schemas-2.91.92 >=gnome-extra/evolution-data-server-3.20.3:=[gtk,weather?] >=media-libs/libcanberra-0.25[gtk3] >=net-libs/libsoup-2.42:2.4 >=net-libs/webkit-gtk-2.2:3 >=x11-libs/cairo-1.9.15:=[glib] >=x11-libs/gdk-pixbuf-2.24:2 >=x11-libs/gtk+-3.10:3 >=x11-libs/libnotify-0.7:= >=x11-misc/shared-mime-info-0.22 >=app-text/iso-codes-0.49 dev-libs/atk gnome-base/dconf dev-libs/libical:= x11-libs/libSM x11-libs/libICE crypt? ( >=app-crypt/gnupg-1.4 || ( app-crypt/pinentry[gnome-keyring] app-crypt/pinentry[gtk] app-crypt/pinentry[qt4] ) x11-libs/libcryptui ) map? ( >=media-libs/libchamplain-0.12:0.12[gtk] >=media-libs/clutter-1.0.0:1.0 >=media-libs/clutter-gtk-0.90:1.0 >=sci-geosciences/geocode-glib-3.10.0 x11-libs/mx:1.0 ) spell? ( app-text/gtkspell:3 ) ldap? ( >=net-nds/openldap-2:= ) ssl? ( >=dev-libs/nspr-4.6.1:= >=dev-libs/nss-3.11:= ) weather? ( >=dev-libs/libgweather-3.10:2= ) bogofilter? ( mail-filter/bogofilter ) highlight? ( app-text/highlight ) spamassassin? ( mail-filter/spamassassin ) !gnome-extra/evolution-exchange -SLOT=2.0 -SRC_URI=mirror://gnome/sources/evolution/3.20/evolution-3.20.4.tar.xz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome.org ad34f378a3d57a6f2f2b8b4aaca4543e gnome2 21c81ea94c12e45a63f7f14fba666e3d gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 readme.gentoo-r1 03878c06495db70bc36bd717383c09f7 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=543327849615877764c6ee57132c7172 diff --git a/metadata/md5-cache/mail-client/evolution-3.22.1 b/metadata/md5-cache/mail-client/evolution-3.22.1 new file mode 100644 index 000000000000..af52834e2382 --- /dev/null +++ b/metadata/md5-cache/mail-client/evolution-3.22.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare +DEPEND=>=app-crypt/gcr-3.4:= >=app-text/enchant-1.1.7 >=dev-libs/glib-2.46:2[dbus] >=dev-libs/libxml2-2.7.3:2 >=gnome-base/gnome-desktop-2.91.3:3= >=gnome-base/gsettings-desktop-schemas-2.91.92 >=gnome-extra/evolution-data-server-3.20.3:=[gtk,weather?] >=media-libs/libcanberra-0.25[gtk3] >=net-libs/libsoup-2.42:2.4 >=net-libs/webkit-gtk-2.13.90:4 >=x11-libs/cairo-1.9.15:=[glib] >=x11-libs/gdk-pixbuf-2.24:2 >=x11-libs/gtk+-3.10:3 >=x11-libs/libnotify-0.7:= >=x11-misc/shared-mime-info-0.22 >=app-text/iso-codes-0.49 dev-libs/atk gnome-base/dconf dev-libs/libical:= x11-libs/libSM x11-libs/libICE crypt? ( >=app-crypt/gnupg-1.4 || ( app-crypt/pinentry[gnome-keyring] app-crypt/pinentry[gtk] app-crypt/pinentry[qt4] app-crypt/pinentry[qt5] ) x11-libs/libcryptui ) geolocation? ( >=media-libs/libchamplain-0.12:0.12[gtk] >=media-libs/clutter-1.0.0:1.0 >=media-libs/clutter-gtk-0.90:1.0 >=sci-geosciences/geocode-glib-3.10.0 x11-libs/mx:1.0 ) ldap? ( >=net-nds/openldap-2:= ) spell? ( app-text/gtkspell:3 ) ssl? ( >=dev-libs/nspr-4.6.1:= >=dev-libs/nss-3.11:= ) weather? ( >=dev-libs/libgweather-3.10:2= ) app-text/docbook-xml-dtd:4.1.2 app-text/yelp-tools >=dev-util/gtk-doc-am-1.14 >=dev-util/intltool-0.40.0 >=gnome-base/gnome-common-2.12 virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=Integrated mail, addressbook and calendaring functionality +EAPI=6 +HOMEPAGE=https://wiki.gnome.org/Apps/Evolution +IUSE=+bogofilter crypt geolocation highlight ldap spamassassin spell ssl +weather +KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd +LICENSE=|| ( LGPL-2 LGPL-3 ) CC-BY-SA-3.0 FDL-1.3+ OPENLDAP +RDEPEND=>=app-crypt/gcr-3.4:= >=app-text/enchant-1.1.7 >=dev-libs/glib-2.46:2[dbus] >=dev-libs/libxml2-2.7.3:2 >=gnome-base/gnome-desktop-2.91.3:3= >=gnome-base/gsettings-desktop-schemas-2.91.92 >=gnome-extra/evolution-data-server-3.20.3:=[gtk,weather?] >=media-libs/libcanberra-0.25[gtk3] >=net-libs/libsoup-2.42:2.4 >=net-libs/webkit-gtk-2.13.90:4 >=x11-libs/cairo-1.9.15:=[glib] >=x11-libs/gdk-pixbuf-2.24:2 >=x11-libs/gtk+-3.10:3 >=x11-libs/libnotify-0.7:= >=x11-misc/shared-mime-info-0.22 >=app-text/iso-codes-0.49 dev-libs/atk gnome-base/dconf dev-libs/libical:= x11-libs/libSM x11-libs/libICE crypt? ( >=app-crypt/gnupg-1.4 || ( app-crypt/pinentry[gnome-keyring] app-crypt/pinentry[gtk] app-crypt/pinentry[qt4] app-crypt/pinentry[qt5] ) x11-libs/libcryptui ) geolocation? ( >=media-libs/libchamplain-0.12:0.12[gtk] >=media-libs/clutter-1.0.0:1.0 >=media-libs/clutter-gtk-0.90:1.0 >=sci-geosciences/geocode-glib-3.10.0 x11-libs/mx:1.0 ) ldap? ( >=net-nds/openldap-2:= ) spell? ( app-text/gtkspell:3 ) ssl? ( >=dev-libs/nspr-4.6.1:= >=dev-libs/nss-3.11:= ) weather? ( >=dev-libs/libgweather-3.10:2= ) bogofilter? ( mail-filter/bogofilter ) highlight? ( app-text/highlight ) spamassassin? ( mail-filter/spamassassin ) !gnome-extra/evolution-exchange +SLOT=2.0 +SRC_URI=mirror://gnome/sources/evolution/3.22/evolution-3.22.1.tar.xz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome.org ad34f378a3d57a6f2f2b8b4aaca4543e gnome2 21c81ea94c12e45a63f7f14fba666e3d gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 readme.gentoo-r1 03878c06495db70bc36bd717383c09f7 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=ad23520f8fb32b1333cddeb74b77a59f diff --git a/metadata/md5-cache/media-fonts/hack-2.020 b/metadata/md5-cache/media-fonts/hack-2.020 index cc55d184e509..1cc07d2b3138 100644 --- a/metadata/md5-cache/media-fonts/hack-2.020 +++ b/metadata/md5-cache/media-fonts/hack-2.020 @@ -4,10 +4,10 @@ DESCRIPTION=A typeface designed for source code EAPI=5 HOMEPAGE=https://github.com/chrissimpkins/Hack IUSE=X -KEYWORDS=~amd64 ~arm ~x86 +KEYWORDS=amd64 ~arm x86 LICENSE=OFL-1.1 RESTRICT=binchecks strip SLOT=0 SRC_URI=https://github.com/chrissimpkins/Hack/releases/download/v2.020/Hack-v2_020-otf.tar.xz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 font cd7790315ca5b8c505e1e0513df6acce multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=f58c68239ad0f9af51c299e0a9865c21 +_md5_=41a1beeeae7e87d4bec332dff52aef1c diff --git a/metadata/md5-cache/net-analyzer/tcpdump-4.8.1 b/metadata/md5-cache/net-analyzer/tcpdump-4.8.1 new file mode 100644 index 000000000000..b1c3ee6b3f31 --- /dev/null +++ b/metadata/md5-cache/net-analyzer/tcpdump-4.8.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=configure install postinst preinst setup test +DEPEND=drop-root? ( sys-libs/libcap-ng ) net-libs/libpcap smi? ( net-libs/libsmi ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.6m:0 ) libressl? ( dev-libs/libressl ) ) drop-root? ( virtual/pkgconfig ) test? ( || ( app-arch/sharutils sys-freebsd/freebsd-ubin ) dev-lang/perl ) +DESCRIPTION=A Tool for network monitoring and data acquisition +EAPI=6 +HOMEPAGE=http://www.tcpdump.org/ https://github.com/the-tcpdump-group/tcpdump +IUSE=+drop-root libressl smi ssl samba suid test +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux +LICENSE=BSD +RDEPEND=drop-root? ( sys-libs/libcap-ng ) net-libs/libpcap smi? ( net-libs/libsmi ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.6m:0 ) libressl? ( dev-libs/libressl ) ) +SLOT=0 +SRC_URI=https://github.com/the-tcpdump-group/tcpdump/archive/tcpdump-4.8.1.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 user 80aaa71614ced86f02ee1a513821dc87 +_md5_=aa6b282018b2c18af44ccda29d7171a2 diff --git a/metadata/md5-cache/net-libs/libpcap-1.8.1 b/metadata/md5-cache/net-libs/libpcap-1.8.1 new file mode 100644 index 000000000000..6cde8026c05d --- /dev/null +++ b/metadata/md5-cache/net-libs/libpcap-1.8.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=bluetooth? ( net-wireless/bluez:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) dbus? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) netlink? ( dev-libs/libnl:3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sys-devel/flex virtual/yacc dbus? ( virtual/pkgconfig[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DESCRIPTION=A system-independent library for user-level network packet capture +EAPI=6 +HOMEPAGE=http://www.tcpdump.org/ https://github.com/the-tcpdump-group/libpcap +IUSE=bluetooth dbus netlink static-libs usb abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris +LICENSE=BSD +RDEPEND=bluetooth? ( net-wireless/bluez:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) dbus? ( sys-apps/dbus[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) netlink? ( dev-libs/libnl:3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) +SLOT=0 +SRC_URI=https://github.com/the-tcpdump-group/libpcap/archive/libpcap-1.8.1.tar.gz +_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c eutils b83a2420b796f7c6eff682679d08fe25 libtool 4890219c51da247200223277f993e054 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 +_md5_=4e576b5aa1d6fa32bf27feebe80d9b8a diff --git a/metadata/md5-cache/net-libs/nodejs-4.6.1 b/metadata/md5-cache/net-libs/nodejs-4.6.1 index 5aa8cfdcb2de..99920e046a09 100644 --- a/metadata/md5-cache/net-libs/nodejs-4.6.1 +++ b/metadata/md5-cache/net-libs/nodejs-4.6.1 @@ -4,11 +4,11 @@ DESCRIPTION=A JavaScript runtime built on Chrome's V8 JavaScript engine EAPI=5 HOMEPAGE=https://nodejs.org/ IUSE=cpu_flags_x86_sse2 debug icu +npm snapshot +ssl test python_targets_python2_7 -KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 ~x64-macos +KEYWORDS=amd64 ~arm ~arm64 ~ppc64 x86 ~x64-macos LICENSE=Apache-1.1 Apache-2.0 BSD BSD-2 MIT RDEPEND=icu? ( >=dev-libs/icu-55:= ) npm? ( >=dev-lang/python-2.7.5-r2:2.7[threads] >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),python_single_target_python2_7(+)] ) >=net-libs/http-parser-2.5.2:= >=dev-libs/libuv-1.8.0:= >=dev-libs/openssl-1.0.2g:0=[-bindist] sys-libs/zlib REQUIRED_USE=python_targets_python2_7 SLOT=0 SRC_URI=https://nodejs.org/dist/v4.6.1/node-v4.6.1.tar.xz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 pax-utils 4c2654a34ebe732e85fda354f6ee642f python-single-r1 2ebea8fbab356d63110245129a67a6dd python-utils-r1 1797277ea0e7cee5c7de7ce74cf8acd8 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 -_md5_=ff92b666fd5101cb46a773f2c8356257 +_md5_=48352182fdefabd8011bacba22d5f28d diff --git a/metadata/md5-cache/net-libs/webkit-gtk-2.10.9 b/metadata/md5-cache/net-libs/webkit-gtk-2.10.9 deleted file mode 100644 index 1910f8491c88..000000000000 --- a/metadata/md5-cache/net-libs/webkit-gtk-2.10.9 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test unpack -DEPEND=dev-db/sqlite:3= >=dev-libs/glib-2.36:2 >=dev-libs/icu-3.8.1-r1:= >=dev-libs/libxml2-2.8:2 >=dev-libs/libxslt-1.1.7 >=media-libs/fontconfig-2.8:1.0 >=media-libs/freetype-2.4.2:2 >=media-libs/harfbuzz-0.9.18:=[icu(+)] >=media-libs/libpng-1.4:0= media-libs/libwebp:= >=net-libs/gnutls-3 >=net-libs/libsoup-2.42:2.4[introspection?] virtual/jpeg:0= >=x11-libs/cairo-1.10.2:= >=x11-libs/gtk+-3.14:3[introspection?] x11-libs/libnotify >=x11-libs/pango-1.30.0 aqua? ( >=x11-libs/gtk+-3.14:3[aqua] ) egl? ( media-libs/mesa[egl] ) geoloc? ( >=app-misc/geoclue-2.1.5:2.0 ) gles2? ( media-libs/mesa[gles2] ) gnome-keyring? ( app-crypt/libsecret ) gstreamer? ( >=media-libs/gstreamer-1.2:1.0 >=media-libs/gst-plugins-base-1.2:1.0 >=media-libs/gst-plugins-bad-1.5.0:1.0[opengl?] ) introspection? ( >=dev-libs/gobject-introspection-1.32.0:= ) nsplugin? ( >=x11-libs/gtk+-2.24.10:2 ) opengl? ( virtual/opengl x11-libs/cairo[opengl] ) spell? ( >=app-text/enchant-0.22:= ) wayland? ( >=x11-libs/gtk+-3.14:3[wayland] ) webgl? ( x11-libs/cairo[opengl] x11-libs/libXcomposite x11-libs/libXdamage ) X? ( x11-libs/cairo[X] >=x11-libs/gtk+-3.14:3[X] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXrender x11-libs/libXt ) || ( >=dev-lang/python-2.7.5-r2:2.7 ) || ( dev-lang/ruby:2.0 dev-lang/ruby:2.1 dev-lang/ruby:2.2 dev-lang/ruby:2.3 ) virtual/rubygems >=dev-lang/perl-5.10 >=app-accessibility/at-spi2-core-2.5.3 >=dev-libs/atk-2.8.0 dev-libs/hyphen >=dev-util/gtk-doc-am-1.10 >=dev-util/gperf-3.0.1 >=sys-devel/bison-2.4.3 >=sys-devel/flex-2.5.34 || ( >=sys-devel/gcc-4.9 >=sys-devel/clang-3.3 ) sys-devel/gettext virtual/pkgconfig doc? ( >=dev-util/gtk-doc-1.10 ) geoloc? ( dev-util/gdbus-codegen ) introspection? ( jit? ( sys-apps/paxctl ) ) test? ( dev-lang/python:2.7 dev-python/pygobject:3[python_targets_python2_7] x11-themes/hicolor-icon-theme jit? ( sys-apps/paxctl ) ) dev-util/ninja >=dev-util/cmake-2.8.12 app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) -DESCRIPTION=Open source web browser engine -EAPI=5 -HOMEPAGE=http://www.webkitgtk.org/ -IUSE=aqua coverage doc +egl +geoloc gles2 gnome-keyring +gstreamer +introspection +jit nsplugin +opengl spell wayland +webgl X test -KEYWORDS=~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos -LICENSE=LGPL-2+ BSD -RDEPEND=dev-db/sqlite:3= >=dev-libs/glib-2.36:2 >=dev-libs/icu-3.8.1-r1:= >=dev-libs/libxml2-2.8:2 >=dev-libs/libxslt-1.1.7 >=media-libs/fontconfig-2.8:1.0 >=media-libs/freetype-2.4.2:2 >=media-libs/harfbuzz-0.9.18:=[icu(+)] >=media-libs/libpng-1.4:0= media-libs/libwebp:= >=net-libs/gnutls-3 >=net-libs/libsoup-2.42:2.4[introspection?] virtual/jpeg:0= >=x11-libs/cairo-1.10.2:= >=x11-libs/gtk+-3.14:3[introspection?] x11-libs/libnotify >=x11-libs/pango-1.30.0 aqua? ( >=x11-libs/gtk+-3.14:3[aqua] ) egl? ( media-libs/mesa[egl] ) geoloc? ( >=app-misc/geoclue-2.1.5:2.0 ) gles2? ( media-libs/mesa[gles2] ) gnome-keyring? ( app-crypt/libsecret ) gstreamer? ( >=media-libs/gstreamer-1.2:1.0 >=media-libs/gst-plugins-base-1.2:1.0 >=media-libs/gst-plugins-bad-1.5.0:1.0[opengl?] ) introspection? ( >=dev-libs/gobject-introspection-1.32.0:= ) nsplugin? ( >=x11-libs/gtk+-2.24.10:2 ) opengl? ( virtual/opengl x11-libs/cairo[opengl] ) spell? ( >=app-text/enchant-0.22:= ) wayland? ( >=x11-libs/gtk+-3.14:3[wayland] ) webgl? ( x11-libs/cairo[opengl] x11-libs/libXcomposite x11-libs/libXdamage ) X? ( x11-libs/cairo[X] >=x11-libs/gtk+-3.14:3[X] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXrender x11-libs/libXt ) -REQUIRED_USE=geoloc? ( introspection ) gles2? ( egl ) introspection? ( gstreamer ) nsplugin? ( X ) webgl? ( ^^ ( gles2 opengl ) ) !webgl? ( ?? ( gles2 opengl ) ) webgl? ( gstreamer ) || ( aqua wayland X ) -RESTRICT=test -SLOT=4/37 -SRC_URI=http://www.webkitgtk.org/releases/webkitgtk-2.10.9.tar.xz -_eclasses_=check-reqs aee25bdf4e2f459af86d17f7c41dcdf6 cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome.org ad34f378a3d57a6f2f2b8b4aaca4543e gnome2 21c81ea94c12e45a63f7f14fba666e3d gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 pax-utils 4c2654a34ebe732e85fda354f6ee642f python-any-r1 1c20f9b800324335a8e3b137363362e8 python-utils-r1 1797277ea0e7cee5c7de7ce74cf8acd8 ruby-single a5e86595177a8998cbb9f794f2bf9700 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=cc0752a6bc8f8d040cad3a102b768af2 diff --git a/metadata/md5-cache/net-libs/webkit-gtk-2.12.3 b/metadata/md5-cache/net-libs/webkit-gtk-2.12.3 deleted file mode 100644 index 8764f22fab61..000000000000 --- a/metadata/md5-cache/net-libs/webkit-gtk-2.12.3 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test unpack -DEPEND=dev-db/sqlite:3= >=dev-libs/glib-2.36:2 dev-libs/hyphen >=dev-libs/icu-3.8.1-r1:= >=dev-libs/libxml2-2.8:2 >=dev-libs/libxslt-1.1.7 >=media-libs/fontconfig-2.8:1.0 >=media-libs/freetype-2.4.2:2 >=media-libs/harfbuzz-0.9.18:=[icu(+)] >=media-libs/libpng-1.4:0= media-libs/libwebp:= >=net-libs/gnutls-3 >=net-libs/libsoup-2.42:2.4[introspection?] virtual/jpeg:0= >=x11-libs/cairo-1.10.2:= >=x11-libs/gtk+-3.14:3[introspection?] >=x11-libs/pango-1.30.0 aqua? ( >=x11-libs/gtk+-3.14:3[aqua] ) egl? ( media-libs/mesa[egl] ) geoloc? ( >=app-misc/geoclue-2.1.5:2.0 ) gles2? ( media-libs/mesa[gles2] ) gnome-keyring? ( app-crypt/libsecret ) gstreamer? ( >=media-libs/gstreamer-1.2:1.0 >=media-libs/gst-plugins-base-1.2:1.0 >=media-libs/gst-plugins-bad-1.6.0:1.0[opengl?] ) introspection? ( >=dev-libs/gobject-introspection-1.32.0:= ) libnotify? ( x11-libs/libnotify ) nsplugin? ( >=x11-libs/gtk+-2.24.10:2 ) opengl? ( virtual/opengl x11-libs/cairo[opengl] ) spell? ( >=app-text/enchant-0.22:= ) wayland? ( >=x11-libs/gtk+-3.14:3[wayland] ) webgl? ( x11-libs/cairo[opengl] x11-libs/libXcomposite x11-libs/libXdamage ) X? ( x11-libs/cairo[X] >=x11-libs/gtk+-3.14:3[X] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXrender x11-libs/libXt ) || ( >=dev-lang/python-2.7.5-r2:2.7 ) || ( dev-lang/ruby:2.0 dev-lang/ruby:2.1 dev-lang/ruby:2.2 dev-lang/ruby:2.3 ) virtual/rubygems >=dev-lang/perl-5.10 >=app-accessibility/at-spi2-core-2.5.3 >=dev-libs/atk-2.8.0 >=dev-util/gtk-doc-am-1.10 >=dev-util/gperf-3.0.1 >=sys-devel/bison-2.4.3 >=sys-devel/flex-2.5.34 || ( >=sys-devel/gcc-4.9 >=sys-devel/clang-3.3 ) sys-devel/gettext virtual/pkgconfig doc? ( >=dev-util/gtk-doc-1.10 ) geoloc? ( dev-util/gdbus-codegen ) introspection? ( jit? ( sys-apps/paxctl ) ) test? ( dev-lang/python:2.7 dev-python/pygobject:3[python_targets_python2_7] x11-themes/hicolor-icon-theme jit? ( sys-apps/paxctl ) ) dev-util/ninja >=dev-util/cmake-2.8.12 app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) -DESCRIPTION=Open source web browser engine -EAPI=5 -HOMEPAGE=http://www.webkitgtk.org/ -IUSE=aqua coverage doc +egl +geoloc gles2 gnome-keyring +gstreamer +introspection +jit libnotify nsplugin +opengl spell wayland +webgl X test -KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos -LICENSE=LGPL-2+ BSD -RDEPEND=dev-db/sqlite:3= >=dev-libs/glib-2.36:2 dev-libs/hyphen >=dev-libs/icu-3.8.1-r1:= >=dev-libs/libxml2-2.8:2 >=dev-libs/libxslt-1.1.7 >=media-libs/fontconfig-2.8:1.0 >=media-libs/freetype-2.4.2:2 >=media-libs/harfbuzz-0.9.18:=[icu(+)] >=media-libs/libpng-1.4:0= media-libs/libwebp:= >=net-libs/gnutls-3 >=net-libs/libsoup-2.42:2.4[introspection?] virtual/jpeg:0= >=x11-libs/cairo-1.10.2:= >=x11-libs/gtk+-3.14:3[introspection?] >=x11-libs/pango-1.30.0 aqua? ( >=x11-libs/gtk+-3.14:3[aqua] ) egl? ( media-libs/mesa[egl] ) geoloc? ( >=app-misc/geoclue-2.1.5:2.0 ) gles2? ( media-libs/mesa[gles2] ) gnome-keyring? ( app-crypt/libsecret ) gstreamer? ( >=media-libs/gstreamer-1.2:1.0 >=media-libs/gst-plugins-base-1.2:1.0 >=media-libs/gst-plugins-bad-1.6.0:1.0[opengl?] ) introspection? ( >=dev-libs/gobject-introspection-1.32.0:= ) libnotify? ( x11-libs/libnotify ) nsplugin? ( >=x11-libs/gtk+-2.24.10:2 ) opengl? ( virtual/opengl x11-libs/cairo[opengl] ) spell? ( >=app-text/enchant-0.22:= ) wayland? ( >=x11-libs/gtk+-3.14:3[wayland] ) webgl? ( x11-libs/cairo[opengl] x11-libs/libXcomposite x11-libs/libXdamage ) X? ( x11-libs/cairo[X] >=x11-libs/gtk+-3.14:3[X] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXrender x11-libs/libXt ) -REQUIRED_USE=geoloc? ( introspection ) gles2? ( egl ) introspection? ( gstreamer ) nsplugin? ( X ) webgl? ( ^^ ( gles2 opengl ) ) !webgl? ( ?? ( gles2 opengl ) ) webgl? ( gstreamer ) || ( aqua wayland X ) -RESTRICT=test -SLOT=4/37 -SRC_URI=http://www.webkitgtk.org/releases/webkitgtk-2.12.3.tar.xz -_eclasses_=check-reqs aee25bdf4e2f459af86d17f7c41dcdf6 cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome.org ad34f378a3d57a6f2f2b8b4aaca4543e gnome2 21c81ea94c12e45a63f7f14fba666e3d gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 pax-utils 4c2654a34ebe732e85fda354f6ee642f python-any-r1 1c20f9b800324335a8e3b137363362e8 python-utils-r1 1797277ea0e7cee5c7de7ce74cf8acd8 ruby-single a5e86595177a8998cbb9f794f2bf9700 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=cd8365e7acf6de49b5ec3afa03ed3797 diff --git a/metadata/md5-cache/net-libs/webkit-gtk-2.14.1 b/metadata/md5-cache/net-libs/webkit-gtk-2.14.1 new file mode 100644 index 000000000000..a81c4c1fb092 --- /dev/null +++ b/metadata/md5-cache/net-libs/webkit-gtk-2.14.1 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test +DEPEND=dev-db/sqlite:3= >=dev-libs/glib-2.36:2 dev-libs/hyphen >=dev-libs/icu-3.8.1-r1:= >=dev-libs/libxml2-2.8:2 >=dev-libs/libxslt-1.1.7 >=media-libs/fontconfig-2.8:1.0 >=media-libs/freetype-2.4.2:2 >=media-libs/harfbuzz-0.9.18:=[icu(+)] >=media-libs/libpng-1.4:0= media-libs/libwebp:= >=net-libs/gnutls-3 >=net-libs/libsoup-2.42:2.4[introspection?] >=x11-libs/cairo-1.10.2:= >=x11-libs/gtk+-3.14:3[introspection?] >=x11-libs/pango-1.30.0 virtual/jpeg:0= aqua? ( >=x11-libs/gtk+-3.14:3[aqua] ) egl? ( media-libs/mesa[egl] ) geolocation? ( >=app-misc/geoclue-2.1.5:2.0 ) gles2? ( media-libs/mesa[gles2] ) gnome-keyring? ( app-crypt/libsecret ) gstreamer? ( >=media-libs/gstreamer-1.2:1.0 >=media-libs/gst-plugins-base-1.2:1.0 >=media-libs/gst-plugins-bad-1.8:1.0[opengl?] ) introspection? ( >=dev-libs/gobject-introspection-1.32.0:= ) libnotify? ( x11-libs/libnotify ) nsplugin? ( >=x11-libs/gtk+-2.24.10:2 ) opengl? ( virtual/opengl x11-libs/cairo[opengl] ) spell? ( >=app-text/enchant-0.22:= ) wayland? ( >=x11-libs/gtk+-3.14:3[wayland] ) webgl? ( x11-libs/cairo[opengl] x11-libs/libXcomposite x11-libs/libXdamage ) X? ( x11-libs/cairo[X] >=x11-libs/gtk+-3.14:3[X] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXrender x11-libs/libXt ) || ( >=dev-lang/python-2.7.5-r2:2.7 ) || ( dev-lang/ruby:2.0 dev-lang/ruby:2.1 dev-lang/ruby:2.2 dev-lang/ruby:2.3 ) virtual/rubygems >=dev-lang/perl-5.10 >=app-accessibility/at-spi2-core-2.5.3 >=dev-libs/atk-2.8.0 >=dev-util/gtk-doc-am-1.10 >=dev-util/gperf-3.0.1 >=sys-devel/bison-2.4.3 >=sys-devel/flex-2.5.34 || ( >=sys-devel/gcc-4.9 >=sys-devel/clang-3.3 ) sys-devel/gettext virtual/pkgconfig doc? ( >=dev-util/gtk-doc-1.10 ) geolocation? ( dev-util/gdbus-codegen ) introspection? ( jit? ( sys-apps/paxctl ) ) test? ( dev-lang/python:2.7 dev-python/pygobject:3[python_targets_python2_7] x11-themes/hicolor-icon-theme jit? ( sys-apps/paxctl ) ) dev-util/ninja >=dev-util/cmake-2.8.12 app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) +DESCRIPTION=Open source web browser engine +EAPI=6 +HOMEPAGE=http://www.webkitgtk.org/ +IUSE=aqua coverage doc +egl +geolocation gles2 gnome-keyring +gstreamer +introspection +jit libnotify nsplugin +opengl spell wayland +webgl X test +KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos +LICENSE=LGPL-2+ BSD +RDEPEND=dev-db/sqlite:3= >=dev-libs/glib-2.36:2 dev-libs/hyphen >=dev-libs/icu-3.8.1-r1:= >=dev-libs/libxml2-2.8:2 >=dev-libs/libxslt-1.1.7 >=media-libs/fontconfig-2.8:1.0 >=media-libs/freetype-2.4.2:2 >=media-libs/harfbuzz-0.9.18:=[icu(+)] >=media-libs/libpng-1.4:0= media-libs/libwebp:= >=net-libs/gnutls-3 >=net-libs/libsoup-2.42:2.4[introspection?] >=x11-libs/cairo-1.10.2:= >=x11-libs/gtk+-3.14:3[introspection?] >=x11-libs/pango-1.30.0 virtual/jpeg:0= aqua? ( >=x11-libs/gtk+-3.14:3[aqua] ) egl? ( media-libs/mesa[egl] ) geolocation? ( >=app-misc/geoclue-2.1.5:2.0 ) gles2? ( media-libs/mesa[gles2] ) gnome-keyring? ( app-crypt/libsecret ) gstreamer? ( >=media-libs/gstreamer-1.2:1.0 >=media-libs/gst-plugins-base-1.2:1.0 >=media-libs/gst-plugins-bad-1.8:1.0[opengl?] ) introspection? ( >=dev-libs/gobject-introspection-1.32.0:= ) libnotify? ( x11-libs/libnotify ) nsplugin? ( >=x11-libs/gtk+-2.24.10:2 ) opengl? ( virtual/opengl x11-libs/cairo[opengl] ) spell? ( >=app-text/enchant-0.22:= ) wayland? ( >=x11-libs/gtk+-3.14:3[wayland] ) webgl? ( x11-libs/cairo[opengl] x11-libs/libXcomposite x11-libs/libXdamage ) X? ( x11-libs/cairo[X] >=x11-libs/gtk+-3.14:3[X] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXrender x11-libs/libXt ) +REQUIRED_USE=geolocation? ( introspection ) gles2? ( egl ) introspection? ( gstreamer ) nsplugin? ( X ) webgl? ( ^^ ( gles2 opengl ) ) !webgl? ( ?? ( gles2 opengl ) ) webgl? ( gstreamer ) wayland? ( egl ) || ( aqua wayland X ) +RESTRICT=test +SLOT=4/37 +SRC_URI=http://www.webkitgtk.org/releases/webkitgtk-2.14.1.tar.xz +_eclasses_=check-reqs aee25bdf4e2f459af86d17f7c41dcdf6 cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome.org ad34f378a3d57a6f2f2b8b4aaca4543e gnome2 21c81ea94c12e45a63f7f14fba666e3d gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 pax-utils 4c2654a34ebe732e85fda354f6ee642f python-any-r1 1c20f9b800324335a8e3b137363362e8 python-utils-r1 1797277ea0e7cee5c7de7ce74cf8acd8 ruby-single a5e86595177a8998cbb9f794f2bf9700 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=35700346b8b4d29fc6bfe29fab02ae26 diff --git a/metadata/md5-cache/net-libs/webkit-gtk-2.4.11 b/metadata/md5-cache/net-libs/webkit-gtk-2.4.11 deleted file mode 100644 index c95ef0c35d51..000000000000 --- a/metadata/md5-cache/net-libs/webkit-gtk-2.4.11 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test -DEPEND=dev-db/sqlite:3= >=dev-libs/glib-2.36:2 >=dev-libs/icu-3.8.1-r1:= >=dev-libs/libxml2-2.6:2 >=dev-libs/libxslt-1.1.7 >=media-libs/fontconfig-2.5:1.0 >=media-libs/freetype-2.4.2:2 >=media-libs/harfbuzz-0.9.7:=[icu(+)] >=media-libs/libpng-1.4:0= media-libs/libwebp:= >=net-libs/libsoup-2.42:2.4[introspection?] virtual/jpeg:0= >=x11-libs/cairo-1.10:=[X?] >=x11-libs/gtk+-3.6.0:3[X?,aqua?,introspection?] >=x11-libs/pango-1.30.0 >=x11-libs/gtk+-2.24.10:2 egl? ( media-libs/mesa[egl] ) geoloc? ( >=app-misc/geoclue-2.1.5:2.0 ) gles2? ( media-libs/mesa[gles2] ) gnome-keyring? ( app-crypt/libsecret ) gstreamer? ( >=media-libs/gstreamer-1.2:1.0 >=media-libs/gst-plugins-base-1.2:1.0 ) introspection? ( >=dev-libs/gobject-introspection-1.32.0:= ) opengl? ( virtual/opengl ) spell? ( >=app-text/enchant-0.22:= ) wayland? ( >=x11-libs/gtk+-3.10:3[wayland] ) webgl? ( x11-libs/cairo[opengl] x11-libs/libXcomposite x11-libs/libXdamage ) X? ( x11-libs/libX11 x11-libs/libXrender x11-libs/libXt ) || ( >=dev-lang/python-2.7.5-r2:2.7 ) || ( dev-lang/ruby:2.0 dev-lang/ruby:2.1 dev-lang/ruby:2.2 dev-lang/ruby:2.3 ) virtual/rubygems >=dev-lang/perl-5.10 >=app-accessibility/at-spi2-core-2.5.3 >=dev-libs/atk-2.8.0 >=dev-util/gtk-doc-am-1.10 >=dev-util/gperf-3.0.1 >=sys-devel/bison-2.4.3 >=sys-devel/flex-2.5.34 || ( >=sys-devel/gcc-4.7 >=sys-devel/clang-3.3 ) sys-devel/gettext >=sys-devel/make-3.82-r4 virtual/pkgconfig geoloc? ( dev-util/gdbus-codegen ) introspection? ( jit? ( sys-apps/paxctl ) ) test? ( dev-lang/python:2.7 dev-python/pygobject:3[python_targets_python2_7] x11-themes/hicolor-icon-theme jit? ( sys-apps/paxctl ) ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) -DESCRIPTION=Open source web browser engine -EAPI=6 -HOMEPAGE=http://www.webkitgtk.org/ -IUSE=aqua coverage debug +egl +geoloc gles2 gnome-keyring +gstreamer +introspection +jit +opengl spell wayland +webgl +X test -KEYWORDS=~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos -LICENSE=LGPL-2+ BSD -RDEPEND=dev-db/sqlite:3= >=dev-libs/glib-2.36:2 >=dev-libs/icu-3.8.1-r1:= >=dev-libs/libxml2-2.6:2 >=dev-libs/libxslt-1.1.7 >=media-libs/fontconfig-2.5:1.0 >=media-libs/freetype-2.4.2:2 >=media-libs/harfbuzz-0.9.7:=[icu(+)] >=media-libs/libpng-1.4:0= media-libs/libwebp:= >=net-libs/libsoup-2.42:2.4[introspection?] virtual/jpeg:0= >=x11-libs/cairo-1.10:=[X?] >=x11-libs/gtk+-3.6.0:3[X?,aqua?,introspection?] >=x11-libs/pango-1.30.0 >=x11-libs/gtk+-2.24.10:2 egl? ( media-libs/mesa[egl] ) geoloc? ( >=app-misc/geoclue-2.1.5:2.0 ) gles2? ( media-libs/mesa[gles2] ) gnome-keyring? ( app-crypt/libsecret ) gstreamer? ( >=media-libs/gstreamer-1.2:1.0 >=media-libs/gst-plugins-base-1.2:1.0 ) introspection? ( >=dev-libs/gobject-introspection-1.32.0:= ) opengl? ( virtual/opengl ) spell? ( >=app-text/enchant-0.22:= ) wayland? ( >=x11-libs/gtk+-3.10:3[wayland] ) webgl? ( x11-libs/cairo[opengl] x11-libs/libXcomposite x11-libs/libXdamage ) X? ( x11-libs/libX11 x11-libs/libXrender x11-libs/libXt ) -REQUIRED_USE=geoloc? ( introspection ) gles2? ( egl ) introspection? ( gstreamer ) webgl? ( ^^ ( gles2 opengl ) ) !webgl? ( ?? ( gles2 opengl ) ) || ( aqua wayland X ) -SLOT=3/25 -SRC_URI=http://www.webkitgtk.org/releases/webkitgtk-2.4.11.tar.xz -_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c check-reqs aee25bdf4e2f459af86d17f7c41dcdf6 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome.org ad34f378a3d57a6f2f2b8b4aaca4543e gnome2 21c81ea94c12e45a63f7f14fba666e3d gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 pax-utils 4c2654a34ebe732e85fda354f6ee642f python-any-r1 1c20f9b800324335a8e3b137363362e8 python-utils-r1 1797277ea0e7cee5c7de7ce74cf8acd8 ruby-single a5e86595177a8998cbb9f794f2bf9700 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=74e0c190ea9059097ed53c18101b744f diff --git a/metadata/md5-cache/net-misc/tor-0.2.8.9 b/metadata/md5-cache/net-misc/tor-0.2.8.9 index 1ec6aaa9d6dc..ec8a6a10039a 100644 --- a/metadata/md5-cache/net-misc/tor-0.2.8.9 +++ b/metadata/md5-cache/net-misc/tor-0.2.8.9 @@ -4,10 +4,10 @@ DESCRIPTION=Anonymizing overlay network for TCP EAPI=5 HOMEPAGE=http://www.torproject.org/ IUSE=-bufferevents libressl scrypt seccomp selinux stats systemd tor-hardening transparent-proxy test web -KEYWORDS=~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos +KEYWORDS=amd64 ~arm ~mips ~ppc ~ppc64 ~sparc x86 ~ppc-macos LICENSE=BSD GPL-2 RDEPEND=app-text/asciidoc dev-libs/libevent sys-libs/zlib bufferevents? ( dev-libs/libevent[ssl] ) !libressl? ( dev-libs/openssl:0=[-bindist] ) libressl? ( dev-libs/libressl:0= ) scrypt? ( app-crypt/libscrypt ) seccomp? ( sys-libs/libseccomp ) systemd? ( sys-apps/systemd ) selinux? ( sec-policy/selinux-tor ) SLOT=0 SRC_URI=https://www.torproject.org/dist/tor-0.2.8.9.tar.gz https://archive.torproject.org/tor-package-archive/tor-0.2.8.9.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 readme.gentoo-r1 03878c06495db70bc36bd717383c09f7 systemd 5b6ca8b2fc1307ca593223f327342c96 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 user 80aaa71614ced86f02ee1a513821dc87 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=846e33af6fb0dc4ffb681e7a4ba3b577 +_md5_=ca0b500bdcd96751396f7e03851560a4 diff --git a/metadata/md5-cache/net-misc/youtube-dl-2016.10.19 b/metadata/md5-cache/net-misc/youtube-dl-2016.10.25 similarity index 97% rename from metadata/md5-cache/net-misc/youtube-dl-2016.10.19 rename to metadata/md5-cache/net-misc/youtube-dl-2016.10.25 index e2bd64042135..4bca0ddffc2c 100644 --- a/metadata/md5-cache/net-misc/youtube-dl-2016.10.19 +++ b/metadata/md5-cache/net-misc/youtube-dl-2016.10.25 @@ -9,6 +9,6 @@ LICENSE=public-domain RDEPEND=dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 -SRC_URI=http://youtube-dl.org/downloads/2016.10.19/youtube-dl-2016.10.19.tar.gz +SRC_URI=http://youtube-dl.org/downloads/2016.10.25/youtube-dl-2016.10.25.tar.gz _eclasses_=bash-completion-r1 acf715fa09463f043fbfdc1640f3fb85 distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 0f6937650a475d673baa5d0c8c0b37b3 python-utils-r1 1797277ea0e7cee5c7de7ce74cf8acd8 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 _md5_=7cb3d54e38f9d1be724043593eda52f1 diff --git a/metadata/md5-cache/sci-mathematics/normaliz-3.1.2 b/metadata/md5-cache/sci-mathematics/normaliz-3.1.3 similarity index 89% rename from metadata/md5-cache/sci-mathematics/normaliz-3.1.2 rename to metadata/md5-cache/sci-mathematics/normaliz-3.1.3 index 02e0816961d2..32fe6c696d15 100644 --- a/metadata/md5-cache/sci-mathematics/normaliz-3.1.2 +++ b/metadata/md5-cache/sci-mathematics/normaliz-3.1.3 @@ -8,6 +8,6 @@ KEYWORDS=~amd64 ~arm ~x86 LICENSE=GPL-3 RDEPEND=dev-libs/gmp[cxx] SLOT=0 -SRC_URI=https://github.com/Normaliz/Normaliz/archive/v3.1.2.tar.gz +SRC_URI=https://github.com/Normaliz/Normaliz/archive/v3.1.3.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c _md5_=fc13d3dab155e94ca37965f8e396567c diff --git a/metadata/md5-cache/sys-devel/flex-2.6.0 b/metadata/md5-cache/sys-devel/flex-2.6.2 similarity index 84% rename from metadata/md5-cache/sys-devel/flex-2.6.0 rename to metadata/md5-cache/sys-devel/flex-2.6.2 index e625a9925ec9..1c00960fe18b 100644 --- a/metadata/md5-cache/sys-devel/flex-2.6.0 +++ b/metadata/md5-cache/sys-devel/flex-2.6.2 @@ -2,12 +2,12 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=sys-devel/m4 app-arch/xz-utils nls? ( sys-devel/gettext ) test? ( sys-devel/bison ) DESCRIPTION=The Fast Lexical Analyzer EAPI=5 -HOMEPAGE=http://flex.sourceforge.net/ +HOMEPAGE=https://flex.sourceforge.net/ https://github.com/westes/flex IUSE=nls static test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=FLEX RDEPEND=sys-devel/m4 SLOT=0 -SRC_URI=mirror://sourceforge/flex/flex-2.6.0.tar.xz +SRC_URI=https://github.com/westes/flex/releases/download/v2.6.2/flex-2.6.2.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 -_md5_=a1c65fb8c244d2cc86201f611515e373 +_md5_=f718bd4ef5c09db897eff7e116e7b18a diff --git a/metadata/md5-cache/sys-fs/e2fsprogs-1.43.3 b/metadata/md5-cache/sys-fs/e2fsprogs-1.43.3-r1 similarity index 83% rename from metadata/md5-cache/sys-fs/e2fsprogs-1.43.3 rename to metadata/md5-cache/sys-fs/e2fsprogs-1.43.3-r1 index 66bb546952c1..220bae4ddf96 100644 --- a/metadata/md5-cache/sys-fs/e2fsprogs-1.43.3 +++ b/metadata/md5-cache/sys-fs/e2fsprogs-1.43.3-r1 @@ -8,6 +8,6 @@ KEYWORDS=alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~s LICENSE=GPL-2 BSD RDEPEND=~sys-libs/e2fsprogs-libs-1.43.3 >=sys-apps/util-linux-2.16 fuse? ( sys-fs/fuse ) nls? ( virtual/libintl ) SLOT=0 -SRC_URI=mirror://sourceforge/e2fsprogs/e2fsprogs-1.43.3.tar.gz mirror://kernel/linux/kernel/people/tytso/e2fsprogs/v1.43.3/e2fsprogs-1.43.3.tar.gz elibc_mintlib? ( mirror://gentoo/e2fsprogs-1.42.9-mint-r1.patch.xz ) +SRC_URI=mirror://sourceforge/e2fsprogs/e2fsprogs-1.43.3.tar.gz mirror://kernel/linux/kernel/people/tytso/e2fsprogs/v1.43.3/e2fsprogs-1.43.3.tar.gz elibc_mintlib? ( mirror://gentoo/e2fsprogs-1.42.9-mint-r1.patch.xz ) http://git.kernel.org/cgit/fs/ext2/e2fsprogs.git/patch/?id=d33e690fe7a6cbeb51349d9f2c7fb16a6ebec9c2 -> e2fsprogs-1.43.3-missing_uninit_bg.patch _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 -_md5_=ffae03e0b74dd7c549f1dd1fa50fc59a +_md5_=25085f461cde6f2b3d98113c53fa8fad diff --git a/metadata/md5-cache/sys-kernel/hardened-sources-4.7.10 b/metadata/md5-cache/sys-kernel/hardened-sources-4.7.10 index aca3f753574b..5fb337c0ea9b 100644 --- a/metadata/md5-cache/sys-kernel/hardened-sources-4.7.10 +++ b/metadata/md5-cache/sys-kernel/hardened-sources-4.7.10 @@ -4,11 +4,11 @@ DESCRIPTION=Hardened kernel sources (kernel series 4.7) EAPI=5 HOMEPAGE=http://www.gentoo.org/proj/en/hardened/ IUSE=deblob symlink build deblob -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 LICENSE=GPL-2 !deblob? ( freedist ) RDEPEND=>=sys-devel/gcc-4.5 !build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) RESTRICT=binchecks strip SLOT=4.7.10 SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.7.tar.xz deblob? ( http://www.fsfla.org/svn/fsfla/software/linux-libre/releases/tags/4.7-gnu/deblob-4.7 http://www.fsfla.org/svn/fsfla/software/linux-libre/releases/tags/4.7-gnu/deblob-check -> deblob-check-4.7 ) http://dev.gentoo.org/~blueness/hardened-sources/hardened-patches/hardened-patches-4.7.10-1.extras.tar.bz2 mirror://gentoo/genpatches-4.7-8.base.tar.xz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 kernel-2 f31f3b95b5d8f120e14f0b7aafbd8b47 multilib 165fc17c38d1b11dac2008280dab6e80 python-any-r1 1c20f9b800324335a8e3b137363362e8 python-utils-r1 1797277ea0e7cee5c7de7ce74cf8acd8 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=e3c32a3962b7077fa95f8a3f896361db +_md5_=e283da8e99e24cad92866fae264686ae diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-3.18.43 b/metadata/md5-cache/sys-kernel/vanilla-sources-3.18.44 similarity index 91% rename from metadata/md5-cache/sys-kernel/vanilla-sources-3.18.43 rename to metadata/md5-cache/sys-kernel/vanilla-sources-3.18.44 index e276607d3d4f..043813564e4e 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-3.18.43 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-3.18.44 @@ -8,7 +8,7 @@ KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 LICENSE=GPL-2 freedist RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) RESTRICT=binchecks strip -SLOT=3.18.43 -SRC_URI=mirror://kernel/linux/kernel/v3.x/patch-3.18.43.xz mirror://kernel/linux/kernel/v3.x/linux-3.18.tar.xz +SLOT=3.18.44 +SRC_URI=mirror://kernel/linux/kernel/v3.x/patch-3.18.44.xz mirror://kernel/linux/kernel/v3.x/linux-3.18.tar.xz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 kernel-2 f31f3b95b5d8f120e14f0b7aafbd8b47 multilib 165fc17c38d1b11dac2008280dab6e80 python-any-r1 1c20f9b800324335a8e3b137363362e8 python-utils-r1 1797277ea0e7cee5c7de7ce74cf8acd8 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c _md5_=c8237d05e015cb2231ac8424e6ca7565 diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-4.1.34 b/metadata/md5-cache/sys-kernel/vanilla-sources-4.1.35 similarity index 91% rename from metadata/md5-cache/sys-kernel/vanilla-sources-4.1.34 rename to metadata/md5-cache/sys-kernel/vanilla-sources-4.1.35 index c035e951bafc..e5793dbcea5e 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-4.1.34 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-4.1.35 @@ -8,7 +8,7 @@ KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 LICENSE=GPL-2 freedist RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) RESTRICT=binchecks strip -SLOT=4.1.34 -SRC_URI=mirror://kernel/linux/kernel/v4.x/patch-4.1.34.xz mirror://kernel/linux/kernel/v4.x/linux-4.1.tar.xz +SLOT=4.1.35 +SRC_URI=mirror://kernel/linux/kernel/v4.x/patch-4.1.35.xz mirror://kernel/linux/kernel/v4.x/linux-4.1.tar.xz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 kernel-2 f31f3b95b5d8f120e14f0b7aafbd8b47 multilib 165fc17c38d1b11dac2008280dab6e80 python-any-r1 1c20f9b800324335a8e3b137363362e8 python-utils-r1 1797277ea0e7cee5c7de7ce74cf8acd8 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c _md5_=c8237d05e015cb2231ac8424e6ca7565 diff --git a/metadata/md5-cache/sys-power/hibernate-script-2.0-r6 b/metadata/md5-cache/sys-power/hibernate-script-2.0-r6 index 6d2600da91a2..ada8d009c1f5 100644 --- a/metadata/md5-cache/sys-power/hibernate-script-2.0-r6 +++ b/metadata/md5-cache/sys-power/hibernate-script-2.0-r6 @@ -7,6 +7,6 @@ KEYWORDS=amd64 ppc x86 LICENSE=GPL-2 RDEPEND=!=app-admin/webapp-config-1.50.15 RESTRICT=mirror SLOT=2.3.3-r1 SRC_URI=http://websvn.tigris.org/files/documents/1380/49056/websvn-2.3.3.tar.gz _eclasses_=webapp 42c6ef7af496b228f9854b3c81e4b226 -_md5_=bf5ae3fb4d1a600159c4b2f0b81ced1e +_md5_=5d15fa4266318e5805e13332bc125886 diff --git a/metadata/md5-cache/www-client/epiphany-3.18.7 b/metadata/md5-cache/www-client/epiphany-3.18.7 deleted file mode 100644 index 466ccc74a32c..000000000000 --- a/metadata/md5-cache/www-client/epiphany-3.18.7 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare test -DEPEND=>=app-crypt/gcr-3.5.5:= >=app-crypt/libsecret-0.14 >=app-text/iso-codes-0.35 >=dev-libs/glib-2.38:2[dbus] >=dev-libs/libxml2-2.6.12:2 >=dev-libs/libxslt-1.1.7 >=gnome-base/gsettings-desktop-schemas-0.0.1 >=net-dns/avahi-0.6.22[dbus] >=net-libs/webkit-gtk-2.9.5:4 >=net-libs/libsoup-2.48:2.4 >=x11-libs/gtk+-3.13:3 >=x11-libs/libnotify-0.5.1:= gnome-base/gnome-desktop:3= dev-db/sqlite:3 x11-libs/libwnck:3 x11-libs/libX11 nss? ( dev-libs/nss ) app-text/yelp-tools dev-libs/appstream-glib >=dev-util/intltool-0.50 dev-util/itstool sys-apps/paxctl sys-devel/gettext virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) -DESCRIPTION=GNOME webbrowser based on Webkit -EAPI=6 -HOMEPAGE=https://wiki.gnome.org/Apps/Web -IUSE=nss test test -KEYWORDS=amd64 ~arm ~ppc ~ppc64 ~sparc x86 -LICENSE=GPL-2 -RDEPEND=>=app-crypt/gcr-3.5.5:= >=app-crypt/libsecret-0.14 >=app-text/iso-codes-0.35 >=dev-libs/glib-2.38:2[dbus] >=dev-libs/libxml2-2.6.12:2 >=dev-libs/libxslt-1.1.7 >=gnome-base/gsettings-desktop-schemas-0.0.1 >=net-dns/avahi-0.6.22[dbus] >=net-libs/webkit-gtk-2.9.5:4 >=net-libs/libsoup-2.48:2.4 >=x11-libs/gtk+-3.13:3 >=x11-libs/libnotify-0.5.1:= gnome-base/gnome-desktop:3= dev-db/sqlite:3 x11-libs/libwnck:3 x11-libs/libX11 nss? ( dev-libs/nss ) x11-themes/adwaita-icon-theme !www-client/epiphany-extensions -SLOT=0 -SRC_URI=mirror://gnome/sources/epiphany/3.18/epiphany-3.18.7.tar.xz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 gnome.org ad34f378a3d57a6f2f2b8b4aaca4543e gnome2 21c81ea94c12e45a63f7f14fba666e3d gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=d3218ef1f70d99749f6160f840bbfb12 diff --git a/metadata/md5-cache/www-client/epiphany-3.22.1 b/metadata/md5-cache/www-client/epiphany-3.22.1 new file mode 100644 index 000000000000..b1dde036ddf8 --- /dev/null +++ b/metadata/md5-cache/www-client/epiphany-3.22.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test +DEPEND=>=app-crypt/gcr-3.5.5:= >=app-crypt/libsecret-0.14 >=app-text/iso-codes-0.35 >=dev-libs/glib-2.44.0:2[dbus] >=dev-libs/libxml2-2.6.12:2 >=dev-libs/libxslt-1.1.7 >=gnome-base/gsettings-desktop-schemas-0.0.1 >=net-dns/avahi-0.6.22[dbus] >=net-libs/webkit-gtk-2.11.4:4= >=net-libs/libsoup-2.48:2.4 >=x11-libs/gtk+-3.19.1:3 >=x11-libs/libnotify-0.5.1:= gnome-base/gnome-desktop:3= dev-db/sqlite:3 x11-libs/libX11 app-text/yelp-tools dev-libs/appstream-glib >=dev-util/intltool-0.50 sys-apps/paxctl sys-devel/gettext virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) +DESCRIPTION=GNOME webbrowser based on Webkit +EAPI=6 +HOMEPAGE=https://wiki.gnome.org/Apps/Web +IUSE=test test +KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=>=app-crypt/gcr-3.5.5:= >=app-crypt/libsecret-0.14 >=app-text/iso-codes-0.35 >=dev-libs/glib-2.44.0:2[dbus] >=dev-libs/libxml2-2.6.12:2 >=dev-libs/libxslt-1.1.7 >=gnome-base/gsettings-desktop-schemas-0.0.1 >=net-dns/avahi-0.6.22[dbus] >=net-libs/webkit-gtk-2.11.4:4= >=net-libs/libsoup-2.48:2.4 >=x11-libs/gtk+-3.19.1:3 >=x11-libs/libnotify-0.5.1:= gnome-base/gnome-desktop:3= dev-db/sqlite:3 x11-libs/libX11 x11-themes/adwaita-icon-theme !www-client/epiphany-extensions +SLOT=0 +SRC_URI=mirror://gnome/sources/epiphany/3.22/epiphany-3.22.1.tar.xz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 gnome.org ad34f378a3d57a6f2f2b8b4aaca4543e gnome2 21c81ea94c12e45a63f7f14fba666e3d gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=0f4f4b62c0835e69e802b1a57f599328 diff --git a/metadata/md5-cache/x11-libs/vte-0.46.0 b/metadata/md5-cache/x11-libs/vte-0.46.0 new file mode 100644 index 000000000000..cbd305c64294 --- /dev/null +++ b/metadata/md5-cache/x11-libs/vte-0.46.0 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare +DEPEND=>=dev-libs/glib-2.40:2 >=dev-libs/libpcre2-10.21 >=x11-libs/gtk+-3.8:3[introspection?] >=x11-libs/pango-1.22.0 sys-libs/ncurses:0= sys-libs/zlib crypt? ( >=net-libs/gnutls-3.2.7 ) glade? ( >=dev-util/glade-3.9:3.10 ) introspection? ( >=dev-libs/gobject-introspection-0.9.0:= ) dev-libs/libxml2 >=dev-util/gtk-doc-am-1.13 >=dev-util/intltool-0.35 sys-devel/gettext virtual/pkgconfig vala? ( || ( dev-lang/vala:0.32[vapigen(+)] dev-lang/vala:0.30[vapigen(+)] dev-lang/vala:0.28[vapigen(+)] dev-lang/vala:0.26[vapigen(+)] ) ) app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=Library providing a virtual terminal emulator widget +EAPI=6 +HOMEPAGE=https://wiki.gnome.org/action/show/Apps/Terminal/VTE +IUSE=+crypt debug glade +introspection vala +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~x64-solaris ~x86-solaris +LICENSE=LGPL-2+ +RDEPEND=>=dev-libs/glib-2.40:2 >=dev-libs/libpcre2-10.21 >=x11-libs/gtk+-3.8:3[introspection?] >=x11-libs/pango-1.22.0 sys-libs/ncurses:0= sys-libs/zlib crypt? ( >=net-libs/gnutls-3.2.7 ) glade? ( >=dev-util/glade-3.9:3.10 ) introspection? ( >=dev-libs/gobject-introspection-0.9.0:= ) !x11-libs/vte:2.90[glade] +REQUIRED_USE=vala? ( introspection ) +SLOT=2.91 +SRC_URI=mirror://gnome/sources/vte/0.46/vte-0.46.0.tar.xz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 gnome.org ad34f378a3d57a6f2f2b8b4aaca4543e gnome2 21c81ea94c12e45a63f7f14fba666e3d gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 vala 764817a25b405b65269d8619e203a52f versionator 99ae9d758cbe7cfed19170e7d48f5a9c xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=4b4abdfee136995234cec02b5a483311 diff --git a/metadata/md5-cache/x11-terms/gnome-terminal-3.16.2-r2 b/metadata/md5-cache/x11-terms/gnome-terminal-3.16.2-r2 deleted file mode 100644 index bd86ffe8edf9..000000000000 --- a/metadata/md5-cache/x11-terms/gnome-terminal-3.16.2-r2 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare unpack -DEPEND=>=dev-libs/glib-2.40:2[dbus] >=x11-libs/gtk+-3.10:3[X] >=x11-libs/vte-0.40.2:2.91 >=gnome-base/dconf-0.14 >=gnome-base/gsettings-desktop-schemas-0.1.0 sys-apps/util-linux x11-libs/libSM x11-libs/libICE gnome-shell? ( gnome-base/gnome-shell ) nautilus? ( >=gnome-base/nautilus-3 ) app-text/yelp-tools dev-libs/libxml2 dev-util/desktop-file-utils dev-util/gdbus-codegen dev-util/itstool >=dev-util/intltool-0.50 sys-devel/gettext virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=The Gnome Terminal -EAPI=5 -HOMEPAGE=https://wiki.gnome.org/Apps/Terminal/ -IUSE=debug +gnome-shell +nautilus vanilla -KEYWORDS=~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux -LICENSE=GPL-3+ -RDEPEND=>=dev-libs/glib-2.40:2[dbus] >=x11-libs/gtk+-3.10:3[X] >=x11-libs/vte-0.40.2:2.91 >=gnome-base/dconf-0.14 >=gnome-base/gsettings-desktop-schemas-0.1.0 sys-apps/util-linux x11-libs/libSM x11-libs/libICE gnome-shell? ( gnome-base/gnome-shell ) nautilus? ( >=gnome-base/nautilus-3 ) -SLOT=0 -SRC_URI=mirror://gnome/sources/gnome-terminal/3.16/gnome-terminal-3.16.2.tar.xz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 gnome.org ad34f378a3d57a6f2f2b8b4aaca4543e gnome2 21c81ea94c12e45a63f7f14fba666e3d gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 readme.gentoo df3fc8fdaf5a519e7d48c83e7592c95f toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=9dd19aa009e2eb809b762e0c39e3dcc0 diff --git a/metadata/md5-cache/x11-terms/gnome-terminal-3.18.2 b/metadata/md5-cache/x11-terms/gnome-terminal-3.18.2 deleted file mode 100644 index 1c5cdeb317de..000000000000 --- a/metadata/md5-cache/x11-terms/gnome-terminal-3.18.2 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare unpack -DEPEND=>=dev-libs/glib-2.42:2[dbus] >=x11-libs/gtk+-3.10:3[X] >=x11-libs/vte-0.42.1:2.91 >=gnome-base/dconf-0.14 >=gnome-base/gsettings-desktop-schemas-0.1.0 sys-apps/util-linux x11-libs/libSM x11-libs/libICE gnome-shell? ( gnome-base/gnome-shell ) nautilus? ( >=gnome-base/nautilus-3 ) app-text/yelp-tools dev-libs/libxml2 dev-util/desktop-file-utils dev-util/gdbus-codegen dev-util/itstool >=dev-util/intltool-0.50 sys-devel/gettext virtual/pkgconfig !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=The Gnome Terminal -EAPI=5 -HOMEPAGE=https://wiki.gnome.org/Apps/Terminal/ -IUSE=debug +gnome-shell +nautilus vanilla -KEYWORDS=~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux -LICENSE=GPL-3+ -RDEPEND=>=dev-libs/glib-2.42:2[dbus] >=x11-libs/gtk+-3.10:3[X] >=x11-libs/vte-0.42.1:2.91 >=gnome-base/dconf-0.14 >=gnome-base/gsettings-desktop-schemas-0.1.0 sys-apps/util-linux x11-libs/libSM x11-libs/libICE gnome-shell? ( gnome-base/gnome-shell ) nautilus? ( >=gnome-base/nautilus-3 ) -SLOT=0 -SRC_URI=mirror://gnome/sources/gnome-terminal/3.18/gnome-terminal-3.18.2.tar.xz -_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c eutils b83a2420b796f7c6eff682679d08fe25 gnome.org ad34f378a3d57a6f2f2b8b4aaca4543e gnome2 21c81ea94c12e45a63f7f14fba666e3d gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 readme.gentoo df3fc8fdaf5a519e7d48c83e7592c95f toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=ec8e2553473652efbed31ca6cd62a716 diff --git a/metadata/md5-cache/x11-terms/gnome-terminal-3.18.3 b/metadata/md5-cache/x11-terms/gnome-terminal-3.18.3 deleted file mode 100644 index 255fc02388ee..000000000000 --- a/metadata/md5-cache/x11-terms/gnome-terminal-3.18.3 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare unpack -DEPEND=>=dev-libs/glib-2.42:2[dbus] >=x11-libs/gtk+-3.10:3[X] >=x11-libs/vte-0.42.1:2.91 >=gnome-base/dconf-0.14 >=gnome-base/gsettings-desktop-schemas-0.1.0 sys-apps/util-linux x11-libs/libSM x11-libs/libICE gnome-shell? ( gnome-base/gnome-shell ) nautilus? ( >=gnome-base/nautilus-3 ) app-text/yelp-tools dev-libs/libxml2 dev-util/desktop-file-utils dev-util/gdbus-codegen dev-util/itstool >=dev-util/intltool-0.50 sys-devel/gettext virtual/pkgconfig !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=The Gnome Terminal -EAPI=5 -HOMEPAGE=https://wiki.gnome.org/Apps/Terminal/ -IUSE=debug +gnome-shell +nautilus vanilla -KEYWORDS=~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux -LICENSE=GPL-3+ -RDEPEND=>=dev-libs/glib-2.42:2[dbus] >=x11-libs/gtk+-3.10:3[X] >=x11-libs/vte-0.42.1:2.91 >=gnome-base/dconf-0.14 >=gnome-base/gsettings-desktop-schemas-0.1.0 sys-apps/util-linux x11-libs/libSM x11-libs/libICE gnome-shell? ( gnome-base/gnome-shell ) nautilus? ( >=gnome-base/nautilus-3 ) -SLOT=0 -SRC_URI=mirror://gnome/sources/gnome-terminal/3.18/gnome-terminal-3.18.3.tar.xz -_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c eutils b83a2420b796f7c6eff682679d08fe25 gnome.org ad34f378a3d57a6f2f2b8b4aaca4543e gnome2 21c81ea94c12e45a63f7f14fba666e3d gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 readme.gentoo df3fc8fdaf5a519e7d48c83e7592c95f toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=7aeb2fd3935d1ff128aa5d4732447076 diff --git a/metadata/md5-cache/x11-terms/gnome-terminal-3.22.0 b/metadata/md5-cache/x11-terms/gnome-terminal-3.22.0 new file mode 100644 index 000000000000..f1e9829ec51d --- /dev/null +++ b/metadata/md5-cache/x11-terms/gnome-terminal-3.22.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare +DEPEND=>=dev-libs/glib-2.42:2[dbus] >=x11-libs/gtk+-3.20:3[X] >=x11-libs/vte-0.46.0:2.91 >=dev-libs/libpcre2-10 >=gnome-base/dconf-0.14 >=gnome-base/gsettings-desktop-schemas-0.1.0 sys-apps/util-linux gnome-shell? ( gnome-base/gnome-shell ) nautilus? ( >=gnome-base/nautilus-3 ) app-text/yelp-tools dev-libs/libxml2 dev-util/gdbus-codegen >=dev-util/intltool-0.50 sys-devel/gettext virtual/pkgconfig !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=The Gnome Terminal +EAPI=6 +HOMEPAGE=https://wiki.gnome.org/Apps/Terminal/ +IUSE=debug +gnome-shell +nautilus vanilla +KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux +LICENSE=GPL-3+ +RDEPEND=>=dev-libs/glib-2.42:2[dbus] >=x11-libs/gtk+-3.20:3[X] >=x11-libs/vte-0.46.0:2.91 >=dev-libs/libpcre2-10 >=gnome-base/dconf-0.14 >=gnome-base/gsettings-desktop-schemas-0.1.0 sys-apps/util-linux gnome-shell? ( gnome-base/gnome-shell ) nautilus? ( >=gnome-base/nautilus-3 ) +SLOT=0 +SRC_URI=mirror://gnome/sources/gnome-terminal/3.22/gnome-terminal-3.22.0.tar.xz +_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c eutils b83a2420b796f7c6eff682679d08fe25 gnome.org ad34f378a3d57a6f2f2b8b4aaca4543e gnome2 21c81ea94c12e45a63f7f14fba666e3d gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 readme.gentoo-r1 03878c06495db70bc36bd717383c09f7 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=284359adaaf7f8165acc355dfa666bc3 diff --git a/metadata/news/timestamp.chk b/metadata/news/timestamp.chk index cbe6f4d35cd8..25c082ececa8 100644 --- a/metadata/news/timestamp.chk +++ b/metadata/news/timestamp.chk @@ -1 +1 @@ -Wed, 26 Oct 2016 05:40:31 +0000 +Wed, 26 Oct 2016 14:40:32 +0000 diff --git a/metadata/timestamp b/metadata/timestamp index 1d518c30bcf1..f25133c0d39a 100644 --- a/metadata/timestamp +++ b/metadata/timestamp @@ -1 +1 @@ -Wed Oct 26 05:39:35 UTC 2016 +Wed Oct 26 14:39:37 UTC 2016 diff --git a/metadata/timestamp.chk b/metadata/timestamp.chk index e715d02c1aee..91f9c10f172a 100644 --- a/metadata/timestamp.chk +++ b/metadata/timestamp.chk @@ -1 +1 @@ -Wed, 26 Oct 2016 06:00:01 +0000 +Wed, 26 Oct 2016 16:00:01 +0000 diff --git a/metadata/timestamp.x b/metadata/timestamp.x index f67018c60f40..054eaf1caa15 100644 --- a/metadata/timestamp.x +++ b/metadata/timestamp.x @@ -1 +1 @@ -1477460401 Wed 26 Oct 2016 05:40:01 AM UTC +1477492801 Wed 26 Oct 2016 02:40:01 PM UTC diff --git a/metadata/xml-schema/timestamp.chk b/metadata/xml-schema/timestamp.chk index cbe6f4d35cd8..25c082ececa8 100644 --- a/metadata/xml-schema/timestamp.chk +++ b/metadata/xml-schema/timestamp.chk @@ -1 +1 @@ -Wed, 26 Oct 2016 05:40:31 +0000 +Wed, 26 Oct 2016 14:40:32 +0000 diff --git a/net-analyzer/tcpdump/Manifest b/net-analyzer/tcpdump/Manifest index d3b9358f8a3c..fe4a513849fd 100644 --- a/net-analyzer/tcpdump/Manifest +++ b/net-analyzer/tcpdump/Manifest @@ -1,2 +1,3 @@ DIST tcpdump-4.7.4.tar.gz 1153657 SHA256 6be520269a89036f99c0b2126713a60965953eab921002b07608ccfc0c47d9af SHA512 5660d82abdf7327c3e1717db519b2c98cd217fff17440019f3ccf166b3cb28ab1c1850b7c42f8c6ee38110838bb8a4a10cd394f25123783bb3d58e1f350ef326 WHIRLPOOL 7c320adf64bf5ff57af7f98fec9919ba3c07056fbbbe1c8a87ac73ecb767ce245c4963e69e24ff71704be7b42dc604992f261173a34b12a87cd0eab153762816 DIST tcpdump-4.8.0.tar.gz 1149698 SHA256 6d80fe345d0f5ee42fd273bfafe076231ad700c2daaf56805d17dc8159a6d1a7 SHA512 c35b26bd170706116a5274846f967893c2d6f1f67082c0aa264d0811b6bdd2d7bd9dcde3f725179b0916c0160088bc87298af061179d2f1ca47a0f3e2cd870ab WHIRLPOOL 43129349417cb68b2076efb2d01683f122d998d98e625e39edc25c336d06fc714ccb06beb85e8ce4bcbe12f185cff9865c27583e242420dd3b44b7b26dd3ca90 +DIST tcpdump-4.8.1.tar.gz 1156643 SHA256 3cdfd4ef11ae751fd6ac2622148d93784b3ef8385b671d61f56c3b38c432a69b SHA512 b7d4afbaf30389954d3ca6e91db5d3351aa229a48a330eec89602e8650d16ba3284de51f66b2e365f064b8c2b906b67b469d0a00e603e0518ec22e5215724466 WHIRLPOOL 76f5f51f482f0834899a5f07ab6b6ab14688f8527810e2065c425356c1b08a0013b932017d95fdf140cb38d80db4d7df735cc815c0ffb418560c8ea4113eb98b diff --git a/net-analyzer/tcpdump/tcpdump-4.8.1.ebuild b/net-analyzer/tcpdump/tcpdump-4.8.1.ebuild new file mode 100644 index 000000000000..edeef25e777c --- /dev/null +++ b/net-analyzer/tcpdump/tcpdump-4.8.1.ebuild @@ -0,0 +1,94 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit flag-o-matic toolchain-funcs user + +DESCRIPTION="A Tool for network monitoring and data acquisition" +HOMEPAGE=" + http://www.tcpdump.org/ + https://github.com/the-tcpdump-group/tcpdump +" +SRC_URI=" + https://github.com/the-${PN}-group/${PN}/archive/${P}.tar.gz +" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux" +IUSE="+drop-root libressl smi ssl samba suid test" + +RDEPEND=" + drop-root? ( sys-libs/libcap-ng ) + net-libs/libpcap + smi? ( net-libs/libsmi ) + ssl? ( + !libressl? ( >=dev-libs/openssl-0.9.6m:0 ) + libressl? ( dev-libs/libressl ) + ) +" +DEPEND=" + ${RDEPEND} + drop-root? ( virtual/pkgconfig ) + test? ( + || ( app-arch/sharutils sys-freebsd/freebsd-ubin ) + dev-lang/perl + ) +" + +S=${WORKDIR}/${PN}-${P} + +pkg_setup() { + if use drop-root || use suid; then + enewgroup tcpdump + enewuser tcpdump -1 -1 -1 tcpdump + fi +} + +src_configure() { + if use drop-root; then + append-cppflags -DHAVE_CAP_NG_H + export LIBS=$( $(tc-getPKG_CONFIG) --libs libcap-ng ) + fi + + econf \ + $(use_enable samba smb) \ + $(use_with drop-root chroot '') \ + $(use_with smi) \ + $(use_with ssl crypto "${EPREFIX}/usr") \ + $(usex drop-root "--with-user=tcpdump" "") +} + +src_test() { + if [[ ${EUID} -ne 0 ]] || ! use drop-root; then + sed -i -e '/^\(espudp1\|eapon1\)/d;' tests/TESTLIST || die + emake check + else + ewarn "If you want to run the test suite, make sure you either" + ewarn "set FEATURES=userpriv or set USE=-drop-root" + fi +} + +src_install() { + dosbin tcpdump + doman tcpdump.1 + dodoc *.awk + dodoc CHANGES CREDITS README.md + + if use suid; then + fowners root:tcpdump /usr/sbin/tcpdump + fperms 4110 /usr/sbin/tcpdump + fi +} + +pkg_preinst() { + if use drop-root || use suid; then + enewgroup tcpdump + enewuser tcpdump -1 -1 -1 tcpdump + fi +} + +pkg_postinst() { + use suid && elog "To let normal users run tcpdump add them into tcpdump group." +} diff --git a/net-libs/libpcap/Manifest b/net-libs/libpcap/Manifest index d433f5921ed2..53598698852e 100644 --- a/net-libs/libpcap/Manifest +++ b/net-libs/libpcap/Manifest @@ -1,2 +1,3 @@ DIST libpcap-1.7.4.tar.gz 663021 SHA256 7ad3112187e88328b85e46dce7a9b949632af18ee74d97ffc3f2b41fe7f448b0 SHA512 83c55aa4173a90e8080a63dc6f0faeb4339d5def998abb9a578f08210c1784a1787ac6975f8bd27b02f8854dd18f03a23c1cd5fa611f46247090b2cc13943cf9 WHIRLPOOL b74cb9f55fd58f4521b0c074ae71448af8bc9e3d66577b6631b5ee59e27cca40f38519b9f2ab097755bd5a86a298bb3edb6d37aad9d0530060eb7ec9dc6221a8 DIST libpcap-1.8.0.tar.gz 698506 SHA256 aef925af509cfe8c50224299a2748b0fbf85e4ae6cf1c5ce332f9eb240d8761f SHA512 1d8d455f64c67627e12e9b4e8fa7d311fa71e63db1864f7287bb8cf598f0b51a178cf92e0ad8c1c6d0229b8b8d23aa493450e324af1ec5f35acee9a9fd0254f7 WHIRLPOOL 2ec86289dd18e807a96b54475b6651e12c7920594494f43dc31bdb29713c5208ccacace33954a23031b5dbd3984a91d85deca7bd54daccf7a4460ef2589b1764 +DIST libpcap-1.8.1.tar.gz 753405 SHA256 35c45ce725933894878707a00f60bb271244902363ec7097f8fa016dae278c5d SHA512 7e6a7351bb4213e1c3dd95ef7a460e91f733d933e39ba518ad8ba6d2f86b6e7cfa50ae667c8dc1300ef47bf8693ac8a1f18e068f41175ca5d0147a0b72278882 WHIRLPOOL dfc172bdecff1b93e549d0fe80068ccf6fcbd5dcf4a1cda0a1c34c2bfd702237988655f5e6bb91fec32299e0517593b192fde2a8179df17ab35b8db98f024cef diff --git a/net-libs/libpcap/files/libpcap-1.8.1-cross-compile.patch b/net-libs/libpcap/files/libpcap-1.8.1-cross-compile.patch new file mode 100644 index 000000000000..361cdeb5ec50 --- /dev/null +++ b/net-libs/libpcap/files/libpcap-1.8.1-cross-compile.patch @@ -0,0 +1,16 @@ +--- a/configure.ac ++++ b/configure.ac +@@ -291,7 +291,12 @@ + dnl XXX This could be done for cross-compiling, but for now it's not. + dnl + if test -z "$with_pcap" && test "$cross_compiling" = yes; then +- AC_MSG_ERROR(pcap type not determined when cross-compiling; use --with-pcap=...) ++ if test -z "$with_pcap" ; then ++ case $host in ++ *-linux*) with_pcap="linux";; ++ *) AC_MSG_ERROR(pcap type not determined when cross-compiling; use --with-pcap=...);; ++ esac ++ fi + fi + AC_ARG_WITH(pcap, + AC_HELP_STRING([--with-pcap=TYPE],[use packet capture TYPE])) diff --git a/net-libs/libpcap/files/libpcap-1.8.1-darwin.patch b/net-libs/libpcap/files/libpcap-1.8.1-darwin.patch new file mode 100644 index 000000000000..650bea82518a --- /dev/null +++ b/net-libs/libpcap/files/libpcap-1.8.1-darwin.patch @@ -0,0 +1,15 @@ +Prefix' Darwin systems are single arch, hijack Darwin7 case which assumes this setup +Check for bluetooth/mgmt.h before use + + +--- a/configure.ac ++++ b/configure.ac +@@ -1117,7 +1117,7 @@ + if test "$enable_universal" != "no"; then + case "$host_os" in + +- darwin[0-7].*) ++ darwin**) + # + # Pre-Tiger. Build only for 32-bit PowerPC; no + # need for any special compiler or linker flags. diff --git a/net-libs/libpcap/files/libpcap-1.8.1-libnl.patch b/net-libs/libpcap/files/libpcap-1.8.1-libnl.patch new file mode 100644 index 000000000000..61dfc4e201d9 --- /dev/null +++ b/net-libs/libpcap/files/libpcap-1.8.1-libnl.patch @@ -0,0 +1,22 @@ +--- a/configure.ac ++++ b/configure.ac +@@ -453,10 +453,6 @@ + + incdir=-I/usr/include/libnl3 + libnldir= +- if test x$withval != x ; then +- libnldir=-L${withval}/lib/.libs +- incdir=-I${withval}/include +- fi + + # + # Try libnl 3.x first. +@@ -471,7 +467,7 @@ + AC_DEFINE(HAVE_LIBNL_3_x,1,[if libnl exists and is version 3.x]) + AC_DEFINE(HAVE_LIBNL_NLE,1,[libnl has NLE_FAILURE]) + AC_DEFINE(HAVE_LIBNL_SOCKETS,1,[libnl has new-style socket api]) +- V_INCLS="$V_INCLS ${incdir}" ++ V_INCLS="${incdir} $V_INCLS" + have_any_nl="yes" + ],[], ${incdir} ${libnldir} -lnl-genl-3 -lnl-3 ) + diff --git a/net-libs/libpcap/files/libpcap-1.8.1-usbmon.patch b/net-libs/libpcap/files/libpcap-1.8.1-usbmon.patch new file mode 100644 index 000000000000..0b69e43a3f7d --- /dev/null +++ b/net-libs/libpcap/files/libpcap-1.8.1-usbmon.patch @@ -0,0 +1,16 @@ +--- a/configure.ac ++++ b/configure.ac +@@ -1493,10 +1493,9 @@ + AC_DEFINE(PCAP_SUPPORT_USB, 1, [target host supports USB sniffing]) + USB_SRC=pcap-usb-linux.c + AC_MSG_RESULT(yes) +- ac_usb_dev_name=`udevinfo -q name -p /sys/class/usb_device/usbmon 2>/dev/null` +- if test $? -ne 0 ; then +- ac_usb_dev_name="usbmon" +- fi ++ ++ ac_usb_dev_name="usbmon" ++ + AC_DEFINE_UNQUOTED(LINUX_USB_MON_DEV, "/dev/$ac_usb_dev_name", [path for device for USB sniffing]) + AC_MSG_NOTICE(Device for USB sniffing is /dev/$ac_usb_dev_name) + # diff --git a/net-libs/libpcap/libpcap-1.8.1.ebuild b/net-libs/libpcap/libpcap-1.8.1.ebuild new file mode 100644 index 000000000000..43e4ad3f9ef3 --- /dev/null +++ b/net-libs/libpcap/libpcap-1.8.1.ebuild @@ -0,0 +1,85 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit autotools eutils multilib-minimal + +DESCRIPTION="A system-independent library for user-level network packet capture" +HOMEPAGE=" + http://www.tcpdump.org/ + https://github.com/the-tcpdump-group/libpcap +" +SRC_URI=" + https://github.com/the-tcpdump-group/${PN}/archive/${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 ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +IUSE="bluetooth dbus netlink static-libs usb" + +RDEPEND=" + bluetooth? ( net-wireless/bluez:=[${MULTILIB_USEDEP}] ) + dbus? ( sys-apps/dbus[${MULTILIB_USEDEP}] ) + netlink? ( dev-libs/libnl:3[${MULTILIB_USEDEP}] ) +" +DEPEND=" + ${RDEPEND} + sys-devel/flex + virtual/yacc + dbus? ( virtual/pkgconfig[${MULTILIB_USEDEP}] ) +" + +S=${WORKDIR}/${PN}-${P} + +PATCHES=( + "${FILESDIR}"/${PN}-1.6.1-prefix-solaris.patch + "${FILESDIR}"/${PN}-1.8.1-cross-compile.patch + "${FILESDIR}"/${PN}-1.8.1-darwin.patch + "${FILESDIR}"/${PN}-1.8.1-libnl.patch + "${FILESDIR}"/${PN}-1.8.1-usbmon.patch +) + +src_prepare() { + default + +# mkdir bluetooth || die +# cp "${FILESDIR}"/mgmt.h bluetooth/ || die + + eapply_user + + echo ${PV} > VERSION || die + + eautoreconf +} + +multilib_src_configure() { + ECONF_SOURCE="${S}" \ + econf \ + $(use_enable bluetooth) \ + $(use_enable usb) \ + $(use_enable dbus) \ + $(use_with netlink libnl) \ + --enable-ipv6 +} + +multilib_src_compile() { + emake all shared +} + +multilib_src_install_all() { + dodoc CREDITS CHANGES VERSION TODO README{,.dag,.linux,.macosx,.septel} + + # remove static libraries (--disable-static does not work) + if ! use static-libs; then + find "${ED}" -name '*.a' -exec rm {} + || die + fi + prune_libtool_files + + # We need this to build pppd on G/FBSD systems + if [[ "${USERLAND}" == "BSD" ]]; then + insinto /usr/include + doins pcap-int.h + fi +} diff --git a/net-libs/nodejs/nodejs-4.6.1.ebuild b/net-libs/nodejs/nodejs-4.6.1.ebuild index 4da7b466d1e4..a28d25c3255b 100644 --- a/net-libs/nodejs/nodejs-4.6.1.ebuild +++ b/net-libs/nodejs/nodejs-4.6.1.ebuild @@ -15,7 +15,7 @@ SRC_URI="https://nodejs.org/dist/v${PV}/node-v${PV}.tar.xz" LICENSE="Apache-1.1 Apache-2.0 BSD BSD-2 MIT" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~x64-macos" +KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86 ~x64-macos" IUSE="cpu_flags_x86_sse2 debug icu +npm snapshot +ssl test" RDEPEND="icu? ( >=dev-libs/icu-55:= ) diff --git a/net-libs/webkit-gtk/Manifest b/net-libs/webkit-gtk/Manifest index 28b42d65de20..03113d13e6fc 100644 --- a/net-libs/webkit-gtk/Manifest +++ b/net-libs/webkit-gtk/Manifest @@ -1,4 +1,3 @@ -DIST webkitgtk-2.10.9.tar.xz 10992980 SHA256 bbb18d741780b1b7fa284beb9a97361ac57cda2e42bad2ae2fcdbf797919e969 SHA512 a8eda5381f227098e208a81c093f0b83f4996378e8f54ddfbe5c164254d7e1ff4a260c827e2521c748ca02bc5a691e8bbd0f59da0718cfe18812c3b257ec5228 WHIRLPOOL c6f36d4195bbd9f97358700ac446ad65d5a426ba7f0913d69163b2f37c1aedc623bdea3650f2ad7da009f1d234c9d54a163e9155794d8218342332b82ead76df -DIST webkitgtk-2.12.3.tar.xz 11706664 SHA256 173cbb9a2eca23eee52e99965483ab25aa9c0569ef5b57041fc0c129cc26c307 SHA512 d1a93c215cd5f2eb4d708b5a3898616d7851c57ccef473864eb5dd556909762a456e180ebe50c793959148490a80b3fe7f21fded7479b406922201ce44acf226 WHIRLPOOL 634ca12fb24355389b38f319dc37c3916af3a8b30bb97471151bf8b1baa38cec3ad0cb0aa4cc5d006b16bb737a5e18cd04e82165d1b8f952b0c018295fdc6aaf DIST webkitgtk-2.12.5.tar.xz 11712488 SHA256 6b147854b864a5f115fadb97b2b6200b2f696db015216a34e7298d11c88b1c40 SHA512 ec98e862c2b8799dead6ff3da8299696f6f68675c42e166ca982a83e804cce14d99196f6a14af574cb0b10166fe353dda3f347a734949efa36592f78c4b07a38 WHIRLPOOL 6913ea8acfcbb16dbaaf5575572aec9f299990c8c270ac62cd1978e8af5690dbde1c6474b0323879c8777724e3ad02e5cccae4aea298550862a5b479a6b1a6c2 +DIST webkitgtk-2.14.1.tar.xz 13415796 SHA256 2e2d76c328de65bed6e0e4f096b2720a366654b27fc1af0830ece90bc4b7ceb5 SHA512 7b39c4f75e2fd8e5e833808597444f495ece70e79dbe49f27e4c6cbc486583954eac66b6b4324db83f2c5c92ef9f9e8f3b2c6c8046d5f326e551aecb989efa28 WHIRLPOOL e1c7db917b9a5db92613771aa98f7e29441a783b5b707c83715720291c68b357b0fc977349b6849e8c6d14b920e009fa45b5e6bf14b86c20f5ace263c33588c7 DIST webkitgtk-2.4.11.tar.xz 9869100 SHA256 588aea051bfbacced27fdfe0335a957dca839ebe36aa548df39c7bbafdb65bf7 SHA512 2e2cf01a52b8593765a0a3c2d7f0ad306121660019eb402226bd2826c7d4666dab4e91ca6ccbd29abe0ad3993549f256ed1ab88de22e9c8516d5f40a4edd6bfb WHIRLPOOL de86c4abfb22aacbf62163d0398158931c9cf6ab628547d3b30e613f0505d67c85c3200f7db96500e7c2b35f640cdaa7f501346fc13f492c9439dff4056849a3 diff --git a/net-libs/webkit-gtk/webkit-gtk-2.10.9.ebuild b/net-libs/webkit-gtk/webkit-gtk-2.10.9.ebuild deleted file mode 100644 index 7b7bc8f37b4f..000000000000 --- a/net-libs/webkit-gtk/webkit-gtk-2.10.9.ebuild +++ /dev/null @@ -1,276 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" -CMAKE_MAKEFILE_GENERATOR="ninja" -GCONF_DEBUG="no" -PYTHON_COMPAT=( python2_7 ) -USE_RUBY="ruby20 ruby21 ruby22 ruby23" - -inherit check-reqs cmake-utils eutils flag-o-matic gnome2 pax-utils python-any-r1 ruby-single toolchain-funcs versionator virtualx - -MY_P="webkitgtk-${PV}" -DESCRIPTION="Open source web browser engine" -HOMEPAGE="http://www.webkitgtk.org/" -SRC_URI="http://www.webkitgtk.org/releases/${MY_P}.tar.xz" - -LICENSE="LGPL-2+ BSD" -SLOT="4/37" # soname version of libwebkit2gtk-4.0 -KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos" - -IUSE="aqua coverage doc +egl +geoloc gles2 gnome-keyring +gstreamer +introspection +jit nsplugin +opengl spell wayland +webgl X" -# seccomp - -# webgl needs gstreamer, bug #560612 -REQUIRED_USE=" - geoloc? ( introspection ) - gles2? ( egl ) - introspection? ( gstreamer ) - nsplugin? ( X ) - webgl? ( ^^ ( gles2 opengl ) ) - !webgl? ( ?? ( gles2 opengl ) ) - webgl? ( gstreamer ) - || ( aqua wayland X ) -" - -# Tests fail to link for inexplicable reasons -# https://bugs.webkit.org/show_bug.cgi?id=148210 -RESTRICT="test" - -# use sqlite, svg by default -# Aqua support in gtk3 is untested -# Dependencies found at Source/cmake/OptionsGTK.cmake -RDEPEND=" - dev-db/sqlite:3= - >=dev-libs/glib-2.36:2 - >=dev-libs/icu-3.8.1-r1:= - >=dev-libs/libxml2-2.8:2 - >=dev-libs/libxslt-1.1.7 - >=media-libs/fontconfig-2.8:1.0 - >=media-libs/freetype-2.4.2:2 - >=media-libs/harfbuzz-0.9.18:=[icu(+)] - >=media-libs/libpng-1.4:0= - media-libs/libwebp:= - >=net-libs/gnutls-3 - >=net-libs/libsoup-2.42:2.4[introspection?] - virtual/jpeg:0= - >=x11-libs/cairo-1.10.2:= - >=x11-libs/gtk+-3.14:3[introspection?] - x11-libs/libnotify - >=x11-libs/pango-1.30.0 - - aqua? ( >=x11-libs/gtk+-3.14:3[aqua] ) - egl? ( media-libs/mesa[egl] ) - geoloc? ( >=app-misc/geoclue-2.1.5:2.0 ) - gles2? ( media-libs/mesa[gles2] ) - gnome-keyring? ( app-crypt/libsecret ) - gstreamer? ( - >=media-libs/gstreamer-1.2:1.0 - >=media-libs/gst-plugins-base-1.2:1.0 - >=media-libs/gst-plugins-bad-1.5.0:1.0[opengl?] ) - introspection? ( >=dev-libs/gobject-introspection-1.32.0:= ) - nsplugin? ( >=x11-libs/gtk+-2.24.10:2 ) - opengl? ( virtual/opengl - x11-libs/cairo[opengl] ) - spell? ( >=app-text/enchant-0.22:= ) - wayland? ( >=x11-libs/gtk+-3.14:3[wayland] ) - webgl? ( - x11-libs/cairo[opengl] - x11-libs/libXcomposite - x11-libs/libXdamage ) - X? ( - x11-libs/cairo[X] - >=x11-libs/gtk+-3.14:3[X] - x11-libs/libX11 - x11-libs/libXcomposite - x11-libs/libXrender - x11-libs/libXt ) -" -# Control knob is private and set to off -# seccomp? ( sys-libs/libseccomp ) - -# paxctl needed for bug #407085 -# Need real bison, not yacc -DEPEND="${RDEPEND} - ${PYTHON_DEPS} - ${RUBY_DEPS} - >=dev-lang/perl-5.10 - >=app-accessibility/at-spi2-core-2.5.3 - >=dev-libs/atk-2.8.0 - dev-libs/hyphen - >=dev-util/gtk-doc-am-1.10 - >=dev-util/gperf-3.0.1 - >=sys-devel/bison-2.4.3 - >=sys-devel/flex-2.5.34 - || ( >=sys-devel/gcc-4.9 >=sys-devel/clang-3.3 ) - sys-devel/gettext - virtual/pkgconfig - - doc? ( >=dev-util/gtk-doc-1.10 ) - geoloc? ( dev-util/gdbus-codegen ) - introspection? ( jit? ( sys-apps/paxctl ) ) - test? ( - dev-lang/python:2.7 - dev-python/pygobject:3[python_targets_python2_7] - x11-themes/hicolor-icon-theme - jit? ( sys-apps/paxctl ) ) -" - -S="${WORKDIR}/${MY_P}" - -CHECKREQS_DISK_BUILD="18G" # and even this might not be enough, bug #417307 - -pkg_pretend() { - if [[ ${MERGE_TYPE} != "binary" ]] ; then - if is-flagq "-g*" && ! is-flagq "-g*0" ; then - einfo "Checking for sufficient disk space to build ${PN} with debugging CFLAGS" - check-reqs_pkg_pretend - fi - - if ! test-flag-CXX -std=c++11 ; then - die "You need at least GCC 4.9.x or Clang >= 3.3 for C++11-specific compiler flags" - fi - - if [[ $(tc-getCXX) == *g++* && $(gcc-version) < 4.9 ]] ; then - die 'The active compiler needs to be gcc 4.9 (or newer)' - fi - fi -} - -pkg_setup() { - if [[ ${MERGE_TYPE} != "binary" ]] && is-flagq "-g*" && ! is-flagq "-g*0" ; then - check-reqs_pkg_setup - fi - - [[ ${MERGE_TYPE} = "binary" ]] || python-any-r1_pkg_setup -} - -src_prepare() { - # https://bugs.gentoo.org/show_bug.cgi?id=555504 - epatch "${FILESDIR}"/${PN}-2.8.5-fix-ia64-build.patch - - # https://bugs.gentoo.org/show_bug.cgi?id=564352 - epatch "${FILESDIR}"/${PN}-2.8.5-fix-alpha-build.patch - - # https://bugs.webkit.org/show_bug.cgi?id=148379 - epatch "${FILESDIR}"/${PN}-2.8.5-webkit2gtkinjectedbundle-j1.patch - - gnome2_src_prepare -} - -src_configure() { - # Respect CC, otherwise fails on prefix #395875 - tc-export CC - - # Arches without JIT support also need this to really disable it in all places - use jit || append-cppflags -DENABLE_JIT=0 -DENABLE_YARR_JIT=0 -DENABLE_ASSEMBLER=0 - - # It does not compile on alpha without this in LDFLAGS - # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=648761 - use alpha && append-ldflags "-Wl,--no-relax" - - # ld segfaults on ia64 with LDFLAGS --as-needed, bug #555504 - use ia64 && append-ldflags "-Wl,--no-as-needed" - - # Sigbuses on SPARC with mcpu and co., bug #??? - use sparc && filter-flags "-mvis" - - # https://bugs.webkit.org/show_bug.cgi?id=42070 , #301634 - use ppc64 && append-flags "-mminimal-toc" - - # Try to use less memory, bug #469942 (see Fedora .spec for reference) - # --no-keep-memory doesn't work on ia64, bug #502492 - if ! use ia64; then - append-ldflags "-Wl,--no-keep-memory" - fi - if ! tc-ld-is-gold ; then - append-ldflags "-Wl,--reduce-memory-overheads" - fi - - # older glibc needs this for INTPTR_MAX, bug #533976 - if has_version "= 3.3 for C++11-specific compiler flags" fi - if [[ $(tc-getCXX) == *g++* && $(gcc-version) < 4.9 ]] ; then + if tc-is-gcc && [[ $(gcc-version) < 4.9 ]] ; then die 'The active compiler needs to be gcc 4.9 (or newer)' fi fi @@ -143,18 +140,18 @@ pkg_setup() { check-reqs_pkg_setup fi - [[ ${MERGE_TYPE} = "binary" ]] || python-any-r1_pkg_setup + python-any-r1_pkg_setup } src_prepare() { # https://bugs.gentoo.org/show_bug.cgi?id=555504 - epatch "${FILESDIR}"/${PN}-2.8.5-fix-ia64-build.patch + eapply "${FILESDIR}"/${PN}-2.8.5-fix-ia64-build.patch # https://bugs.gentoo.org/show_bug.cgi?id=564352 - epatch "${FILESDIR}"/${PN}-2.8.5-fix-alpha-build.patch + eapply "${FILESDIR}"/${PN}-2.8.5-fix-alpha-build.patch # https://bugs.webkit.org/show_bug.cgi?id=148379 - epatch "${FILESDIR}"/${PN}-2.8.5-webkit2gtkinjectedbundle-j1.patch + eapply "${FILESDIR}"/${PN}-2.8.5-webkit2gtkinjectedbundle-j1.patch gnome2_src_prepare } @@ -233,25 +230,25 @@ src_configure() { fi local mycmakeargs=( - $(cmake-utils_use_enable aqua QUARTZ_TARGET) - $(cmake-utils_use_enable test API_TESTS) - $(cmake-utils_use_enable doc GTKDOC) - $(cmake-utils_use_enable geoloc GEOLOCATION) + -DENABLE_QUARTZ_TARGET=$(usex aqua) + -DENABLE_API_TESTS=$(usex test) + -DENABLE_GTKDOC=$(usex doc) + -DENABLE_GEOLOCATION=$(usex geolocation) $(cmake-utils_use_find_package gles2 OpenGLES2) - $(cmake-utils_use_enable gles2 GLES2) - $(cmake-utils_use_enable gnome-keyring CREDENTIAL_STORAGE) - $(cmake-utils_use_enable gstreamer VIDEO) - $(cmake-utils_use_enable gstreamer WEB_AUDIO) - $(cmake-utils_use_enable introspection) - $(cmake-utils_use_enable jit) - $(cmake-utils_use_use libnotify) - $(cmake-utils_use_enable nsplugin PLUGIN_PROCESS_GTK2) - $(cmake-utils_use_enable spell SPELLCHECK SPELLCHECK) - $(cmake-utils_use_enable wayland WAYLAND_TARGET) - $(cmake-utils_use_enable webgl WEBGL) + -DENABLE_GLES2=$(usex gles2) + -DENABLE_CREDENTIAL_STORAGE=$(usex gnome-keyring) + -DENABLE_VIDEO=$(usex gstreamer) + -DENABLE_WEB_AUDIO=$(usex gstreamer) + -DENABLE_INTROSPECTION=$(usex introspection) + -DENABLE_JIT=$(usex jit) + -DUSE_LIBNOTIFY=$(usex libnotify) + -DENABLE_PLUGIN_PROCESS_GTK2=$(usex nsplugin) + -DENABLE_SPELLCHECK=$(usex spell) + -DENABLE_WAYLAND_TARGET=$(usex wayland) + -DENABLE_WEBGL=$(usex webgl) $(cmake-utils_use_find_package egl EGL) $(cmake-utils_use_find_package opengl OpenGL) - $(cmake-utils_use_enable X X11_TARGET) + -DENABLE_X11_TARGET=$(usex X) -DENABLE_OPENGL=${opengl_enabled} -DENABLE_ACCELERATED_2D_CANVAS=${canvas_enabled} -DCMAKE_BUILD_TYPE=Release diff --git a/net-libs/webkit-gtk/webkit-gtk-2.4.11.ebuild b/net-libs/webkit-gtk/webkit-gtk-2.4.11.ebuild deleted file mode 100644 index 481850b1e9a4..000000000000 --- a/net-libs/webkit-gtk/webkit-gtk-2.4.11.ebuild +++ /dev/null @@ -1,274 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="6" -PYTHON_COMPAT=( python2_7 ) -USE_RUBY="ruby20 ruby21 ruby22 ruby23" - -inherit autotools check-reqs flag-o-matic gnome2 pax-utils python-any-r1 ruby-single toolchain-funcs versionator virtualx - -MY_P="webkitgtk-${PV}" -DESCRIPTION="Open source web browser engine" -HOMEPAGE="http://www.webkitgtk.org/" -SRC_URI="http://www.webkitgtk.org/releases/${MY_P}.tar.xz" - -LICENSE="LGPL-2+ BSD" -SLOT="3/25" # soname version of libwebkit2gtk-3.0 -KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos" - -IUSE="aqua coverage debug +egl +geoloc gles2 gnome-keyring +gstreamer +introspection +jit +opengl spell wayland +webgl +X" -# bugs 372493, 416331 -REQUIRED_USE=" - geoloc? ( introspection ) - gles2? ( egl ) - introspection? ( gstreamer ) - webgl? ( ^^ ( gles2 opengl ) ) - !webgl? ( ?? ( gles2 opengl ) ) - || ( aqua wayland X ) -" - -# use sqlite, svg by default -# Aqua support in gtk3 is untested -# gtk2 is needed for plugin process support -# gtk3-3.10 required for wayland -RDEPEND=" - dev-db/sqlite:3= - >=dev-libs/glib-2.36:2 - >=dev-libs/icu-3.8.1-r1:= - >=dev-libs/libxml2-2.6:2 - >=dev-libs/libxslt-1.1.7 - >=media-libs/fontconfig-2.5:1.0 - >=media-libs/freetype-2.4.2:2 - >=media-libs/harfbuzz-0.9.7:=[icu(+)] - >=media-libs/libpng-1.4:0= - media-libs/libwebp:= - >=net-libs/libsoup-2.42:2.4[introspection?] - virtual/jpeg:0= - >=x11-libs/cairo-1.10:=[X?] - >=x11-libs/gtk+-3.6.0:3[X?,aqua?,introspection?] - >=x11-libs/pango-1.30.0 - - >=x11-libs/gtk+-2.24.10:2 - - egl? ( media-libs/mesa[egl] ) - geoloc? ( >=app-misc/geoclue-2.1.5:2.0 ) - gles2? ( media-libs/mesa[gles2] ) - gnome-keyring? ( app-crypt/libsecret ) - gstreamer? ( - >=media-libs/gstreamer-1.2:1.0 - >=media-libs/gst-plugins-base-1.2:1.0 ) - introspection? ( >=dev-libs/gobject-introspection-1.32.0:= ) - opengl? ( virtual/opengl ) - spell? ( >=app-text/enchant-0.22:= ) - wayland? ( >=x11-libs/gtk+-3.10:3[wayland] ) - webgl? ( - x11-libs/cairo[opengl] - x11-libs/libXcomposite - x11-libs/libXdamage ) - X? ( - x11-libs/libX11 - x11-libs/libXrender - x11-libs/libXt ) -" - -# paxctl needed for bug #407085 -# Need real bison, not yacc -DEPEND="${RDEPEND} - ${PYTHON_DEPS} - ${RUBY_DEPS} - >=dev-lang/perl-5.10 - >=app-accessibility/at-spi2-core-2.5.3 - >=dev-libs/atk-2.8.0 - >=dev-util/gtk-doc-am-1.10 - >=dev-util/gperf-3.0.1 - >=sys-devel/bison-2.4.3 - >=sys-devel/flex-2.5.34 - || ( >=sys-devel/gcc-4.7 >=sys-devel/clang-3.3 ) - sys-devel/gettext - >=sys-devel/make-3.82-r4 - virtual/pkgconfig - - geoloc? ( dev-util/gdbus-codegen ) - introspection? ( jit? ( sys-apps/paxctl ) ) - test? ( - dev-lang/python:2.7 - dev-python/pygobject:3[python_targets_python2_7] - x11-themes/hicolor-icon-theme - jit? ( sys-apps/paxctl ) ) -" - -S="${WORKDIR}/${MY_P}" - -CHECKREQS_DISK_BUILD="18G" # and even this might not be enough, bug #417307 - -pkg_pretend() { - if [[ ${MERGE_TYPE} != "binary" ]] && is-flagq "-g*" && ! is-flagq "-g*0" ; then - einfo "Checking for sufficient disk space to build ${PN} with debugging CFLAGS" - check-reqs_pkg_pretend - fi - - if [[ ${MERGE_TYPE} != "binary" ]] && ! test-flag-CXX -std=c++11; then - die "You need at least GCC 4.7.x or Clang >= 3.3 for C++11-specific compiler flags" - fi -} - -pkg_setup() { - # Check whether any of the debugging flags is enabled - if [[ ${MERGE_TYPE} != "binary" ]] && is-flagq "-g*" && ! is-flagq "-g*0" ; then - if is-flagq "-ggdb" && [[ ${WEBKIT_GTK_GGDB} != "yes" ]]; then - replace-flags -ggdb -g - ewarn "Replacing \"-ggdb\" with \"-g\" in your CFLAGS." - ewarn "Building ${PN} with \"-ggdb\" produces binaries which are too" - ewarn "large for current binutils releases (bug #432784) and has very" - ewarn "high temporary build space and memory requirements." - ewarn "If you really want to build ${PN} with \"-ggdb\", add" - ewarn "WEBKIT_GTK_GGDB=yes" - ewarn "to your make.conf file." - fi - einfo "You need to have at least 18GB of temporary build space available" - einfo "to build ${PN} with debugging CFLAGS. Note that it might still" - einfo "not be enough, as the total space requirements depend on the flags" - einfo "(-ggdb vs -g1) and enabled features." - check-reqs_pkg_setup - fi - - [[ ${MERGE_TYPE} = "binary" ]] || python-any-r1_pkg_setup -} - -src_prepare() { - # intermediate MacPorts hack while upstream bug is not fixed properly - # https://bugs.webkit.org/show_bug.cgi?id=28727 - use aqua && eapply "${FILESDIR}"/${PN}-1.6.1-darwin-quartz.patch - - # Leave optimization level to user CFLAGS - # FORTIFY_SOURCE is enabled by default in Gentoo - sed -e 's/-O[012]//g' \ - -e 's/-D_FORTIFY_SOURCE=2//g' \ - -i Source/autotools/SetupCompilerFlags.m4 || die - - # bug #459978, upstream bug #113397 - eapply "${FILESDIR}"/${PN}-1.11.90-gtk-docize-fix.patch - - # Debian patches to fix support for some arches - # https://bugs.webkit.org/show_bug.cgi?id=129540 - eapply "${FILESDIR}"/${PN}-2.2.5-{hppa,ia64}-platform.patch - # https://bugs.webkit.org/show_bug.cgi?id=129542 - eapply "${FILESDIR}"/${PN}-2.4.1-ia64-malloc.patch - - # Fix building on ppc (from OpenBSD, only needed on slot 3) - # https://bugs.webkit.org/show_bug.cgi?id=130837 - eapply "${FILESDIR}"/${PN}-2.4.4-atomic-ppc.patch - - # Fix build with recent libjpeg, bug #481688 - # https://bugs.webkit.org/show_bug.cgi?id=122412 - eapply "${FILESDIR}"/${PN}-2.4.4-jpeg-9a.patch - - # Fix building with --disable-webgl, bug #500966 - # https://bugs.webkit.org/show_bug.cgi?id=131267 - eapply "${FILESDIR}"/${PN}-2.4.7-disable-webgl.patch - - # https://bugs.webkit.org/show_bug.cgi?id=156510 - eapply "${FILESDIR}"/${PN}-2.4.11-video-web-audio.patch - - # https://bugs.webkit.org/show_bug.cgi?id=159124#c1 - eapply "${FILESDIR}"/${PN}-2.4.9-gcc-6.patch - - AT_M4DIR=Source/autotools eautoreconf - - gnome2_src_prepare -} - -src_configure() { - # Respect CC, otherwise fails on prefix #395875 - tc-export CC - - # Arches without JIT support also need this to really disable it in all places - use jit || append-cppflags -DENABLE_JIT=0 -DENABLE_YARR_JIT=0 -DENABLE_ASSEMBLER=0 - - # It does not compile on alpha without this in LDFLAGS - # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=648761 - use alpha && append-ldflags "-Wl,--no-relax" - - # Sigbuses on SPARC with mcpu and co., bug #??? - use sparc && filter-flags "-mvis" - - # https://bugs.webkit.org/show_bug.cgi?id=42070 , #301634 - use ppc64 && append-flags "-mminimal-toc" - - # Try to use less memory, bug #469942 (see Fedora .spec for reference) - # --no-keep-memory doesn't work on ia64, bug #502492 - if ! use ia64; then - append-ldflags "-Wl,--no-keep-memory" - fi - if ! $(tc-getLD) --version | grep -q "GNU gold"; then - append-ldflags "-Wl,--reduce-memory-overheads" - fi - - local ruby_interpreter="" - - if has_version "virtual/rubygems[ruby_targets_ruby23]"; then - ruby_interpreter="RUBY=$(type -P ruby23)" - elif has_version "virtual/rubygems[ruby_targets_ruby22]"; then - ruby_interpreter="RUBY=$(type -P ruby22)" - elif has_version "virtual/rubygems[ruby_targets_ruby21]"; then - ruby_interpreter="RUBY=$(type -P ruby21)" - else - ruby_interpreter="RUBY=$(type -P ruby20)" - fi - - # TODO: Check Web Audio support - # should somehow let user select between them? - # - # * Aqua support in gtk3 is untested - # * dependency-tracking is required so parallel builds won't fail - gnome2_src_configure \ - $(use_enable aqua quartz-target) \ - $(use_enable coverage) \ - $(use_enable debug) \ - $(use_enable egl) \ - $(use_enable geoloc geolocation) \ - $(use_enable gles2) \ - $(use_enable gnome-keyring credential_storage) \ - $(use_enable gstreamer video) \ - $(use_enable gstreamer web-audio) \ - $(use_enable introspection) \ - $(use_enable jit) \ - $(use_enable opengl glx) \ - $(use_enable spell spellcheck) \ - $(use_enable webgl) \ - $(use_enable webgl accelerated-compositing) \ - $(use_enable wayland wayland-target) \ - $(use_enable X x11-target) \ - --with-gtk=3.0 \ - --enable-dependency-tracking \ - --disable-gtk-doc \ - ${ruby_interpreter} -} - -src_test() { - # Tests expect an out-of-source build in WebKitBuild - ln -s . WebKitBuild || die "ln failed" - - # Prevents test failures on PaX systems - use jit && pax-mark m $(list-paxables Programs/*[Tt]ests/*) # Programs/unittests/.libs/test* - - # Tests need virtualx, bug #294691, bug #310695 - # Parallel tests sometimes fail - virtx emake -j1 check -} - -src_install() { - DOCS="ChangeLog NEWS" # other ChangeLog files handled by src_install - - # https://bugs.webkit.org/show_bug.cgi?id=129242 - MAKEOPTS="${MAKEOPTS} -j1" gnome2_src_install - - newdoc Source/WebKit/gtk/ChangeLog ChangeLog.gtk - newdoc Source/JavaScriptCore/ChangeLog ChangeLog.JavaScriptCore - newdoc Source/WebCore/ChangeLog ChangeLog.WebCore - - # Prevents crashes on PaX systems, bug #522808 - use jit && pax-mark m "${ED}usr/bin/jsc-3" "${ED}usr/libexec/WebKitWebProcess" - pax-mark m "${ED}usr/libexec/WebKitPluginProcess" -} diff --git a/net-misc/tor/tor-0.2.8.9.ebuild b/net-misc/tor/tor-0.2.8.9.ebuild index ee36db79dda2..bca7cbb90dfe 100644 --- a/net-misc/tor/tor-0.2.8.9.ebuild +++ b/net-misc/tor/tor-0.2.8.9.ebuild @@ -16,7 +16,7 @@ S="${WORKDIR}/${MY_PF}" LICENSE="BSD GPL-2" SLOT="0" -KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos" +KEYWORDS="amd64 ~arm ~mips ~ppc ~ppc64 ~sparc x86 ~ppc-macos" IUSE="-bufferevents libressl scrypt seccomp selinux stats systemd tor-hardening transparent-proxy test web" DEPEND=" diff --git a/net-misc/youtube-dl/Manifest b/net-misc/youtube-dl/Manifest index 2e7ffaff0b1e..144890197b2d 100644 --- a/net-misc/youtube-dl/Manifest +++ b/net-misc/youtube-dl/Manifest @@ -1,4 +1,4 @@ DIST youtube-dl-2016.01.01.tar.gz 1874602 SHA256 732f37c99d71b4239d72d61dd32214b5a5a618671fb0629c8f8deb28209a172c SHA512 fdb022bed426250e5ee1c2bcc1354dd195c0f9793ca479ca8ca4cfe2f71e07ba100b0dbcda2fb9f310308ab130587d06b16a6a86f9036f0d196b317d2e5b5e92 WHIRLPOOL 152e709ba15264c35a89644ea0d4793bb47c82b317e54043ccfff72e40bdf95e42d76605e801233632d3863537a945cfb9ecc2f75245171b8de31b51ce6af801 DIST youtube-dl-2016.09.19.tar.gz 2395739 SHA256 276637e83525778a83d0457f6b9fbc29d6109bc8366d43125432ce835d28545e SHA512 a8fb1ce054e25180eab3969c898d976dec157901931b66cddde0fecd55ef322e64c13a70d50de945849cbc4ccbf8be0aede845cbb8ea390bba34f51fec0533bf WHIRLPOOL e58d38e49d58b86d8eb25b40427046955e011bf57b0862c433ebe459c0268905bff67188c03bb612593d15b3d1f3408a95b510ad6f863d0144ee4307ed012aba -DIST youtube-dl-2016.10.19.tar.gz 2437154 SHA256 ed8d4a247c4cfffe2a1171b4f9c20be19e84d96bcf3716f46988c8503b1b7713 SHA512 71858676a333bce651f9166a1003afcedad54952cba792d64bb9797d84dd9dd6eeb5a68dfbdca143934f2ff629f19fb3886f45dcd8c52c167c011b340dfcf4e9 WHIRLPOOL 1008d11f89baa15301195f10cdd260df806cce0a26ca2213036bc3d7f023ad2c0997afa1315fa2200f27d4bc32f23698ad6c2cfe32c78210b8d3eb129e49a7bd DIST youtube-dl-2016.10.21.1.tar.gz 2439260 SHA256 8b768ad99ecdbc08521171456800515df29df8bceb0f1fe1cb8113dd2500d216 SHA512 76c1aab6acaaba2dee298c5fc1c9f7aee5cd497fc67db3c231c938e4a2ea1d01c835a9c3337d4f2620ea80cc3152f910123b895244c2144ca575fb2750382b1a WHIRLPOOL 957af290569bd63af70c83174514ed939bb8a6eb983e07f4a6f17b00381bcf044718d8e2a534eaa01f1b86af8f65fa9e6f691ac15262ded06e2ef588e0449dbe +DIST youtube-dl-2016.10.25.tar.gz 2444760 SHA256 920048c6ff2f7f2c4b55c1ba4810e85f76efd814118e59b3568bdc2c38024697 SHA512 522b24ecb0eb9db12b5d6b9a756e8d758f5085ef4528940c45438bb10ac3b1b7c48a0802f230a24840e7224b57e4b142a24051a9627624fd8949ac44ab7aaa38 WHIRLPOOL c590b801cc4c157f3933bd9a746d8b181204c6c4e42951ce927a0712586f30b75e5396c3bd6451ec5e155d78419e3a71aab1c657cee62a694884af55dfaa5e3b diff --git a/net-misc/youtube-dl/youtube-dl-2016.10.19.ebuild b/net-misc/youtube-dl/youtube-dl-2016.10.25.ebuild similarity index 100% rename from net-misc/youtube-dl/youtube-dl-2016.10.19.ebuild rename to net-misc/youtube-dl/youtube-dl-2016.10.25.ebuild diff --git a/profiles/package.mask b/profiles/package.mask index 411a5264405f..39761501cd21 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -352,11 +352,6 @@ x11-terms/terra # Mask for removal in 30 days. Bug #595754 net-libs/socket++ -# Michael Palimaka (26 Sep 2016) -# No longer maintained by upstream. Unused. -# Masked for removal in 30 days. -kde-apps/kdeartwork-emoticons - # Fabian Groffen (25 Sep 2016) # Mask Exim RCs =mail-mta/exim-4.88_rc2 @@ -437,6 +432,7 @@ kde-apps/kdeartwork-emoticons >=gnome-base/libgtop-2.35 >=gnome-base/nautilus-3.21 >=gnome-extra/evolution-data-server-3.21 +>=gnome-extra/evolution-ews-3.21 >=gnome-extra/gnome-boxes-3.21 >=gnome-extra/gnome-calculator-3.21 >=gnome-extra/gnome-calendar-3.21 diff --git a/profiles/use.local.desc b/profiles/use.local.desc index bbf1c1d0cad7..ad952b4ea6ef 100644 --- a/profiles/use.local.desc +++ b/profiles/use.local.desc @@ -7966,7 +7966,6 @@ www-client/elinks:gc - Enable garbage collection support via dev-libs/boehm-gc www-client/elinks:gopher - Enable support for the gopher protocol www-client/elinks:mouse - Make elinks to grab all mouse events www-client/elinks:xml - Enable support for bookmarks via dev-libs/expat -www-client/epiphany:nss - Import passwords from older gecko based www-client/epiphany keyring. www-client/firefox:bindist - Disable official Firefox branding (icons, name) which are not binary-redistributable according to upstream. www-client/firefox:custom-optimization - Build with user-specified compiler optimizations (-Os, -O0, -O1, -O2, -O3) from CFLAGS (unsupported) www-client/firefox:gmp-autoupdate - Allow Gecko Media Plugins (binary blobs) to be automatically downloaded and kept up-to-date in user profiles diff --git a/sci-mathematics/normaliz/Manifest b/sci-mathematics/normaliz/Manifest index de4b6bfbe20b..627f9a25d442 100644 --- a/sci-mathematics/normaliz/Manifest +++ b/sci-mathematics/normaliz/Manifest @@ -1,3 +1,3 @@ DIST Normaliz2.12.2.zip 6432949 SHA256 230772425b3c9964b9e144c0919c75fac0ec95260a1943c10a8a94eea9d7273e SHA512 fd42071cb87b8efbaf9af0885c173a0583e0b38dedb8821a83225eeebb44060a7b5748c44adfc4faeac20c3a1706071bcb9883cb4447e4a1ff3aeb770bd22038 WHIRLPOOL cb2974e02eac6e6d51c234214a719a24ad2e12d1400f0a6f8aee3e7a4ba3aa2ba053beec65c9032f42726e4dd4f1866820bb5b7b96f7c3d34cd132fcdbdb91af DIST Normaliz3.1.1.zip 5839858 SHA256 192e60d3671d4516c4904b166dec96c5b32c63c0fbaae15d067e25b8d9b6119e SHA512 efa75844542df45d3cff6b6f877f2d6132905b722468b3df5a89468798bf66cbaf33f359000fb462f4d24fb3414f4c293a8ba84112a6712862dd593bb5f314ba WHIRLPOOL 5f9b503899d2d7a8c0367d516b709e45e8d034a70c06a16bbfd680c7c2b070fcc3f686c37473c73ab96c4b99b669e767817190d4882fce2085b47a7bf57de51c -DIST v3.1.2.tar.gz 3075459 SHA256 aa49b0a013014e79d521fc3e3950b2d7a1da44724fe1958bdaf620846cee4d2b SHA512 b903e8391e661685b840ecf85e5a159a274d6106b0151987d853e896fda44080546ccbafafdba253e05f0ce3c7810c90b802e7b9b9e546401deb1ef4641b283d WHIRLPOOL 2b27bd242799500840b9693330fb3d196fd7887877b404fcd3d57bec6b04297fbd03b4688c91bc852e8b173c9d42518dc4688a65631fb2f90a38034fbe87ce8e +DIST v3.1.3.tar.gz 3075453 SHA256 f18f037395596219ee67cf40945903f990a6091fd3eb5dc67120d582e889ae34 SHA512 c7fb1620e758dc59de88f0d7c55f50db0f67be772a00af27205e478f30c3836b7cf012a16a8adfdee3f0367d3adb4e3f887dc7d03793a7ca1601968ddb1946ce WHIRLPOOL 7cc3534b59cf4d6af5c1760038e29171b16577b7e5ef8f76da4504cb5471e147948b0711e5deea059f8c610de87d638208e2c2718cc07fb684440677d9f1bea3 diff --git a/sci-mathematics/normaliz/normaliz-3.1.2.ebuild b/sci-mathematics/normaliz/normaliz-3.1.3.ebuild similarity index 100% rename from sci-mathematics/normaliz/normaliz-3.1.2.ebuild rename to sci-mathematics/normaliz/normaliz-3.1.3.ebuild diff --git a/sys-devel/flex/Manifest b/sys-devel/flex/Manifest index 8309f251b2ed..70779ceb230e 100644 --- a/sys-devel/flex/Manifest +++ b/sys-devel/flex/Manifest @@ -1,3 +1,3 @@ DIST flex-2.5.39.tar.xz 1347436 SHA256 c988bb3ab340aaba16df5a54ab98bb4760599975375c8ac9388a078b7f27e9e8 SHA512 488bfd40043851d6f069333090081cc09c8754cd098dd24655ea705dd381efc4e88080fe8060fe6c790f450695f1b209f7115b154723c203f43b00f4ccfa5bec WHIRLPOOL 6f46ed30ca3a3ac6449170171205031ab821a0d78aaed36c7faf59c12724f8787092ba1a3ea846e359791476da7f9bb007155caac60e696326445c75c5d70dd5 -DIST flex-2.6.0.tar.xz 1369552 SHA256 d39b15a856906997ced252d76e9bfe2425d7503c6ed811669665627b248e4c73 SHA512 9cd48aa79ce70814902745d6e67f677bcc67f23dcc46ebb5f2963efac0d8f6f6c10ee87369d2d7557d29e390a3502dd99246db0fd2e096b9e7bb6e16d51d3abe WHIRLPOOL e44cab6763699a9d4d8af29b8c45c2e5b203a643834730f35e5745d145e5b3a4605506da209aa8e4e087e2e8872926261d0d2f29751d616cc77df36021d753b2 DIST flex-2.6.1.tar.xz 835048 SHA256 2c7a412c1640e094cb058d9b2fe39d450186e09574bebb7aa28f783e3799103f SHA512 1e35d0447f59139b98ede085d1a603d4f61cf8bc11cf2e291a3f492a05c60ee61535481b878585cd6843cd9b3c7952c834adfa78a6a71c64802e7b3069dec9d1 WHIRLPOOL d671017fd516f5d6457a896f1d50d4a4d310d32476a6db8f1ed99305a96955eec7586d8ef2aff1e03795be3f7417e0f1d8925b073788a14abcdd38868822eb67 +DIST flex-2.6.2.tar.gz 1402237 SHA256 9a01437a1155c799b7dc2508620564ef806ba66250c36bf5f9034b1c207cb2c9 SHA512 481fe3f1c370fe04d5a605a826c53dd0afa5b6ea655f0d14fa9bb9cb498c016f68cef8fea806458f07baa7ae5bc1ac729be427cb4e0cc39ce744a809ef6442b3 WHIRLPOOL 24d5b504c0e0bf58118fb358799906a49f2757b45a65a4a95618105dee4978a7e7c4348bd8fa4f6ef44ced24d0622ec702244c3692af2f214c11b0ba0ea510de diff --git a/sys-devel/flex/flex-2.6.0.ebuild b/sys-devel/flex/flex-2.6.2.ebuild similarity index 84% rename from sys-devel/flex/flex-2.6.0.ebuild rename to sys-devel/flex/flex-2.6.2.ebuild index 6fc951f26fe8..9362ddd4da02 100644 --- a/sys-devel/flex/flex-2.6.0.ebuild +++ b/sys-devel/flex/flex-2.6.2.ebuild @@ -1,14 +1,14 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI="5" inherit eutils flag-o-matic multilib-minimal DESCRIPTION="The Fast Lexical Analyzer" -HOMEPAGE="http://flex.sourceforge.net/" -SRC_URI="mirror://sourceforge/flex/${P}.tar.xz" +HOMEPAGE="https://flex.sourceforge.net/ https://github.com/westes/flex" +SRC_URI="https://github.com/westes/${PN}/releases/download/v${PV}/${P}.tar.gz" LICENSE="FLEX" SLOT="0" @@ -23,9 +23,6 @@ DEPEND="${RDEPEND} test? ( sys-devel/bison )" src_prepare() { - epatch "${FILESDIR}"/${P}-out-of-tree-build.patch #567332 - epatch "${FILESDIR}"/${P}-out-of-tree-test.patch #567332 - # Disable running in the tests/ subdir as it has a bunch of built sources # that cannot be made conditional (automake limitation). #568842 if ! use test ; then @@ -76,6 +73,6 @@ multilib_src_install_all() { einstalldocs dodoc ONEWS prune_libtool_files --all - rm "${ED}"/usr/share/doc/${PF}/{COPYING,flex.pdf} || die + rm "${ED}"/usr/share/doc/${PF}/COPYING || die dosym flex /usr/bin/lex } diff --git a/sys-fs/e2fsprogs/Manifest b/sys-fs/e2fsprogs/Manifest index decffd53737d..21618d8c4b6d 100644 --- a/sys-fs/e2fsprogs/Manifest +++ b/sys-fs/e2fsprogs/Manifest @@ -2,4 +2,5 @@ DIST e2fsprogs-1.42.13.tar.gz 6511931 SHA256 59993ff3a44f82e504561e0ebf95e8c8fa9 DIST e2fsprogs-1.42.9-mint-r1.patch.xz 9012 SHA256 3904654080b7f7776e97b703d17e1b59ae1d6f5e0cf32193b86e986bc0a9b396 SHA512 591a7c80d65082eebcdc455028be6ade05c9aae96c94f654106be0facef330a8875dae82891e6e3ad2b48dece2b4e1c1940dbc47cd3eba3e6eea3b5ddba9a8fc WHIRLPOOL ae6fc015fa77bfbde7a4ba2205c014b655e736c4ed5cb63a913245c6c40fa0637b65fa3eec6399dd1793c494892b76e0bbc12ffa6ac9c39d4da27333d8bbf6c7 DIST e2fsprogs-1.43.1.tar.xz 5078696 SHA256 97e36a029224e2606baa6e9ea693b04a4d192ccd714572a1b50a2df9c687b23d SHA512 5bc9c8f992519acaadf44925357ddb03569801e65d889de4bb40a85b61a8d78c9d97bd33fb9c099d3dac8039e837f7c525a84053e17b6c9b296948a39f6f60fd WHIRLPOOL 034d393487fbadabf6e8a75a7a647bfc55f1c762143f2add7e90cd41954350f2f02cf0d6e90ae6ed5034de266420d63e41f713f3b27eac5e9f2a0545b5509e7d DIST e2fsprogs-1.43.2.tar.gz 7389995 SHA256 20085fd43d52b8f81bda259a7df5c2b1a7a745b6fd3d082a2915965dd77f5365 SHA512 4a008f2200024685df37d5fb5c01097ca005d335c7bb2b0c6b2f13db71d9046da7dbbd367ef25800e0e16312bbfdbab603d78ac675581bb39610234002756be4 WHIRLPOOL f6d193b14e1a6b8160d419e78f43981176b1ddcb8edc6d5a2daac12647565948006eb415b332be19b3e8c3e29ea7b4f8583dce1fa9002d9f0968327b2542432d +DIST e2fsprogs-1.43.3-missing_uninit_bg.patch 1317 SHA256 4a4a59215efde3b0b398a19c9e74f73ae9bbbca954cf3e2aaaaa5f0a9f836313 SHA512 bd80dd679245c4d26837fa5a0f7dc6a05560973d912a3fe8f5c3c8c352675496f21c9b775d37fb190a7fbb3fb61882b6d4d6a20b34918cda0bfe65e7d0cce8e8 WHIRLPOOL a03a7461183b08ac178dc7d0c6a230df93d75902b0abc33ec0c7a19d018fdc4264910e688db4708bd16b23d175a3a9928e38c31f8377f7d28352bac83a8cd90f DIST e2fsprogs-1.43.3.tar.gz 7405892 SHA256 ce8ef1bbb0d4730f170167284fda156ac9d6bf18db2750eb94af619a81b19927 SHA512 77e753f77222a0a7a334d7d93c900ea6cb339ed40af29952e414fc4e45d8c5c01d67771978a941195effe666df965746c2b31977c5f05ff307429b978dac8dea WHIRLPOOL c90dea3d01a103b7d11d0611b1b005748065ae90f15a02f3bde4c4baf9403931b40d2024297a2e02a92d11841d35decf8a4715d682212d4641ff34bb2f80d5db diff --git a/sys-fs/e2fsprogs/e2fsprogs-1.43.3.ebuild b/sys-fs/e2fsprogs/e2fsprogs-1.43.3-r1.ebuild similarity index 92% rename from sys-fs/e2fsprogs/e2fsprogs-1.43.3.ebuild rename to sys-fs/e2fsprogs/e2fsprogs-1.43.3-r1.ebuild index 3753e45bd4ee..654b863d0aa0 100644 --- a/sys-fs/e2fsprogs/e2fsprogs-1.43.3.ebuild +++ b/sys-fs/e2fsprogs/e2fsprogs-1.43.3-r1.ebuild @@ -17,6 +17,9 @@ SRC_URI="mirror://sourceforge/e2fsprogs/${PN}-${UP_PV}.tar.gz mirror://kernel/linux/kernel/people/tytso/e2fsprogs/v${UP_PV}/${PN}-${UP_PV}.tar.gz elibc_mintlib? ( mirror://gentoo/${PN}-1.42.9-mint-r1.patch.xz )" +# Fix for bug #598100 +SRC_URI+=" http://git.kernel.org/cgit/fs/ext2/e2fsprogs.git/patch/?id=d33e690fe7a6cbeb51349d9f2c7fb16a6ebec9c2 -> ${PN}-1.43.3-missing_uninit_bg.patch" + LICENSE="GPL-2 BSD" SLOT="0" KEYWORDS="alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 -x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~m68k-mint" @@ -38,6 +41,9 @@ PATCHES=( "${FILESDIR}"/${PN}-1.40-fbsd.patch "${FILESDIR}"/${PN}-1.42.13-fix-build-cflags.patch #516854 "${FILESDIR}"/${PN}-1.43-sysmacros.patch + + # Upstream patches (can usually removed with next version bump) + "${DISTDIR}"/${P}-missing_uninit_bg.patch ) src_prepare() { diff --git a/sys-kernel/hardened-sources/hardened-sources-4.7.10.ebuild b/sys-kernel/hardened-sources/hardened-sources-4.7.10.ebuild index 0c220d9b9ac3..5fa3927e8253 100644 --- a/sys-kernel/hardened-sources/hardened-sources-4.7.10.ebuild +++ b/sys-kernel/hardened-sources/hardened-sources-4.7.10.ebuild @@ -25,7 +25,7 @@ DESCRIPTION="Hardened kernel sources (kernel series ${KV_MAJOR}.${KV_MINOR})" HOMEPAGE="http://www.gentoo.org/proj/en/hardened/" IUSE="deblob" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86" RDEPEND=">=sys-devel/gcc-4.5" diff --git a/sys-kernel/vanilla-sources/Manifest b/sys-kernel/vanilla-sources/Manifest index 2be191331d7c..3d751c112f20 100644 --- a/sys-kernel/vanilla-sources/Manifest +++ b/sys-kernel/vanilla-sources/Manifest @@ -11,10 +11,10 @@ DIST linux-4.8.tar.xz 91966856 SHA256 3e9150065f193d3d94bcf46a1fe9f033c7ef7122ab DIST patch-3.10.104.xz 1334560 SHA256 608f95c32091f45736bbb5011ef5d2fb98743ea373eeadfd31b5de0363b631af SHA512 9d59cd51fdcd25b43eaacfc14b7119a62f55076873f1e35dd9bae89f81de30cef580ba9df5698b7e8ffc68790ae13fa2254f2a7a528849c3143c3cc2ea6ec3ea WHIRLPOOL 151679a249e3f3f833c3203079a61b2299f80617fb560fcda1b9521acef5fe713cceb75009c336c76b497eec715cbfe0a11501c95e3130816aebbb51993169f0 DIST patch-3.12.66.xz 1646892 SHA256 b218cf04a8e28194b0dd1fd497cdab38b4021ae706b11cfb9bb3213e8b17abed SHA512 56d190593417162fbb252daf38579f658fed56f912ff1847067630ebff47bbdad4b4b8b9ae6ddd35aca8e6269679561480e37a2b275d818cc97a8ff8314b4562 WHIRLPOOL 7c3409344ebb4937e1500b67d665c16e2c64ee5139dbf486ff991ff9e70fb022214df556e649f6b2ccb6a572c30b8c9a3de998b6d4c56d28ce6eb01fb83111e4 DIST patch-3.16.38.xz 1301172 SHA256 133d888381c6196ac2163406d66652dd4ab23330b69b90a1a5cbb446f2810a4a SHA512 75fd257d350f3f836e3a9f01d8470579203256abbf6d15e976c71e233297a1553478bb9f3edf8698e7f09c24b1ed7bc189cd4cc43ac83a2182a38ef904b8ebc6 WHIRLPOOL abf0ff04001ce5222a46aac712d9c81c19bea0591b202d56386d80e2fe626749cad1066f22e405cfad80d10448ebd152d9b0a4534dbc21c59d2f5a8b6e186db9 -DIST patch-3.18.43.xz 1053004 SHA256 f30e19811105b8a6936dc10dfd4a93487bf56e51e514bcd551e5092f4fe91a16 SHA512 dcc4f75ffe24a6d3a4d6e6fa00edafa2aa3dc431cfa4aac6254f8fcbf5df779557a9e8698df582df7f3e951ede79ed3fd6c8c94806cfb03a950cb20146a96e79 WHIRLPOOL c99eab348d7c71c3cc3a31cf4dfc747079d0c7853c456835500e6e490ccfd59392df27d6e7043134ccbc100fee07bc6d1d656ac5f3a916dd599a7e6a7e3c1bae +DIST patch-3.18.44.xz 1054032 SHA256 04c8c45d1a8a8085abbfe0b6f7e83fef56a953eda312d23524748536a2011dbb SHA512 171949fcacdea46f7ba7caf5cc78969bf0e1c77128fc5366efa27636f591e0fc522fa7840b9a933f764fce322c7a6ae573f0388031fd8e36c6a223f568958ac0 WHIRLPOOL c42b94e89b1c2b89d0bdd52773c11f87737c5f03a5b97a303c24ad8b3cc1242154adf3d98fdca9cf9958d5eb8454d1c4ae4e8ac1b993e2bfb7b5aa9702ecc2de DIST patch-3.2.83.xz 1620216 SHA256 0f1895f98499ca2a3e0888bb7949e7aa5b704e5bf7e992c8afe1b0142d01d3c8 SHA512 a0c5fd87c25a2170de9a28b6903133042fb49fb4b469e4d8e55cf45e6c80e9f0cf211c4148ae8392042a3c06fb16a94977f867ff519d4143a52080138c02e968 WHIRLPOOL 79ef18d2ac80f96baed3697a66832ce8b13a8877b4714f2576d05d40b9554888e612d3fe8156615a393de8befd445a5acdcaf38fd9b6a75482a56a23cec1a95a DIST patch-3.4.112.xz 1337588 SHA256 01d33e0582be65f75835599ebf659f46c0ad0b7f64b826c78e5402550f2224c8 SHA512 474bb722b4c5adcb81d73df2091f4a0873be01a7f287a34bed7d68b134bcdc8dee3ef7a658f2e9f0e3572bb1ca83ed8b06ece31346fe3685476a1fabb9bc0a2e WHIRLPOOL 5bb15bb566ed73dc5f316d2e57b655733de4263c1bf78f2af61c34097cce49ebf5480d4dffff4748e5725a7ed83dac4230a083135e30b19379ec05ffd84cc96f -DIST patch-4.1.34.xz 899684 SHA256 29a01ed05fec2bb5afb0b3ae53892b545fb0752723ce5a9db2b80558453bb51d SHA512 ed60b105fddc16293923cd6742e33b12cd4ddb83f87702c4e8a09887799a81f86cf454f9dee39c21a0fded4bb6deba94a062810b2eb64584e4d80cc96e36548d WHIRLPOOL c12585b93db6e7bb2aece28001b87415b5d3f32aeaa9706d24c9c145cae6e704fd3fa29465aa9fdcb477469f0d5c6dbd20687556ed49792d524e15faa8ac0714 +DIST patch-4.1.35.xz 901088 SHA256 cb9a7bf8998625e5a2c638745e868e0219315439a68b536c33c0e1607b02202f SHA512 da5ac04585da84c850122e376243fe7aa76fbb0fcffa7e9332d8d8e1854f89fbf18228c15cefd3c7a9ca97124c09b35e07a814af4b5ce6e3453a8e2d6dcf8663 WHIRLPOOL 32904115980075aa750afcd674fa27dfde5f25f26bcbb5db68dfc5a85e5b5588a644e9d0a05396f6201e21fd259159364c71685fba4d1242511e4b9133d9f14e DIST patch-4.4.27.xz 752512 SHA256 578caffa00f5056a921f672c585734cd572b1e3e33227b71a54ef27873f7ea20 SHA512 18d68cb6957eaf06c54ac79766f3e4f87094a54d24e2e0d7578d929a705bc119b5767250c88b5fbae5fc85de05a9d2287fa77dde19669c00a82ebf2f48a4ad2a WHIRLPOOL e0a50d58820e9813140649e355a7bdd3a115dc88a8adf3833e979b74f7a8daaed363a1b9643bbacdd824c872ff3a4ae84bd5c490f488aa609c3ddfc73adc0bc5 DIST patch-4.7.10.xz 251304 SHA256 0ccdd4ccb962d542108a23e83498f07ec981bb629c77e2355ca25297cea47b93 SHA512 574690938d143ca42d4d858c805ddaf03c1242f2a17e836b29e4c5ab80d24177203a1ce9435c5daaf020b4c705946f0db8c14ba23b9d00f743c55736c8bf0124 WHIRLPOOL f6b7fc8c38718bac51eed2f816d1606ca2ae9a9d389d4d4a5aa0dfb95d44fe2a94ecbad1895b4626bec31bcd5d5de327c14b9ca989d12dc2baa5019dfe970369 DIST patch-4.8.4.xz 39264 SHA256 86e246b19253ee3aa971403a5990376a5e33667122f7c8742cc0ee807f204403 SHA512 e4316472bb34e1fe8aa796f8a894781f3c4104b01c90598962a705b1cc35d860412dd1986571d4e59b797cf6b486f12c516668303aa8c82b6599ac30460f8de1 WHIRLPOOL ee3a0e44348247dc70e9e11bb53b2a2f29f87d65a83fd6ba9e5b10c1690240bd8258210582ef0085b7ca07a136bfa72564fb3e049fe2d2ba31b3fa0af9ad75b1 diff --git a/sys-kernel/vanilla-sources/vanilla-sources-3.18.43.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-3.18.44.ebuild similarity index 100% rename from sys-kernel/vanilla-sources/vanilla-sources-3.18.43.ebuild rename to sys-kernel/vanilla-sources/vanilla-sources-3.18.44.ebuild diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.1.34.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-4.1.35.ebuild similarity index 100% rename from sys-kernel/vanilla-sources/vanilla-sources-4.1.34.ebuild rename to sys-kernel/vanilla-sources/vanilla-sources-4.1.35.ebuild diff --git a/sys-power/hibernate-script/Manifest b/sys-power/hibernate-script/Manifest index 02d806959c94..901a0a381d0d 100644 --- a/sys-power/hibernate-script/Manifest +++ b/sys-power/hibernate-script/Manifest @@ -1,2 +1,2 @@ -DIST hibernate-script-2.0-patches-4.tar.bz2 4209 SHA256 525260253be33ee6115d733ceef84de86a9161219c8503c106fa75d62e0ff2c3 SHA512 7fadffe0b749b202c3e26795a8fdbf4861649893132816fed4714543b9caab0185d0005ec02c9e9484ba7392a13ed90722e6beeb4ecf96e0d92cc6918a6cb343 WHIRLPOOL 2b5d276ce1843d2627f506902137945ec45f7be313538c5da48367ab4f523dec59aec5eedb2961446b967e67460eaa7f741f7f806485e4c40bac8b55012fd275 +DIST hibernate-script-2.0-patches-5.tar.bz2 4203 SHA256 592f6069ed18aa23feb93286ec2bd8c0b8577e977647591cc4d3f1636499c219 SHA512 9e9c45c8f9bfde9bfb7d2ab229e355e635ae2f98cfdefa964c07401cdef5e57d0c58976bd491f82a3b9204af213c82f840e0a9b794b2869f2dfe7783dbdb4970 WHIRLPOOL 1df9605be7d8bf4b3f728738420ab5cfaaeb55d566e1f78227f7fc54b977c5469874b008f57a46d866795a3b11d019c16bb24f92f04c37eb9515d031a75e3626 DIST hibernate-script-2.0.tar.gz 84453 SHA256 d04597473a50c6ac072e3a4c22f173a7234a97bc2a39e460e56c5d3d985a6545 SHA512 625efdf8bd8561dd9ab93c09436f2fb93edef2fbb0fb2d259727bacffab0b7bd4a6c99d445131390883be75658f6dd28f329fdaf4f03a7d218c0021223ac1a1e WHIRLPOOL 8dab0108063b0d74d49fd075fdba7c96db7eeb8ebab5054329578b3dfe7adeb0d048db6cedfc238ba374bfa97d689eb8e08eb270ab72d861904487b7dc04dc21 diff --git a/sys-power/hibernate-script/files/hibernate-script-2.0-init.d.patch b/sys-power/hibernate-script/files/hibernate-script-2.0-init.d.patch deleted file mode 100644 index 9d0157d3f6fb..000000000000 --- a/sys-power/hibernate-script/files/hibernate-script-2.0-init.d.patch +++ /dev/null @@ -1,56 +0,0 @@ -diff -Nru hibernate-script-2.0.vanilla/init.d/hibernate-cleanup.sh hibernate-script-2.0/init.d/hibernate-cleanup.sh ---- hibernate-script-2.0.vanilla/init.d/hibernate-cleanup.sh 2009-05-01 23:03:41.000000000 +0100 -+++ hibernate-script-2.0/init.d/hibernate-cleanup.sh 2009-05-01 23:03:55.000000000 +0100 -@@ -1,4 +1,4 @@ --#!/bin/sh -+#!/sbin/openrc-run - - # This script invalidates any stale swsusp and TuxOnIce images. It - # searches all swap partitions on your machine, as well as TuxOnIce's -@@ -91,27 +91,30 @@ - - - msg_status() { -- echo -n "$1" -+ einfon "$1" - } - - msg() { -- echo "$1" -+ einfo "$1" - } - --case "$1" in --start) -- msg_status "Invalidating stale software suspend images... " -+opts="reload" -+ -+depend() { -+ after modules -+ before localmount -+} -+ -+start() { -+ ebegin "Invalidating stale software suspend images" - do_start -- msg "done." -- ;; --stop) -+ eend $? -+} -+ -+stop() { - do_stop -- ;; --restart|force-reload) -- do_reload -- ;; --*) -- msg "Usage: /etc/init.d/hibernate {start|stop|restart|force-reload}" --esac -+} - --exit 0 -+reload() { -+ do_reload -+} diff --git a/sys-power/hibernate-script/hibernate-script-2.0-r6.ebuild b/sys-power/hibernate-script/hibernate-script-2.0-r6.ebuild index 5e8cc089a76d..f01aab2ac0dd 100644 --- a/sys-power/hibernate-script/hibernate-script-2.0-r6.ebuild +++ b/sys-power/hibernate-script/hibernate-script-2.0-r6.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -6,7 +6,7 @@ EAPI=5 inherit eutils -PATCH_VERSION="4" +PATCH_VERSION="5" DESCRIPTION="Hibernate script supporting multiple suspend methods" HOMEPAGE="http://www.tuxonice.net/" diff --git a/www-apps/websvn/websvn-2.3.3-r1.ebuild b/www-apps/websvn/websvn-2.3.3-r1.ebuild index 27275ad7894f..0b5b35778d0f 100644 --- a/www-apps/websvn/websvn-2.3.3-r1.ebuild +++ b/www-apps/websvn/websvn-2.3.3-r1.ebuild @@ -15,7 +15,7 @@ SRC_URI="http://websvn.tigris.org/files/documents/1380/${DOWNLOAD_NUMBER}/${MY_P LICENSE="GPL-2" IUSE="enscript" -KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="amd64 ~ppc ~ppc64 ~sparc x86" DEPEND="" RDEPEND="dev-lang/php:*[xml] diff --git a/www-client/epiphany/Manifest b/www-client/epiphany/Manifest index 006cb3cfed93..6df420c4a6b4 100644 --- a/www-client/epiphany/Manifest +++ b/www-client/epiphany/Manifest @@ -1,2 +1,2 @@ -DIST epiphany-3.18.7.tar.xz 3059580 SHA256 90513aea04d66a4387da076db1b8104b54d3657a81aff2d629b527b32d9eec76 SHA512 a2a47bbe282f089b14ff48e33ec00dc11a66377d2583db3f7f2dc621e6e1d53640bca6861293933e988db200d221b1f36c74e32372fd6a89eeb7c436a8f8e3f2 WHIRLPOOL 05a6b13019daf9c598577300ab6addb934bacadd4c6b62b07c9a4d22dfdb0da686aea5d6dc7b73cdeff6b8e3f2f903b43a802c7707cfc70d42d68b9a728c895f DIST epiphany-3.20.3.tar.xz 2182864 SHA256 4d9de1bdb44c14adf25aa6dc02ea3de60925cff5eb01fe89545e6032c9b424a2 SHA512 853a8efd67374f5550263cf4f102ac680b6b5bf1e948d5bb4448bc3dbe89401034709e391e527bce50a8f210cf2ae525d7f5c8e997fd665946986c5078caf3a9 WHIRLPOOL a7736abe4e121b15f27dc5ca32a7d9f6a26e2526523d605d8394d179e362b99c99067f7a2bc6f36004b9424e0fe295b2f6bb7a294b7dfbcceb7bb0ce3a80420c +DIST epiphany-3.22.1.tar.xz 2285912 SHA256 aab162ede54d71e583e382ab5e3567f28d81e0cd42719a11cad8008b56c5cc0e SHA512 a624196bbe0ec75b441c43a88b83ed7129f69e9e54744aad225d66c53a2cc3b197fbdabf34ee82177d4c55dfb23c0cb7e3862a2e1d368eb2027e0bc85a9a4573 WHIRLPOOL ef9a20d150232bae0e07e009b861fd5b3dc783a4f2cf8425fbeff3c2c9c7c3b2a679a2f8dd908b4208e144cf1a905a590de52c0edd5c582e3168990f2b754f30 diff --git a/www-client/epiphany/epiphany-3.18.7.ebuild b/www-client/epiphany/epiphany-3.22.1.ebuild similarity index 76% rename from www-client/epiphany/epiphany-3.18.7.ebuild rename to www-client/epiphany/epiphany-3.22.1.ebuild index ec2f68f50c3e..3e7f9379320e 100644 --- a/www-client/epiphany/epiphany-3.18.7.ebuild +++ b/www-client/epiphany/epiphany-3.22.1.ebuild @@ -12,29 +12,26 @@ HOMEPAGE="https://wiki.gnome.org/Apps/Web" LICENSE="GPL-2" SLOT="0" -IUSE="nss test" -KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~sparc x86" +IUSE="test" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86" COMMON_DEPEND=" >=app-crypt/gcr-3.5.5:= >=app-crypt/libsecret-0.14 >=app-text/iso-codes-0.35 - >=dev-libs/glib-2.38:2[dbus] + >=dev-libs/glib-2.44.0:2[dbus] >=dev-libs/libxml2-2.6.12:2 >=dev-libs/libxslt-1.1.7 >=gnome-base/gsettings-desktop-schemas-0.0.1 >=net-dns/avahi-0.6.22[dbus] - >=net-libs/webkit-gtk-2.9.5:4 + >=net-libs/webkit-gtk-2.11.4:4= >=net-libs/libsoup-2.48:2.4 - >=x11-libs/gtk+-3.13:3 + >=x11-libs/gtk+-3.19.1:3 >=x11-libs/libnotify-0.5.1:= gnome-base/gnome-desktop:3= dev-db/sqlite:3 - x11-libs/libwnck:3 x11-libs/libX11 - - nss? ( dev-libs/nss ) " # epiphany-extensions support was removed in 3.7; let's not pretend it still works RDEPEND="${COMMON_DEPEND} @@ -42,34 +39,28 @@ RDEPEND="${COMMON_DEPEND} !www-client/epiphany-extensions " # paxctl needed for bug #407085 -# eautoreconf requires gnome-common-3.5.5 DEPEND="${COMMON_DEPEND} app-text/yelp-tools dev-libs/appstream-glib >=dev-util/intltool-0.50 - dev-util/itstool sys-apps/paxctl sys-devel/gettext virtual/pkgconfig " -src_prepare() { - # Fix unittests +PATCHES=( # https://bugzilla.gnome.org/show_bug.cgi?id=751591 - epatch "${FILESDIR}"/${PN}-3.16.0-unittest-1.patch + "${FILESDIR}"/${PN}-3.16.0-unittest-1.patch # https://bugzilla.gnome.org/show_bug.cgi?id=751593 - epatch "${FILESDIR}"/${PN}-3.14.0-unittest-2.patch - - gnome2_src_prepare -} + "${FILESDIR}"/${PN}-3.14.0-unittest-2.patch +) src_configure() { gnome2_src_configure \ --enable-shared \ --disable-static \ --with-distributor-name=Gentoo \ - $(use_enable nss) \ $(use_enable test tests) } diff --git a/www-client/epiphany/metadata.xml b/www-client/epiphany/metadata.xml index bdde0187f0f9..39980802b1da 100644 --- a/www-client/epiphany/metadata.xml +++ b/www-client/epiphany/metadata.xml @@ -5,7 +5,4 @@ gnome@gentoo.org Gentoo GNOME Desktop - - Import passwords from older gecko based www-client/epiphany keyring. - diff --git a/x11-libs/vte/Manifest b/x11-libs/vte/Manifest index 6ae81c0a5146..bb876b25f00f 100644 --- a/x11-libs/vte/Manifest +++ b/x11-libs/vte/Manifest @@ -3,3 +3,4 @@ DIST vte-0.36.5.tar.xz 1017504 SHA256 c2c2ce9640f08b07667f1037862fe991081495446b DIST vte-0.40.2.tar.xz 923852 SHA256 9b68fbc16b27f2d79e6271f2b0708808594ac5acf979d0fccea118608199fd2d SHA512 06d1c9a34e8e82e1bd54810d245d908ebb837538ba19fbaabe683cdf3b96b7cb1630516ddeabf18b0294922b8d98d2b9a2f5028c171fac2ad913974d94555eb2 WHIRLPOOL 2499e01c2b0d38645b61d4c0a1814d7a3196df6d300577380f1e622c06a974a4cd0d9799fff35f1b0680603aa3a0be38730991ace83df90bfb265009873c5858 DIST vte-0.42.5.tar.xz 928136 SHA256 53cc15c5315d73b69f7848e07a5c512cd40b7caf0323e3d0e0d75d7ae65deee7 SHA512 7e8b0730dc9f281c928c50225bb8e57b365408153aed8e7efe8c57f33124e2c64c62713ed62991db41f0df4cbfd3e4c9a49a62c0330b62cbe2fcf1ea8eae7acc WHIRLPOOL 901bacd032078299a7f8b93f63f45b8ff1b9e3ac0cc6dc9d5ef8ad63fc4399d30b32ba3a2022ee9db2fcfa400a731b2a0b4ed40add4934e9cd2de0ce1ac56817 DIST vte-0.44.2.tar.xz 974596 SHA256 a1ea594814bb136a3a9a6c7656b46240571f6a198825c1111007fe99194b0949 SHA512 98db3c1528d5f458164e2d30056cd816e5943d9c569551878119e79d4fbca1865e52667393bf298f32fd54710d1b268a5aac125222ecb29ce854522be3776356 WHIRLPOOL 62830dc20a3aa29f4c13b3370d960f5522bb42231b68f426b2b662a40c4c8265f9d8a76c4e598cdfd5c8d8c5f712d3d9828f5f2ed5e24182f9be8697debe2ca6 +DIST vte-0.46.0.tar.xz 992884 SHA256 5f7122e7860eb2470d310fc63df91d3ee32bab233729c2dc181a0cbc9b3249d7 SHA512 543cdba5c51c5384e54fc372924c2667ded952cbc8ffafb7ff62f8643c6a7e2440439109eb12378ed70b0e0a256d3ef97d6da004dd8088d36bccdd7fa16593f9 WHIRLPOOL 931190c55e52a2f3eca853f8d466acd4361dc0736f36b624ed1e8431f48158e618ddff0265bd8aff5154afdf1e1eef2652c58051d7839dd50071d606f4fc9cad diff --git a/x11-libs/vte/vte-0.46.0.ebuild b/x11-libs/vte/vte-0.46.0.ebuild new file mode 100644 index 000000000000..d3b877ab97e4 --- /dev/null +++ b/x11-libs/vte/vte-0.46.0.ebuild @@ -0,0 +1,80 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="6" +VALA_USE_DEPEND="vapigen" + +inherit eutils gnome2 vala + +DESCRIPTION="Library providing a virtual terminal emulator widget" +HOMEPAGE="https://wiki.gnome.org/action/show/Apps/Terminal/VTE" + +LICENSE="LGPL-2+" +SLOT="2.91" +IUSE="+crypt debug glade +introspection vala" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~x64-solaris ~x86-solaris" +REQUIRED_USE="vala? ( introspection )" + +RDEPEND=" + >=dev-libs/glib-2.40:2 + >=dev-libs/libpcre2-10.21 + >=x11-libs/gtk+-3.8:3[introspection?] + >=x11-libs/pango-1.22.0 + + sys-libs/ncurses:0= + sys-libs/zlib + + crypt? ( >=net-libs/gnutls-3.2.7 ) + glade? ( >=dev-util/glade-3.9:3.10 ) + introspection? ( >=dev-libs/gobject-introspection-0.9.0:= ) +" +DEPEND="${RDEPEND} + dev-libs/libxml2 + >=dev-util/gtk-doc-am-1.13 + >=dev-util/intltool-0.35 + sys-devel/gettext + virtual/pkgconfig + + vala? ( $(vala_depend) ) +" +RDEPEND="${RDEPEND} + !x11-libs/vte:2.90[glade] +" + +src_prepare() { + use vala && vala_src_prepare + + # build fails because of -Werror with gcc-5.x + sed -e 's#-Werror=format=2#-Wformat=2#' -i configure || die "sed failed" + + gnome2_src_prepare +} + +src_configure() { + local myconf="" + + if [[ ${CHOST} == *-interix* ]]; then + myconf="${myconf} --disable-Bsymbolic" + + # interix stropts.h is empty... + export ac_cv_header_stropts_h=no + fi + + # Python bindings are via gobject-introspection + # Ex: from gi.repository import Vte + gnome2_src_configure \ + --disable-test-application \ + --disable-static \ + $(use_enable debug) \ + $(use_enable glade glade-catalogue) \ + $(use_with crypt gnutls) \ + $(use_enable introspection) \ + $(use_enable vala) \ + ${myconf} +} + +src_install() { + gnome2_src_install + mv "${D}"/etc/profile.d/vte{,-${SLOT}}.sh || die +} diff --git a/x11-terms/gnome-terminal/Manifest b/x11-terms/gnome-terminal/Manifest index 02ccfcb75d9e..45e63c581179 100644 --- a/x11-terms/gnome-terminal/Manifest +++ b/x11-terms/gnome-terminal/Manifest @@ -1,4 +1,2 @@ -DIST gnome-terminal-3.16.2.tar.xz 1798620 SHA256 9df7bab7bfd15ca9a3c60612e425baaf5c8b32ba181619f740b7129a0768f4e0 SHA512 06327569de64ec9d1a045ea191edaabfe80e62dc55b5b8722d36e9d419f8d0cdfda29503f4aec68ae61798d77269ad902864eee8609369da31315368a9ab254f WHIRLPOOL 559833e2080c784080e001260a732fa480f187d17a8d1d069253175b9afd053d4fbd1d7a557442c467b915d31432e50bb4f0f9a94699fb3ed95810fb5f32b56e -DIST gnome-terminal-3.18.2.tar.xz 1836144 SHA256 5e35c0fa1395258bab83952cfabe4c1828b8655bcd761f8faed70b452bd89efa SHA512 9fb3e15d90990e1c066a71a34657845a3a3531dcda928f5a61477528df3bd65125fcf28dfd278535e844ebf57fae738451cb5e6f0118bb75bedb98e92624ad41 WHIRLPOOL b8bfc15e37d7bc959057d0beff227f4724f046d3777f4e9111fae469891e37dce8bb6c296191822f55458b06b62dd84ba213b6345ff189861b0ddeddf2b3d14f -DIST gnome-terminal-3.18.3.tar.xz 1845452 SHA256 14c2fce1c6a80a3fb0cc8666d7752228adcb60d199634ab69150de32e3c17d56 SHA512 3375038f69f3dbe2dee49c0835dd7ed8bd787e5a9ca59a905b737d6482d9a0ba27e4d98558b37bcb5561d143dfa8bed5613d4f9a46ae3a420e5a80803a88f756 WHIRLPOOL 04e0fdc12d18b14cfe41c50a43ca2a1d2107be2d23b17fc88189964e002b24ce812c0ec0a247c6eb8ade4bef89e537f475e7a318b26e4cbcb0f89a0fab4bdf52 DIST gnome-terminal-3.20.2.tar.xz 1897148 SHA256 f5383060730f1de70af35e917f82d5b6a14d963ad9cfd6a0e705f90011645a23 SHA512 fe56d5a72580830232880b8e1752b5b268cf559ec9c031382b3631af4b9f2f1b7f661cc22df2643e0d50e66f8595a625e000f6068b16b8c5c9b6e9256a1db79a WHIRLPOOL 4909f016d75ff74705b6d3c92f1f7f3dbfad09ed6172895b1ca3eb455940c57c181a001907cccf78997e49509eb0dd90c7a640e2a3aeeff662ca1fee207f80d1 +DIST gnome-terminal-3.22.0.tar.xz 1931164 SHA256 97e6b1b4128ac133d8917b3940c71ddf9b89d189c5ac8402b1060126733993ed SHA512 71cdac0cec2fdcb43519aad6067c009a122e187fb4bf146cea90a3146338fd3b443aa27a7110c2a66324aa2239fe1c5e3326ad312be840369dbea066a2a2c93a WHIRLPOOL 5d4f95141230facf07870fce6b0a5d564b38b25555ef6f1f84b19ea480a4947db1f670bb844d271bfd0bdb329a255b71cddd60f8e64eec2f899452b3e2b3ff27 diff --git a/x11-terms/gnome-terminal/files/gnome-terminal-3.16.2-restore-dark.patch b/x11-terms/gnome-terminal/files/gnome-terminal-3.16.2-restore-dark.patch deleted file mode 100644 index 0b98c35cd148..000000000000 --- a/x11-terms/gnome-terminal/files/gnome-terminal-3.16.2-restore-dark.patch +++ /dev/null @@ -1,196 +0,0 @@ -From 7da7309d203e51fb03c002f87a9a6ddd8ee67978 Mon Sep 17 00:00:00 2001 -From: Debarshi Ray -Date: Tue, 17 Feb 2015 13:22:11 +0100 -Subject: [PATCH 1/2] Revert "prefs: Remove dark theme pref" - -This reverts commit 5f6c514a8840a5d1b87a8c399defee3b5052ec18. ---- - src/org.gnome.Terminal.gschema.xml | 5 +++++ - src/preferences.ui | 16 ++++++++++++++++ - src/terminal-app.c | 4 ++++ - src/terminal-prefs.c | 9 ++++++++- - src/terminal-schemas.h | 1 + - 5 files changed, 34 insertions(+), 1 deletion(-) - -diff --git a/src/org.gnome.Terminal.gschema.xml b/src/org.gnome.Terminal.gschema.xml -index 051bdc4..95c5405 100644 ---- a/src/org.gnome.Terminal.gschema.xml -+++ b/src/org.gnome.Terminal.gschema.xml -@@ -656,6 +656,11 @@ - Whether to show the menubar in new windows - - -+ -+ false -+ Whether to use a dark theme variant -+ -+ - - 'window' - Whether to open new terminals as windows or tabs -diff --git a/src/preferences.ui b/src/preferences.ui -index f64a11b..df82508 100644 ---- a/src/preferences.ui -+++ b/src/preferences.ui -@@ -139,6 +139,22 @@ - - - -+ -+ Use _dark theme variant -+ True -+ True -+ False -+ True -+ 0 -+ True -+ -+ -+ False -+ True -+ 3 -+ -+ -+ - - True - False -diff --git a/src/terminal-app.c b/src/terminal-app.c -index 8a9434f..95302c5 100644 ---- a/src/terminal-app.c -+++ b/src/terminal-app.c -@@ -362,6 +362,10 @@ terminal_app_init (TerminalApp *app) - - /* Terminal global settings */ - app->global_settings = g_settings_new (TERMINAL_SETTING_SCHEMA); -+ g_settings_bind (app->global_settings, TERMINAL_SETTING_DARK_THEME_KEY, -+ gtk_settings_get_default (), -+ "gtk-application-prefer-dark-theme", -+ G_SETTINGS_BIND_GET); - - /* Check if we need to migrate from gconf to dconf */ - maybe_migrate_settings (app); -diff --git a/src/terminal-prefs.c b/src/terminal-prefs.c -index 97f6c33..a57dde6 100644 ---- a/src/terminal-prefs.c -+++ b/src/terminal-prefs.c -@@ -562,7 +562,7 @@ terminal_prefs_show_preferences (GtkWindow *transient_parent, - GtkWidget *show_menubar_button, *disable_mnemonics_button, *disable_menu_accel_button; - GtkWidget *disable_shortcuts_button; - GtkWidget *tree_view_container, *new_button, *edit_button, *clone_button, *remove_button; -- GtkWidget *new_terminal_mode_combo; -+ GtkWidget *dark_theme_button, *new_terminal_mode_combo; - GtkWidget *default_hbox, *default_label; - GtkTreeSelection *selection; - GSettings *settings; -@@ -583,6 +583,7 @@ terminal_prefs_show_preferences (GtkWindow *transient_parent, - "preferences-dialog", - "preferences-dialog", &dialog, - "default-show-menubar-checkbutton", &show_menubar_button, -+ "dark-theme-checkbutton", &dark_theme_button, - "new-terminal-mode-combobox", &new_terminal_mode_combo, - "disable-mnemonics-checkbutton", &disable_mnemonics_button, - "disable-shortcuts-checkbutton", &disable_shortcuts_button, -@@ -613,6 +614,12 @@ terminal_prefs_show_preferences (GtkWindow *transient_parent, - G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET); - - g_settings_bind (settings, -+ TERMINAL_SETTING_DARK_THEME_KEY, -+ dark_theme_button, -+ "active", -+ G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET); -+ -+ g_settings_bind (settings, - TERMINAL_SETTING_NEW_TERMINAL_MODE_KEY, - new_terminal_mode_combo, - "active-id", -diff --git a/src/terminal-schemas.h b/src/terminal-schemas.h -index 0fcbf52..c6acd7c 100644 ---- a/src/terminal-schemas.h -+++ b/src/terminal-schemas.h -@@ -69,6 +69,7 @@ G_BEGIN_DECLS - - #define TERMINAL_SETTING_CONFIRM_CLOSE_KEY "confirm-close" - #define TERMINAL_SETTING_DEFAULT_SHOW_MENUBAR_KEY "default-show-menubar" -+#define TERMINAL_SETTING_DARK_THEME_KEY "dark-theme" - #define TERMINAL_SETTING_ENABLE_MENU_BAR_ACCEL_KEY "menu-accelerator-enabled" - #define TERMINAL_SETTING_ENABLE_MNEMONICS_KEY "mnemonics-enabled" - #define TERMINAL_SETTING_ENABLE_SHORTCUTS_KEY "shortcuts-enabled" --- -2.1.0 - - -From 9fc68b087180e48cb4e2275f3134f66f2c43de14 Mon Sep 17 00:00:00 2001 -From: Debarshi Ray -Date: Tue, 17 Feb 2015 13:22:21 +0100 -Subject: [PATCH 2/2] Revert "help: Remove dark theme pref" - -This reverts commit baaca6a4cc5ca78d7b0e02cfaee6c159bad7ce4b. ---- - help/C/pref-theme.page | 41 +++++++++++++++++++++++++++++++++++++++++ - help/Makefile.am | 1 + - 2 files changed, 42 insertions(+) - create mode 100644 help/C/pref-theme.page - -diff --git a/help/C/pref-theme.page b/help/C/pref-theme.page -new file mode 100644 -index 0000000..a997d14 ---- /dev/null -+++ b/help/C/pref-theme.page -@@ -0,0 +1,41 @@ -+ -+ -+ -+ -+ -+ -+ -+ Ekaterina Gerasimova -+ kittykat3756@gmail.com -+ 2014 -+ -+ -+ -+ -+ -+ Use either the light or dark theme for Terminal. -+ -+ -+ Chose the window theme -+ -+

You can chose to use either the dark theme or the light theme for the -+ terminal window.

-+ -+ -+ -+

Select -+ EditPreferencesGeneral.

-+
-+ -+

To use the dark theme, select Use dark theme variant.

-+
-+
-+ -+
-diff --git a/help/Makefile.am b/help/Makefile.am -index 33389c5..9c02a74 100644 ---- a/help/Makefile.am -+++ b/help/Makefile.am -@@ -35,6 +35,7 @@ HELP_FILES = \ - pref-profile-encoding.page \ - pref-scrolling.page \ - pref-tab-window.page \ -+ pref-theme.page \ - pref-user-input.page \ - profile.page \ - prob-reset.page \ --- -2.1.0 - diff --git a/x11-terms/gnome-terminal/files/gnome-terminal-3.16.2-restore-transparency.patch b/x11-terms/gnome-terminal/files/gnome-terminal-3.16.2-restore-transparency.patch deleted file mode 100644 index 56bebcdfb9f6..000000000000 --- a/x11-terms/gnome-terminal/files/gnome-terminal-3.16.2-restore-transparency.patch +++ /dev/null @@ -1,1604 +0,0 @@ -From 181dca2c0b50af1326a84e1ec0134afab88ff5b2 Mon Sep 17 00:00:00 2001 -From: Debarshi Ray -Date: Mon, 12 May 2014 14:57:18 +0200 -Subject: [PATCH 1/3] Restore transparency - -The transparency settings were removed as a side effect of -2bff4b63ed3ceef6055e35563e9b0b33ad57349d - -This restores them and you will need a compositing window manager to -use it. The background image setting, also known as faux transparency, -was not restored. - -The transparency checkbox lost its mnemonic accelerator because 't' -is already taken and using any other letter would make it hard to -restore the translations of the string. ---- - src/org.gnome.Terminal.gschema.xml | 10 +++++ - src/profile-editor.c | 11 +++++ - src/profile-preferences.ui | 92 ++++++++++++++++++++++++++++++++++++++ - src/terminal-schemas.h | 3 ++ - src/terminal-screen.c | 22 ++++++++- - src/terminal-window.c | 7 +++ - 6 files changed, 144 insertions(+), 1 deletion(-) - -diff --git a/src/org.gnome.Terminal.gschema.xml b/src/org.gnome.Terminal.gschema.xml -index 0f8433f..104e662 100644 ---- a/src/org.gnome.Terminal.gschema.xml -+++ b/src/org.gnome.Terminal.gschema.xml -@@ -333,6 +333,16 @@ - 'narrow' - Whether ambiguous-width characters are narrow or wide when using UTF-8 encoding - -+ -+ false -+ Whether to use a transparent background -+ -+ -+ 50 -+ -+ Adjust the amount of transparency -+ A value between 0 and 100, where 0 is opaque and 100 is fully transparent. -+ - - - -diff --git a/src/profile-editor.c b/src/profile-editor.c -index 3e8ccaf..f09b6bc 100644 ---- a/src/profile-editor.c -+++ b/src/profile-editor.c -@@ -1106,7 +1106,18 @@ terminal_profile_edit (GSettings *profile, - "active-id", - G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET); - -+ g_settings_bind (profile, TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND, -+ gtk_builder_get_object (builder, "use-transparent-background"), -+ "active", G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET); -+ g_settings_bind (profile, TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND, -+ gtk_builder_get_object (builder, "background-transparent-scale-box"), -+ "sensitive", G_SETTINGS_BIND_GET | G_SETTINGS_BIND_NO_SENSITIVITY); -+ g_settings_bind (profile, TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT, -+ gtk_builder_get_object (builder, "background-transparent-adjustment"), -+ "value", G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET); -+ - /* Finished! */ -+ - terminal_util_bind_mnemonic_label_sensitivity (editor); - - terminal_util_dialog_focus_widget (editor, widget_name); -diff --git a/src/profile-preferences.ui b/src/profile-preferences.ui -index eb2fa26..7f8a471 100644 ---- a/src/profile-preferences.ui -+++ b/src/profile-preferences.ui -@@ -23,6 +23,11 @@ - 1 - 100 -
-+ -+ 100 -+ 1 -+ 10 -+ - - - -@@ -1045,6 +1050,93 @@ - 1 - - -+ -+ -+ True -+ False -+ horizontal -+ 12 -+ -+ -+ Transparent background -+ True -+ True -+ False -+ True -+ 0 -+ True -+ -+ -+ False -+ False -+ 0 -+ -+ -+ -+ -+ True -+ False -+ horizontal -+ 6 -+ -+ -+ True -+ False -+ 0.5 -+ none -+ -+ -+ -+ False -+ False -+ 0 -+ -+ -+ -+ -+ True -+ True -+ background-transparent-adjustment -+ False -+ -+ -+ True -+ True -+ 1 -+ -+ -+ -+ -+ True -+ False -+ 0.5 -+ full -+ -+ -+ -+ False -+ False -+ 2 -+ -+ -+ -+ -+ True -+ True -+ 1 -+ -+ -+ -+ -+ True -+ True -+ 2 -+ -+ - -
- -diff --git a/src/terminal-schemas.h b/src/terminal-schemas.h -index 17ffdb2..0fcbf52 100644 ---- a/src/terminal-schemas.h -+++ b/src/terminal-schemas.h -@@ -64,6 +64,9 @@ G_BEGIN_DECLS - #define TERMINAL_PROFILE_VISIBLE_NAME_KEY "visible-name" - #define TERMINAL_PROFILE_WORD_CHAR_EXCEPTIONS_KEY "word-char-exceptions" - -+#define TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND "use-transparent-background" -+#define TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT "background-transparency-percent" -+ - #define TERMINAL_SETTING_CONFIRM_CLOSE_KEY "confirm-close" - #define TERMINAL_SETTING_DEFAULT_SHOW_MENUBAR_KEY "default-show-menubar" - #define TERMINAL_SETTING_ENABLE_MENU_BAR_ACCEL_KEY "menu-accelerator-enabled" -diff --git a/src/terminal-screen.c b/src/terminal-screen.c -index df3fdde..48174c2 100644 ---- a/src/terminal-screen.c -+++ b/src/terminal-screen.c -@@ -750,7 +750,9 @@ terminal_screen_profile_changed_cb (GSettings *profile, - prop_name == I_(TERMINAL_PROFILE_BACKGROUND_COLOR_KEY) || - prop_name == I_(TERMINAL_PROFILE_BOLD_COLOR_SAME_AS_FG_KEY) || - prop_name == I_(TERMINAL_PROFILE_BOLD_COLOR_KEY) || -- prop_name == I_(TERMINAL_PROFILE_PALETTE_KEY)) -+ prop_name == I_(TERMINAL_PROFILE_PALETTE_KEY) || -+ prop_name == I_(TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND) || -+ prop_name == I_(TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT)) - update_color_scheme (screen); - - if (!prop_name || prop_name == I_(TERMINAL_PROFILE_AUDIBLE_BELL_KEY)) -@@ -816,6 +818,8 @@ update_color_scheme (TerminalScreen *screen) - GdkRGBA fg, bg, bold, theme_fg, theme_bg; - GdkRGBA *boldp; - GtkStyleContext *context; -+ GtkWidget *toplevel; -+ gboolean transparent; - - context = gtk_widget_get_style_context (widget); - gtk_style_context_get_color (context, GTK_STATE_FLAG_NORMAL, &theme_fg); -@@ -836,9 +840,25 @@ update_color_scheme (TerminalScreen *screen) - boldp = NULL; - - colors = terminal_g_settings_get_rgba_palette (priv->profile, TERMINAL_PROFILE_PALETTE_KEY, &n_colors); -+ -+ transparent = g_settings_get_boolean (profile, TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND); -+ if (transparent) -+ { -+ gint transparency_percent; -+ -+ transparency_percent = g_settings_get_int (profile, TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT); -+ bg.alpha = (100 - transparency_percent) / 100.0; -+ } -+ else -+ bg.alpha = 1.0; -+ - vte_terminal_set_colors (VTE_TERMINAL (screen), &fg, &bg, - colors, n_colors); - vte_terminal_set_color_bold (VTE_TERMINAL (screen), boldp); -+ -+ toplevel = gtk_widget_get_toplevel (GTK_WIDGET (screen)); -+ if (toplevel != NULL && gtk_widget_is_toplevel (toplevel)) -+ gtk_widget_set_app_paintable (toplevel, transparent); - } - - static void -diff --git a/src/terminal-window.c b/src/terminal-window.c -index 12cae4f..366e4f8 100644 ---- a/src/terminal-window.c -+++ b/src/terminal-window.c -@@ -2549,6 +2549,8 @@ terminal_window_init (TerminalWindow *window) - TerminalWindowPrivate *priv; - TerminalApp *app; - TerminalSettingsList *profiles_list; -+ GdkScreen *screen; -+ GdkVisual *visual; - GtkActionGroup *action_group; - GtkAction *action; - GtkUIManager *manager; -@@ -2564,6 +2566,11 @@ terminal_window_init (TerminalWindow *window) - - gtk_widget_init_template (GTK_WIDGET (window)); - -+ screen = gtk_widget_get_screen (GTK_WIDGET (window)); -+ visual = gdk_screen_get_rgba_visual (screen); -+ if (visual != NULL) -+ gtk_widget_set_visual (GTK_WIDGET (window), visual); -+ - uuid_generate (u); - uuid_unparse (u, uuidstr); - priv->uuid = g_strdup (uuidstr); --- -2.1.0 - - -From de7d64698ac700f63898221a5815af939001ba18 Mon Sep 17 00:00:00 2001 -From: Lars Uebernickel -Date: Wed, 28 May 2014 14:11:02 +0200 -Subject: [PATCH 2/3] window: Make the drawing robust across all themes - -There are lots of themes out there in the wild that do not specify a -background-color for all widgets and the default is transparent. This -is usually not a problem because GTK+ sets an opaque region on the -whole window and things without a background-color get drawn with the -theme's default background colour. However, to achieve transparency -we disable the opaque region by making the window app-paintable. This -can lead to transparent menubars or notebook tabs in some themes. We -can avoid this by ensuring that the window always renders a background. - -https://bugzilla.gnome.org/show_bug.cgi?id=730016 ---- - src/terminal-window.c | 21 +++++++++++++++++++++ - 1 file changed, 21 insertions(+) - -diff --git a/src/terminal-window.c b/src/terminal-window.c -index 366e4f8..2458656 100644 ---- a/src/terminal-window.c -+++ b/src/terminal-window.c -@@ -2189,6 +2189,26 @@ terminal_window_realize (GtkWidget *widget) - } - - static gboolean -+terminal_window_draw (GtkWidget *widget, -+ cairo_t *cr) -+{ -+ if (gtk_widget_get_app_paintable (widget)) -+ { -+ GtkStyleContext *context; -+ int width; -+ int height; -+ -+ context = gtk_widget_get_style_context (widget); -+ width = gtk_widget_get_allocated_width (widget); -+ height = gtk_widget_get_allocated_height (widget); -+ gtk_render_background (context, cr, 0, 0, width, height); -+ gtk_render_frame (context, cr, 0, 0, width, height); -+ } -+ -+ return GTK_WIDGET_CLASS (terminal_window_parent_class)->draw (widget, cr); -+} -+ -+static gboolean - terminal_window_state_event (GtkWidget *widget, - GdkEventWindowState *event) - { -@@ -2753,6 +2773,7 @@ terminal_window_class_init (TerminalWindowClass *klass) - - widget_class->show = terminal_window_show; - widget_class->realize = terminal_window_realize; -+ widget_class->draw = terminal_window_draw; - widget_class->window_state_event = terminal_window_state_event; - widget_class->screen_changed = terminal_window_screen_changed; - widget_class->style_updated = terminal_window_style_updated; --- -2.1.0 - - -From dfc31fb0803d546cc21ef8bcd33e54c30e14dc1c Mon Sep 17 00:00:00 2001 -From: Debarshi Ray -Date: Tue, 17 Feb 2015 17:06:17 +0100 -Subject: [PATCH 3/3] Restore translations for transparency - ---- - po/am.po | 4 ++-- - po/ar.po | 4 ++-- - po/as.po | 4 ++-- - po/ast.po | 4 ++-- - po/az.po | 4 ++-- - po/be.po | 3 +++ - po/be@latin.po | 4 ++-- - po/bg.po | 3 +++ - po/bn_IN.po | 3 +++ - po/bs.po | 4 ++++ - po/ca.po | 3 +++ - po/ca@valencia.po | 3 +++ - po/cs.po | 3 +++ - po/cy.po | 4 ++-- - po/da.po | 4 ++-- - po/de.po | 4 ++-- - po/dz.po | 4 ++-- - po/el.po | 3 +++ - po/en@shaw.po | 4 ++-- - po/en_CA.po | 4 ++-- - po/en_GB.po | 4 ++-- - po/es.po | 4 ++-- - po/et.po | 3 +++ - po/eu.po | 4 ++-- - po/fa.po | 3 +++ - po/fi.po | 5 ++++- - po/fr.po | 3 +++ - po/fur.po | 4 ++-- - po/ga.po | 3 +++ - po/gl.po | 4 ++-- - po/gu.po | 4 ++-- - po/he.po | 4 ++-- - po/hi.po | 4 ++-- - po/hr.po | 4 ++-- - po/hu.po | 3 +++ - po/hy.po | 4 ++-- - po/id.po | 3 +++ - po/it.po | 3 +++ - po/ja.po | 3 +++ - po/ka.po | 2 +- - po/kk.po | 3 +++ - po/kn.po | 3 +++ - po/ko.po | 3 +++ - po/ku.po | 4 ++-- - po/lt.po | 3 +++ - po/lv.po | 4 ++-- - po/mai.po | 4 ++-- - po/mg.po | 4 ++-- - po/mk.po | 4 ++-- - po/ml.po | 4 ++-- - po/mn.po | 4 ++-- - po/mr.po | 4 ++-- - po/ms.po | 4 ++-- - po/nb.po | 3 +++ - po/nds.po | 4 ++-- - po/ne.po | 4 ++-- - po/nl.po | 3 +++ - po/nn.po | 4 ++-- - po/oc.po | 4 ++-- - po/or.po | 4 ++-- - po/pa.po | 4 ++-- - po/pl.po | 3 +++ - po/ps.po | 4 ++-- - po/pt.po | 4 ++-- - po/pt_BR.po | 3 +++ - po/ro.po | 4 ++-- - po/ru.po | 3 +++ - po/rw.po | 2 +- - po/si.po | 4 ++-- - po/sk.po | 3 +++ - po/sl.po | 3 +++ - po/sq.po | 4 ++-- - po/sr.po | 3 +++ - po/sr@latin.po | 3 +++ - po/sv.po | 3 +++ - po/ta.po | 4 ++-- - po/te.po | 4 ++-- - po/th.po | 4 ++-- - po/tr.po | 3 +++ - po/ug.po | 4 ++-- - po/uk.po | 4 ++-- - po/vi.po | 3 +++ - po/wa.po | 4 ++-- - po/xh.po | 4 ++-- - po/zh_CN.po | 3 +++ - po/zh_HK.po | 3 +++ - po/zh_TW.po | 3 +++ - 87 files changed, 210 insertions(+), 101 deletions(-) - -diff --git a/po/am.po b/po/am.po -index 27a7e96..04a8ad9 100644 ---- a/po/am.po -+++ b/po/am.po -@@ -613,8 +613,8 @@ msgid "_Text color:" - msgstr "የ_ጽሑፍ ቀለም፦" - - #: ../src/gnome-terminal.glade2.h:102 --msgid "_Transparent background" --msgstr "_የሚያሳይ መደብ" -+msgid "Transparent background" -+msgstr "የሚያሳይ መደብ" - - #: ../src/gnome-terminal.glade2.h:103 - msgid "_Update login records when command is launched" -diff --git a/po/ar.po b/po/ar.po -index c27cd9c..f541938 100644 ---- a/po/ar.po -+++ b/po/ar.po -@@ -2914,8 +2914,8 @@ msgstr "أغ_لق النافذة" - #~ msgid "Background image _scrolls" - #~ msgstr "صورة الخلفية ت_لتف" - --#~ msgid "_Transparent background" --#~ msgstr "خلفية _شفافة" -+msgid "Transparent background" -+msgstr "خلفية شفافة" - - #~ msgid "S_hade transparent or image background:" - #~ msgstr "_ظلل شفافية أو صورة الخلفية:" -diff --git a/po/as.po b/po/as.po -index 0bd699d..63fca01 100644 ---- a/po/as.po -+++ b/po/as.po -@@ -2979,8 +2979,8 @@ msgstr "উইন্ডো বন্ধ কৰক (_l)" - #~ msgid "Background image _scrolls" - #~ msgstr "পটভূমিৰ ছবি স্ক্ৰল কৰক (_s)" - --#~ msgid "_Transparent background" --#~ msgstr "স্বচ্চ পটভূমি (_T)" -+msgid "Transparent background" -+msgstr "স্বচ্চ পটভূমি " - - #~ msgid "S_hade transparent or image background:" - #~ msgstr "স্বচ্ছ বা ছবিৰ সৈতে পটভূমি ছায়া আচ্ছন্ন কৰক (_h):" -diff --git a/po/ast.po b/po/ast.po -index d1c6e7b..4210820 100644 ---- a/po/ast.po -+++ b/po/ast.po -@@ -1598,8 +1598,8 @@ msgid "_Text color:" - msgstr "Color del _testu:" - - #: ../src/profile-preferences.glade.h:77 --msgid "_Transparent background" --msgstr "Fondu _tresparente" -+msgid "Transparent background" -+msgstr "Fondu tresparente" - - #: ../src/profile-preferences.glade.h:78 - msgid "_Underline color:" -diff --git a/po/az.po b/po/az.po -index b0f2e3e..877f114 100644 ---- a/po/az.po -+++ b/po/az.po -@@ -619,8 +619,8 @@ msgid "_Text color:" - msgstr "_Mətn rəngi:" - - #: ../src/gnome-terminal.glade2.h:102 --msgid "_Transparent background" --msgstr "_Şəffaf arxa plan" -+msgid "Transparent background" -+msgstr "Şəffaf arxa plan" - - #: ../src/gnome-terminal.glade2.h:103 - msgid "_Update login records when command is launched" -diff --git a/po/be.po b/po/be.po -index fca0ae4..74ff329 100644 ---- a/po/be.po -+++ b/po/be.po -@@ -2015,3 +2015,6 @@ msgstr "" - msgid "C_lose Window" - msgstr "_Закрыць акно" - -+msgid "Transparent background" -+msgstr "Празрысты фон" -+ -diff --git a/po/be@latin.po b/po/be@latin.po -index 1e057c7..1d22a58 100644 ---- a/po/be@latin.po -+++ b/po/be@latin.po -@@ -1425,8 +1425,8 @@ msgid "_Text color:" - msgstr "Koler _tekstu:" - - #: ../src/profile-preferences.glade.h:73 --msgid "_Transparent background" --msgstr "_Prazrysty fon" -+msgid "Transparent background" -+msgstr "Prazrysty fon" - - #: ../src/profile-preferences.glade.h:74 - msgid "_Update login records when command is launched" -diff --git a/po/bg.po b/po/bg.po -index 7e9c9be..241ef52 100644 ---- a/po/bg.po -+++ b/po/bg.po -@@ -2100,3 +2100,6 @@ msgstr "" - #: ../src/terminal-window.c:3652 - msgid "C_lose Window" - msgstr "_Затваряне на този прозорец" -+ -+msgid "Transparent background" -+msgstr "Прозрачен фон" -diff --git a/po/bn_IN.po b/po/bn_IN.po -index c74246a..d65b322 100644 ---- a/po/bn_IN.po -+++ b/po/bn_IN.po -@@ -2358,3 +2358,6 @@ msgstr "উইন্ডো বন্ধ করুন (_l)" - - #~ msgid "_Title:" - #~ msgstr "শিরোনাম: (_T)" -+ -+msgid "Transparent background" -+msgstr "স্বচ্চ পটভূমি " -diff --git a/po/bs.po b/po/bs.po -index 49e7108..fccfa86 100644 ---- a/po/bs.po -+++ b/po/bs.po -@@ -680,6 +680,10 @@ msgstr "Kratica tastature za povećavanje fonta" - msgid "Keyboard shortcut to make font smaller" - msgstr "Kratica tastature za smanjivanje fonta" - -+#: ../src/gnome-terminal.glade2.h:102 -+msgid "Transparent background" -+msgstr "Providna pozadina" -+ - #: ../src/org.gnome.Terminal.gschema.xml.h:78 - msgid "Keyboard shortcut to make font normal-size" - msgstr "Kratica tastature za postavljanje fonta na normalnu veličinu" -diff --git a/po/ca.po b/po/ca.po -index 567b344..156eed1 100644 ---- a/po/ca.po -+++ b/po/ca.po -@@ -2111,3 +2111,6 @@ msgstr "Tanca la _finestra" - - #~ msgid "Use _dark theme variant" - #~ msgstr "Utilitza la variant de tema _fosc" -+ -+msgid "Transparent background" -+msgstr "Fons transparent" -diff --git a/po/ca@valencia.po b/po/ca@valencia.po -index 1c279a0..4073f71 100644 ---- a/po/ca@valencia.po -+++ b/po/ca@valencia.po -@@ -2092,3 +2092,6 @@ msgstr "" - #: ../src/terminal-window.c:3645 - msgid "C_lose Window" - msgstr "Tanca la _finestra" -+ -+msgid "Transparent background" -+msgstr "Fons transparent" -diff --git a/po/cs.po b/po/cs.po -index f1e8c44..912b4df 100644 ---- a/po/cs.po -+++ b/po/cs.po -@@ -2063,3 +2063,6 @@ msgstr "" - #: ../src/terminal-window.c:3652 - msgid "C_lose Window" - msgstr "_Zavřít okno" -+ -+msgid "Transparent background" -+msgstr "Průsvitné pozadí" -diff --git a/po/cy.po b/po/cy.po -index 06d0e3c..2491bd1 100644 ---- a/po/cy.po -+++ b/po/cy.po -@@ -1447,8 +1447,8 @@ msgid "_Text color:" - msgstr "Lliw'r _testun:" - - #: ../src/profile-preferences.glade.h:73 --msgid "_Transparent background" --msgstr "Cefndir _tryloyw" -+msgid "Transparent background" -+msgstr "Cefndir tryloyw" - - #: ../src/profile-preferences.glade.h:74 - msgid "_Update login records when command is launched" -diff --git a/po/da.po b/po/da.po -index 74b7d0b..af69a6b 100644 ---- a/po/da.po -+++ b/po/da.po -@@ -2987,8 +2987,8 @@ msgstr "_Luk vindue" - #~ msgid "_Solid color" - #~ msgstr "_Ensfarvet" - --#~ msgid "_Transparent background" --#~ msgstr "_Gennemsigtig baggrund" -+msgid "Transparent background" -+msgstr "Gennemsigtig baggrund" - - #~ msgid "" - #~ "You already have a profile called “%s”. Do you want to create another " -diff --git a/po/de.po b/po/de.po -index 6b2bb19..2b814c0 100644 ---- a/po/de.po -+++ b/po/de.po -@@ -3060,8 +3060,8 @@ msgstr "Fenster _schließen" - #~ msgid "Background image _scrolls" - #~ msgstr "Hintergrundbild _folgt Bildlauf" - --#~ msgid "_Transparent background" --#~ msgstr "_Transparenter Hintergrund" -+msgid "Transparent background" -+msgstr "Transparenter Hintergrund" - - #~ msgid "S_hade transparent or image background:" - #~ msgstr "Transparenz und Bildhintergründe _abdunkeln:" -diff --git a/po/dz.po b/po/dz.po -index ecb8fd5..290934a 100644 ---- a/po/dz.po -+++ b/po/dz.po -@@ -1551,8 +1551,8 @@ msgid "_Text color:" - msgstr "ཚིག་ཡིག་ཚོས་གཞི་:(_T)" - - #: ../src/profile-preferences.glade.h:77 --msgid "_Transparent background" --msgstr "དྭངས་གསལ་རྒྱབ་གཞི།(_T)" -+msgid "Transparent background" -+msgstr "དྭངས་གསལ་རྒྱབ་གཞི།" - - #: ../src/profile-preferences.glade.h:78 - #, fuzzy -diff --git a/po/el.po b/po/el.po -index b81802c..a32ae26 100644 ---- a/po/el.po -+++ b/po/el.po -@@ -2289,3 +2289,6 @@ msgstr "Κ_λείσιμο παραθύρου" - - #~ msgid "_Input Methods" - #~ msgstr "_Μέθοδοι εισαγωγής" -+ -+msgid "Transparent background" -+msgstr "Διάφανο παρασκήνιο" -diff --git a/po/en@shaw.po b/po/en@shaw.po -index 65f3d41..05dc99d 100644 ---- a/po/en@shaw.po -+++ b/po/en@shaw.po -@@ -1467,8 +1467,8 @@ msgid "_Text color:" - msgstr "_𐑑𐑧𐑒𐑕𐑑 𐑒𐑳𐑤𐑼:" - - #: ../src/profile-preferences.glade.h:78 --msgid "_Transparent background" --msgstr "_𐑑𐑮𐑨𐑯𐑕𐑐𐑸𐑩𐑯𐑑 𐑚𐑨𐑒𐑜𐑮𐑬𐑯𐑛" -+msgid "Transparent background" -+msgstr "𐑑𐑮𐑨𐑯𐑕𐑐𐑸𐑩𐑯𐑑 𐑚𐑨𐑒𐑜𐑮𐑬𐑯𐑛" - - #: ../src/profile-preferences.glade.h:79 - msgid "_Underline color:" -diff --git a/po/en_CA.po b/po/en_CA.po -index c79cbf5..b8b14d2 100644 ---- a/po/en_CA.po -+++ b/po/en_CA.po -@@ -556,8 +556,8 @@ msgid "_Text color:" - msgstr "_Text colour:" - - #: ../src/gnome-terminal.glade2.h:86 --msgid "_Transparent background" --msgstr "_Transparent background" -+msgid "Transparent background" -+msgstr "Transparent background" - - #: ../src/gnome-terminal.glade2.h:87 - msgid "_Update login records when command is launched" -diff --git a/po/en_GB.po b/po/en_GB.po -index 4d38486..69e7113 100644 ---- a/po/en_GB.po -+++ b/po/en_GB.po -@@ -2732,8 +2732,8 @@ msgstr "_Title:" - #~ msgid "Background image _scrolls" - #~ msgstr "Background image _scrolls" - --#~ msgid "_Transparent background" --#~ msgstr "_Transparent background" -+msgid "Transparent background" -+msgstr "Transparent background" - - #~ msgid "S_hade transparent or image background:" - #~ msgstr "S_hade transparent or image background:" -diff --git a/po/es.po b/po/es.po -index c8b47fe..4d33066 100644 ---- a/po/es.po -+++ b/po/es.po -@@ -3095,8 +3095,8 @@ msgstr "_Cerrar ventana" - #~ msgid "_Solid color" - #~ msgstr "Color _sólido" - --#~ msgid "_Transparent background" --#~ msgstr "Fondo _transparente" -+msgid "Transparent background" -+msgstr "Fondo transparente" - - #~ msgid "No such profile \"%s\", using default profile\n" - #~ msgstr "No existe el perfil «%s», usando el perfil predeterminado\n" -diff --git a/po/et.po b/po/et.po -index 4b1c2a7..7707611 100644 ---- a/po/et.po -+++ b/po/et.po -@@ -1747,3 +1747,6 @@ msgstr "Su_lge aken" - - #~ msgid "Choose base profile" - #~ msgstr "Vali põhiprofiil" -+ -+msgid "Transparent background" -+msgstr "Läbipaistev taust" -diff --git a/po/eu.po b/po/eu.po -index 97bb976..b53f33c 100644 ---- a/po/eu.po -+++ b/po/eu.po -@@ -2972,8 +2972,8 @@ msgstr "It_xi leihoa" - #~ msgid "_Solid color" - #~ msgstr "_Kolore solidoa" - --#~ msgid "_Transparent background" --#~ msgstr "_Atzeko plano gardena" -+msgid "Transparent background" -+msgstr "Atzeko plano gardena" - - #~ msgid "" - #~ "You already have a profile called “%s”. Do you want to create another " -diff --git a/po/fa.po b/po/fa.po -index 2090863..b9a05af 100644 ---- a/po/fa.po -+++ b/po/fa.po -@@ -2027,3 +2027,6 @@ msgstr "ذخیره به نام..." - #: ../src/terminal-window.c:3456 - msgid "_Title:" - msgstr "_عنوان:" -+ -+msgid "Transparent background" -+msgstr "پس‌زمینه‌ی شفاف" -diff --git a/po/fi.po b/po/fi.po -index f80a962..dacd609 100644 ---- a/po/fi.po -+++ b/po/fi.po -@@ -2069,6 +2069,9 @@ msgstr "" - msgid "C_lose Window" - msgstr "_Sulje ikkuna" - -+msgid "Transparent background" -+msgstr "Läpinäkyvä tausta" -+ - #~ msgid "Set the terminal title" - #~ msgstr "Aseta päätteen otsikko" - -@@ -2083,4 +2086,4 @@ msgstr "_Sulje ikkuna" - #~ msgstr "Käytetäänkö teeman tummaan muunnelmaa" - - #~ msgid "Use _dark theme variant" --#~ msgstr "Käytä _teeman tummaa muunnelmaa" -+#~ msgstr "Käytä _teeman tummaa muunnelmaa" -\ No newline at end of file -diff --git a/po/fr.po b/po/fr.po -index fd28f38..babd28d 100644 ---- a/po/fr.po -+++ b/po/fr.po -@@ -2135,3 +2135,6 @@ msgstr "Fermer _la fenêtre" - - #~ msgid "Use _dark theme variant" - #~ msgstr "Utiliser une variante de thème _foncée" -+ -+msgid "Transparent background" -+msgstr "Arrière-plan transparent" -diff --git a/po/fur.po b/po/fur.po -index 5a20170..8c3daaf 100644 ---- a/po/fur.po -+++ b/po/fur.po -@@ -580,8 +580,8 @@ msgid "_Text color:" - msgstr "Colôr dal _test:" - - #: ../src/gnome-terminal.glade2.h:86 --msgid "_Transparent background" --msgstr "Fondâl _trasparent" -+msgid "Transparent background" -+msgstr "Fondâl trasparent" - - #: ../src/gnome-terminal.glade2.h:87 - msgid "_Update login records when command is launched" -diff --git a/po/ga.po b/po/ga.po -index 93d5fa9..feb87dc 100644 ---- a/po/ga.po -+++ b/po/ga.po -@@ -1925,3 +1925,6 @@ msgstr "_Dún Fuinneog" - #: ../src/terminal-window.c:3582 - msgid "C_lose Terminal" - msgstr "_Dún Teirminéal" -+ -+msgid "Transparent background" -+msgstr "Cúlra trédhearcach" -diff --git a/po/gl.po b/po/gl.po -index 1429c66..6820190 100644 ---- a/po/gl.po -+++ b/po/gl.po -@@ -3055,8 +3055,8 @@ msgstr "P_echar a xanela" - #~ msgid "Background image _scrolls" - #~ msgstr "A imaxe de fondo _desprázase" - --#~ msgid "_Transparent background" --#~ msgstr "Fondo _transparente" -+msgid "Transparent background" -+msgstr "Fondo transparente" - - #~ msgid "S_hade transparent or image background:" - #~ msgstr "_Sombra transparente ou imaxe de fondo:" -diff --git a/po/gu.po b/po/gu.po -index 0bcb195..f72a807 100644 ---- a/po/gu.po -+++ b/po/gu.po -@@ -2944,8 +2944,8 @@ msgstr "વિન્ડો બંધ કરો (_l)" - #~ msgid "_Solid color" - #~ msgstr "ઘટ્ટ રંગ (_S)" - --#~ msgid "_Transparent background" --#~ msgstr "પારદર્શક પાશ્વ ભાગનો ભાગ (_T)" -+msgid "Transparent background" -+msgstr "પારદર્શક પાશ્વ ભાગનો ભાગ" - - #~ msgid "No such profile \"%s\", using default profile\n" - #~ msgstr "\"%s\" જેવી કોઈ રૂપરેખા નથી, મૂળભૂત રૂપરેખા વાપરી રહ્યા છે\n" -diff --git a/po/he.po b/po/he.po -index 0d9dfe0..ff4cc33 100644 ---- a/po/he.po -+++ b/po/he.po -@@ -3007,8 +3007,8 @@ msgstr "סגירת ה_חלון" - #~ msgid "_Solid color" - #~ msgstr "צבע _אחיד" - --#~ msgid "_Transparent background" --#~ msgstr "רקע _שקוף" -+msgid "Transparent background" -+msgstr "רקע שקוף" - - #~ msgid "No such profile \"%s\", using default profile\n" - #~ msgstr "No such profile \"%s\", using default profile\n" -diff --git a/po/hi.po b/po/hi.po -index 2d7dc5b..adf8d35 100644 ---- a/po/hi.po -+++ b/po/hi.po -@@ -2979,8 +2979,8 @@ msgstr "विंडो बंद करें (_l)" - #~ msgid "_Background image" - #~ msgstr "पृष्ठभूमि छवि (_B)" - --#~ msgid "_Transparent background" --#~ msgstr "पारदर्शी पृष्ठभूमि (_T)" -+msgid "Transparent background" -+msgstr "पारदर्शी पृष्ठभूमि" - - #~ msgid "S/Key Challenge Response" - #~ msgstr "एस/कुंजी चैलेंज प्रतिक्रिया" -diff --git a/po/hr.po b/po/hr.po -index cb48c52..747cf48 100644 ---- a/po/hr.po -+++ b/po/hr.po -@@ -1362,8 +1362,8 @@ msgid "_Text color:" - msgstr "_Boja teksta:" - - #: ../src/profile-preferences.glade.h:69 --msgid "_Transparent background" --msgstr "_Prozirna pozadina" -+msgid "Transparent background" -+msgstr "Prozirna pozadina" - - #: ../src/profile-preferences.glade.h:70 - msgid "_Update login records when command is launched" -diff --git a/po/hu.po b/po/hu.po -index ad585ef..b9a481b 100644 ---- a/po/hu.po -+++ b/po/hu.po -@@ -2509,3 +2509,6 @@ msgstr "_Ablak bezárása" - - #~ msgid "Background type" - #~ msgstr "Háttér típusa" -+ -+msgid "Transparent background" -+msgstr "Áttetsző háttér" -diff --git a/po/hy.po b/po/hy.po -index 5584901..caadbba 100644 ---- a/po/hy.po -+++ b/po/hy.po -@@ -1011,8 +1011,8 @@ msgid "_Text color:" - msgstr "_Տեքստի գույնը՝" - - #: ../src/profile-preferences.glade.h:73 --msgid "_Transparent background" --msgstr "_Թափանցիկ նախադրյալ" -+msgid "Transparent background" -+msgstr "Թափանցիկ նախադրյալ" - - #: ../src/profile-preferences.glade.h:74 - msgid "_Update login records when command is launched" -diff --git a/po/id.po b/po/id.po -index 346b5d8..2448444 100644 ---- a/po/id.po -+++ b/po/id.po -@@ -2068,3 +2068,6 @@ msgstr "" - #: ../src/terminal-window.c:3652 - msgid "C_lose Window" - msgstr "Tutup Jende_la" -+ -+msgid "Transparent background" -+msgstr "Latar belakang transparan" -diff --git a/po/it.po b/po/it.po -index 5a1847f..2eb1d62 100644 ---- a/po/it.po -+++ b/po/it.po -@@ -2093,3 +2093,6 @@ msgstr "" - #: ../src/terminal-window.c:3652 - msgid "C_lose Window" - msgstr "Chiudi _finestra" -+ -+msgid "Transparent background" -+msgstr "Sfondo trasparente" -diff --git a/po/ja.po b/po/ja.po -index 4f8f4de..ce2ec95 100644 ---- a/po/ja.po -+++ b/po/ja.po -@@ -1902,3 +1902,6 @@ msgstr "この端末には未だ実行中のプロセスが存在しています - #: ../src/terminal-window.c:3652 - msgid "C_lose Window" - msgstr "ウィンドウを閉じる(_L)" -+ -+msgid "Transparent background" -+msgstr "透過な画像にする" -diff --git a/po/ka.po b/po/ka.po -index 8415e88..3717b7e 100644 ---- a/po/ka.po -+++ b/po/ka.po -@@ -568,7 +568,7 @@ msgstr "_ტექსტის ფერი:" - - #: ../src/gnome-terminal.glade2.h:86 - #, fuzzy --msgid "_Transparent background" -+msgid "Transparent background" - msgstr "გამჭირვალე" - - #: ../src/gnome-terminal.glade2.h:87 -diff --git a/po/kk.po b/po/kk.po -index dba7503..f7ac993 100644 ---- a/po/kk.po -+++ b/po/kk.po -@@ -2030,3 +2030,6 @@ msgstr "Терезені жа_бу" - - #~ msgid "Be quiet" - #~ msgstr "Тыныш болу" -+ -+msgid "Transparent background" -+msgstr "Мөлдір фон" -diff --git a/po/kn.po b/po/kn.po -index c887f88..e899ef3 100644 ---- a/po/kn.po -+++ b/po/kn.po -@@ -2344,3 +2344,6 @@ msgstr "ಕಿಟಕಿಯನ್ನು ಮುಚ್ಚು (_l)" - - #~ msgid "_Title:" - #~ msgstr "ಶೀರ್ಷಿಕೆ(_T):" -+ -+msgid "Transparent background" -+msgstr "ಪಾರದರ್ಶಕ ಹಿನ್ನಲೆ" -diff --git a/po/ko.po b/po/ko.po -index 0700e25..912e940 100644 ---- a/po/ko.po -+++ b/po/ko.po -@@ -2078,3 +2078,6 @@ msgstr "창 닫기(_L)" - - #~ msgid "Use _dark theme variant" - #~ msgstr "어두운 테마 사용(_D)" -+ -+msgid "Transparent background" -+msgstr "투명한 배경" -diff --git a/po/ku.po b/po/ku.po -index 221825b..96e3581 100644 ---- a/po/ku.po -+++ b/po/ku.po -@@ -557,8 +557,8 @@ msgid "_Text color:" - msgstr "Rengê _nivîsê:" - - #: ../src/gnome-terminal.glade2.h:86 --msgid "_Transparent background" --msgstr "Rûerdê _transparan" -+msgid "Transparent background" -+msgstr "Rûerdê transparan" - - #: ../src/gnome-terminal.glade2.h:87 - msgid "_Update login records when command is launched" -diff --git a/po/lt.po b/po/lt.po -index 294482b..c0ec0cf 100644 ---- a/po/lt.po -+++ b/po/lt.po -@@ -2082,3 +2082,6 @@ msgstr "_Užverti langą" - - #~ msgid "Use _dark theme variant" - #~ msgstr "Nau_doti tamsų temos variantą" -+ -+msgid "Transparent background" -+msgstr "Permatomas fonas" -diff --git a/po/lv.po b/po/lv.po -index a50f529..b29541f 100644 ---- a/po/lv.po -+++ b/po/lv.po -@@ -3016,8 +3016,8 @@ msgstr "Aizvērt _logu" - #~ msgid "Background image _scrolls" - #~ msgstr "Fona attēla ritināšanā_s" - --#~ msgid "_Transparent background" --#~ msgstr "_Caurspīdīgs fons" -+msgid "Transparent background" -+msgstr "Caurspīdīgs fons" - - #~ msgid "S_hade transparent or image background:" - #~ msgstr "_Aizēnot caurspīdīgo vai attēla fonu:" -diff --git a/po/mai.po b/po/mai.po -index 9b984a0..a3c0e17 100644 ---- a/po/mai.po -+++ b/po/mai.po -@@ -1290,8 +1290,8 @@ msgid "_Text color:" - msgstr "पाठ रँग (_T):" - - #: ../src/profile-preferences.glade.h:69 --msgid "_Transparent background" --msgstr "पारदर्शी पृष्ठभूमि (_T)" -+msgid "Transparent background" -+msgstr "पारदर्शी पृष्ठभूमि" - - #: ../src/profile-preferences.glade.h:70 - msgid "_Update login records when command is launched" -diff --git a/po/mg.po b/po/mg.po -index 1c1895c..a805417 100644 ---- a/po/mg.po -+++ b/po/mg.po -@@ -566,8 +566,8 @@ msgid "_Text color:" - msgstr "Lokon'ny _soratra:" - - #: ../src/gnome-terminal.glade2.h:86 --msgid "_Transparent background" --msgstr "_Afara tatera-pahazavana" -+msgid "Transparent background" -+msgstr "Afara tatera-pahazavana" - - #: ../src/gnome-terminal.glade2.h:87 - msgid "_Update login records when command is launched" -diff --git a/po/mk.po b/po/mk.po -index e31378a..d2b74d4 100644 ---- a/po/mk.po -+++ b/po/mk.po -@@ -1166,8 +1166,8 @@ msgid "_Text color:" - msgstr "_Боја на текстот:" - - #: ../src/profile-preferences.glade.h:77 --msgid "_Transparent background" --msgstr "_Транспарентна позадина" -+msgid "Transparent background" -+msgstr "Транспарентна позадина" - - #: ../src/profile-preferences.glade.h:78 - #| msgid "_Text color:" -diff --git a/po/ml.po b/po/ml.po -index cc1928d..62abd21 100644 ---- a/po/ml.po -+++ b/po/ml.po -@@ -2751,8 +2751,8 @@ msgstr "ടെര്‍മിനല്‍ അ_ടയ്ക്കുക" - #~ msgid "_Solid color" - #~ msgstr "_സോളിഡ് നിറം" - --#~ msgid "_Transparent background" --#~ msgstr "_പുറകിലുള്ളവ കാണാവുന്ന പശ്ചാത്തലം" -+msgid "Transparent background" -+msgstr "പുറകിലുള്ളവ കാണാവുന്ന പശ്ചാത്തലം" - - #~ msgid "S/Key Challenge Response" - #~ msgstr "S/Key ചാലഞ്ച് മറുപടി" -diff --git a/po/mn.po b/po/mn.po -index 4922041..9696b7f 100644 ---- a/po/mn.po -+++ b/po/mn.po -@@ -617,8 +617,8 @@ msgid "_Text color:" - msgstr "_Текстийн өнгө:" - - #: ../src/gnome-terminal.glade2.h:102 --msgid "_Transparent background" --msgstr "_Тунгалаг дэвсгэр" -+msgid "Transparent background" -+msgstr "Тунгалаг дэвсгэр" - - #: ../src/gnome-terminal.glade2.h:103 - msgid "_Update login records when command is launched" -diff --git a/po/mr.po b/po/mr.po -index 61997da..50451d7 100644 ---- a/po/mr.po -+++ b/po/mr.po -@@ -3015,8 +3015,8 @@ msgstr "चौकट बंद करा (_l)" - #~ msgid "_Solid color" - #~ msgstr "गडद रंग (_S)" - --#~ msgid "_Transparent background" --#~ msgstr "पारदर्शी पार्श्वभूमी(_T)" -+msgid "Transparent background" -+msgstr "पारदर्शी पार्श्वभूमी" - - #~ msgid "Disabled" - #~ msgstr "अकार्यान्वीतित" -diff --git a/po/ms.po b/po/ms.po -index 5b663aa..38a2afe 100644 ---- a/po/ms.po -+++ b/po/ms.po -@@ -630,8 +630,8 @@ msgid "_Text color:" - msgstr "Warna _Teks:" - - #: ../src/gnome-terminal.glade2.h:102 --msgid "_Transparent background" --msgstr "LatarBelakang _Telus" -+msgid "Transparent background" -+msgstr "LatarBelakang Telus" - - #: ../src/gnome-terminal.glade2.h:103 - msgid "_Update login records when command is launched" -diff --git a/po/nb.po b/po/nb.po -index c14ae58..f5a590e 100644 ---- a/po/nb.po -+++ b/po/nb.po -@@ -2054,3 +2054,6 @@ msgstr "" - #: ../src/terminal-window.c:3652 - msgid "C_lose Window" - msgstr "_Lukk vindu" -+ -+msgid "Transparent background" -+msgstr "Gjennomsiktig bakgrunn" -diff --git a/po/nds.po b/po/nds.po -index 98a1287..94fd757 100644 ---- a/po/nds.po -+++ b/po/nds.po -@@ -995,8 +995,8 @@ msgid "_Text color:" - msgstr "_Textklöör:" - - #: ../src/profile-preferences.glade.h:73 --msgid "_Transparent background" --msgstr "_Döörschienenachtergrund:" -+msgid "Transparent background" -+msgstr "Döörschienenachtergrund:" - - #: ../src/profile-preferences.glade.h:74 - msgid "_Update login records when command is launched" -diff --git a/po/ne.po b/po/ne.po -index 4fe16cc..d9a90ad 100644 ---- a/po/ne.po -+++ b/po/ne.po -@@ -2398,8 +2398,8 @@ msgstr "सञ्झ्याल बन्द गर्नुहोस्" - #~ msgid "_None (use solid color)" - #~ msgstr "कुनै पनि होइन (एउटै रङ प्रयोग गर्नुहोस्)" - --#~ msgid "_Transparent background" --#~ msgstr "पारदर्शी पृष्ठभूमि" -+msgid "Transparent background" -+msgstr "पारदर्शी पृष्ठभूमि" - - #~ msgid "_Use the system fixed width font" - #~ msgstr "प्रणाली निश्चित गरिएको फन्ट चौडाइ प्रयोग गर्नुहोस्" -diff --git a/po/nl.po b/po/nl.po -index a51720b..111b032 100644 ---- a/po/nl.po -+++ b/po/nl.po -@@ -2352,3 +2352,6 @@ msgstr "Venster sl_uiten" - - #~ msgid "Switch to Tab 12" - #~ msgstr "Ga naar tab 12" -+ -+msgid "Transparent background" -+msgstr "Transparante achtergrond" -diff --git a/po/nn.po b/po/nn.po -index 91cd6ab..9284459 100644 ---- a/po/nn.po -+++ b/po/nn.po -@@ -1428,8 +1428,8 @@ msgid "_Text color:" - msgstr "_Tekstfarge:" - - #: ../src/profile-preferences.glade.h:73 --msgid "_Transparent background" --msgstr "_Gjennomskinleg bakgrunn" -+msgid "Transparent background" -+msgstr "Gjennomskinleg bakgrunn" - - #: ../src/profile-preferences.glade.h:74 - msgid "_Update login records when command is launched" -diff --git a/po/oc.po b/po/oc.po -index 5e7ca58..3bd9991 100644 ---- a/po/oc.po -+++ b/po/oc.po -@@ -1285,8 +1285,8 @@ msgid "_Text color:" - msgstr "Color del _tèxt :" - - #: ../src/profile-preferences.glade.h:78 --msgid "_Transparent background" --msgstr "Fons _transparent" -+msgid "Transparent background" -+msgstr "Fons transparent" - - #: ../src/profile-preferences.glade.h:79 - msgid "_Underline color:" -diff --git a/po/or.po b/po/or.po -index ec1e6bf..218acd7 100644 ---- a/po/or.po -+++ b/po/or.po -@@ -2705,8 +2705,8 @@ msgstr "ଶୀର୍ଷକ (_T):" - #~ msgid "Background image _scrolls" - #~ msgstr "ପୃଷ୍ଠଭୂମି ଚିତ୍ର ସ୍କ୍ରୋଲଗୁଡିକ (_s)" - --#~ msgid "_Transparent background" --#~ msgstr "ସ୍ବଚ୍ଛ ପୃଷ୍ଠଭୂମି (_T)" -+msgid "Transparent background" -+msgstr "ସ୍ବଚ୍ଛ ପୃଷ୍ଠଭୂମି" - - #~ msgid "S_hade transparent or image background:" - #~ msgstr "ଛାୟା ସ୍ବଚ୍ଛ କିମ୍ବା ଚିତ୍ର ପୃଷ୍ଠଭୂମି (_h):" -diff --git a/po/pa.po b/po/pa.po -index 9c95b66..5e5b8ba 100644 ---- a/po/pa.po -+++ b/po/pa.po -@@ -3008,8 +3008,8 @@ msgstr "ਵਿੰਡੋ ਬੰਦ ਕਰੋ(_l)" - #~ msgid "_Solid color" - #~ msgstr "ਇੱਕ ਰੰਗ ਵਰਤੋਂ(_S)" - --#~ msgid "_Transparent background" --#~ msgstr "ਪਾਰਦਰਸ਼ੀ ਬੈਕਗਰਾਊਂਡ(_T)" -+msgid "Transparent background" -+msgstr "ਪਾਰਦਰਸ਼ੀ ਬੈਕਗਰਾਊਂਡ" - - #~ msgid "S/Key Challenge Response" - #~ msgstr "S/ਸਵਿੱਚ ਚੈਲੰਜ਼ ਜਵਾਬ" -diff --git a/po/pl.po b/po/pl.po -index deb91b7..f772171 100644 ---- a/po/pl.po -+++ b/po/pl.po -@@ -2116,3 +2116,6 @@ msgid "" - msgstr "" - "Wartość między 0 a 100, gdzie 0 oznacza nieprzezroczystość, a 100 oznacza " - "całkowitą przezroczystość." -+ -+msgid "Transparent background" -+msgstr "Przezroczyste tło" -diff --git a/po/ps.po b/po/ps.po -index b1de52c..a16ac49 100644 ---- a/po/ps.po -+++ b/po/ps.po -@@ -1052,8 +1052,8 @@ msgid "_Text color:" - msgstr ":د ليکنې رنګ_" - - #: ../src/profile-preferences.glade.h:69 --msgid "_Transparent background" --msgstr "روڼ شاليد_" -+msgid "Transparent background" -+msgstr "روڼ شاليد" - - #: ../src/profile-preferences.glade.h:70 - msgid "_Update login records when command is launched" -diff --git a/po/pt.po b/po/pt.po -index 68bb2dd..9078dcb 100644 ---- a/po/pt.po -+++ b/po/pt.po -@@ -2948,8 +2948,8 @@ msgstr "_Fechar janela" - #~ msgid "Background image _scrolls" - #~ msgstr "Imagem de fundo _rola" - --#~ msgid "_Transparent background" --#~ msgstr "Fundo _transparente" -+msgid "Transparent background" -+msgstr "Fundo transparente" - - #~ msgid "S_hade transparent or image background:" - #~ msgstr "Transparente som_breado ou imagem de fundo:" -diff --git a/po/pt_BR.po b/po/pt_BR.po -index 8fac135..b79275c 100644 ---- a/po/pt_BR.po -+++ b/po/pt_BR.po -@@ -2865,3 +2865,6 @@ msgstr "_Fechar janela" - #~ "poderão usar. Essa é a paleta, na forma de uma lista de nomes de cores " - #~ "separada por dois pontos. Os nomes de cores devem estar no formato " - #~ "hexadecimal. Exemplo: \"#FF00FF\"" -+ -+msgid "Transparent background" -+msgstr "Fundo transparente" -diff --git a/po/ro.po b/po/ro.po -index 179dd77..f7fc7ae 100644 ---- a/po/ro.po -+++ b/po/ro.po -@@ -1576,8 +1576,8 @@ msgid "_Text color:" - msgstr "Culoare _text:" - - #: ../src/profile-preferences.glade.h:77 --msgid "_Transparent background" --msgstr "Fundal _transparent" -+msgid "Transparent background" -+msgstr "Fundal transparent" - - #: ../src/profile-preferences.glade.h:78 - msgid "_Underline color:" -diff --git a/po/ru.po b/po/ru.po -index 01d1683..672ab01 100644 ---- a/po/ru.po -+++ b/po/ru.po -@@ -2073,3 +2073,6 @@ msgstr "" - #: ../src/terminal-window.c:3652 - msgid "C_lose Window" - msgstr "_Закрыть окно" -+ -+msgid "Transparent background" -+msgstr "Прозрачный фон" -diff --git a/po/rw.po b/po/rw.po -index 3f02231..b7fff4c 100644 ---- a/po/rw.po -+++ b/po/rw.po -@@ -748,7 +748,7 @@ msgstr "Ibara ry'Inyandiko..." - - #: ../src/gnome-terminal.glade2.h:102 - #, fuzzy --msgid "_Transparent background" -+msgid "Transparent background" - msgstr "Mbuganyuma" - - #: ../src/gnome-terminal.glade2.h:103 -diff --git a/po/si.po b/po/si.po -index 81dbf65..5cb0e5a 100644 ---- a/po/si.po -+++ b/po/si.po -@@ -537,8 +537,8 @@ msgid "_Text color:" - msgstr "පෙළ වර්‍ණ: (_T)" - - #: ../src/gnome-terminal.glade2.h:86 --msgid "_Transparent background" --msgstr "විනිවිද පෙනෙන පසුබිම (_T)" -+msgid "Transparent background" -+msgstr "විනිවිද පෙනෙන පසුබිම" - - #: ../src/gnome-terminal.glade2.h:87 - msgid "_Update login records when command is launched" -diff --git a/po/sk.po b/po/sk.po -index 9bef0bf..52e4af2 100644 ---- a/po/sk.po -+++ b/po/sk.po -@@ -2354,3 +2354,6 @@ msgstr "_Zavrieť okno" - #~ "\n" - #~ "Viac informácii o jednotlivých príkazoch získate pomocou „%s PRÍKAZ --" - #~ "help“.\n" -+ -+msgid "Transparent background" -+msgstr "Priehľadné pozadie" -diff --git a/po/sl.po b/po/sl.po -index 3a7ee4a..4f6ce0d 100644 ---- a/po/sl.po -+++ b/po/sl.po -@@ -2316,3 +2316,6 @@ msgstr "_Zapri okno" - - #~ msgid "_Profile Preferences…" - #~ msgstr "Možnosti _profila ..." -+ -+msgid "Transparent background" -+msgstr "Prosojno ozadje" -diff --git a/po/sq.po b/po/sq.po -index e59c0b6..6fb4090 100644 ---- a/po/sq.po -+++ b/po/sq.po -@@ -567,8 +567,8 @@ msgstr "Ngjyra e _tekstit:" - - # (pofilter) simplecaps: checks the capitalisation of two strings isn't wildly different - #: ../src/gnome-terminal.glade2.h:85 --msgid "_Transparent background" --msgstr "Sfond _Trasparent" -+msgid "Transparent background" -+msgstr "Sfond Trasparent" - - #: ../src/gnome-terminal.glade2.h:86 - msgid "_Update login records when command is launched" -diff --git a/po/sr.po b/po/sr.po -index fce0f63..22f129a 100644 ---- a/po/sr.po -+++ b/po/sr.po -@@ -2230,3 +2230,6 @@ msgstr "_Затвори прозор" - - #~ msgid "Close Window" - #~ msgstr "Затвори прозор" -+ -+msgid "Transparent background" -+msgstr "Провидна позадина" -diff --git a/po/sr@latin.po b/po/sr@latin.po -index c82646c..55f6a0e 100644 ---- a/po/sr@latin.po -+++ b/po/sr@latin.po -@@ -2230,3 +2230,6 @@ msgstr "_Zatvori prozor" - - #~ msgid "Close Window" - #~ msgstr "Zatvori prozor" -+ -+msgid "Transparent background" -+msgstr "Providna pozadina" -diff --git a/po/sv.po b/po/sv.po -index 8f64ba2..b0d6fcb 100644 ---- a/po/sv.po -+++ b/po/sv.po -@@ -2080,5 +2080,8 @@ msgstr "Stän_g fönster" - #~ msgid "Unknown completion request for \"%s\"" - #~ msgstr "Okänd kompletteringsbegäran för \"%s\"" - -+msgid "Transparent background" -+msgstr "Genomskinlig bakgrund" -+ - #~ msgid "Missing command" - #~ msgstr "Kommando saknas" -diff --git a/po/ta.po b/po/ta.po -index 80aa2f6..61185b4 100644 ---- a/po/ta.po -+++ b/po/ta.po -@@ -3028,8 +3028,8 @@ msgstr "_l சாளரத்தை மூடவும்" - #~ msgid "_Solid color" - #~ msgstr "(_S) ஒரே வண்ணம்" - --#~ msgid "_Transparent background" --#~ msgstr "_T புலப்பாடு பின்னணி" -+msgid "Transparent background" -+msgstr "புலப்பாடு பின்னணி" - - #~ msgid "No such profile \"%s\", using default profile\n" - #~ msgstr "\"%s\" என்ற வரியுரு கிடையாது, முன்னிருப்பு வரியுரு பயன்படுத்தப்படும்\n" -diff --git a/po/te.po b/po/te.po -index 000cda3..6dcf793 100644 ---- a/po/te.po -+++ b/po/te.po -@@ -2898,8 +2898,8 @@ msgstr "కిటికీని మూసివేయి (_l)" - #~ msgid "Background image _scrolls" - #~ msgstr "నేపథ్యచిత్రము స్క్రాల్స్ (_s)" - --#~ msgid "_Transparent background" --#~ msgstr "పారదర్శక నేపథ్యం (_T)" -+msgid "Transparent background" -+msgstr "పారదర్శక నేపథ్యం" - - #~ msgid "S_hade transparent or image background:" - #~ msgstr "పారదర్శకంగా మారు లేదా చిత్రము బ్యాక్‌గ్రౌండ్ కు మారు(_h):" -diff --git a/po/th.po b/po/th.po -index be9b0cb..482907f 100644 ---- a/po/th.po -+++ b/po/th.po -@@ -2616,8 +2616,8 @@ msgstr "ปิ_ดหน้าต่าง" - #~ msgid "_Solid color" - #~ msgstr "สี_ทึบ" - --#~ msgid "_Transparent background" --#~ msgstr "พื้นหลังโปร่งแ_สง" -+msgid "Transparent background" -+msgstr "พื้นหลังโปร่งแสง" - - #~ msgid "" - #~ "You already have a profile called “%s”. Do you want to create another " -diff --git a/po/tr.po b/po/tr.po -index 02a704a..78f26ba 100644 ---- a/po/tr.po -+++ b/po/tr.po -@@ -1968,3 +1968,6 @@ msgstr "Hala bir süreç bu uçbirimde çalışıyor. Uçbirimi kapatmak onu son - #: ../src/terminal-window.c:3652 - msgid "C_lose Window" - msgstr "_Pencereyi Kapat" -+ -+msgid "Transparent background" -+msgstr "Şeffaf arkaplan" -diff --git a/po/ug.po b/po/ug.po -index 1673bb3..e21e61e 100644 ---- a/po/ug.po -+++ b/po/ug.po -@@ -2616,8 +2616,8 @@ msgstr "ماۋزۇ (_T):" - #~ msgid "_Solid color" - #~ msgstr "ساپ رەڭ(_S)" - --#~ msgid "_Transparent background" --#~ msgstr "سۈزۈك تەگلىك(_T)" -+msgid "Transparent background" -+msgstr "سۈزۈك تەگلىك" - - #~ msgid "" - #~ "You already have a profile called “%s”. Do you want to create another " -diff --git a/po/uk.po b/po/uk.po -index a8db018..414c413 100644 ---- a/po/uk.po -+++ b/po/uk.po -@@ -2946,8 +2946,8 @@ msgstr "Закр_ити вікно" - #~ msgid "_Solid color" - #~ msgstr "_Суцільний колір" - --#~ msgid "_Transparent background" --#~ msgstr "П_розоре тло" -+msgid "Transparent background" -+msgstr "Прозоре тло" - - #~ msgid "Switch to Tab 2" - #~ msgstr "До вкладки 2" -diff --git a/po/vi.po b/po/vi.po -index e943917..87846ac 100644 ---- a/po/vi.po -+++ b/po/vi.po -@@ -2671,3 +2671,6 @@ msgstr "Đón_g cửa sổ" - #~ "Phím tắt để đặt lại thiết bị cuối. Dùng dạng chuỗi có cùng một khuôn dạng " - #~ "với tập tin tài nguyên GTK+. Nếu bạn đặt tùy chọn là chuỗi “disabled” (bị " - #~ "tắt), nghĩa là không có phím tắt cho hành động này." -+ -+msgid "Transparent background" -+msgstr "Nền trong suốt" -diff --git a/po/wa.po b/po/wa.po -index 2856571..f068531 100644 ---- a/po/wa.po -+++ b/po/wa.po -@@ -563,8 +563,8 @@ msgid "_Text color:" - msgstr "Coleur pol _tecse:" - - #: ../src/gnome-terminal.glade2.h:86 --msgid "_Transparent background" --msgstr "Fond k' on voet _houte" -+msgid "Transparent background" -+msgstr "Fond k' on voet houte" - - #: ../src/gnome-terminal.glade2.h:87 - msgid "_Update login records when command is launched" -diff --git a/po/xh.po b/po/xh.po -index e5981c6..7f9f804 100644 ---- a/po/xh.po -+++ b/po/xh.po -@@ -620,8 +620,8 @@ msgid "_Text color:" - msgstr "_Umbala wombhalo:" - - #: ../src/gnome-terminal.glade2.h:102 --msgid "_Transparent background" --msgstr "_Okungasemva okucace gca" -+msgid "Transparent background" -+msgstr "Okungasemva okucace gca" - - #: ../src/gnome-terminal.glade2.h:103 - msgid "_Update login records when command is launched" -diff --git a/po/zh_CN.po b/po/zh_CN.po -index b18a9e7..287db04 100644 ---- a/po/zh_CN.po -+++ b/po/zh_CN.po -@@ -2280,3 +2280,6 @@ msgstr "关闭窗口(_L)" - - #~ msgid "_Find..." - #~ msgstr "查找(_F)..." -+ -+msgid "Transparent background" -+msgstr "透明背景" -diff --git a/po/zh_HK.po b/po/zh_HK.po -index eb0ede7..aceb184 100644 ---- a/po/zh_HK.po -+++ b/po/zh_HK.po -@@ -2376,3 +2376,6 @@ msgstr "關閉視窗(_L)" - - #~ msgid "Show session management options" - #~ msgstr "顯示作業階段管理選項" -+ -+msgid "Transparent background" -+msgstr "透明背景" -diff --git a/po/zh_TW.po b/po/zh_TW.po -index a32a539..f0674dc 100644 ---- a/po/zh_TW.po -+++ b/po/zh_TW.po -@@ -2379,3 +2379,6 @@ msgstr "關閉視窗(_L)" - - #~ msgid "Show session management options" - #~ msgstr "顯示作業階段管理選項" -+ -+msgid "Transparent background" -+msgstr "透明背景" --- -2.1.0 - diff --git a/x11-terms/gnome-terminal/files/gnome-terminal-3.18.2-dark-theme.patch b/x11-terms/gnome-terminal/files/gnome-terminal-3.18.2-dark-theme.patch deleted file mode 100644 index 05dd2cb2c427..000000000000 --- a/x11-terms/gnome-terminal/files/gnome-terminal-3.18.2-dark-theme.patch +++ /dev/null @@ -1,176 +0,0 @@ -From 7da7309d203e51fb03c002f87a9a6ddd8ee67978 Mon Sep 17 00:00:00 2001 -From: Debarshi Ray -Date: Tue, 17 Feb 2015 13:22:11 +0100 -Subject: [PATCH 1/2] Revert "prefs: Remove dark theme pref" - -This reverts commit 5f6c514a8840a5d1b87a8c399defee3b5052ec18. ---- - src/org.gnome.Terminal.gschema.xml | 5 +++++ - src/preferences.ui | 16 ++++++++++++++++ - src/terminal-app.c | 4 ++++ - src/terminal-prefs.c | 9 ++++++++- - src/terminal-schemas.h | 1 + - 5 files changed, 34 insertions(+), 1 deletion(-) - -Index: gnome-terminal-3.17.91/src/org.gnome.Terminal.gschema.xml -=================================================================== ---- gnome-terminal-3.17.91.orig/src/org.gnome.Terminal.gschema.xml -+++ gnome-terminal-3.17.91/src/org.gnome.Terminal.gschema.xml -@@ -658,6 +658,11 @@ - Whether to show the menubar in new windows -
- -+ -+ false -+ Whether to use a dark theme variant -+ -+ - - 'window' - Whether to open new terminals as windows or tabs -Index: gnome-terminal-3.17.91/src/preferences.ui -=================================================================== ---- gnome-terminal-3.17.91.orig/src/preferences.ui -+++ gnome-terminal-3.17.91/src/preferences.ui -@@ -99,6 +99,22 @@ - - - -+ -+ Use _dark theme variant -+ True -+ True -+ False -+ True -+ 0 -+ True -+ -+ -+ False -+ True -+ 3 -+ -+ -+ - - True - False -Index: gnome-terminal-3.17.91/src/terminal-app.c -=================================================================== ---- gnome-terminal-3.17.91.orig/src/terminal-app.c -+++ gnome-terminal-3.17.91/src/terminal-app.c -@@ -409,6 +409,10 @@ terminal_app_init (TerminalApp *app) - - /* Terminal global settings */ - app->global_settings = g_settings_new (TERMINAL_SETTING_SCHEMA); -+ g_settings_bind (app->global_settings, TERMINAL_SETTING_DARK_THEME_KEY, -+ gtk_settings_get_default (), -+ "gtk-application-prefer-dark-theme", -+ G_SETTINGS_BIND_GET); - - /* Check if we need to migrate from gconf to dconf */ - maybe_migrate_settings (app); -Index: gnome-terminal-3.17.91/src/terminal-prefs.c -=================================================================== ---- gnome-terminal-3.17.91.orig/src/terminal-prefs.c -+++ gnome-terminal-3.17.91/src/terminal-prefs.c -@@ -560,7 +560,7 @@ terminal_prefs_show_preferences (GtkWind - GtkWidget *show_menubar_button, *disable_mnemonics_button, *disable_menu_accel_button; - GtkWidget *disable_shortcuts_button; - GtkWidget *tree_view_container, *new_button, *edit_button, *clone_button, *remove_button; -- GtkWidget *new_terminal_mode_combo; -+ GtkWidget *dark_theme_button, *new_terminal_mode_combo; - GtkWidget *default_hbox, *default_label; - GtkWidget *close_button, *help_button; - GtkTreeSelection *selection; -@@ -584,6 +584,7 @@ terminal_prefs_show_preferences (GtkWind - "close-button", &close_button, - "help-button", &help_button, - "default-show-menubar-checkbutton", &show_menubar_button, -+ "dark-theme-checkbutton", &dark_theme_button, - "new-terminal-mode-combobox", &new_terminal_mode_combo, - "disable-mnemonics-checkbutton", &disable_mnemonics_button, - "disable-shortcuts-checkbutton", &disable_shortcuts_button, -@@ -613,6 +614,12 @@ terminal_prefs_show_preferences (GtkWind - "active", - G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET); - -+ g_settings_bind (settings, -+ TERMINAL_SETTING_DARK_THEME_KEY, -+ dark_theme_button, -+ "active", -+ G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET); -+ - g_settings_bind (settings, - TERMINAL_SETTING_NEW_TERMINAL_MODE_KEY, - new_terminal_mode_combo, -Index: gnome-terminal-3.17.91/src/terminal-schemas.h -=================================================================== ---- gnome-terminal-3.17.91.orig/src/terminal-schemas.h -+++ gnome-terminal-3.17.91/src/terminal-schemas.h -@@ -68,6 +68,7 @@ G_BEGIN_DECLS - - #define TERMINAL_SETTING_CONFIRM_CLOSE_KEY "confirm-close" - #define TERMINAL_SETTING_DEFAULT_SHOW_MENUBAR_KEY "default-show-menubar" -+#define TERMINAL_SETTING_DARK_THEME_KEY "dark-theme" - #define TERMINAL_SETTING_ENABLE_MENU_BAR_ACCEL_KEY "menu-accelerator-enabled" - #define TERMINAL_SETTING_ENABLE_MNEMONICS_KEY "mnemonics-enabled" - #define TERMINAL_SETTING_ENABLE_SHORTCUTS_KEY "shortcuts-enabled" -Index: gnome-terminal-3.17.91/help/C/pref-theme.page -=================================================================== ---- /dev/null -+++ gnome-terminal-3.17.91/help/C/pref-theme.page -@@ -0,0 +1,41 @@ -+ -+ -+ -+ -+ -+ -+ -+ Ekaterina Gerasimova -+ kittykat3756@gmail.com -+ 2014 -+ -+ -+ -+ -+ -+ Use either the light or dark theme for Terminal. -+ -+ -+ Chose the window theme -+ -+

You can chose to use either the dark theme or the light theme for the -+ terminal window.

-+ -+ -+ -+

Select -+ EditPreferencesGeneral.

-+
-+ -+

To use the dark theme, select Use dark theme variant.

-+
-+
-+ -+
-Index: gnome-terminal-3.17.91/help/Makefile.am -=================================================================== ---- gnome-terminal-3.17.91.orig/help/Makefile.am -+++ gnome-terminal-3.17.91/help/Makefile.am -@@ -35,6 +35,7 @@ HELP_FILES = \ - pref-profile-encoding.page \ - pref-scrolling.page \ - pref-tab-window.page \ -+ pref-theme.page \ - pref-user-input.page \ - profile.page \ - prob-reset.page \ diff --git a/x11-terms/gnome-terminal/files/gnome-terminal-3.18.2-transparency-fix-for-broken-themes.patch b/x11-terms/gnome-terminal/files/gnome-terminal-3.18.2-transparency-fix-for-broken-themes.patch deleted file mode 100644 index 2107da68ca20..000000000000 --- a/x11-terms/gnome-terminal/files/gnome-terminal-3.18.2-transparency-fix-for-broken-themes.patch +++ /dev/null @@ -1,62 +0,0 @@ -From df5793813d19dccfb6dfa75c1be766df562adb48 Mon Sep 17 00:00:00 2001 -From: Lars Uebernickel -Date: Wed, 28 May 2014 14:11:02 +0200 -Subject: [PATCH] window: Make the drawing robust across all themes - -There are lots of themes out there in the wild that do not specify a -background-color for all widgets and the default is transparent. This -is usually not a problem because GTK+ sets an opaque region on the -whole window and things without a background-color get drawn with the -theme's default background colour. However, to achieve transparency -we disable the opaque region by making the window app-paintable. This -can lead to transparent menubars or notebook tabs in some themes. We -can avoid this by ensuring that the window always renders a background. - -https://bugzilla.gnome.org/show_bug.cgi?id=730016 ---- - src/terminal-window.c | 21 +++++++++++++++++++++ - 1 files changed, 21 insertions(+), 0 deletions(-) - -diff --git a/src/terminal-window.c b/src/terminal-window.c -index 98acab4..b838424 100644 ---- a/src/terminal-window.c -+++ b/src/terminal-window.c -@@ -2189,6 +2189,26 @@ terminal_window_realize (GtkWidget *widget) - } - - static gboolean -+terminal_window_draw (GtkWidget *widget, -+ cairo_t *cr) -+{ -+ if (gtk_widget_get_app_paintable (widget)) -+ { -+ GtkStyleContext *context; -+ int width; -+ int height; -+ -+ context = gtk_widget_get_style_context (widget); -+ width = gtk_widget_get_allocated_width (widget); -+ height = gtk_widget_get_allocated_height (widget); -+ gtk_render_background (context, cr, 0, 0, width, height); -+ gtk_render_frame (context, cr, 0, 0, width, height); -+ } -+ -+ return GTK_WIDGET_CLASS (terminal_window_parent_class)->draw (widget, cr); -+} -+ -+static gboolean - terminal_window_state_event (GtkWidget *widget, - GdkEventWindowState *event) - { -@@ -2748,6 +2768,7 @@ terminal_window_class_init (TerminalWindowClass *klass) - - widget_class->show = terminal_window_show; - widget_class->realize = terminal_window_realize; -+ widget_class->draw = terminal_window_draw; - widget_class->window_state_event = terminal_window_state_event; - widget_class->screen_changed = terminal_window_screen_changed; - widget_class->style_updated = terminal_window_style_updated; --- -1.7.1 - - diff --git a/x11-terms/gnome-terminal/files/gnome-terminal-3.18.2-transparency.patch b/x11-terms/gnome-terminal/files/gnome-terminal-3.22.0-transparency.patch similarity index 52% rename from x11-terms/gnome-terminal/files/gnome-terminal-3.18.2-transparency.patch rename to x11-terms/gnome-terminal/files/gnome-terminal-3.22.0-transparency.patch index 58259975cb1a..981fc6d13197 100644 --- a/x11-terms/gnome-terminal/files/gnome-terminal-3.18.2-transparency.patch +++ b/x11-terms/gnome-terminal/files/gnome-terminal-3.22.0-transparency.patch @@ -1,7 +1,7 @@ -From 1cb63cd1c90cb5bfc8ed2e6d161a7b96c51d8a29 Mon Sep 17 00:00:00 2001 +From 000785a2194012702c5245b0ac69b0003371bcdd Mon Sep 17 00:00:00 2001 From: Debarshi Ray Date: Mon, 12 May 2014 14:57:18 +0200 -Subject: [PATCH] Restore transparency +Subject: [PATCH 1/3] Restore transparency The transparency settings were removed as a side effect of 2bff4b63ed3ceef6055e35563e9b0b33ad57349d @@ -9,20 +9,24 @@ The transparency settings were removed as a side effect of This restores them and you will need a compositing window manager to use it. The background image setting, also known as faux transparency, was not restored. + +The transparency checkbox lost its mnemonic accelerator because 't' +is already taken and using any other letter would make it hard to +restore the translations of the string. --- - src/org.gnome.Terminal.gschema.xml | 10 ++++ - src/profile-editor.c | 11 ++++ - src/profile-preferences.ui | 92 ++++++++++++++++++++++++++++++++++++ - src/terminal-schemas.h | 3 + - src/terminal-screen.c | 22 ++++++++- - src/terminal-window.c | 7 +++ - 6 files changed, 144 insertions(+), 1 deletions(-) + src/org.gnome.Terminal.gschema.xml | 10 +++++ + src/profile-editor.c | 11 +++++ + src/profile-preferences.ui | 92 ++++++++++++++++++++++++++++++++++++++ + src/terminal-schemas.h | 3 ++ + src/terminal-screen.c | 22 ++++++++- + src/terminal-window.c | 7 +++ + 6 files changed, 144 insertions(+), 1 deletion(-) -Index: gnome-terminal-3.17.91/src/org.gnome.Terminal.gschema.xml -=================================================================== ---- gnome-terminal-3.17.91.orig/src/org.gnome.Terminal.gschema.xml -+++ gnome-terminal-3.17.91/src/org.gnome.Terminal.gschema.xml -@@ -334,6 +334,16 @@ +diff --git a/src/org.gnome.Terminal.gschema.xml b/src/org.gnome.Terminal.gschema.xml +index c031c8a..7bdd156 100644 +--- a/src/org.gnome.Terminal.gschema.xml ++++ b/src/org.gnome.Terminal.gschema.xml +@@ -370,6 +370,16 @@ 'narrow' Whether ambiguous-width characters are narrow or wide when using UTF-8 encoding @@ -39,11 +43,11 @@ Index: gnome-terminal-3.17.91/src/org.gnome.Terminal.gschema.xml -Index: gnome-terminal-3.17.91/src/profile-editor.c -=================================================================== ---- gnome-terminal-3.17.91.orig/src/profile-editor.c -+++ gnome-terminal-3.17.91/src/profile-editor.c -@@ -1097,7 +1097,18 @@ terminal_profile_edit (GSettings *profi +diff --git a/src/profile-editor.c b/src/profile-editor.c +index 002561d..1a758a9 100644 +--- a/src/profile-editor.c ++++ b/src/profile-editor.c +@@ -1215,7 +1215,18 @@ terminal_profile_edit (GSettings *profile, "active-id", G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET); @@ -62,10 +66,10 @@ Index: gnome-terminal-3.17.91/src/profile-editor.c terminal_util_bind_mnemonic_label_sensitivity (editor); terminal_util_dialog_focus_widget (editor, widget_name); -Index: gnome-terminal-3.17.91/src/profile-preferences.ui -=================================================================== ---- gnome-terminal-3.17.91.orig/src/profile-preferences.ui -+++ gnome-terminal-3.17.91/src/profile-preferences.ui +diff --git a/src/profile-preferences.ui b/src/profile-preferences.ui +index 5adcb53..b7decb2 100644 +--- a/src/profile-preferences.ui ++++ b/src/profile-preferences.ui @@ -23,6 +23,11 @@ 1 100 @@ -75,10 +79,10 @@ Index: gnome-terminal-3.17.91/src/profile-preferences.ui + 1 + 10 +
- + -@@ -991,6 +996,93 @@ +@@ -1036,6 +1041,93 @@ 1 @@ -90,7 +94,7 @@ Index: gnome-terminal-3.17.91/src/profile-preferences.ui + 12 + + -+ Use t_ransparent background ++ Transparent background + True + True + False @@ -172,11 +176,11 @@ Index: gnome-terminal-3.17.91/src/profile-preferences.ui -Index: gnome-terminal-3.17.91/src/terminal-schemas.h -=================================================================== ---- gnome-terminal-3.17.91.orig/src/terminal-schemas.h -+++ gnome-terminal-3.17.91/src/terminal-schemas.h -@@ -63,6 +63,9 @@ G_BEGIN_DECLS +diff --git a/src/terminal-schemas.h b/src/terminal-schemas.h +index 4b734a3..e434075 100644 +--- a/src/terminal-schemas.h ++++ b/src/terminal-schemas.h +@@ -69,6 +69,9 @@ G_BEGIN_DECLS #define TERMINAL_PROFILE_VISIBLE_NAME_KEY "visible-name" #define TERMINAL_PROFILE_WORD_CHAR_EXCEPTIONS_KEY "word-char-exceptions" @@ -186,14 +190,14 @@ Index: gnome-terminal-3.17.91/src/terminal-schemas.h #define TERMINAL_SETTING_CONFIRM_CLOSE_KEY "confirm-close" #define TERMINAL_SETTING_DEFAULT_SHOW_MENUBAR_KEY "default-show-menubar" #define TERMINAL_SETTING_ENABLE_MENU_BAR_ACCEL_KEY "menu-accelerator-enabled" -Index: gnome-terminal-3.17.91/src/terminal-screen.c -=================================================================== ---- gnome-terminal-3.17.91.orig/src/terminal-screen.c -+++ gnome-terminal-3.17.91/src/terminal-screen.c -@@ -765,7 +765,9 @@ terminal_screen_profile_changed_cb (GSet - prop_name == I_(TERMINAL_PROFILE_BACKGROUND_COLOR_KEY) || - prop_name == I_(TERMINAL_PROFILE_BOLD_COLOR_SAME_AS_FG_KEY) || - prop_name == I_(TERMINAL_PROFILE_BOLD_COLOR_KEY) || +diff --git a/src/terminal-screen.c b/src/terminal-screen.c +index 9a0b450..eab0cec 100644 +--- a/src/terminal-screen.c ++++ b/src/terminal-screen.c +@@ -827,7 +827,9 @@ terminal_screen_profile_changed_cb (GSettings *profile, + prop_name == I_(TERMINAL_PROFILE_HIGHLIGHT_COLORS_SET_KEY) || + prop_name == I_(TERMINAL_PROFILE_HIGHLIGHT_BACKGROUND_COLOR_KEY) || + prop_name == I_(TERMINAL_PROFILE_HIGHLIGHT_FOREGROUND_COLOR_KEY) || - prop_name == I_(TERMINAL_PROFILE_PALETTE_KEY)) + prop_name == I_(TERMINAL_PROFILE_PALETTE_KEY) || + prop_name == I_(TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND) || @@ -201,17 +205,17 @@ Index: gnome-terminal-3.17.91/src/terminal-screen.c update_color_scheme (screen); if (!prop_name || prop_name == I_(TERMINAL_PROFILE_AUDIBLE_BELL_KEY)) -@@ -831,6 +833,8 @@ update_color_scheme (TerminalScreen *scr - GdkRGBA fg, bg, bold, theme_fg, theme_bg; - GdkRGBA *boldp; +@@ -897,6 +899,8 @@ update_color_scheme (TerminalScreen *screen) + GdkRGBA *cursor_bgp = NULL, *cursor_fgp = NULL; + GdkRGBA *highlight_bgp = NULL, *highlight_fgp = NULL; GtkStyleContext *context; + GtkWidget *toplevel; + gboolean transparent; + gboolean use_theme_colors; context = gtk_widget_get_style_context (widget); - gtk_style_context_get_color (context, gtk_style_context_get_state (context), &theme_fg); -@@ -851,9 +855,25 @@ update_color_scheme (TerminalScreen *scr - boldp = NULL; +@@ -938,6 +942,18 @@ update_color_scheme (TerminalScreen *screen) + } colors = terminal_g_settings_get_rgba_palette (priv->profile, TERMINAL_PROFILE_PALETTE_KEY, &n_colors); + @@ -229,6 +233,10 @@ Index: gnome-terminal-3.17.91/src/terminal-screen.c vte_terminal_set_colors (VTE_TERMINAL (screen), &fg, &bg, colors, n_colors); vte_terminal_set_color_bold (VTE_TERMINAL (screen), boldp); +@@ -945,6 +961,10 @@ update_color_scheme (TerminalScreen *screen) + vte_terminal_set_color_cursor_foreground (VTE_TERMINAL (screen), cursor_fgp); + vte_terminal_set_color_highlight (VTE_TERMINAL (screen), highlight_bgp); + vte_terminal_set_color_highlight_foreground (VTE_TERMINAL (screen), highlight_fgp); + + toplevel = gtk_widget_get_toplevel (GTK_WIDGET (screen)); + if (toplevel != NULL && gtk_widget_is_toplevel (toplevel)) @@ -236,20 +244,20 @@ Index: gnome-terminal-3.17.91/src/terminal-screen.c } static void -Index: gnome-terminal-3.17.91/src/terminal-window.c -=================================================================== ---- gnome-terminal-3.17.91.orig/src/terminal-window.c -+++ gnome-terminal-3.17.91/src/terminal-window.c -@@ -2586,6 +2586,8 @@ terminal_window_init (TerminalWindow *wi +diff --git a/src/terminal-window.c b/src/terminal-window.c +index a290d9f..020c6f0 100644 +--- a/src/terminal-window.c ++++ b/src/terminal-window.c +@@ -2621,6 +2621,8 @@ terminal_window_init (TerminalWindow *window) TerminalWindowPrivate *priv; TerminalApp *app; TerminalSettingsList *profiles_list; + GdkScreen *screen; + GdkVisual *visual; + GSettings *gtk_debug_settings; GtkActionGroup *action_group; GtkAction *action; - GtkUIManager *manager; -@@ -2601,6 +2603,11 @@ terminal_window_init (TerminalWindow *wi +@@ -2637,6 +2639,11 @@ terminal_window_init (TerminalWindow *window) gtk_widget_init_template (GTK_WIDGET (window)); @@ -261,3 +269,195 @@ Index: gnome-terminal-3.17.91/src/terminal-window.c uuid_generate (u); uuid_unparse (u, uuidstr); priv->uuid = g_strdup (uuidstr); +-- +2.10.0 + + +From 9be09f1e055ae7aa2589ec94add5e994260929e3 Mon Sep 17 00:00:00 2001 +From: Lars Uebernickel +Date: Wed, 28 May 2014 14:11:02 +0200 +Subject: [PATCH 2/3] window: Make the drawing robust across all themes + +There are lots of themes out there in the wild that do not specify a +background-color for all widgets and the default is transparent. This +is usually not a problem because GTK+ sets an opaque region on the +whole window and things without a background-color get drawn with the +theme's default background colour. However, to achieve transparency +we disable the opaque region by making the window app-paintable. This +can lead to transparent menubars or notebook tabs in some themes. We +can avoid this by ensuring that the window always renders a background. + +https://bugzilla.gnome.org/show_bug.cgi?id=730016 +--- + src/terminal-window.c | 21 +++++++++++++++++++++ + 1 file changed, 21 insertions(+) + +diff --git a/src/terminal-window.c b/src/terminal-window.c +index 020c6f0..a9f3ff7 100644 +--- a/src/terminal-window.c ++++ b/src/terminal-window.c +@@ -2295,6 +2295,26 @@ terminal_window_realize (GtkWidget *widget) + } + + static gboolean ++terminal_window_draw (GtkWidget *widget, ++ cairo_t *cr) ++{ ++ if (gtk_widget_get_app_paintable (widget)) ++ { ++ GtkStyleContext *context; ++ int width; ++ int height; ++ ++ context = gtk_widget_get_style_context (widget); ++ width = gtk_widget_get_allocated_width (widget); ++ height = gtk_widget_get_allocated_height (widget); ++ gtk_render_background (context, cr, 0, 0, width, height); ++ gtk_render_frame (context, cr, 0, 0, width, height); ++ } ++ ++ return GTK_WIDGET_CLASS (terminal_window_parent_class)->draw (widget, cr); ++} ++ ++static gboolean + terminal_window_state_event (GtkWidget *widget, + GdkEventWindowState *event) + { +@@ -2832,6 +2852,7 @@ terminal_window_class_init (TerminalWindowClass *klass) + + widget_class->show = terminal_window_show; + widget_class->realize = terminal_window_realize; ++ widget_class->draw = terminal_window_draw; + widget_class->window_state_event = terminal_window_state_event; + widget_class->screen_changed = terminal_window_screen_changed; + widget_class->style_updated = terminal_window_style_updated; +-- +2.10.0 + + +From 682a729942c07c375fbc075484bc49f188be40cd Mon Sep 17 00:00:00 2001 +From: "Owen W. Taylor" +Date: Fri, 13 Nov 2015 15:16:42 +0100 +Subject: [PATCH 3/3] screen, window: Extra padding around transparent + terminals in Wayland + +https://bugzilla.redhat.com/show_bug.cgi?id=1207943 +--- + src/terminal-screen.c | 40 +++++++++++++++++++++++++++++++++++++--- + src/terminal-window.c | 18 ++++++++++++------ + 2 files changed, 49 insertions(+), 9 deletions(-) + +diff --git a/src/terminal-screen.c b/src/terminal-screen.c +index eab0cec..5d321a7 100644 +--- a/src/terminal-screen.c ++++ b/src/terminal-screen.c +@@ -137,6 +137,8 @@ static void terminal_screen_system_font_changed_cb (GSettings *, + static gboolean terminal_screen_popup_menu (GtkWidget *widget); + static gboolean terminal_screen_button_press (GtkWidget *widget, + GdkEventButton *event); ++static void terminal_screen_hierarchy_changed (GtkWidget *widget, ++ GtkWidget *previous_toplevel); + static gboolean terminal_screen_do_exec (TerminalScreen *screen, + FDSetupData *data, + GError **error); +@@ -482,6 +484,7 @@ terminal_screen_class_init (TerminalScreenClass *klass) + widget_class->drag_data_received = terminal_screen_drag_data_received; + widget_class->button_press_event = terminal_screen_button_press; + widget_class->popup_menu = terminal_screen_popup_menu; ++ widget_class->hierarchy_changed = terminal_screen_hierarchy_changed; + + terminal_class->child_exited = terminal_screen_child_exited; + +@@ -885,6 +888,32 @@ terminal_screen_profile_changed_cb (GSettings *profile, + } + + static void ++update_toplevel_transparency (TerminalScreen *screen) ++{ ++ GtkWidget *widget = GTK_WIDGET (screen); ++ TerminalScreenPrivate *priv = screen->priv; ++ GSettings *profile = priv->profile; ++ GtkWidget *toplevel; ++ ++ toplevel = gtk_widget_get_toplevel (widget); ++ if (toplevel != NULL && gtk_widget_is_toplevel (toplevel)) ++ { ++ gboolean transparent; ++ ++ transparent = g_settings_get_boolean (profile, TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND); ++ if (gtk_widget_get_app_paintable (toplevel) != transparent) ++ { ++ gtk_widget_set_app_paintable (toplevel, transparent); ++ ++ /* The opaque region of the toplevel isn't updated until the toplevel is allocated; ++ * set_app_paintable() doesn't force an allocation, so do that manually. ++ */ ++ gtk_widget_queue_resize (toplevel); ++ } ++ } ++} ++ ++static void + update_color_scheme (TerminalScreen *screen) + { + GtkWidget *widget = GTK_WIDGET (screen); +@@ -962,9 +991,7 @@ update_color_scheme (TerminalScreen *screen) + vte_terminal_set_color_highlight (VTE_TERMINAL (screen), highlight_bgp); + vte_terminal_set_color_highlight_foreground (VTE_TERMINAL (screen), highlight_fgp); + +- toplevel = gtk_widget_get_toplevel (GTK_WIDGET (screen)); +- if (toplevel != NULL && gtk_widget_is_toplevel (toplevel)) +- gtk_widget_set_app_paintable (toplevel, transparent); ++ update_toplevel_transparency (screen); + } + + static void +@@ -1567,6 +1594,13 @@ terminal_screen_do_popup (TerminalScreen *screen, + terminal_screen_popup_info_unref (info); + } + ++static void ++terminal_screen_hierarchy_changed (GtkWidget *widget, ++ GtkWidget *previous_toplevel) ++{ ++ update_toplevel_transparency (TERMINAL_SCREEN (widget)); ++} ++ + static gboolean + terminal_screen_button_press (GtkWidget *widget, + GdkEventButton *event) +diff --git a/src/terminal-window.c b/src/terminal-window.c +index a9f3ff7..d09484e 100644 +--- a/src/terminal-window.c ++++ b/src/terminal-window.c +@@ -2300,15 +2300,21 @@ terminal_window_draw (GtkWidget *widget, + { + if (gtk_widget_get_app_paintable (widget)) + { ++ GtkAllocation child_allocation; + GtkStyleContext *context; +- int width; +- int height; ++ GtkWidget *child; ++ ++ /* Get the *child* allocation, so we don't overwrite window borders */ ++ child = gtk_bin_get_child (GTK_BIN (widget)); ++ gtk_widget_get_allocation (child, &child_allocation); + + context = gtk_widget_get_style_context (widget); +- width = gtk_widget_get_allocated_width (widget); +- height = gtk_widget_get_allocated_height (widget); +- gtk_render_background (context, cr, 0, 0, width, height); +- gtk_render_frame (context, cr, 0, 0, width, height); ++ gtk_render_background (context, cr, ++ child_allocation.x, child_allocation.y, ++ child_allocation.width, child_allocation.height); ++ gtk_render_frame (context, cr, ++ child_allocation.x, child_allocation.y, ++ child_allocation.width, child_allocation.height); + } + + return GTK_WIDGET_CLASS (terminal_window_parent_class)->draw (widget, cr); +-- +2.10.0 + diff --git a/x11-terms/gnome-terminal/gnome-terminal-3.16.2-r2.ebuild b/x11-terms/gnome-terminal/gnome-terminal-3.16.2-r2.ebuild deleted file mode 100644 index 9b18c8506d4f..000000000000 --- a/x11-terms/gnome-terminal/gnome-terminal-3.16.2-r2.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" -GCONF_DEBUG="no" -GNOME2_LA_PUNT="yes" - -inherit eutils gnome2 readme.gentoo - -DESCRIPTION="The Gnome Terminal" -HOMEPAGE="https://wiki.gnome.org/Apps/Terminal/" - -LICENSE="GPL-3+" -SLOT="0" -IUSE="debug +gnome-shell +nautilus vanilla" -KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux" - -# FIXME: automagic dependency on gtk+[X] -RDEPEND=" - >=dev-libs/glib-2.40:2[dbus] - >=x11-libs/gtk+-3.10:3[X] - >=x11-libs/vte-0.40.2:2.91 - >=gnome-base/dconf-0.14 - >=gnome-base/gsettings-desktop-schemas-0.1.0 - sys-apps/util-linux - x11-libs/libSM - x11-libs/libICE - gnome-shell? ( gnome-base/gnome-shell ) - nautilus? ( >=gnome-base/nautilus-3 ) -" -# itstool required for help/* with non-en LINGUAS, see bug #549358 -# xmllint required for glib-compile-resources, see bug #549304 -DEPEND="${RDEPEND} - app-text/yelp-tools - dev-libs/libxml2 - dev-util/desktop-file-utils - dev-util/gdbus-codegen - dev-util/itstool - >=dev-util/intltool-0.50 - sys-devel/gettext - virtual/pkgconfig -" - -DOC_CONTENTS="To get previous working directory inherited in new opened - tab you will need to add the following line to your ~/.bashrc:\n - . /etc/profile.d/vte.sh" - -src_prepare() { - gnome2_src_prepare - if ! use vanilla; then - # Fedora patch, https://bugzilla.gnome.org/show_bug.cgi?id=695371 - epatch "${FILESDIR}"/${PN}-3.16.2-restore-transparency.patch - # Fedora patch, https://bugzilla.gnome.org/show_bug.cgi?id=721932 - epatch "${FILESDIR}"/${PN}-3.16.2-restore-dark.patch - fi -} - -src_configure() { - gnome2_src_configure \ - --disable-static \ - --disable-migration \ - $(use_enable debug) \ - $(use_enable gnome-shell search-provider) \ - $(use_with nautilus nautilus-extension) \ - VALAC=$(type -P true) -} - -src_install() { - DOCS="AUTHORS ChangeLog HACKING NEWS" - gnome2_src_install - readme.gentoo_create_doc -} - -pkg_postinst() { - gnome2_pkg_postinst - readme.gentoo_print_elog -} diff --git a/x11-terms/gnome-terminal/gnome-terminal-3.18.2.ebuild b/x11-terms/gnome-terminal/gnome-terminal-3.18.2.ebuild deleted file mode 100644 index 36ea0e643dbd..000000000000 --- a/x11-terms/gnome-terminal/gnome-terminal-3.18.2.ebuild +++ /dev/null @@ -1,79 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" -GCONF_DEBUG="no" -GNOME2_LA_PUNT="yes" - -inherit autotools eutils gnome2 readme.gentoo - -DESCRIPTION="The Gnome Terminal" -HOMEPAGE="https://wiki.gnome.org/Apps/Terminal/" - -LICENSE="GPL-3+" -SLOT="0" -IUSE="debug +gnome-shell +nautilus vanilla" -KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux" - -# FIXME: automagic dependency on gtk+[X] -RDEPEND=" - >=dev-libs/glib-2.42:2[dbus] - >=x11-libs/gtk+-3.10:3[X] - >=x11-libs/vte-0.42.1:2.91 - >=gnome-base/dconf-0.14 - >=gnome-base/gsettings-desktop-schemas-0.1.0 - sys-apps/util-linux - x11-libs/libSM - x11-libs/libICE - gnome-shell? ( gnome-base/gnome-shell ) - nautilus? ( >=gnome-base/nautilus-3 ) -" -# itstool required for help/* with non-en LINGUAS, see bug #549358 -# xmllint required for glib-compile-resources, see bug #549304 -DEPEND="${RDEPEND} - app-text/yelp-tools - dev-libs/libxml2 - dev-util/desktop-file-utils - dev-util/gdbus-codegen - dev-util/itstool - >=dev-util/intltool-0.50 - sys-devel/gettext - virtual/pkgconfig -" - -DOC_CONTENTS="To get previous working directory inherited in new opened - tab you will need to add the following line to your ~/.bashrc:\n - . /etc/profile.d/vte.sh" - -src_prepare() { - if ! use vanilla; then - # OpenSuSE patches, https://bugzilla.gnome.org/show_bug.cgi?id=695371 - epatch "${FILESDIR}"/${PN}-3.18.2-transparency.patch - epatch "${FILESDIR}"/${PN}-3.18.2-transparency-fix-for-broken-themes.patch - epatch "${FILESDIR}"/${PN}-3.18.2-dark-theme.patch - eautoreconf - fi - gnome2_src_prepare -} - -src_configure() { - gnome2_src_configure \ - --disable-static \ - --disable-migration \ - $(use_enable debug) \ - $(use_enable gnome-shell search-provider) \ - $(use_with nautilus nautilus-extension) \ - VALAC=$(type -P true) -} - -src_install() { - DOCS="AUTHORS ChangeLog HACKING NEWS" - gnome2_src_install - readme.gentoo_create_doc -} - -pkg_postinst() { - gnome2_pkg_postinst - readme.gentoo_print_elog -} diff --git a/x11-terms/gnome-terminal/gnome-terminal-3.18.3.ebuild b/x11-terms/gnome-terminal/gnome-terminal-3.22.0.ebuild similarity index 72% rename from x11-terms/gnome-terminal/gnome-terminal-3.18.3.ebuild rename to x11-terms/gnome-terminal/gnome-terminal-3.22.0.ebuild index 446251c4cd2f..edefd389217a 100644 --- a/x11-terms/gnome-terminal/gnome-terminal-3.18.3.ebuild +++ b/x11-terms/gnome-terminal/gnome-terminal-3.22.0.ebuild @@ -2,11 +2,10 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI="5" -GCONF_DEBUG="no" +EAPI="6" GNOME2_LA_PUNT="yes" -inherit autotools eutils gnome2 readme.gentoo +inherit autotools gnome2 readme.gentoo-r1 DESCRIPTION="The Gnome Terminal" HOMEPAGE="https://wiki.gnome.org/Apps/Terminal/" @@ -14,18 +13,17 @@ HOMEPAGE="https://wiki.gnome.org/Apps/Terminal/" LICENSE="GPL-3+" SLOT="0" IUSE="debug +gnome-shell +nautilus vanilla" -KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux" -# FIXME: automagic dependency on gtk+[X] +# FIXME: automagic dependency on gtk+[X], just transitive but needs proper control RDEPEND=" >=dev-libs/glib-2.42:2[dbus] - >=x11-libs/gtk+-3.10:3[X] - >=x11-libs/vte-0.42.1:2.91 + >=x11-libs/gtk+-3.20:3[X] + >=x11-libs/vte-0.46.0:2.91 + >=dev-libs/libpcre2-10 >=gnome-base/dconf-0.14 >=gnome-base/gsettings-desktop-schemas-0.1.0 sys-apps/util-linux - x11-libs/libSM - x11-libs/libICE gnome-shell? ( gnome-base/gnome-shell ) nautilus? ( >=gnome-base/nautilus-3 ) " @@ -34,9 +32,7 @@ RDEPEND=" DEPEND="${RDEPEND} app-text/yelp-tools dev-libs/libxml2 - dev-util/desktop-file-utils dev-util/gdbus-codegen - dev-util/itstool >=dev-util/intltool-0.50 sys-devel/gettext virtual/pkgconfig @@ -49,9 +45,8 @@ DOC_CONTENTS="To get previous working directory inherited in new opened src_prepare() { if ! use vanilla; then # OpenSuSE patches, https://bugzilla.gnome.org/show_bug.cgi?id=695371 - epatch "${FILESDIR}"/${PN}-3.18.2-transparency.patch - epatch "${FILESDIR}"/${PN}-3.18.2-transparency-fix-for-broken-themes.patch - epatch "${FILESDIR}"/${PN}-3.18.2-dark-theme.patch + # http://pkgs.fedoraproject.org/cgit/rpms/gnome-terminal.git/tree/gnome-terminal-transparency-notify.patch (first 3 parts) + eapply "${FILESDIR}"/${PN}-3.22.0-transparency.patch eautoreconf fi gnome2_src_prepare