[gentoo-commits] repo/gentoo:master commit in: app-text/qpdfview/

2018-09-16 Thread Andrey Grozin
commit: 72126cd0868f27446a24b0a9123585d06ae0f564
Author: Andrey Grozin  gentoo  org>
AuthorDate: Sun Sep 16 06:00:20 2018 +
Commit: Andrey Grozin  gentoo  org>
CommitDate: Sun Sep 16 06:00:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72126cd0

app-text/qpdfview: bump to the current snapshot

Package-Manager: Portage-2.3.41, Repoman-2.3.9

 app-text/qpdfview/Manifest|  1 +
 app-text/qpdfview/qpdfview-0.4.18_pre3.ebuild | 96 +++
 2 files changed, 97 insertions(+)

diff --git a/app-text/qpdfview/Manifest b/app-text/qpdfview/Manifest
index fde6dad2615..dc2d4feb8ee 100644
--- a/app-text/qpdfview/Manifest
+++ b/app-text/qpdfview/Manifest
@@ -1,2 +1,3 @@
 DIST qpdfview-0.4.16.tar.gz 636095 BLAKE2B 
b25da3ed1b4bacc02701f6cd2c4e282fd1c7b1fcac8faa1687c5089baefa328854c520ba803a333ea107e7b423a004f6476eb9a7adf67287d4d0807146094fed
 SHA512 
d3ac05fc51d48533e44e58cd19e5d222a8bfbc9da4df02ece6a405d2fdd3346eb4614816ae91e89facf28e107b920ff3ce7b2ccc8c9b7832ae2595ef70d65584
 DIST qpdfview-0.4.18_pre2.tar.gz 668677 BLAKE2B 
1c79a7f9f9d67c533660457ca74d27c1cb389224910d0c8482c2e1d6a0843787e588a40ae7f4e02268392c15aa19b54b6383c2422cc60b20e521d26133c10a3e
 SHA512 
ad19dd6a2bfeb3c5f26488619688ad96653ed50821203b7e5cb2817a4f9957510ce238804b48bf3b21d965ceed25ad1b0386e0bb5e9d0bc5e5c95e6fe10ef811
+DIST qpdfview-0.4.18_pre3.tar.gz 747794 BLAKE2B 
08420a350ae6f8bba65efe2a930a8941a00182900e33266a03d9b6ded4b8ba7ac446de9ed8095f8876dfd3ecfb26b20cc146c82d9c9228fd5c136ad36d749061
 SHA512 
c72f766b0ffb175e0577f08975490b985e859cb41ccf1d6bcdb618664b96b3c4d0fe4ffab2e493ac20b87b85aa658f3beb5b0d430d21deae78df4c503649f1c0

diff --git a/app-text/qpdfview/qpdfview-0.4.18_pre3.ebuild 
b/app-text/qpdfview/qpdfview-0.4.18_pre3.ebuild
new file mode 100644
index 000..21f9544f85e
--- /dev/null
+++ b/app-text/qpdfview/qpdfview-0.4.18_pre3.ebuild
@@ -0,0 +1,96 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PLOCALES="ast az be bg bs ca cs da de el en_AU en_GB eo es eu fa fi fr gl he 
hr hu id it ja kk ko ku ky lt lv ms my nb nds oc pl pt pt_BR ro ru sk sr sv th 
tr ug uk uz vi zh_CN zh_TW"
+
+inherit l10n qmake-utils xdg-utils gnome2-utils
+
+DESCRIPTION="A tabbed document viewer"
+HOMEPAGE="https://launchpad.net/qpdfview;
+SRC_URI="https://dev.gentoo.org/~grozin/${P}.tar.gz;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
+IUSE="cups +dbus djvu fitz +pdf postscript +sqlite +svg synctex"
+
+REQUIRED_USE="?? ( fitz pdf )"
+
+RDEPEND="
+   cups? ( net-print/cups )
+   djvu? ( app-text/djvu )
+   fitz? ( >=app-text/mupdf-1.7:= )
+   postscript? ( app-text/libspectre )
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtprintsupport:5
+   dev-qt/qtwidgets:5
+   dbus? ( dev-qt/qtdbus:5 )
+   pdf? ( >=app-text/poppler-0.35[qt5]
+   dev-qt/qtxml:5 )
+   sqlite? ( dev-qt/qtsql:5[sqlite] )
+   svg? ( dev-qt/qtsvg:5 )
+   !svg? ( virtual/freedesktop-icon-theme )
+   synctex? ( app-text/texlive-core )"
+DEPEND="${RDEPEND}
+   dev-qt/linguist-tools:5
+   virtual/pkgconfig"
+
+DOCS=( CHANGES CONTRIBUTORS README TODO )
+
+src_prepare() {
+   local mylrelease="$(qt5_get_bindir)"/lrelease
+
+   prepare_locale() {
+   "${mylrelease}" "translations/${PN}_${1}.ts" || die "preparing 
${1} locale failed"
+   }
+
+   rm_help() {
+   rm -f "help/help_${1}.html" || die "removing ${1} help file 
failed"
+   }
+
+   l10n_find_plocales_changes translations ${PN}_ .ts
+   l10n_for_each_locale_do prepare_locale
+   l10n_for_each_disabled_locale_do rm_help
+
+   # adapt for prefix
+   sed -i -e "s:/usr:${EPREFIX}/usr:g" qpdfview.pri || die
+
+   default
+}
+
+src_configure() {
+   local myconfig=() i=
+   for i in cups dbus djvu pdf svg synctex; do
+   use ${i} || myconfig+=(without_${i})
+   done
+   use fitz && myconfig+=(with_fitz)
+   use postscript || myconfig+=(without_ps)
+   use sqlite || myconfig+=(without_sql)
+
+   local myqmakeargs=(
+   qpdfview.pro
+   CONFIG+="${myconfig[@]}"
+   PLUGIN_INSTALL_PATH="${EPREFIX}/usr/$(get_libdir)/${PN}"
+   )
+   eqmake5 "${myqmakeargs[@]}"
+}
+
+src_install() {
+   emake INSTALL_ROOT="${D}" install
+   einstalldocs
+}
+
+pkg_postinst() {
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+   gnome2_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/marcel/

2018-09-16 Thread Hans de Graaff
commit: e3a88bf077f15cf35e3cad79399dfcc531f8a70a
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Sep 16 06:42:47 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Sep 16 06:42:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3a88bf0

dev-ruby/marcel: cleanup

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-ruby/marcel/marcel-0.3.2.ebuild | 22 --
 1 file changed, 22 deletions(-)

diff --git a/dev-ruby/marcel/marcel-0.3.2.ebuild 
b/dev-ruby/marcel/marcel-0.3.2.ebuild
deleted file mode 100644
index c45455d4fdd..000
--- a/dev-ruby/marcel/marcel-0.3.2.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-USE_RUBY="ruby22 ruby23 ruby24 ruby25"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Simple mime type detection using magic numbers, filenames, and 
extensions"
-HOMEPAGE="https://github.com/basecamp/marcel;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-all_ruby_prepare() {
-   sed -i -e '2irequire "pathname"' test/test_helper.rb || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/marcel/

2018-09-16 Thread Hans de Graaff
commit: 808d709ed0782056c6f40711a64b8a8dc37802d3
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Sep 16 06:42:15 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Sep 16 06:42:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=808d709e

dev-ruby/marcel: add 0.3.3

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-ruby/marcel/Manifest|  1 +
 dev-ruby/marcel/marcel-0.3.3.ebuild | 25 +
 2 files changed, 26 insertions(+)

diff --git a/dev-ruby/marcel/Manifest b/dev-ruby/marcel/Manifest
index 69b3a9a28e5..4d996edffa8 100644
--- a/dev-ruby/marcel/Manifest
+++ b/dev-ruby/marcel/Manifest
@@ -1 +1,2 @@
 DIST marcel-0.3.2.gem 7839232 BLAKE2B 
001e03b109617f7804e1e8f77d65eaec81544040a13e1d18ef197fed1caa5a26dfc69e1796632a3ec29c3778eef9458a6f701bbefb2f30c89d77fb22622cdb0f
 SHA512 
0e27c5c36f219e30ad41aa87a94e559ecc0185319ab33fbff2cc54656c5ec378c9f8ebd8d8d28a644c9b64cd7106aa2b235b893c5871ddda9db3596d8b8847bb
+DIST marcel-0.3.3.tar.gz 7845456 BLAKE2B 
e27d851119f434144a790cd1bfb1ca21662357b1875ae9193273e00c5abc6156c217efeb961356d4967d984b4c8fb4b4047620fa5d0448cc20651aa1ce05bb69
 SHA512 
d9be185fd6f5185fc67f3eed931ecf3084da671840b6e464bf341f51c9dec4ab1b4650abd1916e640b7caced230d6cb90370bffb559151e0047a8b03211dc751

diff --git a/dev-ruby/marcel/marcel-0.3.3.ebuild 
b/dev-ruby/marcel/marcel-0.3.3.ebuild
new file mode 100644
index 000..8c682631376
--- /dev/null
+++ b/dev-ruby/marcel/marcel-0.3.3.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby23 ruby24 ruby25"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Simple mime type detection using magic numbers, filenames, and 
extensions"
+HOMEPAGE="https://github.com/basecamp/marcel;
+SRC_URI="https://github.com/basecamp/marcel/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+IUSE=""
+
+ruby_add_rdepend ">=dev-ruby/mimemagic-0.3.2:0"
+
+all_ruby_prepare() {
+   sed -i -e '2irequire "pathname"' test/test_helper.rb || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/font-awesome-rails/

2018-09-16 Thread Hans de Graaff
commit: c7b5becce848cfb32837ecc3e989b96fd9290c52
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Sep 16 07:19:42 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Sep 16 07:19:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7b5becc

dev-ruby/font-awesome-rails: add ruby25

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-ruby/font-awesome-rails/font-awesome-rails-4.7.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/font-awesome-rails/font-awesome-rails-4.7.0.4.ebuild 
b/dev-ruby/font-awesome-rails/font-awesome-rails-4.7.0.4.ebuild
index cde55dd6b2b..d7483f2b828 100644
--- a/dev-ruby/font-awesome-rails/font-awesome-rails-4.7.0.4.ebuild
+++ b/dev-ruby/font-awesome-rails/font-awesome-rails-4.7.0.4.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-USE_RUBY="ruby22 ruby23 ruby24"
+USE_RUBY="ruby23 ruby24 ruby25"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_TASK_TEST=""



[gentoo-commits] repo/gentoo:master commit in: dev-lang/python/

2018-09-16 Thread Mikle Kolyada
commit: 268ff1877907c4eb13f1512fcd66956e01259036
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep 16 07:49:06 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep 16 07:49:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=268ff187

dev-lang/python: s390/sh/m68k stable wrt bug #647862

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-lang/python/python-2.7.15.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/python/python-2.7.15.ebuild 
b/dev-lang/python/python-2.7.15.ebuild
index 2e9ae79c8d5..f74ec7b7f44 100644
--- a/dev-lang/python/python-2.7.15.ebuild
+++ b/dev-lang/python/python-2.7.15.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://www.python.org/ftp/python/${PV}/${MY_P}.tar.xz
 
 LICENSE="PSF-2"
 SLOT="2.7"
-KEYWORDS="alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ~ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~x86-fbsd"
 IUSE="-berkdb bluetooth build doc elibc_uclibc examples gdbm hardened ipv6 
libressl +ncurses +readline sqlite +ssl +threads tk +wide-unicode wininst +xml"
 
 # Do not add a dependency on dev-lang/python to this ebuild.



[gentoo-commits] repo/gentoo:master commit in: x11-libs/libxkbcommon/

2018-09-16 Thread Mikle Kolyada
commit: c5cd342a83a19474fe9e92340cb1cc25ce6cafea
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep 16 07:54:17 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep 16 07:54:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5cd342a

x11-libs/libxkbcommon: arm/s390 stable wrt bug #665702

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 x11-libs/libxkbcommon/libxkbcommon-0.8.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/libxkbcommon/libxkbcommon-0.8.2.ebuild 
b/x11-libs/libxkbcommon/libxkbcommon-0.8.2.ebuild
index 9169f5e7f14..10e9d37a7b4 100644
--- a/x11-libs/libxkbcommon/libxkbcommon-0.8.2.ebuild
+++ b/x11-libs/libxkbcommon/libxkbcommon-0.8.2.ebuild
@@ -17,7 +17,7 @@ inherit xorg-2 ${GIT_ECLASS}
 
 DESCRIPTION="X.Org xkbcommon library"
 HOMEPAGE="https://xkbcommon.org/;
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sparc x86 
~amd64-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sparc x86 
~amd64-fbsd"
 IUSE="X doc test"
 
 DEPEND="sys-devel/bison



[gentoo-commits] repo/gentoo:master commit in: sys-devel/binutils/

2018-09-16 Thread Mikle Kolyada
commit: 5680fbc0bb223a01444356f413ec80a6cc3de35b
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep 16 07:58:36 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep 16 07:58:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5680fbc0

sys-devel/binutils: sh/m68k stable wrt bug #655574

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 sys-devel/binutils/binutils-2.30-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/binutils/binutils-2.30-r2.ebuild 
b/sys-devel/binutils/binutils-2.30-r2.ebuild
index 3ac285bad43..65b7a3f9a10 100644
--- a/sys-devel/binutils/binutils-2.30-r2.ebuild
+++ b/sys-devel/binutils/binutils-2.30-r2.ebuild
@@ -35,7 +35,7 @@ case ${PV} in
;;
 esac
 SLOT="${BVER}"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~x86-fbsd"
 
 #
 # The Gentoo patchset



[gentoo-commits] repo/gentoo:master commit in: sys-libs/binutils-libs/

2018-09-16 Thread Mikle Kolyada
commit: 2cc1a3ed8d77f8e869b8379cfd5074b80faa5450
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep 16 07:57:52 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep 16 07:57:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cc1a3ed

sys-libs/binutils-libs: sh/m68k stable wrt bug #655574

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 sys-libs/binutils-libs/binutils-libs-2.30-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/binutils-libs/binutils-libs-2.30-r2.ebuild 
b/sys-libs/binutils-libs/binutils-libs-2.30-r2.ebuild
index ef3ecd910e9..74daf3c4a98 100644
--- a/sys-libs/binutils-libs/binutils-libs-2.30-r2.ebuild
+++ b/sys-libs/binutils-libs/binutils-libs-2.30-r2.ebuild
@@ -20,7 +20,7 @@ SRC_URI="mirror://gnu/binutils/${MY_P}.tar.xz
 LICENSE="|| ( GPL-3 LGPL-3 )"
 # The shared lib SONAMEs use the ${PV} in them.
 SLOT="0/${PV}"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="64-bit-bfd multitarget nls static-libs"
 
 COMMON_DEPEND="sys-libs/zlib[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-video/gnome-mplayer/

2018-09-16 Thread Andreas Sturmlechner
commit: 20777ad8fcee2e5734826d1c23b0ea1c292b1ec7
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Sep 15 23:14:30 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Sep 16 08:03:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20777ad8

media-video/gnome-mplayer: Drop USE musicbrainz

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 .../gnome-mplayer/gnome-mplayer-1.0.9-r1.ebuild| 75 ++
 1 file changed, 75 insertions(+)

diff --git a/media-video/gnome-mplayer/gnome-mplayer-1.0.9-r1.ebuild 
b/media-video/gnome-mplayer/gnome-mplayer-1.0.9-r1.ebuild
new file mode 100644
index 000..bd9fa8ca7f6
--- /dev/null
+++ b/media-video/gnome-mplayer/gnome-mplayer-1.0.9-r1.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+inherit gnome2-utils xdg-utils
+
+DESCRIPTION="A GTK+ interface to MPlayer"
+HOMEPAGE="https://code.google.com/p/gnome-mplayer/;
+SRC_URI="https://${PN}.googlecode.com/svn/packages/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha amd64 ~ppc ~ppc64 x86 ~x86-fbsd"
+IUSE="alsa +dbus +dconf gda gnome ipod libnotify pulseaudio"
+
+COMMON_DEPEND=">=dev-libs/glib-2.30
+   >=media-libs/gmtk-${PV}[dconf=]
+   >=x11-libs/gtk+-3.2:3
+   x11-libs/libX11
+   x11-libs/libXScrnSaver
+   alsa? ( media-libs/alsa-lib )
+   dbus? ( >=dev-libs/dbus-glib-0.100 )
+   gda? ( gnome-extra/libgda:5 )
+   gnome? ( gnome-base/nautilus )
+   ipod? ( >=media-libs/libgpod-0.7 )
+   libnotify? ( >=x11-libs/libnotify-0.7 )
+   pulseaudio? ( >=media-sound/pulseaudio-0.9.14 )"
+RDEPEND="${COMMON_DEPEND}
+   x11-themes/gnome-icon-theme-symbolic
+   >=media-video/mplayer-1.0_rc4_p20100101[libass]"
+DEPEND="${COMMON_DEPEND}
+   sys-devel/gettext
+   virtual/pkgconfig"
+
+DOCS="ChangeLog README DOCS/*.txt DOCS/tech/*.txt"
+
+src_configure() {
+   # TODO: temporarily --disable-nemo only because it's untested and new 
feature in 1.0.9
+   econf \
+   --enable-gtk3 \
+   $(use_enable gnome nautilus) \
+   --disable-nemo \
+   --with-gio \
+   $(use_with dbus) \
+   $(use_with gda libgda) \
+   $(use_with alsa) \
+   $(use_with pulseaudio) \
+   $(use_with libnotify) \
+   $(use_with ipod libgpod) \
+   --without-libmusicbrainz3
+}
+
+src_install() {
+   default
+   rm -rf "${ED}"/usr/share/doc/${PN}
+}
+
+pkg_preinst() {
+   gnome2_icon_savelist
+   gnome2_schemas_savelist
+}
+
+pkg_postinst() {
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+   gnome2_icon_cache_update
+   gnome2_schemas_update
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+   gnome2_icon_cache_update
+   gnome2_schemas_update
+}



[gentoo-commits] repo/gentoo:master commit in: media-libs/musicbrainz/, media-video/gnome-mplayer/, ...

2018-09-16 Thread Andreas Sturmlechner
commit: 084e155aff2d91f1a288fa30b70cff25a4396492
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Sep 15 23:20:42 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Sep 16 08:03:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=084e155a

media-video/gnome-mplayer: Drop old

Last revdep of media-libs/musicbrainz:3.

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 .../files/musicbrainz-3.0.2-gcc44.patch| 10 ---
 media-libs/musicbrainz/musicbrainz-3.0.3.ebuild| 36 --
 media-video/gnome-mplayer/Manifest |  1 -
 .../gnome-mplayer/gnome-mplayer-1.0.8.ebuild   | 77 -
 .../gnome-mplayer/gnome-mplayer-1.0.9.ebuild   | 79 --
 5 files changed, 203 deletions(-)

diff --git a/media-libs/musicbrainz/files/musicbrainz-3.0.2-gcc44.patch 
b/media-libs/musicbrainz/files/musicbrainz-3.0.2-gcc44.patch
deleted file mode 100644
index 76f0068f421..000
--- a/media-libs/musicbrainz/files/musicbrainz-3.0.2-gcc44.patch
+++ /dev/null
@@ -1,10 +0,0 @@
 src/utils_private.cpp  2009-05-03 08:55:04.0 -0400
-+++ src/utils_private.cpp  2009-05-03 08:55:52.0 -0400
-@@ -25,6 +25,7 @@
- #include 
- #include 
- #include 
-+#include 
- #include  
- #include "utils_private.h"
- 

diff --git a/media-libs/musicbrainz/musicbrainz-3.0.3.ebuild 
b/media-libs/musicbrainz/musicbrainz-3.0.3.ebuild
deleted file mode 100644
index 5f40ac9a32c..000
--- a/media-libs/musicbrainz/musicbrainz-3.0.3.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit cmake-utils
-
-DESCRIPTION="Client library to access metadata of mp3/vorbis/CD media"
-HOMEPAGE="https://musicbrainz.org/;
-SRC_URI="http://ftp.musicbrainz.org/pub/musicbrainz/lib${P}.tar.gz;
-
-LICENSE="LGPL-2.1"
-SLOT="3"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux 
~x86-linux"
-IUSE="test"
-
-RDEPEND="net-libs/neon
-   media-libs/libdiscid"
-
-DEPEND="${RDEPEND}
-   test? ( dev-util/cppunit )"
-
-S=${WORKDIR}/lib${P}
-
-CMAKE_IN_SOURCE_BUILD=true
-
-DOCS="README.txt NEWS.txt AUTHORS.txt"
-
-PATCHES=( "${FILESDIR}/${PN}-3.0.2-gcc44.patch" )
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake-utils_use_find_package test CppUnit)
-   )
-   cmake-utils_src_configure
-}

diff --git a/media-video/gnome-mplayer/Manifest 
b/media-video/gnome-mplayer/Manifest
index c7e3c625c93..7110ce17b31 100644
--- a/media-video/gnome-mplayer/Manifest
+++ b/media-video/gnome-mplayer/Manifest
@@ -1,2 +1 @@
-DIST gnome-mplayer-1.0.8.tar.gz 1062691 BLAKE2B 
0ff843b26ffdaffa7240c04a55f15f8534e657610f6483da9fa92d054e748187a288deb8e330032ae0d2e774d3e4d7b913680669ccf0b8fa9202c98fee686295
 SHA512 
795530313a6b8135e328e0cb8f5d9081b0b5caf8f81b1ab182a2876241bd662b96d2ef25164dc6f436fb66168472f3716e033697f0aeffe5f84c59cd8de420c2
 DIST gnome-mplayer-1.0.9.tar.gz 1082199 BLAKE2B 
c2219b5a6902c9e2c9849dd3a31a29e2270b7ca513945a5e9684fa429073f42e360f6ef698f42b93e61a3d39edef1215f657e92cfab1c9fe3b19d5ea85eac839
 SHA512 
5aaea17afddaf2f949b798b87d4d6306130b9622d2dae68a7f24abebc2174cac7cb17c3112dac6629a0643e31098865462c10355dfcd43f16d2503848e18fa7d

diff --git a/media-video/gnome-mplayer/gnome-mplayer-1.0.8.ebuild 
b/media-video/gnome-mplayer/gnome-mplayer-1.0.8.ebuild
deleted file mode 100644
index e3cfb34a9eb..000
--- a/media-video/gnome-mplayer/gnome-mplayer-1.0.8.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit gnome2-utils xdg-utils
-
-DESCRIPTION="A GTK+ interface to MPlayer"
-HOMEPAGE="https://code.google.com/p/gnome-mplayer/;
-SRC_URI="https://${PN}.googlecode.com/files/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~ppc ~ppc64 x86 ~x86-fbsd"
-IUSE="alsa +dbus +dconf gda gnome ipod libnotify musicbrainz pulseaudio"
-
-COMMON_DEPEND=">=dev-libs/glib-2.30
-   >=media-libs/gmtk-${PV}[dconf=]
-   >=x11-libs/gtk+-3.2:3
-   x11-libs/libX11
-   x11-libs/libXScrnSaver
-   alsa? ( media-libs/alsa-lib )
-   dbus? ( >=dev-libs/dbus-glib-0.100 )
-   gda? ( gnome-extra/libgda:5 )
-   gnome? ( gnome-base/nautilus )
-   ipod? ( >=media-libs/libgpod-0.7 )
-   libnotify? ( >=x11-libs/libnotify-0.7 )
-   musicbrainz? (
-   media-libs/musicbrainz:3
-   net-misc/curl
-   )
-   pulseaudio? ( >=media-sound/pulseaudio-0.9.14 )"
-RDEPEND="${COMMON_DEPEND}
-   x11-themes/gnome-icon-theme-symbolic
-   >=media-video/mplayer-1.0_rc4_p20100101[libass]"
-DEPEND="${COMMON_DEPEND}
-   sys-devel/gettext
-   virtual/pkgconfig"
-
-DOCS="ChangeLog README DOCS/*.txt DOCS/tech/*.txt"
-
-src_configure() {
-   econf \
-   --enable-gtk3 \
-   

[gentoo-commits] repo/gentoo:master commit in: media-libs/glpng/

2018-09-16 Thread Andreas Sturmlechner
commit: cbacc2b301678cbd27982a04c88b4b8c636db817
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Sep 15 22:08:05 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Sep 16 08:03:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbacc2b3

media-libs/glpng: EAPI-6 bump

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 media-libs/glpng/glpng-1.46-r1.ebuild | 15 +--
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/media-libs/glpng/glpng-1.46-r1.ebuild 
b/media-libs/glpng/glpng-1.46-r1.ebuild
index 62312ed6df6..2753b6ec685 100644
--- a/media-libs/glpng/glpng-1.46-r1.ebuild
+++ b/media-libs/glpng/glpng-1.46-r1.ebuild
@@ -1,7 +1,8 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=6
+
 inherit cmake-multilib
 
 DESCRIPTION="An OpenGL PNG image library"
@@ -13,15 +14,17 @@ SLOT="0"
 KEYWORDS="amd64 ppc x86"
 IUSE="static-libs"
 
-RDEPEND="virtual/opengl[${MULTILIB_USEDEP}]
-   virtual/glu[${MULTILIB_USEDEP}]
+RDEPEND="
media-libs/libpng:0=[${MULTILIB_USEDEP}]
-   sys-libs/zlib:=[${MULTILIB_USEDEP}]"
+   sys-libs/zlib:=[${MULTILIB_USEDEP}]
+   virtual/glu[${MULTILIB_USEDEP}]
+   virtual/opengl[${MULTILIB_USEDEP}]
+"
 DEPEND=${RDEPEND}
 
 S=${WORKDIR}/${PN}
 
 src_configure() {
-   local mycmakeargs=( "$(cmake-utils_use_build static-libs STATIC_LIBS)" )
+   local mycmakeargs=( -DBUILD_STATIC_LIBS=$(usex static-libs) )
cmake-multilib_src_configure
 }



[gentoo-commits] repo/gentoo:master commit in: media-libs/musicbrainz/

2018-09-16 Thread Andreas Sturmlechner
commit: 0ba769d9390781984d8b784c4bd96c9e9053f3eb
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Sep 15 23:22:58 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Sep 16 08:03:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ba769d9

media-libs/musicbrainz: Drop slot 3

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 media-libs/musicbrainz/Manifest | 1 -
 1 file changed, 1 deletion(-)

diff --git a/media-libs/musicbrainz/Manifest b/media-libs/musicbrainz/Manifest
index dd12541ff75..68b093ec29d 100644
--- a/media-libs/musicbrainz/Manifest
+++ b/media-libs/musicbrainz/Manifest
@@ -1,2 +1 @@
-DIST libmusicbrainz-3.0.3.tar.gz 105837 BLAKE2B 
cf5114e1658eee02132d49bb4a3414da9325badf40125885319ceab44661426ea037ff88a22c1ea743632fff07bceca191d34cff4aac9fc0728048d4b16ad998
 SHA512 
b4c76a0c056480c74eec36c4419f7f696f945b5a4b29dd0a5c61ab3a8b076f48b803ca7af60fb9cfa5eb5344f9ae5d566aaafea6e8eae498ed6aed2169f70480
 DIST libmusicbrainz-5.1.0.tar.gz 77220 BLAKE2B 
c655ae4a9a11adb15de559a1e518b5c5aab47ce3c36e3a264faddda36112d9caccc42d2013e451ffdf200147ffca4cbba883affa1a6465f6071fa14e1d67fbe5
 SHA512 
daa7ccb94e517e90f7d88a0659c84b00f04c6a73ef7771b7e3bd9101fa6569b1935a68a3689502ed0cc8c0d71ba9d2d0ebd9c074dd5eed9f75a3db390b222e03



[gentoo-commits] repo/gentoo:master commit in: media-sound/karlyriceditor/files/, media-sound/karlyriceditor/

2018-09-16 Thread Andreas Sturmlechner
commit: bed97129fd228faa30a3e9d51b07062daed6ceb3
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Sep 16 08:01:48 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Sep 16 08:03:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bed97129

media-sound/karlyriceditor: Fix build with ffmpeg-4

Closes: https://bugs.gentoo.org/665710
Package-Manager: Portage-2.3.49, Repoman-2.3.10

 .../files/karlyriceditor-2.2-ffmpeg-4.patch| 34 ++
 .../karlyriceditor/karlyriceditor-2.2-r1.ebuild|  8 +++--
 2 files changed, 39 insertions(+), 3 deletions(-)

diff --git a/media-sound/karlyriceditor/files/karlyriceditor-2.2-ffmpeg-4.patch 
b/media-sound/karlyriceditor/files/karlyriceditor-2.2-ffmpeg-4.patch
new file mode 100644
index 000..b7ae9d6e90b
--- /dev/null
+++ b/media-sound/karlyriceditor/files/karlyriceditor-2.2-ffmpeg-4.patch
@@ -0,0 +1,34 @@
+Description: Fix FTBFS with FFmpeg 4.0
+Author: James Cowgill 
+Bug-Debian: https://bugs.debian.org/888377
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- a/src/ffmpegvideoencoder.cpp
 b/src/ffmpegvideoencoder.cpp
+@@ -345,7 +345,7 @@ av_log_set_level(AV_LOG_VERBOSE);
+ 
+   // Enable interlacing if needed
+   if ( m_videoformat->flags & VIFO_INTERLACED )
+-  videoCodecCtx->flags |= CODEC_FLAG_INTERLACED_DCT;
++  videoCodecCtx->flags |= AV_CODEC_FLAG_INTERLACED_DCT;
+ 
+   // Enable multithreaded encoding: breaks FLV!
+   //videoCodecCtx->thread_count = 4;
+@@ -373,7 +373,7 @@ av_log_set_level(AV_LOG_VERBOSE);
+ 
+   // If we have a global header for the format, no need to duplicate the 
codec info in each keyframe
+   if ( outputFormatCtx->oformat->flags & AVFMT_GLOBALHEADER )
+-  videoCodecCtx->flags |= CODEC_FLAG_GLOBAL_HEADER;
++  videoCodecCtx->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
+ 
+   // Open the codec
+   if ( ( err = avcodec_open2( videoCodecCtx, videoCodec, 0 )) < 0 )
+@@ -463,7 +463,7 @@ av_log_set_level(AV_LOG_VERBOSE);
+   audioCodecCtx->time_base.den = m_profile->sampleRate;
+ 
+   if ( outputFormatCtx->oformat->flags & 
AVFMT_GLOBALHEADER )
+-  audioCodecCtx->flags |= 
CODEC_FLAG_GLOBAL_HEADER;
++  audioCodecCtx->flags |= 
AV_CODEC_FLAG_GLOBAL_HEADER;
+ 
+   // Since different audio codecs support different 
sample formats, look up which one is supported by this specific codec
+   if ( isAudioSampleFormatSupported( 
audioCodec->sample_fmts, AV_SAMPLE_FMT_FLTP ) )

diff --git a/media-sound/karlyriceditor/karlyriceditor-2.2-r1.ebuild 
b/media-sound/karlyriceditor/karlyriceditor-2.2-r1.ebuild
index 5c711653cc5..a0b4b5ff69a 100644
--- a/media-sound/karlyriceditor/karlyriceditor-2.2-r1.ebuild
+++ b/media-sound/karlyriceditor/karlyriceditor-2.2-r1.ebuild
@@ -1,12 +1,12 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-inherit eutils qmake-utils
+inherit desktop qmake-utils
 
 DESCRIPTION="Application to edit and synchronize lyrics with karaoke songs in 
various formats"
-HOMEPAGE="http://www.ulduzsoft.com/linux/karaoke-lyrics-editor/;
+HOMEPAGE="https://www.ulduzsoft.com/linux/karaoke-lyrics-editor/;
 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-3+"
@@ -27,6 +27,8 @@ DEPEND="${RDEPEND}
virtual/pkgconfig
 "
 
+PATCHES=( "${FILESDIR}/${P}-ffmpeg-4.patch" )
+
 src_configure() {
eqmake5 "${PN}.pro"
 }



[gentoo-commits] repo/gentoo:master commit in: dev-util/meson/

2018-09-16 Thread Mikle Kolyada
commit: 6c9a2f5d5e078b73681d21b0c8c1e203f7d00f57
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep 16 08:00:31 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep 16 08:00:31 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c9a2f5d

dev-util/meson: sh/m68k stable wrt bug #656920

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-util/meson/meson-0.46.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/meson/meson-0.46.1.ebuild 
b/dev-util/meson/meson-0.46.1.ebuild
index 6c28bef689f..cabc6b2b4e6 100644
--- a/dev-util/meson/meson-0.46.1.ebuild
+++ b/dev-util/meson/meson-0.46.1.ebuild
@@ -9,7 +9,7 @@ if [[ ${PV} = ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-   KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 
~sh sparc x86 ~amd64-fbsd ~x64-macos ~x64-solaris"
+   KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh 
sparc x86 ~amd64-fbsd ~x64-macos ~x64-solaris"
 fi
 
 inherit distutils-r1



[gentoo-commits] repo/gentoo:master commit in: sys-devel/gcc/

2018-09-16 Thread Mikle Kolyada
commit: aadcf83e12d01a9aad5f855b4cddc58a0b63c400
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep 16 08:05:00 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep 16 08:05:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aadcf83e

sys-devel/gcc: sh/m68k stable wrt bug #658444

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 sys-devel/gcc/gcc-7.3.0-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/gcc/gcc-7.3.0-r3.ebuild 
b/sys-devel/gcc/gcc-7.3.0-r3.ebuild
index faa8425fc79..0cb2bde8a3c 100644
--- a/sys-devel/gcc/gcc-7.3.0-r3.ebuild
+++ b/sys-devel/gcc/gcc-7.3.0-r3.ebuild
@@ -8,7 +8,7 @@ PATCH_VER="1.4"
 
 inherit toolchain
 
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~ppc-macos"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~ppc-macos"
 
 RDEPEND=""
 DEPEND="${RDEPEND}



[gentoo-commits] repo/gentoo:master commit in: x11-misc/lightdm-mini-greeter/

2018-09-16 Thread Hans de Graaff
commit: bcb7ddf0557b84d7588b7ec61a4b3a79f50d8882
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Sep 16 08:08:11 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Sep 16 08:09:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcb7ddf0

x11-misc/lightdm-mini-greeter: initial import of 0.3.2

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 x11-misc/lightdm-mini-greeter/Manifest |  1 +
 .../lightdm-mini-greeter-0.3.2.ebuild  | 29 ++
 x11-misc/lightdm-mini-greeter/metadata.xml | 11 
 3 files changed, 41 insertions(+)

diff --git a/x11-misc/lightdm-mini-greeter/Manifest 
b/x11-misc/lightdm-mini-greeter/Manifest
new file mode 100644
index 000..90a2363b105
--- /dev/null
+++ b/x11-misc/lightdm-mini-greeter/Manifest
@@ -0,0 +1 @@
+DIST lightdm-mini-greeter-0.3.2.tar.gz 25165 BLAKE2B 
677c3544607354aff252cf19448c7b8a63ee98e836bd4a42ec0043782af5c76890b2c6d0a2f83279b2a69901a009d5d6afcf5c356b7bb2ffcbd845341822e64b
 SHA512 
eed48cca47300c2461c75a467f247bf9242c762ed868f0c00842c17fe42ddbd389b5aa03e4bb588089dae763b2927b59fe296ed9ceee80122cd4198455275380

diff --git a/x11-misc/lightdm-mini-greeter/lightdm-mini-greeter-0.3.2.ebuild 
b/x11-misc/lightdm-mini-greeter/lightdm-mini-greeter-0.3.2.ebuild
new file mode 100644
index 000..e03722f2175
--- /dev/null
+++ b/x11-misc/lightdm-mini-greeter/lightdm-mini-greeter-0.3.2.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="A Minimal, Configurable, Single-User GTK3 LightDM Greeter"
+HOMEPAGE="https://github.com/prikhi/lightdm-mini-greeter;
+SRC_URI="https://github.com/prikhi/lightdm-mini-greeter/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+
+BDEPEND="virtual/pkgconfig"
+
+RDEPEND="
+   >=x11-libs/gtk+-3.14:3
+   >=x11-misc/lightdm-1.12
+"
+DEPEND="${RDEPEND}"
+
+DOCS="CHANGELOG.md README.md"
+
+src_prepare() {
+   eapply_user
+   eautoreconf
+}

diff --git a/x11-misc/lightdm-mini-greeter/metadata.xml 
b/x11-misc/lightdm-mini-greeter/metadata.xml
new file mode 100644
index 000..31c9c51c256
--- /dev/null
+++ b/x11-misc/lightdm-mini-greeter/metadata.xml
@@ -0,0 +1,11 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+gra...@gentoo.org
+Hans de Graaff
+  
+  
+prikhi/lightdm-mini-greeter
+  
+



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyblake2/

2018-09-16 Thread Mikle Kolyada
commit: 84de0ae60c5631f5643b298183efa89a8bcc7021
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep 16 08:13:09 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep 16 08:13:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84de0ae6

dev-python/pyblake2: sh/m68k stable wrt bug #634936

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-python/pyblake2/pyblake2-1.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pyblake2/pyblake2-1.1.2.ebuild 
b/dev-python/pyblake2/pyblake2-1.1.2.ebuild
index 57925229549..e864a3680ea 100644
--- a/dev-python/pyblake2/pyblake2-1.1.2.ebuild
+++ b/dev-python/pyblake2/pyblake2-1.1.2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
 # pyblake2 itself allows more licenses but blake2 allows the following three
 LICENSE="|| ( CC0-1.0 openssl Apache-2.0 )"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 
~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 



[gentoo-commits] repo/gentoo:master commit in: app-portage/repoman/

2018-09-16 Thread Mikle Kolyada
commit: a82e0c3998059202bb2770518a48089c8c3f3f19
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep 16 08:09:45 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep 16 08:10:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a82e0c39

app-portage/repoman: sh/m68k stable wrt bug #657058

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-portage/repoman/repoman-2.3.10.ebuild | 2 +-
 app-portage/repoman/repoman-2.3.9.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-portage/repoman/repoman-2.3.10.ebuild 
b/app-portage/repoman/repoman-2.3.10.ebuild
index e071382f3c3..9e0e4c43f8c 100644
--- a/app-portage/repoman/repoman-2.3.10.ebuild
+++ b/app-portage/repoman/repoman-2.3.10.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == * ]]; then
S="${WORKDIR}/${P}/repoman"
 else
SRC_URI="https://dev.gentoo.org/~zmedico/portage/archives/${P}.tar.bz2;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 fi
 
 DESCRIPTION="Repoman is a Quality Assurance tool for Gentoo ebuilds"

diff --git a/app-portage/repoman/repoman-2.3.9.ebuild 
b/app-portage/repoman/repoman-2.3.9.ebuild
index c6113c7c5f0..bfc9375dc61 100644
--- a/app-portage/repoman/repoman-2.3.9.ebuild
+++ b/app-portage/repoman/repoman-2.3.9.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == * ]]; then
S="${WORKDIR}/${P}/repoman"
 else
SRC_URI="https://dev.gentoo.org/~zmedico/portage/archives/${P}.tar.bz2;
-   KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 s390 sparc 
x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 m68k ~mips ppc ppc64 s390 sh 
sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 DESCRIPTION="Repoman is a Quality Assurance tool for Gentoo ebuilds"



[gentoo-commits] repo/gentoo:master commit in: sys-apps/portage/

2018-09-16 Thread Mikle Kolyada
commit: ba8a98b28a63ea66ee2e3e4d17092cf5d7cfe153
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep 16 08:08:31 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep 16 08:10:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba8a98b2

sys-apps/portage: sh/m68k stable wrt bug #657058

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 sys-apps/portage/portage-2.3.40-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/portage/portage-2.3.40-r1.ebuild 
b/sys-apps/portage/portage-2.3.40-r1.ebuild
index 718b2c5c9df..a13a4a8b0ad 100644
--- a/sys-apps/portage/portage-2.3.40-r1.ebuild
+++ b/sys-apps/portage/portage-2.3.40-r1.ebuild
@@ -16,7 +16,7 @@ DESCRIPTION="Portage is the package management and 
distribution system for Gento
 HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage;
 
 LICENSE="GPL-2"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 
~amd64-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd"
 SLOT="0"
 IUSE="build doc epydoc gentoo-dev +ipc +native-extensions +rsync-verify 
selinux xattr"
 



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libgcrypt/

2018-09-16 Thread Mikle Kolyada
commit: ead5b079505cf0c4458e0d66b71113c6ffc4c128
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep 16 08:15:49 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep 16 08:15:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ead5b079

dev-libs/libgcrypt: sh/m68k stable wrt bug #658056

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-libs/libgcrypt/libgcrypt-1.8.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libgcrypt/libgcrypt-1.8.3.ebuild 
b/dev-libs/libgcrypt/libgcrypt-1.8.3.ebuild
index 89d90bee0b6..810c5806966 100644
--- a/dev-libs/libgcrypt/libgcrypt-1.8.3.ebuild
+++ b/dev-libs/libgcrypt/libgcrypt-1.8.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2"
 
 LICENSE="LGPL-2.1 MIT"
 SLOT="0/20" # subslot = soname major version
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE="doc o-flag-munging static-libs"
 
 RDEPEND=">=dev-libs/libgpg-error-1.25[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-libs/qtav/, media-libs/qtav/files/

2018-09-16 Thread Andreas Sturmlechner
commit: fc10c10272774119fe1d518101197b897e91ae8c
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Sep 16 08:14:34 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Sep 16 08:17:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc10c102

media-libs/qtav: Fix build with ffmpeg-4

Closes: https://bugs.gentoo.org/660852
Package-Manager: Portage-2.3.49, Repoman-2.3.10

 media-libs/qtav/files/qtav-1.12.0-ffmpeg-4.patch | 36 
 media-libs/qtav/qtav-1.12.0.ebuild   |  7 +++--
 2 files changed, 41 insertions(+), 2 deletions(-)

diff --git a/media-libs/qtav/files/qtav-1.12.0-ffmpeg-4.patch 
b/media-libs/qtav/files/qtav-1.12.0-ffmpeg-4.patch
new file mode 100644
index 000..cb77e9adebb
--- /dev/null
+++ b/media-libs/qtav/files/qtav-1.12.0-ffmpeg-4.patch
@@ -0,0 +1,36 @@
+From 1633f2962e195eb2a013072e694a2e1c701613a8 Mon Sep 17 00:00:00 2001
+From: 0xFelix 
+Date: Tue, 12 Dec 2017 13:24:34 +0100
+Subject: [PATCH] Remove usage of deprecated avfiltergraph.h header
+
+avfiltergraph.h was replaced by avfilter.h in libavfilter version
+3.8.0+ so only include it when the used libavfilter version
+is older than 3.8.0
+---
+ src/QtAV/private/AVCompat.h | 4 
+ 1 file changed, 4 insertions(+)
+
+diff --git a/src/QtAV/private/AVCompat.h b/src/QtAV/private/AVCompat.h
+index 6c38596d1..944cfd7de 100644
+--- a/src/QtAV/private/AVCompat.h
 b/src/QtAV/private/AVCompat.h
+@@ -59,6 +59,7 @@ extern "C"
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ #if !FFMPEG_MODULE_CHECK(LIBAVUTIL, 51, 73, 101)
+ #include 
+@@ -79,8 +80,11 @@ extern "C"
+ #endif //QTAV_HAVE(AVRESAMPLE)
+ 
+ #if QTAV_HAVE(AVFILTER)
++#if LIBAVFILTER_VERSION_INT < AV_VERSION_INT(3,8,0)
+ #include  /*code is here for old version*/
++#else
+ #include 
++#endif
+ #include 
+ #include 
+ #endif //QTAV_HAVE(AVFILTER)

diff --git a/media-libs/qtav/qtav-1.12.0.ebuild 
b/media-libs/qtav/qtav-1.12.0.ebuild
index 62a4f641959..f3e1ff02cc1 100644
--- a/media-libs/qtav/qtav-1.12.0.ebuild
+++ b/media-libs/qtav/qtav-1.12.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -37,7 +37,10 @@ RDEPEND="${DEPEND}"
 
 S="${WORKDIR}/${MY_PN}-${PV}"
 
-PATCHES=( "${FILESDIR}/${P}-multilib.patch" )
+PATCHES=(
+   "${FILESDIR}/${P}-multilib.patch"
+   "${FILESDIR}/${P}-ffmpeg-4.patch"
+)
 
 src_prepare() {
cmake-utils_src_prepare



[gentoo-commits] repo/user/ssnb:master commit in: www-client/opera-developer/files/, www-client/opera-developer/

2018-09-16 Thread Samuel Bernardo
commit: dbf6dcd3b7e21090dc38a167a828ace8bc30f71c
Author: Samuel Bernardo  gmail  com>
AuthorDate: Sun Sep 16 08:44:44 2018 +
Commit: Samuel Bernardo  gmail  com>
CommitDate: Sun Sep 16 08:44:44 2018 +
URL:https://gitweb.gentoo.org/repo/user/ssnb.git/commit/?id=dbf6dcd3

add opera-developer with missing patch that is not applied in gentoo portage

 www-client/opera-developer/Manifest|   4 +
 .../files/desktop-57.0.3072.0-r1.patch |  12 +++
 www-client/opera-developer/metadata.xml|   8 ++
 .../opera-developer-57.0.3072.0-r1.ebuild  | 103 +
 4 files changed, 127 insertions(+)

diff --git a/www-client/opera-developer/Manifest 
b/www-client/opera-developer/Manifest
new file mode 100644
index 000..fd756a3
--- /dev/null
+++ b/www-client/opera-developer/Manifest
@@ -0,0 +1,4 @@
+AUX desktop-57.0.3072.0-r1.patch 595 BLAKE2B 
e9f392a497e4b0ac7fd712aac9f9152020cf4d99a1006778d3a5621c1e777af4c20405656b8fcde51133cf9700d4991fca4742859720f3477580b575dd72b130
 SHA512 
6d9f0b4e7eaff9de008a55397d224d59941980685e33cdc8d270e38f4bc40b77392376ae1e41b96ac3cf5399ac781a9e527d7a39d11683821236cbb89760
+DIST opera-developer_57.0.3072.0_amd64.rpm 55503092 BLAKE2B 
9e326fa416e707057895257aeb3e248aca57e3b3d748d707684e2392f331b3a166bdceac7e8b66e74312442438a71161ff9dab38eeb89a5316c47d60e6a38869
 SHA512 
4645a6edcf6cb52203637e316930f670f3c08cc4c2ca4c90234daa12e63b91051a5e4bf80e824c1d516f1e771476e4fa2d96b1b1eedf23740c8254fd7fc80a20
+EBUILD opera-developer-57.0.3072.0-r1.ebuild 2073 BLAKE2B 
43f9b2348b76dd4d89fade381a51b345db1af574aa582286fae5698e56ef86078dfe53ac79c7bbae662813ef5f5a87d540c25a6da9bd36546325cf9a9ac441fb
 SHA512 
46376bfe8501767184425939ac83173b772d827928fdf0f5ce323a72dcc74e3a7883de402a3b193a7d3b26f5545036eee6e3ec0de1dc6caf8a54cad755f417f6
+MISC metadata.xml 254 BLAKE2B 
54ebd61500e1a9a78a907f035de7a6cfd9b04808d3e10c598b7578fed816cbae84bfbb9c0ae0d1724810835453150ea86f2ec0223e77fed3c4fab0a68542e4d1
 SHA512 
40afd8225ecb72aaa0710a0347d5044f49ffd257bae49e114189d1039f25f041349d10b47ff0bf294be1de11722d051f4b526de8caf468808baadb9044f2d7ef

diff --git a/www-client/opera-developer/files/desktop-57.0.3072.0-r1.patch 
b/www-client/opera-developer/files/desktop-57.0.3072.0-r1.patch
new file mode 100644
index 000..34387a8
--- /dev/null
+++ b/www-client/opera-developer/files/desktop-57.0.3072.0-r1.patch
@@ -0,0 +1,12 @@
+diff -Naur a/usr/share/applications/opera-developer.desktop 
b/usr/share/applications/opera-developer.desktop
+--- a/usr/share/applications/opera-developer.desktop   2018-09-09 
23:22:12.0 +0100
 b/usr/share/applications/opera-developer.desktop   2018-09-15 
19:59:49.390129993 +0100
+@@ -6,7 +6,7 @@
+ TryExec=opera-developer
+ Exec=opera-developer %U
+ Terminal=false
+-Icon=
++Icon=opera-developer
+ Type=Application
+ Categories=Network;WebBrowser;
+ 
MimeType=text/html;text/xml;application/xhtml_xml;x-scheme-handler/http;x-scheme-handler/https;x-scheme-handler/ftp;application/x-opera-download;

diff --git a/www-client/opera-developer/metadata.xml 
b/www-client/opera-developer/metadata.xml
new file mode 100644
index 000..c577d70
--- /dev/null
+++ b/www-client/opera-developer/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+samuelbernardo.m...@gmail.com
+Samuel Bernardo
+
+

diff --git a/www-client/opera-developer/opera-developer-57.0.3072.0-r1.ebuild 
b/www-client/opera-developer/opera-developer-57.0.3072.0-r1.ebuild
new file mode 100644
index 000..441d8a8
--- /dev/null
+++ b/www-client/opera-developer/opera-developer-57.0.3072.0-r1.ebuild
@@ -0,0 +1,103 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+CHROMIUM_LANGS="
+   be bg bn ca cs da de el en-GB es es-419 fi fil fr fr-CA hi hr hu id it
+   ja ko lt lv ms nb nl pl pt-BR pt-PT ro ru sk sr sv sw ta te th tr uk vi
+   zh-CN zh-TW
+"
+inherit chromium-2 gnome2-utils multilib rpm xdg-utils
+
+DESCRIPTION="A fast and secure web browser"
+HOMEPAGE="https://www.opera.com/;
+LICENSE="OPERA-2014"
+SLOT="0"
+SRC_URI_BASE="
+   https://download1.operacdn.com/pub/
+   https://download2.operacdn.com/pub/
+   https://download3.operacdn.com/pub/
+   https://download4.operacdn.com/pub/
+"
+SRC_URI="amd64? ("
+for uri in ${SRC_URI_BASE}; do
+SRC_URI+="
+   "${uri}${PN}/${PV}/linux/${PN}_${PV}_amd64.rpm"
+"
+done
+SRC_URI+=")"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   dev-libs/expat
+   dev-libs/glib:2
+   dev-libs/nspr
+   dev-libs/nss
+   gnome-base/gconf:2
+   media-libs/alsa-lib
+   media-libs/fontconfig
+   media-libs/freetype
+   net-misc/curl
+   net-print/cups
+   sys-apps/dbus
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf
+   x11-libs/gtk+:3
+   x11-libs/libX11
+   x11-libs/libXScrnSaver
+   x11-libs/libXcomposite
+   x11-libs/libXcursor
+   

[gentoo-commits] repo/gentoo:master commit in: mail-client/evolution/

2018-09-16 Thread Mart Raudsepp
commit: 751d2fc1d4dba13e8327d804f1d97796ba006b11
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun Sep 16 08:40:06 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun Sep 16 08:40:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=751d2fc1

mail-client/evolution: remove old

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 mail-client/evolution/Manifest|   1 -
 mail-client/evolution/evolution-3.22.4.ebuild | 138 --
 2 files changed, 139 deletions(-)

diff --git a/mail-client/evolution/Manifest b/mail-client/evolution/Manifest
index c828262cc75..5aebada0129 100644
--- a/mail-client/evolution/Manifest
+++ b/mail-client/evolution/Manifest
@@ -1,3 +1,2 @@
-DIST evolution-3.22.4.tar.xz 12272488 BLAKE2B 
7740d1d6e734fb7212d2b36f0a64dca03360ab059f0ca716522312c490f2b071a8fc6b383c98b429a6cb22ea5afec0e7e6c05dcb63b3908053ee891aa4129cdb
 SHA512 
dd73a11d4d7903be6a99bf0d937f5a217a26f0dffb9dc0cea2ca81142d5783c42f889a8b913d565678e9f55b7f2f2a1d42f06c30e3cb004926c19f44dae3b70f
 DIST evolution-3.24.6.tar.xz 12153692 BLAKE2B 
ced20d9e08f6b9aac65be6f5ecd5beb861feec40dddc4411b1bdc6519e249de8db8b3319450808d7a31b80386f9830f351b7edacb3c6fcd28fe5fdfe343329f7
 SHA512 
da5c9062791996735e52575894763597cc957cb17bc0abe46a966f0e3e6706550ce534ae03b2c444d142547119f3a59aec6ee17e0302a002d8437da166ef7178
 DIST evolution-3.26.6.tar.xz 12036120 BLAKE2B 
b0828f172935ce75bad6e2fa9859b65e96f8b8369d8f2c4b836ef9dd992168dcdca256df4aa0577117819f8d21da3976b338fb66b75f0e2511b7f1d23712befa
 SHA512 
34a6f3ec12c6330c2b742281030f641a0998293663d3c2ac4151eef24067ff95403fec37550be2d8d22e43e334b4349f1ece40b75cc23b1dfcec88a9a694363f

diff --git a/mail-client/evolution/evolution-3.22.4.ebuild 
b/mail-client/evolution/evolution-3.22.4.ebuild
deleted file mode 100644
index bd260f6ac72..000
--- a/mail-client/evolution/evolution-3.22.4.ebuild
+++ /dev/null
@@ -1,138 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-
-inherit gnome2 flag-o-matic readme.gentoo-r1
-
-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 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] app-crypt/pinentry[qt5] )"
-
-# 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:=[gtk]
-   >=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-${PV}:=[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
-   ${PINENTRY_DEPEND}
-   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= )
-"
-DEPEND="${COMMON_DEPEND}
-   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
-"
-RDEPEND="${COMMON_DEPEND}
-   bogofilter? ( mail-filter/bogofilter )
-   highlight? ( app-text/highlight )
-   spamassassin? ( mail-filter/spamassassin )
-   !gnome-extra/evolution-exchange
-"
-
-DISABLE_AUTOFORMATTING="yes"

[gentoo-commits] repo/gentoo:master commit in: x11-themes/mate-themes/

2018-09-16 Thread Mart Raudsepp
commit: b4b0a6b79ec5d2cea058738544da8d9b8ee22f9a
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun Sep 16 09:05:19 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun Sep 16 09:05:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4b0a6b7

x11-themes/mate-themes: remove non-installable versions

There are no gtk+:3 versions in tree to satisfy their gtk+ dep+blocker..

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 x11-themes/mate-themes/Manifest   | 12 -
 x11-themes/mate-themes/mate-themes-3.16.3.ebuild  | 57 --
 x11-themes/mate-themes/mate-themes-3.16.5.ebuild  | 57 --
 x11-themes/mate-themes/mate-themes-3.16.6.ebuild  | 58 ---
 x11-themes/mate-themes/mate-themes-3.18.3.ebuild  | 57 --
 x11-themes/mate-themes/mate-themes-3.18.5.ebuild  | 57 --
 x11-themes/mate-themes/mate-themes-3.18.6.ebuild  | 58 ---
 x11-themes/mate-themes/mate-themes-3.20.10.ebuild | 57 --
 x11-themes/mate-themes/mate-themes-3.20.11.ebuild | 57 --
 x11-themes/mate-themes/mate-themes-3.20.13.ebuild | 58 ---
 x11-themes/mate-themes/mate-themes-3.20.16.ebuild | 58 ---
 x11-themes/mate-themes/mate-themes-3.20.17.ebuild | 58 ---
 x11-themes/mate-themes/mate-themes-3.20.20.ebuild | 58 ---
 13 files changed, 702 deletions(-)

diff --git a/x11-themes/mate-themes/Manifest b/x11-themes/mate-themes/Manifest
index 9a3c15064fb..9a6b8a029b6 100644
--- a/x11-themes/mate-themes/Manifest
+++ b/x11-themes/mate-themes/Manifest
@@ -1,15 +1,3 @@
-DIST mate-themes-3.16.3.tar.xz 4304720 BLAKE2B 
cc16529451c03568d593c213621d84fb7c9a57c26aeca034b49574e9f29ed354b271a1aae76bd28b55adc221ebbade09bee5178b370cc8005470a39d6a8dfb10
 SHA512 
6edaec87c830bb88b9500ec106259e62767bc333d75bc4025866c42700c4cf8e2be0ab6c9d6b9518c5d89a5fc6cfc928eac3102c4354ef4cdd181f1e30eb5dfc
-DIST mate-themes-3.16.5.tar.xz 4307832 BLAKE2B 
a50d09718145756e23d7a00d8f15e25a97ad66b47cc648129017c8043edc4bd40b246a44b806eea51b15bdbe56cf209b168b2d0522b2c13e30b71b251a13bc50
 SHA512 
157c84416b0df0bc72bb84e0952cbb58b7314cbe347d9e9f1316ebd5633063eba69c740e64829167e28422649bee66d1e34e5cbf66fb282d15887db188935e08
-DIST mate-themes-3.16.6.tar.xz 4298004 BLAKE2B 
30e13430008a123f4e03b861119d46b11500fee01d745b955a78c3a996fbef979f1d7bf56d682c7a83bea1989d2cb8a20e48c68c0becd250da4b7f43e27bfb70
 SHA512 
28e216765ffb7fff0885e7be9ba8976e962ffd6554db81103766d3c7023a812a504090cc89b33cf73e43b266762d831124646cde391a80681043d3ee2da76228
-DIST mate-themes-3.18.3.tar.xz 4326564 BLAKE2B 
77f50f643bf6803b8590c046303835be615797e8863a5f1f50f71104c2c4f5474509be752fcb147c26ef57d6b910f93e8fb6c722237338d47e8f53af449fd5e5
 SHA512 
7138c1e49b843116812e43ce723af57845bfef9d2e1ff7f455c57f02f613b0a8ef7da6f641ac76dbf8209207d75327c1e101f09e8ac76b4ffa497c0a6167fa39
-DIST mate-themes-3.18.5.tar.xz 4331036 BLAKE2B 
1eab2dfd633de081215b6dd086d25bf5acf5388a5e10823b02ff8bb9e91482fa25050b8a98f96ba967a6c9f420f2a0adb9f45314517743aa7bd7efab90f52993
 SHA512 
941b04b02925d2d503ebc6568857a87d82cf8d675eae55ff04d87fbadebae1133b8889b76c5b081191413d54916976a5e78dd6095805b940fab127564fd06190
-DIST mate-themes-3.18.6.tar.xz 4325356 BLAKE2B 
ae2dcbfda667eb74eb25b818d3f21c59db663ac0774429bae25bd9cc41db099e2abdf1ae6831ca0875bbe637a259f6de71f667d25a32e904b4fd10bb33a18476
 SHA512 
aa6a7dd54fa872efff22f555ecd78f909cf493a6bda1b64d08b933297716503f92b139421c5fa9f55f6748025542520993c4fe1cd745f5db225be9e0e4e0bc4d
-DIST mate-themes-3.20.10.tar.xz 4254436 BLAKE2B 
1f2cc05d1be712e47877f7350acc1f75975cf9bce56fcc3e37a5190a10d7e2bcf1448161716abcbbcdf590381365500fff119192ceaac68152c2ce4d4c5e563b
 SHA512 
23f3e26c914480e85a4d1792e81885f720042c46b6850bc0096cea5d59112ed22f83fa79d4fb85a96d1b4210c5021179e8ac7cd1a3cfe4f640d1573349cf0895
-DIST mate-themes-3.20.11.tar.xz 4252692 BLAKE2B 
a723b19b4a62c38c302f5dddf3ad34bf4a4c8e816d55c4924834d27ccb46c625eeefa67ffc2582d1e305c0cce90f4d225ec24bb757c83c9ee436b6b4525d
 SHA512 
9c437385be1e4476d6ec5caf2dd1170c3dc700f19eb00108edfc45ca9c8a9b63ffa0f71da3b411c1f6546963b47efee28cb3a99fe5e9d9d61a4dbb65fc129c8c
-DIST mate-themes-3.20.13.tar.xz 4260048 BLAKE2B 
165a4efe418c5767bc958022a5ea39d9a6bc9d65056c36f79dfdc9fb50991ddaa7828b4cad4af9364727325a772df6d02fdac98a15ab13af5bc3c2c9cc422762
 SHA512 
bb2d513d417ffe58e6e2b0664b63a81c3d17539f2926a99909595560f8e89c5b6122e5d0392e8c485c941a9af6194e82d52d270eeb4d2a0e2f91c68b5ae100ef
-DIST mate-themes-3.20.16.tar.xz 4263684 BLAKE2B 
05b0298759b87c64f4179a59821ce7790a492e1f457f5d61fce5c69ee04b4554116c0559bd54b10a925fe17386618bdd4e28988ca8b3f76ee8edf1c848789bf5
 SHA512 
1f45f221a6715b2cb642d316533d56034e0b9d832ef9cf9a2fdafd25793c0f24a6ffa188104e854d4ad44bce828565958414d75d4ffa748e46d6d0a1f45c81f0
-DIST mate-themes-3.20.17.tar.xz 4258980 BLAKE2B 

[gentoo-commits] repo/gentoo:master commit in: gnome-extra/evolution-data-server/

2018-09-16 Thread Mart Raudsepp
commit: 472092d2322faef74e7adc4a249042750a7f80f1
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun Sep 16 08:41:32 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun Sep 16 08:41:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=472092d2

gnome-extra/evolution-data-server: remove old

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 gnome-extra/evolution-data-server/Manifest |   1 -
 .../evolution-data-server-3.22.7.ebuild| 135 -
 2 files changed, 136 deletions(-)

diff --git a/gnome-extra/evolution-data-server/Manifest 
b/gnome-extra/evolution-data-server/Manifest
index 330d7a535f0..6a9e2b8c387 100644
--- a/gnome-extra/evolution-data-server/Manifest
+++ b/gnome-extra/evolution-data-server/Manifest
@@ -1,3 +1,2 @@
-DIST evolution-data-server-3.22.7.tar.xz 5564924 BLAKE2B 
8107a13ef46a4457e122c5d719c0d29ccbf5ec61424fb6b4810b1e165bb68cb8c1c87ec9ab34446458321c0c56ba5a5408f45ae9fc95bcee965c21caaad6a230
 SHA512 
53648c0b893982b3577008aeae57e213e084aa5ba4663ca109f200b268635fd1544408c1ace065e91e5eaf48a20f59609c8e895a1907501ea5e64119d1590d44
 DIST evolution-data-server-3.24.7.tar.xz 4253252 BLAKE2B 
ca435a4e6c3a003c5166bd06f0308766686cc9e02f1eb6a15a521c58805bafdfd39cbc7ee058339ba383329ab34a11ed2b0eeebd9b545219c4b3d8f51de8df60
 SHA512 
3e83cb0e87ec822ebf6c81963693e7c701d20266e0811bd261a78073c75724e2c24ac5d5561e997ed8567e9e519c175b3104fa6e2e28158854c8c3ec39a8e9df
 DIST evolution-data-server-3.26.6.tar.xz 4406676 BLAKE2B 
d12fcc412736b505a30254a55763ffec68c1d8cd810fe62c82d7dd5947047caf7c296ccf8103b4a06496dbae38aa55ba9d071dc02442872274e2955d662be4cf
 SHA512 
17522a19d9b4d19f89ccb67c76a89d599377eba36cf6dbe9fbc88fb162947b0208eaf1b4b6b5c4e9850dadf7e6ffea5161ba149b308415e94afc745bc1a448a7

diff --git 
a/gnome-extra/evolution-data-server/evolution-data-server-3.22.7.ebuild 
b/gnome-extra/evolution-data-server/evolution-data-server-3.22.7.ebuild
deleted file mode 100644
index 5d597fe7d15..000
--- a/gnome-extra/evolution-data-server/evolution-data-server-3.22.7.ebuild
+++ /dev/null
@@ -1,135 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-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 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/59" # subslot = libcamel-1.2 soname version
-
-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 
~amd64-linux ~x86-linux ~x86-solaris"
-
-# sys-libs/db is only required for migrating from <3.13 versions
-# gdata-0.17.7 soft required for new gdata_feed_get_next_page_token API to 
handle more than 100 google tasks
-# berkdb needed only for migrating old calendar data, bug #519512
-gdata_depend=">=dev-libs/libgdata-0.17.7:="
-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/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
-   >=net-libs/webkit-gtk-2.11.91:4
-   ${gdata_depend}
-   )
-   gnome-online-accounts? (
-   >=net-libs/gnome-online-accounts-3.8:=
-   ${gdata_depend} )
-   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
-   >=gnome-base/gnome-common-2
-   >=sys-devel/gettext-0.17
-   virtual/pkgconfig
-   vala? ( $(vala_depend) )
-"
-
-# 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
-   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 

[gentoo-commits] proj/gcc-patches:master commit in: 4.5.4/gentoo/

2018-09-16 Thread Sergei Trofimovich
commit: 5756d0c98a50d384525a30444e940cbfe0b51d24
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Sep 16 09:24:31 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Sep 16 09:24:31 2018 +
URL:https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=5756d0c9

4.5.4: backport 'struct ucontext' to 'ucontext_t' rename in glibc

Signed-off-by: Sergei Trofimovich  gentoo.org>

 4.5.4/gentoo/100_all_ucontext-to-ucontext_t.patch | 152 ++
 4.5.4/gentoo/README.history   |   1 +
 2 files changed, 153 insertions(+)

diff --git a/4.5.4/gentoo/100_all_ucontext-to-ucontext_t.patch 
b/4.5.4/gentoo/100_all_ucontext-to-ucontext_t.patch
new file mode 100644
index 000..8b0a008
--- /dev/null
+++ b/4.5.4/gentoo/100_all_ucontext-to-ucontext_t.patch
@@ -0,0 +1,152 @@
+https://bugs.gentoo.org/629502
+
+From ecf0d1a107133c715763940c2b197aa814710e1b Mon Sep 17 00:00:00 2001
+From: jsm28 
+Date: Tue, 4 Jul 2017 10:25:10 +
+Subject: [PATCH] Use ucontext_t not struct ucontext in linux-unwind.h files.
+
+Current glibc no longer gives the ucontext_t type the tag struct
+ucontext, to conform with POSIX namespace rules.  This requires
+various linux-unwind.h files in libgcc, that were previously using
+struct ucontext, to be fixed to use ucontext_t instead.  This is
+similar to the removal of the struct siginfo tag from siginfo_t some
+years ago.
+
+This patch changes those files to use ucontext_t instead.  As the
+standard name that should be unconditionally safe, so this is not
+restricted to architectures supported by glibc, or conditioned on the
+glibc version.
+
+Tested compilation together with current glibc with glibc's
+build-many-glibcs.py.
+
+   * config/aarch64/linux-unwind.h (aarch64_fallback_frame_state),
+   config/alpha/linux-unwind.h (alpha_fallback_frame_state),
+   config/bfin/linux-unwind.h (bfin_fallback_frame_state),
+   config/i386/linux-unwind.h (x86_64_fallback_frame_state,
+   x86_fallback_frame_state), config/m68k/linux-unwind.h (struct
+   uw_ucontext), config/nios2/linux-unwind.h (struct nios2_ucontext),
+   config/pa/linux-unwind.h (pa32_fallback_frame_state),
+   config/sh/linux-unwind.h (sh_fallback_frame_state),
+   config/tilepro/linux-unwind.h (tile_fallback_frame_state),
+   config/xtensa/linux-unwind.h (xtensa_fallback_frame_state): Use
+   ucontext_t instead of struct ucontext.
+
+
+git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-5-branch@249958 
138bc75d-0d04-0410-961f-82ee72b054a4
+---
+ libgcc/config/aarch64/linux-unwind.h |  2 +-
+ libgcc/config/alpha/linux-unwind.h   |  2 +-
+ libgcc/config/bfin/linux-unwind.h|  2 +-
+ libgcc/config/i386/linux-unwind.h|  4 ++--
+ libgcc/config/m68k/linux-unwind.h|  2 +-
+ libgcc/config/nios2/linux-unwind.h   |  2 +-
+ libgcc/config/pa/linux-unwind.h  |  2 +-
+ libgcc/config/sh/linux-unwind.h  |  2 +-
+ libgcc/config/tilepro/linux-unwind.h |  2 +-
+ libgcc/config/xtensa/linux-unwind.h  |  2 +-
+ 11 files changed, 25 insertions(+), 11 deletions(-)
+
+diff --git a/libgcc/config/alpha/linux-unwind.h 
b/libgcc/config/alpha/linux-unwind.h
+index d65474fec12..9a226b195b5 100644
+--- a/gcc/config/alpha/linux-unwind.h
 b/gcc/config/alpha/linux-unwind.h
+@@ -51,7 +51,7 @@ alpha_fallback_frame_state (struct _Unwind_Context *context,
+ {
+   struct rt_sigframe {
+   siginfo_t info;
+-  struct ucontext uc;
++  ucontext_t uc;
+   } *rt_ = context->cfa;
+   sc = _->uc.uc_mcontext;
+ }
+diff --git a/libgcc/config/bfin/linux-unwind.h 
b/libgcc/config/bfin/linux-unwind.h
+index 0c270e435c7..7fa95d2dc96 100644
+--- a/gcc/config/bfin/linux-unwind.h
 b/gcc/config/bfin/linux-unwind.h
+@@ -52,7 +52,7 @@ bfin_fallback_frame_state (struct _Unwind_Context *context,
+   void *puc;
+   char retcode[8];
+   siginfo_t info;
+-  struct ucontext uc;
++  ucontext_t uc;
+   } *rt_ = context->cfa;
+ 
+   /* The void * cast is necessary to avoid an aliasing warning.
+diff --git a/libgcc/config/i386/linux-unwind.h 
b/libgcc/config/i386/linux-unwind.h
+index e54bf73b1fd..d35fc4566ce 100644
+--- a/gcc/config/i386/linux-unwind.h
 b/gcc/config/i386/linux-unwind.h
+@@ -58,7 +58,7 @@ x86_64_fallback_frame_state (struct _Unwind_Context *context,
+   if (*(unsigned char *)(pc+0) == 0x48
+   && *(unsigned long long *)(pc+1) == RT_SIGRETURN_SYSCALL)
+ {
+-  struct ucontext *uc_ = context->cfa;
++  ucontext_t *uc_ = context->cfa;
+   /* The void * cast is necessary to avoid an aliasing warning.
+  The aliasing warning is correct, but should not be a problem
+  because it does not alias anything.  */
+@@ -138,7 +138,7 @@ x86_fallback_frame_state (struct _Unwind_Context *context,
+   siginfo_t *pinfo;
+   void *puc;
+   siginfo_t info;
+-  struct ucontext uc;
++  ucontext_t uc;
+   } *rt_ = context->cfa;
+   /* 

[gentoo-commits] repo/gentoo:master commit in: games-action/descent1-data/

2018-09-16 Thread James Le Cuirot
commit: 6555a1784a5fac1c262c1c65fb7ac50bbc58e81e
Author: Christian Tietz  mailbox  org>
AuthorDate: Sun Sep 16 00:19:09 2018 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sun Sep 16 09:34:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6555a178

games-action/descent1-data: Fix GOG download

Also replace broken ${DISTDIR} message.

Package-Manager: Portage-2.3.40, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/9882

 games-action/descent1-data/Manifest  | 2 +-
 games-action/descent1-data/descent1-data-1.4a.ebuild | 8 
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/games-action/descent1-data/Manifest 
b/games-action/descent1-data/Manifest
index 42297f9f4bf..471a2a58f63 100644
--- a/games-action/descent1-data/Manifest
+++ b/games-action/descent1-data/Manifest
@@ -1,2 +1,2 @@
 DIST descent-game-content-10to14a-patch.zip 439853 BLAKE2B 
75f90bbbf664237bbbfbe1aed3ff500c24b72b45beee1361b7823c6758c5dd5daf2693de8c4f3bc8deb77e915811237f28464628caf17c58478cfb111524354c
 SHA512 
b71ec888509c77dc8ebc94d5a172a27ab0b16ddfdcb47ac243cefe33b87bbca82df843d9a4bffad8c6f345bfefd89e9e3564353922b00c81ef993e409950eb59
-DIST setup_descent_2.1.0.8.exe 25876928 BLAKE2B 
84cb4fddde5308c4e88f7733f0706f2a2ed57b64396d4174d655290aa17886bb99cf8eabff5647ad8518aa76b3821afb3561bcd9a8475e3723bc802ec8fbe8a3
 SHA512 
bab4269900b7ff0808d4495d5e01d2ebe987b5c37544e3651ff215fe8632b31ad4880ef3f968bd551b1462b9c5d1d392317f1ffec26c5314c76d8341800da876
+DIST setup_descent_1.4a_(16596).exe 25744576 BLAKE2B 
aede0627394210a39bdb052608fd6822cb6ceb901a6476829ef98ad21b17ce9311b1878d5eb055ff0fb6d2511699c000b56e28f8e1ef89c2a2b664cbf7c25b7c
 SHA512 
1ac19caa04ee64991c6c4291934e5db684615a0b7616782605c4557611090f6132135b8a1b96474b40135fa39d844cb9f6f14a98995f1bf1a596e66f0de80263

diff --git a/games-action/descent1-data/descent1-data-1.4a.ebuild 
b/games-action/descent1-data/descent1-data-1.4a.ebuild
index 85cf48cd3a0..bc33ea190d7 100644
--- a/games-action/descent1-data/descent1-data-1.4a.ebuild
+++ b/games-action/descent1-data/descent1-data-1.4a.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -7,7 +7,7 @@ CDROM_OPTIONAL="yes"
 inherit cdrom eutils
 
 # For GOG install
-MY_EXE="setup_descent_2.1.0.8.exe"
+MY_EXE="setup_descent_1.4a_(16596).exe"
 
 DESCRIPTION="Data files for Descent 1"
 HOMEPAGE="http://www.interplay.com/games/descent.php;
@@ -27,8 +27,8 @@ DEPEND="cdinstall? ( app-arch/unzip )
 S="${WORKDIR}"
 
 pkg_nofetch() {
-   elog "You must place a copy of, or symlink to, the GOG setup package 
here:"
-   elog "${DISTDIR}/${MY_EXE}"
+   elog "You must place a copy of, or symlink to, the GOG setup package in 
your"
+   elog "distfiles directory."
echo
elog "If you wish to install from CD-ROM instead, please enable the 
cdinstall flag."
 }



[gentoo-commits] repo/gentoo:master commit in: games-action/descent2-data/

2018-09-16 Thread James Le Cuirot
commit: 9dd60d7be9f12d51e4974e12a1ff536544cb4b86
Author: Christian Tietz  mailbox  org>
AuthorDate: Sun Sep 16 00:23:22 2018 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sun Sep 16 09:34:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9dd60d7b

games-action/descent2-data: Fix GOG download

Also replace broken ${DISTDIR} message.

Package-Manager: Portage-2.3.40, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/9883

 games-action/descent2-data/Manifest | 2 +-
 games-action/descent2-data/descent2-data-1.2.ebuild | 8 
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/games-action/descent2-data/Manifest 
b/games-action/descent2-data/Manifest
index d645545ed59..a2c68556a95 100644
--- a/games-action/descent2-data/Manifest
+++ b/games-action/descent2-data/Manifest
@@ -1,2 +1,2 @@
 DIST d2xptch12.tgz 158419 BLAKE2B 
e4bd0d33fa8912b87f8018673c2f9fa9d965f96787b7af76da5473e0c6b06ca78303977cdb6e1f85affefe187b2f1e947eb477313b379bf2464e2a0ba95b74bf
 SHA512 
14d59280e685a9c3d5e23e1d535f37f89768e022b795067793a994c5150685addfcacbd2dc52231804240d01d17d57b1db04335d41bc5930e3c8a845ebbb396b
-DIST setup_descent2_2.1.0.10.exe 554371624 BLAKE2B 
fb05302652c7ba46c06d314453a03430850404c05fb8d43681b7505bdf1a3901d0875f0a63379b121c7338d9b3092410cfa77c5d98690c98b27b0bffaf00ae3d
 SHA512 
0db1935864eb59002cc995dfe9c40badd72d0a3dcec61092b0760481cd3d1316db17631c05043b938e4b958d696c508ce379face9baa260dcc598c77b4460618
+DIST setup_descent_2_1.1_(16596).exe 563071744 BLAKE2B 
f4c81daf5f3fe752687630bf4d9f10076e6f343161ea9675e3ab5698034fd8066727d939263db7a388d1e7e89834b8cea6e58e65433fd83a1d732b5439a693e5
 SHA512 
baf4577409c011f668d10a1a43385a916b951457b43b90883cef73af6622bed31a717f3d50d5a85698237fc4160281f3e2f4e07c9a261d63f52024ca05839fbd

diff --git a/games-action/descent2-data/descent2-data-1.2.ebuild 
b/games-action/descent2-data/descent2-data-1.2.ebuild
index 94768008928..a1312069872 100644
--- a/games-action/descent2-data/descent2-data-1.2.ebuild
+++ b/games-action/descent2-data/descent2-data-1.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ inherit cdrom eutils
 MY_PATCH="http://www.dxx-rebirth.com/download/dxx/misc/d2xptch12.tgz;
 
 # For GOG install
-MY_EXE="setup_descent2_2.1.0.10.exe"
+MY_EXE="setup_descent_2_1.1_(16596).exe"
 
 DESCRIPTION="Data files for Descent 2"
 HOMEPAGE="http://www.interplay.com/games/descent.php;
@@ -38,8 +38,8 @@ DEPEND="cdinstall? (
 S="${WORKDIR}"
 
 pkg_nofetch() {
-   elog "You must place a copy of, or symlink to, the GOG setup package 
here:"
-   elog "${DISTDIR}/${MY_EXE}"
+   elog "You must place a copy of, or symlink to, the GOG setup package in 
your"
+   elog "distfiles directory."
echo
elog "If you wish to install from CD-ROM instead, please enable the 
cdinstall flag."
 }



[gentoo-commits] proj/kde:master commit in: eclass/

2018-09-16 Thread Andreas Sturmlechner
commit: 5d77485a6461bf03e2d6c5f340aa21cbe4f4cd67
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Sep 16 09:35:50 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Sep 16 09:38:36 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=5d77485a

cmake-utils.eclass: Move CMAKE_USER_MAKE_RULES_OVERRIDE to gentoo config

 eclass/cmake-utils.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass
index 4ac0951d46..73e7f0b73a 100644
--- a/eclass/cmake-utils.eclass
+++ b/eclass/cmake-utils.eclass
@@ -615,6 +615,7 @@ cmake-utils_src_configure() {
SET (CMAKE_INSTALL_LIBDIR ${libdir} CACHE PATH "Output 
directory for libraries")
SET (CMAKE_INSTALL_INFODIR "${EPREFIX}/usr/share/info" CACHE 
PATH "")
SET (CMAKE_INSTALL_MANDIR "${EPREFIX}/usr/share/man" CACHE PATH 
"")
+   SET (CMAKE_USER_MAKE_RULES_OVERRIDE "${build_rules}" CACHE 
FILEPATH "Gentoo override rules")
_EOF_
[[ "${NOCOLOR}" = true || "${NOCOLOR}" = yes ]] && echo 'SET 
(CMAKE_COLOR_MAKEFILE OFF CACHE BOOL "pretty colors during make" FORCE)' >> 
"${common_config}"
 
@@ -673,7 +674,6 @@ cmake-utils_src_configure() {
"${mycmakeargs_local[@]}"
-DCMAKE_BUILD_TYPE="${CMAKE_BUILD_TYPE}"
$([[ ${EAPI} == 5 ]] && echo -DCMAKE_INSTALL_DO_STRIP=OFF)
-   -DCMAKE_USER_MAKE_RULES_OVERRIDE="${build_rules}"
-DCMAKE_TOOLCHAIN_FILE="${toolchain_file}"
"${MYCMAKEARGS}"
)



[gentoo-commits] repo/gentoo:master commit in: /

2018-09-16 Thread Ulrich Müller
commit: 491b49cd531cce74e6498ef1c5f7cade90c49952
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sun Sep 16 09:31:50 2018 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sun Sep 16 09:35:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=491b49cd

header.txt, skel.ebuild: Update for new copyright policy.

Signed-off-by: Ulrich Müller  gentoo.org>

 header.txt  | 2 +-
 skel.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/header.txt b/header.txt
index 8aaf567b722..53a6d5a82a9 100644
--- a/header.txt
+++ b/header.txt
@@ -1,3 +1,3 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 

diff --git a/skel.ebuild b/skel.ebuild
index 129f61dcdb2..0114d8c26ac 100644
--- a/skel.ebuild
+++ b/skel.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 # NOTE: The comments in this file are for instruction and documentation.



[gentoo-commits] proj/gcc-patches:master commit in: 4.4.7/gentoo/

2018-09-16 Thread Sergei Trofimovich
commit: ff4f050824e66b71f198d1f87a5410bc9fc32646
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Sep 16 09:48:54 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Sep 16 09:48:54 2018 +
URL:https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=ff4f0508

4.4.7: backport 'struct ucontext' to 'ucontext_t' rename in glibc

Signed-off-by: Sergei Trofimovich  gentoo.org>

 4.4.7/gentoo/97_all_ucontext-to-ucontext_t.patch | 152 +++
 4.4.7/gentoo/README.history  |   1 +
 2 files changed, 153 insertions(+)

diff --git a/4.4.7/gentoo/97_all_ucontext-to-ucontext_t.patch 
b/4.4.7/gentoo/97_all_ucontext-to-ucontext_t.patch
new file mode 100644
index 000..8b0a008
--- /dev/null
+++ b/4.4.7/gentoo/97_all_ucontext-to-ucontext_t.patch
@@ -0,0 +1,152 @@
+https://bugs.gentoo.org/629502
+
+From ecf0d1a107133c715763940c2b197aa814710e1b Mon Sep 17 00:00:00 2001
+From: jsm28 
+Date: Tue, 4 Jul 2017 10:25:10 +
+Subject: [PATCH] Use ucontext_t not struct ucontext in linux-unwind.h files.
+
+Current glibc no longer gives the ucontext_t type the tag struct
+ucontext, to conform with POSIX namespace rules.  This requires
+various linux-unwind.h files in libgcc, that were previously using
+struct ucontext, to be fixed to use ucontext_t instead.  This is
+similar to the removal of the struct siginfo tag from siginfo_t some
+years ago.
+
+This patch changes those files to use ucontext_t instead.  As the
+standard name that should be unconditionally safe, so this is not
+restricted to architectures supported by glibc, or conditioned on the
+glibc version.
+
+Tested compilation together with current glibc with glibc's
+build-many-glibcs.py.
+
+   * config/aarch64/linux-unwind.h (aarch64_fallback_frame_state),
+   config/alpha/linux-unwind.h (alpha_fallback_frame_state),
+   config/bfin/linux-unwind.h (bfin_fallback_frame_state),
+   config/i386/linux-unwind.h (x86_64_fallback_frame_state,
+   x86_fallback_frame_state), config/m68k/linux-unwind.h (struct
+   uw_ucontext), config/nios2/linux-unwind.h (struct nios2_ucontext),
+   config/pa/linux-unwind.h (pa32_fallback_frame_state),
+   config/sh/linux-unwind.h (sh_fallback_frame_state),
+   config/tilepro/linux-unwind.h (tile_fallback_frame_state),
+   config/xtensa/linux-unwind.h (xtensa_fallback_frame_state): Use
+   ucontext_t instead of struct ucontext.
+
+
+git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-5-branch@249958 
138bc75d-0d04-0410-961f-82ee72b054a4
+---
+ libgcc/config/aarch64/linux-unwind.h |  2 +-
+ libgcc/config/alpha/linux-unwind.h   |  2 +-
+ libgcc/config/bfin/linux-unwind.h|  2 +-
+ libgcc/config/i386/linux-unwind.h|  4 ++--
+ libgcc/config/m68k/linux-unwind.h|  2 +-
+ libgcc/config/nios2/linux-unwind.h   |  2 +-
+ libgcc/config/pa/linux-unwind.h  |  2 +-
+ libgcc/config/sh/linux-unwind.h  |  2 +-
+ libgcc/config/tilepro/linux-unwind.h |  2 +-
+ libgcc/config/xtensa/linux-unwind.h  |  2 +-
+ 11 files changed, 25 insertions(+), 11 deletions(-)
+
+diff --git a/libgcc/config/alpha/linux-unwind.h 
b/libgcc/config/alpha/linux-unwind.h
+index d65474fec12..9a226b195b5 100644
+--- a/gcc/config/alpha/linux-unwind.h
 b/gcc/config/alpha/linux-unwind.h
+@@ -51,7 +51,7 @@ alpha_fallback_frame_state (struct _Unwind_Context *context,
+ {
+   struct rt_sigframe {
+   siginfo_t info;
+-  struct ucontext uc;
++  ucontext_t uc;
+   } *rt_ = context->cfa;
+   sc = _->uc.uc_mcontext;
+ }
+diff --git a/libgcc/config/bfin/linux-unwind.h 
b/libgcc/config/bfin/linux-unwind.h
+index 0c270e435c7..7fa95d2dc96 100644
+--- a/gcc/config/bfin/linux-unwind.h
 b/gcc/config/bfin/linux-unwind.h
+@@ -52,7 +52,7 @@ bfin_fallback_frame_state (struct _Unwind_Context *context,
+   void *puc;
+   char retcode[8];
+   siginfo_t info;
+-  struct ucontext uc;
++  ucontext_t uc;
+   } *rt_ = context->cfa;
+ 
+   /* The void * cast is necessary to avoid an aliasing warning.
+diff --git a/libgcc/config/i386/linux-unwind.h 
b/libgcc/config/i386/linux-unwind.h
+index e54bf73b1fd..d35fc4566ce 100644
+--- a/gcc/config/i386/linux-unwind.h
 b/gcc/config/i386/linux-unwind.h
+@@ -58,7 +58,7 @@ x86_64_fallback_frame_state (struct _Unwind_Context *context,
+   if (*(unsigned char *)(pc+0) == 0x48
+   && *(unsigned long long *)(pc+1) == RT_SIGRETURN_SYSCALL)
+ {
+-  struct ucontext *uc_ = context->cfa;
++  ucontext_t *uc_ = context->cfa;
+   /* The void * cast is necessary to avoid an aliasing warning.
+  The aliasing warning is correct, but should not be a problem
+  because it does not alias anything.  */
+@@ -138,7 +138,7 @@ x86_fallback_frame_state (struct _Unwind_Context *context,
+   siginfo_t *pinfo;
+   void *puc;
+   siginfo_t info;
+-  struct ucontext uc;
++  ucontext_t uc;
+   } *rt_ = context->cfa;
+   /* The 

[gentoo-commits] repo/gentoo:master commit in: net-misc/teamviewer/files/, net-misc/teamviewer/

2018-09-16 Thread Mikle Kolyada
commit: 169caaccf530b0c7f09003dc16707e5097aec8e6
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep 16 10:18:24 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep 16 10:18:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=169caacc

net-misc/teamviewer: Drop old

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 net-misc/teamviewer/Manifest   |   1 -
 .../files/teamviewer-9.0.32150-gentoo.patch| 138 -
 net-misc/teamviewer/files/teamviewerd9.init|  25 
 net-misc/teamviewer/metadata.xml   |   3 -
 net-misc/teamviewer/teamviewer-9.0.32150.ebuild| 132 
 5 files changed, 299 deletions(-)

diff --git a/net-misc/teamviewer/Manifest b/net-misc/teamviewer/Manifest
index 2dc6af9be0c..a84e0ba8f8a 100644
--- a/net-misc/teamviewer/Manifest
+++ b/net-misc/teamviewer/Manifest
@@ -1,4 +1,3 @@
-DIST teamviewer-9.0.32150.deb 22898922 BLAKE2B 
799aa6f48b69247a2695ca745e85d02ffa73df1375203dfc9da339673e6c18d861c4146ddbdc509bdc1114d5a2a7e5fdd4acf3c6e5da61fbba5aaa02fa4e3cfd
 SHA512 
3e72ed5cab7a754a0aa75e533da92292ad004f66c55ac4c386b6f4a65cc41b14a8d9d7a5410dccdb90c1172cd33e52383289339ab44f0847a061655498ab8e4d
 DIST teamviewer_13.1.3026_amd64.tar.xz 11500188 BLAKE2B 
98dab12224ea65cdb7c45f01a835cb50fd052e044cb2908a27e0324d5647c1bcc38565eca0c1e70e86fd96a9f70ddd4b6250f13cde1fd3c381be9af8ecb1805c
 SHA512 
30914b761833dd2720458eb3a3076f59e521bdf4fd50489e1cb7c0c80a05ef73c2fd5a9a59a33644e73b96d8db1616665a130e2781c39f35f6c5bfb64c7c7b9a
 DIST teamviewer_13.1.3026_i386.tar.xz 11343300 BLAKE2B 
c0170acf9c67f34755800a0200016dacb6f93f3f3805932fbf467dc19bb0213fce74363a0bc703af1c62b4c1bafda2257bd0cc2c52aad4dd1f22ae5a9fb2d486
 SHA512 
f7dac040de4a0ac3489ee5e911c3c278723cee2372bd42a4a929d3cb268f735eb73514a8d72cc49c82277869533289e3195936218be6db323e732c9c380e
 DIST teamviewer_13.1.8286_amd64.tar.xz 11574812 BLAKE2B 
9941a3c1894e4b1a285ac61bdeffb47629c7972d19a573016c357275b3fc5ede51838f35acb2debe36ccd96c20cab6478868b78c831ab7137cb1196440e62297
 SHA512 
76b10c1df368f4c639ff60a69dc541f791b82b73a19accce4c60fdfcff2922a4a674e08da73df570587e840088b466f4791f8da0691582451259965044a18ccb

diff --git a/net-misc/teamviewer/files/teamviewer-9.0.32150-gentoo.patch 
b/net-misc/teamviewer/files/teamviewer-9.0.32150-gentoo.patch
deleted file mode 100644
index 1df4632795b..000
--- a/net-misc/teamviewer/files/teamviewer-9.0.32150-gentoo.patch
+++ /dev/null
@@ -1,138 +0,0 @@
-diff --git a/opt/teamviewer9/tv_bin/script/tvw_extra 
b/opt/teamviewer9/tv_bin/script/tvw_extra
-index 71164aa..848cd25 100644
 a/opt/teamviewer9/tv_bin/script/tvw_extra
-+++ b/opt/teamviewer9/tv_bin/script/tvw_extra
-@@ -16,13 +16,6 @@
-   isInstalledTV || return
-   ABecho "teamviewer --passwd [PASSWD]"   "set a password (useful when 
installing remote (ssh)"
-   echo
--  ABecho "teamviewer --daemon status" "show current status of the TeamViewer 
daemon"
--  ABecho "teamviewer --daemon start"  "start  TeamViewer daemon"
--  ABecho "teamviewer --daemon stop"   "stop   TeamViewer 
daemon"
--  ABecho "teamviewer --daemon restart""stop/start TeamViewer 
daemon"
--  ABecho "teamviewer --daemon disable""disableTeamViewer 
daemon - don't start daemon on system startup"
--  ABecho "teamviewer --daemon enable" "enable TeamViewer daemon - 
start daemon on system startup (default)"
--  echo
- }
- 
- function PrintVersion()
-@@ -37,19 +30,6 @@
-   PrintDaemonStatus
-   echo
-   PrintTeamViewerID
--}
--
--function PrintDaemonStatus()
--{
--  local cmd="$(daemonCtl 'status')"
--  local txt="n/a"
--
--  if [ isInstalledTV ] ; then
--txt="$(eval "$cmd")"
--[ $? = 0 ] || txt='n/a (error)'
--  fi
--  
--  ABecho "teamviewerd status" "$txt"
- }
- 
- function PrintTeamViewerID()
-@@ -64,20 +44,21 @@
-   ABecho "TeamViewer ID:" "$tvid"
- 
-   if [ -z "$tvid" ] && isInstalledTV; then
--echo "Try restarting the TeamViewer daemon (e.g. teamviewer --daemon 
restart)"
-+echo "Try restarting the TeamViewer daemon."
-   fi
- }
- 
- function SetPasswd()
- {
-+  echo "Stop your teamviewer daemon first, then press enter."
-+  read
-+
-   local pwd="$1"
-   [ -n "$pwd" ] || die 'no password specified'
- 
-   installedTVorDie
-   isSuperUser || die 'You need root permissions for this operation'
- 
--  Run_Daemon 'stop' > /dev/null
--  
-   "$TV_BIN_DIR/teamviewerd" --passwd "$pwd"
-   case $? in
- 0  ) echo 'ok';;
-@@ -88,12 +69,14 @@
- *  ) echo 'unknown response'  ;;
-esac
-   
--  Run_Daemon 'start' > /dev/null || die 'failed to restart the daemon'
--  echo
-+  echo "You may start your teamviewer daemon again."
- }
- 
- function ExportLicense()
- {
-+  echo "Stop your teamviewer daemon first, then press enter."
-+  read
-+
-   local license="$1"
-   local path='/tmp/tv_global.conf'
- 
-@@ -101,8 +84,6 @@
- 
-   isSuperUser || die 'You need root 

[gentoo-commits] repo/gentoo:master commit in: www-apps/nextcloud/

2018-09-16 Thread Bernard Cafarelli
commit: fdfe44a19a1d1f55f5adf816b87817f67acf137d
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Sun Sep 16 10:14:27 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Sun Sep 16 10:22:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdfe44a1

www-apps/nextcloud: 14.0.0 bump

Closes: https://bugs.gentoo.org/666132
Package-Manager: Portage-2.3.49, Repoman-2.3.10

 www-apps/nextcloud/Manifest|  1 +
 www-apps/nextcloud/nextcloud-14.0.0.ebuild | 40 ++
 2 files changed, 41 insertions(+)

diff --git a/www-apps/nextcloud/Manifest b/www-apps/nextcloud/Manifest
index 9547afc6990..2e6739f8e9a 100644
--- a/www-apps/nextcloud/Manifest
+++ b/www-apps/nextcloud/Manifest
@@ -2,3 +2,4 @@ DIST nextcloud-12.0.10.tar.bz2 45114548 BLAKE2B 
e993c617d27fea12ba95e4fa365c02ae
 DIST nextcloud-12.0.11.tar.bz2 45123785 BLAKE2B 
3d1f9131ff89d348dd18c0f7de284b13563177b388729e6049909fa1be3ae3ccdd03a85094869a872e4eb18e210a7ef406b0813e2ec5a1804aaecd9df4cf770d
 SHA512 
885daa98ce602c6b59adaf66eb2e10ac6f5c5b2a607b5ebb80b82ee08256fd77d12aa1dee4db463d42abdd169e4acad14ee793cdfbcfa5b466f25ca3fb6ffa79
 DIST nextcloud-13.0.5.tar.bz2 44792418 BLAKE2B 
0582b36a078ccea7a2b482e8be213f0102fff2d60f0b92736d7c488498cf8ae4b75ea6a9e5c14cd0d71f2b3ad9d0ff9b6a2fba7b809bcc89e2287c7801e26a49
 SHA512 
5456f95d3835e0c9fcf015453e1f6e75ba6f5c0266d8951596fad7d3bf06230199a22e5869bc616581410db0ed831a5cdec123a9d2955898a837614a2bfff32c
 DIST nextcloud-13.0.6.tar.bz2 44769940 BLAKE2B 
e9c227d64a23dbd677326f528cc268842403c6d51514e8b0d5d446ca5e91fd49910777b6cc7d7bbf0e7f6e1c422fed390cd38506edde019dc5a1955d94757102
 SHA512 
cbecd5dc98c96f28cbefe6b25e51f4be4583004841eb38d32a3261ed01f906590e16053dd7d8e31589a2288eafd368a47e280d511ee8c994886b4ea892f535ff
+DIST nextcloud-14.0.0.tar.bz2 49762528 BLAKE2B 
4c5bbddda0d93504b3530ac0a69511b66faba5d64014a372cd411b9807ca931de484f0db74823534fe97ad5beee25d8c3a0eb001e25a208983b7f13545bd1af4
 SHA512 
8028f46a6b45834f411ff0942dfc41b72d41d356d01136c74c82fabe1247cd5e62e3b57a298b706a02eb27fabc03790a6ec6a8618b70f2016ae756cf8b523014

diff --git a/www-apps/nextcloud/nextcloud-14.0.0.ebuild 
b/www-apps/nextcloud/nextcloud-14.0.0.ebuild
new file mode 100644
index 000..92163a886de
--- /dev/null
+++ b/www-apps/nextcloud/nextcloud-14.0.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils webapp
+
+DESCRIPTION="Personal cloud that runs on your own server"
+HOMEPAGE="http://nextcloud.com;
+SRC_URI="http://download.nextcloud.com/server/releases/${P}.tar.bz2;
+LICENSE="AGPL-3"
+
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="+curl mysql postgres +sqlite"
+REQUIRED_USE="|| ( mysql postgres sqlite )"
+
+DEPEND=""
+RDEPEND="dev-lang/php[curl?,filter,gd,hash,json,mysql?,pdo,posix,postgres?,session,simplexml,sqlite?,truetype,xmlreader,xmlwriter,zip]
+   virtual/httpd-php"
+
+S=${WORKDIR}/${PN}
+
+pkg_setup() {
+   webapp_pkg_setup
+}
+
+src_install() {
+   webapp_src_preinst
+
+   insinto "${MY_HTDOCSDIR}"
+   doins -r .
+   dodir "${MY_HTDOCSDIR}"/data
+
+   webapp_serverowned -R "${MY_HTDOCSDIR}"/apps
+   webapp_serverowned -R "${MY_HTDOCSDIR}"/data
+   webapp_serverowned -R "${MY_HTDOCSDIR}"/config
+   webapp_configfile "${MY_HTDOCSDIR}"/.htaccess
+
+   webapp_src_install
+}



[gentoo-commits] repo/gentoo:master commit in: net-misc/nextcloud-client/

2018-09-16 Thread Bernard Cafarelli
commit: e5a782311461c01335fbf6587d976b4179c7a9ed
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Sun Sep 16 10:22:42 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Sun Sep 16 10:22:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5a78231

net-misc/nextcloud-client: 2.5.0_beta2 bump

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 net-misc/nextcloud-client/Manifest  | 2 +-
 ...ud-client-2.5.0_beta1.ebuild => nextcloud-client-2.5.0_beta2.ebuild} | 2 --
 2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/net-misc/nextcloud-client/Manifest 
b/net-misc/nextcloud-client/Manifest
index 1614fe6f864..f3dc0f508a1 100644
--- a/net-misc/nextcloud-client/Manifest
+++ b/net-misc/nextcloud-client/Manifest
@@ -1,3 +1,3 @@
 DIST nextcloud-client-2.3.3.tar.gz 708611 BLAKE2B 
8f0a1f433ad18743e7d78bf4ab523e57f2c40cc1527508e940bb14c75f944723d728a5ee188c06a181ded535b910bea68620e8eb950c290af7556423fc28264f
 SHA512 
fd02c61a7a92b77f9063e4f15be426be84d02033bead4b176d876134f8b85d7385e4a361959b68c332f1ccb55d43e2a8b55e0d5c8e5a54f645a5816a37790bde
-DIST nextcloud-client-2.5.0_beta1.tar.gz 18930446 BLAKE2B 
cb6630950e26013c96151a6f8fc236a9e25313fa6479e00de754fe9c45762c62042b039f18d11febfed4cac4e36c9d7bc2fdb25a522d1a6c153343eca03d46f7
 SHA512 
0d6a7b24965b4cdae41aacb06804ea5463309f219d39cefbf970ba57697035b4113d1f185166b51ab296745d26e43591896fa1c8fb7430a9d624f7547fafaea4
+DIST nextcloud-client-2.5.0_beta2.tar.gz 18860182 BLAKE2B 
9d6ab5f326c5280f0e9835c0c382b0ff78c01920f8bd2a6babbc3df20096d4c803fadfd1bc0f52798e5cbce503f241dc46b82923b8bdd19fe968b2d9c14189cb
 SHA512 
ed5ec8c0fd79d3f7f843ef1aefb9b94088b85dacca442388bc9a42e1ddbf1ee90482595135ffaffc85e40d223406964c903949ca1c2161fa0f6a2d6770a77cea
 DIST owncloudclient-2.3.3.tar.xz 33801712 BLAKE2B 
7642148a4f503a2702d56f920067202699b4a55bb6216337ecbd9df141e0a7467aaf2db8d7d6871502061d3866294f8c44c791fdbf9597ca8d761f360f7ffda1
 SHA512 
8cbffd4fdd4bd3bbbfb947498ec9bfbaceac3966ac29d61dea3db82405976230c1067c3a3afc9ddc4ce152c69c530ad44be154615a391f63524dc2fb40d5e5d2

diff --git a/net-misc/nextcloud-client/nextcloud-client-2.5.0_beta1.ebuild 
b/net-misc/nextcloud-client/nextcloud-client-2.5.0_beta2.ebuild
similarity index 97%
rename from net-misc/nextcloud-client/nextcloud-client-2.5.0_beta1.ebuild
rename to net-misc/nextcloud-client/nextcloud-client-2.5.0_beta2.ebuild
index 388cf73e769..d5fc16019e4 100644
--- a/net-misc/nextcloud-client/nextcloud-client-2.5.0_beta1.ebuild
+++ b/net-misc/nextcloud-client/nextcloud-client-2.5.0_beta2.ebuild
@@ -54,8 +54,6 @@ DEPEND="${COMMON_DEPEND}
 
 S=${WORKDIR}/desktop-${PV/_/-}
 
-PATCHES=( "${FILESDIR}"/${P}-fix_cmake.patch )
-
 src_prepare() {
# Keep tests in ${T}
sed -i -e "s#\"/tmp#\"${T}#g" test/test*.cpp || die



[gentoo-commits] proj/gcc-patches:master commit in: 4.3.6/gentoo/

2018-09-16 Thread Sergei Trofimovich
commit: f9e966827999d6121e6a2c17109f745cbb8a306e
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Sep 16 10:24:48 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Sep 16 10:24:48 2018 +
URL:https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=f9e96682

4.3.6: backport 'struct ucontext' to 'ucontext_t' rename in glibc

Signed-off-by: Sergei Trofimovich  gentoo.org>

 4.3.6/gentoo/92_all_ucontext-to-ucontext_t.patch | 152 +++
 4.3.6/gentoo/README.history  |   3 +
 2 files changed, 155 insertions(+)

diff --git a/4.3.6/gentoo/92_all_ucontext-to-ucontext_t.patch 
b/4.3.6/gentoo/92_all_ucontext-to-ucontext_t.patch
new file mode 100644
index 000..8b0a008
--- /dev/null
+++ b/4.3.6/gentoo/92_all_ucontext-to-ucontext_t.patch
@@ -0,0 +1,152 @@
+https://bugs.gentoo.org/629502
+
+From ecf0d1a107133c715763940c2b197aa814710e1b Mon Sep 17 00:00:00 2001
+From: jsm28 
+Date: Tue, 4 Jul 2017 10:25:10 +
+Subject: [PATCH] Use ucontext_t not struct ucontext in linux-unwind.h files.
+
+Current glibc no longer gives the ucontext_t type the tag struct
+ucontext, to conform with POSIX namespace rules.  This requires
+various linux-unwind.h files in libgcc, that were previously using
+struct ucontext, to be fixed to use ucontext_t instead.  This is
+similar to the removal of the struct siginfo tag from siginfo_t some
+years ago.
+
+This patch changes those files to use ucontext_t instead.  As the
+standard name that should be unconditionally safe, so this is not
+restricted to architectures supported by glibc, or conditioned on the
+glibc version.
+
+Tested compilation together with current glibc with glibc's
+build-many-glibcs.py.
+
+   * config/aarch64/linux-unwind.h (aarch64_fallback_frame_state),
+   config/alpha/linux-unwind.h (alpha_fallback_frame_state),
+   config/bfin/linux-unwind.h (bfin_fallback_frame_state),
+   config/i386/linux-unwind.h (x86_64_fallback_frame_state,
+   x86_fallback_frame_state), config/m68k/linux-unwind.h (struct
+   uw_ucontext), config/nios2/linux-unwind.h (struct nios2_ucontext),
+   config/pa/linux-unwind.h (pa32_fallback_frame_state),
+   config/sh/linux-unwind.h (sh_fallback_frame_state),
+   config/tilepro/linux-unwind.h (tile_fallback_frame_state),
+   config/xtensa/linux-unwind.h (xtensa_fallback_frame_state): Use
+   ucontext_t instead of struct ucontext.
+
+
+git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-5-branch@249958 
138bc75d-0d04-0410-961f-82ee72b054a4
+---
+ libgcc/config/aarch64/linux-unwind.h |  2 +-
+ libgcc/config/alpha/linux-unwind.h   |  2 +-
+ libgcc/config/bfin/linux-unwind.h|  2 +-
+ libgcc/config/i386/linux-unwind.h|  4 ++--
+ libgcc/config/m68k/linux-unwind.h|  2 +-
+ libgcc/config/nios2/linux-unwind.h   |  2 +-
+ libgcc/config/pa/linux-unwind.h  |  2 +-
+ libgcc/config/sh/linux-unwind.h  |  2 +-
+ libgcc/config/tilepro/linux-unwind.h |  2 +-
+ libgcc/config/xtensa/linux-unwind.h  |  2 +-
+ 11 files changed, 25 insertions(+), 11 deletions(-)
+
+diff --git a/libgcc/config/alpha/linux-unwind.h 
b/libgcc/config/alpha/linux-unwind.h
+index d65474fec12..9a226b195b5 100644
+--- a/gcc/config/alpha/linux-unwind.h
 b/gcc/config/alpha/linux-unwind.h
+@@ -51,7 +51,7 @@ alpha_fallback_frame_state (struct _Unwind_Context *context,
+ {
+   struct rt_sigframe {
+   siginfo_t info;
+-  struct ucontext uc;
++  ucontext_t uc;
+   } *rt_ = context->cfa;
+   sc = _->uc.uc_mcontext;
+ }
+diff --git a/libgcc/config/bfin/linux-unwind.h 
b/libgcc/config/bfin/linux-unwind.h
+index 0c270e435c7..7fa95d2dc96 100644
+--- a/gcc/config/bfin/linux-unwind.h
 b/gcc/config/bfin/linux-unwind.h
+@@ -52,7 +52,7 @@ bfin_fallback_frame_state (struct _Unwind_Context *context,
+   void *puc;
+   char retcode[8];
+   siginfo_t info;
+-  struct ucontext uc;
++  ucontext_t uc;
+   } *rt_ = context->cfa;
+ 
+   /* The void * cast is necessary to avoid an aliasing warning.
+diff --git a/libgcc/config/i386/linux-unwind.h 
b/libgcc/config/i386/linux-unwind.h
+index e54bf73b1fd..d35fc4566ce 100644
+--- a/gcc/config/i386/linux-unwind.h
 b/gcc/config/i386/linux-unwind.h
+@@ -58,7 +58,7 @@ x86_64_fallback_frame_state (struct _Unwind_Context *context,
+   if (*(unsigned char *)(pc+0) == 0x48
+   && *(unsigned long long *)(pc+1) == RT_SIGRETURN_SYSCALL)
+ {
+-  struct ucontext *uc_ = context->cfa;
++  ucontext_t *uc_ = context->cfa;
+   /* The void * cast is necessary to avoid an aliasing warning.
+  The aliasing warning is correct, but should not be a problem
+  because it does not alias anything.  */
+@@ -138,7 +138,7 @@ x86_fallback_frame_state (struct _Unwind_Context *context,
+   siginfo_t *pinfo;
+   void *puc;
+   siginfo_t info;
+-  struct ucontext uc;
++  ucontext_t uc;
+   } *rt_ = context->cfa;
+   /* The 

[gentoo-commits] repo/gentoo:master commit in: dev-libs/libgpiod/

2018-09-16 Thread Anthony G. Basile
commit: f13da238b6cc2cb9bfa1454f8251b4a7c3c7a4f6
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Sep 16 10:29:05 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Sep 16 10:29:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f13da238

dev-libs/libgpiod: remove older version

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-libs/libgpiod/Manifest|  1 -
 dev-libs/libgpiod/libgpiod-1.0.ebuild | 30 --
 2 files changed, 31 deletions(-)

diff --git a/dev-libs/libgpiod/Manifest b/dev-libs/libgpiod/Manifest
index dac93e5efe9..24dedcf0330 100644
--- a/dev-libs/libgpiod/Manifest
+++ b/dev-libs/libgpiod/Manifest
@@ -1,2 +1 @@
-DIST libgpiod-1.0.tar.gz 411974 BLAKE2B 
e6c962329f7fad374d2771e60aa87e679970e3b593dda73d51f0511b14122d8a9d94eee3355ede2221d4ff0cd10f7116874c535fe90092fd61ccc5aa8f7e9818
 SHA512 
e8a71a7028fa73a94d8507d4329bee024c3e73d1b619dd5500172bf36509c7ccee521ddb6ef07283e3a4217af9da12ce154af657f8a536883f5495ffccf46e0c
 DIST libgpiod-1.1.1.tar.xz 302672 BLAKE2B 
71c624f923118b7c50970beb737f2c813d1470a34f95798f9ce821211e16f15e2a3fd42d0054e25529ddc9846725c0935d915784f22d2509b844a0bac61b66b6
 SHA512 
a1d902ce8e1c94d5550ade2fb4889ebe28b86523505b92ab907f58c8e6903eaf07ce16278126989462956b879f591b42ddd50fbc4537c1b5af459f23a4dfc12f

diff --git a/dev-libs/libgpiod/libgpiod-1.0.ebuild 
b/dev-libs/libgpiod/libgpiod-1.0.ebuild
deleted file mode 100644
index c83a38aa5e7..000
--- a/dev-libs/libgpiod/libgpiod-1.0.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit multilib multilib-minimal
-
-DESCRIPTION="C library and tools for interacting with the linux GPIO character 
device"
-HOMEPAGE="https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/;
-SRC_URI="https://dev.gentoo.org/~blueness/libgpiod/${P}.tar.gz;
-
-LICENSE="LGPL-2.1"
-# Reflects the ABI of libgpiod.so
-SLOT="0/1"
-KEYWORDS="~amd64 ~x86"
-IUSE="static-libs +tools"
-
-multilib_src_configure() {
-   ECONF_SOURCE="${S}" econf \
-   $(use_enable tools)
-}
-
-multilib_src_install() {
-   default
-
-   if ! use static-libs; then
-   find "${D}" -name "*.a" -delete || die
-   fi
-   find "${D}" -name '*.la' -delete || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libgpiod/

2018-09-16 Thread Anthony G. Basile
commit: 6d14632e8188758dde7842fdca7bfabbe234856b
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Sep 16 10:28:15 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Sep 16 10:28:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d14632e

dev-libs/libgpiod: version bump to 1.1.1

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-libs/libgpiod/Manifest  |  1 +
 dev-libs/libgpiod/libgpiod-1.1.1.ebuild | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/dev-libs/libgpiod/Manifest b/dev-libs/libgpiod/Manifest
index 7f380ebad6b..dac93e5efe9 100644
--- a/dev-libs/libgpiod/Manifest
+++ b/dev-libs/libgpiod/Manifest
@@ -1 +1,2 @@
 DIST libgpiod-1.0.tar.gz 411974 BLAKE2B 
e6c962329f7fad374d2771e60aa87e679970e3b593dda73d51f0511b14122d8a9d94eee3355ede2221d4ff0cd10f7116874c535fe90092fd61ccc5aa8f7e9818
 SHA512 
e8a71a7028fa73a94d8507d4329bee024c3e73d1b619dd5500172bf36509c7ccee521ddb6ef07283e3a4217af9da12ce154af657f8a536883f5495ffccf46e0c
+DIST libgpiod-1.1.1.tar.xz 302672 BLAKE2B 
71c624f923118b7c50970beb737f2c813d1470a34f95798f9ce821211e16f15e2a3fd42d0054e25529ddc9846725c0935d915784f22d2509b844a0bac61b66b6
 SHA512 
a1d902ce8e1c94d5550ade2fb4889ebe28b86523505b92ab907f58c8e6903eaf07ce16278126989462956b879f591b42ddd50fbc4537c1b5af459f23a4dfc12f

diff --git a/dev-libs/libgpiod/libgpiod-1.1.1.ebuild 
b/dev-libs/libgpiod/libgpiod-1.1.1.ebuild
new file mode 100644
index 000..7cbe28bf2d3
--- /dev/null
+++ b/dev-libs/libgpiod/libgpiod-1.1.1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit multilib multilib-minimal
+
+DESCRIPTION="C library and tools for interacting with the linux GPIO character 
device"
+HOMEPAGE="https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/;
+SRC_URI="https://mirrors.edge.kernel.org/pub/software/libs/libgpiod/libgpiod-1.1.1.tar.xz;
+
+LICENSE="LGPL-2.1"
+# Reflects the ABI of libgpiod.so
+SLOT="0/1"
+KEYWORDS="~amd64 ~x86"
+IUSE="static-libs +tools"
+
+multilib_src_configure() {
+   ECONF_SOURCE="${S}" econf \
+   $(use_enable tools)
+}
+
+multilib_src_install() {
+   default
+
+   if ! use static-libs; then
+   find "${D}" -name "*.a" -delete || die
+   fi
+   find "${D}" -name '*.la' -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/vanilla-sources/

2018-09-16 Thread Agostino Sarubbo
commit: bd9615e266c069c94333b9cae88c756f2f621d9d
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Sep 16 10:34:36 2018 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Sep 16 10:34:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd9615e2

sys-kernel/vanilla-sources: Automated version bump to 
{4.4.156,4.9.127,4.14.70,4.18.8} - remove old.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 sys-kernel/vanilla-sources/Manifest   | 8 
 ...illa-sources-4.14.69.ebuild => vanilla-sources-4.14.70.ebuild} | 0
 ...anilla-sources-4.18.7.ebuild => vanilla-sources-4.18.8.ebuild} | 0
 ...illa-sources-4.4.155.ebuild => vanilla-sources-4.4.156.ebuild} | 0
 ...illa-sources-4.9.126.ebuild => vanilla-sources-4.9.127.ebuild} | 0
 5 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index dad138d3ff5..a8d3a9673d9 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -5,8 +5,8 @@ DIST linux-4.18.tar.xz 101781564 BLAKE2B 
138bdc49dc8871e5566b5e23a9e5ed0e68fff48
 DIST linux-4.4.tar.xz 87295988 BLAKE2B 
f260f1858994f5d481fd078c86e51bddbc958f7c5d1586f60dced772e1b1107ecf3aae0558c3e6f39c36f7d3aa1e6cd1e5c64ec9d6f2218f47b98413da6466fb
 SHA512 
13c8459933a8b80608e226a1398e3d1848352ace84bcfb7e6a4a33cb230bbe1ab719d4b58e067283df91ce5311be6d2d595fc8c19e2ae6ecc652499415614b3e
 DIST linux-4.9.tar.xz 93192404 BLAKE2B 
83ae310b17d47f1f18d6d28537c31e10f3e60458c5954c4611158ca99e71cc0da2e051272eabf27d5887df4a7cb4a5dd66ff993077c11d2221e92d300a0b48d7
 SHA512 
bf67ff812cc3cb7e5059e82cc5db0d9a7c5637f7ed9a42e4730c715bf7047c81ed3a571225f92a33ef0b6d65f35595bc32d773356646df2627da55e9bc7f1f1a
 DIST patch-3.16.57.xz 2026584 BLAKE2B 
275c631a26fd7832f5845f2bb74ec053b2e289e72b4a7578cf36427f8939f6267d99395857cd40b26e61a56fa2ea8d913298889bf0b629f48f8fc951ab62b398
 SHA512 
ceb84c52cee592f2bf19d47522a01e66c98edea1c5b532b667fb92c8919ebe905c9340bb68bf38205518e5f41e7ab4059f37e40d334c05f4c1f9f0f28f1caafa
-DIST patch-4.14.69.xz 1702156 BLAKE2B 
88afab19954acd828cafa38d3d7e74c6a18ff1585b6bd9c16eadcb2ce8058ec9a87783d53bcd25c29d15ccbeda1b555babf554e149de63767a852524b75eeecd
 SHA512 
0e17f70c898a58384ffd29c599a52cccfea30a820f1e55cdf9f46f319370b1c0dc16e9000b1a2dfa84779463b757b8810cbe881c919b635801ae078b5e3c0513
+DIST patch-4.14.70.xz 1722428 BLAKE2B 
3a24fb97ddbfc182aaa6c5b956c5ef0cfbf3124f7c330e1de6d68ac80e05386627c1fb1a695716486e8b30089d5a17463a406f99b48f1d792a948addd7152d76
 SHA512 
ef5cd04694863f1cda7b0276aecb94380943770066f21f0a0ae04597da637d86db8b895aae75eb73d3761f524ae3e81196f38711c5e9b9d553a4864d54b58832
 DIST patch-4.17.19.xz 463572 BLAKE2B 
6097f24f8663ade71204d83e4b89bc15f3d0b0f906cb4a0e6a9aa32705fdbd7e8855337acca37697ef93bb3f2c696ce60bab2d4e02f1e20a0113ca02c7df61a7
 SHA512 
57fab939df862c3807d1ddd6461b19f85b3c0aba83203f327cf174f9d6e33c79e996362cabbb44014e03fe1eb77cf0232944927ae95aa1e51ef43b153d6343ab
-DIST patch-4.18.7.xz 140532 BLAKE2B 
0e5c586070e67738fba0c9d144ce196dc1bfee2ed12556efdf8104764400aeebe6d018a8d036a51e1cf26c064a17aed7a9f6f01f2125f45022fcc070960641a5
 SHA512 
483ce39833de636cc8ba52908db14819fcd61bf3a3bfe6409dc858bd5a563de24beade909fb71c3a529a5761f638398bc30fdf2796220ae3da78e3e2a363fdb7
-DIST patch-4.4.155.xz 2121168 BLAKE2B 
cf5022049f2ab4ca59ad11f7c0bd8c4e6a36adf9a6e99ee5e1b35643e3f32a42bf0a940973f77a77a4be14bde0af36ea37eebc1104ab10f6f72696e0ba6d1985
 SHA512 
40b3f8fc8a5ac9fce2334b0474f635a8d38d92656e9474e5cb10c1564c51895aad331b11c870cf36441ea32bcff596efe9c9b2c8a92eebd4344ca810e334386c
-DIST patch-4.9.126.xz 2206340 BLAKE2B 
2ed2b2012e7b0b594f5d4da0943d2c348ff8f31b25bd9eac3c9b7eff54fe842496f180ceecc07574c01a51587c4465eab8e573b4976c475a380e2e20e5609241
 SHA512 
ef857f2a070f84e3b4026ce76fd58a654d71c76d450c9a7f1ea3d805a3b7ede723129fb7bc397c83683ccf0355a54bfb5c0ce03be187f0eb2e3018c8fb0af7aa
+DIST patch-4.18.8.xz 190880 BLAKE2B 
7fdff44282a62ef4ca52c8939182f9c1edece17a351442b15801d29f4007b9a260c381a521a68b24d7f0815aba1a5ebc4f3cdf3e6060eee67e48de7151f77390
 SHA512 
df8e7d24714012fcc6a0532bfd92c2d3ed7651910a5fe7b136bfac0394414690c7617d4e7114113d539fbe53d3375f55840af652f739eb685577458f766d5c03
+DIST patch-4.4.156.xz 2129664 BLAKE2B 
5e3f661ca5280fdfa5b3f7d4aca2e9b156c89edd8d5514b2d0dc5c0e5fe84fbb768cf131c794fd62159d8ed2b8bfeedaf3199dd646d9244f4c680fd9e99fa9b4
 SHA512 
d39b155e46343eea39d30b72fc0a6b69239e832a7de3686a747c356a42b5a39a5cfaeb79e55b3e8f9ef25ea2ad9f03e17b6e2007ee46bb0495997fb40b5f2d93
+DIST patch-4.9.127.xz 2216104 BLAKE2B 
1b23297de8ed0960875f9840e571f85f2879c34f822a88099454ee6b6c9196e171d32d4cebf8d455f5c20e3183178626d26f02c2233ccfe88cfbbd4f898a1f6d
 SHA512 
45f1c513a6c56037cf4947acfbdd272ef0a02ebb3c96a4e8ac4824732e44f39d8eb187a1cb47d5438349e453ef4693b37a131a3dfb6c6a3590fd684d416bfd2e

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.14.69.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-4.14.70.ebuild
similarity 

[gentoo-commits] repo/gentoo:master commit in: net-misc/teamviewer/

2018-09-16 Thread Mikle Kolyada
commit: 580ab49ecf2abf7385c8b2bc9fb221cf8f97af6b
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep 16 10:34:51 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep 16 10:35:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=580ab49e

net-misc/teamviewer: version bump (v13.2.13582)

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 net-misc/teamviewer/Manifest |   2 +
 net-misc/teamviewer/teamviewer-13.2.13582.ebuild | 129 +++
 2 files changed, 131 insertions(+)

diff --git a/net-misc/teamviewer/Manifest b/net-misc/teamviewer/Manifest
index a84e0ba8f8a..b5b1f436bed 100644
--- a/net-misc/teamviewer/Manifest
+++ b/net-misc/teamviewer/Manifest
@@ -2,3 +2,5 @@ DIST teamviewer_13.1.3026_amd64.tar.xz 11500188 BLAKE2B 
98dab12224ea65cdb7c45f01
 DIST teamviewer_13.1.3026_i386.tar.xz 11343300 BLAKE2B 
c0170acf9c67f34755800a0200016dacb6f93f3f3805932fbf467dc19bb0213fce74363a0bc703af1c62b4c1bafda2257bd0cc2c52aad4dd1f22ae5a9fb2d486
 SHA512 
f7dac040de4a0ac3489ee5e911c3c278723cee2372bd42a4a929d3cb268f735eb73514a8d72cc49c82277869533289e3195936218be6db323e732c9c380e
 DIST teamviewer_13.1.8286_amd64.tar.xz 11574812 BLAKE2B 
9941a3c1894e4b1a285ac61bdeffb47629c7972d19a573016c357275b3fc5ede51838f35acb2debe36ccd96c20cab6478868b78c831ab7137cb1196440e62297
 SHA512 
76b10c1df368f4c639ff60a69dc541f791b82b73a19accce4c60fdfcff2922a4a674e08da73df570587e840088b466f4791f8da0691582451259965044a18ccb
 DIST teamviewer_13.1.8286_i386.tar.xz 11422756 BLAKE2B 
0bc408cbbf44bdeb84ce8c1d1274e8253ec261571670bce46130a325729eb801f101afae768a38cc43719abe625ebc89b12f3eacba507c9193e1049366b1c2c0
 SHA512 
1fdbdacfdd2f7884af246326e63f6bcfaf8efc95ec326f566216a173509a21891e4c66d85ef1290648a890135ae3fe23f185da36346d68c016da923b7c9c644a
+DIST teamviewer_13.2.13582_amd64.tar.xz 11472084 BLAKE2B 
adcec9bfb9ccedbc958eceef611f0f04b9b192313d3c060202166b77a4c2623008cbac147e9136925156446ef10a143283735f13c52cebd30e924329d1ff2453
 SHA512 
82a7cce2046a0dd268181044093e0d0bccfef0cbc2e842a94bc9a9fda87062b7236ff23606dd482e68baf8194b189ae6994603ac0584fad624d7f47366f34af3
+DIST teamviewer_13.2.13582_i386.tar.xz 11406728 BLAKE2B 
91bd8fe9c30f8be9de2ce089a0f678e90cb371233c2e8a05e695aa203634846510f1381b449007648a4b0e6b2b201a654b71dae1c63ade0eb08e732ae343766b
 SHA512 
9453b289ba99f63c75e1acb03d3e5a343db4814cffc4464b46116b269a6556e9fda4b1d963fa35e2e912ae959b09fd5dcfbc26ca31ccd76e6d3235be2d9cf55e

diff --git a/net-misc/teamviewer/teamviewer-13.2.13582.ebuild 
b/net-misc/teamviewer/teamviewer-13.2.13582.ebuild
new file mode 100644
index 000..a897021c7c9
--- /dev/null
+++ b/net-misc/teamviewer/teamviewer-13.2.13582.ebuild
@@ -0,0 +1,129 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MY_PN=${PN}${PV/\.*}
+inherit desktop gnome2-utils systemd
+
+DESCRIPTION="All-In-One Solution for Remote Access and Support over the 
Internet"
+HOMEPAGE="https://www.teamviewer.com;
+SRC_URI="amd64? ( 
https://dl.tvcdn.de/download/linux/version_${PV/\.*}x/${PN}_${PV}_amd64.tar.xz )
+   x86? ( 
https://dl.tvcdn.de/download/linux/version_${PV/\.*}x/${PN}_${PV}_i386.tar.xz )"
+
+LICENSE="TeamViewer MIT"
+SLOT="${PV/\.*}"
+KEYWORDS="-* ~amd64 ~x86"
+IUSE=""
+
+DEPEND="sys-apps/sed"
+RDEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtdeclarative:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtquickcontrols:5
+   dev-qt/qtwebkit:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   sys-apps/dbus
+"
+
+RESTRICT="bindist mirror"
+
+# Silence QA messages
+QA_PREBUILT="opt/${MY_PN}/*"
+
+S="${WORKDIR}"/teamviewer
+
+src_prepare() {
+   default
+
+   # Switch operation mode from 'portable' to 'installed'
+   sed -e "s/TAR_NI/TAR_IN/g" -i tv_bin/script/tvw_config || die
+
+   sed -e "/^ExecStart/s/${PN}/${MY_PN}/" \
+   -i tv_bin/script/teamviewerd.service || die
+}
+
+src_install() {
+   local dst="/opt/${MY_PN}" # install destination
+
+   # Quirk:
+   # Remove Intel 80386 32-bit ELF binary 'libdepend' present in all
+   # archives. It will trip the 'emerge @preserved-libs' logic on amd64
+   # when changing the ABI of one of its dependencies. According to the
+   # TeamViewer devs, this binary is an unused remnant of previous Wine-
+   # based builds and will be removed in future releases anyway
+   rm tv_bin/script/libdepend
+
+   insinto ${dst}
+   doins -r tv_bin
+
+   # Set permissions for executables and libraries
+   for exe in $(find tv_bin -type f -executable -or -name '*.so'); do
+   fperms 755 ${dst}/${exe}
+   done
+
+   # No slotting here, binary expects this service path
+   newinitd "${FILESDIR}"/teamviewerd13.init teamviewerd
+   systemd_dounit tv_bin/script/teamviewerd.service
+
+   insinto /usr/share/dbus-1/services
+   

[gentoo-commits] repo/gentoo:master commit in: app-crypt/tpm-emulator/, app-crypt/tpm-emulator/files/

2018-09-16 Thread Alon Bar-Lev
commit: 96278bd867bd974b6200863215ec5aec3d31503a
Author: Alon Bar-Lev  gentoo  org>
AuthorDate: Sun Sep 16 10:35:46 2018 +
Commit: Alon Bar-Lev  gentoo  org>
CommitDate: Sun Sep 16 10:38:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96278bd8

app-crypt/tpm-emulator: fix strncpy build

Closes: https://bugs.gentoo.org/show_bug.cgi?id=666326
Thanks: Toralf Förster

 .../files/tpm-emulator-0.7.5-build.patch   | 33 ++
 app-crypt/tpm-emulator/tpm-emulator-0.7.5.ebuild   |  4 +++
 2 files changed, 37 insertions(+)

diff --git a/app-crypt/tpm-emulator/files/tpm-emulator-0.7.5-build.patch 
b/app-crypt/tpm-emulator/files/tpm-emulator-0.7.5-build.patch
new file mode 100644
index 000..3f96bdd3e68
--- /dev/null
+++ b/app-crypt/tpm-emulator/files/tpm-emulator-0.7.5-build.patch
@@ -0,0 +1,33 @@
+From 78f018a79243b8aa3c2a8e8aa87245c58c731278 Mon Sep 17 00:00:00 2001
+From: Alon Bar-Lev 
+Date: Sun, 16 Sep 2018 13:29:59 +0300
+Subject: [PATCH] tpmd_dev: fix strncpy bound
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+tpmd_dev/linux/tpmd_dev.c:88:3: error: ‘strncpy’ specified bound 108 equals 
destination size [-Werror=stringop-truncation]
+
+Bug: https://github.com/PeterHuewe/tpm-emulator/pull/43
+
+Signed-off-by: Alon Bar-Lev 
+---
+ tpmd_dev/linux/tpmd_dev.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/tpmd_dev/linux/tpmd_dev.c b/tpmd_dev/linux/tpmd_dev.c
+index 2b24bd7..72583f4 100644
+--- a/tpmd_dev/linux/tpmd_dev.c
 b/tpmd_dev/linux/tpmd_dev.c
+@@ -85,7 +85,7 @@ static int tpmd_connect(char *socket_name)
+ return res;
+   }
+   addr.sun_family = AF_UNIX;
+-  strncpy(addr.sun_path, socket_name, sizeof(addr.sun_path));
++  strncpy(addr.sun_path, socket_name, sizeof(addr.sun_path)-1);
+   res = tpmd_sock->ops->connect(tpmd_sock,
+ (struct sockaddr*), sizeof(struct sockaddr_un), 0);
+   if (res != 0) {
+-- 
+2.16.4
+

diff --git a/app-crypt/tpm-emulator/tpm-emulator-0.7.5.ebuild 
b/app-crypt/tpm-emulator/tpm-emulator-0.7.5.ebuild
index 70301caebee..97b70a4785f 100644
--- a/app-crypt/tpm-emulator/tpm-emulator-0.7.5.ebuild
+++ b/app-crypt/tpm-emulator/tpm-emulator-0.7.5.ebuild
@@ -22,6 +22,10 @@ RDEPEND="ssl? (
 DEPEND="${RDEPEND}
!ssl? ( dev-libs/gmp )"
 
+PATCHES=(
+   "${FILESDIR}/${P}-build.patch"
+)
+
 pkg_setup() {
enewgroup tss
enewuser tss -1 -1 /var/lib/tpm tss



[gentoo-commits] proj/gcc-patches:master commit in: 4.2.4/gentoo/

2018-09-16 Thread Sergei Trofimovich
commit: 35af454956c486d6af11accbb76647067641f84b
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Sep 16 10:49:24 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Sep 16 10:49:24 2018 +
URL:https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=35af4549

4.2.4: backport 'struct ucontext' to 'ucontext_t' rename in glibc

Signed-off-by: Sergei Trofimovich  gentoo.org>

 4.2.4/gentoo/93_all_ucontext-to-ucontext_t.patch | 113 +++
 4.2.4/gentoo/README.history  |   3 +
 2 files changed, 116 insertions(+)

diff --git a/4.2.4/gentoo/93_all_ucontext-to-ucontext_t.patch 
b/4.2.4/gentoo/93_all_ucontext-to-ucontext_t.patch
new file mode 100644
index 000..986baca
--- /dev/null
+++ b/4.2.4/gentoo/93_all_ucontext-to-ucontext_t.patch
@@ -0,0 +1,113 @@
+https://bugs.gentoo.org/629502
+
+From ecf0d1a107133c715763940c2b197aa814710e1b Mon Sep 17 00:00:00 2001
+From: jsm28 
+Date: Tue, 4 Jul 2017 10:25:10 +
+Subject: [PATCH] Use ucontext_t not struct ucontext in linux-unwind.h files.
+
+Current glibc no longer gives the ucontext_t type the tag struct
+ucontext, to conform with POSIX namespace rules.  This requires
+various linux-unwind.h files in libgcc, that were previously using
+struct ucontext, to be fixed to use ucontext_t instead.  This is
+similar to the removal of the struct siginfo tag from siginfo_t some
+years ago.
+
+This patch changes those files to use ucontext_t instead.  As the
+standard name that should be unconditionally safe, so this is not
+restricted to architectures supported by glibc, or conditioned on the
+glibc version.
+
+Tested compilation together with current glibc with glibc's
+build-many-glibcs.py.
+
+   * config/aarch64/linux-unwind.h (aarch64_fallback_frame_state),
+   config/alpha/linux-unwind.h (alpha_fallback_frame_state),
+   config/bfin/linux-unwind.h (bfin_fallback_frame_state),
+   config/i386/linux-unwind.h (x86_64_fallback_frame_state,
+   x86_fallback_frame_state), config/m68k/linux-unwind.h (struct
+   uw_ucontext), config/nios2/linux-unwind.h (struct nios2_ucontext),
+   config/pa/linux-unwind.h (pa32_fallback_frame_state),
+   config/sh/linux-unwind.h (sh_fallback_frame_state),
+   config/tilepro/linux-unwind.h (tile_fallback_frame_state),
+   config/xtensa/linux-unwind.h (xtensa_fallback_frame_state): Use
+   ucontext_t instead of struct ucontext.
+
+
+git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-5-branch@249958 
138bc75d-0d04-0410-961f-82ee72b054a4
+---
+ libgcc/config/aarch64/linux-unwind.h |  2 +-
+ libgcc/config/alpha/linux-unwind.h   |  2 +-
+ libgcc/config/bfin/linux-unwind.h|  2 +-
+ libgcc/config/i386/linux-unwind.h|  4 ++--
+ libgcc/config/m68k/linux-unwind.h|  2 +-
+ libgcc/config/nios2/linux-unwind.h   |  2 +-
+ libgcc/config/pa/linux-unwind.h  |  2 +-
+ libgcc/config/sh/linux-unwind.h  |  2 +-
+ libgcc/config/tilepro/linux-unwind.h |  2 +-
+ libgcc/config/xtensa/linux-unwind.h  |  2 +-
+ 11 files changed, 25 insertions(+), 11 deletions(-)
+
+diff --git a/libgcc/config/alpha/linux-unwind.h 
b/libgcc/config/alpha/linux-unwind.h
+index d65474fec12..9a226b195b5 100644
+--- a/gcc/config/alpha/linux-unwind.h
 b/gcc/config/alpha/linux-unwind.h
+@@ -51,7 +51,7 @@ alpha_fallback_frame_state (struct _Unwind_Context *context,
+ {
+   struct rt_sigframe {
+   siginfo_t info;
+-  struct ucontext uc;
++  ucontext_t uc;
+   } *rt_ = context->cfa;
+   sc = _->uc.uc_mcontext;
+ }
+diff --git a/libgcc/config/i386/linux-unwind.h 
b/libgcc/config/i386/linux-unwind.h
+index e54bf73b1fd..d35fc4566ce 100644
+--- a/gcc/config/i386/linux-unwind.h
 b/gcc/config/i386/linux-unwind.h
+@@ -58,7 +58,7 @@ x86_64_fallback_frame_state (struct _Unwind_Context *context,
+   if (*(unsigned char *)(pc+0) == 0x48
+   && *(unsigned long long *)(pc+1) == RT_SIGRETURN_SYSCALL)
+ {
+-  struct ucontext *uc_ = context->cfa;
++  ucontext_t *uc_ = context->cfa;
+   /* The void * cast is necessary to avoid an aliasing warning.
+  The aliasing warning is correct, but should not be a problem
+  because it does not alias anything.  */
+@@ -138,7 +138,7 @@ x86_fallback_frame_state (struct _Unwind_Context *context,
+   siginfo_t *pinfo;
+   void *puc;
+   siginfo_t info;
+-  struct ucontext uc;
++  ucontext_t uc;
+   } *rt_ = context->cfa;
+   /* The void * cast is necessary to avoid an aliasing warning.
+  The aliasing warning is correct, but should not be a problem
+diff --git a/libgcc/config/pa/linux-unwind.h b/libgcc/config/pa/linux-unwind.h
+index 01494685ea4..91575356803 100644
+--- a/gcc/config/pa/linux-unwind.h
 b/gcc/config/pa/linux-unwind.h
+@@ -80,7 +80,7 @@ pa32_fallback_frame_state (struct _Unwind_Context *context,
+   struct sigcontext *sc;
+   struct rt_sigframe {
+ siginfo_t info;
+-struct ucontext uc;
++

[gentoo-commits] repo/gentoo:master commit in: sys-firmware/intel-microcode/

2018-09-16 Thread Thomas Deutschmann
commit: 3d4391c830d4e463c2674a4467a7513664ca87ea
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Sep 16 11:29:01 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Sep 16 11:29:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d4391c8

sys-firmware/intel-microcode: drop old

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 sys-firmware/intel-microcode/Manifest  |   1 -
 .../intel-microcode-20180807a_p20180808.ebuild | 253 -
 2 files changed, 254 deletions(-)

diff --git a/sys-firmware/intel-microcode/Manifest 
b/sys-firmware/intel-microcode/Manifest
index 2fdceafc5a0..2730dbac48e 100644
--- a/sys-firmware/intel-microcode/Manifest
+++ b/sys-firmware/intel-microcode/Manifest
@@ -1,3 +1,2 @@
-DIST intel-microcode-collection-20180808.tar.xz 4463768 BLAKE2B 
bf04d00db7e11b7ef6da9b4221aa2dfae1a20a39ab2f99ad78e735c9cf0f1d9a949b81ceba740238da98d34a934d8829b6882714ec21a1ffa3c1a7dfcfbfdcc6
 SHA512 
e5607127464c71e3ed413ca3b66cde0b5b994d837655208997841ec5358c32bb197f4ad0123b19bae4254aa35770cfec32cf2780f2cb5dd5f0a00d1ca14cf93c
 DIST intel-microcode-collection-20180916.tar.xz 4414792 BLAKE2B 
e0dee0ef27e5d5460a4856b73a0a3940e563b649912f648cf45c109404666b7ebffb3bcce900f2eb48502b8ef2f0410cdde39eb478879e79cca4414f326c6947
 SHA512 
ac1964cbaffdf8a5e42ea80fd6898583f3f97a3163b0b661bcc0a83f6a1e9ba0c0a22bc79b8aadb759e5d02f77d2e2c04bd16c8811a277eb261a9a5e3bae3761
 DIST microcode-20180807a.tgz 1628061 BLAKE2B 
a6b5a07596a0b1687efb95c207b2194865b2f975cc0d761a687d5b9d8fea63e777eb73373113f356a18592fd53651cf37d044d4e98cdfe6b306393b54ac06129
 SHA512 
3cd6794a5ce26e86f7b644e523ba978699316046e593da215b73b17c4b43049ac4a81636e2ce3e727d06c2efbac98657764aa3ff355edb429127585bb49a9b10

diff --git 
a/sys-firmware/intel-microcode/intel-microcode-20180807a_p20180808.ebuild 
b/sys-firmware/intel-microcode/intel-microcode-20180807a_p20180808.ebuild
deleted file mode 100644
index 30301c72475..000
--- a/sys-firmware/intel-microcode/intel-microcode-20180807a_p20180808.ebuild
+++ /dev/null
@@ -1,253 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit linux-info toolchain-funcs mount-boot
-
-# Find updates by searching and clicking the first link (hopefully it's the 
one):
-# 
https://www.intel.com/content/www/us/en/search.html?keyword=Processor+Microcode+Data+File
-
-COLLECTION_SNAPSHOT="${PV##*_p}"
-INTEL_SNAPSHOT="${PV/_p*}"
-NUM="28087"
-DESCRIPTION="Intel IA32/IA64 microcode update data"
-HOMEPAGE="http://inertiawar.com/microcode/ 
https://downloadcenter.intel.com/Detail_Desc.aspx?DwnldID=${NUM};
-SRC_URI="https://downloadmirror.intel.com/${NUM}/eng/microcode-${INTEL_SNAPSHOT}.tgz
-   
https://dev.gentoo.org/~whissi/dist/intel-microcode/intel-microcode-collection-${COLLECTION_SNAPSHOT}.tar.xz;
-
-LICENSE="intel-ucode"
-SLOT="0"
-KEYWORDS="-* amd64 x86"
-IUSE="hostonly initramfs +split-ucode vanilla"
-REQUIRED_USE="|| ( initramfs split-ucode )"
-
-DEPEND="sys-apps/iucode_tool"
-
-# ! "${ED%/}/tmp/.blacklist_altered" 
|| die "Failed to add marker that MICROCODE_BLACKLIST variable was used"
-   fi
-
-   if [[ "${MICROCODE_SIGNATURES}" != "${MICROCODE_SIGNATURES_DEFAULT}" 
]]; then
-   echo ${MICROCODE_SIGNATURES} > 
"${ED%/}/tmp/.signatures_altered" || die "Failed to add marker that 
MICROCODE_SIGNATURES variable was used"
-   fi
-}
-
-pkg_preinst() {
-   if [[ -f "${ED%/}/tmp/.blacklist_altered" ]]; then
-   local _recorded_MICROCODE_BLACKLIST_value=$(cat 
"${ED%/}/tmp/.blacklist_altered")
-   ewarn "MICROCODE_BLACKLIST is set to 
\"${_recorded_MICROCODE_BLACKLIST_value}\" instead of default 
\"${MICROCODE_BLACKLIST_DEFAULT}\". You are on your own!"
-   fi
-
-   if [[ -f "${ED%/}/tmp/.signatures_altered" ]]; then
-   local _recorded_MICROCODE_SIGNATURES_value=$(cat 
"${ED%/}/tmp/.signatures_altered")
-   ewarn "Package was created using advanced options:"
-   ewarn "MICROCODE_SIGNATURES is set to 
\"${_recorded_MICROCODE_SIGNATURES_value}\" instead of default 
\"${MICROCODE_SIGNATURES_DEFAULT}\"!"
-   fi
-
-   # Make sure /boot is available if needed.
-   use initramfs && mount-boot_pkg_preinst
-
-   local _initramfs_file="${ED%/}/boot/intel-uc.img"
-   local _ucode_dir="${ED%/}/lib/firmware/intel-ucode"
-
-   if use hostonly; then
-   # While this output looks redundant we do this check to detect
-   # rare cases where iucode_tool was unable to detect system's 
processor(s).
- 

[gentoo-commits] repo/gentoo:master commit in: sys-firmware/intel-microcode/

2018-09-16 Thread Thomas Deutschmann
commit: 3e834077ff58ae6773cbac739b932e200404741f
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Sep 16 11:28:13 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Sep 16 11:29:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e834077

sys-firmware/intel-microcode: bump

- Updated Microcodes:

  sig 0x00030678, pf_mask 0x0c, 2018-01-10, rev 0x0836 -> 2018-01-25, rev 0x0837
  sig 0x000906ec, pf_mask 0x22, 2018-05-31, rev 0x0098 -> 2018-08-26, rev 0x009e

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 sys-firmware/intel-microcode/Manifest  |   1 +
 .../intel-microcode-20180807a_p20180916.ebuild | 253 +
 2 files changed, 254 insertions(+)

diff --git a/sys-firmware/intel-microcode/Manifest 
b/sys-firmware/intel-microcode/Manifest
index 242227288ea..2fdceafc5a0 100644
--- a/sys-firmware/intel-microcode/Manifest
+++ b/sys-firmware/intel-microcode/Manifest
@@ -1,2 +1,3 @@
 DIST intel-microcode-collection-20180808.tar.xz 4463768 BLAKE2B 
bf04d00db7e11b7ef6da9b4221aa2dfae1a20a39ab2f99ad78e735c9cf0f1d9a949b81ceba740238da98d34a934d8829b6882714ec21a1ffa3c1a7dfcfbfdcc6
 SHA512 
e5607127464c71e3ed413ca3b66cde0b5b994d837655208997841ec5358c32bb197f4ad0123b19bae4254aa35770cfec32cf2780f2cb5dd5f0a00d1ca14cf93c
+DIST intel-microcode-collection-20180916.tar.xz 4414792 BLAKE2B 
e0dee0ef27e5d5460a4856b73a0a3940e563b649912f648cf45c109404666b7ebffb3bcce900f2eb48502b8ef2f0410cdde39eb478879e79cca4414f326c6947
 SHA512 
ac1964cbaffdf8a5e42ea80fd6898583f3f97a3163b0b661bcc0a83f6a1e9ba0c0a22bc79b8aadb759e5d02f77d2e2c04bd16c8811a277eb261a9a5e3bae3761
 DIST microcode-20180807a.tgz 1628061 BLAKE2B 
a6b5a07596a0b1687efb95c207b2194865b2f975cc0d761a687d5b9d8fea63e777eb73373113f356a18592fd53651cf37d044d4e98cdfe6b306393b54ac06129
 SHA512 
3cd6794a5ce26e86f7b644e523ba978699316046e593da215b73b17c4b43049ac4a81636e2ce3e727d06c2efbac98657764aa3ff355edb429127585bb49a9b10

diff --git 
a/sys-firmware/intel-microcode/intel-microcode-20180807a_p20180916.ebuild 
b/sys-firmware/intel-microcode/intel-microcode-20180807a_p20180916.ebuild
new file mode 100644
index 000..5bab3ca5b6f
--- /dev/null
+++ b/sys-firmware/intel-microcode/intel-microcode-20180807a_p20180916.ebuild
@@ -0,0 +1,253 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit linux-info toolchain-funcs mount-boot
+
+# Find updates by searching and clicking the first link (hopefully it's the 
one):
+# 
https://www.intel.com/content/www/us/en/search.html?keyword=Processor+Microcode+Data+File
+
+COLLECTION_SNAPSHOT="${PV##*_p}"
+INTEL_SNAPSHOT="${PV/_p*}"
+NUM="28087"
+DESCRIPTION="Intel IA32/IA64 microcode update data"
+HOMEPAGE="http://inertiawar.com/microcode/ 
https://downloadcenter.intel.com/Detail_Desc.aspx?DwnldID=${NUM};
+SRC_URI="https://downloadmirror.intel.com/${NUM}/eng/microcode-${INTEL_SNAPSHOT}.tgz
+   
https://dev.gentoo.org/~whissi/dist/intel-microcode/intel-microcode-collection-${COLLECTION_SNAPSHOT}.tar.xz;
+
+LICENSE="intel-ucode"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~x86"
+IUSE="hostonly initramfs +split-ucode vanilla"
+REQUIRED_USE="|| ( initramfs split-ucode )"
+
+DEPEND="sys-apps/iucode_tool"
+
+# ! "${ED%/}/tmp/.blacklist_altered" 
|| die "Failed to add marker that MICROCODE_BLACKLIST variable was used"
+   fi
+
+   if [[ "${MICROCODE_SIGNATURES}" != "${MICROCODE_SIGNATURES_DEFAULT}" 
]]; then
+   echo ${MICROCODE_SIGNATURES} > 
"${ED%/}/tmp/.signatures_altered" || die "Failed to add marker that 
MICROCODE_SIGNATURES variable was used"
+   fi
+}
+
+pkg_preinst() {
+   if [[ -f "${ED%/}/tmp/.blacklist_altered" ]]; then
+   local _recorded_MICROCODE_BLACKLIST_value=$(cat 
"${ED%/}/tmp/.blacklist_altered")
+   ewarn "MICROCODE_BLACKLIST is set to 
\"${_recorded_MICROCODE_BLACKLIST_value}\" instead of default 
\"${MICROCODE_BLACKLIST_DEFAULT}\". You are on your own!"
+   fi
+
+   if [[ -f "${ED%/}/tmp/.signatures_altered" ]]; then
+   local _recorded_MICROCODE_SIGNATURES_value=$(cat 
"${ED%/}/tmp/.signatures_altered")
+   ewarn "Package was created using advanced options:"
+   ewarn "MICROCODE_SIGNATURES is set to 
\"${_recorded_MICROCODE_SIGNATURES_value}\" instead of default 
\"${MICROCODE_SIGNATURES_DEFAULT}\"!"
+   fi
+
+   # Make sure /boot is available if needed.
+   use initramfs && mount-boot_pkg_preinst
+
+   local _initramfs_file="${ED%/}/boot/intel-uc.img"
+   local _ucode_dir="${ED%/}/lib/firmware/intel-ucode&q

[gentoo-commits] repo/gentoo:master commit in: sys-firmware/intel-microcode/

2018-09-16 Thread Thomas Deutschmann
commit: 6feddbf9a703917112e8408dcd0d5dd309856cc1
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Sep 16 11:28:44 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Sep 16 11:29:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6feddbf9

sys-firmware/intel-microcode: amd64 & x86 stable

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 sys-firmware/intel-microcode/intel-microcode-20180807a_p20180916.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/sys-firmware/intel-microcode/intel-microcode-20180807a_p20180916.ebuild 
b/sys-firmware/intel-microcode/intel-microcode-20180807a_p20180916.ebuild
index 5bab3ca5b6f..30301c72475 100644
--- a/sys-firmware/intel-microcode/intel-microcode-20180807a_p20180916.ebuild
+++ b/sys-firmware/intel-microcode/intel-microcode-20180807a_p20180916.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://downloadmirror.intel.com/${NUM}/eng/microcode-${INTEL_SNAPSHOT}
 
 LICENSE="intel-ucode"
 SLOT="0"
-KEYWORDS="-* ~amd64 ~x86"
+KEYWORDS="-* amd64 x86"
 IUSE="hostonly initramfs +split-ucode vanilla"
 REQUIRED_USE="|| ( initramfs split-ucode )"
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/sdl2-gfx/

2018-09-16 Thread Mikle Kolyada
commit: 70fc96d33d4ebeb3d7ae5cd8a96eb2d05ad6a3f9
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep 16 13:14:39 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep 16 13:14:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70fc96d3

media-libs/sdl2-gfx: amd64 stable wrt bug #665062

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 media-libs/sdl2-gfx/sdl2-gfx-1.0.3.ebuild | 4 ++--
 media-libs/sdl2-gfx/sdl2-gfx-1.0.4.ebuild | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/media-libs/sdl2-gfx/sdl2-gfx-1.0.3.ebuild 
b/media-libs/sdl2-gfx/sdl2-gfx-1.0.3.ebuild
index 290097e34aa..838a85658a5 100644
--- a/media-libs/sdl2-gfx/sdl2-gfx-1.0.3.ebuild
+++ b/media-libs/sdl2-gfx/sdl2-gfx-1.0.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ 
SRC_URI="http://www.ferzkopp.net/Software/SDL2_gfx/${MY_P}.tar.gz;
 
 LICENSE="ZLIB"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="doc cpu_flags_x86_mmx static-libs"
 
 DEPEND=">=media-libs/libsdl2-2.0.1-r1[video,${MULTILIB_USEDEP}]"

diff --git a/media-libs/sdl2-gfx/sdl2-gfx-1.0.4.ebuild 
b/media-libs/sdl2-gfx/sdl2-gfx-1.0.4.ebuild
index 495efb82a36..b4e1c4ee1c0 100644
--- a/media-libs/sdl2-gfx/sdl2-gfx-1.0.4.ebuild
+++ b/media-libs/sdl2-gfx/sdl2-gfx-1.0.4.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://www.ferzkopp.net/Software/SDL2_gfx/${MY_P}.tar.gz;
 
 LICENSE="ZLIB"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="doc cpu_flags_x86_mmx static-libs"
 
 DEPEND=">=media-libs/libsdl2-2.0.1-r1[video,${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-libs/sdl2-mixer/

2018-09-16 Thread Mikle Kolyada
commit: dc5ab473d4cde984cd40be134b350268f007212e
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep 16 13:13:24 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep 16 13:13:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc5ab473

media-libs/sdl2-mixer: amd64 stable wrt bug #665062

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 media-libs/sdl2-mixer/sdl2-mixer-2.0.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/sdl2-mixer/sdl2-mixer-2.0.2-r1.ebuild 
b/media-libs/sdl2-mixer/sdl2-mixer-2.0.2-r1.ebuild
index b2506f31b7c..727a9d409dd 100644
--- a/media-libs/sdl2-mixer/sdl2-mixer-2.0.2-r1.ebuild
+++ b/media-libs/sdl2-mixer/sdl2-mixer-2.0.2-r1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://www.libsdl.org/projects/SDL_mixer/release/${MY_P}.tar.gz;
 
 LICENSE="ZLIB"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa x86"
+KEYWORDS="amd64 ~arm ~hppa x86"
 IUSE="flac fluidsynth mad midi mikmod mod modplug mp3 playtools smpeg 
static-libs timidity tremor vorbis +wav"
 REQUIRED_USE="
midi? ( || ( timidity fluidsynth ) )



[gentoo-commits] repo/gentoo:master commit in: app-office/skrooge/

2018-09-16 Thread Mikle Kolyada
commit: e95748bcab1b34dd596caf2ec57c4c5ad0564793
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep 16 13:19:10 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep 16 13:19:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e95748bc

app-office/skrooge: amd64 stable wrt bug #664844

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-office/skrooge/skrooge-2.14.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/skrooge/skrooge-2.14.0.ebuild 
b/app-office/skrooge/skrooge-2.14.0.ebuild
index 69bfd2e405c..54c12b36854 100644
--- a/app-office/skrooge/skrooge-2.14.0.ebuild
+++ b/app-office/skrooge/skrooge-2.14.0.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://skrooge.org/;
 [[ ${PV} ==  ]] || SRC_URI="mirror://kde/stable/${PN}/${P}.tar.xz"
 
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="activities designer kde ofx"
 
 COMMON_DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-admin/keepass/

2018-09-16 Thread Manuel Rüger
commit: 9766e86d5fa0370212e79bf7417f5d88845bb25b
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Sep 16 14:33:56 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Sep 16 14:33:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9766e86d

app-admin/keepass: Version bump to 2.40

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 app-admin/keepass/Manifest|   1 +
 app-admin/keepass/keepass-2.40.ebuild | 111 ++
 2 files changed, 112 insertions(+)

diff --git a/app-admin/keepass/Manifest b/app-admin/keepass/Manifest
index 66fb3b02e55..af6c4787cba 100644
--- a/app-admin/keepass/Manifest
+++ b/app-admin/keepass/Manifest
@@ -1,2 +1,3 @@
 DIST KeePass-2.38-Source.zip 5091900 BLAKE2B 
22e3f7046984204a3e0c4a1c6d8303661048bc0fee4bcdb7999b521d0ed6e5463d89044d2897cfec0c932349cc80a7b43d4c8dfbceb4f2e88041c642e0c0d231
 SHA512 
42fa7274874d4858da360a6772eb25adbf3a6dafe375093459d9a25903d8c159360ea722e969fe8b330bccf62ee5d381e131bd0ba075445932d8019eee19bf20
 DIST KeePass-2.39.1-Source.zip 5109228 BLAKE2B 
0b1214ac70d3d615e029c89abe63176f31e29a3fb800d84b6102220d2d39ebba848e3100e85e6f3d5cd4965461c68798ba880d5b229e8f8e6a20b0d65c2c632c
 SHA512 
9f2b5f6c86b00932f132f8eea24fc35f08c217ed3feb047afe585592761f5297b76140c3154fb519dc5c9137718227a0bc4b6a45d22d1eb0ac95d08c73a70314
+DIST KeePass-2.40-Source.zip 5136918 BLAKE2B 
7b5071cbe3bc5f20450a094a4b8969e2e25f6bba27d88ee5c2c25f2706ed3cf18e721ba53ff54c78db6ea1e167cef1108611fc8253a9d6e19eb3f9d1f3317c73
 SHA512 
222f7e7ef65be8b0d75baa0a6e871d5edad1b570b64f261405b843d7387ec1faeb4138afb8b31934d70eebe0add297681028cb4f3acfcbe4f518c763fe6c0145

diff --git a/app-admin/keepass/keepass-2.40.ebuild 
b/app-admin/keepass/keepass-2.40.ebuild
new file mode 100644
index 000..e1e03bb233e
--- /dev/null
+++ b/app-admin/keepass/keepass-2.40.ebuild
@@ -0,0 +1,111 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils gnome2-utils xdg-utils
+
+MY_PN="KeePass"
+DESCRIPTION="A free, open source, light-weight and easy-to-use password 
manager"
+HOMEPAGE="https://keepass.info/;
+SRC_URI="mirror://sourceforge/${PN}/${MY_PN}-${PV}-Source.zip"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="aot"
+
+COMMON_DEPEND="dev-lang/mono"
+DEPEND="${COMMON_DEPEND}
+   app-arch/unzip
+"
+RDEPEND="${COMMON_DEPEND}
+   dev-dotnet/libgdiplus[cairo]
+"
+
+S="${WORKDIR}"
+PATCHES=( "${FILESDIR}/${PN}-2.36-xsl-path-detection.patch" )
+
+src_prepare() {
+   # KeePass looks for some XSL files in the same folder as the executable,
+   # we prefer to have it in /usr/share/KeePass. Apply patch using base 
function.
+   # This XSL file will not be upstreamed since the KeePass creator said 
that
+   # including this patch would break the Portable USB version of KeePass
+   # (which keeps/looks for xsl files in its own folder)
+   default
+
+   # Switch into build dir so the mono prepration script works correctly
+   pushd Build || die
+   source PrepMonoDev.sh || die
+   popd || die
+}
+
+src_compile() {
+   # Build with Release target
+   xbuild /target:KeePass /property:Configuration=Release || die
+
+   # Run Ahead Of Time compiler on the binary
+   if use aot; then
+   cp Ext/KeePass.exe.config Build/KeePass/Release/ || die
+   mono --aot -O=all Build/KeePass/Release/KeePass.exe || die
+   fi
+}
+
+src_install() {
+   # Wrapper script to launch mono
+   make_wrapper "${PN}" "mono /usr/$(get_libdir)/${PN}/KeePass.exe"
+
+   # Some XSL files
+   insinto "/usr/share/${PN}/XSL"
+   doins Ext/XSL/*
+
+   insinto "/usr/$(get_libdir)/${PN}"
+   exeinto "/usr/$(get_libdir)/${PN}"
+
+   doins Ext/KeePass.exe.config
+
+   # Default configuration, simply says to use user-specific configuration
+   doins Ext/KeePass.config.xml
+
+   # The actual executable
+   doexe Build/KeePass/Release/KeePass.exe
+
+   # Copy the AOT compilation result
+   if use aot; then
+   doexe Build/KeePass/Release/KeePass.exe.so
+   fi
+
+   # Prepare the icons
+   newicon -s 256 Ext/Icons_04_CB/Finals/plockb.png "${PN}.png"
+   newicon -s 256 -t gnome -c mimetypes Ext/Icons_04_CB/Finals/plockb.png 
"application-x-${PN}2.png"
+
+   # Create a desktop entry and associate it with the KeePass mime type
+   make_desktop_entry "${PN}" "${MY_PN}" "${PN}" "System;Security" 
"MimeType=application/x-keepass2;"
+
+   # MIME descriptor for .kdbx files
+   insinto /usr/share/mime/packages
+   doins "${FILESDIR}/${PN}.xml"
+
+   # sed, because patching this really sucks
+   sed -i 's/mono/mono --verify-all/g' "${D}/usr/bin/keepass" || die
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+
+   if ! 

[gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: /

2018-09-16 Thread Ulrich Müller
commit: d7378824e5a1f40e6e806e8cb093e9dcbb55e302
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sun Sep 16 14:41:09 2018 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sun Sep 16 14:41:09 2018 +
URL:https://gitweb.gentoo.org/proj/emacs-tools.git/commit/?id=d7378824

Update copyright notices to follow the new policy.

 ChangeLog | 1 -
 Makefile  | 2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index f231ed7..d0cbd4a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -170,5 +170,4 @@
 
* emacs.desktop, emacs.png: New files.
 
-Copyright 2007-2017 Gentoo Foundation
 Distributed under the terms of the GNU General Public License v2 or later

diff --git a/Makefile b/Makefile
index 5154dae..f81b7a9 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# Copyright 2007-2017 Gentoo Foundation
+# Copyright 2007-2017 Ulrich Müller
 # Distributed under the terms of the GNU General Public License v2 or later
 
 PN = emacs-common-gentoo



[gentoo-commits] proj/emacs-tools:emacs-updater commit in: /

2018-09-16 Thread Ulrich Müller
commit: 4dd4b3fc65f8d90d4785d0007959edf35213b812
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sun Sep 16 14:45:03 2018 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sun Sep 16 14:45:03 2018 +
URL:https://gitweb.gentoo.org/proj/emacs-tools.git/commit/?id=4dd4b3fc

Update copyright notices to follow the new policy.

 ChangeLog   | 1 -
 Makefile| 2 +-
 emacs-updater   | 5 +++--
 emacs-updater.8 | 2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index c759036..45a594e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -362,5 +362,4 @@
 
* emacs-updater.sh: first version of Emacs updater
 
-Copyright 2007-2016 Gentoo Foundation
 Distributed under the terms of the GNU General Public License v2 or later

diff --git a/Makefile b/Makefile
index 63e02ca..4b88716 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# Copyright 2008-2016 Gentoo Foundation
+# Copyright 2008-2016 Christian Faulhammer and Ulrich Müller
 # Distributed under the terms of the GNU General Public License v2 or later
 
 PN = emacs-updater

diff --git a/emacs-updater b/emacs-updater
index 31cc448..704d667 100755
--- a/emacs-updater
+++ b/emacs-updater
@@ -1,5 +1,6 @@
 #!/bin/bash
-# Copyright 2007-2016 Gentoo Foundation
+# Copyright 2007-2010 Christian Faulhammer
+# Copyright 2007-2016 Ulrich Müller
 # Distributed under the terms of the GNU General Public License v2 or later
 
 # Authors:
@@ -69,7 +70,7 @@ usage() {
 version() {
 cat <<-EOF
Emacs updater version ${VERSION}
-   Copyright 2007-2016 Gentoo Foundation.
+   Copyright 2007-2016 Christian Faulhammer and Ulrich Müller
Distributed under the terms of the GNU GPL version 2 or later.
 
Gentoo Emacs project: 

diff --git a/emacs-updater.8 b/emacs-updater.8
index 0e234b0..22ecf5b 100644
--- a/emacs-updater.8
+++ b/emacs-updater.8
@@ -1,5 +1,5 @@
 .\" -*- coding: utf-8 -*-
-.\" Copyright 2008-2016 Gentoo Foundation
+.\" Copyright 2008-2016 Ulrich Müller
 .\" Distributed under the terms of the GNU General Public License v2 or later
 .\"
 .TH emacs-updater 8 "May 2014" "Gentoo Linux"



[gentoo-commits] proj/emacs-tools:eselect-emacs commit in: /

2018-09-16 Thread Ulrich Müller
commit: 0418189cb5350cb8a760336db248c8588a64fddb
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sun Sep 16 14:48:36 2018 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sun Sep 16 14:48:36 2018 +
URL:https://gitweb.gentoo.org/proj/emacs-tools.git/commit/?id=0418189c

Update copyright notices to follow the new policy.

 ChangeLog   | 1 -
 Makefile| 2 +-
 ctags.eselect   | 2 +-
 ctags.eselect.5 | 2 +-
 emacs.eselect   | 2 +-
 emacs.eselect.5 | 2 +-
 gnuclient.eselect   | 2 +-
 gnuclient.eselect.5 | 2 +-
 8 files changed, 7 insertions(+), 8 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 897e2e4..f78ae66 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -469,5 +469,4 @@
Automatically symlink man pages.
Automatically set correct INFOPATH.
 
-Copyright 2007-2014 Gentoo Foundation
 Distributed under the terms of the GNU GPL version 2 or later

diff --git a/Makefile b/Makefile
index f89ad59..dd6d4cd 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# Copyright 2007-2014 Gentoo Foundation
+# Copyright 2007-2014 Gentoo Authors
 # Distributed under the terms of the GNU GPL version 2 or later
 
 PN = eselect-emacs

diff --git a/ctags.eselect b/ctags.eselect
index d2b286e..6cd3a88 100644
--- a/ctags.eselect
+++ b/ctags.eselect
@@ -1,5 +1,5 @@
 # -*-eselect-*-
-# Copyright 2005-2014 Gentoo Foundation
+# Copyright 2005-2014 Gentoo Authors
 # Distributed under the terms of the GNU GPL version 2 or later
 #
 # DOCUMENTATION

diff --git a/ctags.eselect.5 b/ctags.eselect.5
index bcdb55b..82f62db 100644
--- a/ctags.eselect.5
+++ b/ctags.eselect.5
@@ -1,5 +1,5 @@
 .\" -*- coding: utf-8 -*-
-.\" Copyright 2007-2014 Gentoo Foundation
+.\" Copyright 2007-2014 Gentoo Authors
 .\" Distributed under the terms of the GNU GPL version 2 or later
 .\"
 .TH ctags.eselect 5 "December 2014" "Gentoo Linux" eselect

diff --git a/emacs.eselect b/emacs.eselect
index b93436f..dfffb58 100644
--- a/emacs.eselect
+++ b/emacs.eselect
@@ -1,5 +1,5 @@
 # -*-eselect-*-
-# Copyright 2005-2014 Gentoo Foundation
+# Copyright 2005-2014 Gentoo Authors
 # Distributed under the terms of the GNU GPL version 2 or later
 #
 # DOCUMENTATION

diff --git a/emacs.eselect.5 b/emacs.eselect.5
index 1348e85..fb2bea5 100644
--- a/emacs.eselect.5
+++ b/emacs.eselect.5
@@ -1,5 +1,5 @@
 .\" -*- coding: utf-8 -*-
-.\" Copyright 2007-2014 Gentoo Foundation
+.\" Copyright 2007-2014 Gentoo Authors
 .\" Distributed under the terms of the GNU GPL version 2 or later
 .\"
 .TH emacs.eselect 5 "December 2014" "Gentoo Linux" eselect

diff --git a/gnuclient.eselect b/gnuclient.eselect
index f4d36e8..7094714 100644
--- a/gnuclient.eselect
+++ b/gnuclient.eselect
@@ -1,5 +1,5 @@
 # -*-eselect-*-
-# Copyright 2005-2014 Gentoo Foundation
+# Copyright 2005-2014 Gentoo Authors
 # Distributed under the terms of the GNU GPL version 2 or later
 #
 # DOCUMENTATION

diff --git a/gnuclient.eselect.5 b/gnuclient.eselect.5
index de6bcaf..8d8314a 100644
--- a/gnuclient.eselect.5
+++ b/gnuclient.eselect.5
@@ -1,5 +1,5 @@
 .\" -*- coding: utf-8 -*-
-.\" Copyright 2007-2014 Gentoo Foundation
+.\" Copyright 2007-2014 Gentoo Authors
 .\" Distributed under the terms of the GNU GPL version 2 or later
 .\"
 .TH gnuclient.eselect 5 "February 2014" "Gentoo Linux" eselect



[gentoo-commits] proj/emacs-tools:emacs-daemon commit in: /

2018-09-16 Thread Ulrich Müller
commit: 3e7b97ff16261134334e058e1492df90ea9d054c
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sun Sep 16 14:42:51 2018 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sun Sep 16 14:42:51 2018 +
URL:https://gitweb.gentoo.org/proj/emacs-tools.git/commit/?id=3e7b97ff

Update copyright notices to follow the new policy.

 10emacs-daemon-gentoo.el | 2 +-
 ChangeLog| 1 -
 Makefile | 2 +-
 emacs-stop.sh| 2 +-
 emacs-wrapper.sh | 2 +-
 emacs.rc | 2 +-
 6 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/10emacs-daemon-gentoo.el b/10emacs-daemon-gentoo.el
index 462ca79..facee18 100644
--- a/10emacs-daemon-gentoo.el
+++ b/10emacs-daemon-gentoo.el
@@ -1,6 +1,6 @@
 ;;; emacs-daemon site-lisp configuration
 
-;; Copyright 2008-2016 Gentoo Foundation
+;; Copyright 2008-2016 Ulrich Müller
 ;; Distributed under the terms of the GNU General Public License v2 or later
 
 (and

diff --git a/ChangeLog b/ChangeLog
index ba66948..f16cbd9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -235,5 +235,4 @@
 
* emacs.rc, 10emacs-daemon-gentoo.el, Makefile: New files.
 
-Copyright 2008-2016 Gentoo Foundation
 Distributed under the terms of the GNU General Public License v2 or later

diff --git a/Makefile b/Makefile
index 738fd7e..56d3fe6 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# Copyright 2008-2016 Gentoo Foundation
+# Copyright 2008-2016 Ulrich Müller and Christian Faulhammer
 # Distributed under the terms of the GNU General Public License v2 or later
 
 PN = emacs-daemon

diff --git a/emacs-stop.sh b/emacs-stop.sh
index 0577359..7635d4e 100644
--- a/emacs-stop.sh
+++ b/emacs-stop.sh
@@ -1,5 +1,5 @@
 #!/bin/bash
-# Copyright 2008-2016 Gentoo Foundation
+# Copyright 2008-2016 Ulrich Müller
 # Distributed under the terms of the GNU General Public License v2 or later
 
 # Lisp expression to be evaluated when stopping Emacs.

diff --git a/emacs-wrapper.sh b/emacs-wrapper.sh
index da21d72..5034727 100644
--- a/emacs-wrapper.sh
+++ b/emacs-wrapper.sh
@@ -1,5 +1,5 @@
 #!/bin/bash
-# Copyright 2008-2016 Gentoo Foundation
+# Copyright 2008-2016 Ulrich Müller
 # Distributed under the terms of the GNU General Public License v2 or later
 
 # Save output in a temporary file and display in case of error

diff --git a/emacs.rc b/emacs.rc
index 9fffe02..e2648f3 100644
--- a/emacs.rc
+++ b/emacs.rc
@@ -1,5 +1,5 @@
 #!/sbin/openrc-run
-# Copyright 2008-2016 Gentoo Foundation
+# Copyright 2008-2016 Ulrich Müller
 # Distributed under the terms of the GNU General Public License v2 or later
 
 : ${EMACS:=/usr/bin/emacs}



[gentoo-commits] proj/releng:master commit in: tools/

2018-09-16 Thread Matt Turner
commit: 53d73577440a313137f8aff6d82359b0971b58b8
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Sep 16 15:47:10 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Sep 16 15:47:10 2018 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=53d73577

catalyst-auto: Build ppc install CD from 32-bit specs

 tools/catalyst-auto-ppc.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/catalyst-auto-ppc.conf b/tools/catalyst-auto-ppc.conf
index 656ee88d..bc4ee17f 100644
--- a/tools/catalyst-auto-ppc.conf
+++ b/tools/catalyst-auto-ppc.conf
@@ -8,7 +8,7 @@ SPECS="ppc32/stage1.spec ppc32/stage3.spec ppc64/stage1.spec 
ppc64/stage3.spec"
 #SPECS="${SPECS} stage2-desktop.spec stage3-desktop.spec"
 #SPECS="${SPECS} livecd-stage1.spec livecd-stage2.spec"
  
-OPTIONAL_SPECS="ppc/installcd-stage1.spec ppc/installcd-stage2-minimal.spec"
+OPTIONAL_SPECS="ppc32/installcd-stage1.spec 
ppc32/installcd-stage2-minimal.spec"
  
 KCONFIG_DIR=${REPO_DIR}/releases/weekly/kconfig/powerpc
  



[gentoo-commits] repo/gentoo:master commit in: dev-python/coverage/

2018-09-16 Thread Mikle Kolyada
commit: 7fca321009478119fb2815468979dfc0717b1e62
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep 16 18:20:45 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep 16 18:23:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fca3210

dev-python/coverage: sh/m68k stable wrt bug #602450

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-python/coverage/coverage-4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/coverage/coverage-4.2.ebuild 
b/dev-python/coverage/coverage-4.2.ebuild
index 4040c392c65..2f304df7e58 100644
--- a/dev-python/coverage/coverage-4.2.ebuild
+++ b/dev-python/coverage/coverage-4.2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 
 RDEPEND=""



[gentoo-commits] repo/gentoo:master commit in: media-libs/sdl2-gfx/

2018-09-16 Thread Andreas Sturmlechner
commit: a77faf96f71640a999276d53a060f758d763d3fe
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Sep 16 14:50:52 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Sep 16 18:55:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a77faf96

media-libs/sdl2-gfx: Drop old

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 media-libs/sdl2-gfx/Manifest  |  2 --
 media-libs/sdl2-gfx/sdl2-gfx-1.0.1.ebuild | 39 --
 media-libs/sdl2-gfx/sdl2-gfx-1.0.3.ebuild | 46 ---
 3 files changed, 87 deletions(-)

diff --git a/media-libs/sdl2-gfx/Manifest b/media-libs/sdl2-gfx/Manifest
index ba64817bef7..76b1fdfac65 100644
--- a/media-libs/sdl2-gfx/Manifest
+++ b/media-libs/sdl2-gfx/Manifest
@@ -1,3 +1 @@
-DIST SDL2_gfx-1.0.1.tar.gz 1078780 BLAKE2B 
4d6430b2cda1b0d7b9556cba0f6084ce80747f75e89fbd6e55cdec194ebf6c73e397571463261a4113cdd8f79baa433d42c0e80dd6083d07331064c3c2203125
 SHA512 
413f0ac8a60b6c4c91f154dd72a512f410e134642fefb80cd3482646c9aab7dd56d2cc9015e78ee59b5bc89adc7397a248fe2132077c004114ad6505ca4194de
-DIST SDL2_gfx-1.0.3.tar.gz 1271457 BLAKE2B 
9f264a89e07a6a6ded6eb93c5d37310259e25624d8eb129368de6335c7d81e3b3976e641f84caba6f1e66a6cc90545f62d07538638f7547568ca35bafdc3b4de
 SHA512 
4efb48501d635492efcfe06b1d4691911ce58ffc34e3b622f2124ac6d8aa6994196ffb52f16ced4325db3ef6d93719516deab2bcf1ce934df9af06c2fecbdce5
 DIST SDL2_gfx-1.0.4.tar.gz 1230588 BLAKE2B 
a14cf8433aa171b8185aab765c934262fd4ecde4e45e9c8bdfb4aa7feb97676cd8fb5274ad0452bcf77fcc8f268254184fedc73f1c791ff42305d518d01a8cc7
 SHA512 
81a100d3c8c3a7c6bd37a23f1290ff10685f8e62fbecd83b0086aae4edc721483e2153cd4219fbd9168f115eea0ea6b25f9be375faf5761f0babdfb1b52fe482

diff --git a/media-libs/sdl2-gfx/sdl2-gfx-1.0.1.ebuild 
b/media-libs/sdl2-gfx/sdl2-gfx-1.0.1.ebuild
deleted file mode 100644
index bab6489cad4..000
--- a/media-libs/sdl2-gfx/sdl2-gfx-1.0.1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit autotools eutils multilib-minimal
-
-MY_P="${P/sdl2-/SDL2_}"
-DESCRIPTION="Graphics drawing primitives library for SDL2"
-HOMEPAGE="http://www.ferzkopp.net/joomla/content/view/19/14/;
-SRC_URI="http://www.ferzkopp.net/Software/SDL2_gfx/${MY_P}.tar.gz;
-
-LICENSE="ZLIB"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc cpu_flags_x86_mmx static-libs"
-
-DEPEND=">=media-libs/libsdl2-2.0.1-r1[video,${MULTILIB_USEDEP}]"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
-   sed -i \
-   -e 's/ -O / /' \
-   configure.in || die
-   mv configure.in configure.ac || die
-   eautoreconf
-}
-
-multilib_src_configure() {
-   ECONF_SOURCE="${S}" econf \
-   $(use_enable cpu_flags_x86_mmx mmx) \
-   $(use_enable static-libs static)
-}
-
-multilib_src_install_all() {
-   use doc && dohtml -r Docs/html/*
-   prune_libtool_files
-}

diff --git a/media-libs/sdl2-gfx/sdl2-gfx-1.0.3.ebuild 
b/media-libs/sdl2-gfx/sdl2-gfx-1.0.3.ebuild
deleted file mode 100644
index 838a85658a5..000
--- a/media-libs/sdl2-gfx/sdl2-gfx-1.0.3.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit autotools multilib-minimal
-
-MY_P="${P/sdl2-/SDL2_}"
-DESCRIPTION="Graphics drawing primitives library for SDL2"
-HOMEPAGE="http://www.ferzkopp.net/joomla/content/view/19/14/;
-SRC_URI="http://www.ferzkopp.net/Software/SDL2_gfx/${MY_P}.tar.gz;
-
-LICENSE="ZLIB"
-SLOT="0"
-KEYWORDS="amd64 ~x86"
-IUSE="doc cpu_flags_x86_mmx static-libs"
-
-DEPEND=">=media-libs/libsdl2-2.0.1-r1[video,${MULTILIB_USEDEP}]"
-RDEPEND="${DEPEND}"
-
-DOCS=( AUTHORS ChangeLog README )
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
-   default
-   sed -i \
-   -e 's/ -O / /' \
-   configure.in || die
-   mv configure.in configure.ac || die
-   eautoreconf
-}
-
-multilib_src_configure() {
-   ECONF_SOURCE="${S}" econf \
-   $(use_enable cpu_flags_x86_mmx mmx) \
-   $(use_enable static-libs static)
-}
-
-multilib_src_install_all() {
-   einstalldocs
-   if use doc ; then
-   docinto html
-   dodoc -r Docs/html/*
-   fi
-   find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
-}



[gentoo-commits] repo/gentoo:master commit in: media-libs/sdl2-mixer/, media-libs/sdl2-mixer/files/

2018-09-16 Thread Andreas Sturmlechner
commit: 0e1b9622598387d633bd0a2bc4e37577b0c586b3
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Sep 16 14:52:32 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Sep 16 18:55:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e1b9622

media-libs/sdl2-mixer: Drop old

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 media-libs/sdl2-mixer/Manifest |   1 -
 .../sdl2-mixer/files/sdl2-mixer-2.0.1-mp3.patch|  39 ---
 media-libs/sdl2-mixer/sdl2-mixer-2.0.1.ebuild  | 119 -
 3 files changed, 159 deletions(-)

diff --git a/media-libs/sdl2-mixer/Manifest b/media-libs/sdl2-mixer/Manifest
index 0d918d8cc4e..a1ec538edf3 100644
--- a/media-libs/sdl2-mixer/Manifest
+++ b/media-libs/sdl2-mixer/Manifest
@@ -1,2 +1 @@
-DIST SDL2_mixer-2.0.1.tar.gz 10213891 BLAKE2B 
3f6889e7cf8e4e159bdf18f1e4e9543ffc9160d325c8011fa3b4e7e1903b2b8aa013ef180847c878fe71a8639a069af440c41ae165aeb67d5259338795347a30
 SHA512 
bdf2b4fc302f9c3b41d40bfdd5132081439e6021e915f191e478235b7b6565e7b4c43e1172d2055066ad505e2bc70876123c58f5a67218b207c829ee66a84b9d
 DIST SDL2_mixer-2.0.2.tar.gz 9620763 BLAKE2B 
9257f7f3dc3453b600075011f1879391c4a4def2c67709a883a8803f752928d3883fbe11371609cd5e690647a33b43bfd38f152aa620f63af12e1b7b72fa0ec4
 SHA512 
c40b5ac93933df1cc932e7afe796ad6765aafb24077601a23f98ac625a83341079ad903c164eafd022aff6011872e7a7956eebd8e3d3edad1bf5dc7eb9c306b7

diff --git a/media-libs/sdl2-mixer/files/sdl2-mixer-2.0.1-mp3.patch 
b/media-libs/sdl2-mixer/files/sdl2-mixer-2.0.1-mp3.patch
deleted file mode 100644
index 6d617e046cb..000
--- a/media-libs/sdl2-mixer/files/sdl2-mixer-2.0.1-mp3.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-
-diff -r f095b3477c8e -r 6afe73e1e74b configure.in
 a/configure.in Sun Jan 03 09:25:52 2016 -0800
-+++ b/configure.in Mon Jan 04 21:40:14 2016 -0800
-@@ -609,7 +609,6 @@
- smpeg_lib=[`find_lib "libsmpeg2*.so.*"`]
- ;;
- esac
--SOURCES="$SOURCES $srcdir/*_mp3.c"
- EXTRA_CFLAGS="$EXTRA_CFLAGS -DMP3_MUSIC $SMPEG_CFLAGS"
- if test x$enable_music_mp3_smpeg_shared = xyes && test x$smpeg_lib != 
x; then
- echo "-- dynamic libsmpeg -> $smpeg_lib"
-@@ -637,11 +636,6 @@
- AC_MSG_RESULT($have_libmad)
- if test x$have_libmad = xyes; then
- SOURCES="$SOURCES $srcdir/music_mad.c"
--if echo "$SOURCES" | grep "load_mp3.c" >/dev/null; then
--:
--else
--SOURCES="$SOURCES $srcdir/load_mp3.c"
--fi
- EXTRA_CFLAGS="$EXTRA_CFLAGS -DMP3_MAD_MUSIC"
- EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lmad"
- else
-@@ -649,7 +643,9 @@
- fi
- fi
- 
--if test x$have_smpeg != xyes -a x$have_libmad != xyes; then
-+if test x$have_smpeg = xyes -o x$have_libmad = xyes; then
-+  SOURCES="$SOURCES $srcdir/*_mp3.c"
-+else
- AC_MSG_WARN([MP3 support disabled])
- fi
- 
-
-
-
-

diff --git a/media-libs/sdl2-mixer/sdl2-mixer-2.0.1.ebuild 
b/media-libs/sdl2-mixer/sdl2-mixer-2.0.1.ebuild
deleted file mode 100644
index 8fbeeb1f303..000
--- a/media-libs/sdl2-mixer/sdl2-mixer-2.0.1.ebuild
+++ /dev/null
@@ -1,119 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit autotools eutils multilib-minimal
-
-MY_P=SDL2_mixer-${PV}
-DESCRIPTION="Simple Direct Media Layer Mixer Library"
-HOMEPAGE="http://www.libsdl.org/projects/SDL_mixer/;
-SRC_URI="http://www.libsdl.org/projects/SDL_mixer/release/${MY_P}.tar.gz;
-
-LICENSE="ZLIB"
-SLOT="0"
-KEYWORDS="amd64 ~hppa x86"
-IUSE="flac fluidsynth mad midi mikmod mod modplug mp3 playtools smpeg 
static-libs timidity tremor vorbis +wav"
-REQUIRED_USE="
-   midi? ( || ( timidity fluidsynth ) )
-   timidity? ( midi )
-   fluidsynth? ( midi )
-   mp3? ( || ( smpeg mad ) )
-   smpeg? ( mp3 )
-   mad? ( mp3 )
-   mod? ( || ( mikmod modplug ) )
-   mikmod? ( mod )
-   modplug? ( mod )
-   tremor? ( vorbis )
-   "
-
-RDEPEND=">=media-libs/libsdl2-2.0.1-r1[${MULTILIB_USEDEP}]
-   flac? ( >=media-libs/flac-1.2.1-r5[${MULTILIB_USEDEP}] )
-   midi? (
-   fluidsynth? ( 
>=media-sound/fluidsynth-1.1.6-r1[${MULTILIB_USEDEP}] )
-   timidity? ( media-sound/timidity++ )
-   )
-   mp3? (
-   mad? ( >=media-libs/libmad-0.15.1b-r8[${MULTILIB_USEDEP}] )
-   smpeg? ( >=media-libs/smpeg2-2.0.0-r1[${MULTILIB_USEDEP}] )
-   )
-   mod? (
-   modplug? ( 
>=media-libs/libmodplug-0.8.8.4-r1[${MULTILIB_USEDEP}] )
-   mikmod? ( >=media-libs/libmikmod-3.3.6-r1[${MULTILIB_USEDEP}] )
-   )
-   vorbis? (
-   tremor? ( >=media-libs/tremor-0_pre20130223[${MULTILIB_USEDEP}] 
)
-   !tremor? (
-   >=media-libs/libvorbis-1.3.3-r1[${MULTILIB_USEDEP}]
-   

[gentoo-commits] repo/gentoo:master commit in: media-libs/sdl2-image/

2018-09-16 Thread Andreas Sturmlechner
commit: e5f5a0157f15433d0d3fa13c5d0dce99b490ecb2
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Sep 16 14:51:33 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Sep 16 18:55:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5f5a015

media-libs/sdl2-image: Drop old

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 media-libs/sdl2-image/Manifest|  2 -
 media-libs/sdl2-image/sdl2-image-2.0.1.ebuild | 59 --
 media-libs/sdl2-image/sdl2-image-2.0.2.ebuild | 61 ---
 3 files changed, 122 deletions(-)

diff --git a/media-libs/sdl2-image/Manifest b/media-libs/sdl2-image/Manifest
index 1fd661d50f0..a9d0151408d 100644
--- a/media-libs/sdl2-image/Manifest
+++ b/media-libs/sdl2-image/Manifest
@@ -1,3 +1 @@
-DIST SDL2_image-2.0.1.tar.gz 7797848 BLAKE2B 
2be5fd9714c56040987a66107b49cac60659811fd95bc5b8f9e47196905870793bd258a75b8dad3a83bab50294a8ff5eac0f2132118d9f154019d884ce9cb184
 SHA512 
99ed5f7b69966cea5fcf9173e7270167c24b55ab459774f10dbf90f26dcb9d5f118971ffd4e583a83148976f44ca166474669398a561169d24ffba80f852306f
-DIST SDL2_image-2.0.2.tar.gz 8680980 BLAKE2B 
e8930872b572f296744a7a90cb61ee6d8b708b99cde19c2c354f5a3f8a16c3ec7669e21f54632fc4cd69d926e7e18066c89e309906128e6ed96c56a2bda0
 SHA512 
468f1a5aaee0b6920adb80df2141bfc5c642b4a00ac60244a90c5e9f27b092b73bcdd2c5520aa1de2759e8b174686b186a51f2d07e7e188ce2cd10519724
 DIST SDL2_image-2.0.3.tar.gz 8685512 BLAKE2B 
c54114f6573632561443bc57af8fe3ddbccc0bfcf027939685add7b06cb6999a5bc41119c474481047a7216ce6110a58a08571fefa6b5c80322f15f0c528ad6f
 SHA512 
869cf3485cc850a91dc1d7f0023f0497bc7bbfd63e721365358b19d19d4da850e52667731d0e5ec80f4a11d7687aa6cfbdd5ceaec956af0e7f5567e87535977a

diff --git a/media-libs/sdl2-image/sdl2-image-2.0.1.ebuild 
b/media-libs/sdl2-image/sdl2-image-2.0.1.ebuild
deleted file mode 100644
index 2a8330c5f9d..000
--- a/media-libs/sdl2-image/sdl2-image-2.0.1.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils multilib multilib-minimal
-
-MY_P=SDL2_image-${PV}
-DESCRIPTION="Image file loading library"
-HOMEPAGE="http://www.libsdl.org/projects/SDL_image/;
-SRC_URI="http://www.libsdl.org/projects/SDL_image/release/${MY_P}.tar.gz;
-
-LICENSE="ZLIB"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="gif jpeg png static-libs tiff webp"
-
-RDEPEND="
-   >=media-libs/libsdl2-2.0.1-r1[${MULTILIB_USEDEP}]
-   >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]
-   png? ( >=media-libs/libpng-1.6.10:0[${MULTILIB_USEDEP}] )
-   jpeg? ( >=virtual/jpeg-0-r2:0[${MULTILIB_USEDEP}] )
-   tiff? ( >=media-libs/tiff-3.9.7-r1:0[${MULTILIB_USEDEP}] )
-   webp? ( >=media-libs/libwebp-0.3.0[${MULTILIB_USEDEP}] )"
-DEPEND=${RDEPEND}
-
-S=${WORKDIR}/${MY_P}
-
-multilib_src_configure() {
-   ECONF_SOURCE="${S}" econf \
-   $(use_enable static-libs static) \
-   --disable-sdltest \
-   --enable-bmp \
-   $(use_enable gif) \
-   $(use_enable jpeg jpg) \
-   --disable-jpg-shared \
-   --enable-lbm \
-   --enable-pcx \
-   $(use_enable png) \
-   --disable-png-shared \
-   --enable-pnm \
-   --enable-tga \
-   $(use_enable tiff tif) \
-   --disable-tif-shared \
-   --enable-xcf \
-   --enable-xpm \
-   --enable-xv \
-   $(use_enable webp) \
-   --disable-webp-shared
-}
-
-multilib_src_install() {
-   emake DESTDIR="${D}" install
-   multilib_is_native_abi && newbin .libs/showimage$(get_exeext) 
showimage2$(get_exeext)
-}
-
-multilib_src_install_all() {
-   dodoc {CHANGES,README}.txt
-   prune_libtool_files
-}

diff --git a/media-libs/sdl2-image/sdl2-image-2.0.2.ebuild 
b/media-libs/sdl2-image/sdl2-image-2.0.2.ebuild
deleted file mode 100644
index c3b1db99077..000
--- a/media-libs/sdl2-image/sdl2-image-2.0.2.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit ltprune multilib multilib-minimal
-
-MY_P="SDL2_image-${PV}"
-DESCRIPTION="Image file loading library"
-HOMEPAGE="http://www.libsdl.org/projects/SDL_image/;
-SRC_URI="http://www.libsdl.org/projects/SDL_image/release/${MY_P}.tar.gz;
-
-LICENSE="ZLIB"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="gif jpeg png static-libs tiff webp"
-
-RDEPEND="
-   >=media-libs/libsdl2-2.0.1-r1[${MULTILIB_USEDEP}]
-   >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]
-   png? ( >=media-libs/libpng-1.6.10:0[${MULTILIB_USEDEP}] )
-   jpeg? ( >=virtual/jpeg-0-r2:0[${MULTILIB_USEDEP}] )
-   tiff? ( >=media-libs/tiff-3.9.7-r1:0[${MULTILIB_USEDEP}] )
-   webp? ( 

[gentoo-commits] repo/gentoo:master commit in: app-portage/gemato/

2018-09-16 Thread Mikle Kolyada
commit: a3c25d17de1bf86e122c1f0cc0e0ec20286218db
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep 16 12:58:20 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep 16 12:58:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3c25d17

app-portage/gemato: Add ~sh and ~m68k keuywords

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-portage/gemato/gemato-14.0m.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/gemato/gemato-14.0m.ebuild 
b/app-portage/gemato/gemato-14.0m.ebuild
index 6fcdac1cf18..25aceedd13f 100644
--- a/app-portage/gemato/gemato-14.0m.ebuild
+++ b/app-portage/gemato/gemato-14.0m.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="https://github.com/mgorny/gemato/archive/v${MY_PV}.tar.gz -> ${MY_P}.ta
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~x64-cygwin ~amd64-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x64-cygwin ~amd64-fbsd"
 IUSE="+blake2 bzip2 +gpg lzma sha3 test tools"
 
 MODULE_RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-libs/sdl2-image/

2018-09-16 Thread Mikle Kolyada
commit: edfa82f677d31169788e2d5d2e5e7f8f24f95faf
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep 16 13:13:56 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep 16 13:13:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edfa82f6

media-libs/sdl2-image: amd64 stable wrt bug #665062

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 media-libs/sdl2-image/sdl2-image-2.0.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/sdl2-image/sdl2-image-2.0.3.ebuild 
b/media-libs/sdl2-image/sdl2-image-2.0.3.ebuild
index 6a2f4bd02d2..f3a5ccfcb4b 100644
--- a/media-libs/sdl2-image/sdl2-image-2.0.3.ebuild
+++ b/media-libs/sdl2-image/sdl2-image-2.0.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://www.libsdl.org/projects/SDL_image/release/${MY_P}.tar.gz;
 
 LICENSE="ZLIB"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="gif jpeg png static-libs tiff webp"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-libs/libsdl2/

2018-09-16 Thread Mikle Kolyada
commit: 11977f8cc4d7ece66efa7cef0ac1696bea45e7a2
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep 16 13:15:23 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep 16 13:15:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11977f8c

media-libs/libsdl2: amd64 stable wrt bug #665062

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 media-libs/libsdl2/libsdl2-2.0.8-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/libsdl2/libsdl2-2.0.8-r2.ebuild 
b/media-libs/libsdl2/libsdl2-2.0.8-r2.ebuild
index 34dbe39b288..59e84df973a 100644
--- a/media-libs/libsdl2/libsdl2-2.0.8-r2.ebuild
+++ b/media-libs/libsdl2/libsdl2-2.0.8-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://www.libsdl.org/release/${MY_P}.tar.gz;
 
 LICENSE="ZLIB"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ia64 ppc ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ppc ppc64 ~sparc x86"
 
 IUSE="cpu_flags_x86_3dnow alsa altivec aqua custom-cflags dbus gles haptic 
libsamplerate +joystick kms cpu_flags_x86_mmx nas opengl oss pulseaudio +sound 
cpu_flags_x86_sse cpu_flags_x86_sse2 static-libs +threads tslib udev +video 
video_cards_vc4 wayland X xinerama xscreensaver"
 REQUIRED_USE="



[gentoo-commits] repo/gentoo:master commit in: net-im/skypeforlinux/

2018-09-16 Thread Mikle Kolyada
commit: 1194991d34bf1ec0adbbb46ae10a1a778b68075b
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep 16 13:55:06 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep 16 13:55:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1194991d

net-im/skypeforlinux: Version bump (v8.30.0.50)

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 net-im/skypeforlinux/Manifest  |   1 +
 .../skypeforlinux/skypeforlinux-8.30.0.50.ebuild   | 116 +
 2 files changed, 117 insertions(+)

diff --git a/net-im/skypeforlinux/Manifest b/net-im/skypeforlinux/Manifest
index 8c8d5806561..c53005d30b5 100644
--- a/net-im/skypeforlinux/Manifest
+++ b/net-im/skypeforlinux/Manifest
@@ -1,3 +1,4 @@
 DIST skypeforlinux_8.28.0.41-1.x86_64.rpm 95603274 BLAKE2B 
97698ab5dd7187471323e62ed43b6df8d1271eb4a7c2312bf4e271e31e193427888253610ca1132df61010e4260bafc73b8602945ba15fad1b89750aaab547e5
 SHA512 
11ebed4e273ab755da605be023642ed37eb6e66d48923fbfec2bf4fda40f64a0d89764016bfb4a3818bdcac9582d5510076ad83e1e50dfaeec35a2f9aa405eda
 DIST skypeforlinux_8.29.0.41-1.x86_64.rpm 95818619 BLAKE2B 
c1a291290bd4b92c51aad86ad814f17e4f4ea22d61e03402089f7089a38a78d35d1388f168e6f07e3ea154bc13de59963d03318500143347ee3974e25ad37fd9
 SHA512 
3d3a97193adb718d3e4eb7b15d0d9030a711849eab55cd1b2550beeb0c90d14d803603fb8b0f6612d8737da4c7a6a98ba54c472d537c46cb4cf93539191c8eb7
 DIST skypeforlinux_8.29.0.50-1.x86_64.rpm 95818686 BLAKE2B 
6f3e65b558b0a79aa7a0fb3741299f396fe3420a82fce461756faa5bd9063fd38945b5935057fb5f6a0ff3b54a2a07adca026114caca4003d2ae1eca8b16d0df
 SHA512 
f4cdf5376bb21a65f8fb7516be45ac6dfd0b98439c1eabbe491928d356cce0f7b3488ee2056e65c9be1fd9c53d3bb7c6c3f980562b10341d63cee9d3377b3e2b
+DIST skypeforlinux_8.30.0.50-1.x86_64.rpm 96093210 BLAKE2B 
f7807c3334c93864378245d004c3186dabf3fb224958e8cabfba5e6f3e26b07f32550752d7e50d13ea5af719d33d4c0ba2a1e6d52b6fdbfb307200438a9f0236
 SHA512 
c8eb4010d7c5162de21edceb6f4b2b5a6390305fdb3f2d1b28658ab869cbc749b8978906cfa7c5e72d37321500d7ebf5394a8f4283307aa464d459465d848f09

diff --git a/net-im/skypeforlinux/skypeforlinux-8.30.0.50.ebuild 
b/net-im/skypeforlinux/skypeforlinux-8.30.0.50.ebuild
new file mode 100644
index 000..fe787944cfb
--- /dev/null
+++ b/net-im/skypeforlinux/skypeforlinux-8.30.0.50.ebuild
@@ -0,0 +1,116 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MULTILIB_COMPAT=( abi_x86_64 )
+
+inherit desktop gnome2-utils pax-utils rpm multilib-build xdg-utils
+
+DESCRIPTION="Instant messaging client, with support for audio and video"
+HOMEPAGE="https://www.skype.com/;
+SRC_URI="https://repo.skype.com/rpm/stable/${PN}_${PV}-1.x86_64.rpm;
+
+LICENSE="Skype-TOS MIT MIT-with-advertising BSD-1 BSD-2 BSD Apache-2.0 
Boost-1.0 ISC CC-BY-SA-3.0 CC0-1.0 openssl ZLIB APSL-2 icu Artistic-2 LGPL-2.1"
+SLOT="0"
+KEYWORDS="-* ~amd64"
+IUSE="pax_kernel"
+
+S="${WORKDIR}"
+QA_PREBUILT="*"
+RESTRICT="mirror bindist strip" #299368
+
+RDEPEND="
+   app-crypt/libsecret[${MULTILIB_USEDEP}]
+   dev-libs/atk[${MULTILIB_USEDEP}]
+   dev-libs/expat[${MULTILIB_USEDEP}]
+   dev-libs/glib:2[${MULTILIB_USEDEP}]
+   dev-libs/nspr[${MULTILIB_USEDEP}]
+   dev-libs/nss[${MULTILIB_USEDEP}]
+   gnome-base/gconf:2[${MULTILIB_USEDEP}]
+   media-libs/alsa-lib[${MULTILIB_USEDEP}]
+   media-libs/fontconfig:1.0[${MULTILIB_USEDEP}]
+   media-libs/freetype:2[${MULTILIB_USEDEP}]
+   media-libs/libv4l[${MULTILIB_USEDEP}]
+   net-print/cups[${MULTILIB_USEDEP}]
+   sys-apps/dbus[${MULTILIB_USEDEP}]
+   sys-devel/gcc[cxx]
+   virtual/ttf-fonts
+   x11-libs/cairo[${MULTILIB_USEDEP}]
+   x11-libs/gdk-pixbuf:2[${MULTILIB_USEDEP}]
+   x11-libs/gtk+:2[${MULTILIB_USEDEP}]
+   x11-libs/libX11[${MULTILIB_USEDEP}]
+   x11-libs/libXScrnSaver[${MULTILIB_USEDEP}]
+   x11-libs/libXcomposite[${MULTILIB_USEDEP}]
+   x11-libs/libXcursor[${MULTILIB_USEDEP}]
+   x11-libs/libXdamage[${MULTILIB_USEDEP}]
+   x11-libs/libXext[${MULTILIB_USEDEP}]
+   x11-libs/libXfixes[${MULTILIB_USEDEP}]
+   x11-libs/libXi[${MULTILIB_USEDEP}]
+   x11-libs/libXrandr[${MULTILIB_USEDEP}]
+   x11-libs/libXrender[${MULTILIB_USEDEP}]
+   x11-libs/libXtst[${MULTILIB_USEDEP}]
+   x11-libs/libxcb[${MULTILIB_USEDEP}]
+   x11-libs/libxkbfile[${MULTILIB_USEDEP}]
+   x11-libs/pango[${MULTILIB_USEDEP}]"
+
+src_unpack() {
+   rpm_src_unpack ${A}
+}
+
+src_prepare() {
+   default
+   sed -e 
"s!^SKYPE_PATH=.*!SKYPE_PATH=${EPREFIX}/opt/skypeforlinux/skypeforlinux!" \
+   -i usr/bin/skypeforlinux || die
+   sed -e "s!^Exec=/usr/!Exec=${EPREFIX}/opt/!" \
+   -e 
"s!^Categories=.*!Categories=Network;InstantMessaging;Telephony;!" \
+   -e "/^OnlyShowIn=/d" \
+   -i usr/share/applications/skypeforlinux.desktop || die
+}
+
+src_install() {
+   dodir /opt
+   

[gentoo-commits] repo/gentoo:master commit in: app-admin/consul/

2018-09-16 Thread Manuel Rüger
commit: 9b8fe4a50980af599ef244647fb52c55ad82090b
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Sep 16 14:35:38 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Sep 16 14:35:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b8fe4a5

app-admin/consul: Version bump to 1.2.3

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 app-admin/consul/Manifest|  1 +
 app-admin/consul/consul-1.2.3.ebuild | 69 
 2 files changed, 70 insertions(+)

diff --git a/app-admin/consul/Manifest b/app-admin/consul/Manifest
index fc2b1948023..6ac4943e737 100644
--- a/app-admin/consul/Manifest
+++ b/app-admin/consul/Manifest
@@ -1 +1,2 @@
 DIST consul-1.2.2.tar.gz 15789375 BLAKE2B 
8a0af370568f6fcb90334b147bd84e479efb682ed6c58d63dd56f3554f9e6538d37963ac825bb8598eef8948492feec688b8266733223d1557dbce9704daef35
 SHA512 
715f69e7b36d0070ea4e602dc50f51aa2547db07cce985da79d1e201c6e84dade8a7c810e3602f88cfbd30e063669076954d2541810a18a0c9e7c9ff8458
+DIST consul-1.2.3.tar.gz 18428593 BLAKE2B 
14582bf9668e4f2a1c8c443cb01d7b9780c9bc414ff226907335f3873c135b77566898649d16b352ef21ee9300c290338f59672c5fb2b187694aea97b8735dec
 SHA512 
71a7dbfc031df4a96faf2ddd829f289e96adefd0e0087208bbdd26e742a24e3da05fceea4181eb915703ad3323ed5b02bf74eb3fdfbed1e9a1afa2f74acb2a34

diff --git a/app-admin/consul/consul-1.2.3.ebuild 
b/app-admin/consul/consul-1.2.3.ebuild
new file mode 100644
index 000..5c900d4ab45
--- /dev/null
+++ b/app-admin/consul/consul-1.2.3.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit golang-vcs-snapshot systemd user
+GIT_COMMIT="48d287e"
+KEYWORDS="~amd64"
+EGO_PN="github.com/hashicorp/consul"
+DESCRIPTION="A tool for service discovery, monitoring and configuration"
+HOMEPAGE="https://www.consul.io;
+SRC_URI="https://github.com/hashicorp/consul/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+SLOT="0"
+LICENSE="MPL-2.0"
+IUSE=""
+
+RESTRICT="test"
+
+DEPEND="dev-go/gox
+   >=dev-lang/go-1.9:=
+   >=dev-go/go-tools-0_pre20160121"
+RDEPEND=""
+
+pkg_setup() {
+   enewgroup consul
+   enewuser consul -1 -1 /var/lib/${PN} consul
+}
+
+src_prepare() {
+   default
+
+   sed -e 's:go get -u -v $(GOTOOLS)::' \
+   -e 's:vendorfmt dev-build:dev-build:' \
+   -i "src/${EGO_PN}/GNUmakefile" || die
+}
+
+src_compile() {
+   # The dev target sets causes build.sh to set appropriate XC_OS
+   # and XC_ARCH, and skips generation of an unused zip file,
+   # avoiding a dependency on app-arch/zip.
+   GOPATH="${S}" \
+   GOBIN="${S}/bin" \
+   GIT_DESCRIBE="v${PV}" \
+   GIT_DIRTY="" \
+   GIT_COMMIT="${GIT_COMMIT}" \
+   emake -C "src/${EGO_PN}" dev-build
+}
+
+src_install() {
+   local x
+
+   dobin bin/consul
+
+   keepdir /etc/consul.d
+   insinto /etc/consul.d
+   doins "${FILESDIR}/"*.json.example
+
+   for x in /var/{lib,log}/${PN}; do
+   keepdir "${x}"
+   fowners consul:consul "${x}"
+   done
+
+   newinitd "${FILESDIR}/consul.initd" "${PN}"
+   newconfd "${FILESDIR}/consul.confd" "${PN}"
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}/${PN}.logrotated" "${PN}"
+   systemd_dounit "${FILESDIR}/consul.service"
+}



[gentoo-commits] proj/releng:master commit in: tools/

2018-09-16 Thread Matt Turner
commit: 5c7cf135fe7d2d2a4efa8a2f677bae0b9bf36544
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Sep 16 15:11:20 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Sep 16 15:11:20 2018 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=5c7cf135

catalyst-auto: Build ppc64 stages from stage{1,3}.spec

Spec files were renamed in commit cf41003f5ca3 ("specs/ppc: Remove
"64ul" from stage names")

 tools/catalyst-auto-ppc64.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/catalyst-auto-ppc64.conf b/tools/catalyst-auto-ppc64.conf
index ce5aa5c8..7c1ed9d3 100644
--- a/tools/catalyst-auto-ppc64.conf
+++ b/tools/catalyst-auto-ppc64.conf
@@ -3,7 +3,7 @@
  
 SPECS_DIR=${REPO_DIR}/releases/weekly/specs/ppc/ppc64
 
-SPECS="stage1-64ul.spec stage3-64ul.spec"
+SPECS="stage1.spec stage3.spec"
 
 #SPECS="${SPECS} installcd-stage1.spec installcd-stage2-minimal.spec"
 #SPECS="${SPECS} stage2-desktop.spec stage3-desktop.spec"



[gentoo-commits] repo/gentoo:master commit in: x11-libs/libxkbcommon/

2018-09-16 Thread Matt Turner
commit: ff923b300b5395864dd849877321120cc2f3d5b5
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Sep 16 15:42:25 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Sep 16 15:42:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff923b30

x11-libs/libxkbcommon: Drop old versions

 x11-libs/libxkbcommon/Manifest  |  1 -
 x11-libs/libxkbcommon/libxkbcommon-0.8.0.ebuild | 38 -
 2 files changed, 39 deletions(-)

diff --git a/x11-libs/libxkbcommon/Manifest b/x11-libs/libxkbcommon/Manifest
index e3f923ef759..e883fd6b066 100644
--- a/x11-libs/libxkbcommon/Manifest
+++ b/x11-libs/libxkbcommon/Manifest
@@ -1,2 +1 @@
-DIST libxkbcommon-0.8.0.tar.xz 643456 BLAKE2B 
37f8e8ccff63354dc37ec26091a7da28f5a1f05ca0656b03716cdcdbf3172344d600b3b2b646da309ea3e4f04bde1b1279c96b07c493266ec6489935177efbbc
 SHA512 
ad64baa03685b72e1047f9fdfc95661acf5bace59280a95d3defaca73c91fb77c31ecde00b430726e3521ff90cf8dd93ecbc816c18be0971cb616e00b81cf163
 DIST libxkbcommon-0.8.2.tar.xz 644040 BLAKE2B 
c323384308d9730924d6f1cb7ad55fdb3d1a37289f648b981c54dc5997c67c857d33f8ad872fc7646b462ebc97252dca30efe2a2e12d1f1f08a8a1604a5de23f
 SHA512 
b714240ec6120bbe44b5da7a4f89b1c2f24cfd6e5ebbe81e5290d135c8f2e5a68f89ac256b73430a446167345f8db309b35dcf74f3d3840e20897cd91eccc172

diff --git a/x11-libs/libxkbcommon/libxkbcommon-0.8.0.ebuild 
b/x11-libs/libxkbcommon/libxkbcommon-0.8.0.ebuild
deleted file mode 100644
index d8045057b5c..000
--- a/x11-libs/libxkbcommon/libxkbcommon-0.8.0.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-XORG_MULTILIB="yes"
-
-if [[ ${PV} = ** ]]; then
-   GIT_ECLASS="git-r3"
-   EXPERIMENTAL="true"
-   EGIT_REPO_URI="https://github.com/xkbcommon/${PN};
-else
-   XORG_BASE_INDIVIDUAL_URI=""
-   SRC_URI="https://xkbcommon.org/download/${P}.tar.xz;
-fi
-
-inherit xorg-2 ${GIT_ECLASS}
-
-DESCRIPTION="X.Org xkbcommon library"
-HOMEPAGE="https://xkbcommon.org/;
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 
~amd64-fbsd"
-IUSE="X doc test"
-
-DEPEND="sys-devel/bison
-   X? (
-   x11-base/xorg-proto
-   >=x11-libs/libxcb-1.10[${MULTILIB_USEDEP},xkb]
-   )
-   doc? ( app-doc/doxygen )"
-RDEPEND="X? ( >=x11-libs/libxcb-1.10[${MULTILIB_USEDEP},xkb] )"
-
-pkg_setup() {
-   XORG_CONFIGURE_OPTIONS=(
-   --with-xkb-config-root="${EPREFIX}/usr/share/X11/xkb"
-   $(use X || use_enable X x11)
-   $(use_with doc doxygen)
-   )
-   xorg-2_pkg_setup
-}



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/genkernel/

2018-09-16 Thread Mikle Kolyada
commit: ab3c983815790446a4f687a16897b5ab6b1f3f91
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep 16 18:13:21 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep 16 18:13:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab3c9838

sys-kernel/genkernel: sh stable wrt bug #641774

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 sys-kernel/genkernel/genkernel-3.5.3.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/genkernel/genkernel-3.5.3.3.ebuild 
b/sys-kernel/genkernel/genkernel-3.5.3.3.ebuild
index b0e2fa6abbd..317160e1078 100644
--- a/sys-kernel/genkernel/genkernel-3.5.3.3.ebuild
+++ b/sys-kernel/genkernel/genkernel-3.5.3.3.ebuild
@@ -43,7 +43,7 @@ then
 else
SRC_URI="mirror://gentoo/${P}.tar.xz
${COMMON_URI}"
-   KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86"
+   KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 s390 sh sparc x86"
 fi
 
 DESCRIPTION="Gentoo automatic kernel building scripts"



[gentoo-commits] repo/gentoo:master commit in: profiles/

2018-09-16 Thread Andreas Hüttel
commit: a6db068c27968132a18c4e058b67066593a8af40
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sun Sep 16 16:28:31 2018 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sun Sep 16 16:28:31 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6db068c

package.mask: Mask binutils-2.29 (many sec bugs)

 profiles/package.mask | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 1a39b15e9ee..c62f9debae3 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -541,7 +541,7 @@ dev-ruby/poltergeist
 >=sys-firmware/b43-firmware-6.30.163.46
 
 # Michał Górny , Andreas K. Hüttel ,
-# Matthias Maier  (21 May 2017)
+# Matthias Maier  (21 May 2017 and later updates)
 # These old versions of toolchain packages (binutils, gcc, glibc) are no
 # longer officially supported and are not suitable for general use. Using
 # these packages can result in build failures (and possible breakage) for
@@ -550,10 +550,10 @@ dev-ruby/poltergeist
 # If you still use one of these old toolchain packages, please upgrade (and
 # switch the compiler / the binutils) ASAP. If you need them for a specific
 # (isolated) use case, feel free to unmask them on your system.
-# (updated 27 Dec 2017 with gcc < 5.4)
  (20 May 2017)
 # Old versions of CUDA and their reverse dependencies. They do not



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libclc/

2018-09-16 Thread Michał Górny
commit: b80b356b3fa0024819d2273ca984986585559f4f
Author: Jan Vesely  gmail  com>
AuthorDate: Sun Sep 16 15:04:13 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Sep 16 17:04:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b80b356b

dev-libs/libclc: Drop old.

Signed-off-by: Jan Vesely  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/9879

 dev-libs/libclc/Manifest|  1 -
 dev-libs/libclc/libclc-0.2.0_pre20180319.ebuild | 73 -
 2 files changed, 74 deletions(-)

diff --git a/dev-libs/libclc/Manifest b/dev-libs/libclc/Manifest
index 9d29747..8f2b980b31e 100644
--- a/dev-libs/libclc/Manifest
+++ b/dev-libs/libclc/Manifest
@@ -1,3 +1,2 @@
-DIST libclc-0.2.0_pre20180319.tar.gz 161608 BLAKE2B 
b8e4f2d475c0425cbe5b41a5ba3b7b40d14c045f5c23d007e87cdfedc7a01a8317218e5f3b881e944256f04b9fb68a130bff2a137e51cb961b3d5bb7f2e2261d
 SHA512 
5a4130eeb416f90901b66708adc17c825baa757d00d983a12e217f36503e4ed5d208f3a49cc26d7f9b71134ee3d258748153bf52cf7769bcbc06ec0510087a36
 DIST libclc-0.2.0_pre20180610.tar.gz 170102 BLAKE2B 
3f8c33a9961db34e68cebc328a88a71173000972b5540d099fa79fe89fd186b7f2f8791a86b45b1be135383d26a92fd4ccdc2827b5620b5f86f0b48467fc092f
 SHA512 
0c75c3e7b81754c175c5c43614ad313cda2fa09a1865794c904675b8d2527f78ffa357178f7d4a471b52ac3d7d96b0184303439b69060df4bf482a01871fcb95
 DIST libclc-0.2.0_pre20180915.tar.gz 170385 BLAKE2B 
43a90347936be5ad383fe4e4b06523aac455596d6cb1fc58038811ea19b4f6ab2091ffc345e68ff2ad7f7f1615713085000711b31b9d1ad3911a85bc0db93d5b
 SHA512 
5b8e68f7683d72390d8f9c263e15a54b4b4613b73eff2bf3881d7a35d6480468693a62dcaed159fd8421ae80768d6aaebcd6c33163b082c0a2cf15581d37dcab

diff --git a/dev-libs/libclc/libclc-0.2.0_pre20180319.ebuild 
b/dev-libs/libclc/libclc-0.2.0_pre20180319.ebuild
deleted file mode 100644
index b754b5694bd..000
--- a/dev-libs/libclc/libclc-0.2.0_pre20180319.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_4 python3_5 python3_6 )
-
-EGIT_REPO_URI="http://llvm.org/git/${PN}.git
-   https://github.com/llvm-mirror/${PN}.git;
-EGIT_COMMIT="96d10f2e9ec4c87d6b8d91e01d4d061915413f3e"
-
-if [[ ${PV} = * ]]; then
-   GIT_ECLASS="git-r3"
-   EXPERIMENTAL="true"
-else
-   GIT_ECLASS="vcs-snapshot"
-fi
-
-inherit llvm prefix python-any-r1 toolchain-funcs ${GIT_ECLASS}
-
-DESCRIPTION="OpenCL C library"
-HOMEPAGE="http://libclc.llvm.org/;
-
-if [[ ${PV} = * ]]; 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 ~arm64 ~x86"
-IUSE=""
-
-RDEPEND="
-   || (
-   sys-devel/clang:7
-   sys-devel/clang:6
-   sys-devel/clang:5
-   sys-devel/clang:4
-   >=sys-devel/clang-3.9:0
-   )"
-DEPEND="${RDEPEND}
-   ${PYTHON_DEPS}"
-
-LLVM_MAX_SLOT=7
-
-llvm_check_deps() {
-   has_version "sys-devel/clang:${LLVM_SLOT}"
-}
-
-src_prepare() {
-   default
-   if use prefix; then
-   hprefixify configure.py
-   fi
-}
-
-pkg_setup() {
-   # we do not need llvm_pkg_setup
-   python-any-r1_pkg_setup
-}
-
-src_configure() {
-   ./configure.py \
-   --with-cxx-compiler="$(tc-getCXX)" \
-   --with-llvm-config="$(get_llvm_prefix 
"${LLVM_MAX_SLOT}")/bin/llvm-config" \
-   --prefix="${EPREFIX}/usr" || die
-}
-
-src_compile() {
-   emake VERBOSE=1
-}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libclc/

2018-09-16 Thread Michał Górny
commit: f337fc8751de6b1b3869a94f8e0a916f6da78c14
Author: Jan Vesely  gmail  com>
AuthorDate: Sun Sep 16 15:01:32 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Sep 16 17:04:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f337fc87

dev-libs/libclc: Bump snapshot to 20180915.

Signed-off-by: Jan Vesely  gmail.com>

 dev-libs/libclc/Manifest|  1 +
 dev-libs/libclc/libclc-0.2.0_pre20180915.ebuild | 83 +
 2 files changed, 84 insertions(+)

diff --git a/dev-libs/libclc/Manifest b/dev-libs/libclc/Manifest
index f6fb7c25163..9d29747 100644
--- a/dev-libs/libclc/Manifest
+++ b/dev-libs/libclc/Manifest
@@ -1,2 +1,3 @@
 DIST libclc-0.2.0_pre20180319.tar.gz 161608 BLAKE2B 
b8e4f2d475c0425cbe5b41a5ba3b7b40d14c045f5c23d007e87cdfedc7a01a8317218e5f3b881e944256f04b9fb68a130bff2a137e51cb961b3d5bb7f2e2261d
 SHA512 
5a4130eeb416f90901b66708adc17c825baa757d00d983a12e217f36503e4ed5d208f3a49cc26d7f9b71134ee3d258748153bf52cf7769bcbc06ec0510087a36
 DIST libclc-0.2.0_pre20180610.tar.gz 170102 BLAKE2B 
3f8c33a9961db34e68cebc328a88a71173000972b5540d099fa79fe89fd186b7f2f8791a86b45b1be135383d26a92fd4ccdc2827b5620b5f86f0b48467fc092f
 SHA512 
0c75c3e7b81754c175c5c43614ad313cda2fa09a1865794c904675b8d2527f78ffa357178f7d4a471b52ac3d7d96b0184303439b69060df4bf482a01871fcb95
+DIST libclc-0.2.0_pre20180915.tar.gz 170385 BLAKE2B 
43a90347936be5ad383fe4e4b06523aac455596d6cb1fc58038811ea19b4f6ab2091ffc345e68ff2ad7f7f1615713085000711b31b9d1ad3911a85bc0db93d5b
 SHA512 
5b8e68f7683d72390d8f9c263e15a54b4b4613b73eff2bf3881d7a35d6480468693a62dcaed159fd8421ae80768d6aaebcd6c33163b082c0a2cf15581d37dcab

diff --git a/dev-libs/libclc/libclc-0.2.0_pre20180915.ebuild 
b/dev-libs/libclc/libclc-0.2.0_pre20180915.ebuild
new file mode 100644
index 000..014415e2850
--- /dev/null
+++ b/dev-libs/libclc/libclc-0.2.0_pre20180915.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 python3_4 python3_5 python3_6 )
+
+EGIT_REPO_URI="https://llvm.org/git/${PN}.git
+   https://github.com/llvm-mirror/${PN}.git;
+EGIT_COMMIT="dabae5a2afb78cba0320a86e3f5f0b5dc83e077c"
+
+if [[ ${PV} = * ]]; then
+   GIT_ECLASS="git-r3"
+   EXPERIMENTAL="true"
+else
+   GIT_ECLASS=""
+   S="${WORKDIR}/libclc-${EGIT_COMMIT}"
+fi
+
+inherit llvm prefix python-any-r1 toolchain-funcs ${GIT_ECLASS}
+
+DESCRIPTION="OpenCL C library"
+HOMEPAGE="http://libclc.llvm.org/;
+
+if [[ ${PV} = * ]]; 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 ~x86"
+IUSE_VIDEO_CARDS="video_cards_nvidia video_cards_r600 video_cards_radeonsi"
+IUSE="${IUSE_VIDEO_CARDS}"
+REQUIRED_USE="|| ( ${IUSE_VIDEO_CARDS} )"
+
+DEPEND="
+   || (
+   sys-devel/clang:7
+   sys-devel/clang:6
+   sys-devel/clang:5
+   sys-devel/clang:4
+   >=sys-devel/clang-3.9:0
+   )
+   ${PYTHON_DEPS}"
+
+LLVM_MAX_SLOT=7
+
+llvm_check_deps() {
+   has_version "sys-devel/clang:${LLVM_SLOT}"
+}
+
+src_prepare() {
+   default
+   if use prefix; then
+   hprefixify configure.py
+   fi
+}
+
+pkg_setup() {
+   # we do not need llvm_pkg_setup
+   python-any-r1_pkg_setup
+}
+
+src_configure() {
+   local libclc_targets=()
+
+   use video_cards_nvidia && libclc_targets+=("nvptx--" "nvptx64--" 
"nvptx--nvidiacl" "nvptx64--nvidiacl")
+   use video_cards_r600 && libclc_targets+=("r600--")
+   use video_cards_radeonsi && libclc_targets+=("amdgcn--" 
"amdgcn-mesa-mesa3d" "amdgcn--amdhsa")
+
+   [[ ${#libclc_targets[@]} ]] || die "libclc target missing!"
+
+   ./configure.py \
+   --with-cxx-compiler="$(tc-getCXX)" \
+   --with-llvm-config="$(get_llvm_prefix 
"${LLVM_MAX_SLOT}")/bin/llvm-config" \
+   --prefix="${EPREFIX}/usr" "${libclc_targets[@]}" || die
+}
+
+src_compile() {
+   emake VERBOSE=1
+}



[gentoo-commits] repo/gentoo:master commit in: media-video/mplayer/

2018-09-16 Thread Andreas Sturmlechner
commit: cac7054009d9ada9f50be2b6b7b405fa62d25b42
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Sep 16 17:29:56 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Sep 16 17:41:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cac70540

media-video/mplayer: Fix git-r3 migration

Thanks-to: Christian Hagau  hagau.se>
Closes: https://bugs.gentoo.org/647720
Package-Manager: Portage-2.3.49, Repoman-2.3.10

 media-video/mplayer/mplayer-.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-video/mplayer/mplayer-.ebuild 
b/media-video/mplayer/mplayer-.ebuild
index 252dcec7163..1e4bb407e61 100644
--- a/media-video/mplayer/mplayer-.ebuild
+++ b/media-video/mplayer/mplayer-.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-EGIT_REPO_URI="git://git.videolan.org/ffmpeg.git"
+EGIT_REPO_URI="https://git.videolan.org/git/ffmpeg.git;
 ESVN_REPO_URI="svn://svn.mplayerhq.hu/mplayer/trunk"
 [[ ${PV} = ** ]] && SVN_ECLASS="subversion git-r3" || SVN_ECLASS=""
 
@@ -213,7 +213,7 @@ src_unpack() {
subversion_src_unpack
cd "${WORKDIR}"
rm -rf "${WORKDIR}/${P}/ffmpeg/"
-   ( S="${WORKDIR}/${P}/ffmpeg/" git-2_src_unpack )
+   ( EGIT_CHECKOUT_DIR="${WORKDIR}/${P}/ffmpeg/" git-r3_src_unpack 
)
else
unpack ${A}
fi



[gentoo-commits] repo/gentoo:master commit in: media-video/mplayer/

2018-09-16 Thread Andreas Sturmlechner
commit: 46cbfd73748ba646515a82e03c367e1033416087
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Sep 16 17:35:28 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Sep 16 17:41:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46cbfd73

media-video/mplayer: --disable-directfb also in 

Bug: https://bugs.gentoo.org/647720
Package-Manager: Portage-2.3.49, Repoman-2.3.10

 media-video/mplayer/mplayer-.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/media-video/mplayer/mplayer-.ebuild 
b/media-video/mplayer/mplayer-.ebuild
index 1e4bb407e61..2c207676063 100644
--- a/media-video/mplayer/mplayer-.ebuild
+++ b/media-video/mplayer/mplayer-.ebuild
@@ -279,6 +279,7 @@ src_configure() {
--disable-svga --disable-svgalib_helper
--disable-ass-internal
--disable-arts
+   --disable-directfb
--disable-kai
--disable-libopus
--disable-libilbc



[gentoo-commits] repo/gentoo:master commit in: media-video/mplayer/

2018-09-16 Thread Andreas Sturmlechner
commit: 76730b8b9e691d70e2151727e362efed5fc9d262
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Sep 16 17:38:10 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Sep 16 17:41:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76730b8b

media-video/mplayer: Drop duplicate KEYWORDS line

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 media-video/mplayer/mplayer-1.3.0-r5.ebuild | 2 --
 media-video/mplayer/mplayer-.ebuild | 4 +---
 2 files changed, 1 insertion(+), 5 deletions(-)

diff --git a/media-video/mplayer/mplayer-1.3.0-r5.ebuild 
b/media-video/mplayer/mplayer-1.3.0-r5.ebuild
index 6b515f5212d..bd0a05495e9 100644
--- a/media-video/mplayer/mplayer-1.3.0-r5.ebuild
+++ b/media-video/mplayer/mplayer-1.3.0-r5.ebuild
@@ -152,8 +152,6 @@ SLOT="0"
 LICENSE="GPL-2"
 if [[ ${PV} != ** ]]; then
KEYWORDS="alpha amd64 arm ~hppa ia64 ppc ppc64 x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x86-solaris"
-else
-   KEYWORDS="alpha amd64 arm ~hppa ia64 ppc ppc64 x86"
 fi
 
 # faac codecs are nonfree

diff --git a/media-video/mplayer/mplayer-.ebuild 
b/media-video/mplayer/mplayer-.ebuild
index 2c207676063..c32bc38e1cd 100644
--- a/media-video/mplayer/mplayer-.ebuild
+++ b/media-video/mplayer/mplayer-.ebuild
@@ -5,7 +5,7 @@ EAPI=6
 
 EGIT_REPO_URI="https://git.videolan.org/git/ffmpeg.git;
 ESVN_REPO_URI="svn://svn.mplayerhq.hu/mplayer/trunk"
-[[ ${PV} = ** ]] && SVN_ECLASS="subversion git-r3" || SVN_ECLASS=""
+[[ ${PV} = ** ]] && SVN_ECLASS="subversion git-r3"
 
 inherit toolchain-funcs flag-o-matic ${SVN_ECLASS}
 
@@ -152,8 +152,6 @@ SLOT="0"
 LICENSE="GPL-2"
 if [[ ${PV} != ** ]]; then
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x86-solaris"
-else
-   KEYWORDS=""
 fi
 
 # faac codecs are nonfree



[gentoo-commits] repo/gentoo:master commit in: media-sound/jack2/

2018-09-16 Thread Andreas Sturmlechner
commit: 8eeac3a8134b2d5653956575f57ceb859574e641
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Sep 16 18:32:25 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Sep 16 18:41:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8eeac3a8

media-sound/jack2: Add USE ieee1394 to 

Syncing with 1.9.12-r1, plus CDEPEND -> COMMON_DEPEND

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 media-sound/jack2/jack2-.ebuild | 16 
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/media-sound/jack2/jack2-.ebuild 
b/media-sound/jack2/jack2-.ebuild
index 3c407e2a68b..7b9c9398cbc 100644
--- a/media-sound/jack2/jack2-.ebuild
+++ b/media-sound/jack2/jack2-.ebuild
@@ -23,26 +23,26 @@ fi
 
 LICENSE="GPL-2"
 SLOT="2"
-IUSE="alsa dbus doc opus pam +classic sndfile libsamplerate readline"
+IUSE="alsa +classic dbus doc ieee1394 libsamplerate opus pam readline sndfile"
 
-REQUIRED_USE="
-   ${PYTHON_REQUIRED_USE}
+REQUIRED_USE="${PYTHON_REQUIRED_USE}
|| ( classic dbus )"
 
-CDEPEND="media-libs/libsamplerate
+COMMON_DEPEND="${PYTHON_DEPS}
+   media-libs/libsamplerate
media-libs/libsndfile
sys-libs/readline:0=
-   ${PYTHON_DEPS}
alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] )
dbus? (
dev-libs/expat[${MULTILIB_USEDEP}]
sys-apps/dbus[${MULTILIB_USEDEP}]
)
+   ieee1394? ( media-libs/libffado:=[${MULTILIB_USEDEP}] )
opus? ( media-libs/opus[custom-modes,${MULTILIB_USEDEP}] )"
-DEPEND="${CDEPEND}
+DEPEND="${COMMON_DEPEND}
virtual/pkgconfig
doc? ( app-doc/doxygen )"
-RDEPEND="${CDEPEND}
+RDEPEND="${COMMON_DEPEND}
dbus? ( dev-python/dbus-python[${PYTHON_USEDEP}] )
pam? ( sys-auth/realtime-base )
!media-sound/jack-audio-connection-kit:0"
@@ -62,7 +62,7 @@ multilib_src_configure() {
--alsa=$(usex alsa yes no)
--celt=no
--doxygen=$(multilib_native_usex doc yes no)
-   --firewire=no
+   --firewire=$(usex ieee1394 yes no)
--freebob=no
--iio=no
--opus=$(usex opus yes no)



[gentoo-commits] repo/gentoo:master commit in: media-sound/jack2/, media-sound/jack2/files/

2018-09-16 Thread Andreas Sturmlechner
commit: 285d1bceb0ab7f0b10d54951fe1001b5b189b3ef
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Sep 16 18:40:56 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Sep 16 18:41:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=285d1bce

media-sound/jack2: Drop 1.9.11_rc1*

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 media-sound/jack2/Manifest |  1 -
 .../jack2/files/jack2-1.9.11_rc1-gcc7.patch| 19 -
 media-sound/jack2/jack2-1.9.11_rc1-r1.ebuild   | 95 --
 media-sound/jack2/jack2-1.9.11_rc1.ebuild  | 89 
 4 files changed, 204 deletions(-)

diff --git a/media-sound/jack2/Manifest b/media-sound/jack2/Manifest
index f7b3375a019..1dd71b0983c 100644
--- a/media-sound/jack2/Manifest
+++ b/media-sound/jack2/Manifest
@@ -1,2 +1 @@
-DIST jack2-1.9.11-RC1.tar.gz 6481650 BLAKE2B 
b9497efdb72f2e3894a062a3ffdffc3ebf67f5ea7372d993c13581202202e0f0ba7b21563768a984201d8e5eb2854add67fb5c377e2b4ddb23806a38b0f9
 SHA512 
4fd7d82ab6536b8c6061023858ae5b978903608b149498818971481da75c6e9e0e7e7aef5e1343730c259f4378aebfbf25916b9736e0ad8aa19584a44f894436
 DIST jack2-1.9.12.tar.gz 6487135 BLAKE2B 
9140b3892d2321576a7329fbef2f23e340be4b9be967ec173edbbc7a43952c9a3712ead05dbe57f958b88c1e29c8a912a937c0bd34e0122ecc600ac9d48f147d
 SHA512 
f0271dfc8f8e2f2489ca52f431ad4fa420665816d6c67a01a76da1d4b5ae91f6dad8c4e3309ec5e0c159c9d312ed56021ab323d74bce828ace26f1b8d477ddfa

diff --git a/media-sound/jack2/files/jack2-1.9.11_rc1-gcc7.patch 
b/media-sound/jack2/files/jack2-1.9.11_rc1-gcc7.patch
deleted file mode 100644
index dcde5fb422f..000
--- a/media-sound/jack2/files/jack2-1.9.11_rc1-gcc7.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-commit f7bccdca651592cc4082b28fd4a01ed6ef8ab655
-Author: Kjetil Matheussen 
-Date:   Sat Jul 15 13:21:59 2017 +0200
-
-Tests: Fix compilation with gcc7
-
-diff --git a/tests/test.cpp b/tests/test.cpp
-index 8a8a8117..d2ef9a05 100644
 a/tests/test.cpp
-+++ b/tests/test.cpp
-@@ -479,7 +479,7 @@ int process4(jack_nframes_t nframes, void *arg)
-   jack_nframes_t delta_time = cur_time - last_time;
- 
-   Log("calling process4 callback : jack_frame_time = %ld delta_time = 
%ld\n", cur_time, delta_time);
--  if (delta_time > 0  && (jack_nframes_t)abs(delta_time - 
cur_buffer_size) > tolerance) {
-+  if (delta_time > 0  && abs((int64_t)delta_time - 
(int64_t)cur_buffer_size) > (int64_t)tolerance) {
-   printf("!!! ERROR !!! jack_frame_time seems to return incorrect 
values cur_buffer_size = %d, delta_time = %d tolerance %d\n", cur_buffer_size, 
delta_time, tolerance);
-   }
- 

diff --git a/media-sound/jack2/jack2-1.9.11_rc1-r1.ebuild 
b/media-sound/jack2/jack2-1.9.11_rc1-r1.ebuild
deleted file mode 100644
index de3d58d89ad..000
--- a/media-sound/jack2/jack2-1.9.11_rc1-r1.ebuild
+++ /dev/null
@@ -1,95 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE="threads(+)"
-inherit eutils python-single-r1 waf-utils multilib-minimal
-
-DESCRIPTION="Jackdmp jack implemention for multi-processor machine"
-HOMEPAGE="http://jackaudio.org/;
-
-if [[ "${PV}" = "" ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/jackaudio/${PN}.git;
-   KEYWORDS=""
-else
-   MY_PV="${PV/_rc/-RC}"
-   MY_P="${PN}-${MY_PV}"
-   S="${WORKDIR}/${MY_P}"
-   
SRC_URI="https://github.com/jackaudio/jack2/releases/download/v${MY_PV}/${MY_P}.tar.gz;
-   KEYWORDS="~amd64 ~ppc ~x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="2"
-IUSE="alsa celt dbus doc opus pam classic sndfile libsamplerate readline"
-
-REQUIRED_USE="
-   ${PYTHON_REQUIRED_USE}
-   || ( classic dbus )"
-
-CDEPEND="media-libs/libsamplerate
-   media-libs/libsndfile
-   sys-libs/readline:0=
-   ${PYTHON_DEPS}
-   alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] )
-   celt? ( media-libs/celt:0[${MULTILIB_USEDEP}] )
-   dbus? (
-   dev-libs/expat[${MULTILIB_USEDEP}]
-   sys-apps/dbus[${MULTILIB_USEDEP}]
-   )
-   opus? ( media-libs/opus[custom-modes,${MULTILIB_USEDEP}] )"
-DEPEND="${CDEPEND}
-   virtual/pkgconfig
-   doc? ( app-doc/doxygen )"
-RDEPEND="${CDEPEND}
-   dbus? ( dev-python/dbus-python[${PYTHON_USEDEP}] )
-   pam? ( sys-auth/realtime-base )
-   !media-sound/jack-audio-connection-kit:0"
-
-DOCS=( ChangeLog README README_NETJACK2 TODO )
-
-PATCHES=(
-   "${FILESDIR}"/${P}-gcc7.patch
-)
-
-src_prepare() {
-   default
-   multilib_copy_sources
-}
-
-multilib_src_configure() {
-   local mywafconfargs=(
-   --htmldir=/usr/share/doc/${PF}/html
-   $(usex dbus --dbus "")
-   $(usex classic --classic "")
-   --alsa=$(usex alsa yes no)
-   --celt=$(usex celt yes no)
-

[gentoo-commits] proj/gcc-patches:master commit in: 4.1.2/gentoo/

2018-09-16 Thread Sergei Trofimovich
commit: 8ad4da87eaa58d0de1543fdcac9c2b03f8ef8f09
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Sep 16 11:13:38 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Sep 16 11:13:38 2018 +
URL:https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=8ad4da87

4.1.2: backport 'struct ucontext' to 'ucontext_t' rename in glibc

Signed-off-by: Sergei Trofimovich  gentoo.org>

 4.1.2/gentoo/96_all_ucontext-to-ucontext_t.patch | 113 +++
 4.1.2/gentoo/README.history  |   3 +
 2 files changed, 116 insertions(+)

diff --git a/4.1.2/gentoo/96_all_ucontext-to-ucontext_t.patch 
b/4.1.2/gentoo/96_all_ucontext-to-ucontext_t.patch
new file mode 100644
index 000..986baca
--- /dev/null
+++ b/4.1.2/gentoo/96_all_ucontext-to-ucontext_t.patch
@@ -0,0 +1,113 @@
+https://bugs.gentoo.org/629502
+
+From ecf0d1a107133c715763940c2b197aa814710e1b Mon Sep 17 00:00:00 2001
+From: jsm28 
+Date: Tue, 4 Jul 2017 10:25:10 +
+Subject: [PATCH] Use ucontext_t not struct ucontext in linux-unwind.h files.
+
+Current glibc no longer gives the ucontext_t type the tag struct
+ucontext, to conform with POSIX namespace rules.  This requires
+various linux-unwind.h files in libgcc, that were previously using
+struct ucontext, to be fixed to use ucontext_t instead.  This is
+similar to the removal of the struct siginfo tag from siginfo_t some
+years ago.
+
+This patch changes those files to use ucontext_t instead.  As the
+standard name that should be unconditionally safe, so this is not
+restricted to architectures supported by glibc, or conditioned on the
+glibc version.
+
+Tested compilation together with current glibc with glibc's
+build-many-glibcs.py.
+
+   * config/aarch64/linux-unwind.h (aarch64_fallback_frame_state),
+   config/alpha/linux-unwind.h (alpha_fallback_frame_state),
+   config/bfin/linux-unwind.h (bfin_fallback_frame_state),
+   config/i386/linux-unwind.h (x86_64_fallback_frame_state,
+   x86_fallback_frame_state), config/m68k/linux-unwind.h (struct
+   uw_ucontext), config/nios2/linux-unwind.h (struct nios2_ucontext),
+   config/pa/linux-unwind.h (pa32_fallback_frame_state),
+   config/sh/linux-unwind.h (sh_fallback_frame_state),
+   config/tilepro/linux-unwind.h (tile_fallback_frame_state),
+   config/xtensa/linux-unwind.h (xtensa_fallback_frame_state): Use
+   ucontext_t instead of struct ucontext.
+
+
+git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-5-branch@249958 
138bc75d-0d04-0410-961f-82ee72b054a4
+---
+ libgcc/config/aarch64/linux-unwind.h |  2 +-
+ libgcc/config/alpha/linux-unwind.h   |  2 +-
+ libgcc/config/bfin/linux-unwind.h|  2 +-
+ libgcc/config/i386/linux-unwind.h|  4 ++--
+ libgcc/config/m68k/linux-unwind.h|  2 +-
+ libgcc/config/nios2/linux-unwind.h   |  2 +-
+ libgcc/config/pa/linux-unwind.h  |  2 +-
+ libgcc/config/sh/linux-unwind.h  |  2 +-
+ libgcc/config/tilepro/linux-unwind.h |  2 +-
+ libgcc/config/xtensa/linux-unwind.h  |  2 +-
+ 11 files changed, 25 insertions(+), 11 deletions(-)
+
+diff --git a/libgcc/config/alpha/linux-unwind.h 
b/libgcc/config/alpha/linux-unwind.h
+index d65474fec12..9a226b195b5 100644
+--- a/gcc/config/alpha/linux-unwind.h
 b/gcc/config/alpha/linux-unwind.h
+@@ -51,7 +51,7 @@ alpha_fallback_frame_state (struct _Unwind_Context *context,
+ {
+   struct rt_sigframe {
+   siginfo_t info;
+-  struct ucontext uc;
++  ucontext_t uc;
+   } *rt_ = context->cfa;
+   sc = _->uc.uc_mcontext;
+ }
+diff --git a/libgcc/config/i386/linux-unwind.h 
b/libgcc/config/i386/linux-unwind.h
+index e54bf73b1fd..d35fc4566ce 100644
+--- a/gcc/config/i386/linux-unwind.h
 b/gcc/config/i386/linux-unwind.h
+@@ -58,7 +58,7 @@ x86_64_fallback_frame_state (struct _Unwind_Context *context,
+   if (*(unsigned char *)(pc+0) == 0x48
+   && *(unsigned long long *)(pc+1) == RT_SIGRETURN_SYSCALL)
+ {
+-  struct ucontext *uc_ = context->cfa;
++  ucontext_t *uc_ = context->cfa;
+   /* The void * cast is necessary to avoid an aliasing warning.
+  The aliasing warning is correct, but should not be a problem
+  because it does not alias anything.  */
+@@ -138,7 +138,7 @@ x86_fallback_frame_state (struct _Unwind_Context *context,
+   siginfo_t *pinfo;
+   void *puc;
+   siginfo_t info;
+-  struct ucontext uc;
++  ucontext_t uc;
+   } *rt_ = context->cfa;
+   /* The void * cast is necessary to avoid an aliasing warning.
+  The aliasing warning is correct, but should not be a problem
+diff --git a/libgcc/config/pa/linux-unwind.h b/libgcc/config/pa/linux-unwind.h
+index 01494685ea4..91575356803 100644
+--- a/gcc/config/pa/linux-unwind.h
 b/gcc/config/pa/linux-unwind.h
+@@ -80,7 +80,7 @@ pa32_fallback_frame_state (struct _Unwind_Context *context,
+   struct sigcontext *sc;
+   struct rt_sigframe {
+ siginfo_t info;
+-struct ucontext uc;
++

[gentoo-commits] repo/gentoo:master commit in: app-editors/nano/

2018-09-16 Thread Sergei Trofimovich
commit: 33c98341740cb007d854e8624fae3fbccd79f7f3
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sun Sep 16 10:44:46 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Sep 16 12:08:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33c98341

app-editors/nano: stable 2.9.8 for sparc, bug #666206

Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="sparc"

 app-editors/nano/nano-2.9.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/nano/nano-2.9.8.ebuild 
b/app-editors/nano/nano-2.9.8.ebuild
index a24b3ac8b48..9d16e138aa8 100644
--- a/app-editors/nano/nano-2.9.8.ebuild
+++ b/app-editors/nano/nano-2.9.8.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == "" ]] ; then
 else
MY_P="${PN}-${PV/_}"
SRC_URI="https://www.nano-editor.org/dist/v${PV:0:3}/${MY_P}.tar.gz;
-   KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 
~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 
~s390 ~sh sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 fi
 
 DESCRIPTION="GNU GPL'd Pico clone with more functionality"



[gentoo-commits] repo/gentoo:master commit in: media-libs/libmpdclient/

2018-09-16 Thread Sergei Trofimovich
commit: ce4534a18d98f1da6234fa262c2cbcf83fc1539c
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sun Sep 16 10:47:19 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Sep 16 12:08:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce4534a1

media-libs/libmpdclient: keyworded 2.13 for sparc, bug #666244

Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="sparc"

 media-libs/libmpdclient/libmpdclient-2.13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/libmpdclient/libmpdclient-2.13.ebuild 
b/media-libs/libmpdclient/libmpdclient-2.13.ebuild
index a30b603a924..2dd0f6f3693 100644
--- a/media-libs/libmpdclient/libmpdclient-2.13.ebuild
+++ b/media-libs/libmpdclient/libmpdclient-2.13.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://www.musicpd.org/download/${PN}/${PV%.*}/${P}.tar.xz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ppc ppc64 x86"
+KEYWORDS="alpha amd64 ~arm ppc ppc64 ~sparc x86"
 IUSE="doc examples test"
 
 RDEPEND=""



[gentoo-commits] repo/gentoo:master commit in: app-vim/gentoo-syntax/

2018-09-16 Thread Sergei Trofimovich
commit: b200f4f8f73250a2afb20e0f2e7f73919c00fbb3
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sun Sep 16 10:42:28 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Sep 16 12:08:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b200f4f8

app-vim/gentoo-syntax: stable 20180821 for sparc, bug #666122

Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="sparc"

 app-vim/gentoo-syntax/gentoo-syntax-20180821.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-vim/gentoo-syntax/gentoo-syntax-20180821.ebuild 
b/app-vim/gentoo-syntax/gentoo-syntax-20180821.ebuild
index e863062b2a4..f15cb365a3b 100644
--- a/app-vim/gentoo-syntax/gentoo-syntax-20180821.ebuild
+++ b/app-vim/gentoo-syntax/gentoo-syntax-20180821.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://gitweb.gentoo.org/proj/gentoo-syntax.git/snapshot/${P}.tar.bz2;
 
 LICENSE="vim"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE="ignore-glep31"
 
 VIM_PLUGIN_HELPFILES="gentoo-syntax"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libzip/

2018-09-16 Thread Sergei Trofimovich
commit: fad0fefe6f636cdaeebb6ef33cafb1c313771950
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sun Sep 16 10:43:32 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Sep 16 12:08:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fad0fefe

dev-libs/libzip: stable 1.3.0 for sparc, bug #629574

Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="sparc"

 dev-libs/libzip/libzip-1.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libzip/libzip-1.3.0.ebuild 
b/dev-libs/libzip/libzip-1.3.0.ebuild
index 1d27b7ae357..fc4f03055a7 100644
--- a/dev-libs/libzip/libzip-1.3.0.ebuild
+++ b/dev-libs/libzip/libzip-1.3.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.nih.at/libzip/${P}.tar.xz;
 
 LICENSE="BSD"
 SLOT="0/5"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
 IUSE="bzip2 static-libs"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-libs/libmpdclient/

2018-09-16 Thread Sergei Trofimovich
commit: 422ab664aab1f5cda36f18be4ac31cd83e30ee27
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sun Sep 16 10:48:20 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Sep 16 12:08:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=422ab664

media-libs/libmpdclient: keyworded 2.14 for sparc, bug #666244

Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="sparc"

 media-libs/libmpdclient/libmpdclient-2.14.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/libmpdclient/libmpdclient-2.14.ebuild 
b/media-libs/libmpdclient/libmpdclient-2.14.ebuild
index 70d69fc459d..14dad2fc2ab 100644
--- a/media-libs/libmpdclient/libmpdclient-2.14.ebuild
+++ b/media-libs/libmpdclient/libmpdclient-2.14.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://www.musicpd.org/download/${PN}/${PV%.*}/${P}.tar.xz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86"
 IUSE="doc examples test"
 
 RDEPEND=""



[gentoo-commits] repo/gentoo:master commit in: media-libs/libmpdclient/

2018-09-16 Thread Sergei Trofimovich
commit: 2c81c1685be475dd58c695e016613f9b6cab30a3
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sun Sep 16 10:49:22 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Sep 16 12:08:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c81c168

media-libs/libmpdclient: keyworded 2.15 for sparc, bug #666244

Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="sparc"

 media-libs/libmpdclient/libmpdclient-2.15.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/libmpdclient/libmpdclient-2.15.ebuild 
b/media-libs/libmpdclient/libmpdclient-2.15.ebuild
index 70d69fc459d..14dad2fc2ab 100644
--- a/media-libs/libmpdclient/libmpdclient-2.15.ebuild
+++ b/media-libs/libmpdclient/libmpdclient-2.15.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://www.musicpd.org/download/${PN}/${PV%.*}/${P}.tar.xz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86"
 IUSE="doc examples test"
 
 RDEPEND=""



[gentoo-commits] repo/gentoo:master commit in: net-libs/miniupnpc/

2018-09-16 Thread Mikle Kolyada
commit: 0b5a592607b412d4eedd0ad8fc48cfb631959d7d
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep 16 13:24:45 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep 16 13:25:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b5a5926

net-libs/miniupnpc: amd64 stable wrt bug #665412

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 net-libs/miniupnpc/miniupnpc-2.0.20180503.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/miniupnpc/miniupnpc-2.0.20180503.ebuild 
b/net-libs/miniupnpc/miniupnpc-2.0.20180503.ebuild
index f2a939d6e3c..82b0fa4708b 100644
--- a/net-libs/miniupnpc/miniupnpc-2.0.20180503.ebuild
+++ b/net-libs/miniupnpc/miniupnpc-2.0.20180503.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://miniupnp.free.fr/files/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0/17"
-KEYWORDS="~amd64 ~arm ~arm64 hppa ~mips ppc ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="amd64 ~arm ~arm64 hppa ~mips ppc ppc64 sparc x86 ~x86-fbsd"
 IUSE="ipv6 kernel_linux static-libs"
 
 RDEPEND=""



[gentoo-commits] repo/gentoo:master commit in: dev-python/miniupnpc/

2018-09-16 Thread Mikle Kolyada
commit: 83023120327c5208388e511ad9228a499c485f72
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep 16 13:25:30 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep 16 13:25:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83023120

dev-python/miniupnpc: amd64 stable wrt bug #665412

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-python/miniupnpc/miniupnpc-2.0.20180503.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/miniupnpc/miniupnpc-2.0.20180503.ebuild 
b/dev-python/miniupnpc/miniupnpc-2.0.20180503.ebuild
index 71054202905..1fc60e04a6a 100644
--- a/dev-python/miniupnpc/miniupnpc-2.0.20180503.ebuild
+++ b/dev-python/miniupnpc/miniupnpc-2.0.20180503.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://miniupnp.free.fr/files/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ppc ppc64 x86"
+KEYWORDS="amd64 ppc ppc64 x86"
 IUSE=""
 
 RDEPEND=">=net-libs/miniupnpc-${PV}:0="



[gentoo-commits] repo/gentoo:master commit in: net-im/skypeforlinux/

2018-09-16 Thread Mikle Kolyada
commit: deee54f726e81624940ef3e6e6ad384ddc328b3b
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep 16 13:58:52 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep 16 13:58:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=deee54f7

net-im/skypeforlinux: Drop old

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 net-im/skypeforlinux/Manifest  |   1 -
 .../skypeforlinux/skypeforlinux-8.28.0.41.ebuild   | 116 -
 2 files changed, 117 deletions(-)

diff --git a/net-im/skypeforlinux/Manifest b/net-im/skypeforlinux/Manifest
index c53005d30b5..0157b2d7cde 100644
--- a/net-im/skypeforlinux/Manifest
+++ b/net-im/skypeforlinux/Manifest
@@ -1,4 +1,3 @@
-DIST skypeforlinux_8.28.0.41-1.x86_64.rpm 95603274 BLAKE2B 
97698ab5dd7187471323e62ed43b6df8d1271eb4a7c2312bf4e271e31e193427888253610ca1132df61010e4260bafc73b8602945ba15fad1b89750aaab547e5
 SHA512 
11ebed4e273ab755da605be023642ed37eb6e66d48923fbfec2bf4fda40f64a0d89764016bfb4a3818bdcac9582d5510076ad83e1e50dfaeec35a2f9aa405eda
 DIST skypeforlinux_8.29.0.41-1.x86_64.rpm 95818619 BLAKE2B 
c1a291290bd4b92c51aad86ad814f17e4f4ea22d61e03402089f7089a38a78d35d1388f168e6f07e3ea154bc13de59963d03318500143347ee3974e25ad37fd9
 SHA512 
3d3a97193adb718d3e4eb7b15d0d9030a711849eab55cd1b2550beeb0c90d14d803603fb8b0f6612d8737da4c7a6a98ba54c472d537c46cb4cf93539191c8eb7
 DIST skypeforlinux_8.29.0.50-1.x86_64.rpm 95818686 BLAKE2B 
6f3e65b558b0a79aa7a0fb3741299f396fe3420a82fce461756faa5bd9063fd38945b5935057fb5f6a0ff3b54a2a07adca026114caca4003d2ae1eca8b16d0df
 SHA512 
f4cdf5376bb21a65f8fb7516be45ac6dfd0b98439c1eabbe491928d356cce0f7b3488ee2056e65c9be1fd9c53d3bb7c6c3f980562b10341d63cee9d3377b3e2b
 DIST skypeforlinux_8.30.0.50-1.x86_64.rpm 96093210 BLAKE2B 
f7807c3334c93864378245d004c3186dabf3fb224958e8cabfba5e6f3e26b07f32550752d7e50d13ea5af719d33d4c0ba2a1e6d52b6fdbfb307200438a9f0236
 SHA512 
c8eb4010d7c5162de21edceb6f4b2b5a6390305fdb3f2d1b28658ab869cbc749b8978906cfa7c5e72d37321500d7ebf5394a8f4283307aa464d459465d848f09

diff --git a/net-im/skypeforlinux/skypeforlinux-8.28.0.41.ebuild 
b/net-im/skypeforlinux/skypeforlinux-8.28.0.41.ebuild
deleted file mode 100644
index fe787944cfb..000
--- a/net-im/skypeforlinux/skypeforlinux-8.28.0.41.ebuild
+++ /dev/null
@@ -1,116 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MULTILIB_COMPAT=( abi_x86_64 )
-
-inherit desktop gnome2-utils pax-utils rpm multilib-build xdg-utils
-
-DESCRIPTION="Instant messaging client, with support for audio and video"
-HOMEPAGE="https://www.skype.com/;
-SRC_URI="https://repo.skype.com/rpm/stable/${PN}_${PV}-1.x86_64.rpm;
-
-LICENSE="Skype-TOS MIT MIT-with-advertising BSD-1 BSD-2 BSD Apache-2.0 
Boost-1.0 ISC CC-BY-SA-3.0 CC0-1.0 openssl ZLIB APSL-2 icu Artistic-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="-* ~amd64"
-IUSE="pax_kernel"
-
-S="${WORKDIR}"
-QA_PREBUILT="*"
-RESTRICT="mirror bindist strip" #299368
-
-RDEPEND="
-   app-crypt/libsecret[${MULTILIB_USEDEP}]
-   dev-libs/atk[${MULTILIB_USEDEP}]
-   dev-libs/expat[${MULTILIB_USEDEP}]
-   dev-libs/glib:2[${MULTILIB_USEDEP}]
-   dev-libs/nspr[${MULTILIB_USEDEP}]
-   dev-libs/nss[${MULTILIB_USEDEP}]
-   gnome-base/gconf:2[${MULTILIB_USEDEP}]
-   media-libs/alsa-lib[${MULTILIB_USEDEP}]
-   media-libs/fontconfig:1.0[${MULTILIB_USEDEP}]
-   media-libs/freetype:2[${MULTILIB_USEDEP}]
-   media-libs/libv4l[${MULTILIB_USEDEP}]
-   net-print/cups[${MULTILIB_USEDEP}]
-   sys-apps/dbus[${MULTILIB_USEDEP}]
-   sys-devel/gcc[cxx]
-   virtual/ttf-fonts
-   x11-libs/cairo[${MULTILIB_USEDEP}]
-   x11-libs/gdk-pixbuf:2[${MULTILIB_USEDEP}]
-   x11-libs/gtk+:2[${MULTILIB_USEDEP}]
-   x11-libs/libX11[${MULTILIB_USEDEP}]
-   x11-libs/libXScrnSaver[${MULTILIB_USEDEP}]
-   x11-libs/libXcomposite[${MULTILIB_USEDEP}]
-   x11-libs/libXcursor[${MULTILIB_USEDEP}]
-   x11-libs/libXdamage[${MULTILIB_USEDEP}]
-   x11-libs/libXext[${MULTILIB_USEDEP}]
-   x11-libs/libXfixes[${MULTILIB_USEDEP}]
-   x11-libs/libXi[${MULTILIB_USEDEP}]
-   x11-libs/libXrandr[${MULTILIB_USEDEP}]
-   x11-libs/libXrender[${MULTILIB_USEDEP}]
-   x11-libs/libXtst[${MULTILIB_USEDEP}]
-   x11-libs/libxcb[${MULTILIB_USEDEP}]
-   x11-libs/libxkbfile[${MULTILIB_USEDEP}]
-   x11-libs/pango[${MULTILIB_USEDEP}]"
-
-src_unpack() {
-   rpm_src_unpack ${A}
-}
-
-src_prepare() {
-   default
-   sed -e 
"s!^SKYPE_PATH=.*!SKYPE_PATH=${EPREFIX}/opt/skypeforlinux/skypeforlinux!" \
-   -i usr/bin/skypeforlinux || die
-   sed -e "s!^Exec=/usr/!Exec=${EPREFIX}/opt/!" \
-   -e 
"s!^Categories=.*!Categories=Network;InstantMessaging;Telephony;!" \
-   -e "/^OnlyShowIn=/d" \
-   -i usr/share/applications/skypeforlinux.desktop || die
-}
-
-src_install() {
-   dodir /opt
-   cp -a 

[gentoo-commits] proj/gnome:master commit in: gnome-base/nautilus/, gnome-base/nautilus/files/

2018-09-16 Thread Sobhan Mohammadpour
commit: 0e652f17d2f812c33487a1ed0cdf44a338705645
Author: Sobhan Mohammadpour  gentoo  org>
AuthorDate: Sun Sep 16 15:25:13 2018 +
Commit: Sobhan Mohammadpour  gentoo  org>
CommitDate: Sun Sep 16 15:25:13 2018 +
URL:https://gitweb.gentoo.org/proj/gnome.git/commit/?id=0e652f17

gnome-base/nautilus: version bump to 3.26.4 and minor fixes

add the doc flag back, rename the patch

Package-Manager: Portage-2.3.44, Repoman-2.3.10
Manifest-Sign-Key: 0x7DF238CF0AA182E1

 ...support-optional.patch => 3.26.4-tracker-support-optional.patch} | 0
 .../nautilus/{nautilus-3.26.3.1.ebuild => nautilus-3.26.4.ebuild}   | 6 --
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnome-base/nautilus/files/3.26.3.1-tracker-support-optional.patch 
b/gnome-base/nautilus/files/3.26.4-tracker-support-optional.patch
similarity index 100%
rename from gnome-base/nautilus/files/3.26.3.1-tracker-support-optional.patch
rename to gnome-base/nautilus/files/3.26.4-tracker-support-optional.patch

diff --git a/gnome-base/nautilus/nautilus-3.26.3.1.ebuild 
b/gnome-base/nautilus/nautilus-3.26.4.ebuild
similarity index 94%
rename from gnome-base/nautilus/nautilus-3.26.3.1.ebuild
rename to gnome-base/nautilus/nautilus-3.26.4.ebuild
index f7b2ad76..de179978 100644
--- a/gnome-base/nautilus/nautilus-3.26.3.1.ebuild
+++ b/gnome-base/nautilus/nautilus-3.26.4.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/Apps/Nautilus;
 
 LICENSE="GPL-2+ LGPL-2+ FDL-1.1"
 SLOT="0"
-IUSE="exif gnome +introspection packagekit +previewer selinux sendto tracker 
xmp"
+IUSE="doc exif gnome +introspection packagekit +previewer selinux sendto 
tracker xmp"
 
 KEYWORDS="~alpha ~amd64 ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux"
 
@@ -44,6 +44,8 @@ DEPEND="${COMMON_DEPEND}
>=sys-devel/gettext-0.19.7
virtual/pkgconfig
x11-base/xorg-proto
+
+   doc? ( dev-util/gtk-doc )
 "
 RDEPEND="${COMMON_DEPEND}
gnome-base/dconf
@@ -75,9 +77,9 @@ src_configure() {
# FIXME no doc useflag??
gnome-meson_src_configure \
-Denable-desktop=true \
-   -Denable-gtk-doc=false \
-Denable-profiling=false \
-Dtracker=$(usex tracker auto disabled) \
+   $(meson_use doc enable-gtk-doc) \
$(meson_use exif enable-exif) \
$(meson_use packagekit enable-packagekit) \
$(meson_use sendto nst-extension) \



[gentoo-commits] repo/gentoo:master commit in: www-client/opera/

2018-09-16 Thread Jeroen Roovers
commit: 6365fc3f6fd1f528d77934659801397086915528
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sun Sep 16 15:19:21 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sun Sep 16 15:25:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6365fc3f

www-client/opera: Fix x11-libs/gtk+ dependency.

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 www-client/opera/opera-55.0.2994.59.ebuild | 2 +-
 www-client/opera/opera-55.0.2994.61.ebuild | 4 +++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/www-client/opera/opera-55.0.2994.59.ebuild 
b/www-client/opera/opera-55.0.2994.59.ebuild
index 23b9ad88ecc..7fc7eacf82a 100644
--- a/www-client/opera/opera-55.0.2994.59.ebuild
+++ b/www-client/opera/opera-55.0.2994.59.ebuild
@@ -40,7 +40,7 @@ RDEPEND="
sys-apps/dbus
x11-libs/cairo
x11-libs/gdk-pixbuf
-   x11-libs/gtk+:2
+   x11-libs/gtk+:3
x11-libs/libX11
x11-libs/libXScrnSaver
x11-libs/libXcomposite

diff --git a/www-client/opera/opera-55.0.2994.61.ebuild 
b/www-client/opera/opera-55.0.2994.61.ebuild
index 23b9ad88ecc..36e972f6839 100644
--- a/www-client/opera/opera-55.0.2994.61.ebuild
+++ b/www-client/opera/opera-55.0.2994.61.ebuild
@@ -40,7 +40,7 @@ RDEPEND="
sys-apps/dbus
x11-libs/cairo
x11-libs/gdk-pixbuf
-   x11-libs/gtk+:2
+   x11-libs/gtk+:3
x11-libs/libX11
x11-libs/libXScrnSaver
x11-libs/libXcomposite
@@ -65,6 +65,8 @@ src_unpack() {
 }
 
 src_prepare() {
+   epatch_user
+
case ${ARCH} in
amd64)
mv usr/lib/x86_64-linux-gnu usr/$(get_libdir) || die



[gentoo-commits] repo/gentoo:master commit in: www-client/opera-beta/

2018-09-16 Thread Jeroen Roovers
commit: 6293d4a62ac6d68d3519208bf010fa37fcfdd582
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sun Sep 16 15:16:22 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sun Sep 16 15:25:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6293d4a6

www-client/opera-beta: Fix x11-libs/gtk+ dependency.

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 www-client/opera-beta/opera-beta-56.0.3051.10.ebuild | 2 +-
 www-client/opera-beta/opera-beta-56.0.3051.18.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-client/opera-beta/opera-beta-56.0.3051.10.ebuild 
b/www-client/opera-beta/opera-beta-56.0.3051.10.ebuild
index 135872778f9..7febec80c8f 100644
--- a/www-client/opera-beta/opera-beta-56.0.3051.10.ebuild
+++ b/www-client/opera-beta/opera-beta-56.0.3051.10.ebuild
@@ -42,7 +42,7 @@ RDEPEND="
sys-apps/dbus
x11-libs/cairo
x11-libs/gdk-pixbuf
-   x11-libs/gtk+:2
+   x11-libs/gtk+:3
x11-libs/libX11
x11-libs/libXScrnSaver
x11-libs/libXcomposite

diff --git a/www-client/opera-beta/opera-beta-56.0.3051.18.ebuild 
b/www-client/opera-beta/opera-beta-56.0.3051.18.ebuild
index 135872778f9..7febec80c8f 100644
--- a/www-client/opera-beta/opera-beta-56.0.3051.18.ebuild
+++ b/www-client/opera-beta/opera-beta-56.0.3051.18.ebuild
@@ -42,7 +42,7 @@ RDEPEND="
sys-apps/dbus
x11-libs/cairo
x11-libs/gdk-pixbuf
-   x11-libs/gtk+:2
+   x11-libs/gtk+:3
x11-libs/libX11
x11-libs/libXScrnSaver
x11-libs/libXcomposite



[gentoo-commits] repo/gentoo:master commit in: www-client/opera-developer/

2018-09-16 Thread Jeroen Roovers
commit: fb7f782d3306def13c2bd407c13c22b6a2bb54e4
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sun Sep 16 15:24:39 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sun Sep 16 15:25:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb7f782d

www-client/opera-developer: Switch back to debs

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 www-client/opera-developer/Manifest  |  2 +-
 ebuild => opera-developer-57.0.3072.0-r1.ebuild} | 20 ++--
 2 files changed, 19 insertions(+), 3 deletions(-)

diff --git a/www-client/opera-developer/Manifest 
b/www-client/opera-developer/Manifest
index e591da71699..0964593c050 100644
--- a/www-client/opera-developer/Manifest
+++ b/www-client/opera-developer/Manifest
@@ -1,2 +1,2 @@
 DIST opera-developer_57.0.3065.0_amd64.rpm 55367540 BLAKE2B 
62809c5b986c11517bbac2f941964df07dba2feae16cb974b189fad6fdd29d92c3f198c09ae58aba751c8abb3e3301b87a6c8aca8c1eca0fc6d3f04ca402b489
 SHA512 
c328381fe9f303e35fae3e3d995c5a186fe885edeb7e86c6de4542133793e7885dbd579e2451a21d95cbdf0941f7a891523486d0b410b9d2b740c3589083ef28
-DIST opera-developer_57.0.3072.0_amd64.rpm 55503092 BLAKE2B 
9e326fa416e707057895257aeb3e248aca57e3b3d748d707684e2392f331b3a166bdceac7e8b66e74312442438a71161ff9dab38eeb89a5316c47d60e6a38869
 SHA512 
4645a6edcf6cb52203637e316930f670f3c08cc4c2ca4c90234daa12e63b91051a5e4bf80e824c1d516f1e771476e4fa2d96b1b1eedf23740c8254fd7fc80a20
+DIST opera-developer_57.0.3072.0_amd64.deb 57858176 BLAKE2B 
338f5eea5585c774cd32f2216fd3877ca940c2fbc71a1ae30cf50afaa63e31ae5e00a6a5de298ade5df51de47fa09eb3752b1b0a00326bbf3ebe540d5dd12e52
 SHA512 
d01f5e898b54aedb73d05fec77926d4c7a3033c3b7bac9931cbd923989ab81aa7a7f152ba80940694e9dc12a3bda1b3b0c3d3c97cf1e93c7cc5cf55fb8c619e7

diff --git a/www-client/opera-developer/opera-developer-57.0.3072.0.ebuild 
b/www-client/opera-developer/opera-developer-57.0.3072.0-r1.ebuild
similarity index 84%
rename from www-client/opera-developer/opera-developer-57.0.3072.0.ebuild
rename to www-client/opera-developer/opera-developer-57.0.3072.0-r1.ebuild
index 6fcc60aa4c6..bb41cc9d6e5 100644
--- a/www-client/opera-developer/opera-developer-57.0.3072.0.ebuild
+++ b/www-client/opera-developer/opera-developer-57.0.3072.0-r1.ebuild
@@ -7,7 +7,7 @@ CHROMIUM_LANGS="
ja ko lt lv ms nb nl pl pt-BR pt-PT ro ru sk sr sv sw ta te th tr uk vi
zh-CN zh-TW
 "
-inherit chromium-2 gnome2-utils multilib rpm xdg-utils
+inherit chromium-2 gnome2-utils multilib unpacker xdg-utils
 
 DESCRIPTION="A fast and secure web browser"
 HOMEPAGE="https://www.opera.com/;
@@ -22,7 +22,7 @@ SRC_URI_BASE="
 SRC_URI="amd64? ("
 for uri in ${SRC_URI_BASE}; do
 SRC_URI+="
-   "${uri}${PN}/${PV}/linux/${PN}_${PV}_amd64.rpm"
+   "${uri}${PN}/${PV}/linux/${PN}_${PV}_amd64.deb"
 "
 done
 SRC_URI+=")"
@@ -62,7 +62,23 @@ QA_PREBUILT="*"
 S=${WORKDIR}
 OPERA_HOME="usr/$(get_libdir)/${PN}"
 
+src_unpack() {
+   unpack_deb ${A}
+}
+
 src_prepare() {
+   epatch_user
+
+   case ${ARCH} in
+   amd64)
+   mv usr/lib/x86_64-linux-gnu usr/$(get_libdir) || die
+   rm -r usr/lib || die
+   ;;
+   x86)
+   mv usr/lib/i386-linux-gnu/${PN} usr/$(get_libdir)/ || 
die
+   ;;
+   esac
+
rm usr/bin/${PN} || die
 
pushd "${OPERA_HOME}/localization" > /dev/null || die



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libxslt/

2018-09-16 Thread Mikle Kolyada
commit: c26d795174407ba0f02676d0a4f28a6d27cefd72
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep 16 18:16:33 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep 16 18:16:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c26d7951

dev-libs/libxslt: sh/m68k stable wrt bug #637310

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-libs/libxslt/libxslt-1.1.32.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libxslt/libxslt-1.1.32.ebuild 
b/dev-libs/libxslt/libxslt-1.1.32.ebuild
index 56ea83a8de3..d290c9b1ecb 100644
--- a/dev-libs/libxslt/libxslt-1.1.32.ebuild
+++ b/dev-libs/libxslt/libxslt-1.1.32.ebuild
@@ -13,7 +13,7 @@ SRC_URI="ftp://xmlsoft.org/${PN}/${P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc 
x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 
 IUSE="crypt debug examples python static-libs elibc_Darwin"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"



[gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/

2018-09-16 Thread Mikle Kolyada
commit: f85a0ac2021822aef31edc0aa66c6599826f2b93
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep 16 18:25:39 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep 16 18:25:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f85a0ac2

net-misc/netifrc: m68k stable wrt bug #591826

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 net-misc/netifrc/netifrc-0.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netifrc/netifrc-0.5.1.ebuild 
b/net-misc/netifrc/netifrc-0.5.1.ebuild
index 7d558a3cdb6..275f19dc927 100644
--- a/net-misc/netifrc/netifrc-0.5.1.ebuild
+++ b/net-misc/netifrc/netifrc-0.5.1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://dev.gentoo.org/~robbat2/distfiles/${P}.tar.bz2;
-   KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 sh 
sparc x86 ~amd64-fbsd ~x86-fbsd"
+   KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh 
sparc x86 ~amd64-fbsd ~x86-fbsd"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Net-DBus/

2018-09-16 Thread Mikle Kolyada
commit: fa03af4591e8ac6163a9e652dd751e406be30a53
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep 16 12:45:46 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep 16 12:49:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa03af45

dev-perl/Net-DBus: Add ~sh keyword wrt bug #658328

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-perl/Net-DBus/Net-DBus-1.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Net-DBus/Net-DBus-1.1.0.ebuild 
b/dev-perl/Net-DBus/Net-DBus-1.1.0.ebuild
index e81492d07ea..75ce114c369 100644
--- a/dev-perl/Net-DBus/Net-DBus-1.1.0.ebuild
+++ b/dev-perl/Net-DBus/Net-DBus-1.1.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 DESCRIPTION="Perl extension for the DBus message system"
 
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ~ppc64 s390 sparc x86 
~amd64-fbsd"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ~ppc64 s390 ~sh sparc 
x86 ~amd64-fbsd"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2018-09-16 Thread Mikle Kolyada
commit: 4cfae0235b47d8412b21bb259caab2c84e551202
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep 16 12:46:33 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep 16 12:49:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cfae023

x11-misc/xdg-utils: Add ~sh keyword wrt bug #658328

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
index a60ae64e93e..ea5c888e835 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd"
 IUSE="doc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-games/newton/

2018-09-16 Thread Mikle Kolyada
commit: 7d806961adba707d2abddaacc534a7aba9511014
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep 16 13:28:41 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep 16 13:28:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d806961

dev-games/newton: amd64 stable wrt bug #661352

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-games/newton/newton-3.14.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-games/newton/newton-3.14.ebuild 
b/dev-games/newton/newton-3.14.ebuild
index ab3dde1136f..c29a2c84ade 100644
--- a/dev-games/newton/newton-3.14.ebuild
+++ b/dev-games/newton/newton-3.14.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/MADEAPPS/newton-dynamics/archive/${P}.tar.gz;
 
 LICENSE="ZLIB"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 RDEPEND=""



[gentoo-commits] proj/releng:master commit in: tools/

2018-09-16 Thread Matt Turner
commit: 726e5fb33d9853d6dd4553d5a84f6ba1342e3445
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Sep 16 15:07:10 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Sep 16 15:07:10 2018 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=726e5fb3

catalyst-auto: Save powerpc builds in separate directories

Otherwise we write the last_success_file when the first build succeeds
and prevent the second from executing. Both of these sets of builds
should probably be executed from the same catalyst-auto file...

 tools/catalyst-auto-ppc.conf   | 2 +-
 tools/catalyst-auto-ppc64.conf | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/catalyst-auto-ppc.conf b/tools/catalyst-auto-ppc.conf
index f35a2c12..71a4e840 100644
--- a/tools/catalyst-auto-ppc.conf
+++ b/tools/catalyst-auto-ppc.conf
@@ -36,7 +36,7 @@ convert_filename() {
 update_symlinks() {
# Symlink the latest stages3 to build from
local d f
-   for d in "${BUILD_SRCDIR_BASE}/builds/default" ; do
+   for d in "${BUILD_SRCDIR_BASE}/builds/default/ppc" ; do
pushd "${d}" >/dev/null
for f in $(ls stage3-ppc-*bz2 | grep -v latest | 
give_latest_from_dates) ; do
local of=$(echo "${f}" | convert_filename)

diff --git a/tools/catalyst-auto-ppc64.conf b/tools/catalyst-auto-ppc64.conf
index 06ae2abe..9af46fc0 100644
--- a/tools/catalyst-auto-ppc64.conf
+++ b/tools/catalyst-auto-ppc64.conf
@@ -37,7 +37,7 @@ convert_filename() {
 update_symlinks() {
# Symlink the latest stages3 to build from
local d f t
-   for d in "${BUILD_SRCDIR_BASE}/builds/default" ; do
+   for d in "${BUILD_SRCDIR_BASE}/builds/default/ppc64" ; do
pushd "${d}" >/dev/null
for t in ppc64-64ul ppc64-32ul; do
for f in $(ls stage3-${t}-*bz2 | grep -v latest | 
give_latest_from_dates) ; do



[gentoo-commits] proj/gcc-patches:master commit in: 3.4.6/gentoo/

2018-09-16 Thread Sergei Trofimovich
commit: 275e55387083d6dd25fea40962ac5ede7c9a1e95
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Sep 16 16:10:10 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Sep 16 16:10:10 2018 +
URL:https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=275e5538

3.4.6: backport 'struct ucontext' to 'ucontext_t' rename in glibc

Signed-off-by: Sergei Trofimovich  gentoo.org>

 3.4.6/gentoo/91_all_ucontext-to-ucontext_t.patch | 44 
 3.4.6/gentoo/README.history  |  1 +
 2 files changed, 45 insertions(+)

diff --git a/3.4.6/gentoo/91_all_ucontext-to-ucontext_t.patch 
b/3.4.6/gentoo/91_all_ucontext-to-ucontext_t.patch
new file mode 100644
index 000..00ea653
--- /dev/null
+++ b/3.4.6/gentoo/91_all_ucontext-to-ucontext_t.patch
@@ -0,0 +1,44 @@
+https://bugs.gentoo.org/664486
+
+--- a/gcc/config/alpha/linux.h
 b/gcc/config/alpha/linux.h
+@@ -89,7 +89,7 @@ Boston, MA 02111-1307, USA.  */
+   {   
\
+   struct rt_sigframe {\
+ siginfo_t info;   \
+-struct ucontext uc;   \
++ucontext_t uc;\
+   } *rt_ = (CONTEXT)->cfa;\
+   sc_ = _->uc.uc_mcontext; \
+   }   
\
+--- a/gcc/config/i386/linux.h
 b/gcc/config/i386/linux.h
+@@ -260,7 +260,7 @@ Boston, MA 02111-1307, USA.  */
+ siginfo_t *pinfo; \
+ void *puc;\
+ siginfo_t info;   \
+-struct ucontext uc;   \
++ucontext_t uc;\
+   } *rt_ = (CONTEXT)->cfa;\
+   sc_ = (struct sigcontext *) _->uc.uc_mcontext;   \
+   }   
\
+--- a/gcc/config/i386/linux64.h
 b/gcc/config/i386/linux64.h
+@@ -112,7 +112,7 @@ Boston, MA 02111-1307, USA.  */
+ if (*(unsigned char *)(pc_+0) == 0x48 \
+   && *(unsigned long *)(pc_+1) == 0x050f000fc0c7) \
+   {   
\
+-  struct ucontext *uc_ = (CONTEXT)->cfa;  \
++  ucontext_t *uc_ = (CONTEXT)->cfa;   \
+   sc_ = (struct sigcontext *) _->uc_mcontext;  \
+   }   
\
+ else  \
+@@ -182,7 +182,7 @@ Boston, MA 02111-1307, USA.  */
+ siginfo_t *pinfo; \
+ void *puc;\
+ siginfo_t info;   \
+-struct ucontext uc;   \
++ucontext_t uc;\
+   } *rt_ = (CONTEXT)->cfa;\
+   sc_ = (struct sigcontext *) _->uc.uc_mcontext;   \
+   }   
\

diff --git a/3.4.6/gentoo/README.history b/3.4.6/gentoo/README.history
index da425fb..a2e067e 100644
--- a/3.4.6/gentoo/README.history
+++ b/3.4.6/gentoo/README.history
@@ -1,5 +1,6 @@
 1.9[pending]
- 00_all_gcc-trampolinewarn.patch
+   + 91_all_ucontext-to-ucontext_t.patch
 
 1.806 Apr 2015
+ 10_all_gcc-3.4.6-c-parse-bison-3.patch



[gentoo-commits] repo/gentoo:master commit in: profiles/releases/13.0/

2018-09-16 Thread Mike Gilbert
commit: ac547f4a2ddb3cb5eb903ff9f6aec04782f8447a
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Sep 16 16:50:15 2018 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Sep 16 16:58:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac547f4a

profiles: mask >=www-client/chromium-70 in 13.0 profiles

Signed-off-by: Mike Gilbert  gentoo.org>

 profiles/releases/13.0/package.mask | 4 
 1 file changed, 4 insertions(+)

diff --git a/profiles/releases/13.0/package.mask 
b/profiles/releases/13.0/package.mask
index 1df5dca362c..eff23bec806 100644
--- a/profiles/releases/13.0/package.mask
+++ b/profiles/releases/13.0/package.mask
@@ -1,6 +1,10 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+# Mike Gilbert  (16 Sep 2018)
+# requires >=nodejs-7.6.0 which is not available in 13.0 based profiles.
+>=www-client/chromium-70
+
 # Patrick McLean  (10 Jul 2018)
 # requires >=nodejs-8.10 which is not available in 13.0 based profiles.
 # Please migrate to one of the 17.0 release profiles



[gentoo-commits] repo/gentoo:master commit in: www-client/chromium/

2018-09-16 Thread Mike Gilbert
commit: be3866a6a43a962a330fee98c9ac9dc483acf8c8
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Sep 16 16:53:55 2018 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Sep 16 16:58:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be3866a6

www-client/chromium: depend on >=net-libs/nodejs-7.6.0

Needed for async function support.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function

Closes: https://bugs.gentoo.org/665548
Package-Manager: Portage-2.3.49_p2, Repoman-2.3.10_p48
Signed-off-by: Mike Gilbert  gentoo.org>

 www-client/chromium/chromium-70.0.3538.16.ebuild | 2 +-
 www-client/chromium/chromium-70.0.3538.9.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-client/chromium/chromium-70.0.3538.16.ebuild 
b/www-client/chromium/chromium-70.0.3538.16.ebuild
index 364d300caba..64b814054ba 100644
--- a/www-client/chromium/chromium-70.0.3538.16.ebuild
+++ b/www-client/chromium/chromium-70.0.3538.16.ebuild
@@ -97,7 +97,7 @@ DEPEND="${COMMON_DEPEND}
dev-util/gn
>=dev-util/gperf-3.0.3
>=dev-util/ninja-1.7.2
-   >=net-libs/nodejs-6.9.4[inspector]
+   >=net-libs/nodejs-7.6.0[inspector]
sys-apps/hwids[usb(+)]
>=sys-devel/bison-2.4.3
sys-devel/flex

diff --git a/www-client/chromium/chromium-70.0.3538.9.ebuild 
b/www-client/chromium/chromium-70.0.3538.9.ebuild
index 364d300caba..64b814054ba 100644
--- a/www-client/chromium/chromium-70.0.3538.9.ebuild
+++ b/www-client/chromium/chromium-70.0.3538.9.ebuild
@@ -97,7 +97,7 @@ DEPEND="${COMMON_DEPEND}
dev-util/gn
>=dev-util/gperf-3.0.3
>=dev-util/ninja-1.7.2
-   >=net-libs/nodejs-6.9.4[inspector]
+   >=net-libs/nodejs-7.6.0[inspector]
sys-apps/hwids[usb(+)]
>=sys-devel/bison-2.4.3
sys-devel/flex



[gentoo-commits] repo/gentoo:master commit in: media-libs/libextractor/, media-libs/libextractor/files/

2018-09-16 Thread Andreas Sturmlechner
commit: f4bdd7b8461e2224d8e121341137cf3ba8bc65e7
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Sep 16 11:41:48 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Sep 16 11:42:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4bdd7b8

media-libs/libextractor: Fix build with ffmpeg-4

Closes: https://bugs.gentoo.org/666162
Package-Manager: Portage-2.3.49, Repoman-2.3.10

 .../files/libextractor-1.6-ffmpeg-4.patch| 20 
 media-libs/libextractor/libextractor-1.6.ebuild  |  5 -
 2 files changed, 24 insertions(+), 1 deletion(-)

diff --git a/media-libs/libextractor/files/libextractor-1.6-ffmpeg-4.patch 
b/media-libs/libextractor/files/libextractor-1.6-ffmpeg-4.patch
new file mode 100644
index 000..90360afd60a
--- /dev/null
+++ b/media-libs/libextractor/files/libextractor-1.6-ffmpeg-4.patch
@@ -0,0 +1,20 @@
+--- a/src/plugins/thumbnailffmpeg_extractor.c 2018-05-09 
23:14:02.721105141 +0200
 b/src/plugins/thumbnailffmpeg_extractor.c 2018-05-09 
23:14:48.491629162 +0200
+@@ -107,7 +107,7 @@
+ /**
+  * Number of bytes to feed to libav in one go, with padding (padding is 
zeroed).
+  */
+-#define PADDED_BUFFER_SIZE (BUFFER_SIZE + FF_INPUT_BUFFER_PADDING_SIZE)
++#define PADDED_BUFFER_SIZE (BUFFER_SIZE + AV_INPUT_BUFFER_PADDING_SIZE)
+
+ /**
+  * Global handle to MAGIC data.
+@@ -355,7 +355,7 @@
+encoder_codec_ctx->mb_lmin = encoder_codec_ctx->qmin * FF_QP2LAMBDA;
+encoder_codec_ctx->mb_lmax = encoder_codec_ctx->qmax * FF_QP2LAMBDA;
+ #endif
+-   encoder_codec_ctx->flags  = CODEC_FLAG_QSCALE;
++   encoder_codec_ctx->flags  = AV_CODEC_FLAG_QSCALE;
+encoder_codec_ctx->global_quality = encoder_codec_ctx->qmin * FF_QP2LAMBDA;
+
+dst_frame->pts = 1;

diff --git a/media-libs/libextractor/libextractor-1.6.ebuild 
b/media-libs/libextractor/libextractor-1.6.ebuild
index cf862f1f85c..e870331de79 100644
--- a/media-libs/libextractor/libextractor-1.6.ebuild
+++ b/media-libs/libextractor/libextractor-1.6.ebuild
@@ -57,7 +57,10 @@ RDEPEND="${COMMON_DEPEND}
!sci-biology/glimmer
 "
 
-PATCHES=( "${FILESDIR}/${P}-CVE-2017-17440.patch" )
+PATCHES=(
+   "${FILESDIR}/${P}-CVE-2017-17440.patch"
+   "${FILESDIR}/${P}-ffmpeg-4.patch"
+)
 
 src_prepare() {
default



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Unicode-String/

2018-09-16 Thread Mikle Kolyada
commit: 5c0edc3aae7b7bc9f2466d92e624acdc8e36bb51
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep 16 13:05:28 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep 16 13:05:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c0edc3a

dev-perl/Unicode-String: sh stable wrt bug #657190

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-perl/Unicode-String/Unicode-String-2.100.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Unicode-String/Unicode-String-2.100.0.ebuild 
b/dev-perl/Unicode-String/Unicode-String-2.100.0.ebuild
index d18333629de..47845c8134a 100644
--- a/dev-perl/Unicode-String/Unicode-String-2.100.0.ebuild
+++ b/dev-perl/Unicode-String/Unicode-String-2.100.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="String manipulation for Unicode strings"
 
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~x86-linux"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 
~x86-linux"
 IUSE=""
 
 RDEPEND=">=virtual/perl-MIME-Base64-2.11"



[gentoo-commits] repo/gentoo:master commit in: dev-python/pysha3/

2018-09-16 Thread Mikle Kolyada
commit: 07685efe713784968581f6314f75d4cff30b4fdc
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep 16 13:02:38 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep 16 13:02:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07685efe

dev-python/pysha3: mark sh/m68k stable

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-python/pysha3/pysha3-1.0.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pysha3/pysha3-1.0.2-r1.ebuild 
b/dev-python/pysha3/pysha3-1.0.2-r1.ebuild
index eb7479230d3..096a436ab19 100644
--- a/dev-python/pysha3/pysha3-1.0.2-r1.ebuild
+++ b/dev-python/pysha3/pysha3-1.0.2-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
 
 LICENSE="CC0-1.0 PSF-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 
~x64-cygwin ~amd64-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: eclass/

2018-09-16 Thread Andreas Sturmlechner
commit: f198fdc373429429e347c7c8b6273254a66d4076
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Sep 16 08:52:36 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Sep 16 11:22:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f198fdc3

cmake-utils.eclass: Move CMAKE_USER_MAKE_RULES_OVERRIDE to gentoo config

Closes: https://bugs.gentoo.org/631522

 eclass/cmake-utils.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass
index d69c79f83b4..98f5fa41b55 100644
--- a/eclass/cmake-utils.eclass
+++ b/eclass/cmake-utils.eclass
@@ -610,6 +610,7 @@ cmake-utils_src_configure() {
SET (CMAKE_INSTALL_LIBDIR ${libdir} CACHE PATH "Output 
directory for libraries")
SET (CMAKE_INSTALL_INFODIR "${EPREFIX}/usr/share/info" CACHE 
PATH "")
SET (CMAKE_INSTALL_MANDIR "${EPREFIX}/usr/share/man" CACHE PATH 
"")
+   SET (CMAKE_USER_MAKE_RULES_OVERRIDE "${build_rules}" CACHE 
FILEPATH "Gentoo override rules")
_EOF_
[[ "${NOCOLOR}" = true || "${NOCOLOR}" = yes ]] && echo 'SET 
(CMAKE_COLOR_MAKEFILE OFF CACHE BOOL "pretty colors during make" FORCE)' >> 
"${common_config}"
 
@@ -668,7 +669,6 @@ cmake-utils_src_configure() {
"${mycmakeargs_local[@]}"
-DCMAKE_BUILD_TYPE="${CMAKE_BUILD_TYPE}"
$([[ ${EAPI} == 5 ]] && echo -DCMAKE_INSTALL_DO_STRIP=OFF)
-   -DCMAKE_USER_MAKE_RULES_OVERRIDE="${build_rules}"
-DCMAKE_TOOLCHAIN_FILE="${toolchain_file}"
"${MYCMAKEARGS}"
)



  1   2   3   >