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

2019-05-18 Thread Ulrich Müller
commit: 9a964bc7f58242d9fc71bf2fd532337737ca5107
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sun May 19 06:47:25 2019 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sun May 19 06:47:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a964bc7

sys-kernel/linux-firmware: Update live ebuild.

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Ulrich Müller  gentoo.org>

 .../linux-firmware/linux-firmware-.ebuild  | 287 -
 1 file changed, 225 insertions(+), 62 deletions(-)

diff --git a/sys-kernel/linux-firmware/linux-firmware-.ebuild 
b/sys-kernel/linux-firmware/linux-firmware-.ebuild
index b96ea070749..7625a280f3c 100644
--- a/sys-kernel/linux-firmware/linux-firmware-.ebuild
+++ b/sys-kernel/linux-firmware/linux-firmware-.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="6"
+EAPI=7
 inherit savedconfig
 
 if [[ ${PV} == * ]]; then
@@ -17,54 +17,60 @@ fi
 DESCRIPTION="Linux firmware files"
 
HOMEPAGE="https://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git";
 
-LICENSE="linux-firmware ( BSD ISC MIT no-source-code ) GPL-2 GPL-2+"
+LICENSE="GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 )
+   redistributable? (
+   linux-fw-redistributable ( BSD-2 BSD BSD-4 ISC MIT 
no-source-code ) )
+   unknown-license? ( all-rights-reserved )"
 SLOT="0"
-IUSE="savedconfig"
+IUSE="+redistributable savedconfig unknown-license"
+RESTRICT="binchecks strip
+   unknown-license? ( bindist )"
 
-DEPEND=""
 RDEPEND="!savedconfig? (
-   !sys-firmware/alsa-firmware[alsa_cards_ca0132]
-   !sys-firmware/alsa-firmware[alsa_cards_korg1212]
-   !sys-firmware/alsa-firmware[alsa_cards_maestro3]
-   !sys-firmware/alsa-firmware[alsa_cards_sb16]
-   !sys-firmware/alsa-firmware[alsa_cards_ymfpci]
-   !media-tv/cx18-firmware
-   ! 
${PN}.conf
-   find * \( \! -type d -and \! -name ${PN}.conf \) >> ${PN}.conf
+   find * ! -type d ! -name ${PN}.conf >> ${PN}.conf
 
if use savedconfig; then
restore_config ${PN}.conf
-   ebegin "Removing all files not listed in config"
 
-   local file delete_file preserved_file preserved_files=()
+   local file preserved_files=() remove=()
 
while IFS= read -r file; do
# Ignore comments.
@@ -95,23 +257,13 @@ src_prepare() {
done < ${PN}.conf || die
 
while IFS= read -d "" -r file; do
-   delete_file=true
-   for preserved_file in "${preserved_files[@]}"; do
-   if [[ "${file}" == "${preserved_file}" ]]; then
-   delete_file=false
-   fi
-   done
-
-   if ${delete_file}; then
-   rm "${file}" || die
-   fi
-   done < <(find * \( \! -type d -and \! -name ${PN}.conf \) 
-print0 || die)
-
-   eend || die
-
-   # remove empty directories, bug #396073
-   find -type d -empty -delete || die
+   has "${file}" "${preserved_files[@]}" || 
remove+=("${file}")
+   done < <(find * ! -type d ! -name ${PN}.conf -print0 || die)
+   printf "%s\0" "${remove[@]}" | xargs -0 --no-run-if-empty rm || 
die
fi
+
+   # remove empty directories, bug #396073
+   find -type d -empty -delete || die
 }
 
 src_install() {
@@ -132,4 +284,15 @@ pkg_preinst() {
 pkg_postinst() {
elog "If you are only interested in particular firmware files, edit the 
saved"
elog "configfile and remove those that you do not want."
+
+   local ver
+   for ver in ${REPLACING_VERSIONS}; do
+   if ver_test ${ver} -lt 20190514; then
+   elog
+   elog 'Starting with version 20190514, installation of 
many firmware'
+   elog 'files is controlled by USE flags. Please review 
your USE flag'
+   elog 'and package.license settings if you are missing 
some files.'
+   break
+   fi
+   done
 }



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

2019-05-18 Thread Ulrich Müller
commit: c75d623018a94633efb092e4cd3e2cc78e83a1f2
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sun May 19 06:34:37 2019 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sun May 19 06:34:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c75d6230

sys-kernel/linux-firmware: Flip order of if blocks in src_prepare.

Otherwise, the second rm will fail because of previously removed files.
Remove the ewarn message which isn't useful after separation of flags.

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Ulrich Müller  gentoo.org>

 sys-kernel/linux-firmware/linux-firmware-20190514.ebuild | 14 +-
 1 file changed, 5 insertions(+), 9 deletions(-)

diff --git a/sys-kernel/linux-firmware/linux-firmware-20190514.ebuild 
b/sys-kernel/linux-firmware/linux-firmware-20190514.ebuild
index 45c50b3372d..d89f8c43e2e 100644
--- a/sys-kernel/linux-firmware/linux-firmware-20190514.ebuild
+++ b/sys-kernel/linux-firmware/linux-firmware-20190514.ebuild
@@ -228,6 +228,11 @@ src_prepare() {
# remove sources and documentation (wildcards are expanded)
rm -r ${source_files[@]} || die
 
+   if use !unknown-license; then
+   # remove files in the unknown_license blacklist
+   rm "${unknown_license[@]}" || die
+   fi
+
if use !redistributable; then
# remove files _not_ in the free_software whitelist
local file remove=()
@@ -235,15 +240,6 @@ src_prepare() {
has "${file#./}" "${free_software[@]}" || 
remove+=("${file}")
done < <(find * ! -type d -print0 || die)
printf "%s\0" "${remove[@]}" | xargs -0 rm || die
-
-   if use unknown-license; then
-   ewarn 'The "unknown-license" flag is set, while 
"-redistributable"'
-   ewarn 'asks for free software only. Ignoring 
"unknown-license".'
-   fi
-   fi
-   if use !unknown-license; then
-   # remove files in the unknown_license blacklist
-   rm "${unknown_license[@]}" || die
fi
 
echo "# Remove files that shall not be installed from this list." > 
${PN}.conf



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

2019-05-18 Thread Ulrich Müller
commit: f8fd33691531ddd341d8fb4f081d1fe0f4caba76
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sun May 19 06:36:49 2019 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sun May 19 06:36:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8fd3369

sys-kernel/linux-firmware: Delete redistributable? ( bindist ) restriction.

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Ulrich Müller  gentoo.org>

 sys-kernel/linux-firmware/linux-firmware-20190514.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/sys-kernel/linux-firmware/linux-firmware-20190514.ebuild 
b/sys-kernel/linux-firmware/linux-firmware-20190514.ebuild
index d89f8c43e2e..d3063e05cb4 100644
--- a/sys-kernel/linux-firmware/linux-firmware-20190514.ebuild
+++ b/sys-kernel/linux-firmware/linux-firmware-20190514.ebuild
@@ -24,7 +24,6 @@ LICENSE="GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 )
 SLOT="0"
 IUSE="+redistributable savedconfig unknown-license"
 RESTRICT="binchecks strip
-   redistributable? ( bindist )
unknown-license? ( bindist )"
 
 RDEPEND="!savedconfig? (



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfce4-session/

2019-05-18 Thread Michał Górny
commit: 4364f4ecabd370cabf5f260da4fb80e0788d25d4
Author: Michał Górny  gentoo  org>
AuthorDate: Sun May 19 06:05:48 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun May 19 06:18:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4364f4ec

xfce-base/xfce4-session: Bump to 4.13.2

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfce4-session/Manifest   |  1 +
 .../xfce4-session/xfce4-session-4.13.2.ebuild  | 77 ++
 2 files changed, 78 insertions(+)

diff --git a/xfce-base/xfce4-session/Manifest b/xfce-base/xfce4-session/Manifest
index 6f01c726f4e..5e3874f9950 100644
--- a/xfce-base/xfce4-session/Manifest
+++ b/xfce-base/xfce4-session/Manifest
@@ -1,2 +1,3 @@
 DIST xfce4-session-4.12.1.tar.bz2 1289284 BLAKE2B 
00af274ac1160a413c9e2c8b308dfc84248f0078e8c294528614bb642988468f9dadaae906b4a8e2179d2beef0a48ebf5e2eedcb2ed3ad7ea73a8f7a9b90e224
 SHA512 
d7f37dbff59acb316965ab2224674ac3b5b7cfd7262acd4426b582001cee313945acb8883be21553dd6d7a046934bbbe116f451e6d5fd35b6fa5444da94605df
 DIST xfce4-session-4.13.1.tar.bz2 1322823 BLAKE2B 
e50cc2628a068bed39d2aa6344eab7676e6464c84e3cf11d79518f78db54ea01316bd098a541b6f0897f3decbed2eb37e55009d4bf89d460e136d7a44d31c26a
 SHA512 
5845e3591919e23ca176199e81075a097ef9d65cbcf23b34d84afc649a307bfa8c6492e3a01855cacff9328da809725213ec1fa9d76024c0a0c25cce3c51da1b
+DIST xfce4-session-4.13.2.tar.bz2 829041 BLAKE2B 
3b5c8a5722b7a38a95e12ec2145e2c155928e0ee5d7d8e9f47c86ec4e03f34b983bcd3dcbc1a3d6c2d84f991ed8e9f59b7db76716862c91290280db507a8b84e
 SHA512 
cb1e63a3df9c4ac3efcb0cce20cb5528f9d1a46731ad4b32634ad5f4a53711f05b40d98464bfd562b4e3d42b2555827ece03e63c6a433e879fa0f0a4ccda6a57

diff --git a/xfce-base/xfce4-session/xfce4-session-4.13.2.ebuild 
b/xfce-base/xfce4-session/xfce4-session-4.13.2.ebuild
new file mode 100644
index 000..c9dc5edb2d0
--- /dev/null
+++ b/xfce-base/xfce4-session/xfce4-session-4.13.2.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit xdg-utils
+
+DESCRIPTION="A session manager for the Xfce desktop environment"
+HOMEPAGE="https://docs.xfce.org/xfce/xfce4-session/start";
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2";
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="elogind nls policykit systemd +xscreensaver"
+
+COMMON_DEPEND="x11-apps/iceauth
+   >=dev-libs/glib-2.42
+   >=x11-libs/gtk+-3.22:3
+   x11-libs/libSM:=
+   x11-libs/libwnck:3=
+   x11-libs/libX11:=
+   >=xfce-base/libxfce4util-4.12:=
+   >=xfce-base/libxfce4ui-4.12.1:=[gtk3(+)]
+   >=xfce-base/xfconf-4.12:=
+   policykit? ( >=sys-auth/polkit-0.102:= )"
+RDEPEND="${COMMON_DEPEND}
+   x11-apps/xrdb
+   nls? ( x11-misc/xdg-user-dirs )
+   xscreensaver? ( || (
+   >=x11-misc/xscreensaver-5.26
+   >=x11-misc/xlockmore-5.43
+   x11-misc/slock
+   x11-misc/alock[pam]
+   ) )"
+DEPEND="${COMMON_DEPEND}
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig"
+
+REQUIRED_USE="elogind? ( policykit )
+   systemd? ( policykit )"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-4.10.1-alock_support_to_xflock4.patch
+# TODO: this patch needs updating for the new version, and finding
+# upstream bug.
+#  "${FILESDIR}"/${PN}-4.12.1-light-locker_support_to_xflock4.patch
+)
+
+src_configure() {
+   local myconf=(
+   $(use_enable policykit polkit)
+   --with-xsession-prefix="${EPREFIX}"/usr
+   )
+
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${ED}" -name '*.la' -delete || die
+
+   local sessiondir=/etc/X11/Sessions
+   echo startxfce4 > "${T}"/Xfce4 || die
+   exeinto ${sessiondir}
+   doexe "${T}"/Xfce4
+   dosym Xfce4 ${sessiondir}/Xfce
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/thunar/

2019-05-18 Thread Michał Górny
commit: 0311bd2876cec779fd54a27a98e0656421c9320d
Author: Michał Górny  gentoo  org>
AuthorDate: Sun May 19 05:53:20 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun May 19 06:18:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0311bd28

xfce-base/thunar: Bump to 1.8.6

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/thunar/Manifest|  1 +
 xfce-base/thunar/thunar-1.8.6.ebuild | 76 
 2 files changed, 77 insertions(+)

diff --git a/xfce-base/thunar/Manifest b/xfce-base/thunar/Manifest
index ac73bbc8cce..9d1c56781f5 100644
--- a/xfce-base/thunar/Manifest
+++ b/xfce-base/thunar/Manifest
@@ -2,3 +2,4 @@ DIST Thunar-1.6.16.tar.bz2 1977562 BLAKE2B 
efad6b45a64c5c80bff3d829207a1a0b45b4b
 DIST Thunar-1.6.17.tar.bz2 1995398 BLAKE2B 
c6bc0ebc29cdf8b0d3d184fd5b5019bb6f4caa4e43e16237325ae938e95c077198801e7f0d5210c458e316e0c7f35aa735f8e5bca61372c3cb2f5cf40b78c59a
 SHA512 
2ace85994af51e1651b1e58c4436b5d4a986e75ef56f85c765e7dad8698681a73e009feafff0c9e056153b13c37b915a43529451960a209ae7e0bc23544492b8
 DIST Thunar-1.8.4.tar.bz2 2349249 BLAKE2B 
4f1ac9c3177587b5ff2f3acd7220fb08921fc9db9711dd5925b65068db9bb14e7cf9d17834a96395c3fc27927030dbd2ba70d08c5b14d28e4aaf553493bce5f2
 SHA512 
886c0789aa19c2ab2ef34892c4afd09c857585b4796140ea3c84ccb9e1e1ca2935cf7e3a760a6ca8d8c68a583412500b4779878c7f48c9365c3ac7bf0eec
 DIST Thunar-1.8.5.tar.bz2 2303914 BLAKE2B 
e47e3e635e883ea4d044c8a66014bc11f21da780b1d834f25678763ace0609ee77755fc04b6a437f238275b0a9bf8df485cc826a6bfef93751427ee93d7e43ac
 SHA512 
491f1a69cc1e825c9c2493af719ba22811d1300f1dfe06e98c45c878649921608d14c08e4f61551dfa3d5227ea0b0af6abad1c953d6fe4b9274ade76bc33e6cc
+DIST Thunar-1.8.6.tar.bz2 2317253 BLAKE2B 
ee992640e1c3df64f7aad13390a263e4599c9f0a19640b77bf5383ab6f93898f8785c86bbe307da9158390aa435699eb9a70ea3a96fb82d3b726db657436ce52
 SHA512 
086dc139627d8f11341b2db91358ef1831d2b8494d34abac49355dbaf850a21c30f979294f9adf2bc8548e5f817a4e165803a3db74cd989cd3867a4e228d74db

diff --git a/xfce-base/thunar/thunar-1.8.6.ebuild 
b/xfce-base/thunar/thunar-1.8.6.ebuild
new file mode 100644
index 000..453b5153905
--- /dev/null
+++ b/xfce-base/thunar/thunar-1.8.6.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit xdg-utils
+
+MY_P=${P^}
+
+DESCRIPTION="File manager for the Xfce desktop environment"
+HOMEPAGE="https://www.xfce.org/projects/ 
https://docs.xfce.org/xfce/thunar/start";
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${MY_P}.tar.bz2";
+
+LICENSE="GPL-2+ LGPL-2+"
+SLOT="0/3"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="exif introspection libnotify pcre test +trash-panel-plugin udisks"
+
+GVFS_DEPEND=">=gnome-base/gvfs-1.18.3"
+COMMON_DEPEND=">=dev-lang/perl-5.6
+   >=dev-libs/glib-2.42:=
+   >=x11-libs/gdk-pixbuf-2.14:=
+   >=x11-libs/gtk+-3.22:3=
+   >=xfce-base/exo-0.12:=
+   >=xfce-base/libxfce4ui-4.12:=
+   >=xfce-base/libxfce4util-4.12:=
+   >=xfce-base/xfconf-4.12:=
+   exif? ( >=media-libs/libexif-0.6.19:= )
+   introspection? ( dev-libs/gobject-introspection:= )
+   libnotify? ( >=x11-libs/libnotify-0.7:= )
+   pcre? ( >=dev-libs/libpcre-6:= )
+   trash-panel-plugin? ( >=xfce-base/xfce4-panel-4.10:= )
+   udisks? ( virtual/libgudev:= )"
+RDEPEND="${COMMON_DEPEND}
+   >=dev-util/desktop-file-utils-0.20-r1
+   x11-misc/shared-mime-info
+   trash-panel-plugin? ( ${GVFS_DEPEND} )
+   udisks? (
+   virtual/udev
+   ${GVFS_DEPEND}[udisks,udev]
+   )"
+DEPEND="${COMMON_DEPEND}
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig"
+
+S=${WORKDIR}/${MY_P}
+
+DOCS=( AUTHORS ChangeLog FAQ HACKING NEWS README THANKS TODO )
+
+src_configure() {
+   local myconf=(
+   $(use_enable introspection)
+   $(use_enable udisks gudev)
+   $(use_enable libnotify notifications)
+   $(use_enable exif)
+   $(use_enable pcre)
+   $(use_enable trash-panel-plugin tpa-plugin)
+   )
+
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   xdg_desktop_database_update
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: profiles/default/linux/amd64/17.0/developer/, ...

2019-05-18 Thread Michał Górny
commit: 1540ad80e83b4b9ed628a037eb7476974a238898
Author: Arfrever Frehtes Taifersar Arahesis  Apache  Org>
AuthorDate: Mon Mar 18 07:13:01 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun May 19 06:18:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1540ad80

profiles: Update LDFLAGS in developer profiles

Closes: https://bugs.gentoo.org/680828
Signed-off-by: Michał Górny  gentoo.org>

 profiles/default/linux/amd64/13.0/developer/make.defaults | 6 +++---
 profiles/default/linux/amd64/17.0/developer/make.defaults | 6 +++---
 profiles/default/linux/amd64/17.1/developer/make.defaults | 6 +++---
 profiles/default/linux/x86/13.0/developer/make.defaults   | 6 +++---
 profiles/default/linux/x86/17.0/developer/make.defaults   | 6 +++---
 5 files changed, 15 insertions(+), 15 deletions(-)

diff --git a/profiles/default/linux/amd64/13.0/developer/make.defaults 
b/profiles/default/linux/amd64/13.0/developer/make.defaults
index f74d4f114ab..28426a7b24f 100644
--- a/profiles/default/linux/amd64/13.0/developer/make.defaults
+++ b/profiles/default/linux/amd64/13.0/developer/make.defaults
@@ -1,7 +1,7 @@
-# Copyright 1999-2013 Gentoo Foundation.
+# Copyright 2010-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-# Adding -Wl,--hash-style=gnu to default LDFLAGS for linux/amd64 dev profile
+# Adding -Wl,--defsym=__gentoo_check_ldflags__=0 to default LDFLAGS for 
linux/amd64 dev profile
 # This will help developers track packages, that don't respect LDFLAGS, down
 # more effectively
-LDFLAGS="-Wl,--hash-style=gnu ${LDFLAGS}"
+LDFLAGS="${LDFLAGS} -Wl,--defsym=__gentoo_check_ldflags__=0"

diff --git a/profiles/default/linux/amd64/17.0/developer/make.defaults 
b/profiles/default/linux/amd64/17.0/developer/make.defaults
index f74d4f114ab..28426a7b24f 100644
--- a/profiles/default/linux/amd64/17.0/developer/make.defaults
+++ b/profiles/default/linux/amd64/17.0/developer/make.defaults
@@ -1,7 +1,7 @@
-# Copyright 1999-2013 Gentoo Foundation.
+# Copyright 2010-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-# Adding -Wl,--hash-style=gnu to default LDFLAGS for linux/amd64 dev profile
+# Adding -Wl,--defsym=__gentoo_check_ldflags__=0 to default LDFLAGS for 
linux/amd64 dev profile
 # This will help developers track packages, that don't respect LDFLAGS, down
 # more effectively
-LDFLAGS="-Wl,--hash-style=gnu ${LDFLAGS}"
+LDFLAGS="${LDFLAGS} -Wl,--defsym=__gentoo_check_ldflags__=0"

diff --git a/profiles/default/linux/amd64/17.1/developer/make.defaults 
b/profiles/default/linux/amd64/17.1/developer/make.defaults
index f74d4f114ab..28426a7b24f 100644
--- a/profiles/default/linux/amd64/17.1/developer/make.defaults
+++ b/profiles/default/linux/amd64/17.1/developer/make.defaults
@@ -1,7 +1,7 @@
-# Copyright 1999-2013 Gentoo Foundation.
+# Copyright 2010-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-# Adding -Wl,--hash-style=gnu to default LDFLAGS for linux/amd64 dev profile
+# Adding -Wl,--defsym=__gentoo_check_ldflags__=0 to default LDFLAGS for 
linux/amd64 dev profile
 # This will help developers track packages, that don't respect LDFLAGS, down
 # more effectively
-LDFLAGS="-Wl,--hash-style=gnu ${LDFLAGS}"
+LDFLAGS="${LDFLAGS} -Wl,--defsym=__gentoo_check_ldflags__=0"

diff --git a/profiles/default/linux/x86/13.0/developer/make.defaults 
b/profiles/default/linux/x86/13.0/developer/make.defaults
index 79e030eb8d8..e0cc9679f94 100644
--- a/profiles/default/linux/x86/13.0/developer/make.defaults
+++ b/profiles/default/linux/x86/13.0/developer/make.defaults
@@ -1,7 +1,7 @@
-# Copyright 1999-2013 Gentoo Foundation.
+# Copyright 2010-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-# Adding -Wl,--hash-style=gnu to default LDFLAGS for linux/x86 dev profile
+# Adding -Wl,--defsym=__gentoo_check_ldflags__=0 to default LDFLAGS for 
linux/x86 dev profile
 # This will help developers track down packages, that don't respect LDFLAGS,
 # more easily
-LDFLAGS="-Wl,--hash-style=gnu ${LDFLAGS}"
+LDFLAGS="${LDFLAGS} -Wl,--defsym=__gentoo_check_ldflags__=0"

diff --git a/profiles/default/linux/x86/17.0/developer/make.defaults 
b/profiles/default/linux/x86/17.0/developer/make.defaults
index 79e030eb8d8..e0cc9679f94 100644
--- a/profiles/default/linux/x86/17.0/developer/make.defaults
+++ b/profiles/default/linux/x86/17.0/developer/make.defaults
@@ -1,7 +1,7 @@
-# Copyright 1999-2013 Gentoo Foundation.
+# Copyright 2010-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-# Adding -Wl,--hash-style=gnu to default LDFLAGS for linux/x86 dev profile
+# Adding -Wl,--defsym=__gentoo_check_ldflags__=0 to default LDFLAGS for 
linux/x86 dev profile
 # This will help developers track down packages, that don't respect LDFLAGS,
 # more easily
-LDFLAGS="-Wl,--hash-style=gnu ${LDFLAGS}"
+LDFLAGS="${LDFLAGS} -Wl,--de

[gentoo-commits] proj/mozilla:master commit in: www-client/torbrowser/

2019-05-18 Thread Jory Pratt
commit: 526bb208cf83381fe68587a94bbfde8155b57852
Author: Jory Pratt  gentoo  org>
AuthorDate: Sun May 19 05:34:09 2019 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Sun May 19 05:34:09 2019 +
URL:https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=526bb208

www-client/torbrowser: Version bump

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Jory Pratt  gentoo.org>

 www-client/torbrowser/Manifest  | 6 +++---
 ...0.6.1.8.0.8.1.1-r2.ebuild => torbrowser-60.6.1.8.0.9.1.3.ebuild} | 0
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/www-client/torbrowser/Manifest b/www-client/torbrowser/Manifest
index 5802d77..ccc59e0 100644
--- a/www-client/torbrowser/Manifest
+++ b/www-client/torbrowser/Manifest
@@ -1,4 +1,4 @@
 DIST firefox-60.6-patches-07.tar.xz 37404 BLAKE2B 
5516ff768bee0253131381fdba3e08785ab31bb29e44ad7f7e2956fb7624fafc9bf22f892ddbd0617e5e7d18500686a9975a60ea77d23a2853f35936cd142030
 SHA512 
3c4160e632155b0a239e22d0c1b1c701545b0f6d0915f9bdcf3b8431cee1abf650191ffafc5c3224a61279c8b1b52a80444c811a3914e16127411991c963292b
-DIST tor-browser-60.6.1esr-8.0-1-build1.tar.gz 386384151 BLAKE2B 
18c9a07296317a0e62e40939c9b839850069836f9d489910fc364e1e2929a3218d3a2fc8a521a59d8971b925a09e0c29820a964bc326b0143480f2839b9f72cf
 SHA512 
9a39ed63494cd2be4952312d8160884f2fa35211f3ea54fc2e9dcc737236102938d8c17b3a112420d847b7c7e98d0f33f210afb3d0fd979e21f7e23769372b4b
-DIST tor-browser-linux32-8.0.8_en-US.tar.xz 76761628 BLAKE2B 
0c21f3c5718da9fcfe8961a59cd98be495411ea85200294f1918aa9c27af25428e18d7b8a52bab1c27360e6ded221ea981554b7f4130ccd646bc9edb53039f43
 SHA512 
ebd2b93bdaf87d34cb03ecc2d0811d376a3942de9ea84b6f049358127e91c76aaef4bdd7fcaa9467660e907f9ee5d3fd239f80d7a1667fea2e9b5fbb80355d42
-DIST tor-browser-linux64-8.0.8_en-US.tar.xz 75228720 BLAKE2B 
2e368225ca44868b700f1a6c8cb7a0f8f532adbca0f38d998741f5a8e24b76553ab861416724d0101b5b30a8bb305b96d308bfc6315619be4489a8f98ebc979a
 SHA512 
a046d56280b24c3a524b894b94ecacd876d27f732bcc1744a5b194684b1477fcb468e6978a20bee456242708e7f9a4e58a7e82e58f31ed3b84f652689cec546e
+DIST tor-browser-60.6.1esr-8.0-1-build3.tar.gz 386385947 BLAKE2B 
ad979d6ceacf10588abd1d90bd4c561b5cc3a22a1296f32ee479f3732bb09aa84909cceb248d962aaac07faefbf34112fb8a914fcb74f6f5cf44205dafeab5af
 SHA512 
5a49ded40cee8fecf57e716f4eb7f3df960ebfee2565dc8f26f1bad19a38e963be8e697a63c14fdc615d56bdcd429aeee20564198d199be499e978ba9cf47e63
+DIST tor-browser-linux32-8.0.9_en-US.tar.xz 76801980 BLAKE2B 
7b3c65e77e010f62ecbfd96632db1918046f677a1dce59caaa5d8329fd0c89da7b18766461af732ac4352f450afc6b5affe8ad812250a2e22a7fc2e7796f46cf
 SHA512 
f5f5a454e6c97dad9c56471d921eae84a922a5208608ef06d8ef6c4bd0215c08df94b24dbedf61b3557a2aa8773d963b449da7b1bb782bbe58165526d05f5ec4
+DIST tor-browser-linux64-8.0.9_en-US.tar.xz 75266932 BLAKE2B 
881dc32d4a52eee3035dc0817255cc45eaddb24f78070fcd5b5697626bc0815209103f9457df0ba3eda4149b59c1ace8a3d309a75734e90bd8a75fd568d92e57
 SHA512 
239703e2791481ab1ec14b38633541bceb422040101b04e84a4a9adc96f7dbef9ffa98b61a40c0533157d0c93dd4e9df36ced03ddb50490819fb8d0d19ccc5a3

diff --git a/www-client/torbrowser/torbrowser-60.6.1.8.0.8.1.1-r2.ebuild 
b/www-client/torbrowser/torbrowser-60.6.1.8.0.9.1.3.ebuild
similarity index 100%
rename from www-client/torbrowser/torbrowser-60.6.1.8.0.8.1.1-r2.ebuild
rename to www-client/torbrowser/torbrowser-60.6.1.8.0.9.1.3.ebuild



[gentoo-commits] repo/proj/guru:dev commit in: dev-lang/fbc/

2019-05-18 Thread William Breathitt Gray
commit: 7583115ff97af20a831e9d17540faf1b808e11ff
Author: William Breathitt Gray  gmail  com>
AuthorDate: Sun May 19 03:48:38 2019 +
Commit: William Breathitt Gray  gmail  com>
CommitDate: Sun May 19 03:48:38 2019 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7583115f

dev-lang/fbc: Support cross-compilation

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: William Breathitt Gray  gmail.com>

 dev-lang/fbc/fbc-1.06.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lang/fbc/fbc-1.06.0.ebuild b/dev-lang/fbc/fbc-1.06.0.ebuild
index 8d4c389..11efb62 100644
--- a/dev-lang/fbc/fbc-1.06.0.ebuild
+++ b/dev-lang/fbc/fbc-1.06.0.ebuild
@@ -84,10 +84,10 @@ src_compile() {
local fblflags=${LDFLAGS//-Wl,/-Wl }
 
# Build fbc
-   emake CFLAGS="${CFLAGS} ${xcflags[*]}" FBC="${fbc}" 
FBCFLAGS="${fbcflags}" FBLFLAGS="${fblflags}"
+   emake CFLAGS="${CFLAGS} ${xcflags[*]}" FBC="${fbc}" 
FBCFLAGS="${fbcflags}" FBLFLAGS="${fblflags}" TARGET=${CHOST}
 }
 
 src_install() {
-   emake DESTDIR="${D}" prefix="/usr" install
+   emake DESTDIR="${D}" prefix="/usr" TARGET=${CHOST} install
einstalldocs
 }



[gentoo-commits] repo/gentoo:master commit in: sys-fs/zfs-kmod/

2019-05-18 Thread Georgy Yakovlev
commit: 89f9af3f48ab117aea5aeb8c1371939aef75ef4a
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sun May 19 03:39:12 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sun May 19 03:40:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89f9af3f

sys-fs/zfs-kmod: update live ebuild, make build verbose

also pass array to emake instead of \ madness

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Georgy Yakovlev  gentoo.org>

 sys-fs/zfs-kmod/zfs-kmod-.ebuild | 16 ++--
 1 file changed, 10 insertions(+), 6 deletions(-)

diff --git a/sys-fs/zfs-kmod/zfs-kmod-.ebuild 
b/sys-fs/zfs-kmod/zfs-kmod-.ebuild
index 2288b967506..b8773e1d020 100644
--- a/sys-fs/zfs-kmod/zfs-kmod-.ebuild
+++ b/sys-fs/zfs-kmod/zfs-kmod-.ebuild
@@ -116,17 +116,21 @@ src_configure() {
 src_compile() {
set_arch_to_kernel
 
-   default
+   myemakeargs=( V=1 )
+
+   emake "${myemakeargs[@]}"
 }
 
 src_install() {
set_arch_to_kernel
 
-   emake \
-   DEPMOD="/bin/true" \
-   DESTDIR="${D}" \
-   INSTALL_MOD_PATH="${INSTALL_MOD_PATH:-$EROOT}" \
-   install
+   myemakeargs+=(
+   DEPMOD="/bin/true"
+   DESTDIR="${D}"
+   INSTALL_MOD_PATH="${INSTALL_MOD_PATH:-$EROOT}"
+   )
+
+   emake "${myemakeargs[@]}" install
 
einstalldocs
 }



[gentoo-commits] repo/proj/guru:dev commit in: games-fps/gzdoom/, games-fps/gzdoom/files/4.1.2/

2019-05-18 Thread William Breathitt Gray
commit: cbc5abeccf8385d449fc86f6f11ab61e3b5a855c
Author: William Breathitt Gray  gmail  com>
AuthorDate: Sun May 19 02:49:53 2019 +
Commit: William Breathitt Gray  gmail  com>
CommitDate: Sun May 19 02:49:53 2019 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cbc5abec

games-fps/gzdoom: Use upstream patch instead of global define

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: William Breathitt Gray  gmail.com>

 ...orce-STATIC-for-internal-GZDoom-libraries.patch | 139 +
 games-fps/gzdoom/gzdoom-4.1.2.ebuild   |   3 +-
 2 files changed, 141 insertions(+), 1 deletion(-)

diff --git 
a/games-fps/gzdoom/files/4.1.2/0001-Force-STATIC-for-internal-GZDoom-libraries.patch
 
b/games-fps/gzdoom/files/4.1.2/0001-Force-STATIC-for-internal-GZDoom-libraries.patch
new file mode 100644
index 000..344fc01
--- /dev/null
+++ 
b/games-fps/gzdoom/files/4.1.2/0001-Force-STATIC-for-internal-GZDoom-libraries.patch
@@ -0,0 +1,139 @@
+From 6fafa297bfe0f82696d898d66e39c50f4f5eef16 Mon Sep 17 00:00:00 2001
+From: William Breathitt Gray 
+Date: Wed, 15 May 2019 23:58:28 +0900
+Subject: [PATCH] Force STATIC for internal GZDoom libraries
+
+This makes sure the internal versions of these libraries bundled with
+the GZDoom source code is used. This prevents the system from building
+GZDoom for dynamic linking with incompatible external libraries (see
+).
+---
+ asmjit/CMakeLists.txt | 2 +-
+ bzip2/CMakeLists.txt  | 2 +-
+ game-music-emu/gme/CMakeLists.txt | 2 +-
+ gdtoa/CMakeLists.txt  | 2 +-
+ glslang/glslang/CMakeLists.txt| 2 +-
+ glslang/spirv/CMakeLists.txt  | 2 +-
+ jpeg/CMakeLists.txt   | 2 +-
+ lzma/CMakeLists.txt   | 2 +-
+ zlib/CMakeLists.txt   | 2 +-
+ 9 files changed, 9 insertions(+), 9 deletions(-)
+
+diff --git a/asmjit/CMakeLists.txt b/asmjit/CMakeLists.txt
+index ab5c2fb4f..6b7636ebe 100644
+--- a/asmjit/CMakeLists.txt
 b/asmjit/CMakeLists.txt
+@@ -97,7 +97,7 @@ set(ASMJIT_SRCS
+ asmjit/x86/x86regalloc.cpp
+ )
+ 
+-add_library(${ASMJITNAME} ${ASMJIT_SRCS} ${ASMJIT_PUBLIC_HDRS})
++add_library(${ASMJITNAME} STATIC ${ASMJIT_SRCS} ${ASMJIT_PUBLIC_HDRS})
+ 
+ set_target_properties(${ASMJITNAME} PROPERTIES OUTPUT_NAME asmjit)
+ 
+diff --git a/bzip2/CMakeLists.txt b/bzip2/CMakeLists.txt
+index 6ff9a2172..7fefb2bf2 100644
+--- a/bzip2/CMakeLists.txt
 b/bzip2/CMakeLists.txt
+@@ -7,7 +7,7 @@ if( ZD_CMAKE_COMPILER_IS_GNUC_COMPATIBLE )
+ endif()
+ 
+ add_definitions( -DBZ_NO_STDIO )
+-add_library( bz2
++add_library( bz2 STATIC
+ blocksort.c
+ bzlib.c
+ compress.c
+diff --git a/game-music-emu/gme/CMakeLists.txt 
b/game-music-emu/gme/CMakeLists.txt
+index a5e06bc8a..5c37ebd29 100644
+--- a/game-music-emu/gme/CMakeLists.txt
 b/game-music-emu/gme/CMakeLists.txt
+@@ -163,7 +163,7 @@ set (EXPORTED_HEADERS gme.h)
+ include_directories(${CMAKE_CURRENT_BINARY_DIR})
+ 
+ # Add library to be compiled.
+-add_library(gme ${libgme_SRCS})
++add_library(gme STATIC ${libgme_SRCS})
+ 
+ if(ZLIB_FOUND)
+ message(" ** ZLib library located, compressed file formats will be 
supported")
+diff --git a/gdtoa/CMakeLists.txt b/gdtoa/CMakeLists.txt
+index a0b76e0c3..485f3778b 100644
+--- a/gdtoa/CMakeLists.txt
 b/gdtoa/CMakeLists.txt
+@@ -35,7 +35,7 @@ if( NOT MSVC AND NOT APPLE )
+   set( GEN_FP_DEPS ${CMAKE_CURRENT_BINARY_DIR}/arith.h 
${CMAKE_CURRENT_BINARY_DIR}/gd_qnan.h )
+ endif()
+ 
+-add_library( gdtoa
++add_library( gdtoa STATIC
+   ${GEN_FP_FILES}
+   dmisc.c
+   dtoa.c
+diff --git a/glslang/glslang/CMakeLists.txt b/glslang/glslang/CMakeLists.txt
+index c86eccb6e..e376a9178 100644
+--- a/glslang/glslang/CMakeLists.txt
 b/glslang/glslang/CMakeLists.txt
+@@ -120,7 +120,7 @@ endmacro(glslang_pch)
+ 
+ glslang_pch(SOURCES MachineIndependent/pch.cpp)
+ 
+-add_library(glslang ${LIB_TYPE} ${BISON_GLSLParser_OUTPUT_SOURCE} ${SOURCES} 
${HEADERS})
++add_library(glslang STATIC ${LIB_TYPE} ${BISON_GLSLParser_OUTPUT_SOURCE} 
${SOURCES} ${HEADERS})
+ set_property(TARGET glslang PROPERTY FOLDER glslang)
+ set_property(TARGET glslang PROPERTY POSITION_INDEPENDENT_CODE ON)
+ target_link_libraries(glslang OGLCompiler OSDependent)
+diff --git a/glslang/spirv/CMakeLists.txt b/glslang/spirv/CMakeLists.txt
+index 8062f8067..03d34d8f4 100644
+--- a/glslang/spirv/CMakeLists.txt
 b/glslang/spirv/CMakeLists.txt
+@@ -59,7 +59,7 @@ if(ENABLE_NV_EXTENSIONS)
+  GLSL.ext.NV.h)
+ endif(ENABLE_NV_EXTENSIONS)
+ 
+-add_library(SPIRV ${LIB_TYPE} ${SOURCES} ${HEADERS})
++add_library(SPIRV STATIC ${LIB_TYPE} ${SOURCES} ${HEADERS})
+ set_property(TARGET SPIRV PROPERTY FOLDER glslang)
+ set_property(TARGET SPIRV PROPERTY POSITION_INDEPENDENT_CODE ON)
+ target_include_directories(SPIRV PUBLIC ..)
+diff --git a/jpeg/CMakeLists.txt b/jpeg/CMakeLists.txt
+index 81834c742..33a3938cf 100644
+--- a/jpeg/CMake

[gentoo-commits] repo/proj/libressl:master commit in: net-misc/aria2/, net-misc/aria2/files/

2019-05-18 Thread Stefan Strogin
commit: 298df7497c26df3488d86cf663f3fde7924d333b
Author: callmetango  users  noreply  github 
 com>
AuthorDate: Fri May 17 20:09:34 2019 +
Commit: Stefan Strogin  gentoo  org>
CommitDate: Sun May 19 02:22:19 2019 +
URL:https://gitweb.gentoo.org/repo/proj/libressl.git/commit/?id=298df749

net-misc/aria2: revbump to 1.34.0-r1 to sync with gentoo.git

Reported-by: callmetango  users.noreply.github.com>
Closes: https://github.com/gentoo/libressl/pull/295
Signed-off-by: Stefan Strogin  gentoo.org>

 ...{aria2-1.34.0.ebuild => aria2-1.34.0-r1.ebuild} |  8 ++--
 .../aria2/files/aria2-1.34.0-mask-headers.patch| 46 ++
 net-misc/aria2/metadata.xml|  1 -
 3 files changed, 51 insertions(+), 4 deletions(-)

diff --git a/net-misc/aria2/aria2-1.34.0.ebuild 
b/net-misc/aria2/aria2-1.34.0-r1.ebuild
similarity index 95%
rename from net-misc/aria2/aria2-1.34.0.ebuild
rename to net-misc/aria2/aria2-1.34.0-r1.ebuild
index 59c5d62..ceac9fc 100644
--- a/net-misc/aria2/aria2-1.34.0.ebuild
+++ b/net-misc/aria2/aria2-1.34.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -10,7 +10,7 @@ HOMEPAGE="https://aria2.github.io/";
 
SRC_URI="https://github.com/aria2/${PN}/releases/download/release-${PV}/${P}.tar.xz";
 
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
 SLOT="0"
 IUSE="adns bittorrent +gnutls jemalloc libressl libuv +libxml2 metalink 
+nettle nls sqlite scripts ssh ssl tcmalloc test xmlrpc"
 
@@ -65,8 +65,10 @@ pkg_setup() {
 }
 
 src_prepare() {
-   eapply "${FILESDIR}"/aria2-libressl.patch
eapply "${FILESDIR}"/${P}-make_unique.patch
+   # https://bugs.gentoo.org/674622 (CVE-2019-3500)
+   eapply "${FILESDIR}"/${P}-mask-headers.patch
+   eapply "${FILESDIR}"/aria2-libressl.patch
default
sed -i -e "s|/tmp|${T}|" test/*.cc test/*.txt || die "sed failed"
 }

diff --git a/net-misc/aria2/files/aria2-1.34.0-mask-headers.patch 
b/net-misc/aria2/files/aria2-1.34.0-mask-headers.patch
new file mode 100644
index 000..694681d
--- /dev/null
+++ b/net-misc/aria2/files/aria2-1.34.0-mask-headers.patch
@@ -0,0 +1,46 @@
+From 37368130ca7de5491a75fd18a20c5c5cc641824a Mon Sep 17 00:00:00 2001
+From: Tatsuhiro Tsujikawa 
+Date: Sat, 5 Jan 2019 09:32:40 +0900
+Subject: [PATCH] Mask headers
+
+---
+ src/HttpConnection.cc | 18 --
+ 1 file changed, 12 insertions(+), 6 deletions(-)
+
+diff --git a/src/HttpConnection.cc b/src/HttpConnection.cc
+index 77cb9d27a..be5b97723 100644
+--- a/src/HttpConnection.cc
 b/src/HttpConnection.cc
+@@ -102,11 +102,17 @@ std::string HttpConnection::eraseConfidentialInfo(const 
std::string& request)
+   std::string result;
+   std::string line;
+   while (getline(istr, line)) {
+-if (util::startsWith(line, "Authorization: Basic")) {
+-  result += "Authorization: Basic \n";
++if (util::istartsWith(line, "Authorization: ")) {
++  result += "Authorization: \n";
+ }
+-else if (util::startsWith(line, "Proxy-Authorization: Basic")) {
+-  result += "Proxy-Authorization: Basic \n";
++else if (util::istartsWith(line, "Proxy-Authorization: ")) {
++  result += "Proxy-Authorization: \n";
++}
++else if (util::istartsWith(line, "Cookie: ")) {
++  result += "Cookie: \n";
++}
++else if (util::istartsWith(line, "Set-Cookie: ")) {
++  result += "Set-Cookie: \n";
+ }
+ else {
+   result += line;
+@@ -154,8 +160,8 @@ std::unique_ptr 
HttpConnection::receiveResponse()
+   const auto& proc = 
outstandingHttpRequests_.front()->getHttpHeaderProcessor();
+   if (proc->parse(socketRecvBuffer_->getBuffer(),
+   socketRecvBuffer_->getBufferLength())) {
+-A2_LOG_INFO(
+-fmt(MSG_RECEIVE_RESPONSE, cuid_, proc->getHeaderString().c_str()));
++A2_LOG_INFO(fmt(MSG_RECEIVE_RESPONSE, cuid_,
++eraseConfidentialInfo(proc->getHeaderString()).c_str()));
+ auto result = proc->getResult();
+ if (result->getStatusCode() / 100 == 1) {
+   socketRecvBuffer_->drain(proc->getLastBytesProcessed());

diff --git a/net-misc/aria2/metadata.xml b/net-misc/aria2/metadata.xml
index 18fb229..e5e58f4 100644
--- a/net-misc/aria2/metadata.xml
+++ b/net-misc/aria2/metadata.xml
@@ -11,7 +11,6 @@


Enable support for the bittorrent 
protocol.
-   Use dev-libs/jemalloc to 
replace the malloc() implementation with a possibly faster one
Use dev-libs/libuv backend.
Use dev-libs/libxml2 for XML 
parsing (preferred) instead of dev-libs/expat.
Use dev-libs/nettle and 
dev-libs/gmp for bittorrent/metalink crypto instead of 
dev-libs/libgcrypt (when dev-libs/openssl is

[gentoo-commits] repo/gentoo:master commit in: dev-embedded/avra/

2019-05-18 Thread Virgil Dupras
commit: 62b4c139e0bd7672f283882b2a4779cf4f8ed92d
Author: Virgil Dupras  gentoo  org>
AuthorDate: Sun May 19 01:55:18 2019 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Sun May 19 01:55:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62b4c139

dev-embedded/avra: stabilize 1.4.1 on amd64 and x86

Signed-off-by: Virgil Dupras  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 dev-embedded/avra/avra-1.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-embedded/avra/avra-1.4.1.ebuild 
b/dev-embedded/avra/avra-1.4.1.ebuild
index be6fdfe1654..ae31d3fd691 100644
--- a/dev-embedded/avra/avra-1.4.1.ebuild
+++ b/dev-embedded/avra/avra-1.4.1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://github.com/hsoft/avra/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
 
 src_compile() {
emake PREFIX=/usr CFLAGS="${CFLAGS} \$(CDEFS)" LDFLAGS="${LDFLAGS}"



[gentoo-commits] repo/gentoo:master commit in: dev-embedded/avra/

2019-05-18 Thread Virgil Dupras
commit: 4d123bd1df5ebf98121bd9fb7cf81ba8808525ad
Author: Virgil Dupras  gentoo  org>
AuthorDate: Sun May 19 01:55:46 2019 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Sun May 19 01:55:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d123bd1

dev-embedded/avra: remove old

Signed-off-by: Virgil Dupras  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 dev-embedded/avra/Manifest  |  1 -
 dev-embedded/avra/avra-1.4.0.ebuild | 21 -
 2 files changed, 22 deletions(-)

diff --git a/dev-embedded/avra/Manifest b/dev-embedded/avra/Manifest
index 84cb3fd590b..6a1d977193d 100644
--- a/dev-embedded/avra/Manifest
+++ b/dev-embedded/avra/Manifest
@@ -1,2 +1 @@
-DIST avra-1.4.0.tar.gz 380256 BLAKE2B 
7864261d230ecb1c28377856db24481ef40933e9ac15cf00523f0edb53e9d0beb8d4966d90d80d775c43ae1870a39bbfb6586580d87916bba23457e97027169e
 SHA512 
1df07ebcefc24f91dbf18c489baff314683ff5cde7cd87ea6aae5d0fddbd1e6d64016c100378e9fede414036bb1ffbc03584b35100575ec50a27ace44b22a0e9
 DIST avra-1.4.1.tar.gz 386055 BLAKE2B 
64bf96e6fac6e04869e94ae2cac81fc0c67f871abc2ad0e2728bf5530f53e8ff9ce9e0119edfc8d39187ca2e8e5a58922aa0e8d0ea7d91b730965fef365c0c25
 SHA512 
2ee5edb6f8b2a39d1197970121ce3313f99b2137c590ab963f6943958d3a761f4bb37b80d54f727e1a4a4afc62ea4ac576af9ef85a71f741739a6ce4a60a9a1c

diff --git a/dev-embedded/avra/avra-1.4.0.ebuild 
b/dev-embedded/avra/avra-1.4.0.ebuild
deleted file mode 100644
index ae31d3fd691..000
--- a/dev-embedded/avra/avra-1.4.0.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Atmel AVR Assembler"
-HOMEPAGE="https://github.com/hsoft/avra";
-SRC_URI="https://github.com/hsoft/avra/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-
-src_compile() {
-   emake PREFIX=/usr CFLAGS="${CFLAGS} \$(CDEFS)" LDFLAGS="${LDFLAGS}"
-}
-
-src_install() {
-   emake PREFIX=/usr DESTDIR="${ED}" install
-   dodoc {AUTHORS,CHANGELOG.md,README.md,USAGE.md}
-}



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

2019-05-18 Thread Rick Farina
commit: 45f5298be068bf3b01bab6d1f54de5c997bd396f
Author: Rick Farina  gentoo  org>
AuthorDate: Sun May 19 01:40:11 2019 +
Commit: Rick Farina  gentoo  org>
CommitDate: Sun May 19 01:40:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45f5298b

sys-kernel/linux-firmware: fix license string

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Rick Farina  gentoo.org>

 sys-kernel/linux-firmware/linux-firmware-20190514.ebuild | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/sys-kernel/linux-firmware/linux-firmware-20190514.ebuild 
b/sys-kernel/linux-firmware/linux-firmware-20190514.ebuild
index 77de08a8303..45c50b3372d 100644
--- a/sys-kernel/linux-firmware/linux-firmware-20190514.ebuild
+++ b/sys-kernel/linux-firmware/linux-firmware-20190514.ebuild
@@ -19,9 +19,8 @@ 
HOMEPAGE="https://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git
 
 LICENSE="GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 )
redistributable? (
-   linux-fw-redistributable ( BSD-2 BSD BSD-4 ISC MIT 
no-source-code )
-   unknown-license? ( all-rights-reserved )
-   )"
+   linux-fw-redistributable ( BSD-2 BSD BSD-4 ISC MIT 
no-source-code ) )
+   unknown-license? ( all-rights-reserved )"
 SLOT="0"
 IUSE="+redistributable savedconfig unknown-license"
 RESTRICT="binchecks strip



[gentoo-commits] repo/gentoo:master commit in: dev-embedded/nodemcu-uploader/

2019-05-18 Thread Rafael Martins
commit: e1e437bdb6f2238d54227bf48bb437c1c3b4c854
Author: Rafael Martins  gentoo  org>
AuthorDate: Sun May 19 01:20:00 2019 +
Commit: Rafael Martins  gentoo  org>
CommitDate: Sun May 19 01:20:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1e437bd

dev-embedded/nodemcu-uploader: new package

Package-Manager: Portage-2.3.62, Repoman-2.3.11
Signed-off-by: Rafael Martins  gentoo.org>

 dev-embedded/nodemcu-uploader/Manifest |  1 +
 dev-embedded/nodemcu-uploader/metadata.xml | 15 +++
 .../nodemcu-uploader/nodemcu-uploader-0.4.3.ebuild | 29 ++
 3 files changed, 45 insertions(+)

diff --git a/dev-embedded/nodemcu-uploader/Manifest 
b/dev-embedded/nodemcu-uploader/Manifest
new file mode 100644
index 000..259ab525dfa
--- /dev/null
+++ b/dev-embedded/nodemcu-uploader/Manifest
@@ -0,0 +1 @@
+DIST nodemcu-uploader-0.4.3.tar.gz 10034 BLAKE2B 
2912d2d4130700fdd0a5145d7aa2b4d9f5742b85a9d0675da8a25a8e02812247928345661c69eadba00c41d33faad8def70ac7c3960794ca418875b942bb255f
 SHA512 
bed8291cceea0f37b914fb45a409a6c259b32c325b09b71338382b29870591ce2003c235a2c231d8ffc0a3600d51a5f89acad1fa5a6fd01fe96fdcaaa55266a0

diff --git a/dev-embedded/nodemcu-uploader/metadata.xml 
b/dev-embedded/nodemcu-uploader/metadata.xml
new file mode 100644
index 000..2c9f7d99676
--- /dev/null
+++ b/dev-embedded/nodemcu-uploader/metadata.xml
@@ -0,0 +1,15 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+   
+   rafaelmart...@gentoo.org
+   Rafael G. Martins
+   
+   
+   A simple tool for uploading files to the filesystem of an 
ESP8266
+   running NodeMCU as well as some other useful commands.
+   
+   
+   nodemcu-uploader
+   
+

diff --git a/dev-embedded/nodemcu-uploader/nodemcu-uploader-0.4.3.ebuild 
b/dev-embedded/nodemcu-uploader/nodemcu-uploader-0.4.3.ebuild
new file mode 100644
index 000..d9b5adfc1a0
--- /dev/null
+++ b/dev-embedded/nodemcu-uploader/nodemcu-uploader-0.4.3.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} )
+
+inherit distutils-r1
+
+DESCRIPTION="Simple tool for uploading files to the filesystem of an ESP8266 
running NodeMCU"
+HOMEPAGE="https://github.com/kmpm/nodemcu-uploader";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   >=dev-python/wrapt-1.10.10[${PYTHON_USEDEP}]
+   >=dev-python/pyserial-2.7[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+
+RESTRICT="test"  # tests are not uploaded to pypi
+
+python_test() {
+   esetup.py test || die
+}



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

2019-05-18 Thread Rick Farina
commit: 2dd5d909721bbab79d26ee4b0a43baeb2f171172
Author: Rick Farina  gentoo  org>
AuthorDate: Sun May 19 01:14:07 2019 +
Commit: Rick Farina  gentoo  org>
CommitDate: Sun May 19 01:14:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dd5d909

sys-kernel/linux-firmware: fix use flag function

readd keywords, unstable for this second

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Rick Farina  gentoo.org>

 sys-kernel/linux-firmware/linux-firmware-20190514.ebuild | 8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/sys-kernel/linux-firmware/linux-firmware-20190514.ebuild 
b/sys-kernel/linux-firmware/linux-firmware-20190514.ebuild
index 18251ae17ae..77de08a8303 100644
--- a/sys-kernel/linux-firmware/linux-firmware-20190514.ebuild
+++ b/sys-kernel/linux-firmware/linux-firmware-20190514.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} == * ]]; then
 else
GIT_COMMIT="711d3297bac870af42088a467459a0634c1970ca"

SRC_URI="https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/snapshot/linux-firmware-${GIT_COMMIT}.tar.gz
 -> ${P}.tar.gz"
-   #KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86"
 fi
 
 DESCRIPTION="Linux firmware files"
@@ -25,7 +25,8 @@ LICENSE="GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 )
 SLOT="0"
 IUSE="+redistributable savedconfig unknown-license"
 RESTRICT="binchecks strip
-   redistributable? ( unknown-license? ( bindist ) )"
+   redistributable? ( bindist )
+   unknown-license? ( bindist )"
 
 RDEPEND="!savedconfig? (
redistributable? (
@@ -240,7 +241,8 @@ src_prepare() {
ewarn 'The "unknown-license" flag is set, while 
"-redistributable"'
ewarn 'asks for free software only. Ignoring 
"unknown-license".'
fi
-   elif use !unknown-license; then
+   fi
+   if use !unknown-license; then
# remove files in the unknown_license blacklist
rm "${unknown_license[@]}" || die
fi



[gentoo-commits] repo/gentoo:master commit in: net-wireless/wpa_supplicant/

2019-05-18 Thread Rick Farina
commit: 781c50e298a216b1a9bff0006411f6f0b9d50e06
Author: Rick Farina  gentoo  org>
AuthorDate: Sun May 19 00:55:01 2019 +
Commit: Rick Farina  gentoo  org>
CommitDate: Sun May 19 00:59:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=781c50e2

Revert "net-wireless/wpa_supplicant: libressl suiteb works"

This reverts commit df704718f10468578ce9b1de71c02d1edc11963f.

bug #684290

Signed-off-by: Rick Farina  gentoo.org>

 .../{wpa_supplicant-2.8-r1.ebuild => wpa_supplicant-2.8.ebuild}  | 9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/net-wireless/wpa_supplicant/wpa_supplicant-2.8-r1.ebuild 
b/net-wireless/wpa_supplicant/wpa_supplicant-2.8.ebuild
similarity index 97%
rename from net-wireless/wpa_supplicant/wpa_supplicant-2.8-r1.ebuild
rename to net-wireless/wpa_supplicant/wpa_supplicant-2.8.ebuild
index d5ae9e59fef..69128d52bd2 100644
--- a/net-wireless/wpa_supplicant/wpa_supplicant-2.8-r1.ebuild
+++ b/net-wireless/wpa_supplicant/wpa_supplicant-2.8.ebuild
@@ -225,9 +225,11 @@ src_configure() {
Kconfig_style_config OWE
Kconfig_style_config SAE
Kconfig_style_config DPP
-   Kconfig_style_config SUITEB
Kconfig_style_config SUITEB192
fi
+   if ! use bindist && ! use libressl; then
+   Kconfig_style_config SUITEB
+   fi
 
if use smartcard ; then
Kconfig_style_config SMARTCARD
@@ -416,6 +418,11 @@ pkg_postinst() {
ewarn "This is incredibly undesirable"
fi
fi
+   if use libressl; then
+   ewarn "Libressl doesn't support SUITEB (part of WPA3)"
+   ewarn "but it does support SUITEB192 (the upgraded strength 
version of the same)"
+   ewarn "You probably don't care.  Patches welcome"
+   fi
 
# Mea culpa, feel free to remove that after some time --mgorny.
local fn



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

2019-05-18 Thread Michael Palimaka
commit: ae9206785bac86bcbe2d99be9f5b217d8533827b
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Fri May 17 18:25:25 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun May 19 00:41:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae920678

dev-ruby/ruby-gio2: remove unused patch(es)

Closes: https://github.com/gentoo/gentoo/pull/12032
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Michael Palimaka  gentoo.org>

 .../files/ruby-gio2-3.1.1-schema-path.patch| 28 --
 1 file changed, 28 deletions(-)

diff --git a/dev-ruby/ruby-gio2/files/ruby-gio2-3.1.1-schema-path.patch 
b/dev-ruby/ruby-gio2/files/ruby-gio2-3.1.1-schema-path.patch
deleted file mode 100644
index 437a9b8513c..000
--- a/dev-ruby/ruby-gio2/files/ruby-gio2-3.1.1-schema-path.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From f9bb159674c4eb25f99550fa8594fcbf97ed8cae Mon Sep 17 00:00:00 2001
-From: Kouhei Sutou 
-Date: Mon, 30 Jan 2017 23:09:31 +0900
-Subject: [PATCH] gio2 test: fix path
-
-GitHub: fix #990
-
-Reported by Mamoru TASAKA. Thanks!!!

- gio2/test/test-settings.rb | 5 -
- 1 file changed, 4 insertions(+), 1 deletion(-)
-
-diff --git a/gio2/test/test-settings.rb b/gio2/test/test-settings.rb
-index b16341c84..5a287f1e9 100644
 a/gio2/test/test-settings.rb
-+++ b/gio2/test/test-settings.rb
-@@ -108,7 +108,10 @@ def need_keyfile_settings_backend
-   need_keyfile_settings_backend
-   keyfile = Tempfile.new(["settings", ".ini"])
-   backend = Gio::keyfile_settings_backend_new(keyfile.path, "/", 
"keyfile_settings")
--  schema_source = Gio::SettingsSchemaSource.new(fixture_path("schema"), 
nil, true)
-+  schema_dir = fixture_path("schema", "default")
-+  schema_source = Gio::SettingsSchemaSource.new(schema_dir,
-+nil,
-+true)
-   schema = schema_source.lookup("jp.ruby-gnome2.test.settings", true)
-   settings = Gio::Settings.new(schema,
-backend,



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

2019-05-18 Thread Michael Palimaka
commit: 6d20b7271981055346362eb8c3cca4197d2f4011
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Fri May 17 18:25:09 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun May 19 00:41:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d20b727

dev-ruby/database_cleaner: remove unused patch(es)

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Michael Palimaka  gentoo.org>

 .../files/database_cleaner-1.6.2-table-quote.patch | 37 --
 1 file changed, 37 deletions(-)

diff --git 
a/dev-ruby/database_cleaner/files/database_cleaner-1.6.2-table-quote.patch 
b/dev-ruby/database_cleaner/files/database_cleaner-1.6.2-table-quote.patch
deleted file mode 100644
index 2ca8c978124..000
--- a/dev-ruby/database_cleaner/files/database_cleaner-1.6.2-table-quote.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From 94f3c412b154100e53b0800622a503ee56e39a6d Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Andreas=20B=C3=BChmann?= 
-Date: Sun, 27 Aug 2017 09:24:41 +0200
-Subject: [PATCH] Properly quote table names in table_stats_query
-

- lib/database_cleaner/active_record/deletion.rb | 16 +---
- 1 file changed, 9 insertions(+), 7 deletions(-)
-
-diff --git a/lib/database_cleaner/active_record/deletion.rb 
b/lib/database_cleaner/active_record/deletion.rb
-index 59a41c4..d172355 100644
 a/lib/database_cleaner/active_record/deletion.rb
-+++ b/lib/database_cleaner/active_record/deletion.rb
-@@ -66,14 +66,16 @@ def table_stats_query(connection, db_name)
-   if @cache_tables && !@table_stats_query.nil?
- return @table_stats_query
-   else
--@table_stats_query = connection.select_values(<<-SQL).join(' UNION ')
--   SELECT CONCAT('SELECT \"', table_name, '\" AS table_name, 
COUNT(*) AS exact_row_count FROM ', table_name)
--   FROM
--   INFORMATION_SCHEMA.TABLES
--   WHERE
--   table_schema = '#{db_name}'
--   AND 
#{::DatabaseCleaner::ActiveRecord::Base.exclusion_condition('table_name')};
-+tables = connection.select_values(<<-SQL)
-+  SELECT table_name
-+  FROM information_schema.tables
-+  WHERE table_schema = '#{db_name}'
-+  AND 
#{::DatabaseCleaner::ActiveRecord::Base.exclusion_condition('table_name')};
- SQL
-+queries = tables.map do |table|
-+  "SELECT #{connection.quote(table)} AS table_name, COUNT(*) AS 
exact_row_count FROM #{connection.quote_table_name(table)}"
-+end
-+@table_stats_query = queries.join(' UNION ')
-   end
- end
- 



[gentoo-commits] repo/gentoo:master commit in: app-doc/linkers-and-loaders/

2019-05-18 Thread Michael Palimaka
commit: 4a6e81543df9b19a388d9ff4413b66bf7470e9d1
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Mon May  6 17:58:44 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun May 19 00:37:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a6e8154

app-doc/linkers-and-loaders: use HTTPS

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Michael Palimaka  gentoo.org>

 app-doc/linkers-and-loaders/linkers-and-loaders-1.ebuild | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/app-doc/linkers-and-loaders/linkers-and-loaders-1.ebuild 
b/app-doc/linkers-and-loaders/linkers-and-loaders-1.ebuild
index 6b54daf79e3..7e196d5f014 100644
--- a/app-doc/linkers-and-loaders/linkers-and-loaders-1.ebuild
+++ b/app-doc/linkers-and-loaders/linkers-and-loaders-1.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="4"
 
-DESCRIPTION="the Linkers and Loaders book"
-HOMEPAGE="http://linker.iecc.com/";
-SRC_URI="http://wh0rd.org/books/${P}.tar.lzma";
+DESCRIPTION="The Linkers and Loaders book"
+HOMEPAGE="https://linker.iecc.com/";
+SRC_URI="https://wh0rd.org/books/${P}.tar.lzma";
 
 LICENSE="all-rights-reserved"
 SLOT="0"



[gentoo-commits] repo/gentoo:master commit in: app-doc/linkers-and-loaders/

2019-05-18 Thread Michael Palimaka
commit: 8702f58aa579b9b5991d1c473b366cda5ad62d49
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Mon May  6 18:09:27 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun May 19 00:37:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8702f58a

app-doc/linkers-and-loaders: EAPI=7 update

Closes: https://bugs.gentoo.org/685216
Closes: https://github.com/gentoo/gentoo/pull/11920
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Michael Palimaka  gentoo.org>

 .../linkers-and-loaders-1-r1.ebuild| 25 ++
 1 file changed, 25 insertions(+)

diff --git a/app-doc/linkers-and-loaders/linkers-and-loaders-1-r1.ebuild 
b/app-doc/linkers-and-loaders/linkers-and-loaders-1-r1.ebuild
new file mode 100644
index 000..e22382a94ce
--- /dev/null
+++ b/app-doc/linkers-and-loaders/linkers-and-loaders-1-r1.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="The Linkers and Loaders book"
+HOMEPAGE="https://linker.iecc.com/";
+SRC_URI="https://wh0rd.org/books/${P}.tar.lzma";
+
+LICENSE="all-rights-reserved"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+IUSE="doc"
+RESTRICT="mirror bindist"
+
+BDEPEND="app-arch/xz-utils"
+
+S=${WORKDIR}
+
+src_install() {
+   use doc && dodoc *.txt *.rtf
+   dodoc *.pdf
+   docinto html
+   dodoc *.html *.jpg
+}



[gentoo-commits] repo/gentoo:master commit in: app-misc/btail/

2019-05-18 Thread Michael Palimaka
commit: 323c488f4d0208f83989f6162112a212491d78d1
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat May 18 16:13:48 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun May 19 00:23:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=323c488f

app-misc/btail: use HTTPS

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Michael Palimaka  gentoo.org>

 app-misc/btail/btail-0.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-misc/btail/btail-0.3.ebuild b/app-misc/btail/btail-0.3.ebuild
index 7a7acc3d203..b0235a0d999 100644
--- a/app-misc/btail/btail-0.3.ebuild
+++ b/app-misc/btail/btail-0.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="4"
@@ -6,7 +6,7 @@ EAPI="4"
 inherit toolchain-funcs
 
 DESCRIPTION="Bayesian logfile filter"
-HOMEPAGE="http://www.vanheusden.com/btail/";
+HOMEPAGE="https://www.vanheusden.com/btail/";
 SRC_URI="${HOMEPAGE}/${P}.tgz"
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: app-misc/btail/

2019-05-18 Thread Michael Palimaka
commit: 607cd88ade94d70fcd25f66251a88d705a4a8e94
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat May 18 16:17:51 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun May 19 00:23:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=607cd88a

app-misc/btail: use HTTPS, EAPI=7 bump

Closes: https://bugs.gentoo.org/686232
Closes: https://github.com/gentoo/gentoo/pull/12043
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Michael Palimaka  gentoo.org>

 app-misc/btail/btail-0.3-r1.ebuild | 41 ++
 1 file changed, 41 insertions(+)

diff --git a/app-misc/btail/btail-0.3-r1.ebuild 
b/app-misc/btail/btail-0.3-r1.ebuild
new file mode 100644
index 000..b434b22da8d
--- /dev/null
+++ b/app-misc/btail/btail-0.3-r1.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="Bayesian logfile filter"
+HOMEPAGE="https://www.vanheusden.com/btail/";
+SRC_URI="${HOMEPAGE}/${P}.tgz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+
+DEPEND="sys-libs/gdbm"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   default
+   sed -i Makefile \
+   -e '/^LDFLAGS/s:=:+=:g' \
+   -e '/$(CC)/s:-Wall:$(CFLAGS) &:g' \
+   || die
+   sed -i conf.cpp \
+   -e '/Configline/s:):, line):g' \
+   || die
+}
+
+src_compile() {
+   emake \
+   CFLAGS="${CFLAGS}" \
+   CXXFLAGS="${CXXFLAGS}" \
+   CC="$(tc-getCC)" \
+   CXX="$(tc-getCXX)"
+}
+
+src_install() {
+   dobin blearn btail
+   dodoc readme.txt btail.conf license.txt
+}



[gentoo-commits] repo/gentoo:master commit in: media-plugins/alsa-plugins/files/

2019-05-18 Thread Michael Palimaka
commit: 42746c5d56a6e31a05789f65f335539698aa7535
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Fri May 17 18:28:59 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun May 19 00:20:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42746c5d

media-plugins/alsa-plugins: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/12035
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Michael Palimaka  gentoo.org>

 .../files/alsa-plugins-1.1.7-double_free_fix.patch | 34 --
 1 file changed, 34 deletions(-)

diff --git 
a/media-plugins/alsa-plugins/files/alsa-plugins-1.1.7-double_free_fix.patch 
b/media-plugins/alsa-plugins/files/alsa-plugins-1.1.7-double_free_fix.patch
deleted file mode 100644
index 9b3a81599b3..000
--- a/media-plugins/alsa-plugins/files/alsa-plugins-1.1.7-double_free_fix.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From a4e7e1282c57a2f4e83afe9a4008042d8b4c5bb9 Mon Sep 17 00:00:00 2001
-From: Jaroslav Kysela 
-Date: Tue, 23 Oct 2018 09:32:46 +0200
-Subject: [PATCH] a52_close: set slave to NULL to avoid double pcm free in
- open fcn
-
-Signed-off-by: Jaroslav Kysela 

- a52/pcm_a52.c | 7 +--
- 1 file changed, 5 insertions(+), 2 deletions(-)
-
-diff --git a/a52/pcm_a52.c b/a52/pcm_a52.c
-index e431fd0..b005bc2 100644
 a/a52/pcm_a52.c
-+++ b/a52/pcm_a52.c
-@@ -654,10 +654,13 @@ static int a52_poll_revents(snd_pcm_ioplug_t *io, struct 
pollfd *pfd,
- static int a52_close(snd_pcm_ioplug_t *io)
- {
-   struct a52_ctx *rec = io->private_data;
-+  snd_pcm_t *slave = rec->slave;
- 
-   a52_free(rec);
--  if (rec->slave)
--  return snd_pcm_close(rec->slave);
-+  if (slave) {
-+  rec->slave = NULL;
-+  return snd_pcm_close(slave);
-+  }
-   return 0;
- }
- 
--- 
-1.7.11.7
-



[gentoo-commits] repo/gentoo:master commit in: dev-tex/biber/files/

2019-05-18 Thread Michael Palimaka
commit: 1fcf01c24bc0966744db11b76db9f16deec4a75d
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Fri May 17 18:26:37 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun May 19 00:19:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fcf01c2

dev-tex/biber: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/12033
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Michael Palimaka  gentoo.org>

 .../biber/files/biber-2.4-drop-mozilla-ca.patch| 146 -
 1 file changed, 146 deletions(-)

diff --git a/dev-tex/biber/files/biber-2.4-drop-mozilla-ca.patch 
b/dev-tex/biber/files/biber-2.4-drop-mozilla-ca.patch
deleted file mode 100644
index d4618a4cb99..000
--- a/dev-tex/biber/files/biber-2.4-drop-mozilla-ca.patch
+++ /dev/null
@@ -1,146 +0,0 @@
-commit 09ac1811820c2d2b92f8de779f7c389f89dc6c16
-Author: Jason A. Donenfeld 
-Date:   Sat Mar 12 02:54:35 2016 +0100
-
-Remove Mozilla::CA dependency
-
-diff --git a/Build.PL b/Build.PL
-index 6031458..8de2f2a 100644
 a/Build.PL
-+++ b/Build.PL
-@@ -53,7 +53,6 @@ my $builder = $class->new(
- 'List::AllUtils' => 0,
- 'List::MoreUtils' => 0,
- 'List::MoreUtils::XS' => 0,
--'Mozilla::CA' =>  '20141217',
- 'Regexp::Common' => 0,
- 'Log::Log4perl' => 0,
- 'Unicode::Collate' => '1.14',
-diff --git a/bin/biber b/bin/biber
-index f9e28fb..8d614e5 100755
 a/bin/biber
-+++ b/bin/biber
-@@ -78,7 +78,6 @@ GetOptions(
-'sortgiveninits|sortfirstinits=s',
-'sortlocale|l=s',
-'sortupper=s',
--   'ssl-nointernalca',
-'ssl-noverify-host',
-'strip_comments|strip-comments',
-'tool',
-@@ -710,12 +709,6 @@ default sorting (B<--collate|-C>). When
- using B<--fastsort|-f>, your OS collation locale determines
- this and this option is ignored (default is true).
- 
--=item B<--ssl-nointernalca>
--
--Don't try to use the default Mozilla CA certificates when using HTTPS to 
fetch remote data.
--This assumes that the user will set one of the perl LWP::UserAgent module 
environment variables
--to find the CA certs.
--
- =item B<--ssl-noverify-host>
- 
- Turn off host verification when using HTTPS to fetch remote data sources.
-diff --git a/data/schemata/config.rnc b/data/schemata/config.rnc
-index 7baf386..f3d321e 100644
 a/data/schemata/config.rnc
-+++ b/data/schemata/config.rnc
-@@ -79,7 +79,6 @@ start =
- map+
-   }+
- }? &
--element ssl-nointernalca { "0" | "1" }? &
- element ssl-noverify-host{ "0" | "1" }? &
- element tool { "0" | "1" }? &
- element tool_config  { text }? &
-diff --git a/data/schemata/config.rng b/data/schemata/config.rng
-index f11b38e..fff209a 100644
 a/data/schemata/config.rng
-+++ b/data/schemata/config.rng
-@@ -353,14 +353,6 @@
-   
- 
- 
--  
--
--  0
--  1
--
--  
--
--
-   
- 
-   0
-diff --git a/lib/Biber/Input/file/biblatexml.pm 
b/lib/Biber/Input/file/biblatexml.pm
-index 8139cd4..14018da 100644
 a/lib/Biber/Input/file/biblatexml.pm
-+++ b/lib/Biber/Input/file/biblatexml.pm
-@@ -115,19 +115,6 @@ sub extract_entries {
- else {
-   if ($1) { # HTTPS
- # use IO::Socket::SSL qw(debug99); # useful for debugging SSL issues
--# We have to explicitly set the cert path because otherwise the https 
module
--# can't find the .pem when PAR::Packer'ed
--# Have to explicitly try to require Mozilla::CA here to get it into 
%INC below
--# It may, however, have been removed by some biber unpacked dists
--if (not exists($ENV{PERL_LWP_SSL_CA_FILE}) and
--not exists($ENV{PERL_LWP_SSL_CA_PATH}) and
--not defined(Biber::Config->getoption('ssl-nointernalca')) and
--eval {require Mozilla::CA}) {
--  # we assume that the default CA file is in .../Mozilla/CA/cacert.pem
--  (my $vol, my $dir, undef) = File::Spec->splitpath( 
$INC{"Mozilla/CA.pm"} );
--  $dir =~ s/\/$//;  # splitpath sometimes leaves a trailing '/'
--  $ENV{PERL_LWP_SSL_CA_FILE} = File::Spec->catpath($vol, "$dir/CA", 
'cacert.pem');
--}
- 
- # fallbacks for, e.g., linux
- unless (exists($ENV{PERL_LWP_SSL_CA_FILE})) {
-diff --git a/lib/Biber/Input/file/bibtex.pm b/lib/Biber/Input/file/bibtex.pm
-index 6cc365a..b41e946 100644
 a/lib/Biber/Input/file/bibtex.pm
-+++ b/lib/Biber/Input/file/bibtex.pm
-@@ -138,19 +138,6 @@ sub extract_entries {
- else {
-   if ($1) { # HTTPS
- # use IO::Socket::SSL qw(debug99); # useful for debugging SSL issues
--# We have to explicitly set the cert path because otherwise the https 
module
--# can't find the .pem

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

2019-05-18 Thread Michael Palimaka
commit: 8d456c71da6996cf904b4cd657bc1c02cdfc5efd
Author: Bernd Waibel  gmail  com>
AuthorDate: Fri May 17 14:22:25 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun May 19 00:18:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d456c71

media-gfx/yafaray: adjust maintainer

Add myself and proxy-maint as maintainers
See also
https://archives.gentoo.org/gentoo-dev/message/45119cbca4867b04277d52dadfede506

Closes: https://bugs.gentoo.org/686156
Closes: https://github.com/gentoo/gentoo/pull/12029
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Bernd Waibel  gmail.com>
Signed-off-by: Michael Palimaka  gentoo.org>

 media-gfx/yafaray/metadata.xml | 9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/media-gfx/yafaray/metadata.xml b/media-gfx/yafaray/metadata.xml
index f6cffe69824..795c6e4891e 100644
--- a/media-gfx/yafaray/metadata.xml
+++ b/media-gfx/yafaray/metadata.xml
@@ -1,7 +1,14 @@
 
 http://www.gentoo.org/dtd/metadata.dtd";>
 
-   
+   
+   wae...@gmail.com
+   Bernd Waibel
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainer Team
+   

YafaRay is a raytracing open source render engine. Raytracing 
is a rendering technique for generating realistic images by tracing the path of 
light through a 3D scene.
An render engine consists of a "faceless" computer program that 
interacts with a host 3D application to provide very specific raytracing 
capabilties "on demand". Blender 3D is the host application of YafaRay.



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2019-05-18 Thread Michael Palimaka
commit: 43fa5c13acc143fcb4fc24dc874f66132ce5d9e9
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Thu May 16 17:13:20 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun May 19 00:11:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43fa5c13

app-benchmarks/bonnie++: fix SRC_URI, use HTTPS

Closes: https://github.com/gentoo/gentoo/pull/12020
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Michael Palimaka  gentoo.org>

 app-benchmarks/bonnie++/bonnie++-1.97.2.ebuild | 6 +++---
 app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/app-benchmarks/bonnie++/bonnie++-1.97.2.ebuild 
b/app-benchmarks/bonnie++/bonnie++-1.97.2.ebuild
index 129503e4953..2bc0b415597 100644
--- a/app-benchmarks/bonnie++/bonnie++-1.97.2.ebuild
+++ b/app-benchmarks/bonnie++/bonnie++-1.97.2.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
 
 DESCRIPTION="Hard drive bottleneck testing benchmark suite"
-HOMEPAGE="http://www.coker.com.au/bonnie++/";
-SRC_URI="http://www.coker.com.au/bonnie++/experimental/${P}.tgz";
+HOMEPAGE="https://www.coker.com.au/bonnie++/";
+SRC_URI="https://www.coker.com.au/${PN}/${P}.tgz";
 
 LICENSE="GPL-2"
 SLOT="0"

diff --git a/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild 
b/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
index 3ff574002e5..53c4fb597a2 100644
--- a/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
+++ b/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
 
 DESCRIPTION="Hard drive bottleneck testing benchmark suite"
-HOMEPAGE="http://www.coker.com.au/bonnie++/";
-SRC_URI="http://www.coker.com.au/bonnie++/experimental/${P}.tgz";
+HOMEPAGE="https://www.coker.com.au/bonnie++/";
+SRC_URI="https://www.coker.com.au/${PN}/${P}.tgz";
 
 LICENSE="GPL-2"
 SLOT="0"



[gentoo-commits] repo/gentoo:master commit in: app-accessibility/brltty/

2019-05-18 Thread Michael Palimaka
commit: 4f3f452d318cccb100306c72d3c38a4573dda75c
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Thu May 16 16:57:14 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun May 19 00:09:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f3f452d

app-accessibility/brltty: update HOMEPAGE, use HTTPS

Closes: https://github.com/gentoo/gentoo/pull/12019
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Michael Palimaka  gentoo.org>

 app-accessibility/brltty/brltty-5.2-r1.ebuild | 4 ++--
 app-accessibility/brltty/brltty-6.0-r1.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/app-accessibility/brltty/brltty-5.2-r1.ebuild 
b/app-accessibility/brltty/brltty-5.2-r1.ebuild
index f234b052144..7f9cc71db5f 100644
--- a/app-accessibility/brltty/brltty-5.2-r1.ebuild
+++ b/app-accessibility/brltty/brltty-5.2-r1.ebuild
@@ -10,8 +10,8 @@ inherit findlib eutils multilib toolchain-funcs 
java-pkg-opt-2 flag-o-matic \
autotools udev systemd python-r1
 
 DESCRIPTION="Daemon that provides access to the Linux/Unix console for a blind 
person"
-HOMEPAGE="http://brltty.com/";
-SRC_URI="http://brltty.com/archive/${P}.tar.xz";
+HOMEPAGE="https://brltty.app/";
+SRC_URI="https://brltty.app/archive/${P}.tar.xz";
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"

diff --git a/app-accessibility/brltty/brltty-6.0-r1.ebuild 
b/app-accessibility/brltty/brltty-6.0-r1.ebuild
index 718a81cf76d..cdc5b015c76 100644
--- a/app-accessibility/brltty/brltty-6.0-r1.ebuild
+++ b/app-accessibility/brltty/brltty-6.0-r1.ebuild
@@ -12,8 +12,8 @@ inherit findlib eutils multilib toolchain-funcs 
java-pkg-opt-2 flag-o-matic \
autotools udev systemd python-r1
 
 DESCRIPTION="Daemon that provides access to the Linux/Unix console for a blind 
person"
-HOMEPAGE="http://brltty.com/";
-SRC_URI="http://brltty.com/archive/${P}.tar.xz";
+HOMEPAGE="https://brltty.app/";
+SRC_URI="https://brltty.app/archive/${P}.tar.xz";
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"



[gentoo-commits] repo/gentoo:master commit in: app-misc/pip3line/

2019-05-18 Thread Michael Palimaka
commit: 985fe2ed90a401937c152456de2798455acd6087
Author: Gabriel Caudrelier  gmail  com>
AuthorDate: Sat May 18 21:43:51 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun May 19 00:07:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=985fe2ed

app-misc/pip3line: Remove old

Closes: https://github.com/gentoo/gentoo/pull/12047
Package-Manager: Portage-2.3.62, Repoman-2.3.11
Signed-off-by: Gabriel Caudrelier  gmail.com>
Signed-off-by: Michael Palimaka  gentoo.org>

 app-misc/pip3line/Manifest  |  1 -
 app-misc/pip3line/pip3line-3.5.5.ebuild | 87 -
 2 files changed, 88 deletions(-)

diff --git a/app-misc/pip3line/Manifest b/app-misc/pip3line/Manifest
index 35700040cef..25f8349bf5a 100644
--- a/app-misc/pip3line/Manifest
+++ b/app-misc/pip3line/Manifest
@@ -1,2 +1 @@
-DIST pip3line-3.5.5.tar.gz 733385 BLAKE2B 
e9577fb02d778b689d1c3f5849f714b7d27a5ad49a7a68e412a19cb8251e7ca1d76d0a046bfe10db2257593ccba4f1aa5fff0f34c317975f75ef347f50172088
 SHA512 
95cbc567f1a7f2bcbc07fe7d560829d9538c126a2748b762fcf505bad47926376abea9d8eaba8670f4c3826b988ea1ea1338faf625a6cdf8db17f457af4edbbb
 DIST pip3line-3.6.0.tar.gz 736294 BLAKE2B 
75bc3bcd3ad547a31a1fc97f525a8575136ba1bcb48e5e9d7292732c04d2a62cd03710a4e6d76a652d5259e5081cf8cc8c2dfc3265ecf1f3ea5cbc6870c02ab6
 SHA512 
4263d18749533f1137dc3546a6a5b5856f9c5dc09355c866c7e6a8fc59787c84ee979f648f563c465aab314ff9155bba6e34e7d4641438d96bdb786c93dfaec8

diff --git a/app-misc/pip3line/pip3line-3.5.5.ebuild 
b/app-misc/pip3line/pip3line-3.5.5.ebuild
deleted file mode 100644
index 8506a3ba996..000
--- a/app-misc/pip3line/pip3line-3.5.5.ebuild
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_{5,6,7}} )
-
-inherit cmake-utils python-r1 python-utils-r1
-
-DESCRIPTION="Raw bytes manipulation, transformations (decoding and more) and 
interception"
-HOMEPAGE="https://github.com/metrodango/pip3line";
-
-if [[ ${PV} == * ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/metrodango/pip3line.git";
-   EGIT_BRANCH="master"
-else
-   SRC_URI="https://github.com/metrodango/pip3line/archive/v${PV}.tar.gz  
-> ${P}.tar.gz"
-   KEYWORDS="~amd64 ~x86"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-
-# A few comments
-# the ssl flag is just there to enable the plugin for low level crypto 
algorithms. 
-# It has nothing to do with the SSL/TLS protocol itself.
-
-IUSE="distorm python qscintilla ssl"
-
-RDEPEND="
-   ${PYTHON_DEPS}
-   dev-qt/qtconcurrent:5
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtsvg:5
-   dev-qt/qtwidgets:5
-   dev-qt/qtxmlpatterns:5
-   qscintilla? ( x11-libs/qscintilla )
-   ssl? ( dev-libs/openssl:0= )"
-
-DEPEND="${RDEPEND}
-   distorm? ( dev-vcs/git )"
-
-src_configure() {
-
-   local mycmakeargs=(
-   -DBASIC=yes
-   -DWITH_DISTORM=$(usex distorm)
-   -DWITH_OPENSSL=$(usex ssl)
-   -DWITH_SCINTILLA=$(usex qscintilla)
-   )
-
-   # distorm is statically linked, due to insufficiencies
-   # in the current distorm64 package 
-
-   if use distorm; then
-   mycmakeargs+=(-DWITH_DISTORM_LINK_STATICALLY=ON)
-   fi
-
-   if use python; then
-   local targets=( ${PYTHON_TARGETS} )
-   for target in ${targets[@]}; do
-   if python_is_python3 ${target}; then
-   python_export ${target} PYTHON PYTHON_LIBPATH 
PYTHON_INCLUDEDIR
-   mycmakeargs+=(-DWITH_PYTHON3=ON
-   
-DPYTHON3_INCLUDE_DIRS=${PYTHON_INCLUDEDIR}
-   -DPYTHON3_LIBRARIES=${PYTHON_LIBPATH}
-   )
-   break
-   fi
-   done
-   for target in ${targets[@]}; do
-   if ! python_is_python3 ${target}; then
-   python_export ${target} PYTHON PYTHON_LIBPATH 
PYTHON_INCLUDEDIR
-   mycmakeargs+=(-DWITH_PYTHON27=ON
-   
-DPYTHON27_INCLUDE_DIRS=${PYTHON_INCLUDEDIR}
-   -DPYTHON27_LIBRARIES=${PYTHON_LIBPATH}
-   )
-   break
-   fi
-   done
-   fi
-
-   cmake-utils_src_configure
-}



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

2019-05-18 Thread Michael Palimaka
commit: 93e8e7a241dcf94ad10820f4abdc473054985d91
Author: Jeffrey Lin  icurse  nl>
AuthorDate: Thu May  2 04:20:30 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun May 19 00:04:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93e8e7a2

dev-python/neovim-remote: version bump to 2.1.7

Closes: https://bugs.gentoo.org/684316
Closes: https://github.com/gentoo/gentoo/pull/11874
Package-Manager: Portage-2.3.65, Repoman-2.3.12
Signed-off-by: Jeffrey Lin  icurse.nl>
Signed-off-by: Michael Palimaka  gentoo.org>

 dev-python/neovim-remote/Manifest  |  1 +
 .../neovim-remote/neovim-remote-2.1.7.ebuild   | 36 ++
 2 files changed, 37 insertions(+)

diff --git a/dev-python/neovim-remote/Manifest 
b/dev-python/neovim-remote/Manifest
index 02a199db8a3..905bbdff8ac 100644
--- a/dev-python/neovim-remote/Manifest
+++ b/dev-python/neovim-remote/Manifest
@@ -1,2 +1,3 @@
 DIST neovim-remote-1.8.6.tar.gz 434012 BLAKE2B 
1fddb5e4376d3d17c2ff0c00e5f98700ab2d221af1ed1bc3f9c6dabe9cf1bdafe9f85041cb3a01f9a45f03df2d76bc0ae3c5a93603caa9ad461eb5ae50cb832f
 SHA512 
b973b8c495a3a371b9a21ec4110beebbfe304f00d73aaf1da849df612e6ea9a08258379600ccb8d83154b8ef12e26088ba90a1668c5262b7dc9c62c844f42798
 DIST neovim-remote-2.1.0.tar.gz 437657 BLAKE2B 
056bcc1edff5225b478e72f0b0ce3b8f296ed49d9d8a035bce88b6d26daeda884640f9f6a50b68d91a8ad38a4980f554385e799302a541ce2d6985110357188d
 SHA512 
23f6e98d57d856477b51c77aaa417af8a7a9aa02821f4dbd4870af7b3f9de07c4ba46ceae036ddb17382de4829238114dafa4b2b6d1e6dc71f1d9b4ba935b562
+DIST neovim-remote-2.1.7.tar.gz 438133 BLAKE2B 
37bcbabbc4336f31ddb20aae27c748fef80924d095ef285a27105b8276a89dd681a9ea210a4b1286cf7ae5461364044fa97889b803c0de15d18df09e0ad78e2f
 SHA512 
544c2b60b751cd72da793f1ea69fb0fed8990f009320ce6972cdb17af5ae2cc526af85bdc57f03a85cee1b8e3fdcd357a99a91252e44ae0761d3772f1714c240

diff --git a/dev-python/neovim-remote/neovim-remote-2.1.7.ebuild 
b/dev-python/neovim-remote/neovim-remote-2.1.7.ebuild
new file mode 100644
index 000..c07980e22fc
--- /dev/null
+++ b/dev-python/neovim-remote/neovim-remote-2.1.7.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{5,6,7} )
+
+inherit distutils-r1
+
+if [[ ${PV} ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/mhinz/${PN}.git";
+else
+   KEYWORDS="~amd64 ~arm"
+   SRC_URI="https://github.com/mhinz/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+fi
+
+DESCRIPTION="A tool that helps control neovim processes"
+HOMEPAGE="https://github.com/mhinz/neovim-remote";
+LICENSE="MIT"
+SLOT="0"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   dev-python/neovim-python-client[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+"
+
+DEPEND="${RDEPEND}
+   test? ( dev-python/pytest[${PYTHON_USEDEP}] )
+"
+
+python_test() {
+   pytest -vv || die
+}



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

2019-05-18 Thread Thomas Deutschmann
commit: 4acf09f49540a8b15d18a3ce8badcb161e58097c
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat May 18 23:13:40 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat May 18 23:13:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4acf09f4

Revert "sys-kernel/gentoo-sources: amd64 stable wrt bug #685984"

This reverts commit bbbf2289785d18c3019597d9d6e35e27a9066fca.

Not sure how this was stabilized, source tarballs weren't available.

Bug: https://bugs.gentoo.org/686262
Signed-off-by: Thomas Deutschmann  gentoo.org>

 sys-kernel/gentoo-sources/gentoo-sources-4.14.120.ebuild | 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-4.19.44.ebuild  | 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-4.4.180.ebuild  | 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-4.9.177.ebuild  | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.14.120.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.14.120.ebuild
index 4cee89b002d..19293b751a3 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.14.120.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.14.120.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches";
 IUSE="experimental"
 

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.19.44.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.19.44.ebuild
index 8010fc1e320..80e7aa2916c 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.19.44.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.19.44.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches";
 IUSE="experimental"
 

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.4.180.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.4.180.ebuild
index 5c7ab2a74f5..af4e14fd4d4 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.4.180.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.4.180.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches";
 IUSE="experimental"
 

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.9.177.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.9.177.ebuild
index 2004740447b..59e45f95d36 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.9.177.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.9.177.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches";
 IUSE="experimental"
 



[gentoo-commits] repo/gentoo:master commit in: sys-block/gparted/files/, sys-block/gparted/

2019-05-18 Thread Mart Raudsepp
commit: 8d4ae26dab175bf8ff612850b40d7c72085f24b7
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 23:07:23 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 23:07:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d4ae26d

sys-block/gparted: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 sys-block/gparted/Manifest |  2 -
 sys-block/gparted/files/gparted-pkexec |  2 -
 .../gparted/files/org.gentoo.pkexec.gparted.policy | 22 --
 sys-block/gparted/gparted-0.29.0.ebuild| 88 --
 sys-block/gparted/gparted-0.32.0.ebuild| 85 -
 5 files changed, 199 deletions(-)

diff --git a/sys-block/gparted/Manifest b/sys-block/gparted/Manifest
index ea8a446c52e..726d98ff0e4 100644
--- a/sys-block/gparted/Manifest
+++ b/sys-block/gparted/Manifest
@@ -1,3 +1 @@
-DIST gparted-0.29.0.tar.gz 3751292 BLAKE2B 
3feeb5abe01cdef5a14efb1bbe229d1ae167a087a5488eacd00577eb16f4038563e21144e15b38113b1cdca0b53455a036f9f5ac594b2633d579ecdfdf7b1d8e
 SHA512 
ea01a5b98f8a70d229eb81b58e46b5f0037e909cf72043e7364812ca77b32ee4bad0d215699a08f1b6fcacc31cece3a3058b6178e7bf2df6ba63b11ee64e2f8f
-DIST gparted-0.32.0.tar.gz 3880559 BLAKE2B 
bdd3dd636fd651af06623cdaca828f199a42048d270674c5d5c29a1b99f34fb3a903fa9499bd141ef58a3455d0b861af01b9ed44d9cdba10629e20e5b5114715
 SHA512 
ea05c387031d0e5ac7f8fa582d9b15881336d72ed2e04a8515217bedccea763491e8d093f9ed3f47fc6c648412a2dca7fff1735e70d897beb065e6b3e698ad43
 DIST gparted-0.33.0.tar.gz 3917056 BLAKE2B 
7d5eed87701f8c1f8125103a1b25fd58378aadee7faf3bba05f19ea94a6670687b190eb070cee792a205245dc7e5828caca7358cc59792adc8372c9907341772
 SHA512 
07b3f8ef355ce6c3302ed4747b9f542f1e231555c5ef39e758ee9a658bb14c9db2742af7f472a866bd122eb1ad9b2d45fd921484abb4ee319df1f15a74829f32

diff --git a/sys-block/gparted/files/gparted-pkexec 
b/sys-block/gparted/files/gparted-pkexec
deleted file mode 100644
index 4405cf42a1c..000
--- a/sys-block/gparted/files/gparted-pkexec
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-pkexec "/usr/sbin/gparted" "$@"

diff --git a/sys-block/gparted/files/org.gentoo.pkexec.gparted.policy 
b/sys-block/gparted/files/org.gentoo.pkexec.gparted.policy
deleted file mode 100644
index 566712ce2b4..000
--- a/sys-block/gparted/files/org.gentoo.pkexec.gparted.policy
+++ /dev/null
@@ -1,22 +0,0 @@
-
-http://www.freedesktop.org/standards/PolicyKit/1/policyconfig.dtd";>
-
-
-  Gentoo
-  http://www.gentoo.org/
-
-  
-Authentication is required to run the GParted Partition 
Editor
-gparted
-
-  auth_admin
-  auth_admin
-  auth_admin
-
-/usr/sbin/gparted
-true
-  
-
-

diff --git a/sys-block/gparted/gparted-0.29.0.ebuild 
b/sys-block/gparted/gparted-0.29.0.ebuild
deleted file mode 100644
index 4249a8da87d..000
--- a/sys-block/gparted/gparted-0.29.0.ebuild
+++ /dev/null
@@ -1,88 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="Gnome Partition Editor"
-HOMEPAGE="http://gparted.sourceforge.net/";
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2+ FDL-1.2+"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86"
-IUSE="btrfs cryptsetup dmraid f2fs fat hfs jfs kde mdadm ntfs policykit 
reiserfs reiser4 udf xfs"
-
-COMMON_DEPEND="
-   >=dev-cpp/glibmm-2.14:2
-   >=dev-cpp/gtkmm-2.22:2.4
-   >=dev-libs/glib-2:2
-   >=sys-block/parted-3.2:=
-"
-RDEPEND="${COMMON_DEPEND}
-   !policykit? (
-   kde? ( >=kde-plasma/kde-cli-tools-5.8.6-r1[kdesu] ) )
-   policykit? ( sys-auth/polkit )
-
-   >=sys-apps/util-linux-2.20
-   >=sys-fs/e2fsprogs-1.41
-   btrfs? ( sys-fs/btrfs-progs )
-   cryptsetup? ( sys-fs/cryptsetup )
-   dmraid? (
-   >=sys-fs/lvm2-2.02.45
-   sys-fs/dmraid
-   sys-fs/multipath-tools )
-   f2fs? ( sys-fs/f2fs-tools )
-   fat? (
-   sys-fs/dosfstools
-   sys-fs/mtools )
-   hfs? (
-   sys-fs/diskdev_cmds
-   virtual/udev
-   sys-fs/hfsutils )
-   jfs? ( sys-fs/jfsutils )
-   mdadm? ( sys-fs/mdadm )
-   ntfs? ( >=sys-fs/ntfs3g-2011.4.12[ntfsprogs] )
-   reiserfs? ( sys-fs/reiserfsprogs )
-   reiser4? ( sys-fs/reiser4progs )
-   udf? ( sys-fs/udftools )
-   xfs? ( sys-fs/xfsprogs sys-fs/xfsdump )
-"
-DEPEND="${COMMON_DEPEND}
-   app-text/docbook-xml-dtd:4.1.2
-   app-text/gnome-doc-utils
-   dev-util/intltool
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   sed -i -e 's:Exec=@gksuprog@ :Exec=:' gparted.desktop.in.in || die
-   gnome2_src_prepare
-}
-
-src_configure() {
-   gnome2_src_configure \
-   --enable-doc \
-   --enable-online-resize \
-   GKS

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

2019-05-18 Thread Mart Raudsepp
commit: 1c4e5368c4d7dd35ed51e91e50e27922f527ee03
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 23:08:57 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 23:08:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c4e5368

www-client/epiphany: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 www-client/epiphany/Manifest   |  2 -
 www-client/epiphany/epiphany-3.30.2.ebuild | 76 --
 www-client/epiphany/epiphany-3.30.3.ebuild | 76 --
 3 files changed, 154 deletions(-)

diff --git a/www-client/epiphany/Manifest b/www-client/epiphany/Manifest
index fcd6f19f5f2..4cbd9fc3fa2 100644
--- a/www-client/epiphany/Manifest
+++ b/www-client/epiphany/Manifest
@@ -1,3 +1 @@
-DIST epiphany-3.30.2.tar.xz 4528100 BLAKE2B 
3b711df8aa3166c26f639658de188e730f346be7c9bdfc65a5064804c1b0e22a744aec6c559c4131125e8fb34e7bb80636f559c7257cca3ad044c6b810bbe657
 SHA512 
4edaa042357ad44f2069412508cff9524e6e397da868b78768b493d03d77d16807d78f074eb1a4b18fcc1143d3a63d21f3eb1c0f126a31290320016c76c5130e
-DIST epiphany-3.30.3.tar.xz 4531796 BLAKE2B 
83ef6fb907d14e7a6605a4bb5ec5ecb5d463e2f21efe87550af4e5972bb02b6e52ca8df1d9866954d86858faa727bcd3fd525145d99eeca2c1c63d5387953b61
 SHA512 
a94a15cca6632157ab636a240af0567dc0e6b1070b510c1befc29e5bec51ab80a89ff101aff9c985632791dbfe0378417cbc2df4d48c1b2ada90d3d5c22a80ab
 DIST epiphany-3.30.4.tar.xz 4531732 BLAKE2B 
a4741d353800517c0233456e513a974ecd7641799395df7cafe6940cbfa49402836484010634ef3c59e36bd3bb2ced331d19a4ed05d1630c00d7ee385961227b
 SHA512 
8574a26a22a24db7e65254f65723f6e4405fccd783bb7e122f8a5f6aff62d3ef1dd0b3ce903eb1f750e7ae28c2f1154a2c1c15970892216211d51edee318bd47

diff --git a/www-client/epiphany/epiphany-3.30.2.ebuild 
b/www-client/epiphany/epiphany-3.30.2.ebuild
deleted file mode 100644
index 3d7e9af1f6b..000
--- a/www-client/epiphany/epiphany-3.30.2.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit gnome.org gnome2-utils meson xdg virtualx
-
-DESCRIPTION="GNOME webbrowser based on Webkit"
-HOMEPAGE="https://wiki.gnome.org/Apps/Web";
-
-LICENSE="GPL-3+"
-SLOT="0"
-IUSE="test"
-KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86"
-
-COMMON_DEPEND="
-   >=dev-libs/glib-2.52.0:2
-   >=x11-libs/gtk+-3.22.13:3
-   >=dev-libs/nettle-3.2:=
-   >=net-libs/webkit-gtk-2.21.92:4=
-   >=x11-libs/cairo-1.2
-   >=dev-libs/libdazzle-3.28.0
-   >=app-crypt/gcr-3.5.5:=[gtk]
-   >=x11-libs/gdk-pixbuf-2.36.5:2
-   dev-libs/icu:=
-   >=app-text/iso-codes-0.35
-   >=dev-libs/json-glib-1.2.4
-   >=x11-libs/libnotify-0.5.1
-   >=app-crypt/libsecret-0.14
-   >=net-libs/libsoup-2.48:2.4
-   >=dev-libs/libxml2-2.6.12:2
-   >=dev-libs/libxslt-1.1.7
-   dev-db/sqlite:3
-   dev-libs/gmp:0=
-   >=gnome-base/gsettings-desktop-schemas-0.0.1
-"
-RDEPEND="${COMMON_DEPEND}
-   x11-themes/adwaita-icon-theme
-"
-# paxctl needed for bug #407085
-# appstream-glib needed for appdata.xml gettext translation
-DEPEND="${COMMON_DEPEND}
-   dev-libs/appstream-glib
-   dev-util/gdbus-codegen
-   dev-util/glib-utils
-   dev-util/itstool
-   sys-apps/paxctl
-   >=sys-devel/gettext-0.19.8
-   virtual/pkgconfig
-"
-
-src_configure() {
-   local emesonargs=(
-   -Ddeveloper_mode=false
-   -Ddistributor_name=Gentoo
-   -Dtech_preview=false
-   $(meson_use test unit_tests)
-   )
-   meson_src_configure
-}
-
-src_test() {
-   virtx meson_src_test
-}
-
-pkg_postinst() {
-   xdg_pkg_postinst
-   gnome2_icon_cache_update
-   gnome2_schemas_update
-}
-
-pkg_postrm() {
-   xdg_pkg_postrm
-   gnome2_icon_cache_update
-   gnome2_schemas_update
-}

diff --git a/www-client/epiphany/epiphany-3.30.3.ebuild 
b/www-client/epiphany/epiphany-3.30.3.ebuild
deleted file mode 100644
index b4babc8d3b5..000
--- a/www-client/epiphany/epiphany-3.30.3.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit gnome.org gnome2-utils meson xdg virtualx
-
-DESCRIPTION="GNOME webbrowser based on Webkit"
-HOMEPAGE="https://wiki.gnome.org/Apps/Web";
-
-LICENSE="GPL-3+"
-SLOT="0"
-IUSE="test"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
-
-COMMON_DEPEND="
-   >=dev-libs/glib-2.52.0:2
-   >=x11-libs/gtk+-3.22.13:3
-   >=dev-libs/nettle-3.2:=
-   >=net-libs/webkit-gtk-2.21.92:4=
-   >=x11-libs/cairo-1.2
-   >=dev-libs/libdazzle-3.28.0
-   >=app-crypt/gcr-3.5.5:=[gtk]
-   >=x11-libs/gdk-pixbuf-2.36.5:2
-   dev-libs/icu:=
-   >=app-text/iso-codes-0.35
-   >=dev-libs/json-glib-1.2.4
-   >=x11-libs/libnotify-0.5.1
-   >=app-crypt/

[gentoo-commits] repo/gentoo:master commit in: sci-geosciences/gnome-maps/

2019-05-18 Thread Mart Raudsepp
commit: e9e7c75eb638651af5f08c018cf8c5ad3121
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 22:33:51 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 22:33:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9e7

sci-geosciences/gnome-maps: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 sci-geosciences/gnome-maps/Manifest|  1 -
 .../gnome-maps/gnome-maps-3.24.3.ebuild| 44 --
 2 files changed, 45 deletions(-)

diff --git a/sci-geosciences/gnome-maps/Manifest 
b/sci-geosciences/gnome-maps/Manifest
index 1d45f47e0c9..02845ad7b3a 100644
--- a/sci-geosciences/gnome-maps/Manifest
+++ b/sci-geosciences/gnome-maps/Manifest
@@ -1,2 +1 @@
-DIST gnome-maps-3.24.3.tar.xz 1145872 BLAKE2B 
bd6e9652c341def652beea966d3a171a050219f3bc83288bd83eacb069899cd94d154d53bcea081bdfefdeee9b74e56c158c703ed92c9fcb5e35ecd718900e4a
 SHA512 
b4a4c278359803e11b1aa43fb522a84b95eecfc349a134322f45db7acfe93867a61f6bd48e55a07d5d602b8161cdf5949a6b5d4da1212659e133260063ab6198
 DIST gnome-maps-3.30.3.tar.xz 2176712 BLAKE2B 
8595643ddf3f6c419fdc053561e49e62d6bd6e3713d3d809d3fe73cd1aecf3361e3f6592fb53d6963cbdd5fc3edaf1dcb616059da9e5e506a3399d00a9a65de7
 SHA512 
f3481266c6cf792da71ef40ce489c13fdd807dab91238e02b815b25e29119ffb56212fb03078e14004cca27e24906af1b94f7f3c4325bbf4f332c782c79d8203

diff --git a/sci-geosciences/gnome-maps/gnome-maps-3.24.3.ebuild 
b/sci-geosciences/gnome-maps/gnome-maps-3.24.3.ebuild
deleted file mode 100644
index fa520aa1646..000
--- a/sci-geosciences/gnome-maps/gnome-maps-3.24.3.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="A map application for GNOME"
-HOMEPAGE="https://wiki.gnome.org/Apps/Maps";
-
-LICENSE="GPL-2+ LGPL-2+ MIT CC-BY-3.0 CC-BY-SA-3.0"
-SLOT="0"
-IUSE=""
-KEYWORDS="amd64 x86"
-
-COMMON_DEPEND="
-   >=app-misc/geoclue-0.12.99:2.0[introspection]
-   >=dev-libs/folks-0.10
-   >=dev-libs/gjs-1.44.0
-   >=dev-libs/gobject-introspection-0.6.3:=
-   >=dev-libs/glib-2.39.3:2
-   >=dev-libs/libgee-0.16:0.8[introspection]
-   dev-libs/libxml2:2
-   >=media-libs/libchamplain-0.12.14:0.12[gtk,introspection]
-   >=net-libs/rest-0.7.90:0.7[introspection]
-   >=sci-geosciences/geocode-glib-3.15.2[introspection]
-   >=x11-libs/gtk+-3.22:3[introspection]
-"
-# Found by grepping imports.gi in ${S}
-RDEPEND="${COMMON_DEPEND}
-   app-crypt/libsecret[introspection]
-   dev-libs/libgweather[introspection]
-   media-libs/clutter-gtk:1.0[introspection]
-   media-libs/clutter:1.0[introspection]
-   media-libs/cogl:1.0[introspection]
-   net-libs/gnome-online-accounts[introspection]
-   net-libs/libgfbgraph[introspection]
-   net-libs/libsoup:2.4[introspection]
-   net-libs/webkit-gtk:4[introspection]
-   x11-libs/gdk-pixbuf:2[introspection]
-"
-DEPEND="${COMMON_DEPEND}
-   >=dev-util/intltool-0.40
-   virtual/pkgconfig
-"



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

2019-05-18 Thread Mart Raudsepp
commit: ab7c1d39f6a3882d04cfe8fbd1d8efd1195beaf2
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 22:24:05 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 22:24:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab7c1d39

media-video/cheese: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 media-video/cheese/Manifest |  1 -
 media-video/cheese/cheese-3.28.0.ebuild | 72 -
 2 files changed, 73 deletions(-)

diff --git a/media-video/cheese/Manifest b/media-video/cheese/Manifest
index d1e786c00c9..db9ce0dbb89 100644
--- a/media-video/cheese/Manifest
+++ b/media-video/cheese/Manifest
@@ -1,2 +1 @@
-DIST cheese-3.28.0.tar.xz 1544904 BLAKE2B 
cdad63b4175bb52c3a77ee5ed0058afdd8b5d509ef17b5931d2f01457b9ff327d3ad270ad963e3185c928ddc7203b00163137a789683669d3f8c39d5a9926da8
 SHA512 
c52b083b132a8c885df55def3d6bf96180fc93c8b7368f48412c8dd63e073a268ff0e86959a977bd8bf372a53e127419b96046d92cb3a96674f86cfb3477ceea
 DIST cheese-3.30.0.tar.xz 1546680 BLAKE2B 
32cfc9553e1c9ebfe7d3eb5fdf19d74b49e9f69ea005f4c79097d69caa2125803c5c319e98ccd3e8f72157a5fd86c018f1be7af7045f6541ecd36d4162c5cdd1
 SHA512 
622910cedc8eadec4161f60e2bb3f02cbe11352b2431fdd9783f724b4119ffae6254b1566e1144c25491067f9c683a55eb85b265ef28992d852adce02fbdc8b4

diff --git a/media-video/cheese/cheese-3.28.0.ebuild 
b/media-video/cheese/cheese-3.28.0.ebuild
deleted file mode 100644
index cdb01a01521..000
--- a/media-video/cheese/cheese-3.28.0.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit gnome2 virtualx
-
-DESCRIPTION="A cheesy program to take pictures and videos from your webcam"
-HOMEPAGE="https://wiki.gnome.org/Apps/Cheese";
-
-LICENSE="GPL-2+"
-SLOT="0/8" # subslot = libcheese soname version
-IUSE="+introspection"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
-
-COMMON_DEPEND="
-   >=dev-libs/glib-2.39.90:2
-   >=x11-libs/gtk+-3.13.4:3[introspection?]
-   >=gnome-base/gnome-desktop-2.91.6:3=
-   >=media-libs/libcanberra-0.26[gtk3]
-   >=media-libs/clutter-1.13.2:1.0[introspection?]
-   >=media-libs/clutter-gtk-0.91.8:1.0
-   media-libs/clutter-gst:3.0
-   media-libs/cogl:1.0=[introspection?]
-
-   media-video/gnome-video-effects
-   x11-libs/gdk-pixbuf:2[jpeg,introspection?]
-   x11-libs/libX11
-   x11-libs/libXtst
-
-   >=media-libs/gstreamer-1.4:1.0[introspection?]
-   
>=media-libs/gst-plugins-base-1.4:1.0[introspection?,ogg,pango,theora,vorbis,X]
-
-   introspection? ( >=dev-libs/gobject-introspection-0.6.7:= )
-"
-RDEPEND="${COMMON_DEPEND}
-   >=media-libs/gst-plugins-bad-1.4:1.0
-   >=media-libs/gst-plugins-good-1.4:1.0
-
-   >=media-plugins/gst-plugins-jpeg-1.4:1.0
-   >=media-plugins/gst-plugins-v4l2-1.4:1.0
-   >=media-plugins/gst-plugins-vpx-1.4:1.0
-"
-# libxml2+gdk-pixbuf required for glib-compile-resources
-DEPEND="${COMMON_DEPEND}
-   app-text/docbook-xml-dtd:4.3
-   dev-libs/appstream-glib
-   dev-libs/libxml2:2
-   dev-libs/libxslt
-   dev-util/glib-utils
-   >=dev-util/gtk-doc-am-1.14
-   >=dev-util/intltool-0.50
-   dev-util/itstool
-   virtual/pkgconfig
-   x11-base/xorg-proto
-"
-# eautoreconf needs yelp-tools
-
-src_configure() {
-   gnome2_src_configure \
-   GST_INSPECT=$(type -P true) \
-   GTESTER_REPORT=$(type -P true) \
-   VALAC=$(type -P true) \
-   $(use_enable introspection) \
-   --disable-lcov \
-   --disable-static
-}
-
-src_test() {
-   "${EROOT}${GLIB_COMPILE_SCHEMAS}" --allow-any-name "${S}/data" || die
-   GSETTINGS_SCHEMA_DIR="${S}/data" virtx emake check
-}



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

2019-05-18 Thread Mart Raudsepp
commit: 30be1a0983d3d7fa78038563106845b629a7cbd8
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 22:41:23 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 22:41:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30be1a09

x11-libs/gtksourceview: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 x11-libs/gtksourceview/Manifest|  2 -
 x11-libs/gtksourceview/gtksourceview-3.24.9.ebuild | 57 
 x11-libs/gtksourceview/gtksourceview-4.0.3.ebuild  | 63 --
 3 files changed, 122 deletions(-)

diff --git a/x11-libs/gtksourceview/Manifest b/x11-libs/gtksourceview/Manifest
index acc3b6472a7..dafc7eae557 100644
--- a/x11-libs/gtksourceview/Manifest
+++ b/x11-libs/gtksourceview/Manifest
@@ -2,6 +2,4 @@ DIST gtksourceview-2.10.5.tar.bz2 1253321 BLAKE2B 
810a3eeca69bab4356b21c64129bb8
 DIST gtksourceview-3.24.10.tar.xz 1422888 BLAKE2B 
df344049095a354d49474d0ff0ae9d875d1b523452d19f894a3e4615889ab402bf20c4870f4aea7665ea89fd219dc7d441b8b40576e331f90a2d218d4815a45f
 SHA512 
990935ed7c3b10a1659cf22bd36eb71e76088768f7b70234b50465f542592720bb6b206746e0606c96ab99ba0208535fc6073b4f6c0f3427acd0ab5a43420d46
 DIST gtksourceview-3.24.11.tar.xz 1438232 BLAKE2B 
a25762255a12887c8151465689e3acbd5864a6638044500acd087832888a092b8aad5d885d31c9dbe057ce183510afa2342bccb2a2675719dbba7e82be72368a
 SHA512 
3490b34c6432a2e2ef292ad5bf982fdd22d33b1472434549b4ea8ddae0fc8808e128ef947e4d0dcb41e8de5e601b202f52532fa11d35050acfc42f9936b2
 DIST gtksourceview-3.24.8.tar.xz 1408964 BLAKE2B 
e406aa9f776821abfcc87333fc955b4f3ae334f73a8b1dfa0b123067df24bd4f473e326347c99df7dc6c97adbdde8739cb301e45ca70324f6e8de2ce9e1ea973
 SHA512 
84a02278344f9fe3c1b8f2440c6179feaea53df93061c63023d92bcaa1ec7ff8e95e1f3a463c23d8487c74492469f3dc367bcca3975ef169bf03925ecee7f7ff
-DIST gtksourceview-3.24.9.tar.xz 141 BLAKE2B 
9d148fba03339c7dccca70822f498aea6423125af1a954e0c9f8ff9735141fc9e4f845c7172be5faf97e694445dc95d41d5d903ef5b5da3dd0ce7fe58b524ca7
 SHA512 
29b58afba1c0b473205cf7070997139d2ca07cf68d40185aa76fa59c900ad21c03ccb79dec9970e5f96743cfdb5a7d926b21a9947244bc8cf8cbd1033467cd01
-DIST gtksourceview-4.0.3.tar.xz 1396640 BLAKE2B 
5e5f84597c1f75a732ac487c2107eb54be2740eb2cabd177aec76cb4b2504a32969c4918e2a1294e9d486660090985a4f588dbde49f241fbb1493eaa3daa335b
 SHA512 
d3f7512bddf247166c12dc38bc66d55e44c1830f9b8d62758f06cb7117e33f8908f4d8186b9d7e77514623a58f3a973cc75e3fd6a09c5f891f8b948012a76955
 DIST gtksourceview-4.2.0.tar.xz 1410764 BLAKE2B 
8f20a762c16a0abc47ff191a2ea4d6b44a397cabee056e98263d0ba59cbc7207ac72341a630aa83fe7855804bd6add77e0d93e706ac9561c9577843f17e00246
 SHA512 
f2350b1e7042309c01be0feda6059d788a7ef55c4ccd48e16b4c92a71292ed6f92243455ca42aa0950db61de8d68f4a76f4fac46cd46316b690bcef1ea34c641

diff --git a/x11-libs/gtksourceview/gtksourceview-3.24.9.ebuild 
b/x11-libs/gtksourceview/gtksourceview-3.24.9.ebuild
deleted file mode 100644
index f1f99c3904a..000
--- a/x11-libs/gtksourceview/gtksourceview-3.24.9.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-VALA_MIN_API_VERSION="0.24"
-VALA_USE_DEPEND="vapigen"
-
-inherit gnome2 vala virtualx
-
-DESCRIPTION="A text widget implementing syntax highlighting and other features"
-HOMEPAGE="https://wiki.gnome.org/Projects/GtkSourceView";
-
-LICENSE="GPL-2+ LGPL-2.1+"
-SLOT="3.0/3"
-
-IUSE="glade +introspection +vala"
-REQUIRED_USE="vala? ( introspection )"
-
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
-
-RDEPEND="
-   >=dev-libs/glib-2.48:2
-   >=dev-libs/libxml2-2.6:2
-   >=x11-libs/gtk+-3.20:3[introspection?]
-   glade? ( >=dev-util/glade-3.9:3.10 )
-   introspection? ( >=dev-libs/gobject-introspection-1.42:= )
-"
-DEPEND="${RDEPEND}
-   dev-util/glib-utils
-   >=dev-util/gtk-doc-am-1.25
-   >=sys-devel/gettext-0.19.4
-   virtual/pkgconfig
-   vala? ( $(vala_depend) )
-"
-
-src_prepare() {
-   use vala && vala_src_prepare
-   gnome2_src_prepare
-}
-
-src_configure() {
-   gnome2_src_configure \
-   $(use_enable glade glade-catalog) \
-   $(use_enable introspection) \
-   $(use_enable vala)
-}
-
-src_test() {
-   virtx emake check
-}
-
-src_install() {
-   gnome2_src_install
-
-   insinto /usr/share/${PN}-3.0/language-specs
-   doins "${FILESDIR}"/2.0/gentoo.lang
-}

diff --git a/x11-libs/gtksourceview/gtksourceview-4.0.3.ebuild 
b/x11-libs/gtksourceview/gtksourceview-4.0.3.ebuild
deleted file mode 100644
index 11d83986d25..000
--- a/x11-libs/gtksourceview/gtksourceview-4.0.3.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public Lic

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

2019-05-18 Thread Mart Raudsepp
commit: 01c2ab16d5c37d19f7ad694cc8a907a30f7aa6eb
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 22:45:34 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 22:45:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01c2ab16

x11-themes/zuki-themes: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 x11-themes/zuki-themes/Manifest  |  2 -
 x11-themes/zuki-themes/zuki-themes-3.24.3.ebuild | 49 
 x11-themes/zuki-themes/zuki-themes-3.26.1.ebuild | 49 
 3 files changed, 100 deletions(-)

diff --git a/x11-themes/zuki-themes/Manifest b/x11-themes/zuki-themes/Manifest
index e6c4706e91d..b2dcf99cb29 100644
--- a/x11-themes/zuki-themes/Manifest
+++ b/x11-themes/zuki-themes/Manifest
@@ -1,3 +1 @@
-DIST zuki-themes-3.24.3.tar.gz 906469 BLAKE2B 
443e99711fe9908fef976f0609401413f90e54f0bc0aa1bf8ddd65085ad755457402618336884be354030c6548e39a8cc0c5a5079b7b64d17760fadb0792319f
 SHA512 
79ce43816db11dcd4be383bf4e0512aac0863214aa3fd3a545f06b922d441d3d1ddaf63ace166736b7598bf6f4ebdd1568092622eea3ef48b2ce37fbefd312ba
-DIST zuki-themes-3.26.1.tar.gz 909306 BLAKE2B 
5bf673dce90992caf1b5d10d145f90bb26dc4f0f2939cb40cf22c9beef4f6b6ccad71a42d8f165141bf6e1029522a8c16e4dce820247b7a7887f3ad7fb987d2a
 SHA512 
10ed25e6e6394f248ac69e9808f2223aff2cfdd35a98cd6b4547f5cdb5d7b8d353f224b1b582b175bd74c10a9231bec913b7645bb303ce2ab576b10537bc39e7
 DIST zuki-themes-3.30.1.tar.gz 921175 BLAKE2B 
91de90a15db77b47569d2ce74ad0d5514f6dbd790e0381d32a3009e08fd13bae8e26110476cf668519504b10362cfb96c9e315094f1df88796f18b79f08f3e11
 SHA512 
ea493c240c0b97f0ca1acaff14c17e7077200766227be80ef5ab3cd89f12bdc167ddd53d7aa0e0a64ba5aa8caf88823e2976b1ce7dfeafb1207cc09fbef65073

diff --git a/x11-themes/zuki-themes/zuki-themes-3.24.3.ebuild 
b/x11-themes/zuki-themes/zuki-themes-3.24.3.ebuild
deleted file mode 100644
index 8e196588462..000
--- a/x11-themes/zuki-themes/zuki-themes-3.24.3.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit versionator
-
-MY_PV="$(replace_version_separator 2 '-' ${PV})"
-DESCRIPTION="Zuki themes for GTK, gnome-shell and more"
-HOMEPAGE="https://github.com/lassekongo83/zuki-themes";
-SRC_URI="https://github.com/lassekongo83/${PN}/archive/v${MY_PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="gnome-shell mate xfce"
-
-RDEPEND="
-   >=x11-themes/gnome-themes-standard-3.6
-   >=x11-themes/gtk-engines-murrine-0.98.1.1
-   gnome-shell? ( media-fonts/roboto )
-   !https://github.com/lassekongo83/zuki-themes";
-SRC_URI="https://github.com/lassekongo83/${PN}/archive/v${MY_PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="gnome-shell mate xfce"
-
-RDEPEND="
-   >=x11-themes/gnome-themes-standard-3.6
-   >=x11-themes/gtk-engines-murrine-0.98.1.1
-   gnome-shell? ( media-fonts/roboto )
-   !

[gentoo-commits] repo/gentoo:master commit in: net-libs/gnome-online-accounts/files/, net-libs/gnome-online-accounts/

2019-05-18 Thread Mart Raudsepp
commit: 8784d5fef370f87be41a2a277fde91abdb5d4f21
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 22:53:06 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 22:54:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8784d5fe

net-libs/gnome-online-accounts: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 net-libs/gnome-online-accounts/Manifest|   1 -
 .../files/3.24.5-glib-2.58-compat.patch| 328 -
 .../files/glib-2.58-compat2.patch  |  31 --
 .../gnome-online-accounts-3.24.5.ebuild|  98 --
 4 files changed, 458 deletions(-)

diff --git a/net-libs/gnome-online-accounts/Manifest 
b/net-libs/gnome-online-accounts/Manifest
index 8f5701c6a0b..106606db067 100644
--- a/net-libs/gnome-online-accounts/Manifest
+++ b/net-libs/gnome-online-accounts/Manifest
@@ -1,2 +1 @@
-DIST gnome-online-accounts-3.24.5.tar.xz 1391332 BLAKE2B 
9085cbb0c92bfcd338d5feca7ebdd3e3b15483e47fe29faffb8f9fb474663adeaf8d5cc81673c552652c9444e742f2782fd727c93bf488f5c976bde72d00ddce
 SHA512 
8db35d21f0639e7452ec5cb34455b6d48a77fe0755c525f22e5235abe758f09ad5a4685e5e4912a53def298c76a13b558704a83803b5aabecc13a0f9bc3ae0e4
 DIST gnome-online-accounts-3.30.2.tar.xz 921284 BLAKE2B 
9dc503f73ddda64411f73ac865a0355f318ad13789fac0cf7e7a91d16e53b03dee33acca6752060ce54936cfd5050adb8fadfd121158c0496a3f516e35e8fa45
 SHA512 
3555421adbfec0e7da1c8f3a47415f6c5bc3eaf8b246cf08eb6ee420286a4b40d11bc6e2514bca937b022b95068c9862438fa632d3385503aba2647a4a57976b

diff --git a/net-libs/gnome-online-accounts/files/3.24.5-glib-2.58-compat.patch 
b/net-libs/gnome-online-accounts/files/3.24.5-glib-2.58-compat.patch
deleted file mode 100644
index 3964d15b86a..000
--- a/net-libs/gnome-online-accounts/files/3.24.5-glib-2.58-compat.patch
+++ /dev/null
@@ -1,328 +0,0 @@
-From eaaeb46caa8d0068a695c8356402fc7c342d6d09 Mon Sep 17 00:00:00 2001
-From: Emmanuele Bassi 
-Date: Thu, 19 Jul 2018 12:54:39 +0100
-Subject: [PATCH 1/2] Build against GLib 2.57.2
-
-(cherry picked from commit 975625cd298d0088fe08189d4f77b10c96601917)

-
-diff --git a/src/daemon/goadaemon.c b/src/daemon/goadaemon.c
-index 89b60199..b600b943 100644
 a/src/daemon/goadaemon.c
-+++ b/src/daemon/goadaemon.c
-@@ -1233,7 +1233,7 @@ get_all_providers_cb (GObject  *source,
-   g_free (key_file_data);
-   g_free (group);
-   g_free (id);
--  g_clear_pointer (&key_file, (GDestroyNotify) g_key_file_unref);
-+  g_clear_pointer (&key_file, g_key_file_unref);
-   g_object_unref (data->daemon);
-   g_object_unref (data->manager);
-   g_object_unref (data->invocation);
-@@ -1437,7 +1437,7 @@ on_account_handle_remove (GoaAccount*account,
-  out:
-   g_clear_object (&provider);
-   g_clear_object (&task);
--  g_clear_pointer (&key_file, (GDestroyNotify) g_key_file_unref);
-+  g_clear_pointer (&key_file, g_key_file_unref);
-   g_free (group);
-   return TRUE; /* invocation was handled */
- }
-diff --git a/src/daemon/main.c b/src/daemon/main.c
-index ae8c22d4..2db8d171 100644
 a/src/daemon/main.c
-+++ b/src/daemon/main.c
-@@ -128,8 +128,8 @@ main (intargc,
-   g_clear_object (&the_daemon);
-   if (name_owner_id != 0)
- g_bus_unown_name (name_owner_id);
--  g_clear_pointer (&loop, (GDestroyNotify) g_main_loop_unref);
--  g_clear_pointer (&opt_context, (GDestroyNotify) g_option_context_free);
-+  g_clear_pointer (&loop, g_main_loop_unref);
-+  g_clear_pointer (&opt_context, g_option_context_free);
- 
-   g_message ("goa-daemon version %s exiting", PACKAGE_VERSION);
- 
-diff --git a/src/examples/introspect-providers.c 
b/src/examples/introspect-providers.c
-index e5960a81..5cb1a3cc 100644
 a/src/examples/introspect-providers.c
-+++ b/src/examples/introspect-providers.c
-@@ -153,7 +153,7 @@ get_all (GObject *source_object, GAsyncResult *res, 
gpointer user_data)
-   g_print ("%s", key_file_data);
- 
-  out:
--  g_clear_pointer (&key_file, (GDestroyNotify) g_key_file_unref);
-+  g_clear_pointer (&key_file, g_key_file_unref);
-   g_free (key_file_data);
-   g_list_free_full (providers, g_object_unref);
-   g_main_loop_quit (loop);
-diff --git a/src/goabackend/goadlnaservermanager.c 
b/src/goabackend/goadlnaservermanager.c
-index 284922fe..aee245ae 100644
 a/src/goabackend/goadlnaservermanager.c
-+++ b/src/goabackend/goadlnaservermanager.c
-@@ -175,7 +175,7 @@ goa_dlna_server_manager_dispose (GObject *object)
-   GoaDlnaServerManager *self = GOA_DLNA_SERVER_MANAGER (object);
-   GoaDlnaServerManagerPrivate *priv = self->priv;
- 
--  g_clear_pointer (&priv->servers, (GDestroyNotify) g_hash_table_unref);
-+  g_clear_pointer (&priv->servers, g_hash_table_unref);
-   g_clear_object (&priv->proxy);
- 
-   G_OBJECT_CLASS (goa_dlna_server_manager_parent_class)->dispose (object);
-diff --git a/src/goabackend/goaexchangeprovider.c 
b/src/goabackend/goaexchangeprovider.c
-index 63ebe21e..428b2841 1006

[gentoo-commits] repo/gentoo:master commit in: sys-apps/gnome-disk-utility/

2019-05-18 Thread Mart Raudsepp
commit: 282033da49667440e1b18799fcbc610ff1404d58
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 22:35:48 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 22:35:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=282033da

sys-apps/gnome-disk-utility: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 sys-apps/gnome-disk-utility/Manifest   |  1 -
 .../gnome-disk-utility-3.24.1.ebuild   | 45 
 .../gnome-disk-utility-3.30.2.ebuild   | 63 --
 3 files changed, 109 deletions(-)

diff --git a/sys-apps/gnome-disk-utility/Manifest 
b/sys-apps/gnome-disk-utility/Manifest
index 3c46b7098de..ca2cfb1f8cf 100644
--- a/sys-apps/gnome-disk-utility/Manifest
+++ b/sys-apps/gnome-disk-utility/Manifest
@@ -1,2 +1 @@
-DIST gnome-disk-utility-3.24.1.tar.xz 1947976 BLAKE2B 
a3b9d02417bed415bf6b9b8d86abcfa857abe316133ce7abfa11db835831e916d879b09d1e1129d12621b0234ffa27c1e246837cb614c51c54ce387a9c73bea4
 SHA512 
ae6bf83e005733ae985987411a9fe25b0059f64484fc0d613ad54af478130782974607bec53713ee36c2a28de653ceba82b0fb091aee57101773c0eeeaaed2d5
 DIST gnome-disk-utility-3.30.2.tar.xz 1665896 BLAKE2B 
9000dc8e95f27cccdb3a13b84c527c740f801a58b0f3f1a384ae1415eeed330f5f81f284f190d110dca0f5dcfb9316262491b715c2b2cd4f67813587046b5b42
 SHA512 
59228fa923b7b1e89e8ce8d96920b6f452bc6ae62c203261bffbc584a2ef231e1d2006db8ddbd15f1f7b4ee14aeae54b85520b89bfd3e1450d42c423d987f2dc

diff --git a/sys-apps/gnome-disk-utility/gnome-disk-utility-3.24.1.ebuild 
b/sys-apps/gnome-disk-utility/gnome-disk-utility-3.24.1.ebuild
deleted file mode 100644
index 493c50f407c..000
--- a/sys-apps/gnome-disk-utility/gnome-disk-utility-3.24.1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-
-inherit gnome2
-
-DESCRIPTION="Disk Utility for GNOME using udisks"
-HOMEPAGE="https://wiki.gnome.org/Apps/Disks";
-
-LICENSE="GPL-2+"
-SLOT="0"
-IUSE="fat gnome systemd"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sh ~sparc x86"
-
-COMMON_DEPEND="
-   >=app-arch/xz-utils-5.0.5
-   >=app-crypt/libsecret-0.7
-   >=dev-libs/glib-2.31:2[dbus]
-   dev-libs/libpwquality
-   >=media-libs/libcanberra-0.1[gtk3]
-   >=media-libs/libdvdread-4.2.0
-   >=sys-fs/udisks-2.1.1:2
-   >=x11-libs/gtk+-3.16.0:3
-   >=x11-libs/libnotify-0.7:=
-   systemd? ( >=sys-apps/systemd-209:0= )
-"
-RDEPEND="${COMMON_DEPEND}
-   x11-themes/adwaita-icon-theme
-   fat? ( sys-fs/dosfstools )
-   gnome? ( >=gnome-base/gnome-settings-daemon-3.8 )
-"
-DEPEND="${COMMON_DEPEND}
-   dev-libs/appstream-glib
-   dev-libs/libxslt
-   >=sys-devel/gettext-0.19.8
-   virtual/pkgconfig
-"
-
-src_configure() {
-   gnome2_src_configure \
-   $(use_enable gnome gsd-plugin) \
-   $(use_enable systemd libsystemd)
-}

diff --git a/sys-apps/gnome-disk-utility/gnome-disk-utility-3.30.2.ebuild 
b/sys-apps/gnome-disk-utility/gnome-disk-utility-3.30.2.ebuild
deleted file mode 100644
index 16ce62737a9..000
--- a/sys-apps/gnome-disk-utility/gnome-disk-utility-3.30.2.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-
-inherit gnome.org gnome2-utils meson xdg
-
-DESCRIPTION="Disk Utility for GNOME using udisks"
-HOMEPAGE="https://wiki.gnome.org/Apps/Disks";
-
-LICENSE="GPL-2+"
-SLOT="0"
-IUSE="fat gnome systemd"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86"
-
-COMMON_DEPEND="
-   >=dev-libs/glib-2.31:2
-   >=sys-fs/udisks-2.7.6:2
-   >=x11-libs/gtk+-3.16.0:3
-   >=app-crypt/libsecret-0.7
-   >=dev-libs/libpwquality-1.0.0
-   >=media-libs/libcanberra-0.1[gtk3]
-   >=media-libs/libdvdread-4.2.0
-   >=x11-libs/libnotify-0.7:=
-   >=app-arch/xz-utils-5.0.5
-   systemd? ( >=sys-apps/systemd-209:0= )
-"
-RDEPEND="${COMMON_DEPEND}
-   x11-themes/adwaita-icon-theme
-   fat? ( sys-fs/dosfstools )
-   gnome? ( >=gnome-base/gnome-settings-daemon-3.8 )
-"
-# appstream-glib for developer_name tag in appdata (gettext-0.19.8.1 own 
appdata.its file doesn't have it yet)
-# libxml2 for xml-stripblanks in gresource
-DEPEND="${COMMON_DEPEND}
-   dev-libs/appstream-glib
-   dev-libs/libxml2:2
-   dev-libs/libxslt
-   dev-util/glib-utils
-   >=sys-devel/gettext-0.19.8
-   virtual/pkgconfig
-"
-
-src_configure() {
-   local emesonargs=(
-   $(meson_use gnome gsd_plugin)
-   $(meson_use systemd libsystemd)
-   )
-   meson_src_configure
-}
-
-pkg_postinst() {
-   xdg_pkg_postinst
-   gnome2_icon_cache_update
-   gnome2_schemas_update
-}
-
-pkg_postrm() {
-  

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

2019-05-18 Thread Mart Raudsepp
commit: d603909b6b6b57e85b4ffc564f32d1b0c1cd2003
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 22:17:59 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 22:17:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d603909b

media-sound/gnome-music: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 media-sound/gnome-music/Manifest  |  1 -
 media-sound/gnome-music/gnome-music-3.26.2.ebuild | 64 ---
 2 files changed, 65 deletions(-)

diff --git a/media-sound/gnome-music/Manifest b/media-sound/gnome-music/Manifest
index 77ba0ab9710..8f1734ee64b 100644
--- a/media-sound/gnome-music/Manifest
+++ b/media-sound/gnome-music/Manifest
@@ -1,2 +1 @@
-DIST gnome-music-3.26.2.tar.xz 1563244 BLAKE2B 
5a5d27b34470a49a752cb67a1040e227595fd15c6ca4f7656818636d614dfef8ec082dc014ea05c271f512f7c362dc2f81a38359ef04e0663467f62ff3ac2423
 SHA512 
e8efe31003a54b6cfea151c5402c4d06e48928be7b79332f7f9fb8a567ff7d0d42a43e943398ad6cb7e391d0162322c7fde74922a4b16e52ec24691cc1bfc5b0
 DIST gnome-music-3.30.2.tar.xz 3027580 BLAKE2B 
9cd5a10fecbf7fb962455bec7ee5392a305f3bab9ebb3e2f0d24066ffd6975377c57a722e850ee340e2990f61b06456f1fe963b80d57030416af7ea3b7f92b32
 SHA512 
b9fa33ccb76d747e22e1144b2c77dc88432386fdfd4f52720cb1ae3230c06fb899fec654dc1e126103e393eb0358a4385099743abe26505b9b7dcffe2d04a8c8

diff --git a/media-sound/gnome-music/gnome-music-3.26.2.ebuild 
b/media-sound/gnome-music/gnome-music-3.26.2.ebuild
deleted file mode 100644
index 1ccbf317c74..000
--- a/media-sound/gnome-music/gnome-music-3.26.2.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python{3_5,3_6} )
-
-inherit gnome2 python-single-r1
-
-DESCRIPTION="Music management for Gnome"
-HOMEPAGE="https://wiki.gnome.org/Apps/Music";
-
-LICENSE="GPL-2+"
-SLOT="0"
-IUSE=""
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-KEYWORDS="amd64 x86"
-
-COMMON_DEPEND="
-   ${PYTHON_DEPS}
-   >=app-misc/tracker-1.99.1:=[introspection(+)]
-   >=dev-python/pygobject-3.21.1:3[cairo,${PYTHON_USEDEP}]
-   >=dev-libs/glib-2.28:2
-   >=dev-libs/gobject-introspection-1.35.9:=
-   >=media-libs/grilo-0.3.4:0.3[introspection]
-   >=media-libs/libmediaart-1.9.1:2.0[introspection]
-   >=x11-libs/gtk+-3.19.3:3[introspection]
-"
-# xdg-user-dirs-update needs to be there to create needed dirs
-# https://bugzilla.gnome.org/show_bug.cgi?id=731613
-RDEPEND="${COMMON_DEPEND}
-   || (
-   >=app-misc/tracker-miners-1.99.1[gstreamer]
-   >=app-misc/tracker-miners-1.99.1[ffmpeg]
-   )
-   x11-libs/libnotify[introspection]
-   dev-python/dbus-python[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]
-   media-libs/gstreamer:1.0[introspection]
-   media-libs/gst-plugins-base:1.0[introspection]
-   media-plugins/gst-plugins-meta:1.0
-   media-plugins/grilo-plugins:0.3[tracker]
-   x11-misc/xdg-user-dirs
-"
-DEPEND="${COMMON_DEPEND}
-   >=dev-util/intltool-0.26
-   dev-util/itstool
-   virtual/pkgconfig
-"
-# eautoreconf needs app-text/yelp-tools
-
-pkg_setup() {
-   python_setup
-}
-
-src_prepare() {
-   sed -e '/sys.path.insert/d' -i "${S}"/gnome-music.in || die "python 
fixup sed failed"
-   gnome2_src_prepare
-}
-
-src_install() {
-   gnome2_src_install
-   python_fix_shebang "${D}"usr/bin/gnome-music
-}



[gentoo-commits] repo/gentoo:master commit in: x11-terms/gnome-terminal/

2019-05-18 Thread Mart Raudsepp
commit: c95b0865398fe546ae23a8abae2b46813ea5792d
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 22:43:54 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 22:43:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c95b0865

x11-terms/gnome-terminal: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 x11-terms/gnome-terminal/Manifest  |  2 -
 .../gnome-terminal/gnome-terminal-3.24.2.ebuild| 82 --
 2 files changed, 84 deletions(-)

diff --git a/x11-terms/gnome-terminal/Manifest 
b/x11-terms/gnome-terminal/Manifest
index d0ccf241514..ed7ccc49a7c 100644
--- a/x11-terms/gnome-terminal/Manifest
+++ b/x11-terms/gnome-terminal/Manifest
@@ -1,4 +1,2 @@
-DIST gnome-terminal-3.24.2.tar.xz 1960952 BLAKE2B 
c94303cd8b322a37c70487fbab0f6ecd27b8e831cf44cdc80c82b31d2758f7c6927704d31c229cbbe41be565748238bbfcfae72470f273f7f3a9378c218af8b5
 SHA512 
08cd7b1b08cf22618554b1a051dcfee4a967165bfe93b77a6bc8b0c935695101e773e8d53a482d71aadb9ba7be7ac991d82dbf53b7a6f74f1f5144e4158f8a93
 DIST gnome-terminal-3.30.2-notify-open-title-transparency.patch.xz 31748 
BLAKE2B 
6a25547fcdd387ea90c3ba13e53f31a118cc01c50c72f1f597162452ea65509e2fc8adaa2f6487859d8a53e828173d77a6f952d172f5a685e2b51864a82cce7f
 SHA512 
51f32879c93a5ca489db9a604b28585787c9ec1a444c5e8c76bf26edeaa68e35fe9f76f94f32e99716a0d01643ac859475be13232c62675c703b5503781cb8d0
 DIST gnome-terminal-3.30.3.tar.xz 2102108 BLAKE2B 
1930bc97c8d77d0107dbb7e56d849e3941c6821863d25103d8d17135d334b6ceda5b5ef1cad81d02011fb7190fd5b39ce4176083af0af6bebb71f52e30cd2c7b
 SHA512 
54d3b345a23905f65ccc7d238b2f9ebcfebc4f504c41bdb3dc388ceee8e6f2dfbba7c0060ea6bcba8bb541a031fe619d462e024aef277f66b5c49792c291
-DIST gnome-terminal-notify-open-title-transparency.patch.xz 37448 BLAKE2B 
159bbcf6ca387af8ae2f05c23b48afcdf11351025420ecfd10d1b8a1dd9c2c8016d1c89c6fca20dde3bf8ffe3a6091232a989cfd520fa6761f65eec29b569d84
 SHA512 
9af0d56df105a5bdb81b2609794669557a7f442f71b240ee10a6411fab20ad74c14489dbb9a536e208515053ea17776b3a15afb3b949a75a66f8c2ab3dbbff96

diff --git a/x11-terms/gnome-terminal/gnome-terminal-3.24.2.ebuild 
b/x11-terms/gnome-terminal/gnome-terminal-3.24.2.ebuild
deleted file mode 100644
index acf9ce35a5e..000
--- a/x11-terms/gnome-terminal/gnome-terminal-3.24.2.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-GNOME2_LA_PUNT="yes"
-
-inherit gnome2 readme.gentoo-r1
-
-DESCRIPTION="The Gnome Terminal"
-HOMEPAGE="https://wiki.gnome.org/Apps/Terminal/";
-
-LICENSE="GPL-3+"
-SLOT="0"
-IUSE="debug +gnome-shell +nautilus vanilla"
-SRC_URI="${SRC_URI} !vanilla? ( 
https://dev.gentoo.org/~leio/distfiles/gnome-terminal-notify-open-title-transparency.patch.xz
 )"
-
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux"
-
-# FIXME: automagic dependency on gtk+[X], just transitive but needs proper 
control, bug 624960
-# Needed vte in 3.24.2 is 0.48.2, but we add desktop notification patches in 
0.48.3 that non-vanilla needs
-RDEPEND="
-   >=dev-libs/glib-2.42:2
-   >=x11-libs/gtk+-3.20:3
-   >=x11-libs/vte-0.48.3:2.91[!vanilla?]
-   >=dev-libs/libpcre2-10
-   >=gnome-base/dconf-0.14
-   >=gnome-base/gsettings-desktop-schemas-0.1.0
-   sys-apps/util-linux
-   gnome-shell? ( gnome-base/gnome-shell )
-   nautilus? ( >=gnome-base/nautilus-3 )
-"
-# itstool/yelp-tools required for help/* with non-en LINGUAS, see bug #549358
-# xmllint required for glib-compile-resources, see bug #549304
-DEPEND="${RDEPEND}
-   app-text/yelp-tools
-   dev-libs/libxml2
-   dev-util/gdbus-codegen
-   >=dev-util/intltool-0.50
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-DOC_CONTENTS="To get previous working directory inherited in new opened tab, or
-   notifications of long-running commands finishing, you will need
-   to add the following line to your ~/.bashrc:\n
-   . /etc/profile.d/vte-2.91.sh"
-
-src_prepare() {
-   if ! use vanilla; then
-   # https://bugzilla.gnome.org/show_bug.cgi?id=695371
-   # Fedora patches:
-   # Restore transparency support (with compositing WMs only)
-   # OSC 777 desktop notification support (notifications on tabs 
for long-running commands completing)
-   # Restore separate menuitems for opening tabs and windows
-   # Restore "Set title" support
-   # 
http://pkgs.fedoraproject.org/cgit/rpms/gnome-terminal.git/plain/gnome-terminal-notify-open-title-transparency.patch
-   # Depends on vte[-vanilla] for OSC 777 patch in VTE
-   eapply "${WORKDIR}"/${PN}-notify-open-title-transparency.patch
-   fi
-   gnome2_src_prepare
-}
-
-src_configure() {
-   gnome2_src_configure \
-  

[gentoo-commits] repo/gentoo:master commit in: net-misc/gnome-online-miners/

2019-05-18 Thread Mart Raudsepp
commit: 1c523fb9cada54f181c880ed97d08eacba134a3d
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 22:33:02 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 22:33:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c523fb9

net-misc/gnome-online-miners: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 net-misc/gnome-online-miners/Manifest  |  1 -
 .../gnome-online-miners-3.26.0.ebuild  | 39 --
 2 files changed, 40 deletions(-)

diff --git a/net-misc/gnome-online-miners/Manifest 
b/net-misc/gnome-online-miners/Manifest
index 18ca88ad8f2..a7c651639ef 100644
--- a/net-misc/gnome-online-miners/Manifest
+++ b/net-misc/gnome-online-miners/Manifest
@@ -1,2 +1 @@
-DIST gnome-online-miners-3.26.0.tar.xz 272576 BLAKE2B 
d87a83489be58f3f78a9245bcb08c28afafab47008fc1d042d8c4964cc8451e7c257055768db88f384c75546d48ea90c477223987e0add757a1a5c614ef5a2b7
 SHA512 
a116a16c1f8a56bddd3cbb238cfb007d776695446c516dd12811145853553c293a9c8880465238571f6081fc7b05e3e69c14c406cd8e6fa6ee570b4aa4b22435
 DIST gnome-online-miners-3.30.0.tar.xz 273700 BLAKE2B 
146777d6fcdbb2e17ca360e515de6f373bf74063240c579a1e39c0083aad9b0d908754c78046713b027b1b062cf279e0dbe58d211d0341a0179b1d179aa77a2b
 SHA512 
de1d9281978b985d777c1b4900128c6a3b83ef9d0c905b4441f9683a6a03de992ce921e8094d43b903e8547436db51aced91d93bd0cf74f7a385a1d5a5e8b726

diff --git a/net-misc/gnome-online-miners/gnome-online-miners-3.26.0.ebuild 
b/net-misc/gnome-online-miners/gnome-online-miners-3.26.0.ebuild
deleted file mode 100644
index ffbf58bb924..000
--- a/net-misc/gnome-online-miners/gnome-online-miners-3.26.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="Crawls through your online content"
-HOMEPAGE="https://wiki.gnome.org/Projects/GnomeOnlineMiners";
-
-LICENSE="GPL-2+"
-SLOT="0"
-IUSE="flickr"
-KEYWORDS="amd64 x86"
-
-# libgdata[gnome] needed for goa support
-RDEPEND="
-   >=app-misc/tracker-2:=
-   >=dev-libs/glib-2.35.1:2
-   >=dev-libs/libgdata-0.15.2:0=[crypt,gnome-online-accounts]
-   media-libs/grilo:0.3
-   >=net-libs/gnome-online-accounts-3.13.3:=
-   >=net-libs/libgfbgraph-0.2.2:0.2
-   >=net-libs/libzapojit-0.0.2
-   flickr? ( media-plugins/grilo-plugins:0.3[flickr] )
-"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-"
-
-src_configure() {
-   gnome2_src_configure \
-   $(use_enable flickr) \
-   --disable-static \
-   --enable-facebook \
-   --enable-google \
-   --enable-media-server \
-   --enable-owncloud \
-   --enable-windows-live
-}



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

2019-05-18 Thread Mart Raudsepp
commit: 5c02481f1e6829a32c0fbae0bb9b583fe1247f46
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 22:34:40 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 22:34:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c02481f

sys-apps/baobab: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 sys-apps/baobab/Manifest |  1 -
 sys-apps/baobab/baobab-3.26.1.ebuild | 38 
 2 files changed, 39 deletions(-)

diff --git a/sys-apps/baobab/Manifest b/sys-apps/baobab/Manifest
index 9b6b0bb3b41..80b0f6f80df 100644
--- a/sys-apps/baobab/Manifest
+++ b/sys-apps/baobab/Manifest
@@ -1,2 +1 @@
-DIST baobab-3.26.1.tar.xz 973020 BLAKE2B 
37ddfbbc72482bf31367210d0f814a6e163c415730d5fd86f3b48c5591c4f7c15cf1e7c3fbe7ddb20a465be5e4a4bf87705bef0175da98a5fffc37588871f1a3
 SHA512 
be16249de5ba22ef40b7addaae9823ac9d853422d33b3c345aaca1e07e3497793ec00bddfadc0da882b3c187419210026a4a6e66d23ce7c5cac455d39cfd9375
 DIST baobab-3.30.0.tar.xz 765760 BLAKE2B 
7003507e0923eedd709db8f3934c341215decb77b300b6660a334f6c23dfa6d83476d3c0a0ef3d76a5104a1add0759f7e268e13bcf00f69f51ae5b9986bdefc5
 SHA512 
3fa1c20e6e3a654d3dfa11b8f0a7e0dea77cc8ab88ff65a4471cd467d3cb3a7d2d39521be1718f3f6ab32984b9331332574f87f5fcaf13c1aa8cf93bd081d7e0

diff --git a/sys-apps/baobab/baobab-3.26.1.ebuild 
b/sys-apps/baobab/baobab-3.26.1.ebuild
deleted file mode 100644
index 98029caaf0e..000
--- a/sys-apps/baobab/baobab-3.26.1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="Disk usage browser for GNOME"
-HOMEPAGE="https://wiki.gnome.org/Apps/Baobab";
-
-LICENSE="GPL-2+ FDL-1.1+"
-SLOT="0"
-IUSE=""
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux"
-
-COMMON_DEPEND="
-   >=dev-libs/glib-2.40:2[dbus]
-   >=x11-libs/gtk+-3.19.1:3
-"
-RDEPEND="${COMMON_DEPEND}
-   gnome-base/gsettings-desktop-schemas
-   x11-themes/adwaita-icon-theme
-   !

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

2019-05-18 Thread Mart Raudsepp
commit: 00dce1910f387e9a4e80716225776621185a215f
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 22:31:24 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 22:31:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00dce191

net-libs/gtk-vnc: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 net-libs/gtk-vnc/Manifest|  1 -
 net-libs/gtk-vnc/gtk-vnc-0.8.0-r1.ebuild | 70 
 net-libs/gtk-vnc/gtk-vnc-0.8.0.ebuild| 69 ---
 3 files changed, 140 deletions(-)

diff --git a/net-libs/gtk-vnc/Manifest b/net-libs/gtk-vnc/Manifest
index cd55e139fad..669f2263afb 100644
--- a/net-libs/gtk-vnc/Manifest
+++ b/net-libs/gtk-vnc/Manifest
@@ -1,2 +1 @@
-DIST gtk-vnc-0.8.0.tar.xz 448984 BLAKE2B 
e9de98a969297832ff6eaba79707a44494b20d944264ac6902596f882b95e8ab1bc6b7eb25e040d17f939d678a81eec730f983942db38d73c81751fc2afd45df
 SHA512 
9b66e4028e56b01af8d0ded5b833fc6c0ba752ac72cd664293b0009868bbec0bc8750b619ece9786eddc06155e390e4c5bc84717c49ac4bd866e6febd8e3
 DIST gtk-vnc-0.9.0.tar.xz 444736 BLAKE2B 
cf1afc0e856659012738060a584c72d7ad1b70459afd8bf92630d69cf32d380264814304a68a93d8a5a70d6573b6754658450005a2ea2b96f13ae03f9e87fcba
 SHA512 
498b368eb53ac58172db280c80f9da71ce82b636c39f186046e4f674e44c574ff4b63c3f777acc79d32c17d70e4efcdc207768ed49b3d1842bc4b73618296215

diff --git a/net-libs/gtk-vnc/gtk-vnc-0.8.0-r1.ebuild 
b/net-libs/gtk-vnc/gtk-vnc-0.8.0-r1.ebuild
deleted file mode 100644
index 61f919fcbe1..000
--- a/net-libs/gtk-vnc/gtk-vnc-0.8.0-r1.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python3_{5,6,7} )
-GNOME2_LA_PUNT="yes"
-VALA_MIN_API_VERSION="0.16"
-VALA_USE_DEPEND="vapigen"
-
-inherit vala gnome2 python-any-r1
-
-DESCRIPTION="VNC viewer widget for GTK"
-HOMEPAGE="https://wiki.gnome.org/Projects/gtk-vnc";
-
-LICENSE="LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
-IUSE="examples +introspection pulseaudio sasl +vala"
-REQUIRED_USE="
-   vala? ( introspection )
-"
-
-# libview is used in examples/gvncviewer -- no need
-# glib-2.30.1 needed to avoid linking failure due to .la files (bug #399129)
-RDEPEND="
-   >=dev-libs/glib-2.30.1:2
-   >=dev-libs/libgcrypt-1.4.2:0=
-   dev-libs/libgpg-error
-   >=net-libs/gnutls-3.0:0=
-   >=x11-libs/cairo-1.2
-   x11-libs/libX11
-   >=x11-libs/gtk+-3.0.0:3[introspection?]
-   introspection? ( >=dev-libs/gobject-introspection-0.9.4:= )
-   pulseaudio? ( media-sound/pulseaudio )
-   sasl? ( dev-libs/cyrus-sasl )
-"
-# Keymap databases code is generated with python3; configure picks up $PYTHON 
exported from python-any-r1_pkg_setup
-DEPEND="${RDEPEND}
-   ${PYTHON_DEPS}
-   >=dev-lang/perl-5
-   dev-util/glib-utils
-   >=dev-util/intltool-0.40
-   sys-devel/gettext
-   virtual/pkgconfig
-   vala? (
-   $(vala_depend)
-   >=dev-libs/gobject-introspection-0.9.4 )
-"
-# eautoreconf requires gnome-common
-
-src_prepare() {
-   vala_src_prepare
-   gnome2_src_prepare
-}
-
-src_configure() {
-   local myconf=(
-   $(use_with examples)
-   $(use_enable introspection)
-   $(use_with pulseaudio)
-   $(use_with sasl)
-   $(use_enable vala)
-   --with-coroutine=gthread
-   --without-libview
-   --disable-static
-   --with-gtk=3.0
-   )
-
-   gnome2_src_configure ${myconf[@]}
-}

diff --git a/net-libs/gtk-vnc/gtk-vnc-0.8.0.ebuild 
b/net-libs/gtk-vnc/gtk-vnc-0.8.0.ebuild
deleted file mode 100644
index f914952ea64..000
--- a/net-libs/gtk-vnc/gtk-vnc-0.8.0.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python3_{5,6,7} )
-GNOME2_LA_PUNT="yes"
-VALA_MIN_API_VERSION="0.16"
-
-inherit vala gnome2 python-any-r1
-
-DESCRIPTION="VNC viewer widget for GTK"
-HOMEPAGE="https://wiki.gnome.org/Projects/gtk-vnc";
-
-LICENSE="LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
-IUSE="examples +introspection pulseaudio sasl vala"
-REQUIRED_USE="
-   vala? ( introspection )
-"
-
-# libview is used in examples/gvncviewer -- no need
-# glib-2.30.1 needed to avoid linking failure due to .la files (bug #399129)
-RDEPEND="
-   >=dev-libs/glib-2.30.1:2
-   >=dev-libs/libgcrypt-1.4.2:0=
-   dev-libs/libgpg-error
-   >=net-libs/gnutls-3.0:0=
-   >=x11-libs/cairo-1.2
-   x11-libs/libX11
-   >=x11-libs/gtk+-3.0.0:3[introspection?]
-   introspection? ( >=dev-libs/gobject-introspection-0.9.4:= )
-   pulseaudio? ( media-sound/pulsea

[gentoo-commits] repo/gentoo:master commit in: net-irc/polari/

2019-05-18 Thread Mart Raudsepp
commit: c80efeafe812f2a8874db562957116b4f97286ab
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 22:26:56 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 22:26:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c80efeaf

net-irc/polari: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 net-irc/polari/Manifest |  1 -
 net-irc/polari/polari-3.24.2.ebuild | 38 -
 2 files changed, 39 deletions(-)

diff --git a/net-irc/polari/Manifest b/net-irc/polari/Manifest
index ad87e6a6bff..c7257364b56 100644
--- a/net-irc/polari/Manifest
+++ b/net-irc/polari/Manifest
@@ -1,2 +1 @@
-DIST polari-3.24.2.tar.xz 804160 BLAKE2B 
c0e651d478cf814d1e055ef196ea725a17c50ee4836df7939b73dc59bbea0f74d8dbf6ceebd07b3748b6814fa52ae8a300515ac8f6952f59546e7c27ed35d6da
 SHA512 
23a475d657556e7f4e93dde8e545bf7bede227635d540bd006b85b068923d87e713bd05f14d8ccde458bf6efd4920665bca02ea41c4de870680581ebfa595f0e
 DIST polari-3.30.2.tar.xz 1153792 BLAKE2B 
992f39e989179617164fb9d955a5211aa466293882d773c5783792503741cf62ae7fa848697046f2888bdc04c083e0b3fef0be18055e2d2c2607cc029eb2c816
 SHA512 
4aae1bd70498ddbddab494c9484c039bc5fabc13860ddd6a2001858808baea004c9f463b37c9392eaac62cf951867ea6e24e77053976bd4524dd711ac52a5b4d

diff --git a/net-irc/polari/polari-3.24.2.ebuild 
b/net-irc/polari/polari-3.24.2.ebuild
deleted file mode 100644
index b97448ba44b..000
--- a/net-irc/polari/polari-3.24.2.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit gnome2
-
-DESCRIPTION="An IRC client for Gnome"
-HOMEPAGE="https://wiki.gnome.org/Apps/Polari";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm x86"
-IUSE=""
-
-COMMON_DEPEND="
-   >=x11-libs/gtk+-3.21.6:3[introspection]
-   net-libs/telepathy-glib[introspection]
-   >=dev-libs/glib-2.43.4:2
-   >=dev-libs/gobject-introspection-1.50:=
-   >=dev-libs/gjs-1.45.3
-   =app-text/gspell-1.4.0[introspection]
-   x11-libs/pango[introspection]
-   app-crypt/libsecret[introspection]
-   net-libs/libsoup:2.4[introspection]
-   net-im/telepathy-logger[introspection]
-"
-RDEPEND="${COMMON_DEPEND}
-   >=net-irc/telepathy-idle-0.2
-"
-DEPEND="${COMMON_DEPEND}
-   app-text/yelp-tools
-   dev-libs/appstream-glib
-   >=sys-devel/gettext-0.19.6
-   virtual/pkgconfig
-"



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

2019-05-18 Thread Mart Raudsepp
commit: 748832f12126352b3ff4be690b4cac0adcff646e
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 22:12:39 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 22:12:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=748832f1

media-libs/grilo: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 media-libs/grilo/Manifest   |  1 -
 media-libs/grilo/grilo-0.3.6.ebuild | 89 -
 2 files changed, 90 deletions(-)

diff --git a/media-libs/grilo/Manifest b/media-libs/grilo/Manifest
index dee8c8764b1..73f842d226c 100644
--- a/media-libs/grilo/Manifest
+++ b/media-libs/grilo/Manifest
@@ -1,2 +1 @@
-DIST grilo-0.3.6.tar.xz 653864 BLAKE2B 
58570975b2c4623b2a43b441c60d88146080327a86018bfd1a37967d35b6389e5102915296ceba1a8ebf23d27a3e4f8d23eeb59555a6c5cd0ca596b5ab674878
 SHA512 
175cf61a43aea8456a41f4dce7694fac50e854cf6340ed0671f233e6188fa34347c1e7308aac99bc49d081c36747776b9a8c1c5cc7c0be00a1df2c9d015d8849
 DIST grilo-0.3.7.tar.xz 232544 BLAKE2B 
2d1f7942b09808bb5e09040b4a633a6bd354220ba1369d31ff6160c12ab15c1e2642617ae7f35c8320d7a5842736d8714c6e7dc7f3cb0651d841b6513633f5c9
 SHA512 
82c41d63edc23c056e189a73b0de87db342bba575d42efeda78ed4bf78fb8994111a2e9457e6f2453045b9b7b2d171b9e89d71c3a107cfa06af24644d9cb71df

diff --git a/media-libs/grilo/grilo-0.3.6.ebuild 
b/media-libs/grilo/grilo-0.3.6.ebuild
deleted file mode 100644
index ffac95bae78..000
--- a/media-libs/grilo/grilo-0.3.6.ebuild
+++ /dev/null
@@ -1,89 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} )
-VALA_MIN_API_VERSION="0.28"
-VALA_USE_DEPEND="vapigen"
-
-inherit gnome2 python-any-r1 vala virtualx
-
-DESCRIPTION="A framework for easy media discovery and browsing"
-HOMEPAGE="https://wiki.gnome.org/Projects/Grilo";
-
-LICENSE="LGPL-2.1+"
-SLOT="0.3/0" # subslot is libgrilo-0.3 soname suffix
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86"
-
-IUSE="gtk examples +introspection +network playlist test vala"
-REQUIRED_USE="test? ( introspection )"
-
-RDEPEND="
-   >=dev-libs/glib-2.44:2
-   dev-libs/libxml2:2
-   net-libs/liboauth
-   gtk? ( >=x11-libs/gtk+-3:3 )
-   introspection? ( >=dev-libs/gobject-introspection-0.9:= )
-   network? ( >=net-libs/libsoup-2.41.3:2.4 )
-   playlist? ( >=dev-libs/totem-pl-parser-3.4.1 )
-"
-DEPEND="${RDEPEND}
-   >=dev-util/gtk-doc-am-1.10
-   >=dev-util/intltool-0.40
-   virtual/pkgconfig
-   vala? ( $(vala_depend) )
-   test? (
-   ${PYTHON_DEPS}
-   media-plugins/grilo-plugins:${SLOT%/*} )
-"
-# eautoreconf requires gnome-common
-
-pkg_setup() {
-   # Python tests are currently commented out, but this is done via in 
exit(0) in testrunner.py
-   # thus it still needs $PYTHON set up, which python-any-r1_pkg_setup 
will do for us
-   use test && python-any-r1_pkg_setup
-}
-
-src_prepare() {
-   sed -e "s:GETTEXT_PACKAGE=grilo$:GETTEXT_PACKAGE=grilo-${SLOT%/*}:" \
-   -i configure.ac configure || die "sed configure.ac configure 
failed"
-
-   # Don't build examples
-   sed -e '/SUBDIRS/s/examples//' \
-   -i Makefile.am -i Makefile.in || die
-
-   use vala && vala_src_prepare
-   gnome2_src_prepare
-}
-
-src_configure() {
-   # --enable-debug only changes CFLAGS, useless for us
-   gnome2_src_configure \
-   --disable-static \
-   --disable-debug \
-   $(use_enable gtk test-ui) \
-   $(use_enable introspection) \
-   $(use_enable network grl-net) \
-   $(use_enable playlist grl-pls) \
-   $(use_enable test tests) \
-   $(use_enable vala)
-}
-
-src_test() {
-   # /net/throttling/small-delay can fail with parallel tests
-   virtx emake -j1 check
-}
-
-src_install() {
-   gnome2_src_install
-   # Upstream made this conditional on gtk-doc build...
-   DOC_MODULE_VERSION=${SLOT%/*} \
-   emake -C doc install DESTDIR="${ED}"
-
-   if use examples; then
-   # Install example code
-   insinto /usr/share/doc/${PF}/examples
-   doins "${S}"/examples/*.c
-   fi
-}



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

2019-05-18 Thread Mart Raudsepp
commit: 5eb8dcbfc7d98c465c08c1f790d40f1a5e09dd74
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 22:39:09 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 22:39:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5eb8dcbf

x11-libs/gtk+: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 x11-libs/gtk+/Manifest   |   1 -
 x11-libs/gtk+/gtk+-3.24.7.ebuild | 230 ---
 2 files changed, 231 deletions(-)

diff --git a/x11-libs/gtk+/Manifest b/x11-libs/gtk+/Manifest
index 50e265e1994..761c3d24841 100644
--- a/x11-libs/gtk+/Manifest
+++ b/x11-libs/gtk+/Manifest
@@ -2,6 +2,5 @@ DIST gtk+-2.24.32-patchset-r1.tar.xz 13364 BLAKE2B 
15e5429b11cc4ccef1bf44105c790
 DIST gtk+-2.24.32.tar.xz 12620860 BLAKE2B 
03f4c0a8be98473f62bc8c86859937969c4169960a5f93d37ff6dcde00413215fa6c7125b15781bf50d67b40aa0056cb71b83fb50acb2c3467b5deb3c8d938f0
 SHA512 
8e8fd9ae32f1d6fb544da260f00599f0f05090d910d767b06ef086ab4f1f8373a29bb0da9767761c9b5f4cfd51b5c45d0fa5d39b0428c839ddf0a579df806696
 DIST gtk+-3.24.1.tar.xz 19307612 BLAKE2B 
f09b7cb252898b7290a3806f8fb579b706fc0ecd021817e34e71b101a7d222604b395c850c559f3ff0c38e0848abdffc483efe65f086357532be85db872028e7
 SHA512 
13ddb1099a2a0eb44ea53fa4be5054a403e1b27468a33862646ba111577b7bb72b9bbe4f6aea15889c2a2bee1238023bc23524b901cf2dbb3adf0e126eb6ea5d
 DIST gtk+-3.24.4.tar.xz 21102236 BLAKE2B 
1ef6445d582217a54538549fd63c59dd1e7f14832b33a41e971d2dd184a8887876d1eb599cb9fcbd590ec1a16ca29f0be92bc96344b1e7d2fdf88456d63c9a7f
 SHA512 
d1cce6d0d7f1c5ef0f4e8988b88372a32b9d8a2924da4cfc46a80ede91cf8a2aacdcd87eec122dfab1369b36fc849d875832ac11d79426cf6884e1730e5d4dd1
-DIST gtk+-3.24.7.tar.xz 19375708 BLAKE2B 
28ec4106258a7ecfa78d2f3dd8d2145cdf8ecbb55167bf22002e38186721e2e1658885032630eb306785bfe36486834c40e34fd5ac20d1c30d4f5de58cba7fae
 SHA512 
2605087c3e09c81192769e6c4bcc4374e0fadbc4d05433edeaefd9915e128ff925c64fb3d07799bacccb16d85d31e53936ac09c696a09349efa6e21d886074c5
 DIST gtk+-3.24.8-patchset.tar.xz 3684 BLAKE2B 
686356993b95f5342942764af5f92ab52b17fcd326ee3fd0de5179ed2a55b6e0192e16707ee882866d39ede7d28150b8b8bc6945355f04a4b191b671ae70fb7d
 SHA512 
31f9b982592a81095afad91f16ad96e72a7a2b0e2bf812f0b719da56d70235bc06bc991b5f619fefded3e1634efc5b7e8ef00053929c89e967351d8625518428
 DIST gtk+-3.24.8.tar.xz 22419364 BLAKE2B 
262384d0bf1d843edfcb13007eae3584235fa166286f071b8b98803d452df3f4f8934f2b1830427d0c0cd956b67170e576f8c3f733e9b6323b8f89f6d0ddea71
 SHA512 
a988ca2e25f0f32e55b2931f16c72f9649ed98405579d217e8a5e7f0ac10bcd1969090c622c5d9eb7d75235813ff7ccb90e30e252afd71ba283c6172ee459fe5

diff --git a/x11-libs/gtk+/gtk+-3.24.7.ebuild b/x11-libs/gtk+/gtk+-3.24.7.ebuild
deleted file mode 100644
index 4b530734859..000
--- a/x11-libs/gtk+/gtk+-3.24.7.ebuild
+++ /dev/null
@@ -1,230 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-GNOME2_EAUTORECONF="yes"
-
-inherit flag-o-matic gnome2 multilib virtualx multilib-minimal
-
-DESCRIPTION="Gimp ToolKit +"
-HOMEPAGE="https://www.gtk.org/";
-
-LICENSE="LGPL-2+"
-SLOT="3"
-IUSE="aqua broadway cloudprint colord cups examples gtk-doc +introspection 
test vim-syntax wayland +X xinerama"
-REQUIRED_USE="
-   || ( aqua wayland X )
-   xinerama? ( X )
-"
-
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-
-# Upstream wants us to do their job:
-# https://bugzilla.gnome.org/show_bug.cgi?id=768662#c1
-RESTRICT="test"
-
-# FIXME: introspection data is built against system installation of gtk+:3,
-# bug #
-COMMON_DEPEND="
-   >=dev-libs/atk-2.15[introspection?,${MULTILIB_USEDEP}]
-   >=dev-libs/fribidi-0.19.7[${MULTILIB_USEDEP}]
-   >=dev-libs/glib-2.53.4:2[${MULTILIB_USEDEP}]
-   media-libs/fontconfig[${MULTILIB_USEDEP}]
-   >=media-libs/libepoxy-1.4[X(+)?,${MULTILIB_USEDEP}]
-   >=x11-libs/cairo-1.14[aqua?,glib,svg,X?,${MULTILIB_USEDEP}]
-   >=x11-libs/gdk-pixbuf-2.30:2[introspection?,${MULTILIB_USEDEP}]
-   >=x11-libs/pango-1.41.0[introspection?,${MULTILIB_USEDEP}]
-   >=media-libs/harfbuzz-0.9:=
-   x11-misc/shared-mime-info
-
-   cloudprint? (
-   >=net-libs/rest-0.7[${MULTILIB_USEDEP}]
-   >=dev-libs/json-glib-1.0[${MULTILIB_USEDEP}] )
-   colord? ( >=x11-misc/colord-0.1.9:0=[${MULTILIB_USEDEP}] )
-   cups? ( >=net-print/cups-1.2[${MULTILIB_USEDEP}] )
-   introspection? ( >=dev-libs/gobject-introspection-1.39:= )
-   wayland? (
-   >=dev-libs/wayland-1.9.91[${MULTILIB_USEDEP}]
-   >=dev-libs/wayland-protocols-1.12
-   media-libs/mesa[wayland,${MULTILIB_USEDEP}]
-   >=x11-libs/libxkbcommon-0.2[${MULTILIB_USED

[gentoo-commits] repo/gentoo:master commit in: x11-wm/mutter/

2019-05-18 Thread Mart Raudsepp
commit: 1536b1aff5d360311e7c5c733fb2bc465fcd0701
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 22:47:26 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 22:47:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1536b1af

x11-wm/mutter: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 x11-wm/mutter/Manifest |   2 -
 x11-wm/mutter/mutter-3.24.4.ebuild | 141 ---
 x11-wm/mutter/mutter-3.30.2.ebuild | 147 -
 3 files changed, 290 deletions(-)

diff --git a/x11-wm/mutter/Manifest b/x11-wm/mutter/Manifest
index 2c6053c53c5..2f0f8c18519 100644
--- a/x11-wm/mutter/Manifest
+++ b/x11-wm/mutter/Manifest
@@ -1,6 +1,4 @@
-DIST mutter-3.24.4.tar.xz 3583916 BLAKE2B 
86a9e16ed96270713e400ccb4dc64b91c263125ea4a04373ed1f8364e906031ef26dc991fa13d01cf0e50895360c87be6773e3332d823c2ce1991cd57d59b292
 SHA512 
7ae579ab3e9df09cae37fbc1b277e382c9f610058b914b69a7bdb89f3bec510403210c0cded16a6487111507151f4d7075d161e051c0b88585d6ab6b4575b8d3
 DIST mutter-3.26.2-patchset.tar.xz 48156 BLAKE2B 
7b33495a8bb7ac69f5610e1dfcb1fef49a983403fd176b229a75bcc7691e83e76a3dd87b7663ece0fcdc4077becd3ffa5e33217584f156456813769646730bf9
 SHA512 
2eeb9dfe137d6ea65f957ed19aa5ef83106aa16a049531c0c41d3ab6afac6c1b345cc68f2a9a9c41658172cc0dde61b946e6bf2507979ff4155e79770adf5e90
 DIST mutter-3.26.2.tar.xz 3622904 BLAKE2B 
b32af24c6ffcd0e6af38ab1ff7cd0ba16ea3ceb84c62ed21d9e38fff5357eda2648050beada3fc8727474407a419a2c218331c8a87f7eb68eddf824d26ca9c51
 SHA512 
95885b4c053d4bc467a7c11615ee3d1a3086a674ae10e7cb9bb241f692e66dd8190508db1cdf1760bc2f19100e532e68d5e147d344e94d1430d80dd26ca0156b
-DIST mutter-3.30.2-patchset.tar.xz 9968 BLAKE2B 
7b664f35eec3cb6f298d5628bc7c0dd9697076f4fcfca431d08581d2c3054fbad952802a3279b174f207b5c6fdea2f29811352c7b2b1119e87bf689c1cbc8ce1
 SHA512 
949acecf66cf9060527c2a3559f831cfbe9ed68007ae2ca94df920c8691bc28d5577d15fe1bd9c2fddef978b23b29d4e6dfef16c232a96fd5006ed844321b957
 DIST mutter-3.30.2-r1-patchset.tar.xz 14096 BLAKE2B 
83f2e975a4404b878e832a70fe7a84a2a39d291dc1f6191e5805633327d21fb0796b8b0172a35602bec9c7e879819ebdb189f324cba3f4a4aee232d5e439ba0a
 SHA512 
f842920d6855803b8712e1736399805ecd3266a61dd7baba1f80383978d00533e34fd742103b578f9f2969ab2059f9e0c7b3812d2ea2283b6ffa91810bf6094f
 DIST mutter-3.30.2.tar.xz 3725692 BLAKE2B 
280b7a6319e5d4705baee965936df6f31ba8ca96ce3812cf640578c6817aaa82b6ff8fde7b2740ecd8edb6c4746f4608f997772a24d67f12fcb0c5c77fc9b29a
 SHA512 
3890270b7eb4b8753274d30ad26693b829a69b31f36501845c59b000deb174be58b5167f6754767dba02ebc44688697fbe7344a327879a073955047b69333a2e

diff --git a/x11-wm/mutter/mutter-3.24.4.ebuild 
b/x11-wm/mutter/mutter-3.24.4.ebuild
deleted file mode 100644
index 0479c4fea71..000
--- a/x11-wm/mutter/mutter-3.24.4.ebuild
+++ /dev/null
@@ -1,141 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2 virtualx
-
-DESCRIPTION="GNOME 3 compositing window manager based on Clutter"
-HOMEPAGE="https://gitlab.gnome.org/GNOME/mutter/";
-
-LICENSE="GPL-2+"
-SLOT="0/0"
-
-IUSE="debug gles2 input_devices_wacom +introspection test udev wayland"
-
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
-
-# libXi-1.7.4 or newer needed per:
-# https://bugzilla.gnome.org/show_bug.cgi?id=738944
-COMMON_DEPEND="
-   >=dev-libs/atk-2.5.3
-   >=x11-libs/gdk-pixbuf-2:2
-   >=dev-libs/json-glib-0.12.0
-   >=x11-libs/pango-1.30[introspection?]
-   >=x11-libs/cairo-1.14[X]
-   >=x11-libs/gtk+-3.19.8:3[X,introspection?]
-   >=dev-libs/glib-2.49.0:2[dbus]
-   >=media-libs/libcanberra-0.26[gtk3]
-   >=x11-libs/startup-notification-0.7
-   >=x11-libs/libXcomposite-0.2
-   >=gnome-base/gsettings-desktop-schemas-3.21.4[introspection?]
-   gnome-base/gnome-desktop:3=
-   >sys-power/upower-0.99:=
-
-   x11-libs/libICE
-   x11-libs/libSM
-   x11-libs/libX11
-   >=x11-libs/libXcomposite-0.4
-   x11-libs/libXcursor
-   x11-libs/libXdamage
-   x11-libs/libXext
-   >=x11-libs/libXfixes-3
-   >=x11-libs/libXi-1.7.4
-   x11-libs/libXinerama
-   >=x11-libs/libXrandr-1.5
-   x11-libs/libXrender
-   x11-libs/libxcb
-   x11-libs/libxkbfile
-   >=x11-libs/libxkbcommon-0.4.3[X]
-   x11-misc/xkeyboard-config
-
-   gnome-extra/zenity
-   media-libs/mesa[egl]
-
-   gles2? ( media-libs/mesa[gles2] )
-   input_devices_wacom? ( >=dev-libs/libwacom-0.13 )
-   introspection? ( >=dev-libs/gobject-introspection-1.42:= )
-   udev? ( >=virtual/libgudev-232:= )
-   wayland? (
-   >=dev-libs/libinput-1.4
-   >=dev-libs/wayland-1.6.90
-   >=dev-libs/wayland-protocols-1.7
-   >=media-libs/mesa-10.3[egl,gbm,wayland]
-   sys-apps/systemd
-   >=virt

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

2019-05-18 Thread Mart Raudsepp
commit: 000974db403cadebbfd43eaf0859e4e34138369c
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 22:44:54 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 22:44:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=000974db

x11-themes/gnome-backgrounds: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 x11-themes/gnome-backgrounds/Manifest |  2 --
 .../gnome-backgrounds/gnome-backgrounds-3.24.0.ebuild | 19 ---
 .../gnome-backgrounds/gnome-backgrounds-3.26.2.ebuild | 16 
 3 files changed, 37 deletions(-)

diff --git a/x11-themes/gnome-backgrounds/Manifest 
b/x11-themes/gnome-backgrounds/Manifest
index ecac6c9c92b..948cbfa55af 100644
--- a/x11-themes/gnome-backgrounds/Manifest
+++ b/x11-themes/gnome-backgrounds/Manifest
@@ -1,3 +1 @@
-DIST gnome-backgrounds-3.24.0.tar.xz 15223020 BLAKE2B 
5a4bf10bb767da9ac1b89e426a517c0ad9b76d62d764b4398e3381cb9b1bd425ab8f36835a681e1586bbd95f5f2d08307a2680d2aae45bcfc400fa0c61e3938d
 SHA512 
ba044cd21d4c22dd6bf1a93a17579f2bc5f2b9198e40331486772f4fcb81a1c0179949a162e5a1e332f49cd833ca773cf27c1592966e94afbecd8b4d0728c24b
-DIST gnome-backgrounds-3.26.2.tar.xz 19289360 BLAKE2B 
757ba9a77d81f3cb5fe80df37f130cd6594d5e8127c8e2e05e90952d755d25be6e7896a3c737cbbef84f8f8f63f7a88ab893ff3d78e472fd3b156d849c8b
 SHA512 
14970e3c87a94a503d5a260304e100e64ea76fdaa5fc5c7d5b1c35444f5f4046abc95041c57bf31350aed4de37c6aaa80fd3d2905a52881d93c49487dd868791
 DIST gnome-backgrounds-3.30.0.tar.xz 27369704 BLAKE2B 
519373d47ac70d73df43d1fc85d4649fad9e3db7e41135ba2df3e6a4c70771225413ec74ca30f3e1b1b27a9c030bd05a29a6e6791d9d0d903a131682a5813970
 SHA512 
a9fd254126448613681e64c841fb0e29a8d1e18adad3aa0c22d01fbe0a33139486595d8537293425510d56826379caaac2e02157f2c2a9289cdad3bc040c

diff --git a/x11-themes/gnome-backgrounds/gnome-backgrounds-3.24.0.ebuild 
b/x11-themes/gnome-backgrounds/gnome-backgrounds-3.24.0.ebuild
deleted file mode 100644
index 5b601d7fb92..000
--- a/x11-themes/gnome-backgrounds/gnome-backgrounds-3.24.0.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="A set of backgrounds packaged with the GNOME desktop"
-HOMEPAGE="https://git.gnome.org/browse/gnome-backgrounds";
-
-LICENSE="CC-BY-SA-2.0 CC-BY-SA-3.0 CC-BY-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd"
-IUSE=""
-
-RDEPEND="!https://git.gnome.org/browse/gnome-backgrounds";
-
-LICENSE="CC-BY-SA-2.0 CC-BY-SA-3.0 CC-BY-2.0"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
-IUSE=""
-
-RDEPEND="!

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

2019-05-18 Thread Mart Raudsepp
commit: 45e90c5e293270dacecef2aa2d95d0fcd2d1c9ea
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 22:20:35 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 22:20:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45e90c5e

media-sound/rhythmbox: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 media-sound/rhythmbox/Manifest |   1 -
 .../files/rhythmbox-3.4.2-gstreamer-1.14.patch | 455 -
 media-sound/rhythmbox/rhythmbox-3.4.2.ebuild   | 131 --
 3 files changed, 587 deletions(-)

diff --git a/media-sound/rhythmbox/Manifest b/media-sound/rhythmbox/Manifest
index 43a8124a64c..45703ae57a1 100644
--- a/media-sound/rhythmbox/Manifest
+++ b/media-sound/rhythmbox/Manifest
@@ -1,2 +1 @@
-DIST rhythmbox-3.4.2.tar.xz 6909436 BLAKE2B 
f5714485b253370a161f2255030d85bc8a697d795f97011c2acf6acbf8c9312f5180c0ec06ebe2d6e70730dc3fd4e97289b1f3a5e4dd4989a4e8135433430aab
 SHA512 
275f7c6344c88c7331d433895d479517e7a4b854f6ae660abd79b3c324f5e7a06132fa44387443ec9ce50b20187e1abf1ec9683ec4bedbd4b17da6efece8399b
 DIST rhythmbox-3.4.3.tar.xz 6410600 BLAKE2B 
0df8ac37ac0815468414c5b8118da6d07276e0c15f08812a46af7f377c29418416e1a24d7398aec10772887ae98922f6fb9fa9eaecc6ae15115cd7ca1c4b67a4
 SHA512 
a3585c026037674345909e2050a4ccb22a75084f830f351b926f7fbfc84d200c8246b8da4bd72804e595929ab06d3c7b53d362675dde193746f40b0f38b7c493

diff --git a/media-sound/rhythmbox/files/rhythmbox-3.4.2-gstreamer-1.14.patch 
b/media-sound/rhythmbox/files/rhythmbox-3.4.2-gstreamer-1.14.patch
deleted file mode 100644
index 86ed17ba98e..000
--- a/media-sound/rhythmbox/files/rhythmbox-3.4.2-gstreamer-1.14.patch
+++ /dev/null
@@ -1,455 +0,0 @@
-From 36a648db0af05be579190d98c96cfb6b7bcc6ebd Mon Sep 17 00:00:00 2001
-From: Bastien Nocera 
-Date: Mon, 9 Oct 2017 13:11:47 +0200
-Subject: [PATCH 01/12] fmradio: Fix build with GStreamer master
-
-The plugin description is not supposed to be a string constant, but an
-unescaped string, to be concatenated with function names.
-
-This used to be acceptable (though would have warned), but breaks with
-the GStreamer 1.13 development branch.
-
-rb-fm-radio-gst-src.c:181:6: error: pasting ""rbsilencesrc"" and "_get_desc" 
does not give a valid preprocessing token
-  "rbsilencesrc",
-  ^
-
-https://bugzilla.gnome.org/show_bug.cgi?id=788706

- plugins/fmradio/rb-fm-radio-gst-src.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/plugins/fmradio/rb-fm-radio-gst-src.c 
b/plugins/fmradio/rb-fm-radio-gst-src.c
-index 09d709c28..88abdaf35 100644
 a/plugins/fmradio/rb-fm-radio-gst-src.c
-+++ b/plugins/fmradio/rb-fm-radio-gst-src.c
-@@ -178,7 +178,7 @@ plugin_init (GstPlugin *plugin)
- 
- GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
-  GST_VERSION_MINOR,
-- "rbsilencesrc",
-+ rbsilencesrc,
-  "element to output silence",
-  plugin_init,
-  VERSION,
--- 
-2.17.0
-
-
-From 355e3c40efe47f6f90d12afb6590caf85db62487 Mon Sep 17 00:00:00 2001
-From: Bastien Nocera 
-Date: Mon, 24 Apr 2017 16:21:41 +0200
-Subject: [PATCH 02/12] mmkeys: media-player-keys: Fix usage to match API
- documentation
-
-See https://bugzilla.gnome.org/show_bug.cgi?id=781326
-
-https://bugzilla.gnome.org/show_bug.cgi?id=781664

- plugins/mmkeys/rb-mmkeys-plugin.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/plugins/mmkeys/rb-mmkeys-plugin.c 
b/plugins/mmkeys/rb-mmkeys-plugin.c
-index 46431584f..058b82f0e 100644
 a/plugins/mmkeys/rb-mmkeys-plugin.c
-+++ b/plugins/mmkeys/rb-mmkeys-plugin.c
-@@ -385,7 +385,7 @@ impl_activate (PeasActivatable *pplugin)
-   plugin->proxy = g_dbus_proxy_new_sync (bus,
-  G_DBUS_PROXY_FLAGS_NONE,
-  NULL,
-- 
"org.gnome.SettingsDaemon",
-+ 
"org.gnome.SettingsDaemon.MediaKeys",
-  
"/org/gnome/SettingsDaemon/MediaKeys",
-  
"org.gnome.SettingsDaemon.MediaKeys",
-  NULL,
--- 
-2.17.0
-
-
-From 19d604093667139c6660d9452b4037a761bf75e0 Mon Sep 17 00:00:00 2001
-From: gkrithi8 
-Date: Thu, 26 Oct 2017 02:27:38 +0530
-Subject: [PATCH 03/12] brasero-disc-recorder: Fix invalid object reference
- warnings
-
-https://bugzilla.gnome.org/show_bug.cgi?id=789494

- plugins/brasero-disc-recorder/rb-disc-recorder-plugin.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/plugins/brasero-disc-recorder/rb-disc-recorder-plugin.c 
b/plugins/brasero-disc-recorder/rb-disc-recorder-plugin.c
-index 8608e84fd..a89d87a70 100644
 a/pl

[gentoo-commits] repo/gentoo:master commit in: gnome-base/gnome-desktop/

2019-05-18 Thread Mart Raudsepp
commit: ac91b84604a8405dec0e5b33b343ab47c4ea89a6
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 22:55:40 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 22:55:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac91b846

gnome-base/gnome-desktop: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 gnome-base/gnome-desktop/Manifest  |  1 -
 .../gnome-desktop/gnome-desktop-3.24.2.ebuild  | 59 --
 2 files changed, 60 deletions(-)

diff --git a/gnome-base/gnome-desktop/Manifest 
b/gnome-base/gnome-desktop/Manifest
index fb2eeab9643..9f9c4423ea8 100644
--- a/gnome-base/gnome-desktop/Manifest
+++ b/gnome-base/gnome-desktop/Manifest
@@ -1,5 +1,4 @@
 DIST gnome-desktop-2.32.1.tar.bz2 1633847 BLAKE2B 
9c69504b0f904fe04bdaa2e2fd3c6fbdd0cdd67033bae6e21377cce2deb68f05ed85bc735547c036923978ebdb8952c262676a01a33f8d7acffb0b964f97366a
 SHA512 
b8084d08366dab661a7ee369cd03ba62beddbdfa9a36b988b7d13d207b33d6916f7fa8691717fba7b6a70d8276779e35360b1dc385e6ec876f30ea7b8b373c28
-DIST gnome-desktop-3.24.2.tar.xz 1064808 BLAKE2B 
8574d26f2c2adedd7a287651fb34170e75d1744ad14e6caab8ede87af63b93197bcf4cde60dd9f6352dae8ae7bf8d598d0b24588d3a06cc2192c651b58577562
 SHA512 
691817fda97fc1c560c72213668eb4c2a8d03cc2433470a78149b3f785e95d9b4b681bceb733a67e1bfda649a6aed7ca4569b4891ee89f824a28d7a95f2782c2
 DIST gnome-desktop-3.26.2-patchset-r1.tar.xz 13336 BLAKE2B 
a90b0e223d3187e616819a6cc5b0b972dec62e2dfdefde6284d2f0526a651865b72143d900cc2b9e9a3758bd23288d9f99a0084f353bcaaa2821f19519be32fd
 SHA512 
f5a0b756c52e4307f3dad6092685b2c178a04467c483322bc9b7a47b3545bd75a70f56658e5cc90422bbf715601fcda7d3e48ab129c778dd7c34ac9d35783c1d
 DIST gnome-desktop-3.26.2.tar.xz 969500 BLAKE2B 
fb1e671d8fb890d9aabbd351b824b76f13ed7ba62dd3f82a36fca7cbe590af8901fc7bd8ef1be6a5c9b978569b306eba5c3d2f9545856389438a43539b1ed9e4
 SHA512 
1425bead81a63d9d19f09fb8d23cd2611645898a910887c2b6a672bfbec3dd956e29e1d8c5f941d06929febc7734dec0550f7a15336583fcf9be41f1a4e9c783
 DIST gnome-desktop-3.30.2.1-patchset.tar.xz 3572 BLAKE2B 
e8a681ea7a3eab8186c89d8ec8d346129c8e85f0b78f5ad1b7658a4f8014601614c14d5686eeb51382af72fe138c1df73f5c86b120f46bb2e4d98339a2fc33f8
 SHA512 
02d7b19109bde647874c1b63079872a3df28fc4f5ce486e174cb4b16f5a56ca948150f5b02640fac6e33141ca1da428e38ea0a6a1b8cf4c864d143253f75ed18

diff --git a/gnome-base/gnome-desktop/gnome-desktop-3.24.2.ebuild 
b/gnome-base/gnome-desktop/gnome-desktop-3.24.2.ebuild
deleted file mode 100644
index 7600a95deb7..000
--- a/gnome-base/gnome-desktop/gnome-desktop-3.24.2.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2 virtualx
-
-DESCRIPTION="Libraries for the gnome desktop that are not part of the UI"
-HOMEPAGE="https://git.gnome.org/browse/gnome-desktop";
-
-LICENSE="GPL-2+ FDL-1.1+ LGPL-2+"
-SLOT="3/12" # subslot = libgnome-desktop-3 soname version
-IUSE="debug +introspection udev"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
-
-# cairo[X] needed for gnome-bg
-COMMON_DEPEND="
-   app-text/iso-codes
-   >=dev-libs/glib-2.44.0:2[dbus]
-   >=x11-libs/gdk-pixbuf-2.36.5:2[introspection?]
-   >=x11-libs/gtk+-3.3.6:3[X,introspection?]
-   x11-libs/cairo:=[X]
-   x11-libs/libX11
-   x11-misc/xkeyboard-config
-   >=gnome-base/gsettings-desktop-schemas-3.5.91
-   introspection? ( >=dev-libs/gobject-introspection-0.9.7:= )
-   udev? (
-   sys-apps/hwids
-   virtual/libudev:= )
-"
-RDEPEND="${COMMON_DEPEND}
-   !

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

2019-05-18 Thread Mart Raudsepp
commit: acfd492db399326f96c75a21f703be766e03e026
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 22:18:34 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 22:18:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acfd492d

media-sound/gnome-sound-recorder: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 media-sound/gnome-sound-recorder/Manifest  |  1 -
 .../gnome-sound-recorder-3.24.0.1.ebuild   | 44 --
 2 files changed, 45 deletions(-)

diff --git a/media-sound/gnome-sound-recorder/Manifest 
b/media-sound/gnome-sound-recorder/Manifest
index e5b9577c8f1..277dd862535 100644
--- a/media-sound/gnome-sound-recorder/Manifest
+++ b/media-sound/gnome-sound-recorder/Manifest
@@ -1,2 +1 @@
-DIST gnome-sound-recorder-3.24.0.1.tar.xz 452240 BLAKE2B 
37b2b81255af5aff4de08e92bf7db216b229885b1aeee87d91a1210412634b62641758c6132290b75494f780d304d78dee4c3d5d7e08de46736750c2730b20d0
 SHA512 
00e190e8d6a1a3961122485742705da4d85ef926453ff8098718566771600690562597f012f7cd9dc61b5910b4e75cc7518e86a092f052c3fc40a96310ab3c3f
 DIST gnome-sound-recorder-3.28.2.tar.xz 454216 BLAKE2B 
9f9a5a7c0a5a34c2a5ba00ed6d83736a0facb2dd7ffbe86b9c482e7bc50b282f9e20a8800591238e74a45c3c8eb2adf27c66dea59d0551d87c8997b2ef53d24c
 SHA512 
1f4022d96d636391d4973bdc1285286a61a28107b9f875e66b4b2def767b4f2900ba2fe4b92166b1cdb61dc0b5afe65c0f81ffa7304aa38c1f510108dcd8b70f

diff --git 
a/media-sound/gnome-sound-recorder/gnome-sound-recorder-3.24.0.1.ebuild 
b/media-sound/gnome-sound-recorder/gnome-sound-recorder-3.24.0.1.ebuild
deleted file mode 100644
index 2e40dc899df..000
--- a/media-sound/gnome-sound-recorder/gnome-sound-recorder-3.24.0.1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="Simple sound recorder"
-HOMEPAGE="https://wiki.gnome.org/Design/Apps/SoundRecorder";
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-COMMON_DEPEND="
-   dev-libs/gjs
-   >=dev-libs/glib-2.46:2
-   >=dev-libs/gobject-introspection-1.31.6
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/gtk+-3.12:3[introspection]
-"
-RDEPEND="${COMMON_DEPEND}
-   media-libs/gstreamer:1.0[introspection]
-   media-libs/gst-plugins-base:1.0[introspection,ogg]
-   media-libs/gst-plugins-bad:1.0
-   media-libs/gst-plugins-good:1.0
-   media-plugins/gst-plugins-flac:1.0
-   media-plugins/gst-plugins-pulse:1.0
-
-"
-DEPEND="${COMMON_DEPEND}
-   >=dev-util/intltool-0.26
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   gnome2_src_prepare
-
-   # FIXME: upstream should provide a way to set GST_INSPECT, bug #358755 
& co.
-   # gst-inspect causes sandbox violations when a plugin needs write 
access to
-   # /dev/dri/card* in its init phase.
-   sed -e "s|\(gst10_inspect=\).*|\1$(type -P true)|" \
-   -i configure || die
-}



[gentoo-commits] repo/gentoo:master commit in: net-dialup/moserial/

2019-05-18 Thread Mart Raudsepp
commit: 1030da1bea89ac7d170bf686d3635acb06c8e717
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 22:25:50 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 22:25:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1030da1b

net-dialup/moserial: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 net-dialup/moserial/Manifest   |  1 -
 net-dialup/moserial/moserial-3.0.11.ebuild | 25 -
 2 files changed, 26 deletions(-)

diff --git a/net-dialup/moserial/Manifest b/net-dialup/moserial/Manifest
index 309924f8285..63ec7358867 100644
--- a/net-dialup/moserial/Manifest
+++ b/net-dialup/moserial/Manifest
@@ -1,2 +1 @@
-DIST moserial-3.0.11.tar.xz 1103168 BLAKE2B 
3193b38838c22cd919ef729876bb86553c25e7379d36fdee4118f8e6b545a1277a09d5820f9994744548d81b20ab7764ae0a3446d8bcdc91a1896341815f8925
 SHA512 
1f274b0b949bed475f3a5210ae90916ce45e1c6a740813b4fe89a18b4914b0a924eacf16440bfc6fb860cd98f709559a28867e35b713fe6550638bf2d060577c
 DIST moserial-3.0.12.tar.xz 1123184 BLAKE2B 
a8ac7ad422325853f354e1c5c7cd59ca0bf1a2249fb58886fdf104975fe458cc3befe041810cff9b97c941188a757a5929acb0507e8eb4518cb034c2cdc14b87
 SHA512 
e5ee3776cfa63585290fe7ffb9cab562082b19b505d630c6842d09b4783fadf5438243816c433157ad6360e2a4902cb0e0ada07b61972d3c8119509ca4f520ad

diff --git a/net-dialup/moserial/moserial-3.0.11.ebuild 
b/net-dialup/moserial/moserial-3.0.11.ebuild
deleted file mode 100644
index d1452e91977..000
--- a/net-dialup/moserial/moserial-3.0.11.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="A clean and friendly gtk-based serial terminal"
-HOMEPAGE="https://wiki.gnome.org/moserial";
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE=""
-
-RDEPEND="
-   >=dev-libs/glib-2.16:2[dbus]
-   gnome-base/gsettings-desktop-schemas
-   >=x11-libs/gtk+-3.0.0:3
-"
-DEPEND="${RDEPEND}
-   >=app-text/gnome-doc-utils-0.3.2
-   >=dev-util/intltool-0.35
-   dev-util/itstool
-   virtual/pkgconfig
-"



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

2019-05-18 Thread Mart Raudsepp
commit: a6b3ec0789dca4dbacf7dd09212e64eee0417183
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 22:51:22 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 22:54:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6b3ec07

media-video/totem: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 media-video/totem/Manifest|   1 -
 media-video/totem/totem-3.24.0.ebuild | 129 --
 2 files changed, 130 deletions(-)

diff --git a/media-video/totem/Manifest b/media-video/totem/Manifest
index ada4f1ff341..7d1227e178c 100644
--- a/media-video/totem/Manifest
+++ b/media-video/totem/Manifest
@@ -1,2 +1 @@
-DIST totem-3.24.0.tar.xz 1987260 BLAKE2B 
81cb8c359b2225148a18f7a5c6ae9990cbe2e2f3b9a6a31012c9c8c0920c0cea6bad0a5d9407a79530fadf00fb845fe9e6aa8dbc84d0f8d6e84fbc144d86bc9e
 SHA512 
488db91e09b7f5947e81cb547c753367542820777faab561582707b012e664f232d3810d543dfbe0823adf3d8302c2fe6cc387f4225a362d15a6df8b4342
 DIST totem-3.30.0.tar.xz 3275852 BLAKE2B 
9a5f97229a8aa6f7665c6d3e79dff48cfcce3caeab69510361ef3e9e1a107f7a56c66a5ae89ba3ae0a77d4b0ae8a16ac1f61e77278c82bf768e50009420110d0
 SHA512 
9d2e0a9e89358eea03404afd9353d18fa23afee7a34612912411ef10d4fb0b26ee02db002e6f8e05f68a333202d419f1e1a35188da23f87189e3093dac655742

diff --git a/media-video/totem/totem-3.24.0.ebuild 
b/media-video/totem/totem-3.24.0.ebuild
deleted file mode 100644
index 76117977a79..000
--- a/media-video/totem/totem-3.24.0.ebuild
+++ /dev/null
@@ -1,129 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes" # plugins are dlopened
-PYTHON_COMPAT=( python{3_5,3_6} )
-PYTHON_REQ_USE="threads"
-
-inherit autotools gnome2 python-single-r1
-
-DESCRIPTION="Media player for GNOME"
-HOMEPAGE="https://wiki.gnome.org/Apps/Videos";
-
-LICENSE="GPL-2+ LGPL-2+"
-SLOT="0"
-IUSE="debug +introspection lirc nautilus +python test"
-# see bug #359379
-REQUIRED_USE="
-   python? ( introspection ${PYTHON_REQUIRED_USE} )
-"
-
-KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 x86 ~x86-fbsd"
-
-# FIXME:
-# Runtime dependency on gnome-session-2.91
-COMMON_DEPEND="
-   >=dev-libs/glib-2.35:2[dbus]
-   >=dev-libs/libpeas-1.1[gtk]
-   >=dev-libs/libxml2-2.6:2
-   >=dev-libs/totem-pl-parser-3.10.1:0=[introspection?]
-   >=media-libs/clutter-1.17.3:1.0[gtk]
-   >=media-libs/clutter-gst-2.99.2:3.0
-   >=media-libs/clutter-gtk-1.8.1:1.0
-   >=x11-libs/cairo-1.14
-   >=x11-libs/gdk-pixbuf-2.23.0:2
-   >=x11-libs/gtk+-3.19.4:3[introspection?]
-
-   >=media-libs/grilo-0.3.0:0.3[playlist]
-   >=media-libs/gstreamer-1.6.0:1.0
-   >=media-libs/gst-plugins-base-1.6.0:1.0[X,introspection?,pango]
-   media-libs/gst-plugins-good:1.0
-
-   x11-libs/libX11
-
-   gnome-base/gnome-desktop:3=
-   gnome-base/gsettings-desktop-schemas
-
-   introspection? ( >=dev-libs/gobject-introspection-0.6.7:= )
-   lirc? ( app-misc/lirc )
-   nautilus? ( >=gnome-base/nautilus-2.91.3 )
-   python? (
-   ${PYTHON_DEPS}
-   >=dev-python/pygobject-2.90.3:3[${PYTHON_USEDEP}] )
-"
-RDEPEND="${COMMON_DEPEND}
-   media-plugins/grilo-plugins:0.3
-   media-plugins/gst-plugins-meta:1.0
-   media-plugins/gst-plugins-taglib:1.0
-   x11-themes/adwaita-icon-theme
-   python? (
-   >=dev-libs/libpeas-1.1.0[python,${PYTHON_USEDEP}]
-   dev-python/pyxdg[${PYTHON_USEDEP}]
-   dev-python/dbus-python[${PYTHON_USEDEP}]
-   >=x11-libs/gtk+-3.5.2:3[introspection] )
-"
-DEPEND="${COMMON_DEPEND}
-   app-text/docbook-xml-dtd:4.5
-   app-text/yelp-tools
-   dev-libs/appstream-glib
-   >=dev-util/gtk-doc-am-1.14
-   >=dev-util/intltool-0.50.1
-   sys-devel/gettext
-   virtual/pkgconfig
-   x11-base/xorg-proto
-
-   dev-libs/gobject-introspection-common
-   gnome-base/gnome-common
-"
-# eautoreconf needs:
-#  app-text/yelp-tools
-#  dev-libs/gobject-introspection-common
-#  gnome-base/gnome-common
-# docbook-xml-dtd is needed for user doc
-# Prevent dev-python/pylint dep, bug #482538
-
-pkg_setup() {
-   use python && python-single-r1_pkg_setup
-}
-
-src_prepare() {
-   # Prevent pylint usage by tests, bug #482538
-   sed -i -e 's/ check-pylint//' src/plugins/Makefile.plugins || die
-
-   eautoreconf
-   gnome2_src_prepare
-
-   # FIXME: upstream should provide a way to set GST_INSPECT, bug #358755 
& co.
-   # gst-inspect causes sandbox violations when a plugin needs write 
access to
-   # /dev/dri/card* in its init phase.
-   sed -e "s|\(gst10_inspect=\).*|\1$(type -P true)|" \
-   -i configure || die
-}
-
-src_configure() {
-   # Disabled: sample-python, sample-vala
-   local plugins="apple-trailers,au

[gentoo-commits] repo/gentoo:master commit in: media-plugins/grilo-plugins/

2019-05-18 Thread Mart Raudsepp
commit: bccc85ef9575d7fdb87467c12bf39418872f5ae9
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 22:16:36 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 22:16:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bccc85ef

media-plugins/grilo-plugins: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 media-plugins/grilo-plugins/Manifest   |   1 -
 .../grilo-plugins/grilo-plugins-0.3.7.ebuild   | 132 -
 media-plugins/grilo-plugins/metadata.xml   |   2 -
 3 files changed, 135 deletions(-)

diff --git a/media-plugins/grilo-plugins/Manifest 
b/media-plugins/grilo-plugins/Manifest
index 29c073c6bbd..92b4601b686 100644
--- a/media-plugins/grilo-plugins/Manifest
+++ b/media-plugins/grilo-plugins/Manifest
@@ -1,2 +1 @@
-DIST grilo-plugins-0.3.7.tar.xz 1892848 BLAKE2B 
9894a01dc555f20c3119208e2ee875898c918f8d81e36571a777f7f1776c284d5fa5b4ac9126a352dc812b0f5ba9c15e0e81a2381ef9cb636afb66e272a77cec
 SHA512 
9e69835b3b8f6e2974d799480e2c8c55a084d2089ead6b37112a8c3c79b6bd2142b8fd66952493b7118e09eb5070789408b59bd28784bd9f6bf5ea5a7bc5695d
 DIST grilo-plugins-0.3.8.tar.xz 1408952 BLAKE2B 
3375275189a25289406b5d9fd6dd42b6c0ad92779b081ce2f480b464929302af7b52fc758f2f6277c94fad38a2b0bbfc8fe9fd668ff98fc0ac7fbeda69a5ac42
 SHA512 
c5a0a80fd7c871ce69a06bdcab2b3d8986708e4e6b9c9020d7e938d4450655f962db7f84da0b40ed38ba197f65fc2a561e06a92cdca593620d66c2b153eb4879

diff --git a/media-plugins/grilo-plugins/grilo-plugins-0.3.7.ebuild 
b/media-plugins/grilo-plugins/grilo-plugins-0.3.7.ebuild
deleted file mode 100644
index a1fe9c9b70f..000
--- a/media-plugins/grilo-plugins/grilo-plugins-0.3.7.ebuild
+++ /dev/null
@@ -1,132 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-PYTHON_COMPAT=( python{2_7,3_5,3_6} )
-
-inherit gnome2 python-any-r1
-
-DESCRIPTION="A framework for easy media discovery and browsing"
-HOMEPAGE="https://wiki.gnome.org/Projects/Grilo";
-
-LICENSE="LGPL-2.1+"
-SLOT="0.3"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86"
-IUSE="daap dvd examples chromaprint flickr freebox gnome-online-accounts lua 
subtitles test thetvdb tracker upnp-av vimeo +youtube"
-
-# Bump gom requirement to avoid segfaults
-RDEPEND="
-   >=dev-libs/glib-2.44:2
-   >=media-libs/grilo-0.3.6:${SLOT}=[network,playlist]
-   media-libs/libmediaart:2.0
-   >=dev-libs/gom-0.3.2
-
-   dev-libs/gmime:3.0
-   dev-libs/json-glib
-   dev-libs/libxml2:2
-   dev-db/sqlite:3
-
-   chromaprint? ( media-plugins/gst-plugins-chromaprint:1.0 )
-   daap? ( >=net-libs/libdmapsharing-2.9.12:3.0 )
-   dvd? ( >=dev-libs/totem-pl-parser-3.4.1 )
-   flickr? ( net-libs/liboauth )
-   freebox? ( net-dns/avahi )
-   gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.17.91:= )
-   lua? (
-   >=dev-lang/lua-5.3
-   app-arch/libarchive
-   dev-libs/libxml2:2
-   >=dev-libs/totem-pl-parser-3.4.1 )
-   subtitles? ( net-libs/libsoup:2.4 )
-   thetvdb? (
-   app-arch/libarchive
-   dev-libs/libxml2 )
-   tracker? ( >=app-misc/tracker-0.10.5:= )
-   youtube? (
-   >=dev-libs/libgdata-0.9.1:=
-   >=dev-libs/totem-pl-parser-3.4.1 )
-   upnp-av? (
-   net-libs/libsoup:2.4
-   net-libs/dleyna-connector-dbus
-   net-misc/dleyna-server )
-   vimeo? (
-   >=dev-libs/totem-pl-parser-3.4.1 )
-"
-DEPEND="${RDEPEND}
-   app-text/docbook-xml-dtd:4.5
-   app-text/yelp-tools
-   >=dev-util/gdbus-codegen-2.44
-   >=dev-util/intltool-0.40.0
-   virtual/pkgconfig
-   lua? ( dev-util/gperf )
-   upnp-av? ( test? (
-   ${PYTHON_DEPS}
-   $(python_gen_any_dep 'dev-python/dbusmock[${PYTHON_USEDEP}]') ) 
)
-"
-
-python_check_deps() {
-   use upnp-av && use test && has_version 
"dev-python/dbusmock[${PYTHON_USEDEP}]"
-}
-
-pkg_setup() {
-   use upnp-av && use test && python-any-r1_pkg_setup
-}
-
-src_prepare () {
-   gnome2_src_prepare
-   sed -e 
"s:GETTEXT_PACKAGE=grilo-plugins$:GETTEXT_PACKAGE=grilo-plugins-${SLOT}:" \
-   -i configure.ac configure || die "sed configure.ac configure 
failed"
-}
-
-# FIXME: some unittests required python-dbusmock
-src_configure() {
-   # --enable-debug only changes CFLAGS, useless for us
-   # Plugins
-   # shoutcast seems to be broken
-   gnome2_src_configure \
-   --disable-static \
-   --disable-debug \
-   --disable-uninstalled \
-   --enable-bookmarks \
-   --enable-filesystem \
-   --enable-gravatar \
-   --enable-jamendo \
-   --enable-local-metadata \
- 

[gentoo-commits] repo/gentoo:master commit in: media-gfx/simple-scan/

2019-05-18 Thread Mart Raudsepp
commit: c47d838f537faea54384a1cd7fe177ec37b4f617
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 22:10:27 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 22:10:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c47d838f

media-gfx/simple-scan: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 media-gfx/simple-scan/Manifest  |  1 -
 media-gfx/simple-scan/simple-scan-3.24.1.ebuild | 56 -
 2 files changed, 57 deletions(-)

diff --git a/media-gfx/simple-scan/Manifest b/media-gfx/simple-scan/Manifest
index 2e1c2724c67..4a38c3c18d8 100644
--- a/media-gfx/simple-scan/Manifest
+++ b/media-gfx/simple-scan/Manifest
@@ -1,3 +1,2 @@
-DIST simple-scan-3.24.1.tar.xz 669452 BLAKE2B 
927c3479a96525e2996aab7c8d37b585f93fb07315a4f5cb0292b29befb0417df6e6afb059158d9840903d7474bf0d4fb97e634c585ca7654581b82a264e80f0
 SHA512 
9f0ced644b13dcaad4f1e23a6520b1cbe3c36d995fca4791383f959986cd396f123638a23dbd02a9511ef7e1c9c915b3a025e9b7e4de4542a4c180c4fe29e2b9
 DIST simple-scan-3.30.2.tar.xz 512540 BLAKE2B 
908af68fbd297e2cc0c0c5440166ebc706f6c0a1a88948e9cdfe30a2e9e548125b31e6a00684a8a0db8e4c37c9d0930765b74e2ba9e1d540e4ae705cfd404349
 SHA512 
3a4d19bd36a88124ba43d388807afd1d6a51fc691ed83570a095e3b9719b5db5f3eb457a41bc8e36f2f1bf25ff4ab83edc150d4c0d528e9280ea2da6cdb6
 DIST simple-scan-3.32.2.tar.xz 790800 BLAKE2B 
98e502cbc280285dbe20a0c843d5f8d8b38707e973f2ba6aba2ccef9d739165371f5f30d7d6658853c5a6a280ba2919a98acd02b4757b4e881f96d5a7b53449b
 SHA512 
10322ae72461efe43a4e230443c3aca24aff6f0cab07750c6eab9ebb718889e51d8c77ff722c337f333a8952ac84f69d03ad88eedfd4432ef11f7c7493170e14

diff --git a/media-gfx/simple-scan/simple-scan-3.24.1.ebuild 
b/media-gfx/simple-scan/simple-scan-3.24.1.ebuild
deleted file mode 100644
index b5767b15057..000
--- a/media-gfx/simple-scan/simple-scan-3.24.1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-VALA_MAX_API_VERSION="0.40"
-inherit gnome2 vala versionator
-
-DESCRIPTION="Simple document scanning utility"
-HOMEPAGE="https://launchpad.net/simple-scan";
-
-MY_PV=$(get_version_component_range 1-2)
-SRC_URI="https://launchpad.net/${PN}/${MY_PV}/${PV}/+download/${P}.tar.xz";
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc64 x86"
-IUSE="colord" # packagekit
-
-COMMON_DEPEND="
-   >=dev-libs/glib-2.32:2
-   dev-libs/libgusb[vala]
-   >=media-gfx/sane-backends-1.0.20:=
-   >=sys-libs/zlib-1.2.3.1:=
-   virtual/jpeg:0=
-   x11-libs/cairo:=
-   >=x11-libs/gtk+-3:3
-   colord? ( >=x11-misc/colord-0.1.24:=[udev] )
-"
-# packagekit? ( app-admin/packagekit-base )
-RDEPEND="${COMMON_DEPEND}
-   x11-misc/xdg-utils
-   x11-themes/adwaita-icon-theme
-"
-DEPEND="${COMMON_DEPEND}
-   $(vala_depend)
-   app-text/yelp-tools
-   dev-libs/appstream-glib
-   >=sys-devel/gettext-0.19.7
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   # Force build from vala sources due to mismatch between generated
-   # C files and configure switches
-   # https://bugs.launchpad.net/simple-scan/+bug/1462769
-   rm -f src/simple_scan_vala.stamp || die
-   vala_src_prepare
-   gnome2_src_prepare
-}
-
-src_configure() {
-   gnome2_src_configure \
-   --disable-packagekit \
-   $(use_enable colord)
-   # $(use_enable packagekit)
-}



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

2019-05-18 Thread Mart Raudsepp
commit: 22852829ea06a87174f73e31ade7757fd4d56755
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 22:13:51 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 22:13:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22852829

media-libs/libchamplain: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 media-libs/libchamplain/Manifest   |  1 -
 .../libchamplain/libchamplain-0.12.16.ebuild   | 64 --
 2 files changed, 65 deletions(-)

diff --git a/media-libs/libchamplain/Manifest b/media-libs/libchamplain/Manifest
index ffd3efa9ae9..ed897e1defc 100644
--- a/media-libs/libchamplain/Manifest
+++ b/media-libs/libchamplain/Manifest
@@ -1,2 +1 @@
-DIST libchamplain-0.12.16.tar.xz 623912 BLAKE2B 
fcdf351e5b264cc31e2ce2954e05abd9f99ad622eb015e2267b24a8c281cd9fc79d0e5081f80b8805e0b9329b6c463d04e18d5704d75ab45139d86896e62
 SHA512 
78db380d87bd6437cab84b546af7f6505a8aaed7e8d9e8a06f3fdab1896b06a3bf1d11201384e4daedd2c78e528221e1d7e40665557e78251efec5fa036f4137
 DIST libchamplain-0.12.19.tar.xz 233084 BLAKE2B 
b46ef4b1ceaef3d3b7d52652e825de30a11d7b8f5a68b5a08abcec7111c58443ba76b9aea6b350007ccd91bfc86a4062079c51416fc4e63795318269045ce509
 SHA512 
3fc03c123859b078f1c4f5062706c95446146a7ed2352306cea3f72f3fbf95099afd2a99f61182e3cb7c47e546de6501ff3ed6ff17614f23dc2e4139ba5e4902

diff --git a/media-libs/libchamplain/libchamplain-0.12.16.ebuild 
b/media-libs/libchamplain/libchamplain-0.12.16.ebuild
deleted file mode 100644
index 6803cb051df..000
--- a/media-libs/libchamplain/libchamplain-0.12.16.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-VALA_USE_DEPEND="vapigen"
-
-inherit gnome2 vala
-
-DESCRIPTION="Clutter based world map renderer"
-HOMEPAGE="https://wiki.gnome.org/Projects/libchamplain";
-
-SLOT="0.12"
-LICENSE="LGPL-2"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
-
-IUSE="debug +gtk +introspection vala"
-REQUIRED_USE="vala? ( introspection )"
-
-RDEPEND="
-   dev-db/sqlite:3
-   >=dev-libs/glib-2.16:2
-   >=media-libs/clutter-1.12:1.0[introspection?]
-   media-libs/cogl:=
-   >=net-libs/libsoup-2.42:2.4
-   >=x11-libs/cairo-1.4
-   x11-libs/gtk+:3
-   gtk? (
-   x11-libs/gtk+:3[introspection?]
-   media-libs/clutter-gtk:1.0 )
-   introspection? ( dev-libs/gobject-introspection:= )
-"
-DEPEND="${RDEPEND}
-   dev-util/glib-utils
-   dev-util/gtk-doc-am
-   virtual/pkgconfig
-   vala? ( $(vala_depend) )
-"
-
-src_prepare() {
-   # Fix documentation slotability
-   sed \
-   -e "s/^DOC_MODULE.*/DOC_MODULE = ${PN}-${SLOT}/" \
-   -i docs/reference/Makefile.{am,in} || die "sed (1) failed"
-   sed \
-   -e "s/^DOC_MODULE.*/DOC_MODULE = ${PN}-gtk-${SLOT}/" \
-   -i docs/reference-gtk/Makefile.{am,in} || die "sed (2) failed"
-   mv "${S}"/docs/reference/${PN}{,-${SLOT}}-docs.sgml || die "mv (1) 
failed"
-   mv "${S}"/docs/reference-gtk/${PN}-gtk{,-${SLOT}}-docs.sgml || die "mv 
(2) failed"
-
-   use vala && vala_src_prepare
-   gnome2_src_prepare
-}
-
-src_configure() {
-   # Vala demos are only built, so just disable them
-   gnome2_src_configure \
-   --disable-memphis \
-   --disable-static \
-   --disable-vala-demos \
-   $(use_enable debug) \
-   $(use_enable gtk) \
-   $(use_enable introspection) \
-   $(use_enable vala)
-}



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

2019-05-18 Thread Mart Raudsepp
commit: a31bfb5d8b1d0de64d4c630878aae506876a8943
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 22:11:23 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 22:11:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a31bfb5d

media-libs/clutter-gst: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 media-libs/clutter-gst/Manifest  |  1 -
 media-libs/clutter-gst/clutter-gst-3.0.26.ebuild | 57 
 2 files changed, 58 deletions(-)

diff --git a/media-libs/clutter-gst/Manifest b/media-libs/clutter-gst/Manifest
index 7e54a01e318..a2d9853f935 100644
--- a/media-libs/clutter-gst/Manifest
+++ b/media-libs/clutter-gst/Manifest
@@ -1,2 +1 @@
-DIST clutter-gst-3.0.26.tar.xz 402976 BLAKE2B 
41a8da175c7b99e9072e76cd0fe8c89050a3b8a11c6c3e7887c1fc466e57d9e9a4f3c2efbc030dc3da51eebc54d56ec1702298bb04081f0a6a169f4f94fbb01c
 SHA512 
c1dca7b6fb7756dd1642e176b2d26f28330388283623c46350a8c979f3dd4af916a9807dfe4937ebd9f747f781a7dad4f0f8eea74ba8423c32bd92610eebcbc7
 DIST clutter-gst-3.0.27.tar.xz 404972 BLAKE2B 
6861e6a0e8770b1d0c1a1d3ca593b2f8b5ea381614d063c040ee92e4099d8b4e43d25fa6058f7d1c146fdf94766b20e7aa69fa6fc6725b46af4a3ed976aa05cc
 SHA512 
27271d9b2241a35cf7f61c4e9e25126d578494843c947cbeac6b5ad1dc8726c7a2a056239617ec39b04a7671a45dcbe2a65c364b10ed470f7c857647f8c36cac

diff --git a/media-libs/clutter-gst/clutter-gst-3.0.26.ebuild 
b/media-libs/clutter-gst/clutter-gst-3.0.26.ebuild
deleted file mode 100644
index 0de022907bb..000
--- a/media-libs/clutter-gst/clutter-gst-3.0.26.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-PYTHON_COMPAT=( python2_7 )
-
-inherit gnome2 python-any-r1
-
-HOMEPAGE="https://blogs.gnome.org/clutter/";
-DESCRIPTION="GStreamer integration library for Clutter"
-
-LICENSE="LGPL-2.1+"
-SLOT="3.0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86"
-IUSE="X debug examples +introspection udev"
-
-# >=cogl-1.18 provides cogl-2.0-experimental
-COMMON_DEPEND="
-   >=dev-libs/glib-2.20:2
-   >=media-libs/clutter-1.20:1.0=[X=,introspection?]
-   >=media-libs/cogl-1.18:1.0=[introspection?]
-   >=media-libs/gstreamer-1.4:1.0[introspection?]
-   >=media-libs/gst-plugins-bad-1.4:1.0
-   >=media-libs/gst-plugins-base-1.4:1.0[introspection?]
-   introspection? ( >=dev-libs/gobject-introspection-0.6.8:= )
-   udev? ( virtual/libgudev )
-"
-# uses goom from gst-plugins-good
-RDEPEND="${COMMON_DEPEND}
-   >=media-libs/gst-plugins-good-1.4:1.0
-   !udev? ( media-plugins/gst-plugins-v4l2 )
-"
-DEPEND="${COMMON_DEPEND}
-   ${PYTHON_DEPS}
-   dev-util/glib-utils
-   >=dev-util/gtk-doc-am-1.11
-   virtual/pkgconfig
-"
-
-src_configure() {
-   # --enable-gl-texture-upload is experimental
-   gnome2_src_configure \
-   --disable-maintainer-flags \
-   --enable-debug=$(usex debug yes minimum) \
-   $(use_enable introspection) \
-   $(use_enable udev)
-}
-
-src_install() {
-   gnome2_src_install
-
-   if use examples; then
-   insinto /usr/share/doc/"${PF}"/examples
-   doins examples/{*.c,*.png,README}
-   fi
-}



[gentoo-commits] proj/portage:master commit in: lib/portage/util/futures/_asyncio/

2019-05-18 Thread Zac Medico
commit: cef213c31ce05920fd1b8bbf2749f012944f0c2a
Author: Zac Medico  gentoo  org>
AuthorDate: Sat May 18 22:16:13 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sat May 18 22:20:50 2019 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=cef213c3

_safe_loop: call global_event_loop() directly

Since _wrap_loop() always returns an identical result in this context,
call global_event_loop() directly.

Signed-off-by: Zac Medico  gentoo.org>

 lib/portage/util/futures/_asyncio/__init__.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/portage/util/futures/_asyncio/__init__.py 
b/lib/portage/util/futures/_asyncio/__init__.py
index e77c7a690..bd9f2e47c 100644
--- a/lib/portage/util/futures/_asyncio/__init__.py
+++ b/lib/portage/util/futures/_asyncio/__init__.py
@@ -265,6 +265,6 @@ def _safe_loop():
@return: event loop instance
"""
if portage._internal_caller:
-   return _wrap_loop()
+   return _global_event_loop()
else:
return _EventLoop(main=False)



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

2019-05-18 Thread Mart Raudsepp
commit: 1c4453fee3b64e7a3205de9c4af738abfbd8c89d
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 21:59:33 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 21:59:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c4453fe

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

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 gnome-extra/evolution-data-server/Manifest |   2 -
 .../evolution-data-server-3.24.7.ebuild| 153 -
 .../evolution-data-server-3.26.6.ebuild| 151 
 .../files/3.24.7-DESTDIR-honoring.patch|  31 -
 .../files/3.24.7-libical3-compat.patch | 146 
 .../evolution-data-server/files/icu61-compat.patch |  38 -
 gnome-extra/evolution-data-server/metadata.xml |   3 -
 7 files changed, 524 deletions(-)

diff --git a/gnome-extra/evolution-data-server/Manifest 
b/gnome-extra/evolution-data-server/Manifest
index 04baf3ba2ca..6e514e69b7e 100644
--- a/gnome-extra/evolution-data-server/Manifest
+++ b/gnome-extra/evolution-data-server/Manifest
@@ -1,3 +1 @@
-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
 DIST evolution-data-server-3.30.5.tar.xz 4582264 BLAKE2B 
96303da0fcd285dffc2a56bab0828b2011238a0970dc50df005f690a76c432abad27afd74569b1cc6ff2ddc56f1dbde003241d53609b0222a474941724e46910
 SHA512 
b841b23343745afdc59f42ee384911ae24be6b1518095d52099ce5b657def17e5b4e1fe1e61fc1e03e4856b0d26c6a1abac3d9ee5530da84c645d07c69b8d859

diff --git 
a/gnome-extra/evolution-data-server/evolution-data-server-3.24.7.ebuild 
b/gnome-extra/evolution-data-server/evolution-data-server-3.24.7.ebuild
deleted file mode 100644
index bfb034cf6c5..000
--- a/gnome-extra/evolution-data-server/evolution-data-server-3.24.7.ebuild
+++ /dev/null
@@ -1,153 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-PYTHON_COMPAT=( python2_7 python3_{5,6} pypy )
-VALA_USE_DEPEND="vapigen"
-
-inherit cmake-utils 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/60" # 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 ~arm64 ~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
-   >=sys-devel/gettext-0.18.3
-   virtual/pkgconfig
-   vala? ( $(vala_depend) )
-"
-
-# Some tests fail due to missings locales.
-# Also, dbus tests are flacky, bugs #397975 #501834
-# It looks 

[gentoo-commits] repo/gentoo:master commit in: media-gfx/gnome-photos/, media-gfx/gnome-photos/files/

2019-05-18 Thread Mart Raudsepp
commit: b0947f4d46ddabada81380853dc0baf25f8ba1a4
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 22:02:32 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 22:02:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0947f4d

media-gfx/gnome-photos: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 media-gfx/gnome-photos/Manifest|  1 -
 .../files/3.26.4-support-tracker1.patch| 30 
 media-gfx/gnome-photos/gnome-photos-3.26.4.ebuild  | 79 --
 3 files changed, 110 deletions(-)

diff --git a/media-gfx/gnome-photos/Manifest b/media-gfx/gnome-photos/Manifest
index 0b15b74a81c..40bc8f19cfb 100644
--- a/media-gfx/gnome-photos/Manifest
+++ b/media-gfx/gnome-photos/Manifest
@@ -1,2 +1 @@
-DIST gnome-photos-3.26.4.tar.xz 1101324 BLAKE2B 
81e851bdeb39455cad6d4ba99194229507a809c3bd8c9ff0c24992cbbf90001d87f96d1c2b3c3a07101982e6ea169cba0e2249431138e962850f55fffc2c54ec
 SHA512 
0a49b7eb29918ccf87af4211db6ffbb3c55ab40f4eaa1437317fda32de43b3b0c9033397d5b06fbc5012d0fa322a79dafdf46817cfaea57ef2f4df1a975fb489
 DIST gnome-photos-3.30.1.tar.xz 1118728 BLAKE2B 
b3de35fb9c2ae7b731cf76a7b02b689997e3cf063037c49a51dbdf8bb37d9217c9bd5380bc872b984eca4e53c5996eb6370f3acc82a90e56dabe9d47999d5578
 SHA512 
4fa386c3d93f2b15468601e56bfcbdcc83a9e78ed5c4d0a1e51e9adf4ba313bb69e07aae52404026546dd68584e355c5e5100fc12f95fe078ccf2d6160a0a24b

diff --git a/media-gfx/gnome-photos/files/3.26.4-support-tracker1.patch 
b/media-gfx/gnome-photos/files/3.26.4-support-tracker1.patch
deleted file mode 100644
index 508b5d3c9a5..000
--- a/media-gfx/gnome-photos/files/3.26.4-support-tracker1.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 7b81db71110e325fc6343ae2582942a9ad038311 Mon Sep 17 00:00:00 2001
-From: Mart Raudsepp 
-Date: Wed, 16 Jan 2019 05:08:25 +0200
-Subject: [PATCH] build: Keep supporting building against tracker-1 too
-

- configure.ac | 7 ++-
- 1 file changed, 6 insertions(+), 1 deletion(-)
-
-diff --git a/configure.ac b/configure.ac
-index 5965d33d..13196605 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -115,7 +115,12 @@ PKG_CHECK_MODULES(GSETTINGS_DESKTOP_SCHEMAS, 
[gsettings-desktop-schemas])
- PKG_CHECK_MODULES(GTK, [gtk+-3.0 >= $GTK_MIN_VERSION])
- PKG_CHECK_MODULES(GTK_UNIX_PRINT, [gtk+-unix-print-3.0])
- PKG_CHECK_MODULES(PNG, [libpng16])
--PKG_CHECK_MODULES(TRACKER, [tracker-control-2.0 tracker-sparql-2.0])
-+tracker_api="1.0"
-+m4_foreach([VERSION], [[1.0], [2.0]],
-+  [PKG_CHECK_EXISTS([tracker-control-VERSION 
tracker-sparql-VERSION],
-+[tracker_api="VERSION"])
-+  ])
-+PKG_CHECK_MODULES(TRACKER, [tracker-control-$tracker_api 
tracker-sparql-$tracker_api])
- 
- LIBGD_INIT([
-   gtk-hacks
--- 
-2.17.0
-

diff --git a/media-gfx/gnome-photos/gnome-photos-3.26.4.ebuild 
b/media-gfx/gnome-photos/gnome-photos-3.26.4.ebuild
deleted file mode 100644
index fe3c9e781a0..000
--- a/media-gfx/gnome-photos/gnome-photos-3.26.4.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-GNOME2_EAUTORECONF="yes"
-
-inherit gnome2 python-any-r1 virtualx
-
-DESCRIPTION="Access, organize and share your photos on GNOME"
-HOMEPAGE="https://wiki.gnome.org/Apps/Photos";
-
-LICENSE="GPL-2+ LGPL-2+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="flickr test upnp-av"
-
-COMMON_DEPEND="
-   app-misc/tracker:=
-   >=dev-libs/glib-2.44:2
-   gnome-base/gsettings-desktop-schemas
-   >=dev-libs/libgdata-0.15.2:0=[gnome-online-accounts]
-   media-libs/babl
-   >=media-libs/gegl-0.3.15:0.3[cairo,jpeg2k,raw]
-   media-libs/gexiv2
-   >=media-libs/grilo-0.3.0:0.3=
-   >=media-libs/libpng-1.6:0=
-   >=net-libs/gnome-online-accounts-3.8:=
-   >=net-libs/libgfbgraph-0.2.1:0.2
-   sci-geosciences/geocode-glib
-   >=x11-libs/cairo-1.14
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/gtk+-3.22.16:3
-"
-# gnome-online-miners is also used for google, facebook, DLNA - not only flickr
-# but out of all the grilo-plugins, only upnp-av and flickr get used, which 
have USE flags here,
-# so don't pull it always, but only if either USE flag is enabled
-RDEPEND="${COMMON_DEPEND}
-   net-misc/gnome-online-miners[flickr?]
-   upnp-av? ( media-plugins/grilo-plugins:0.3[upnp-av] )
-   flickr? ( media-plugins/grilo-plugins:0.3[flickr] )
-"
-DEPEND="${COMMON_DEPEND}
-   app-text/yelp-tools
-   dev-util/desktop-file-utils
-   dev-util/glib-utils
-   >=sys-devel/gettext-0.19.8
-   virtual/pkgconfig
-   test? ( $(python_gen_any_dep 'dev-util/dogtail[${PYTHON_USEDEP}]') )
-"
-# app-text/yelp-tools needed for eautoreconf; otherwise probably just itstool
-RDEPEND="${RDEPEND}
-   || (
-   >=app-misc

[gentoo-commits] repo/gentoo:master commit in: gnome-extra/zenity/

2019-05-18 Thread Mart Raudsepp
commit: cf680204e3c93b1b07c2148898bfcda78c2ab664
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 21:49:33 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 21:49:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf680204

gnome-extra/zenity: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 gnome-extra/zenity/Manifest |  1 -
 gnome-extra/zenity/zenity-3.28.1.ebuild | 45 -
 2 files changed, 46 deletions(-)

diff --git a/gnome-extra/zenity/Manifest b/gnome-extra/zenity/Manifest
index cb9b057f2f0..5deb4a27e14 100644
--- a/gnome-extra/zenity/Manifest
+++ b/gnome-extra/zenity/Manifest
@@ -1,2 +1 @@
-DIST zenity-3.28.1.tar.xz 4458404 BLAKE2B 
e2ae199ab51dbe4bf01b21bbff588a4f71328b385bdd92f3228c6971b248d50c8f890c818ae2496f595cd1609dcb9f372bff13f3dfb653d179108074bdd2
 SHA512 
07cfef3dc17b3d321e6abfb15c7d035caad7c2cba938263920c503e67d35e9a1dc86b48255334e50b58f6998eb4c064cc24ebd71d02f278b21b568500daae0c0
 DIST zenity-3.30.0.tar.xz 4485332 BLAKE2B 
b7dba31693849222f1a01a037a271e20d4ca58d51247635559f66e2afa848f9861b3c6e435d18a882d81263dac02d96e6673774131bb6ccf6d1f8c32dbb2aa40
 SHA512 
f80aa6c4fb0726bd4db1010dc3b6ca89476272cd4b852c04225bc9e2dc365ec34f6a55f0cfca474abcfba4d28dc47b72f81e8b3c447c0f99e843251c84807432

diff --git a/gnome-extra/zenity/zenity-3.28.1.ebuild 
b/gnome-extra/zenity/zenity-3.28.1.ebuild
deleted file mode 100644
index 22cd106e0cf..000
--- a/gnome-extra/zenity/zenity-3.28.1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="Tool to display dialogs from the commandline and shell scripts"
-HOMEPAGE="https://wiki.gnome.org/Projects/Zenity";
-
-LICENSE="LGPL-2+"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux"
-IUSE="debug libnotify webkit"
-
-# TODO: X11 dependency is automagically enabled
-RDEPEND="
-   >=dev-libs/glib-2.8:2
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/gtk+-3:3[X]
-   x11-libs/libX11
-   x11-libs/pango
-   libnotify? ( >=x11-libs/libnotify-0.6.1:= )
-   webkit? ( >=net-libs/webkit-gtk-2.8.1:4 )
-"
-DEPEND="${RDEPEND}
-   app-text/yelp-tools
-   gnome-base/gnome-common
-   >=sys-devel/gettext-0.19.4
-   virtual/pkgconfig
-"
-
-src_configure() {
-   gnome2_src_configure \
-   $(usex debug --enable-debug=yes ' ') \
-   $(use_enable libnotify) \
-   $(use_enable webkit webkitgtk) \
-   PERL=$(type -P false)
-}
-
-src_install() {
-   gnome2_src_install
-
-   # Not really needed and prevent us from needing perl
-   rm "${ED}/usr/bin/gdialog" || die "rm gdialog failed!"
-}



[gentoo-commits] repo/gentoo:master commit in: media-gfx/eog-plugins/

2019-05-18 Thread Mart Raudsepp
commit: 4de51db7943ccbe98ef25d2eba0f75384a7f4036
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 22:00:16 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 22:00:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4de51db7

media-gfx/eog-plugins: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 media-gfx/eog-plugins/Manifest |  1 -
 media-gfx/eog-plugins/eog-plugins-3.16.6-r1.ebuild | 63 --
 2 files changed, 64 deletions(-)

diff --git a/media-gfx/eog-plugins/Manifest b/media-gfx/eog-plugins/Manifest
index 5b3c0fcffeb..0b5720f84ec 100644
--- a/media-gfx/eog-plugins/Manifest
+++ b/media-gfx/eog-plugins/Manifest
@@ -1,2 +1 @@
-DIST eog-plugins-3.16.6.tar.xz 398836 BLAKE2B 
fcd3c6dc61ca6d935580caffdf9c941d34265f8caa6cd3d682e0d7679888f6965f64ac30b807c00417e904b4e0eeff1a213a8f6d284c130abe265f9c97fc636b
 SHA512 
e3bff786785ae36a41bc7c5fcb3cf75233595777409f373c4a6597fa6e432f72c7a75608e09ab66e1033ca0d12e3855346d7f7e0c571014b5aaef40184a3383b
 DIST eog-plugins-3.26.3.tar.xz 470712 BLAKE2B 
cd5845481006b681555f35d1f353ed624baa83fc8fc45bb889b2418f31a776bf9e08e270f911f61f431123825a5b96fa684f72e378ddd0ad1107ff44a5c98519
 SHA512 
5ea0bbf692fa71fa77b0b78307cceee067c95e80c2e69e173990c1154df8014912f24f8d023eda79da56b7c1bdf0870e5e92b968a68c4961af3fc1382d4f468c

diff --git a/media-gfx/eog-plugins/eog-plugins-3.16.6-r1.ebuild 
b/media-gfx/eog-plugins/eog-plugins-3.16.6-r1.ebuild
deleted file mode 100644
index d2fc7789e50..000
--- a/media-gfx/eog-plugins/eog-plugins-3.16.6-r1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-PYTHON_COMPAT=( python{3_5,3_6} )
-
-inherit gnome2 python-single-r1
-
-DESCRIPTION="Eye of GNOME plugins"
-HOMEPAGE="https://wiki.gnome.org/Apps/EyeOfGnome/Plugins";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-IUSE="+exif map picasa +python"
-REQUIRED_USE="
-   map? ( exif )
-   python? ( ${PYTHON_REQUIRED_USE} )
-"
-
-RDEPEND="
-   >=dev-libs/glib-2.38:2
-   >=dev-libs/libpeas-0.7.4:=
-   >=media-gfx/eog-3.15.90
-   >=x11-libs/gtk+-3.14:3
-   exif? ( >=media-libs/libexif-0.6.16 )
-   map? (
-   media-libs/libchamplain:0.12[gtk]
-   >=media-libs/clutter-1.9.4:1.0
-   >=media-libs/clutter-gtk-1.1.2:1.0 )
-   picasa? ( >=dev-libs/libgdata-0.9.1:= )
-   python? (
-   ${PYTHON_DEPS}
-   >=dev-libs/glib-2.32:2[dbus]
-   dev-libs/libpeas:=[gtk,python,${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   gnome-base/gsettings-desktop-schemas
-   media-gfx/eog[introspection]
-   x11-libs/gtk+:3[introspection]
-   x11-libs/pango[introspection] )
-"
-DEPEND="${RDEPEND}
-   >=dev-util/intltool-0.50.1
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-pkg_setup() {
-   use python && python-single-r1_pkg_setup
-}
-
-src_configure() {
-   local plugins="fit-to-width,send-by-mail,hide-titlebar,light-theme"
-   use exif && plugins="${plugins},exif-display"
-   use map && plugins="${plugins},map"
-   use picasa && plugins="${plugins},postasa"
-   use python && 
plugins="${plugins},slideshowshuffle,pythonconsole,fullscreenbg,export-to-folder,maximize-windows"
-   gnome2_src_configure \
-   $(use_enable python) \
-   --with-plugins=${plugins}
-}



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

2019-05-18 Thread Mart Raudsepp
commit: 6a72e358fea880bc8900b75d106d701342e00ac1
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 22:04:58 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 22:04:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a72e358

media-gfx/shotwell: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 media-gfx/shotwell/Manifest   |  2 -
 media-gfx/shotwell/shotwell-0.28.3.ebuild | 62 ---
 media-gfx/shotwell/shotwell-0.28.4.ebuild | 62 ---
 3 files changed, 126 deletions(-)

diff --git a/media-gfx/shotwell/Manifest b/media-gfx/shotwell/Manifest
index 399f75dbd3a..6c26f40beeb 100644
--- a/media-gfx/shotwell/Manifest
+++ b/media-gfx/shotwell/Manifest
@@ -1,3 +1 @@
-DIST shotwell-0.28.3.tar.xz 5531900 BLAKE2B 
b585989434e3da9b2d5f43aabf41451e33b7b2f537a21305ff9decd9992d42e5422971d1f89836936630f641efdac1242dc21574d86f61a4c71562b657e0300d
 SHA512 
9a0c15bfe856dabaa85038fe875cc178be6a3e104397b36555005615212ac92579234fc6277f1a4a7bddba517e9ea0db5ed06e0fc30614453e3db1153b47dc16
-DIST shotwell-0.28.4.tar.xz 5529712 BLAKE2B 
a8ee8243cf1a800fd1c1a91ade81decf9187aa6ce3b5040977dd45ae64245883691674ca2aa8d09df164e84dcc7f3e632dfc206b2f0eaecd18a171f0c170846d
 SHA512 
b80014ec2c5ddfa35c0eea59daaf41fb8e8fac76482f18581de4c91b766f55d1b05e1925088152705ce3eb4ca228e5401ba80ebd2a6232d65b61cdb2c843267b
 DIST shotwell-0.30.2.tar.xz 6461648 BLAKE2B 
d54f34c05dcb092149129977bf59f0434ec4082929e3c87d9b4e774f85b47d73ecce1e80a6a29965194e9791eecb018405b43f082fb8b334c8d012f06a00b817
 SHA512 
ee74b9d3fbc5b2a5ca87cbc351fa99f6afaec4ce717166f55d79f41f1b039c272ed9028eb3919874f086f934197806738a54f428e790bca50dd8c9af61c21c36

diff --git a/media-gfx/shotwell/shotwell-0.28.3.ebuild 
b/media-gfx/shotwell/shotwell-0.28.3.ebuild
deleted file mode 100644
index b7049d63554..000
--- a/media-gfx/shotwell/shotwell-0.28.3.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-VALA_MIN_API_VERSION="0.28"
-
-inherit gnome2 multilib toolchain-funcs vala
-
-DESCRIPTION="Open source photo manager for GNOME"
-HOMEPAGE="https://wiki.gnome.org/Apps/Shotwell";
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
-IUSE=""
-
-RDEPEND="
-   >=app-crypt/gcr-3[gtk]
-   >=dev-db/sqlite-3.5.9:3
-   >=dev-libs/glib-2.40.0:2
-   >=dev-libs/json-glib-0.7.6
-   >=dev-libs/libgee-0.8.5:0.8
-   >=dev-libs/libxml2-2.6.32:2
-   gnome-base/dconf
-   >=media-libs/gexiv2-0.10.4
-   media-libs/gst-plugins-base:1.0
-   media-libs/gst-plugins-good:1.0
-   media-libs/gstreamer:1.0
-   media-libs/lcms:2
-   >=media-libs/libexif-0.6.16:=
-   >=media-libs/libgphoto2-2.5:=
-   >=media-libs/libraw-0.13.2:=
-   media-plugins/gst-plugins-gdkpixbuf:1.0
-   >=net-libs/libsoup-2.42.0:2.4
-   net-libs/webkit-gtk:4
-   virtual/libgudev:=[introspection]
-   >=x11-libs/gtk+-3.14.0:3[X]
-   dev-libs/libgdata
-
-"
-DEPEND="${RDEPEND}
-   $(vala_depend)
-   dev-util/itstool
-   >=sys-devel/gettext-0.19.7
-   >=sys-devel/m4-1.4.13
-   virtual/pkgconfig
-"
-
-# This probably comes from libraries that
-# shotwell-video-thumbnailer links to.
-# Nothing we can do at the moment. #435048
-QA_FLAGS_IGNORED="/usr/libexec/${PN}/${PN}-video-thumbnailer"
-
-src_prepare() {
-   vala_src_prepare
-   gnome2_src_prepare
-}
-
-src_configure() {
-   gnome2_src_configure --disable-static
-}

diff --git a/media-gfx/shotwell/shotwell-0.28.4.ebuild 
b/media-gfx/shotwell/shotwell-0.28.4.ebuild
deleted file mode 100644
index e6ea4f5ab99..000
--- a/media-gfx/shotwell/shotwell-0.28.4.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-VALA_MIN_API_VERSION="0.28"
-
-inherit gnome2 multilib toolchain-funcs vala
-
-DESCRIPTION="Open source photo manager for GNOME"
-HOMEPAGE="https://wiki.gnome.org/Apps/Shotwell";
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE=""
-
-RDEPEND="
-   >=app-crypt/gcr-3[gtk]
-   >=dev-db/sqlite-3.5.9:3
-   >=dev-libs/glib-2.40.0:2
-   >=dev-libs/json-glib-0.7.6
-   >=dev-libs/libgee-0.8.5:0.8
-   >=dev-libs/libxml2-2.6.32:2
-   gnome-base/dconf
-   >=media-libs/gexiv2-0.10.4
-   media-libs/gst-plugins-base:1.0
-   media-libs/gst-plugins-good:1.0
-   media-libs/gstreamer:1.0
-   media-libs/lcms:2
-   >=media-libs/libexif-0.6.16:=
-   >=media-libs/libgphoto2-2.5:=
-   >=media-libs/libraw-0.13.2:=
-   media-plugins/gst-plugins-gdkpixbuf:1.0
-   >=net-libs/libsoup-2.42.0:2.4
-   net-libs/webkit-gtk:4
-

[gentoo-commits] repo/gentoo:master commit in: gnome-extra/sushi/

2019-05-18 Thread Mart Raudsepp
commit: c47a6f9136b1e90c668eaa15ed29b6ff84a7b28c
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 21:48:40 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 21:48:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c47a6f91

gnome-extra/sushi: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 gnome-extra/sushi/Manifest|  1 -
 gnome-extra/sushi/sushi-3.24.0.ebuild | 50 ---
 2 files changed, 51 deletions(-)

diff --git a/gnome-extra/sushi/Manifest b/gnome-extra/sushi/Manifest
index 1ea9c6b026a..2f1a905523d 100644
--- a/gnome-extra/sushi/Manifest
+++ b/gnome-extra/sushi/Manifest
@@ -1,2 +1 @@
-DIST sushi-3.24.0.tar.xz 297332 BLAKE2B 
a01947627e9ca711f9f1d634f2791ee79e414bab38058ca4a8bfd822a2d277522fe99d66b3364f46662ee0fc1fa8a148f48ce8c434fd0d7bbb7ef1c159f2ea12
 SHA512 
b49e9c1ef1dc4c74ae06f6da9a2f428ed4ee3ec1ca3ba04c483ddb1bd976e6981466456d27a641048756a1ea0bf2fe033883059895e889950d0d0f340535b29b
 DIST sushi-3.30.0.tar.xz 296940 BLAKE2B 
ff8617aabab16d41c9b072f8cf9774e4f5ce59e0dada05dcad23ba6929005c963d86a1beb5c2a3adc5e8cbaf8a6ce769b48ff53f4979db9f1853bbed0f80fb2d
 SHA512 
48d2b960c2ebe86cdfbd0043968acdd6864162368941b921f25e137e6aeb2a2513738ad4d8c6ef5d5c6d2863e6ace5d2819e0a5dfc487efd20a1914a7cbcc40e

diff --git a/gnome-extra/sushi/sushi-3.24.0.ebuild 
b/gnome-extra/sushi/sushi-3.24.0.ebuild
deleted file mode 100644
index 3bcb3f8cea0..000
--- a/gnome-extra/sushi/sushi-3.24.0.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="A quick previewer for Nautilus, the GNOME file manager"
-HOMEPAGE="https://git.gnome.org/browse/sushi";
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
-IUSE="office"
-
-# Optional app-office/unoconv support (OOo to pdf)
-# freetype needed for font loader
-# gtk+[X] optionally needed for sushi_create_foreign_window(); when wayland is 
more widespread, might want to not force it
-COMMON_DEPEND="
-   >=x11-libs/gdk-pixbuf-2.23[introspection]
-   >=dev-libs/gjs-1.40
-   >=dev-libs/glib-2.29.14:2
-   >=dev-libs/gobject-introspection-0.9.6:=
-   >=media-libs/clutter-1.11.4:1.0[introspection]
-   >=media-libs/clutter-gtk-1.0.1:1.0[introspection]
-   >=x11-libs/gtk+-3.13.2:3[X,introspection]
-
-   >=app-text/evince-3.0[introspection]
-   media-libs/freetype:2
-   media-libs/gstreamer:1.0[introspection]
-   media-libs/gst-plugins-base:1.0[introspection]
-   >=media-libs/harfbuzz-0.9.9:=
-   media-libs/clutter-gst:3.0[introspection]
-   media-libs/musicbrainz:5=
-   net-libs/webkit-gtk:4[introspection]
-   x11-libs/gtksourceview:3.0[introspection]
-
-   office? ( app-office/unoconv )
-"
-DEPEND="${RDEPEND}
-   dev-util/glib-utils
-   >=dev-util/intltool-0.40
-   virtual/pkgconfig
-"
-RDEPEND="${COMMON_DEPEND}
-   >=gnome-base/nautilus-3.1.90
-"
-
-src_configure() {
-   gnome2_src_configure --disable-static
-}



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

2019-05-18 Thread Mart Raudsepp
commit: 8422903cecb51878ca9c22a9a947a2f5cfb98ccf
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 22:05:43 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 22:05:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8422903c

gnome-base/gnome: remove old

Giving up on arm and ia64 as it breaks CI now from gnome-core-apps
cleanup and not worth tweaking it with this toplevel meta that's
very outdated for these arches by now.

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 gnome-base/gnome/gnome-3.20.0.ebuild | 52 
 1 file changed, 52 deletions(-)

diff --git a/gnome-base/gnome/gnome-3.20.0.ebuild 
b/gnome-base/gnome/gnome-3.20.0.ebuild
deleted file mode 100644
index 7fdd120189b..000
--- a/gnome-base/gnome/gnome-3.20.0.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Meta package for GNOME 3, merge this package to install"
-HOMEPAGE="https://www.gnome.org/";
-
-LICENSE="metapackage"
-SLOT="2.0" # Cannot be installed at the same time as gnome-2
-
-# when unmasking for an arch
-# double check none of the deps are still masked !
-KEYWORDS="amd64 ~arm ~ia64 ~ppc ~ppc64 x86"
-
-IUSE="accessibility +bluetooth +classic +cdr cups +extras"
-
-S=${WORKDIR}
-
-# TODO: check accessibility completeness
-# GDM-3.0 integrates very nicely with GNOME Shell
-RDEPEND="
-   >=gnome-base/gnome-core-libs-${PV}[cups?]
-   >=gnome-base/gnome-core-apps-${PV}[cups?,bluetooth?,cdr?]
-
-   >=gnome-base/gdm-${PV}
-
-   >=x11-wm/mutter-${PV}
-   >=gnome-base/gnome-shell-${PV}[bluetooth?]
-
-   >=x11-themes/gnome-backgrounds-3.20
-   x11-themes/sound-theme-freedesktop
-
-   accessibility? (
-   >=app-accessibility/at-spi2-atk-2.20
-   >=app-accessibility/at-spi2-core-2.20
-   >=app-accessibility/caribou-0.4.21
-   >=app-accessibility/orca-${PV}
-   >=gnome-extra/mousetweaks-3.12.0 )
-   classic? ( >=gnome-extra/gnome-shell-extensions-${PV} )
-   extras? ( >=gnome-base/gnome-extra-apps-${PV} )
-"
-
-DEPEND=""
-
-PDEPEND=">=gnome-base/gvfs-1.28[udisks]"
-
-pkg_postinst() {
-   # Remember people where to find our project information
-   elog "Please remember to look at 
https://wiki.gentoo.org/wiki/Project:GNOME";
-   elog "for information about the project and documentation."
-}



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

2019-05-18 Thread Mart Raudsepp
commit: 724233c4c49331dcb547d59e3742c1514401477a
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 21:55:23 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 21:55:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=724233c4

mail-client/evolution: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 mail-client/evolution/Manifest|   1 -
 mail-client/evolution/evolution-3.24.6.ebuild | 163 --
 mail-client/evolution/metadata.xml|   2 -
 3 files changed, 166 deletions(-)

diff --git a/mail-client/evolution/Manifest b/mail-client/evolution/Manifest
index 4214e6ff76d..5301d9a2432 100644
--- a/mail-client/evolution/Manifest
+++ b/mail-client/evolution/Manifest
@@ -1,2 +1 @@
-DIST evolution-3.24.6.tar.xz 12153692 BLAKE2B 
ced20d9e08f6b9aac65be6f5ecd5beb861feec40dddc4411b1bdc6519e249de8db8b3319450808d7a31b80386f9830f351b7edacb3c6fcd28fe5fdfe343329f7
 SHA512 
da5c9062791996735e52575894763597cc957cb17bc0abe46a966f0e3e6706550ce534ae03b2c444d142547119f3a59aec6ee17e0302a002d8437da166ef7178
 DIST evolution-3.30.5.tar.xz 11995960 BLAKE2B 
4a2ac539e88467148dd3be2bf2607be55ea39dfb0ceb89183a6f4fa3ee66c1973690c4e540a7405743c202aa777ad9aa147600390e909ffc93cb2dae1ebb62d9
 SHA512 
1d776fdb0da4166d9346ad4cd05d7ee050e0bf3ac1edc1f7d3fb4ba8909e35429e8d076a5b6e223f3fc94e2a8ad6337205c1d648220a3fdf593bae64d9c975d1

diff --git a/mail-client/evolution/evolution-3.24.6.ebuild 
b/mail-client/evolution/evolution-3.24.6.ebuild
deleted file mode 100644
index ad6524c7127..000
--- a/mail-client/evolution/evolution-3.24.6.ebuild
+++ /dev/null
@@ -1,163 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-
-inherit cmake-utils 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="archive +bogofilter crypt geolocation highlight ldap spamassassin spell 
ssl +weather ytnef"
-
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 x86"
-
-# 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
-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
-
-   archive? ( >=app-arch/gnome-autoar-0.1.1[gtk] )
-   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= )
-   ytnef? ( net-mail/ytnef )
-"
-DEPEND="${COMMON_DEPEND}
-   app-text/docbook-xml-dtd:4.1.2
-   app-text/yelp-tools
-   dev-util/gdbus-codegen
-   >=dev-util/gtk-doc-am-1.14
-   >=dev-util/intltool-0.40.0
-   >=sys-devel/gettext-0.18.3
-   virtual/pkgconfig
-"
-RDEPEND="${COMMON_DEPEND}
-   bogofilter? ( mail-filter/bogofilter )
-   highlight? ( app-text/highlight )
-   spamassassin? ( mail-filter/spamassassin )
-   !gnome-extra/evolution-exchange
-"
-
-DISABLE_AUTOFORMATTING="yes"
-DOC_CONTENTS="To change the default browser if you are not using GNOME, edit
-~/.local/share/applications/mimeapps.list so it includes the
-following content:
-
-[Defau

[gentoo-commits] repo/gentoo:master commit in: media-gfx/gnome-screenshot/

2019-05-18 Thread Mart Raudsepp
commit: 0262330a7529106a46fe81b274dd09dd049d8225
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 22:03:19 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 22:03:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0262330a

media-gfx/gnome-screenshot: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 media-gfx/gnome-screenshot/Manifest|  1 -
 .../gnome-screenshot-3.22.0.ebuild | 48 --
 2 files changed, 49 deletions(-)

diff --git a/media-gfx/gnome-screenshot/Manifest 
b/media-gfx/gnome-screenshot/Manifest
index 2ab39bc2eea..45435310a27 100644
--- a/media-gfx/gnome-screenshot/Manifest
+++ b/media-gfx/gnome-screenshot/Manifest
@@ -1,2 +1 @@
-DIST gnome-screenshot-3.22.0.tar.xz 25 BLAKE2B 
48f997832a8e0f937283a2cfba8880dc9032ea7a3254b0f45dd1ffd3951d096f03899199497ca78fc9be22f83ae8c60bb4f72662a323dad3afc05d2229fd914c
 SHA512 
a532e9cc8615ce22db5805c1857a3bad5bf69a3436a45574384c6c8f848ae67d6991dbfc5556e7cf08f630915c0666bba0c4bee9e4190340bbad57faa9af2ff9
 DIST gnome-screenshot-3.30.0.tar.xz 225244 BLAKE2B 
69c75bb8e3d18578317343b549d4ad837b6e58420c6b49efbc01338697bc2251032d9158e658c9f4ae4e086a1c117eac818c18b6ed95d031c2b60c2ba62a56b6
 SHA512 
a42ff4f14bbb3a3feb438ee64f1dff3d3a792a6585fef92fde8546b9c3fc07013e8bd2ef42ddc880f2529cbc4241a50d441d4de2a4b26923036f1724aabafdba

diff --git a/media-gfx/gnome-screenshot/gnome-screenshot-3.22.0.ebuild 
b/media-gfx/gnome-screenshot/gnome-screenshot-3.22.0.ebuild
deleted file mode 100644
index b72d4467390..000
--- a/media-gfx/gnome-screenshot/gnome-screenshot-3.22.0.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2 readme.gentoo-r1
-
-DESCRIPTION="Screenshot utility for GNOME"
-HOMEPAGE="https://gitlab.gnome.org/GNOME/gnome-screenshot";
-
-LICENSE="GPL-2+"
-SLOT="0"
-IUSE=""
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux"
-
-# libcanberra 0.26-r2 is needed for gtk+:3 fixes
-COMMON_DEPEND="
-   >=dev-libs/glib-2.35.1:2[dbus]
-   >=media-libs/libcanberra-0.26-r2[gtk3]
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf
-   >=x11-libs/gtk+-3.0.3:3
-   x11-libs/libX11
-   x11-libs/libXext
-"
-RDEPEND="${COMMON_DEPEND}
-   >=gnome-base/gsettings-desktop-schemas-0.1.0
-   !

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

2019-05-18 Thread Mart Raudsepp
commit: 02d06739d682d224be01a2f2385e9680f4080953
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 22:01:06 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 22:01:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02d06739

media-gfx/eog: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 media-gfx/eog/Manifest  |  1 -
 media-gfx/eog/eog-3.24.1.ebuild | 56 -
 2 files changed, 57 deletions(-)

diff --git a/media-gfx/eog/Manifest b/media-gfx/eog/Manifest
index 20d74e25c0b..b91759568cc 100644
--- a/media-gfx/eog/Manifest
+++ b/media-gfx/eog/Manifest
@@ -1,2 +1 @@
-DIST eog-3.24.1.tar.xz 4632496 BLAKE2B 
24d6957285d5dae7fa2299165b1bac236e75dfa77938132c1d3f8f7312ed4a07d5d3a770fdbdbcf5ee1966a43b4443d331fbedec47575836e2170fa3022e657f
 SHA512 
c007b6f2cd2b59747db72a5b86ecb34ac87fe0910a2d33df466eb05ebe5ff638fb9e57b15f2ea9328c95037334a2fd9010895241ff285628b7ed7b6d65912fb0
 DIST eog-3.28.4.tar.xz 5732396 BLAKE2B 
9adf7e6793add9298dd879a0fe5ea7c736854d3a40473b2def84851a1e5a78ef84316b20b172c85c85f070278a51b06c1019aef1e5e9c5f31a87243c9229a579
 SHA512 
57ccb6269b2829a0606cbae08fc376bcd13028d3affe03d76c929a95faf9106dfd497872a12019158aeff5e8e101640d912cae0cece435121319820df7262c00

diff --git a/media-gfx/eog/eog-3.24.1.ebuild b/media-gfx/eog/eog-3.24.1.ebuild
deleted file mode 100644
index 335c7694153..000
--- a/media-gfx/eog/eog-3.24.1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-
-inherit gnome2
-
-DESCRIPTION="The Eye of GNOME image viewer"
-HOMEPAGE="https://wiki.gnome.org/Apps/EyeOfGnome";
-
-LICENSE="GPL-2+"
-SLOT="1"
-
-IUSE="debug +exif +introspection +jpeg lcms +svg tiff xmp"
-REQUIRED_USE="exif? ( jpeg )"
-
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
-
-RDEPEND="
-   >=dev-libs/glib-2.42.0:2[dbus]
-   >=dev-libs/libpeas-0.7.4:=[gtk]
-   >=gnome-base/gnome-desktop-2.91.2:3=
-   >=gnome-base/gsettings-desktop-schemas-2.91.92
-   >=x11-libs/gtk+-3.22.0:3[introspection,X]
-   >=x11-misc/shared-mime-info-0.20
-
-   >=x11-libs/gdk-pixbuf-2.30.0:2[jpeg?,tiff?]
-   x11-libs/libX11
-
-   exif? ( >=media-libs/libexif-0.6.14 )
-   introspection? ( >=dev-libs/gobject-introspection-0.9.3:= )
-   jpeg? ( virtual/jpeg:0 )
-   lcms? ( media-libs/lcms:2 )
-   svg? ( >=gnome-base/librsvg-2.36.2:2 )
-   xmp? ( media-libs/exempi:2 )
-"
-DEPEND="${RDEPEND}
-   dev-util/glib-utils
-   >=dev-util/gtk-doc-am-1.16
-   >=dev-util/intltool-0.50.1
-   dev-util/itstool
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-src_configure() {
-   gnome2_src_configure \
-   $(usex debug --enable-debug=yes ' ') \
-   $(use_enable introspection) \
-   $(use_with jpeg libjpeg) \
-   $(use_with exif libexif) \
-   $(use_with lcms cms) \
-   $(use_with xmp) \
-   $(use_with svg librsvg)
-}



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/yelp/

2019-05-18 Thread Mart Raudsepp
commit: 5619f8ea27791b9aacb95b153a86b6173d6b2679
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 21:50:37 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 21:50:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5619f8ea

gnome-extra/yelp: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 gnome-extra/yelp/Manifest   |  1 -
 gnome-extra/yelp/yelp-3.22.0.ebuild | 57 -
 2 files changed, 58 deletions(-)

diff --git a/gnome-extra/yelp/Manifest b/gnome-extra/yelp/Manifest
index a52784cc026..11b137d7e55 100644
--- a/gnome-extra/yelp/Manifest
+++ b/gnome-extra/yelp/Manifest
@@ -1,2 +1 @@
-DIST yelp-3.22.0.tar.xz 1383500 BLAKE2B 
f3422c0e8370f42ce73a27d0336d6def61e8d43d9736946e65e579548cbcf9b52afacbdcaf0e8b8733dfe1dc0d0efd53ff6d73377c4e5bbaf2106b8cc42b10a7
 SHA512 
ba31c7801fc4642d9c4dcf34d4b8c02005f2ebfab4ecfe4e726685c5fb95f05311fc3a481f9b2d2e8b211395e4c932adba0e68b57d264cd1f6065402d9143d32
 DIST yelp-3.30.0.tar.xz 1393176 BLAKE2B 
a00277f7a2498d2a6c51c8375fc52293a40f111ab441bf00e25fbfa054914e4752a65b8fcb5eace74393c61431a0e5c9bcebe8b35dc8b00f96d3a3c362079f77
 SHA512 
fd6da1731e55bd796593f0ed4d566b380996d21ca0264033a5b6afaf0ba8d445a2b04a9fcbe0a1091f2244a6ee2c92814bbb86db8de59b2c230b746dbd0df564

diff --git a/gnome-extra/yelp/yelp-3.22.0.ebuild 
b/gnome-extra/yelp/yelp-3.22.0.ebuild
deleted file mode 100644
index 1a32c72c41f..000
--- a/gnome-extra/yelp/yelp-3.22.0.ebuild
+++ /dev/null
@@ -1,57 +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 autotools gnome2
-
-DESCRIPTION="Help browser for GNOME"
-HOMEPAGE="https://wiki.gnome.org/Apps/Yelp";
-
-LICENSE="GPL-2+"
-SLOT="0"
-IUSE=""
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux 
~x86-linux ~x86-solaris"
-
-RDEPEND="
-   app-arch/bzip2:=
-   >=app-arch/xz-utils-4.9:=
-   dev-db/sqlite:3=
-   >=dev-libs/glib-2.38:2
-   >=dev-libs/libxml2-2.6.5:2
-   >=dev-libs/libxslt-1.1.4
-   >=gnome-extra/yelp-xsl-3.12
-   >=net-libs/webkit-gtk-2.7.2:4
-   >=x11-libs/gtk+-3.13.3:3
-   x11-themes/adwaita-icon-theme
-"
-DEPEND="${RDEPEND}
-   >=dev-util/gtk-doc-am-1.13
-   >=dev-util/intltool-0.41.0
-   dev-util/itstool
-   >=sys-devel/gettext-0.17
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   # Fix compatibility with Gentoo's sys-apps/man
-   # https://bugzilla.gnome.org/show_bug.cgi?id=648854
-   eapply "${FILESDIR}"/${PN}-3.20.0-man-compatibility.patch
-
-   eautoreconf
-   gnome2_src_prepare
-}
-
-src_configure() {
-   gnome2_src_configure \
-   --disable-static \
-   --enable-bz2 \
-   --enable-lzma
-}
-
-src_install() {
-   gnome2_src_install
-   exeinto /usr/libexec/
-   doexe "${S}"/libyelp/yelp-groff
-}



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/evolution-ews/, gnome-extra/evolution-ews/files/

2019-05-18 Thread Mart Raudsepp
commit: c62c50b3f349dc677ff2ce8bca401c7d440a453f
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 21:51:46 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 21:52:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c62c50b3

gnome-extra/evolution-ews: remove old

Bug: https://bugs.gentoo.org/678070
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 gnome-extra/evolution-ews/Manifest |  1 -
 .../evolution-ews/evolution-ews-3.24.6.ebuild  | 66 --
 .../files/3.24.6-DESTDIR-honoring.patch| 33 ---
 .../files/3.24.6-libical3-compat.patch | 44 ---
 4 files changed, 144 deletions(-)

diff --git a/gnome-extra/evolution-ews/Manifest 
b/gnome-extra/evolution-ews/Manifest
index 98d75db9509..5e43bcb9f64 100644
--- a/gnome-extra/evolution-ews/Manifest
+++ b/gnome-extra/evolution-ews/Manifest
@@ -1,3 +1,2 @@
-DIST evolution-ews-3.24.6.tar.xz 488668 BLAKE2B 
3ec507b654042882158d2d8dfdbaae0372cc67d515501e45e327ef006cd8674f7b6e48de63f8930add9f29536d3428604f21666cfac98a764cb2eb0c20353ef3
 SHA512 
24bcaf9755b9d45d4848624b42f2b41bf1532aa836cdd26f8ab57b4dd5ac83d4375c340e0cac6f7f1b830c3ab998597893bce0fdd471ed7b0758a69367edfac1
 DIST evolution-ews-3.30.5-certificate-validation.patch.xz 6928 BLAKE2B 
eb1f070797231f14cc71cce2f19a0dc925edc0f67eca9267568c835e878d9f1567aaad7dd8a14c88abb047af8db8220239c78d62387329c9d38e5c5eda21822b
 SHA512 
2d4fa5f9c24bf92ab4e5105cc5d265907e8af760d7c969ffdf74d090795948e1f9e0e84f5d051c2a6c4324ed49cc2c23f23ebdccf67fa8baab965c612ad807e6
 DIST evolution-ews-3.30.5.tar.xz 525252 BLAKE2B 
510666cdf6bdb95e73799256daa9b4c753ed70de71798d3acb73eb55c30158a7b6b56fe7617150ec0a1f5ce20676da8a3ab4608fca06f009ea16fbc234770736
 SHA512 
6b17fd73b461e0ddd725ee87c854fca45fbc14f10922a60aff5a9a25b56728f1f16a0d3196b4bc3cba83e75655c15244c3bf2442fa17449c7466ab95371e93d7

diff --git a/gnome-extra/evolution-ews/evolution-ews-3.24.6.ebuild 
b/gnome-extra/evolution-ews/evolution-ews-3.24.6.ebuild
deleted file mode 100644
index dd21ac33a3b..000
--- a/gnome-extra/evolution-ews/evolution-ews-3.24.6.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-
-inherit cmake-utils gnome2
-
-DESCRIPTION="Evolution module for connecting to Microsoft Exchange Web 
Services"
-HOMEPAGE="https://wiki.gnome.org/Apps/Evolution";
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="test"
-
-RDEPEND="
-   dev-db/sqlite:3=
-   >=dev-libs/glib-2.46:2
-   dev-libs/libical:0=
-   >=dev-libs/libmspack-0.4
-   >=dev-libs/libxml2-2
-   >=gnome-extra/evolution-data-server-3.24.7:0=
-   >=mail-client/evolution-${PV}:2.0
-   >=net-libs/libsoup-2.42:2.4
-   >=x11-libs/gtk+-3.10:3
-"
-DEPEND="${RDEPEND}
-   dev-util/gdbus-codegen
-   >=dev-util/intltool-0.35.5
-   >=sys-devel/gettext-0.18.3
-   virtual/pkgconfig
-   test? ( net-libs/uhttpmock )
-"
-
-# Unittests fail to find libevolution-ews.so
-RESTRICT="test"
-
-PATCHES=(
-   "${FILESDIR}"/${PV}-DESTDIR-honoring.patch
-   "${FILESDIR}"/${PV}-libical3-compat.patch
-)
-
-src_prepare() {
-   gnome2_src_prepare # default from inherit order, but be explicit; 
needed for xdg_src_prepare, env_reset and co
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DWITH_MSPACK=ON
-   -DENABLE_TESTS=$(usex test)
-   )
-   cmake-utils_src_configure
-}
-
-src_compile() {
-   cmake-utils_src_compile
-}
-
-src_test() {
-   cmake-utils_src_test
-}
-
-src_install() {
-   cmake-utils_src_install
-}

diff --git a/gnome-extra/evolution-ews/files/3.24.6-DESTDIR-honoring.patch 
b/gnome-extra/evolution-ews/files/3.24.6-DESTDIR-honoring.patch
deleted file mode 100644
index c74df6bce52..000
--- a/gnome-extra/evolution-ews/files/3.24.6-DESTDIR-honoring.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 01974dad6fb73344e2852715ccfe143b3d998cbf Mon Sep 17 00:00:00 2001
-From: Milan Crha 
-Date: Mon, 2 Oct 2017 19:24:57 +0200
-Subject: [PATCH] Bug 781645 - Skip GSettings schema compile when DESTDIR is
- set
-
-(cherry picked from commit bdc3319e906479e665a9fb30fde084ecf735fa4f)

- cmake/modules/GLibTools.cmake | 8 +---
- 1 file changed, 5 insertions(+), 3 deletions(-)
-
-diff --git a/cmake/modules/GLibTools.cmake b/cmake/modules/GLibTools.cmake
-index fc8eb82..f0be558 100644
 a/cmake/modules/GLibTools.cmake
-+++ b/cmake/modules/GLibTools.cmake
-@@ -238,9 +238,11 @@ macro(add_gsettings_schemas _target _schema0)
-   if(_install_code)
-   # Compile gsettings schemas and ensure that all of them are in 
the place.
-   install(CODE
--  "execute_process(${_install_code}
--  COMMAND ${CMAKE_COMMAND} -E chdir . 
\"${GLIB_CO

[gentoo-commits] proj/portage:master commit in: lib/_emerge/, lib/portage/emaint/modules/sync/, lib/portage/dbapi/, ...

2019-05-18 Thread Zac Medico
commit: 8084f01891f4110894054f999acc21b7a3899833
Author: Zac Medico  gentoo  org>
AuthorDate: Sat May 18 21:53:31 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sat May 18 21:56:37 2019 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=8084f018

Use _safe_loop where applicable

Signed-off-by: Zac Medico  gentoo.org>

 lib/_emerge/PollScheduler.py |  6 +++---
 lib/_emerge/depgraph.py  |  4 ++--
 lib/portage/dbapi/vartree.py | 19 +++
 lib/portage/emaint/modules/sync/sync.py  |  6 +++---
 lib/portage/package/ebuild/_spawn_nofetch.py |  6 +++---
 lib/portage/package/ebuild/doebuild.py   | 19 +++
 6 files changed, 25 insertions(+), 35 deletions(-)

diff --git a/lib/_emerge/PollScheduler.py b/lib/_emerge/PollScheduler.py
index 569879b36..e90830885 100644
--- a/lib/_emerge/PollScheduler.py
+++ b/lib/_emerge/PollScheduler.py
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 try:
@@ -7,6 +7,7 @@ except ImportError:
import dummy_threading as threading
 
 import portage
+from portage.util.futures import asyncio
 from portage.util._async.SchedulerInterface import SchedulerInterface
 from portage.util._eventloop.EventLoop import EventLoop
 from portage.util._eventloop.global_event_loop import global_event_loop
@@ -38,8 +39,7 @@ class PollScheduler(object):
elif main:
self._event_loop = global_event_loop()
else:
-   self._event_loop = (portage._internal_caller and
-   global_event_loop() or EventLoop(main=False))
+   self._event_loop = asyncio._safe_loop()
self._sched_iface = SchedulerInterface(self._event_loop,
is_background=self._is_background)
 

diff --git a/lib/_emerge/depgraph.py b/lib/_emerge/depgraph.py
index 32b2d7da3..3e99ac077 100644
--- a/lib/_emerge/depgraph.py
+++ b/lib/_emerge/depgraph.py
@@ -47,6 +47,7 @@ from portage.util import cmp_sort_key, writemsg, 
writemsg_stdout
 from portage.util import ensure_dirs
 from portage.util import writemsg_level, write_atomic
 from portage.util.digraph import digraph
+from portage.util.futures import asyncio
 from portage.util._async.TaskScheduler import TaskScheduler
 from portage.util._eventloop.EventLoop import EventLoop
 from portage.util._eventloop.global_event_loop import global_event_loop
@@ -605,8 +606,7 @@ class depgraph(object):
self._select_atoms = self._select_atoms_highest_available
self._select_package = self._select_pkg_highest_available
 
-   self._event_loop = (portage._internal_caller and
-   global_event_loop() or EventLoop(main=False))
+   self._event_loop = asyncio._safe_loop()
 
self._select_atoms_parent = None
 

diff --git a/lib/portage/dbapi/vartree.py b/lib/portage/dbapi/vartree.py
index 63389f9a3..e2fce7736 100644
--- a/lib/portage/dbapi/vartree.py
+++ b/lib/portage/dbapi/vartree.py
@@ -1,4 +1,4 @@
-# Copyright 1998-2018 Gentoo Foundation
+# Copyright 1998-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 from __future__ import division, unicode_literals
@@ -58,6 +58,7 @@ from portage.exception import CommandNotFound, \
InvalidData, InvalidLocation, InvalidPackageName, \
FileNotFound, PermissionDenied, UnsupportedAPIException
 from portage.localization import _
+from portage.util.futures import asyncio
 
 from portage import abssymlink, _movefile, bsd_chflags
 
@@ -1406,8 +1407,7 @@ class vardbapi(dbapi):
 
# Do work via the global event loop, so that it can be 
used
# for indication of progress during the search (bug 
#461412).
-   event_loop = (portage._internal_caller and
-   global_event_loop() or EventLoop(main=False))
+   event_loop = asyncio._safe_loop()
root = self._vardb._eroot
 
def search_pkg(cpv, search_future):
@@ -1998,8 +1998,7 @@ class dblink(object):
if self._scheduler is None:
# We create a scheduler instance and use it to
# log unmerge output separately from merge output.
-   self._scheduler = 
SchedulerInterface(portage._internal_caller and
-   global_event_loop() or EventLoop(main=False))
+   self._scheduler = 
SchedulerInterface(asyncio._safe_loop())
if self.settings.get("PORTAGE_BACKGROUND") == "subprocess":
if self.settings.get("PORTAGE_BACKGROUND_UNMERGE") == 
"1":
self.settings["PORTAGE_BACKGROU

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

2019-05-18 Thread Jory Pratt
commit: 57eefb4b439c7e92ef5fcbac4f794950fbc46dfe
Author: Jory Pratt  gentoo  org>
AuthorDate: Sat May 18 21:38:55 2019 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Sat May 18 21:38:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57eefb4b

mail-client/thunderbird-bin: Version bump

Package-Manager: Portage-2.3.66, Repoman-2.3.12
RepoMan-Options: --force
Signed-off-by: Jory Pratt  gentoo.org>

 mail-client/thunderbird-bin/Manifest   | 110 ++---
 ...60.6.1.ebuild => thunderbird-bin-60.7.0.ebuild} |   0
 2 files changed, 55 insertions(+), 55 deletions(-)

diff --git a/mail-client/thunderbird-bin/Manifest 
b/mail-client/thunderbird-bin/Manifest
index 96c0e7ee59d..30bf57b93ba 100644
--- a/mail-client/thunderbird-bin/Manifest
+++ b/mail-client/thunderbird-bin/Manifest
@@ -56,60 +56,60 @@ DIST thunderbird-52.9.1-uk.xpi 652854 BLAKE2B 
bc5557a1df83f9b8ca0671fb7c76fe3a11
 DIST thunderbird-52.9.1-vi.xpi 637163 BLAKE2B 
95c18bab7d30dea4a8b2241290175c77a2b47e3b02346b734e728adadfa4656e4197ceb3328de4c5a12a076dcc7b4b412b0a32e3cdef41d65e471b2601f2
 SHA512 
dec44726008af723e44146abb89754f9fd0684e3cce0f0db07c05d8a100a8a862e5f7ad028c0f7d3594965ec35251e7c357ac212fb78570463bd8c18174658c9
 DIST thunderbird-52.9.1-zh-CN.xpi 593611 BLAKE2B 
441b5332a08daca64282a8d4233c7d9dc2008c80c1ebeaf4d125d5c804755509b9b67dda3423cc9b9a9af3d29b386bb621b231e426bdd89879e2e620f2106dea
 SHA512 
db0c8a338df861a43563c70fd73768a5db730ce39e7a8400de44ccada3edac1f7e3736edee5cff439df76ff17f2b4838701e95fa739f5aa04463539516a86f0b
 DIST thunderbird-52.9.1-zh-TW.xpi 595728 BLAKE2B 
8e2f6bdb65418ae837cef54f042eb8aa8ae32e952cece4e3a5a8cd13a4ac99a56495b7cca900d7ecd10d82ab77ed334a8e27eba8d49aca066bd2bb7d7182deb4
 SHA512 
24f48563439450751066d49f609ac4df9d7e31d7cea36ce8f2ad8f38b04fc4d1be99d50463700c4ea2963948b0ec1c1b5323cada6a3b1480f1debe52d50c4f1e
-DIST thunderbird-60.6.1-ar.xpi 627180 BLAKE2B 
56df555c0681214450a28d1eb126a1e0ebad308049c2f64480dbf20f39b5e62ea5600ecf81052a2c13396044ce77c6d27ad0c1fb6453c329968ccfb505de16a9
 SHA512 
76a92d776fa1efd6db1a312ad6ca016ca1cd2b70eb62ed3e309417ee02a2fb78112295d58a0d1e092cf1b36440339643a3c290dd1098c6087d08fa39515157b3
-DIST thunderbird-60.6.1-ast.xpi 559642 BLAKE2B 
77892bbbe45a04c60e62a01ca98f47aac139f282a5ac06eea62d2ce518ac6cbc8d6c3765d16f929c8792b5731feeb82491eba0ef6d0116442f1e569c0d51
 SHA512 
66130b52317bce1b92ca6d1922d56c062196bdd5e158239640e1d040830b557f13e86b1286f6ebf569a8de5491ab37b4e8d7af7c5965b2a7e5b14509235e
-DIST thunderbird-60.6.1-be.xpi 659080 BLAKE2B 
bde346f25b24c2253c7c4ef034dc8ffa1d3b742254db95a0baf9dc2a00fdd27a22f9dd7e6d32ff288ac87e6302193f7e7e1aff0e76dcff0b64ef6b9acd6093f0
 SHA512 
95a8afbf179697f819704668951907709033bb10d7212e7b6741910b39960a7c9800e70f343022185d716ef689c1c43e10718d5245c64db4cb5fb128a3b641df
-DIST thunderbird-60.6.1-bg.xpi 669318 BLAKE2B 
59f3a7930b829cbb8bf4f681ca25dc364b4291717e535700573f708749b9e7fdfe7279366038f42e4c5352406261d4ce5453c84f48f213512b6c345a657308b2
 SHA512 
7c64c7b1363c6001d854cbdec400c28d775bc8fba500e7c743eb254604d5babacee3fa1c3bd49e48a523d73a5343c07d1b7f25c4d2580f07c5f899e88eec0aee
-DIST thunderbird-60.6.1-br.xpi 580371 BLAKE2B 
1bab764801789578565226c12bc379f893d566d29cdff87e40a75d1ff187c136eef7b155bbd66ec5c652f761f3c96c62d1f5fc47d7cbc2f4b17b9f63e024bbe2
 SHA512 
0fbca5fc5a2f959d620380831c37d8400da26f9bf7f190a0e62c6fe1e92324bcfaa6b3650d2a8251faf595c67af7a639147ecce70e1040461ab0cd7ef077f8aa
-DIST thunderbird-60.6.1-ca.xpi 591971 BLAKE2B 
79bccec3825b4060ca06a81df8e70f63d6e51a12db4290b3ee81f3cd962edbfc3b3221e97e7e175a1bd2d439a5633dcc646d91bfd2a917d219294f9bb025
 SHA512 
7bd0c671582543825e1bba520cce6a86fc8fc43a163aa66fc87a2e02a27b4655c296510c069e54969e1db58666ac136c8a3f98d18b7eb6a562ad91e6f1a2de69
-DIST thunderbird-60.6.1-cs.xpi 611203 BLAKE2B 
49367316e806fa0ca831952f3135da1249826321bb8f7b2436359256862a0289f3b445b62129f86ea16ac030b9a4cca6f72a062a81244ab9a5659169b3cc4863
 SHA512 
1195c6b4aa8d80222af7c05403bc32a0b61f3fb38c99361ce1da0face6ac9346eb2817bc27b1d07008fb05aef0f680a11cc43369c6494fa37a7330356faa857f
-DIST thunderbird-60.6.1-cy.xpi 586038 BLAKE2B 
8e8285a0e2f667cb439066a9d94095aea44dfd8cf0b8d8dc33eee06011523dcb376c20a95b80ea7e9350b0df65bf8c61090cd80eb66d4be3ca693bd7d00bfb29
 SHA512 
f9e1e3e41e5eb3b2967acd6c4af53d608c3cea47a603b31b0f95980801274a9378646497b4831f8feff48d8cb5f58734a8bba8a319c7138bc23d23ac4c998d34
-DIST thunderbird-60.6.1-da.xpi 570806 BLAKE2B 
5c269f47ede5214938e3e9d11c782076dd956f37e90c957645518643247a1354e84da3e5fc7f3a7171fa1ab92c0f85f425834809f207432fd7a71cd0ba03e271
 SHA512 
be8c3e97f757e5d1a136b4426937091cbedcd8e4f8b34a0c4528e4135840c6f2bf21298547f7f0dc520cd94322d072ae06f57907104df09604fe362fc1c3bfb4
-DIST thunderbird-60.6.1-de.xpi 582575 BLAKE2B 
09f5b688993a9ac04853c7f54db678cd98a7b6d8f8fd3ab5dc9dcca38536ccde33d056ba8aa48c3ca75c213e2ec4e30ba3137d98f44d5ff367d633451578d735
 SHA512 
35aab53e32835a70b78399385332497d9f3da61837d02cec4a022e467b1898ea856c62307a9

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

2019-05-18 Thread Jory Pratt
commit: 531ff8202e10efd4f3afde6747f20ed12d5c9a79
Author: Jory Pratt  gentoo  org>
AuthorDate: Sat May 18 21:36:15 2019 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Sat May 18 21:36:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=531ff820

mail-client/thunderbird: Version bump

Package-Manager: Portage-2.3.66, Repoman-2.3.12
RepoMan-Options: --force
Signed-off-by: Jory Pratt  gentoo.org>

 mail-client/thunderbird/Manifest  |  55 ++
 mail-client/thunderbird/thunderbird-60.7.0.ebuild | 602 ++
 2 files changed, 657 insertions(+)

diff --git a/mail-client/thunderbird/Manifest b/mail-client/thunderbird/Manifest
index dd96e05457c..fddfdcd581f 100644
--- a/mail-client/thunderbird/Manifest
+++ b/mail-client/thunderbird/Manifest
@@ -1,5 +1,6 @@
 DIST firefox-52.5-patches-02.tar.xz 15084 BLAKE2B 
538dd61dbb7b290add4782b323a62f9ab4dbc57326a9a085710d207752118c504eb030a8741c1eed2e281c8d18e5453210b1905d71439250caa588137bbc37d0
 SHA512 
b80f9acaf49226cd5c2864714826c5b0e7e918e94c31ec81521b90c47edbb88ea85faa34fc22791efefbcd3867ddc413c563de58ca0f8ce21e10a3858899efce
 DIST firefox-60.6-patches-06.tar.xz 36868 BLAKE2B 
c6be625593b7b7f4f71407c1b7e6c86dc60155a90a36817065dc0aabea8885649a7c8f59f41626485487687f9b27dfb32c0905df77c9185cb12e984e2dfbc463
 SHA512 
c30a4ac2d01828452221ada9f0d39d08fe3834ead2633b509816dc6ab2b65f48998ba164a00b29751d51b9ab67e27638f572c4db7b1381fc921456ab840efcfe
+DIST firefox-60.6-patches-07.tar.xz 37404 BLAKE2B 
5516ff768bee0253131381fdba3e08785ab31bb29e44ad7f7e2956fb7624fafc9bf22f892ddbd0617e5e7d18500686a9975a60ea77d23a2853f35936cd142030
 SHA512 
3c4160e632155b0a239e22d0c1b1c701545b0f6d0915f9bdcf3b8431cee1abf650191ffafc5c3224a61279c8b1b52a80444c811a3914e16127411991c963292b
 DIST gdata-provider-3.3.tar.xz 85628 BLAKE2B 
2ccde620b181a2d8678f50d7107373886f3b2e7d1d1e8861c4e42602cedb02108d28e0bf5e5cd9e31474356b70cb99baa7870e20436bc72e25cd8a8fc1353d14
 SHA512 
ae0c0e6fd42d6e7088256ca8a4be5b0bac84b2f331b51afdc982354caef60b6ba631d4f76bfba7523000b49235c8f8c63704d90acf24b34b14696b709be9342b
 DIST gdata-provider-4.4.1.tar.xz 78728 BLAKE2B 
bfe04d714334c38c932d2186ffd859583176ef455b283534c5f8f9e1ab7dc13bdfb8c15db6007de482ab015afc2b8524aad725380bec75ee5f59ea81d6307ba9
 SHA512 
6c9b5ac41a1064bd1799d2a2f633c3064b27f1294ac3c8908cdef6c1d2eea7b602f2f7bf240b71f507fe9ad286588f030e12f49a41b3bed7bbcc99f3021369f9
 DIST lightning-5.4.9.tar.xz 1891752 BLAKE2B 
90b777814db2962ff669430cea5a29ba1612a842fbb0edaca597539e6e2d728a9d90114ec6196fe0d4758a4738a15bc0c985a345e1062cb125617eb84ecf79e1
 SHA512 
8e54865d50118154c3918d5dec5dade4fb026c24bc697ad2e360db9741509cbdbb71ba9477508a9b209be6c8a8190fb0b5e03d2e8fedcc2cae18f5c9e5a3a496
@@ -116,3 +117,57 @@ DIST thunderbird-60.6.1-vi.xpi 637187 BLAKE2B 
3ad95e1dc2626b24e7ae6d262594b3b384
 DIST thunderbird-60.6.1-zh-CN.xpi 626283 BLAKE2B 
aeeb293e5c81323c2ca873d589ec5e6e187767e3535fdb1d039c547ed7bb661a134c84a76fa971ef72e2c1acca947ca7170fa7355797f51443e32618bbec63d6
 SHA512 
b668158ff20baacfea259b17b9b0f1993d59352b3ec47fa22b5fd337c8733fe966e75142b85fb65d6de30dfb5fc6be48f3fad6decfd9f0cc467f68bf8c49c884
 DIST thunderbird-60.6.1-zh-TW.xpi 626190 BLAKE2B 
a4b79f607151e532598ac7c4a1d834e83445601a0db304b249e569b592a21c3967b8f89535a45882dac5d5c851e4ad640c955e44bef5606840356f0c280d4563
 SHA512 
934f9ea341619e0eccd83472bac778767f10f3676c2d072f42301aaa9cdc0ce683a12fd51d9981fffd6b26cc8a61da0ed13b52f9b97914b8309b082fc4f8736d
 DIST thunderbird-60.6.1.source.tar.xz 288706632 BLAKE2B 
bb72d9c92d36bcc4c0f9fe8f64b348322cb0891f3c7d2e13767e94fef7b055f2c34b55a6a81fb9ab48c2eca9f68c8bc00c0e4315937a4f736aed6956c7572ef6
 SHA512 
78e96aeb235a07ea3f53c4212a764e9b92dacd0e5d5561e454008a56d165a1e235ed05a8ecdb77efecf80f4c7f7ba2cf7a682c775047d7c175dfb50a1d9a42d2
+DIST thunderbird-60.7.0-ar.xpi 627179 BLAKE2B 
e44b3d60631cfb91354b6d3496a78f6e557389a75fda0401ccecc0d31b6afe138e0347cddc88da4b4cc251a0ea0ba0dc8f285b86f6623750cb285f05476c5477
 SHA512 
883d66276e6f1707c2f5b7f3d85f153442c0b3b631f99d1383021d42534f797ff180a762a0bbc89b42aecca8f9d72c6a1fdf38bdcd7b60fd2f3dd57c4e68ded0
+DIST thunderbird-60.7.0-ast.xpi 559643 BLAKE2B 
b695b1db5255aa8427615089cf0ac2a1e2bc2578ca5acbc67b83997a9a8f1f30a1916fd9533abd5727d9fab8f6879e7a26eece4487c9b104dd5e42fd5ded7613
 SHA512 
3c824e7aa2a24ff55a9a1d37e88e2d26438390213435dbd73444e8779576d666a11ac5fe950ed01bbe7183d6da13eb0d1177fe4db4b51ef1f91c119c7c056091
+DIST thunderbird-60.7.0-be.xpi 659079 BLAKE2B 
e941b324ec20df7e79938d16434f50da09b7fed6e3e960ca5471336290a1652be0cfc01dbb42ec3beee0863fc6c6ba45e0f0c26a90a2e18593ce6e6f85815f2c
 SHA512 
ebbe507de6468ffbf6fa5ad3a743d4f36e5f75bec71faec5e459457ab193aa5fca1f69e81f917803021ed2084ac8c7cef4e443acf472f51d2d4a0faba599ed7c
+DIST thunderbird-60.7.0-bg.xpi 669318 BLAKE2B 
5241ea2d3a875f3412398b3fbbad11d394bb89757f3e410788a5d84e6c395f4d25b7a98823ff5d43b53de531ca4c82aa90816554ea346450f884e58e3ec5de7f
 SHA512 
9d46354f830b16897bcef76513a8e0fdcb455d6538db4bb4f54ee2a3205e019fc7a8506f4

[gentoo-commits] proj/mozilla:master commit in: mail-client/thunderbird/

2019-05-18 Thread Jory Pratt
commit: 6c7b27ed5383d79b4b161697b0d5245d1945e112
Author: Jory Pratt  gentoo  org>
AuthorDate: Sat May 18 21:31:33 2019 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Sat May 18 21:31:33 2019 +
URL:https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=6c7b27ed

mail-client/thunderbird: Version bump

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Jory Pratt  gentoo.org>

 mail-client/thunderbird/Manifest   | 108 ++---
 ...-60.6.1-r1.ebuild => thunderbird-60.7.0.ebuild} |   0
 2 files changed, 54 insertions(+), 54 deletions(-)

diff --git a/mail-client/thunderbird/Manifest b/mail-client/thunderbird/Manifest
index 5e93f43..63c108c 100644
--- a/mail-client/thunderbird/Manifest
+++ b/mail-client/thunderbird/Manifest
@@ -2,57 +2,57 @@ DIST firefox-60.6-patches-07.tar.xz 37404 BLAKE2B 
5516ff768bee0253131381fdba3e08
 DIST gdata-provider-4.4.1.tar.xz 78728 BLAKE2B 
bfe04d714334c38c932d2186ffd859583176ef455b283534c5f8f9e1ab7dc13bdfb8c15db6007de482ab015afc2b8524aad725380bec75ee5f59ea81d6307ba9
 SHA512 
6c9b5ac41a1064bd1799d2a2f633c3064b27f1294ac3c8908cdef6c1d2eea7b602f2f7bf240b71f507fe9ad286588f030e12f49a41b3bed7bbcc99f3021369f9
 DIST lightning-6.2.5.tar.xz 1745976 BLAKE2B 
31e237f8d34ab2a2ac522767460467257d1f49d15fbe24f5b80dde9fb709ffafd0c0442d99c6643ce434cf7bdf0d670447f86da9fcdadc7ada6814431ef41e8a
 SHA512 
1e997bb91d484908f225cc6e971874d308e8a8e2451a3e678f8a74bcb9e360babbd1f8aebcafb3e628ef5b10eb697ee47af2bfedbc956fee71d99084c8816235
 DIST thunderbird-60.0-patches-0.tar.xz 10292 BLAKE2B 
a81ac6708389baff21aac1511c1fc372324cac8bb3ee0f3b5d2a0690b6e22ef658b41c887b99168b43c4ea4bb0947d3e48ad9b7e80db558db22c976df868
 SHA512 
1dae465676b2ff4faae08ebf69e6bac46552bc0331659bf5f444c45b026e4c8d2fc46cd3758e3bd121716aa85d5dcc56de6483919f7f0077b9d9720574dbd1aa
-DIST thunderbird-60.6.1-ar.xpi 627180 BLAKE2B 
56df555c0681214450a28d1eb126a1e0ebad308049c2f64480dbf20f39b5e62ea5600ecf81052a2c13396044ce77c6d27ad0c1fb6453c329968ccfb505de16a9
 SHA512 
76a92d776fa1efd6db1a312ad6ca016ca1cd2b70eb62ed3e309417ee02a2fb78112295d58a0d1e092cf1b36440339643a3c290dd1098c6087d08fa39515157b3
-DIST thunderbird-60.6.1-ast.xpi 559642 BLAKE2B 
77892bbbe45a04c60e62a01ca98f47aac139f282a5ac06eea62d2ce518ac6cbc8d6c3765d16f929c8792b5731feeb82491eba0ef6d0116442f1e569c0d51
 SHA512 
66130b52317bce1b92ca6d1922d56c062196bdd5e158239640e1d040830b557f13e86b1286f6ebf569a8de5491ab37b4e8d7af7c5965b2a7e5b14509235e
-DIST thunderbird-60.6.1-be.xpi 659080 BLAKE2B 
bde346f25b24c2253c7c4ef034dc8ffa1d3b742254db95a0baf9dc2a00fdd27a22f9dd7e6d32ff288ac87e6302193f7e7e1aff0e76dcff0b64ef6b9acd6093f0
 SHA512 
95a8afbf179697f819704668951907709033bb10d7212e7b6741910b39960a7c9800e70f343022185d716ef689c1c43e10718d5245c64db4cb5fb128a3b641df
-DIST thunderbird-60.6.1-bg.xpi 669318 BLAKE2B 
59f3a7930b829cbb8bf4f681ca25dc364b4291717e535700573f708749b9e7fdfe7279366038f42e4c5352406261d4ce5453c84f48f213512b6c345a657308b2
 SHA512 
7c64c7b1363c6001d854cbdec400c28d775bc8fba500e7c743eb254604d5babacee3fa1c3bd49e48a523d73a5343c07d1b7f25c4d2580f07c5f899e88eec0aee
-DIST thunderbird-60.6.1-br.xpi 580371 BLAKE2B 
1bab764801789578565226c12bc379f893d566d29cdff87e40a75d1ff187c136eef7b155bbd66ec5c652f761f3c96c62d1f5fc47d7cbc2f4b17b9f63e024bbe2
 SHA512 
0fbca5fc5a2f959d620380831c37d8400da26f9bf7f190a0e62c6fe1e92324bcfaa6b3650d2a8251faf595c67af7a639147ecce70e1040461ab0cd7ef077f8aa
-DIST thunderbird-60.6.1-ca.xpi 591971 BLAKE2B 
79bccec3825b4060ca06a81df8e70f63d6e51a12db4290b3ee81f3cd962edbfc3b3221e97e7e175a1bd2d439a5633dcc646d91bfd2a917d219294f9bb025
 SHA512 
7bd0c671582543825e1bba520cce6a86fc8fc43a163aa66fc87a2e02a27b4655c296510c069e54969e1db58666ac136c8a3f98d18b7eb6a562ad91e6f1a2de69
-DIST thunderbird-60.6.1-cs.xpi 611203 BLAKE2B 
49367316e806fa0ca831952f3135da1249826321bb8f7b2436359256862a0289f3b445b62129f86ea16ac030b9a4cca6f72a062a81244ab9a5659169b3cc4863
 SHA512 
1195c6b4aa8d80222af7c05403bc32a0b61f3fb38c99361ce1da0face6ac9346eb2817bc27b1d07008fb05aef0f680a11cc43369c6494fa37a7330356faa857f
-DIST thunderbird-60.6.1-cy.xpi 586038 BLAKE2B 
8e8285a0e2f667cb439066a9d94095aea44dfd8cf0b8d8dc33eee06011523dcb376c20a95b80ea7e9350b0df65bf8c61090cd80eb66d4be3ca693bd7d00bfb29
 SHA512 
f9e1e3e41e5eb3b2967acd6c4af53d608c3cea47a603b31b0f95980801274a9378646497b4831f8feff48d8cb5f58734a8bba8a319c7138bc23d23ac4c998d34
-DIST thunderbird-60.6.1-da.xpi 570806 BLAKE2B 
5c269f47ede5214938e3e9d11c782076dd956f37e90c957645518643247a1354e84da3e5fc7f3a7171fa1ab92c0f85f425834809f207432fd7a71cd0ba03e271
 SHA512 
be8c3e97f757e5d1a136b4426937091cbedcd8e4f8b34a0c4528e4135840c6f2bf21298547f7f0dc520cd94322d072ae06f57907104df09604fe362fc1c3bfb4
-DIST thunderbird-60.6.1-de.xpi 582575 BLAKE2B 
09f5b688993a9ac04853c7f54db678cd98a7b6d8f8fd3ab5dc9dcca38536ccde33d056ba8aa48c3ca75c213e2ec4e30ba3137d98f44d5ff367d633451578d735
 SHA512 
35aab53e32835a70b78399385332497d9f3da61837d02cec4a022e467b1898ea856c62307a943fdad48bdd0841ce50967525adc935ef3d612f1931ab86336f95
-

[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-getting-started-docs/

2019-05-18 Thread Mart Raudsepp
commit: 59612e8ee4575067650647dc7d7e69463e0b2ad0
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 20:53:02 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 21:23:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59612e8e

gnome-extra/gnome-getting-started-docs: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 gnome-extra/gnome-getting-started-docs/Manifest   |  1 -
 .../gnome-getting-started-docs-3.24.1.ebuild  | 19 ---
 2 files changed, 20 deletions(-)

diff --git a/gnome-extra/gnome-getting-started-docs/Manifest 
b/gnome-extra/gnome-getting-started-docs/Manifest
index c4dc6291094..1421ed1b2f7 100644
--- a/gnome-extra/gnome-getting-started-docs/Manifest
+++ b/gnome-extra/gnome-getting-started-docs/Manifest
@@ -1,2 +1 @@
-DIST gnome-getting-started-docs-3.24.1.tar.xz 119137908 BLAKE2B 
628dab2c9a938f3b265855443e794c1575586d0579692e1a21bae77dd497989cd061cff4dd97090f11719916f24742eedfc81bacb4fdf31536eca78cdd221d6f
 SHA512 
7d44ac4030c3459014f391d10699b48f9be789c196900e29a56574e98698ffe494d3344a7c99f04291c49093827385093877b9047549cc5ff4d352d39297387d
 DIST gnome-getting-started-docs-3.30.0.tar.xz 110244480 BLAKE2B 
91acfa8731a60bb98c88ffb23bf46ba5bc83feee51ed8a6ae75d5e7c7c5695db9fe715d54ffaa7b1cbe2fbc9c0dcae86b577f81deec6acb7bb57d92f788f
 SHA512 
15d7db0aba5c4ce056700ff6f1d5c23ad5cad5c113ed9c83aa0e569262d6c489bb48eedc697d25e25d3cfae7df3b8da039b84c612b9eba9346b4b4c2b4494952

diff --git 
a/gnome-extra/gnome-getting-started-docs/gnome-getting-started-docs-3.24.1.ebuild
 
b/gnome-extra/gnome-getting-started-docs/gnome-getting-started-docs-3.24.1.ebuild
deleted file mode 100644
index 6e1a40b324b..000
--- 
a/gnome-extra/gnome-getting-started-docs/gnome-getting-started-docs-3.24.1.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="Help a new user get started in GNOME"
-HOMEPAGE="https://help.gnome.org/";
-
-LICENSE="CC-BY-SA-3.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm x86"
-IUSE=""
-
-RDEPEND="gnome-extra/gnome-user-docs"
-DEPEND="app-text/yelp-tools"
-
-# This ebuild does not install any binaries
-RESTRICT="binchecks strip"



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-user-docs/

2019-05-18 Thread Mart Raudsepp
commit: 80652d5ec02f3632ac09292de18eb7ff9f563215
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 21:03:12 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 21:24:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80652d5e

gnome-extra/gnome-user-docs: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 gnome-extra/gnome-user-docs/Manifest   |  1 -
 .../gnome-user-docs/gnome-user-docs-3.24.2.ebuild  | 40 --
 2 files changed, 41 deletions(-)

diff --git a/gnome-extra/gnome-user-docs/Manifest 
b/gnome-extra/gnome-user-docs/Manifest
index 4f8ecdd5091..cb62df90e59 100644
--- a/gnome-extra/gnome-user-docs/Manifest
+++ b/gnome-extra/gnome-user-docs/Manifest
@@ -1,2 +1 @@
-DIST gnome-user-docs-3.24.2.tar.xz 14167700 BLAKE2B 
deec09954a9c3bf915c86030d13df70efec81090c74744fb98192a1e9727cab2bd54ee608f1f3bddcf8707f6a3a6e1ddaeffdc5175e0d0f2ad4ab2e890036330
 SHA512 
7725ceb6d079d244f9f764c54b2d374588a808c8f1b2e70f655e1d3e3dc957cab3a8edcfe3d000c5d4520e9d9da031585a20ade978b66753ef3b2c912230a87d
 DIST gnome-user-docs-3.30.2.tar.xz 15707236 BLAKE2B 
4a0f83078c8a0360719a89f8a2a0d79d564452fe65e7037479288730c5155be1b26901c10863e9b35727c23458b7015ade326db6a6f78fa95b8f541b3dc5b361
 SHA512 
43f2d12a1f5ca03e5af24f599f688f1ed849d8466cb12f4b67c36601a1b6e236bd98e505ebcde677ae80be8cca71b32996bcb87715fa50c30cc5729ffc957b33

diff --git a/gnome-extra/gnome-user-docs/gnome-user-docs-3.24.2.ebuild 
b/gnome-extra/gnome-user-docs/gnome-user-docs-3.24.2.ebuild
deleted file mode 100644
index e4ff024c6df..000
--- a/gnome-extra/gnome-user-docs/gnome-user-docs-3.24.2.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="GNOME end user documentation"
-HOMEPAGE="https://git.gnome.org/browse/gnome-user-docs";
-
-LICENSE="CC-BY-3.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
-IUSE="test"
-
-RDEPEND=""
-DEPEND="
-   test? ( dev-libs/libxml2 )
-"
-# eautoreconf requires:
-#  app-text/yelp-tools
-# rebuilding translations requires:
-#  app-text/yelp-tools
-#  dev-util/gettext
-
-# This ebuild does not install any binaries
-RESTRICT="binchecks strip"
-
-src_configure() {
-   # itstool is only needed for rebuilding translations
-   # xmllint is only needed for tests
-   gnome2_src_configure \
-   $(usex test "" XMLLINT=$(type -P true)) \
-   ITSTOOL=$(type -P true)
-}
-
-src_compile() {
-   # Do not compile; "make all" with unset LINGUAS rebuilds all 
translations,
-   # which can take > 2 hours on a Core i7.
-   return
-}



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-clocks/

2019-05-18 Thread Mart Raudsepp
commit: a49de11a0d2eef7bf161564baae7a999636cffb4
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 20:50:10 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 21:23:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a49de11a

gnome-extra/gnome-clocks: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 gnome-extra/gnome-clocks/Manifest  |  1 -
 .../gnome-clocks/gnome-clocks-3.24.0.ebuild| 36 --
 2 files changed, 37 deletions(-)

diff --git a/gnome-extra/gnome-clocks/Manifest 
b/gnome-extra/gnome-clocks/Manifest
index c4784a555a5..7337e3d4a0b 100644
--- a/gnome-extra/gnome-clocks/Manifest
+++ b/gnome-extra/gnome-clocks/Manifest
@@ -1,2 +1 @@
-DIST gnome-clocks-3.24.0.tar.xz 954576 BLAKE2B 
848303243391bfbc5ae2fcd8bfb4f3320ccb8465098d95379aaecf856341f05171964eda1a0a8637e04b5330cee6343003ec25063157f6d8ba0abcc22aa3f6ef
 SHA512 
f29a61ac9634008fa918f9f08c6e24c93816c0077687bd2feff3ef2c62c0db475076de5dbc1e223027627e985c4e4362f0cdf1a47821356c0a9ef9c4cd672de1
 DIST gnome-clocks-3.30.1.tar.xz 798904 BLAKE2B 
58ffb56191cfb07912c1575291f752aadb5549ae5e369cb4c8904756d1ab5e666591ead6756992090921741abbfcf751e2d3ff76ed82d688caf135c7c091c888
 SHA512 
62fc817a3ea3155b650865f6d5056ba3370da319389206d921e315be878159ff26d0b3063a2c31c85af7447ead10c5fb62bf1dfe4613e2bfac1d01b0ca7b8b3c

diff --git a/gnome-extra/gnome-clocks/gnome-clocks-3.24.0.ebuild 
b/gnome-extra/gnome-clocks/gnome-clocks-3.24.0.ebuild
deleted file mode 100644
index 7740ca668b4..000
--- a/gnome-extra/gnome-clocks/gnome-clocks-3.24.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-VALA_MIN_API_VERSION="0.24"
-
-inherit gnome2 vala
-
-DESCRIPTION="Clocks application for GNOME"
-HOMEPAGE="https://wiki.gnome.org/Apps/Clocks";
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND="
-   >=app-misc/geoclue-2.3.1:2.0
-   >=dev-libs/glib-2.44:2
-   >=dev-libs/libgweather-3.13.91:2=
-   >=gnome-base/gnome-desktop-3.7.90:3=
-   >=media-libs/gsound-0.98
-   >=sci-geosciences/geocode-glib-0.99.4
-   >=x11-libs/gtk+-3.19.8:3
-"
-DEPEND="${RDEPEND}
-   $(vala_depend)
-   dev-util/itstool
-   >=sys-devel/gettext-0.19.8
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   vala_src_prepare
-   gnome2_src_prepare
-}



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/libgda/files/, gnome-extra/libgda/

2019-05-18 Thread Mart Raudsepp
commit: 0c4a13140429bfc8212ecab61fdd64898ef85c86
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 21:07:00 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 21:24:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c4a1314

gnome-extra/libgda: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 gnome-extra/libgda/Manifest|   1 -
 .../libgda/files/libgda-5.2.4-vala-check.patch |  35 
 gnome-extra/libgda/libgda-5.2.4-r2.ebuild  | 182 -
 gnome-extra/libgda/libgda-5.2.4-r3.ebuild  | 182 -
 4 files changed, 400 deletions(-)

diff --git a/gnome-extra/libgda/Manifest b/gnome-extra/libgda/Manifest
index ab2677fd061..bf631978e8b 100644
--- a/gnome-extra/libgda/Manifest
+++ b/gnome-extra/libgda/Manifest
@@ -1,2 +1 @@
-DIST libgda-5.2.4.tar.xz 12320228 BLAKE2B 
567b82934e9fe05abdd7405f17c3e8db1a335698236aed069c66037bb387f34adfc41eae7663d8cedb1ba97d2b54afda15280d745c574e5b28cb1856ff8376b1
 SHA512 
90449795a64136389c26ee4bbdbd5c1330d441e6c11ff15eff83d0ee39c4ce3abd686222aaa468995496ba1417c0fbc963898107f1806d80648cdc939d3c87cc
 DIST libgda-5.2.8.tar.xz 12506208 BLAKE2B 
7174aa862f04ec6c73fe98560914ee307afe75b9713adad70fa7dedf97fd4ddb79c98ad1e9a8919218f7453014d8e71e42730e168fae7c6ca0dc58ae99b0558e
 SHA512 
6512d08df072dfc10837b71b2369ab538fa8bf0cdac51ecbb738a138f5b765f030fc7a88b14232eaab2724af8e749898da146bb63969983d3bcfeb11bc22aece

diff --git a/gnome-extra/libgda/files/libgda-5.2.4-vala-check.patch 
b/gnome-extra/libgda/files/libgda-5.2.4-vala-check.patch
deleted file mode 100644
index c586d49356d..000
--- a/gnome-extra/libgda/files/libgda-5.2.4-vala-check.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From e72c59062f39e89569524f4556cbddb8d00119f4 Mon Sep 17 00:00:00 2001
-From: Vivien Malerba 
-Date: Sun, 7 Feb 2016 20:49:07 +0100
-Subject: Re-correction for bug #761424
-
-Automatic detection of API version

- configure.ac | 8 
- 1 file changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 152f676..9898a32 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -571,13 +571,13 @@ fi
- vala_api="No Vala bindings will be generated"
- if test "x$enable_vala" = "xyes"
- then
--  AM_PROG_VALAC([0.26.0])
-+  AM_PROG_VALAC()
-   if test "x$VALA_API_VERSION" = "x"
-   then
--  VAPIGEN_CHECK([0.26.0],[0.26],,no)
--  vala_api="0.26 (Default)"
-+  VAPIGEN_CHECK(,,,no)
-+  vala_api="`pkg-config --modversion vapigen` (Default)"
-   else
--  VAPIGEN_CHECK([0.26.0],$VALA_API_VERSION,,no)
-+  VAPIGEN_CHECK(,$VALA_API_VERSION,,no)
-   vala_api=$VALA_API_VERSION
-   fi
- else
--- 
-cgit v0.12
-

diff --git a/gnome-extra/libgda/libgda-5.2.4-r2.ebuild 
b/gnome-extra/libgda/libgda-5.2.4-r2.ebuild
deleted file mode 100644
index b45f3537357..000
--- a/gnome-extra/libgda/libgda-5.2.4-r2.ebuild
+++ /dev/null
@@ -1,182 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-PYTHON_COMPAT=( python2_7 )
-VALA_USE_DEPEND="vapigen"
-
-inherit autotools db-use eutils flag-o-matic gnome2 java-pkg-opt-2 
python-single-r1 vala
-
-DESCRIPTION="GNOME database access library"
-HOMEPAGE="http://www.gnome-db.org/";
-LICENSE="GPL-2+ LGPL-2+"
-
-IUSE="berkdb canvas debug firebird gnome-keyring gtk graphviz http 
+introspection json ldap mdb mysql oci8 postgres reports sourceview ssl vala"
-REQUIRED_USE="
-   reports? ( ${PYTHON_REQUIRED_USE} )
-   canvas? ( gtk )
-   graphviz? ( gtk )
-   sourceview? ( gtk )
-   vala? ( introspection )
-"
-# firebird license is not GPL compatible
-
-SLOT="5/4" # subslot = libgda-5.0 soname version
-KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
-
-RDEPEND="
-   app-text/iso-codes
-   >=dev-libs/glib-2.32:2
-   >=dev-libs/libxml2-2
-   dev-libs/libxslt
-   sys-libs/readline:0=
-   sys-libs/ncurses:0=
-   berkdb? ( sys-libs/db:* )
-   firebird? ( dev-db/firebird )
-   gnome-keyring? ( app-crypt/libsecret )
-   gtk? (
-   >=x11-libs/gtk+-3.0.0:3
-   canvas? ( x11-libs/goocanvas:2.0= )
-   sourceview? ( x11-libs/gtksourceview:3.0 )
-   graphviz? ( media-gfx/graphviz )
-   )
-   http? ( >=net-libs/libsoup-2.24:2.4 )
-   introspection? ( >=dev-libs/gobject-introspection-1.30:= )
-   json? ( dev-libs/json-glib )
-   ldap? ( net-nds/openldap:= )
-   mdb? ( >app-office/mdbtools-0.5:= )
-   mysql? ( virtual/mysql:= )
-   postgres? ( dev-db/postgresql:= )
-   reports? (
-   ${PYTHON_DEPS}
-   dev-java/fop
-   dev-python/reportlab )
-   ssl? ( =dev-db/sqlite-3.6.22:3=
-   vala? ( dev-l

[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-power-manager/

2019-05-18 Thread Mart Raudsepp
commit: 880134d89c927478048900551a028ccf56f8b887
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 20:54:36 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 21:24:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=880134d8

gnome-extra/gnome-power-manager: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 gnome-extra/gnome-power-manager/Manifest   |  1 -
 .../gnome-power-manager-3.24.0.ebuild  | 54 --
 2 files changed, 55 deletions(-)

diff --git a/gnome-extra/gnome-power-manager/Manifest 
b/gnome-extra/gnome-power-manager/Manifest
index 8a66b816276..4c7bff34f8b 100644
--- a/gnome-extra/gnome-power-manager/Manifest
+++ b/gnome-extra/gnome-power-manager/Manifest
@@ -1,2 +1 @@
-DIST gnome-power-manager-3.24.0.tar.xz 554616 BLAKE2B 
f39ce93943426fe8e833b48b5e7e4a02645eb3ffd28aa9e3e8c515d159950409ae9904b2683419d0087b3ced8e30f1c42b4dd9c511100041952449aef0b18e0f
 SHA512 
fbbac0f5176382ccd13497cd80792d10ca4bc39fa4cc0585543f5458ba0f256ffb66b7ebd82667e482ba33cf2b6f3ef6a64bf2f55ac224e1d9ab2e2b7491e4e0
 DIST gnome-power-manager-3.30.0.tar.xz 380820 BLAKE2B 
9d39df24854f649ab3b40fcf454c7be73d93e3e99050b93ec5dfb86760e27055f856918e5fb7d7b53472a4062cf9b2039a519130bb5d887126a69326d9392737
 SHA512 
ed0e2a20bd8979fd9064cea9f4485da832eb44a2c727e39cde5ca9f9e2eb75a37e3d1b5a2181d9c666c19b1b300cbc62cd5f9e2c3f36ee4a4dfc3e1537a10329

diff --git a/gnome-extra/gnome-power-manager/gnome-power-manager-3.24.0.ebuild 
b/gnome-extra/gnome-power-manager/gnome-power-manager-3.24.0.ebuild
deleted file mode 100644
index 5e67d409645..000
--- a/gnome-extra/gnome-power-manager/gnome-power-manager-3.24.0.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2 virtualx
-
-DESCRIPTION="GNOME power management service"
-HOMEPAGE="https://projects.gnome.org/gnome-power-manager/";
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="test"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
-
-COMMON_DEPEND="
-   >=dev-libs/glib-2.45.8:2
-   >=x11-libs/gtk+-3.3.8:3
-   >=x11-libs/cairo-1
-   >=sys-power/upower-0.99:=
-"
-RDEPEND="${COMMON_DEPEND}
-   x11-themes/adwaita-icon-theme
-"
-DEPEND="${COMMON_DEPEND}
-   app-text/docbook-sgml-dtd:4.1
-   app-text/docbook-sgml-utils
-   dev-libs/appstream-glib
-   >=sys-devel/gettext-0.19.7
-   x11-base/xorg-proto
-   virtual/pkgconfig
-   test? ( sys-apps/dbus )
-"
-
-# docbook-sgml-utils and docbook-sgml-dtd-4.1 used for creating man pages
-# (files under ${S}/man).
-# docbook-xml-dtd-4.4 and -4.1.2 are used by the xml files under ${S}/docs.
-
-src_prepare() {
-   # Drop debugger CFLAGS from configure
-   # Touch configure.ac only if running eautoreconf, otherwise
-   # maintainer mode gets triggered -- even if the order is correct
-   sed -e 's:^CPPFLAGS="$CPPFLAGS -g"$::g' \
-   -i configure || die "debugger sed failed"
-   gnome2_src_prepare
-}
-
-src_configure() {
-   gnome2_src_configure \
-   $(use_enable test tests)
-}
-
-src_test() {
-   virtx emake check
-}



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-tweaks/, gnome-extra/gnome-tweaks/files/

2019-05-18 Thread Mart Raudsepp
commit: e488762c18ee7cd2f45c78c62ace45608f1231b5
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 21:02:15 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 21:24:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e488762c

gnome-extra/gnome-tweaks: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 gnome-extra/gnome-tweaks/Manifest  |  1 -
 .../files/3.10.1-gentoo-cursor-themes.patch| 26 
 .../gnome-tweaks/gnome-tweaks-3.24.1.ebuild| 72 --
 3 files changed, 99 deletions(-)

diff --git a/gnome-extra/gnome-tweaks/Manifest 
b/gnome-extra/gnome-tweaks/Manifest
index 335a73cb39b..5ff4a3f6c66 100644
--- a/gnome-extra/gnome-tweaks/Manifest
+++ b/gnome-extra/gnome-tweaks/Manifest
@@ -1,2 +1 @@
-DIST gnome-tweak-tool-3.24.1.tar.xz 261872 BLAKE2B 
ce62ad4357d8f8660bbbdcd81a1190f21cf7a832853aba404bc087b8150bff8f6451902102dfe030a6eec5ce658d31f176e0d32055f25e69203fda65ce092120
 SHA512 
b76e9a46de07d12b586fb7326fcd51fff1565b831fe8f4d1ab4bbefe36450b5d2cb7c7a168922960894ba57ac9bd412afa61973c034bd1b5f2b45c52eb34adcd
 DIST gnome-tweaks-3.30.2.tar.xz 281820 BLAKE2B 
cd980f77a05d74f556fe461f1dc35122efb23ab0885b84ddb71c873dd6cb424d4ae213d393b7555f8baed8eb5fb3df8afa7d9b4cb92d772ba9eed59892871bfe
 SHA512 
183df35e8051aa1fba54ca45aca64d665f28d92c56879ff6fa60adf3809a05676db15d97d7023bf5ffb9bac33df259eb62742bee3cebeb87d8ffa39679b2c078

diff --git a/gnome-extra/gnome-tweaks/files/3.10.1-gentoo-cursor-themes.patch 
b/gnome-extra/gnome-tweaks/files/3.10.1-gentoo-cursor-themes.patch
deleted file mode 100644
index b65a713277b..000
--- a/gnome-extra/gnome-tweaks/files/3.10.1-gentoo-cursor-themes.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From c848d45b0697a6ac3661dbf3fbd356864e8b4e24 Mon Sep 17 00:00:00 2001
-From: Sobhan Mohammadpour 
-Date: Tue, 15 Jan 2013 17:23:12 +0330
-Subject: [PATCH] gentoo-cursor-themes
-

- gtweak/tweaks/tweak_interface.py | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/gtweak/tweaks/tweak_group_interface.py 
b/gtweak/tweaks/tweak_group_interface.py
-index b20a41c..2125d59 100644
 a/gtweak/tweaks/tweak_group_interface.py
-+++ b/gtweak/tweaks/tweak_group_interface.py
-@@ -69,7 +69,8 @@ class CursorThemeSwitcher(GSettingsComboTweak):
- **options)
- 
- def _get_valid_cursor_themes(self):
--dirs = ( os.path.join(gtweak.DATA_DIR, "icons"),
-+dirs = ( os.path.join(gtweak.DATA_DIR, "cursors", "xorg-x11"),
-+ os.path.join(gtweak.DATA_DIR, "icons"),
-  os.path.join(GLib.get_user_data_dir(), "icons"),
-  os.path.join(os.path.expanduser("~"), ".icons"))
- valid = walk_directories(dirs, lambda d:
--- 
-1.8.1
-

diff --git a/gnome-extra/gnome-tweaks/gnome-tweaks-3.24.1.ebuild 
b/gnome-extra/gnome-tweaks/gnome-tweaks-3.24.1.ebuild
deleted file mode 100644
index feea9ecd2d8..000
--- a/gnome-extra/gnome-tweaks/gnome-tweaks-3.24.1.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-PYTHON_COMPAT=( python2_7 )
-GNOME_ORG_MODULE="gnome-tweak-tool"
-
-inherit gnome2 python-r1
-
-DESCRIPTION="Tool to customize GNOME 3 options"
-HOMEPAGE="https://wiki.gnome.org/Apps/Tweaks";
-
-LICENSE="GPL-2+"
-SLOT="0"
-
-IUSE=""
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 x86"
-
-COMMON_DEPEND="
-   ${PYTHON_DEPS}
-   dev-libs/glib:2[dbus]
-   >=dev-python/pygobject-3.10.2:3[${PYTHON_USEDEP}]
-   >=gnome-base/gsettings-desktop-schemas-3.23.3
-"
-# g-s-d, gnome-desktop, gnome-shell etc. needed at runtime for the gsettings 
schemas
-RDEPEND="${COMMON_DEPEND}
-   >=gnome-base/gnome-desktop-3.6.0.1:3=[introspection]
-   >=x11-libs/gtk+-3.12:3[introspection]
-
-   net-libs/libsoup:2.4[introspection]
-   x11-libs/libnotify[introspection]
-
-   >=gnome-base/gnome-settings-daemon-3
-   >=gnome-base/gnome-shell-3.24
-   >=gnome-base/nautilus-3
-   

[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-user-share/

2019-05-18 Thread Mart Raudsepp
commit: df4181de416c6d8734b2cac26c5c3f58a8cf40ed
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 21:03:47 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 21:24:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df4181de

gnome-extra/gnome-user-share: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 gnome-extra/gnome-user-share/Manifest  |  1 -
 .../gnome-user-share-3.18.3.ebuild | 50 --
 2 files changed, 51 deletions(-)

diff --git a/gnome-extra/gnome-user-share/Manifest 
b/gnome-extra/gnome-user-share/Manifest
index d5c27e81d6c..45150bf3b9e 100644
--- a/gnome-extra/gnome-user-share/Manifest
+++ b/gnome-extra/gnome-user-share/Manifest
@@ -1,2 +1 @@
-DIST gnome-user-share-3.18.3.tar.xz 347528 BLAKE2B 
32c3a5aa84438e8bc276c6cf21fb35325b2b2c31f73bd301f73bdfbb91d90bcedf66c02b249dc047fb23eae2b7740097465c3a4164113d05e6811fec6f719d6c
 SHA512 
3f8da3cc6f73aa612883252982fac0c53e35184ac0d31f210b525fd04dd8dbffb3f7be4c331309ea9df6a712000eb2d29f75224505c822cffc11b3d435e17991
 DIST gnome-user-share-3.28.0.tar.xz 393516 BLAKE2B 
f17efe9b763b14bb67837d65973f1125ac2bd9d49dabc359aca6fa040cb32d656d71236e306b4e97b39e49e07198aff4b3f456d62937baeff01b50d1a5ccfb67
 SHA512 
1b7ca604fec69402312f801d5b7117d99cb82bca674a4e4d279bda8ba9ca96c70dfd2c815d571094c1a95eb0e9084cd560445257dce194f6050d68c17ae4bb1d

diff --git a/gnome-extra/gnome-user-share/gnome-user-share-3.18.3.ebuild 
b/gnome-extra/gnome-user-share/gnome-user-share-3.18.3.ebuild
deleted file mode 100644
index 1004a4eb84c..000
--- a/gnome-extra/gnome-user-share/gnome-user-share-3.18.3.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-
-inherit gnome2 multilib systemd
-
-DESCRIPTION="Personal file sharing for the GNOME desktop"
-HOMEPAGE="https://git.gnome.org/browse/gnome-user-share";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-# FIXME: could libnotify be made optional ?
-# FIXME: selinux automagic support
-RDEPEND="
-   >=dev-libs/glib-2.28:2
-   >=x11-libs/gtk+-3:3
-   >=gnome-base/nautilus-2.91.7
-   media-libs/libcanberra[gtk3]
-   >=www-apache/mod_dnssd-0.6
-   
>=www-servers/apache-2.2[apache2_modules_dav,apache2_modules_dav_fs,apache2_modules_authn_file,apache2_modules_auth_digest,apache2_modules_authz_groupfile]
-   >=x11-libs/libnotify-0.7:=
-   sys-apps/systemd
-"
-DEPEND="${RDEPEND}
-   !=dev-util/intltool-0.35
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-PATCHES=(
-   # Upstream forces to use prefork because of Fedora defaults, but
-   # that is problematic for us (bug #551012)
-   # https://bugzilla.gnome.org/show_bug.cgi?id=750525#c2
-   "${FILESDIR}"/${PN}-3.18.1-no-prefork.patch
-)
-
-src_configure() {
-   gnome2_src_configure \
-   --with-httpd=apache2 \
-   --with-modules-path=/usr/$(get_libdir)/apache2/modules/ \
-   --with-systemduserunitdir="$(systemd_get_userunitdir)"
-}



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-calendar/files/, gnome-extra/gnome-calendar/

2019-05-18 Thread Mart Raudsepp
commit: 9518de0d7729e96f95361dabe05a53bd6dc87f9d
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 20:48:38 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 21:23:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9518de0d

gnome-extra/gnome-calendar: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 gnome-extra/gnome-calendar/Manifest|   1 -
 .../files/3.24.3-libical3-compat.patch |  49 -
 .../files/3.24.3-week-grid-fixes.patch | 112 -
 .../gnome-calendar/gnome-calendar-3.24.3.ebuild|  43 
 4 files changed, 205 deletions(-)

diff --git a/gnome-extra/gnome-calendar/Manifest 
b/gnome-extra/gnome-calendar/Manifest
index 1cd1496b408..2d06a1153da 100644
--- a/gnome-extra/gnome-calendar/Manifest
+++ b/gnome-extra/gnome-calendar/Manifest
@@ -1,2 +1 @@
-DIST gnome-calendar-3.24.3.tar.xz 2425292 BLAKE2B 
cb859e229b040dd1ef34643e7aac5ddc1d0368d0bc6912effd73bd2c95ecab458294fef866f5718e108ef36f03bfc0dcb5a1140a571b3dc35128125ea8ff8e19
 SHA512 
979a369a5c5fc7d4621ff1ae69dfb1b53002cc014b2f1c480c0122da5bf4282c1928df9dcdb3528352e9589099184ab51f96d1a065e346be8e639aa5fc96ac67
 DIST gnome-calendar-3.30.1.tar.xz 2443936 BLAKE2B 
1826488ee03742a9350e589954723264318450d50fa7175955deee8fb3b3bbf2a29fbc6106644bccc062dd45bd9a16e7f40e2928c488bc333ba35d00f2411f25
 SHA512 
acb428f123fe716b41c4e828213b1106296731b5aa99607838219b8e6c802b22d3481eaa91429cfb34bc3d098344f406ea86c5e2f794f26414ba05bf0189fe29

diff --git a/gnome-extra/gnome-calendar/files/3.24.3-libical3-compat.patch 
b/gnome-extra/gnome-calendar/files/3.24.3-libical3-compat.patch
deleted file mode 100644
index 5d0160e9773..000
--- a/gnome-extra/gnome-calendar/files/3.24.3-libical3-compat.patch
+++ /dev/null
@@ -1,49 +0,0 @@
-From ad404c26ed22690d842a01df3e10a851a198a0b7 Mon Sep 17 00:00:00 2001
-From: Caio Marcelo de Oliveira Filho 
-Date: Wed, 15 Nov 2017 13:09:54 -0800
-Subject: [PATCH] utils: simplify gcal_dup_icaltime
-
-Instead of copying member by member, copy the entire struct contents.
-It works as before, but doesn't depend on the member names.
-
-This fixes compiling gnome-calendar with libical 3.0.0, since the
-struct icaltimetype had one of the members removed (is_utc).
-
-https://bugzilla.gnome.org/show_bug.cgi?id=790072

- src/gcal-utils.c | 19 +--
- 1 file changed, 1 insertion(+), 18 deletions(-)
-
-diff --git a/src/gcal-utils.c b/src/gcal-utils.c
-index c80ba53a..4558f540 100644
 a/src/gcal-utils.c
-+++ b/src/gcal-utils.c
-@@ -199,24 +199,7 @@ datetime_is_date (GDateTime *dt)
- icaltimetype*
- gcal_dup_icaltime (const icaltimetype *date)
- {
--  icaltimetype *new_date;
--
--  if (date == NULL)
--return NULL;
--
--  new_date= g_new (icaltimetype, 1);
--  new_date->year = date->year;
--  new_date->month = date->month;
--  new_date->day = date->day;
--  new_date->hour = date->hour;
--  new_date->minute = date->minute;
--  new_date->second = date->second;
--  new_date->is_utc = date->is_utc;
--  new_date->is_date = date->is_date;
--  new_date->is_daylight = date->is_daylight;
--  new_date->zone = date->zone;
--
--  return new_date;
-+  return g_memdup (date, sizeof (icaltimetype));
- }
- 
- /**
--- 
-2.15.1
-

diff --git a/gnome-extra/gnome-calendar/files/3.24.3-week-grid-fixes.patch 
b/gnome-extra/gnome-calendar/files/3.24.3-week-grid-fixes.patch
deleted file mode 100644
index e382029ceeb..000
--- a/gnome-extra/gnome-calendar/files/3.24.3-week-grid-fixes.patch
+++ /dev/null
@@ -1,112 +0,0 @@
-From 9f4bc90761bb9eb3b3e8bdc9ec6b42f44f02053e Mon Sep 17 00:00:00 2001
-From: Abdullahi Usman
-Date: Mon, 10 Jul 2017 11:43:36 +0100
-Subject: week-grid : seperate week's events overlaps.
-
-The week view can display mutilple events that can partly or fully span
-same time ranges.
-
-But week view fails to make correct assumption about the width of events when
-two or more events span some time ranges in which these events also span some
-time ranges with other events, and whereby the number of these other events
-that they span time ranges with does not coincide with the number of the events
-that the other event also span.  Week view ended up calculating cells that
-appears horizontally jointed up.  Also int16_compare() does not dereference the
-pointer from g_ptr_array_sort() correctly and that makes it sort events
-incorrectly and hence making events appears vertically jointed up.
-
-If an event have other events in which they span some time, we calcuate its 
width
-by taking into consideration of all the events that the other event may span
-time with.  The event that has the higher number of time spans is considered.
-We also save and retrieve our positions using UINT_TO_POINTER and 
POINTER_TO_UINT()
-respectively, and then dereference the pointer from g_ptr_array_sort() 
correctly.
-
-https://bugzilla.gnome.org/show_bug.cgi?

[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-system-monitor/

2019-05-18 Thread Mart Raudsepp
commit: 2f3f71d81c5e2baca046d72701bc7674ff456b80
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 21:01:08 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 21:24:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f3f71d8

gnome-extra/gnome-system-monitor: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 gnome-extra/gnome-system-monitor/Manifest  |  1 -
 .../gnome-system-monitor-3.24.0.ebuild | 40 --
 2 files changed, 41 deletions(-)

diff --git a/gnome-extra/gnome-system-monitor/Manifest 
b/gnome-extra/gnome-system-monitor/Manifest
index 9ac4867ca01..18f781a7a4d 100644
--- a/gnome-extra/gnome-system-monitor/Manifest
+++ b/gnome-extra/gnome-system-monitor/Manifest
@@ -1,2 +1 @@
-DIST gnome-system-monitor-3.24.0.tar.xz 930956 BLAKE2B 
f08b6da2ee9d45d232f1d1f019b6844f6fcf50baf85944d240611fbc0794cce6755d6b7daf275f4d97686558fc0f2525a8700fda473b576f8d5d41f66f118275
 SHA512 
4155d9f130cc1e38d32b76d10ca91056d82b90ca555f9ded26acfd1ef018b92163b0cc2256861b8e166b3bfa7eadc6c900aa9c79fd0c859045197ab2eaf3dc9f
 DIST gnome-system-monitor-3.30.0.tar.xz 762004 BLAKE2B 
cf0ef6dde12a34f537e632dca6b45fc16ab49e92aaf49d2e945dded25b5cfbd855506368b82a0f840808760ce563f54fd8683f5a35652a5e10cdb4972ea61864
 SHA512 
c33dc510b15019de745a88d3eef12b5a2b19048bda22878988f22c4482f6a26ab20f5913f3104f2cb1b9566f7148a08b53d4e548f71345363273c51840fa2c8a

diff --git 
a/gnome-extra/gnome-system-monitor/gnome-system-monitor-3.24.0.ebuild 
b/gnome-extra/gnome-system-monitor/gnome-system-monitor-3.24.0.ebuild
deleted file mode 100644
index e4ba34a5b53..000
--- a/gnome-extra/gnome-system-monitor/gnome-system-monitor-3.24.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="The Gnome System Monitor"
-HOMEPAGE="https://help.gnome.org/users/gnome-system-monitor/";
-
-LICENSE="GPL-2+"
-SLOT="0"
-IUSE="systemd X"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
-
-RDEPEND="
-   >=dev-libs/glib-2.37.3:2
-   >=gnome-base/libgtop-2.28.2:2=
-   >=x11-libs/gtk+-3.22:3[X(+)]
-   >=dev-cpp/gtkmm-3.3.18:3.0
-   >=dev-cpp/glibmm-2.46:2
-   >=dev-libs/libxml2-2.0:2
-   >=gnome-base/librsvg-2.35:2
-   systemd? ( >=sys-apps/systemd-44:0= )
-   X? ( >=x11-libs/libwnck-2.91.0:3 )
-"
-# eautoreconf requires gnome-base/gnome-common
-DEPEND="${RDEPEND}
-   app-text/yelp-tools
-   dev-util/glib-utils
-   >=dev-util/intltool-0.41.0
-   virtual/pkgconfig
-"
-
-src_configure() {
-   # XXX: appdata is deprecated by appstream-glib, upstream must upgrade
-   gnome2_src_configure \
-   $(use_enable systemd) \
-   $(use_enable X broken-wnck) \
-   APPDATA_VALIDATE="$(type -P true)"
-}



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-shell-frippery/

2019-05-18 Thread Mart Raudsepp
commit: 0b813e008f84c801fcd51cbd4a2c89868665276a
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 21:00:00 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 21:24:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b813e00

gnome-extra/gnome-shell-frippery: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 gnome-extra/gnome-shell-frippery/Manifest  |  2 --
 .../gnome-shell-frippery-3.24.0.ebuild | 38 --
 .../gnome-shell-frippery-3.26.5.ebuild | 38 --
 3 files changed, 78 deletions(-)

diff --git a/gnome-extra/gnome-shell-frippery/Manifest 
b/gnome-extra/gnome-shell-frippery/Manifest
index e276ddcd11d..21880496143 100644
--- a/gnome-extra/gnome-shell-frippery/Manifest
+++ b/gnome-extra/gnome-shell-frippery/Manifest
@@ -1,3 +1 @@
-DIST gnome-shell-frippery-3.24.0.tgz 79322 BLAKE2B 
d5e6db3d165708836e0cec4c1c2f6ffd3227876a566759ac9db9c7ce1d71841002a991df0bd2bf2279e79dfb9a87af1e8b10abe850f972ff2c9f49397106b8b5
 SHA512 
7f12f3be7ec4d55cf9f96c81c5af649cbb410fe79e880b3b5469e1554ae8419e40d5a77ab9d3889758a2729dd31e59b08e507803b84886305b75fe27df5eebd5
-DIST gnome-shell-frippery-3.26.5.tgz 87012 BLAKE2B 
23f073cfbbd87bc29cc90f052b841c5a5cca535b2a0e8ef3f220fc4bd9a1a2857fde817f0dca478673fa27a93a028ead28a880f67ec574d6011e3a63630540e1
 SHA512 
b5767af112e1744f7928c01810b16df565409da43cac1638467b1425b50cd0c48cfea3535be501b47144c8e1b5b9eeb6283c80464ec1b02d74f60e7d04478c85
 DIST gnome-shell-frippery-3.30.2.tgz 87885 BLAKE2B 
d79d27c1b9faa5c5f6351fee1f9ee7afe5c7eeb5de94988aee0fdbe283d74eb4175606f70668b4297b295c325f569cb3bc02d26728985ca3d3075eb0c5cf
 SHA512 
a33bc69ddc9ee16b944e456ca537b07b30cab3f010910b0b32a4a5b7ce64d0e766438587f2949a43bd9829ed36ebcdb3f236ea40ec3596a539e06d3fc1f9e6f5

diff --git 
a/gnome-extra/gnome-shell-frippery/gnome-shell-frippery-3.24.0.ebuild 
b/gnome-extra/gnome-shell-frippery/gnome-shell-frippery-3.24.0.ebuild
deleted file mode 100644
index 982b541a3d9..000
--- a/gnome-extra/gnome-shell-frippery/gnome-shell-frippery-3.24.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=6
-
-DESCRIPTION="Unofficial extension pack providing GNOME 2-like features for 
GNOME 3"
-HOMEPAGE="http://frippery.org/extensions/index.html";
-SRC_URI="http://frippery.org/extensions/${P}.tgz";
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND="
-   app-eselect/eselect-gnome-shell-extensions
-   >=dev-libs/gjs-1.29
-   dev-libs/gobject-introspection:=
-   gnome-base/gnome-menus:3[introspection]
-   >=gnome-base/gnome-shell-3.20
-   media-libs/clutter:1.0[introspection]
-   x11-libs/pango[introspection]
-"
-DEPEND=""
-
-S="${WORKDIR}/.local/share/gnome-shell"
-
-src_install() {
-   insinto /usr/share/gnome-shell/extensions
-   doins -r extensions/*@*
-   dodoc gnome-shell-frippery/{CHANGELOG,README}
-}
-
-pkg_postinst() {
-   ebegin "Updating list of installed extensions"
-   eselect gnome-shell-extensions update
-   eend $?
-}

diff --git 
a/gnome-extra/gnome-shell-frippery/gnome-shell-frippery-3.26.5.ebuild 
b/gnome-extra/gnome-shell-frippery/gnome-shell-frippery-3.26.5.ebuild
deleted file mode 100644
index 6eadedbef46..000
--- a/gnome-extra/gnome-shell-frippery/gnome-shell-frippery-3.26.5.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Unofficial extension pack providing GNOME 2-like features for 
GNOME 3"
-HOMEPAGE="http://frippery.org/extensions/index.html";
-SRC_URI="http://frippery.org/extensions/${P}.tgz";
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
-   app-eselect/eselect-gnome-shell-extensions
-   >=dev-libs/gjs-1.29
-   dev-libs/gobject-introspection:=
-   gnome-base/gnome-menus:3[introspection]
-   =gnome-base/gnome-shell-3.26*
-   media-libs/clutter:1.0[introspection]
-   x11-libs/pango[introspection]
-"
-DEPEND=""
-
-S="${WORKDIR}/.local/share/gnome-shell"
-
-src_install() {
-   insinto /usr/share/gnome-shell/extensions
-   doins -r extensions/*@*
-   dodoc gnome-shell-frippery/{CHANGELOG,README}
-}
-
-pkg_postinst() {
-   ebegin "Updating list of installed extensions"
-   eselect gnome-shell-extensions update
-   eend $?
-}



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-calculator/

2019-05-18 Thread Mart Raudsepp
commit: c9ef71af80123691cdb898864077d9fb687538cf
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 20:48:01 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 21:23:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9ef71af

gnome-extra/gnome-calculator: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 gnome-extra/gnome-calculator/Manifest  |  1 -
 .../gnome-calculator-3.24.0.ebuild | 39 --
 2 files changed, 40 deletions(-)

diff --git a/gnome-extra/gnome-calculator/Manifest 
b/gnome-extra/gnome-calculator/Manifest
index 23632fcbb79..f4a18199fb2 100644
--- a/gnome-extra/gnome-calculator/Manifest
+++ b/gnome-extra/gnome-calculator/Manifest
@@ -1,2 +1 @@
-DIST gnome-calculator-3.24.0.tar.xz 1358368 BLAKE2B 
81ad42598418b11f2436ebf482bbf93547460990cdb464efb3107e93010081f3d687bf99c80d35d9a6576b5d838218c7ea07e81256abfa358ce78031d80b346d
 SHA512 
55968f3a307748050089652394a3652b8e199be9abf87d43e732874526dc2f08c4521e302a69afd2c09705ffa67a890fc2217503dd31ef51959df9189364c22f
 DIST gnome-calculator-3.30.1.tar.xz 1070308 BLAKE2B 
dca8e16f754d7ae7ac3371dbe65fcaacf51c251d377cc696c7c9a9ca6b4d9c0f6431acd06c3091e3d3e0f468cc599953452cbbe4de33473e365425ca3add602f
 SHA512 
4c909f36d1e6ff594b9ab76419a6b50962cf4b5de606c4996d311e5ef6511a20d5c3b310919b271b1a0120ed6a0794644faf5a390d94b71ec6bb89883d498565

diff --git a/gnome-extra/gnome-calculator/gnome-calculator-3.24.0.ebuild 
b/gnome-extra/gnome-calculator/gnome-calculator-3.24.0.ebuild
deleted file mode 100644
index bbbad3bed35..000
--- a/gnome-extra/gnome-calculator/gnome-calculator-3.24.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="A calculator application for GNOME"
-HOMEPAGE="https://wiki.gnome.org/Apps/Calculator";
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE=""
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux"
-
-COMMON_DEPEND="
-   >=dev-libs/glib-2.40:2
-   dev-libs/libxml2:2
-   dev-libs/mpfr:0=
-   dev-libs/mpc:=
-   >=net-libs/libsoup-2.42:2.4
-   >=x11-libs/gtk+-3.19.3:3
-   >=x11-libs/gtksourceview-3.15.1:3.0
-"
-RDEPEND="${COMMON_DEPEND}
-   !

[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-weather/

2019-05-18 Thread Mart Raudsepp
commit: ffa10a9bf03c2e29613044c57a52faffcc585d31
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 21:04:27 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 21:24:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffa10a9b

gnome-extra/gnome-weather: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 gnome-extra/gnome-weather/Manifest |  1 -
 .../gnome-weather/gnome-weather-3.24.0.ebuild  | 51 --
 2 files changed, 52 deletions(-)

diff --git a/gnome-extra/gnome-weather/Manifest 
b/gnome-extra/gnome-weather/Manifest
index 87a366a82a6..555a7407fc8 100644
--- a/gnome-extra/gnome-weather/Manifest
+++ b/gnome-extra/gnome-weather/Manifest
@@ -1,2 +1 @@
-DIST gnome-weather-3.24.0.tar.xz 5358924 BLAKE2B 
89091c0dd2e69109621450621a03231da9fc6032cfdc44386e632ab3e8e478fc9a02efff86417277fbdbd2c39d730efd76df1a787e14112dd0447b53715b5aff
 SHA512 
c286c97dc1cbb4991e56ed49e8c788c6a58f0f0dcd5534812ee3e06a0570fd1bb0b45f7e35bdc11443f62dc3a2cd262db4f3d2b1f238cfc24236de88de4a4bce
 DIST gnome-weather-3.26.0.tar.xz 5362056 BLAKE2B 
0a427f8be6f8b79346d106430f6673961d03ca6770940f92eb866859907c7dc2e11805091bd9715e922176acad5c971114c9df33e6551c8992051e6ef873a298
 SHA512 
adb5400ca2674142132e499880793f9c4fafaa9a4459b2718eb24180480f8e4e1edb81aad947283208c3fe32f1c662d380421efa1b6b57968268ca64318a33ff

diff --git a/gnome-extra/gnome-weather/gnome-weather-3.24.0.ebuild 
b/gnome-extra/gnome-weather/gnome-weather-3.24.0.ebuild
deleted file mode 100644
index ae57ebeea9d..000
--- a/gnome-extra/gnome-weather/gnome-weather-3.24.0.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python{2_7,3_5,3_6} )
-
-inherit gnome2 python-any-r1 virtualx
-
-DESCRIPTION="A weather application for GNOME"
-HOMEPAGE="https://wiki.gnome.org/Design/Apps/Weather";
-
-LICENSE="GPL-2+ LGPL-2+ MIT CC-BY-3.0 CC-BY-SA-3.0"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="test"
-
-RDEPEND="
-   >=app-misc/geoclue-2.3.1:2.0
-   >=dev-libs/gjs-1.43.3
-   >=dev-libs/glib-2.32:2
-   >=dev-libs/gobject-introspection-1.35.9:=
-   >=dev-libs/libgweather-3.17.2:=
-   gnome-base/gsettings-desktop-schemas
-   >=x11-libs/gtk+-3.11.4:3
-"
-# libxml2 required for glib-compile-resources
-DEPEND="${RDEPEND}
-   dev-libs/appstream-glib
-   dev-libs/libxml2:2
-   >=dev-util/intltool-0.26
-   virtual/pkgconfig
-   test? (
-   ${PYTHON_DEPS}
-   $(python_gen_any_dep 'dev-util/dogtail[${PYTHON_USEDEP}]') )
-"
-
-python_check_deps() {
-   use test && has_version "dev-util/dogtail[${PYTHON_USEDEP}]"
-}
-
-pkg_setup() {
-   use test && python-any-r1_pkg_setup
-}
-
-src_configure() {
-   gnome2_src_configure $(use_enable test dogtail)
-}
-
-src_test() {
-   virtx emake check TESTS_ENVIRONMENT="dbus-run-session"
-}



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-shell-extensions/

2019-05-18 Thread Mart Raudsepp
commit: f1ee472ec404cb20e2e0b11f3387d834a8393fe4
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 20:58:59 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 21:24:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1ee472e

gnome-extra/gnome-shell-extensions: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 gnome-extra/gnome-shell-extensions/Manifest|  3 -
 .../gnome-shell-extensions-3.24.3.ebuild   | 78 
 .../gnome-shell-extensions-3.26.2-r1.ebuild| 85 --
 3 files changed, 166 deletions(-)

diff --git a/gnome-extra/gnome-shell-extensions/Manifest 
b/gnome-extra/gnome-shell-extensions/Manifest
index f848a9fa95a..f11ba629020 100644
--- a/gnome-extra/gnome-shell-extensions/Manifest
+++ b/gnome-extra/gnome-shell-extensions/Manifest
@@ -1,4 +1 @@
-DIST gnome-shell-extensions-3.24.3.tar.xz 346420 BLAKE2B 
3b6f6686656ca6f395bd69fea905c4f28264db81ac0f207bc2e0d6c82410328be2bc4c98faa659d9ac551cabb73e0576c4e28def9c14e5c7710a9785528909db
 SHA512 
7948a9cb6f5cb8d760bc42ea2865823ee60bd164b491d944edb0413e362f38ed90d39ead44ac57872a83c43c4050f5448936e739626b89a2b486a22f41d61e20
-DIST gnome-shell-extensions-3.26.2-patchset.tar.xz 14284 BLAKE2B 
36a81073e1983236835eccc5dc31fb9ce23c788b2e6e69661ea70d152ea951c4763572ee3f3fc052b72c3d0be7ceb4b3a397a46ed1d4b19acaee11a72203b399
 SHA512 
24b83766561b12a31cd83db361fc85cd86b4c80ad92244d2669d78b44433683402ea06446b003fa65137672b052699281eca089e38eb441b8805408369232121
-DIST gnome-shell-extensions-3.26.2.tar.xz 348720 BLAKE2B 
c276b95c7c80d732257396b3b04e273394adb5580709db3ba6ba5129ed9f6458cf2b2daee253fb2759169417364d4392e5734b5df3bdfd00266439c2bca2db9e
 SHA512 
8eb417a947545832d180cf7e53e1c239aec3ba1c819375071f7f036617de4ccdea5f23e81349d53dbc3c5f12334b1f1f590def7b75130e1057c314db557166e6
 DIST gnome-shell-extensions-3.30.1.tar.xz 198652 BLAKE2B 
d65ae90f6acf607aa1fe2eacfdcd22800b2dfcfee71240b600dd8a2e9e0320ed972a434a68a7020eafcfa6a0eec84572dc9f80258dc96fc205978882fe0c85c8
 SHA512 
492d99bac6345cc0c9e1a8a067859d2ff6d7b1b620277cac43429573e2e952af1a2ad3d94cc2fb5db3978fd15226c7f2231eb4d11fbcf1da39fe07afd58ee7b3

diff --git 
a/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-3.24.3.ebuild 
b/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-3.24.3.ebuild
deleted file mode 100644
index 65e73e62eab..000
--- a/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-3.24.3.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2 readme.gentoo-r1
-
-DESCRIPTION="JavaScript extensions for GNOME Shell"
-HOMEPAGE="https://wiki.gnome.org/Projects/GnomeShell/Extensions";
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="examples"
-KEYWORDS="amd64 x86"
-
-COMMON_DEPEND="
-   >=dev-libs/glib-2.26:2
-   >=gnome-base/libgtop-2.28.3[introspection]
-   >=app-eselect/eselect-gnome-shell-extensions-20111211
-"
-RDEPEND="${COMMON_DEPEND}
-   >=dev-libs/gjs-1.29
-   dev-libs/gobject-introspection:=
-   dev-libs/atk[introspection]
-   gnome-base/gnome-menus:3[introspection]
-   >=gnome-base/gnome-shell-3.14.2
-   https://extensions.gnome.org/ web interface, the
-gnome-extra/gnome-tweaks GUI, or modify the org.gnome.shell
-enabled-extensions gsettings key from the command line or a script."
-
-src_configure() {
-   gnome2_src_configure --enable-extensions=all
-}
-
-src_install() {
-   gnome2_src_install
-
-   local example="exam...@gnome-shell-extensions.gcampax.github.com"
-   if use examples; then
-   mv "${ED}usr/share/gnome-shell/extensions/${example}" \
-   "${ED}usr/share/doc/${PF}/" || die
-   else
-   rm -r "${ED}usr/share/gnome-shell/extensions/${example}" || die
-   fi
-
-   readme.gentoo_create_doc
-}
-
-pkg_postinst() {
-   gnome2_pkg_postinst
-
-   ebegin "Updating list of installed extensions"
-   eselect gnome-shell-extensions update
-   eend $?
-
-   readme.gentoo_print_elog
-}

diff --git 
a/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-3.26.2-r1.ebuild 
b/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-3.26.2-r1.ebuild
deleted file mode 100644
index 3c25ab726b2..000
--- a/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-3.26.2-r1.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2 readme.gentoo-r1
-
-DESCRIPTION="JavaScript extensions for GNOME Shell"
-HOMEPAGE="https://wiki.gnome.org/Projects/GnomeShell/Extensions";
-SRC_URI+=" https://dev.gentoo.org/~leio/distfiles/${P}-patchset.tar.xz";
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="examples"
-KEYWORDS="~amd64 ~x86"
-
-COMMON_DEPEND="
-   >=dev-libs/glib-2.26

[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-logs/

2019-05-18 Thread Mart Raudsepp
commit: ff90ca5f419ffea0ed94f8399d64620b71a6a8a2
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 20:53:42 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 21:24:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff90ca5f

gnome-extra/gnome-logs: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 gnome-extra/gnome-logs/Manifest |  1 -
 gnome-extra/gnome-logs/gnome-logs-3.24.2.ebuild | 54 -
 2 files changed, 55 deletions(-)

diff --git a/gnome-extra/gnome-logs/Manifest b/gnome-extra/gnome-logs/Manifest
index 33d115574cf..ce7dc39cb92 100644
--- a/gnome-extra/gnome-logs/Manifest
+++ b/gnome-extra/gnome-logs/Manifest
@@ -1,2 +1 @@
-DIST gnome-logs-3.24.2.tar.xz 1000552 BLAKE2B 
da237fbce0b1ced77c52ffab1965f6e1209df8fa1f224274b330bea106fed6449e37e0ad654b579ce1128fb6b554ffd521faa5362db9ef8f8f2a54a1685f
 SHA512 
6f7dabb0b0093b860198344373eb1feae244ed23c3a65494499c09a83c687ba68ff023ec5ce34846be51fd74293fdb4b575cf3a748a22fae183e89086eba1db9
 DIST gnome-logs-3.30.0.tar.xz 1289980 BLAKE2B 
51c99c335b72039eab96feae8acff55f17c65b44959ce7b0f6a310a71dc4d372fd7e225a73650896a7177650ca77df6cf340a91cdbbff0cd18dfc1b2fd658d1b
 SHA512 
940aa6883538aad28ce86e313425e28f2633d68f55dc3b17260bd81f6232799b29234d9a26dfd0cd26af0d0debf0cb832e76b5b8743d95b8e32514ac5fe6ece0

diff --git a/gnome-extra/gnome-logs/gnome-logs-3.24.2.ebuild 
b/gnome-extra/gnome-logs/gnome-logs-3.24.2.ebuild
deleted file mode 100644
index 20e30a02d8c..000
--- a/gnome-extra/gnome-logs/gnome-logs-3.24.2.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-
-inherit gnome2 python-any-r1 virtualx
-
-DESCRIPTION="Log messages and event viewer"
-HOMEPAGE="https://wiki.gnome.org/Apps/Logs";
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="test"
-
-RDEPEND="
-   >=dev-libs/glib-2.43.90:2
-   gnome-base/gsettings-desktop-schemas
-   sys-apps/systemd:=
-   >=x11-libs/gtk+-3.19.3:3
-"
-DEPEND="${RDEPEND}
-   dev-util/glib-utils
-   ~app-text/docbook-xml-dtd-4.3
-   app-text/yelp-tools
-   dev-libs/appstream-glib
-   dev-libs/libxml2:2
-   dev-libs/libxslt
-   >=dev-util/intltool-0.50
-   gnome-base/gnome-common
-   virtual/pkgconfig
-   test? (
-   ${PYTHON_DEPS}
-   $(python_gen_any_dep 'dev-util/dogtail[${PYTHON_USEDEP}]') )
-"
-
-python_check_deps() {
-   use test && has_version "dev-util/dogtail[${PYTHON_USEDEP}]"
-}
-
-pkg_setup() {
-   use test && python-any-r1_pkg_setup
-}
-
-src_configure() {
-   gnome2_src_configure \
-   --enable-man \
-   $(use_enable test tests)
-}
-
-src_test() {
-   virtx emake check
-}



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-color-manager/

2019-05-18 Thread Mart Raudsepp
commit: 166a8e7810f3e4eec992cd6030bdb3800101bb5f
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 20:51:32 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 21:23:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=166a8e78

gnome-extra/gnome-color-manager: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 gnome-extra/gnome-color-manager/Manifest   |  1 -
 .../gnome-color-manager-3.24.0.ebuild  | 69 --
 2 files changed, 70 deletions(-)

diff --git a/gnome-extra/gnome-color-manager/Manifest 
b/gnome-extra/gnome-color-manager/Manifest
index 0bf1d30ff2d..183c5f24b11 100644
--- a/gnome-extra/gnome-color-manager/Manifest
+++ b/gnome-extra/gnome-color-manager/Manifest
@@ -1,2 +1 @@
-DIST gnome-color-manager-3.24.0.tar.xz 2857120 BLAKE2B 
c73c3718f77517a41fc74c12347101c57b9939101b2c816cc6390185fb0b21f87d16ed30b17a94f7bd03e28abb4bd5f5d411c086d350659f6686cfffb7e88cf2
 SHA512 
e145caf4e885ea6e9c4ee5a5b4d800d70af338e26d3bfcda81e20c6144e36d0581638d07099302d30787d6d30e9d58f2b8373f6585ae3788df825d6d24f5b003
 DIST gnome-color-manager-3.30.0.tar.xz 2611088 BLAKE2B 
2bbed2184d2c7afa9c4c4cd88470df3350f7deb2d776863dcd18ad6253538f1daee5f6397c598af8bdf1ce720980ede9280891139a9366edaffde3672d64b47a
 SHA512 
ec28179f1089317b5a1920757e81b6126ab42a087831a92cd47174ddfbe6093fa868747c2a1d1d70c23f3fb87bc1b839627160407bf85c936ab0a3b125932ccc

diff --git a/gnome-extra/gnome-color-manager/gnome-color-manager-3.24.0.ebuild 
b/gnome-extra/gnome-color-manager/gnome-color-manager-3.24.0.ebuild
deleted file mode 100644
index 6389e442805..000
--- a/gnome-extra/gnome-color-manager/gnome-color-manager-3.24.0.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2 virtualx
-
-DESCRIPTION="Color profile manager for the GNOME desktop"
-HOMEPAGE="https://gitlab.gnome.org/GNOME/gnome-color-manager/";
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
-IUSE="packagekit raw"
-
-# Need gtk+-3.3.8 for https://bugzilla.gnome.org/show_bug.cgi?id=673331
-RDEPEND="
-   >=dev-libs/glib-2.31.10:2
-   >=media-libs/lcms-2.2:2
-   >=media-libs/libcanberra-0.10[gtk3]
-   media-libs/libexif
-   media-libs/tiff:0=
-
-   >=x11-libs/gtk+-3.3.8:3
-   >=x11-libs/vte-0.25.1:2.91
-   >=x11-misc/colord-1.3.1:0=
-   >=x11-libs/colord-gtk-0.1.20
-
-   packagekit? ( app-admin/packagekit-base )
-   raw? ( media-gfx/exiv2:0= )
-"
-# docbook-sgml-{utils,dtd:4.1} needed to generate man pages
-DEPEND="${RDEPEND}
-   app-text/docbook-sgml-dtd:4.1
-   app-text/docbook-sgml-utils
-   dev-libs/appstream-glib
-   dev-libs/libxslt
-   dev-util/itstool
-   >=sys-devel/gettext-0.19.7
-   virtual/pkgconfig
-"
-
-PATCHES=(
-   # https://gitlab.gnome.org/GNOME/gnome-color-manager/issues/4
-   "${FILESDIR}"/${P}-exiv2-0.27.patch # bug 674086
-)
-
-src_configure() {
-   # Always enable tests since they are check_PROGRAMS anyway
-   # appstream does not want to be relax by default !
-   gnome2_src_configure \
-   --disable-static \
-   --enable-tests \
-   $(use_enable packagekit) \
-   $(use_enable raw exiv)
-#  APPSTREAM_UTIL=$(type -P true)
-}
-
-src_test() {
-   virtx emake check
-}
-
-pkg_postinst() {
-   gnome2_pkg_postinst
-
-   if ! has_version media-gfx/argyllcms ; then
-   elog "If you want to do display or scanner calibration, you 
will need to"
-   elog "install media-gfx/argyllcms"
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-contacts/files/, gnome-extra/gnome-contacts/

2019-05-18 Thread Mart Raudsepp
commit: a09c5996beb528998b6ab704fbef8f6032021cc4
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 20:52:32 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 21:23:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a09c5996

gnome-extra/gnome-contacts: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 gnome-extra/gnome-contacts/Manifest|  1 -
 .../files/3.22.1-fix-vala-0.35-part1.patch | 29 -
 .../files/3.22.1-fix-vala-0.35-part2.patch | 50 ---
 .../gnome-contacts/gnome-contacts-3.22.1-r1.ebuild | 75 --
 4 files changed, 155 deletions(-)

diff --git a/gnome-extra/gnome-contacts/Manifest 
b/gnome-extra/gnome-contacts/Manifest
index fc4ea711021..e50b19e4bad 100644
--- a/gnome-extra/gnome-contacts/Manifest
+++ b/gnome-extra/gnome-contacts/Manifest
@@ -1,2 +1 @@
-DIST gnome-contacts-3.22.1.tar.xz 788820 BLAKE2B 
8f620334dd380e8cb690f7b71d3a99a921f5814ab230690a60be6022150db7a6a0f74e426e72d8d027eb5280e1b6bfd04fa7b0b030519bb19e4718ca0c9f2120
 SHA512 
d93ed6c65ffdabe1925cc795b88ff374fe69e03fcd36af7c2fc67a5236b90ab6af4bd269b6fc3b344fcd6b4688d866628b8b090bb62de95f8bd0c2e40c26a107
 DIST gnome-contacts-3.30.2.tar.xz 368476 BLAKE2B 
502170e327eb63a6d026af94a09949f6b973dba0c59079a23c7f37dfde2a391ffa13d905452741c403ada8e6f1101f7a5620ad9b59eb4c5341e96d357d8fe99b
 SHA512 
cf6ab33ef6147bceb5a4681b83830828fd4caa47d83fa9f71e01db3caf710f7f09fe60d2956565a2b9bd124356e100b31d6372ac4d4d231718230915a135e79d

diff --git a/gnome-extra/gnome-contacts/files/3.22.1-fix-vala-0.35-part1.patch 
b/gnome-extra/gnome-contacts/files/3.22.1-fix-vala-0.35-part1.patch
deleted file mode 100644
index b9634e6fc04..000
--- a/gnome-extra/gnome-contacts/files/3.22.1-fix-vala-0.35-part1.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From 2ba6e380dd8a3575bd8f4d4e5d8d3883003e9f54 Mon Sep 17 00:00:00 2001
-From: Rico Tzschichholz 
-Date: Sat, 1 Oct 2016 14:27:55 +0200
-Subject: [PATCH] Don't restrict RowData.details to the generic type "string"
-
-This allows AbstractFieldDetails based values to be assigned,
-like PostalAddressFieldDetails.
-
-Fixes a build-failure with vala 0.35+ due to stricter type-checking.

- src/contacts-contact-editor.vala | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/contacts-contact-editor.vala 
b/src/contacts-contact-editor.vala
-index 3372f87..3978887 100644
 a/src/contacts-contact-editor.vala
-+++ b/src/contacts-contact-editor.vala
-@@ -77,7 +77,7 @@ public class Contacts.ContactEditor : Grid {
-   }
- 
-   struct RowData {
--AbstractFieldDetails details;
-+AbstractFieldDetails details;
-   }
- 
-   struct Field {
--- 
-2.14.1
-

diff --git a/gnome-extra/gnome-contacts/files/3.22.1-fix-vala-0.35-part2.patch 
b/gnome-extra/gnome-contacts/files/3.22.1-fix-vala-0.35-part2.patch
deleted file mode 100644
index 4cfe861fa50..000
--- a/gnome-extra/gnome-contacts/files/3.22.1-fix-vala-0.35-part2.patch
+++ /dev/null
@@ -1,50 +0,0 @@
-From b96b0fc07c49724f252a5cd35f2d028f91529068 Mon Sep 17 00:00:00 2001
-From: Jeena 
-Date: Tue, 15 Aug 2017 16:53:05 +0200
-Subject: [PATCH] Drop unnecessary format-string.
-
-Code got refactored in 3.25/master but it boils down to dropping this
-extra parameter.

- src/contacts-contact-pane.vala | 4 
- 1 file changed, 4 deletions(-)
-
-diff --git a/src/contacts-contact-pane.vala b/src/contacts-contact-pane.vala
-index 8e100f2..fce832b 100644
 a/src/contacts-contact-pane.vala
-+++ b/src/contacts-contact-pane.vala
-@@ -451,7 +451,6 @@ public class Contacts.ContactPane : Notebook {
-DialogFlags.MODAL,
-MessageType.ERROR,
-ButtonsType.OK,
--   "%s",
-_("You need to enter some data"));
-   dialog.show ();
-   dialog.response.connect ( () => {
-@@ -463,7 +462,6 @@ public class Contacts.ContactPane : Notebook {
-DialogFlags.MODAL,
-MessageType.ERROR,
-ButtonsType.OK,
--   "%s",
-_("No primary addressbook 
configured"));
-   dialog.show ();
-   dialog.response.connect ( () => {
-@@ -482,7 +480,6 @@ public class Contacts.ContactPane : Notebook {
-   DialogFlags.MODAL,
-   MessageType.ERROR,
-   ButtonsType.OK,
--  "%s",
-   _("Unable to create new contacts: %s"), 
e.message);
- }
- 
-@@ -493,7 +490,6 @@ public class Contacts.ContactPane : Notebook {
-  

[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-characters/

2019-05-18 Thread Mart Raudsepp
commit: c82fcbe29fd0fab2d0caeefa4fbe8473c22514c4
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 20:49:42 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 21:23:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c82fcbe2

gnome-extra/gnome-characters: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 gnome-extra/gnome-characters/Manifest  |  1 -
 .../gnome-characters-3.26.2.ebuild | 37 --
 2 files changed, 38 deletions(-)

diff --git a/gnome-extra/gnome-characters/Manifest 
b/gnome-extra/gnome-characters/Manifest
index 482538a5a53..caf164506de 100644
--- a/gnome-extra/gnome-characters/Manifest
+++ b/gnome-extra/gnome-characters/Manifest
@@ -1,2 +1 @@
-DIST gnome-characters-3.26.2.tar.xz 1547868 BLAKE2B 
8fda44bcb3f9033dba0717a698d9db100d260624b92843ed6cf1fa45a0de2d0c326fdce5eead1868b4841da7a10a1ae25fd0298051cafd4e60d0e26ec428ad02
 SHA512 
a9bce1810f4ba4de59275421e201838ede4781d636231307906ab10fd588ca4ba945aee6f6f8bb847c9b76a7a0db86613189542649cb8561542bec3c774645b0
 DIST gnome-characters-3.30.0.tar.xz 974068 BLAKE2B 
294b401e410e4383120deaa4ef3adad485c27e59879ff412d9eb282678f07faba6fb5a93e01c0aebaac7dbac7abd5c19876a0b84403ad92ffc24211daec961bd
 SHA512 
390536e0e5891497c5bd2374c70085beb5bc7c730f51d889e4147895f24999c5c3e9a0bc466a3d4c5652922f1cd7ce1f8f1a98e61007df59d682c230bc99acd2

diff --git a/gnome-extra/gnome-characters/gnome-characters-3.26.2.ebuild 
b/gnome-extra/gnome-characters/gnome-characters-3.26.2.ebuild
deleted file mode 100644
index ae3367c9a50..000
--- a/gnome-extra/gnome-characters/gnome-characters-3.26.2.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python{3_5,3_6} )
-
-inherit gnome2
-
-DESCRIPTION="Unicode character map viewer and library"
-HOMEPAGE="https://wiki.gnome.org/Design/Apps/CharacterMap";
-
-LICENSE="GPL-2 BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND="
-   >=dev-libs/gjs-1.43.3
-   >=dev-libs/glib-2.32:2
-   >=dev-libs/gobject-introspection-1.35.9:=
-   >=dev-libs/libunistring-0.9.5
-   >=x11-libs/gtk+-3.20:3[introspection]
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/pango-1.36[introspection]
-"
-DEPEND="${RDEPEND}
-   dev-libs/appstream-glib
-   dev-libs/libxml2:2
-   >=sys-devel/gettext-0.19.8
-   virtual/pkgconfig
-"
-
-RESTRICT="test"
-
-src_configure() {
-   gnome2_src_configure --disable-dogtail
-}



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

2019-05-18 Thread Patrice Clement
commit: 4b86b46f87fa2332bc4efff21e7e4c4d2127280c
Author: Patrice Clement  gentoo  org>
AuthorDate: Thu May 16 20:29:53 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat May 18 21:21:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b86b46f

app-vim/ferret: stable for amd64+x86.

Signed-off-by: Patrice Clement  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-vim/ferret/ferret-4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-vim/ferret/ferret-4.0.ebuild b/app-vim/ferret/ferret-4.0.ebuild
index 143a9d7ac04..016dd6866cf 100644
--- a/app-vim/ferret/ferret-4.0.ebuild
+++ b/app-vim/ferret/ferret-4.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/wincent/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="vim"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 src_prepare() {
default



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

2019-05-18 Thread Patrice Clement
commit: cd02ded294e76525156de01456223205be63c5cd
Author: Patrice Clement  gentoo  org>
AuthorDate: Thu May 16 20:29:27 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat May 18 21:21:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd02ded2

app-vim/ferret: version bump.

Signed-off-by: Patrice Clement  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-vim/ferret/Manifest  |  1 +
 app-vim/ferret/ferret-4.1.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/app-vim/ferret/Manifest b/app-vim/ferret/Manifest
index 6921f743502..8dd4553cccf 100644
--- a/app-vim/ferret/Manifest
+++ b/app-vim/ferret/Manifest
@@ -1,2 +1,3 @@
 DIST ferret-3.0.tar.gz 32291 BLAKE2B 
c4fd3b776db97c44f93538ffcc193b0e207d5fb8cb0d982fe7fb737c2473d9512a81defc10613c6741de645e690d1f6f8c97a5c74ee70cf35f204f21aeb5c7e5
 SHA512 
f88575654c1990cb9c943b36242ee9786a5c234a853fc6fb321cdbf4f8b13f066fe0bad93bf80e94be407ecdba5014ac39ea0727df775ea2b3af4699a9fc4c03
 DIST ferret-4.0.tar.gz 36867 BLAKE2B 
0c386d5ad24fcd0662108e8e6005f94900c68099af0fedd181eb63d1c0f762ece02c0daf65dcbca1205b5c3c724ed73c523089da0b3db4f8c7f6d5aed737f113
 SHA512 
4d3e39a172a7ef26ddfd49e0582cb11f44851a486dd5ac298e54b9879966b5d09e2f9b0a76dfb5f30157035989ccc21269c3e5adbd5a4c8c7d0797bfe729eeb8
+DIST ferret-4.1.tar.gz 37793 BLAKE2B 
09f53b552083c4632760064fdfa13ed241f3a3b58d366e8cd0baa32bbfed9163aa96e8d1bc0716de43f141ade75549fbf97d2c3f8e459f8f885411b19c6e9ac7
 SHA512 
936c62cc9e52ab3e73b1c4adbb2a8d58cb015866d8fcef23f89001255c0b57faaa0c16e129bc755ac5b129f00185e134434ddfe051fcb19f582cd4edc0715868

diff --git a/app-vim/ferret/ferret-4.1.ebuild b/app-vim/ferret/ferret-4.1.ebuild
new file mode 100644
index 000..143a9d7ac04
--- /dev/null
+++ b/app-vim/ferret/ferret-4.1.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit vim-plugin
+
+DESCRIPTION="vim plugin: enhanced multi-file search"
+HOMEPAGE="https://github.com/wincent/ferret";
+SRC_URI="https://github.com/wincent/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="vim"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+src_prepare() {
+   default
+
+   rm -rv test.rb doc/.gitignore || die
+   # See bug 612282.
+   mv ftplugin/qf.vim ftplugin/${PN}qf.vim || die
+}



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

2019-05-18 Thread Patrice Clement
commit: ac3453bfaf3fb80e00258281f9feac73291b9051
Author: Patrice Clement  gentoo  org>
AuthorDate: Thu May 16 20:30:07 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat May 18 21:21:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac3453bf

app-vim/ferret: clean up old.

Signed-off-by: Patrice Clement  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-vim/ferret/Manifest  |  1 -
 app-vim/ferret/ferret-3.0.ebuild | 22 --
 2 files changed, 23 deletions(-)

diff --git a/app-vim/ferret/Manifest b/app-vim/ferret/Manifest
index 8dd4553cccf..0a2857ac6e3 100644
--- a/app-vim/ferret/Manifest
+++ b/app-vim/ferret/Manifest
@@ -1,3 +1,2 @@
-DIST ferret-3.0.tar.gz 32291 BLAKE2B 
c4fd3b776db97c44f93538ffcc193b0e207d5fb8cb0d982fe7fb737c2473d9512a81defc10613c6741de645e690d1f6f8c97a5c74ee70cf35f204f21aeb5c7e5
 SHA512 
f88575654c1990cb9c943b36242ee9786a5c234a853fc6fb321cdbf4f8b13f066fe0bad93bf80e94be407ecdba5014ac39ea0727df775ea2b3af4699a9fc4c03
 DIST ferret-4.0.tar.gz 36867 BLAKE2B 
0c386d5ad24fcd0662108e8e6005f94900c68099af0fedd181eb63d1c0f762ece02c0daf65dcbca1205b5c3c724ed73c523089da0b3db4f8c7f6d5aed737f113
 SHA512 
4d3e39a172a7ef26ddfd49e0582cb11f44851a486dd5ac298e54b9879966b5d09e2f9b0a76dfb5f30157035989ccc21269c3e5adbd5a4c8c7d0797bfe729eeb8
 DIST ferret-4.1.tar.gz 37793 BLAKE2B 
09f53b552083c4632760064fdfa13ed241f3a3b58d366e8cd0baa32bbfed9163aa96e8d1bc0716de43f141ade75549fbf97d2c3f8e459f8f885411b19c6e9ac7
 SHA512 
936c62cc9e52ab3e73b1c4adbb2a8d58cb015866d8fcef23f89001255c0b57faaa0c16e129bc755ac5b129f00185e134434ddfe051fcb19f582cd4edc0715868

diff --git a/app-vim/ferret/ferret-3.0.ebuild b/app-vim/ferret/ferret-3.0.ebuild
deleted file mode 100644
index 016dd6866cf..000
--- a/app-vim/ferret/ferret-3.0.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit vim-plugin
-
-DESCRIPTION="vim plugin: enhanced multi-file search"
-HOMEPAGE="https://github.com/wincent/ferret";
-SRC_URI="https://github.com/wincent/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="vim"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-src_prepare() {
-   default
-
-   rm -rv test.rb doc/.gitignore || die
-   # See bug 612282.
-   mv ftplugin/qf.vim ftplugin/${PN}qf.vim || die
-}



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

2019-05-18 Thread Patrice Clement
commit: ccc0272b4aad32a0513aaaed7a2ddd3171815afd
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed May 15 20:28:35 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat May 18 21:21:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccc0272b

dev-python/brython: version bump.

Signed-off-by: Patrice Clement  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 dev-python/brython/Manifest |  1 +
 dev-python/brython/brython-3.7.1.ebuild | 36 +
 2 files changed, 37 insertions(+)

diff --git a/dev-python/brython/Manifest b/dev-python/brython/Manifest
index 44fbf3095b8..cade0ebe8d2 100644
--- a/dev-python/brython/Manifest
+++ b/dev-python/brython/Manifest
@@ -1,3 +1,4 @@
 DIST brython-3.6.0.tar.gz 9310837 BLAKE2B 
616874f2a9c303e910a3fd2910aad6ffe360f87e98d009d66e85fd8c05d61c5d96c1a313214c08b69b5d073a23008b23d882a607af0d54f7d2942fcd2b6861ff
 SHA512 
c59cee89634a2439a6fc64d3397966762aa508c6c00d05186138acce25fcf6597230511e30a261217898bca3d86a11eea92516cfe630c5d82cb271603dbecb2c
 DIST brython-3.6.2.tar.gz 9314999 BLAKE2B 
809b9367eb42e723aa58dc22f1d1186144258135bf129de6d28be9a3d86f5f039c2c566e897ed6e8b436ee1ddd80ea2950c6053e366e204255877a777bfe68db
 SHA512 
3edc603bb06a3ce5a383f6e86023e3266cf3ccc916c209fcef0ee69b4cb5445aba820034b5ce33b7c828c5a9a50f48c1226bcb69724967ec438c0702558c7641
 DIST brython-3.7.0.tar.gz 10334976 BLAKE2B 
cbbd3b77c1ef4cb5459621e33456ea7e1999428c0aaf2e52f60f4c1a3c737c84649880dc7e06d9f5b19fd4a172982ee3c1bd8df4f2e264818d6e5cac0908bdb1
 SHA512 
38f42c5c4399317c9a75af3159776d15047d6c09fd89b3f4d244f9077684cdcb3aec2a33304b6fe0005c129291b2b1ecfb0274f766da6005c0ff215751660df0
+DIST brython-3.7.1.tar.gz 9898874 BLAKE2B 
2fbdfae401662878138c5315fc821de77125476d1567dcc395b018891282ca3880ec63e377d9ab8381060e54b6d4947f036f75a518ef363b2549d29a12eace78
 SHA512 
0ab073cd12ae5f2c45a205b37d20d68a996d6ba7247e8a3b8e461158147070294bebba46368c6618771b6bcac11d5a253d63be02cbab1241c11d74ae56d0fd17

diff --git a/dev-python/brython/brython-3.7.1.ebuild 
b/dev-python/brython/brython-3.7.1.ebuild
new file mode 100644
index 000..447c9b9ba91
--- /dev/null
+++ b/dev-python/brython/brython-3.7.1.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_5,3_6} )
+
+inherit webapp python-single-r1
+
+DESCRIPTION="A Python 3 implementation for client-side web programming"
+HOMEPAGE="http://www.brython.info";
+SRC_URI="https://github.com/${PN}-dev/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+need_httpd_cgi
+
+pkg_setup() {
+   webapp_pkg_setup
+   python-single-r1_pkg_setup
+}
+
+src_install() {
+   dodoc LICENCE.txt README.md
+   rm -v LICENCE.txt README.md bower.json .{git*,tra*} server.py || die
+
+   webapp_src_preinst
+
+   insinto "${MY_HTDOCSDIR}"
+   doins -r .
+
+   webapp_src_install
+}



[gentoo-commits] repo/gentoo:master commit in: kde-misc/kshutdown/

2019-05-18 Thread Andreas Sturmlechner
commit: d8579510adfed4756e555191de862a3ffafa74ec
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat May 18 20:38:24 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat May 18 20:52:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8579510

kde-misc/kshutdown: 5.0 version bump

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-misc/kshutdown/Manifest |  1 +
 kde-misc/kshutdown/kshutdown-5.0.ebuild | 51 +
 2 files changed, 52 insertions(+)

diff --git a/kde-misc/kshutdown/Manifest b/kde-misc/kshutdown/Manifest
index 730ca60ec30..106d40bed40 100644
--- a/kde-misc/kshutdown/Manifest
+++ b/kde-misc/kshutdown/Manifest
@@ -1,2 +1,3 @@
 DIST kshutdown-source-4.2.zip 463140 BLAKE2B 
b398a004e91ebfa7651eed7bfffeccfc1cb332868ff3bbcea50ccd40088084ff1079d73ee2c922c8e882c0d39e1c6bc2741d0b416b5a2742eb5c6686b03f29a5
 SHA512 
00d4a5c1c8efdac0d86009bc0218a673435ca315f3b4fa949af414bf525ff65088f26edb0ed0d9fd2209ea81d58619efcffa5091d49bd2b841ddd4749b05a21f
 DIST kshutdown-source-4.99-beta.zip 455309 BLAKE2B 
90a1eed9a8435c695f04bdf00facf48be63dc60e2f80169e91076fe6fac1c8d58502778fc7af7228786d594da1d9e00832251c80f6517abd6c0efc80383be9ba
 SHA512 
4314fd91a262096a740d094244bee173777b87e05b10a14a2b0c54839bfb346fb1b585217c86bce851442dfcbc1557451540d3821a80b2fa89742b4713282793
+DIST kshutdown-source-5.0.zip 454848 BLAKE2B 
481cafbf5bd3831088ec9168b6eb82e342106b9b570279b6b8ca1db1f2df8c5640b3942f76032559396b504903b18fe106eb940e81822472a63f235e1a004644
 SHA512 
7a3920315db142f150227e624fa4a765966ec8367a08686214cb072d94a62d24f3a22fbef8fc84411d385be935102cf85df1b001b2922399455cc320c1e0f0db

diff --git a/kde-misc/kshutdown/kshutdown-5.0.ebuild 
b/kde-misc/kshutdown/kshutdown-5.0.ebuild
new file mode 100644
index 000..252085d32a6
--- /dev/null
+++ b/kde-misc/kshutdown/kshutdown-5.0.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+KDE_TEST="false"
+KDE_AUTODEPS="false"
+inherit kde5
+
+DESCRIPTION="Shutdown manager for desktop environments like KDE Plasma"
+HOMEPAGE="https://kshutdown.sourceforge.io";
+SRC_URI="mirror://sourceforge/${PN}/${PN}-source-${PV}.zip"
+
+LICENSE="GPL-2+"
+KEYWORDS="~amd64 ~x86"
+IUSE="+kde"
+
+BDEPEND="
+   app-arch/unzip
+   sys-devel/gettext
+   kde? ( kde-frameworks/extra-cmake-modules:5 )
+"
+DEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5
+   kde? (
+   kde-frameworks/kconfig:5
+   kde-frameworks/kconfigwidgets:5
+   kde-frameworks/kcoreaddons:5
+   kde-frameworks/kcrash:5
+   kde-frameworks/kdbusaddons:5
+   kde-frameworks/kglobalaccel:5
+   kde-frameworks/ki18n:5
+   kde-frameworks/kidletime:5
+   kde-frameworks/knotifications:5
+   kde-frameworks/knotifyconfig:5
+   kde-frameworks/kwidgetsaddons:5
+   kde-frameworks/kxmlgui:5
+   )
+"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+   local mycmakeargs=(
+   -DKS_PURE_QT=$(usex !kde)
+   )
+
+   kde5_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: kde-misc/kshutdown/

2019-05-18 Thread Andreas Sturmlechner
commit: 6f209adc43cc6fe03d202cbab80e0b2b6c1ed868
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat May 18 20:39:45 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat May 18 20:52:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f209adc

kde-misc/kshutdown: Drop 4.99_beta

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-misc/kshutdown/Manifest   |  1 -
 kde-misc/kshutdown/kshutdown-4.99_beta.ebuild | 53 ---
 2 files changed, 54 deletions(-)

diff --git a/kde-misc/kshutdown/Manifest b/kde-misc/kshutdown/Manifest
index 106d40bed40..659a69202ef 100644
--- a/kde-misc/kshutdown/Manifest
+++ b/kde-misc/kshutdown/Manifest
@@ -1,3 +1,2 @@
 DIST kshutdown-source-4.2.zip 463140 BLAKE2B 
b398a004e91ebfa7651eed7bfffeccfc1cb332868ff3bbcea50ccd40088084ff1079d73ee2c922c8e882c0d39e1c6bc2741d0b416b5a2742eb5c6686b03f29a5
 SHA512 
00d4a5c1c8efdac0d86009bc0218a673435ca315f3b4fa949af414bf525ff65088f26edb0ed0d9fd2209ea81d58619efcffa5091d49bd2b841ddd4749b05a21f
-DIST kshutdown-source-4.99-beta.zip 455309 BLAKE2B 
90a1eed9a8435c695f04bdf00facf48be63dc60e2f80169e91076fe6fac1c8d58502778fc7af7228786d594da1d9e00832251c80f6517abd6c0efc80383be9ba
 SHA512 
4314fd91a262096a740d094244bee173777b87e05b10a14a2b0c54839bfb346fb1b585217c86bce851442dfcbc1557451540d3821a80b2fa89742b4713282793
 DIST kshutdown-source-5.0.zip 454848 BLAKE2B 
481cafbf5bd3831088ec9168b6eb82e342106b9b570279b6b8ca1db1f2df8c5640b3942f76032559396b504903b18fe106eb940e81822472a63f235e1a004644
 SHA512 
7a3920315db142f150227e624fa4a765966ec8367a08686214cb072d94a62d24f3a22fbef8fc84411d385be935102cf85df1b001b2922399455cc320c1e0f0db

diff --git a/kde-misc/kshutdown/kshutdown-4.99_beta.ebuild 
b/kde-misc/kshutdown/kshutdown-4.99_beta.ebuild
deleted file mode 100644
index 87f43f1e725..000
--- a/kde-misc/kshutdown/kshutdown-4.99_beta.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-KDE_TEST="false"
-KDE_AUTODEPS="false"
-inherit kde5
-
-DESCRIPTION="Shutdown manager for desktop environments like KDE Plasma"
-HOMEPAGE="https://kshutdown.sourceforge.io";
-SRC_URI="mirror://sourceforge/${PN}/${PN}-source-${PV/_/-}.zip"
-
-LICENSE="GPL-2+"
-KEYWORDS="~amd64 ~x86"
-IUSE="+kde"
-
-BDEPEND="
-   app-arch/unzip
-   sys-devel/gettext
-   kde? ( kde-frameworks/extra-cmake-modules:5 )
-"
-DEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtgui:5
-   dev-qt/qtwidgets:5
-   kde? (
-   kde-frameworks/kconfig:5
-   kde-frameworks/kconfigwidgets:5
-   kde-frameworks/kcoreaddons:5
-   kde-frameworks/kcrash:5
-   kde-frameworks/kdbusaddons:5
-   kde-frameworks/kglobalaccel:5
-   kde-frameworks/ki18n:5
-   kde-frameworks/kidletime:5
-   kde-frameworks/knotifications:5
-   kde-frameworks/knotifyconfig:5
-   kde-frameworks/kwidgetsaddons:5
-   kde-frameworks/kxmlgui:5
-   )
-"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${P/_/-}"
-
-src_configure() {
-   local mycmakeargs=(
-   -DKS_PURE_QT=$(usex !kde)
-   )
-
-   kde5_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-boxes/

2019-05-18 Thread Mart Raudsepp
commit: ae98b829c5c5250d873c47e6cf29f55ae7952730
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 20:41:51 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 20:44:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae98b829

gnome-extra/gnome-boxes: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 gnome-extra/gnome-boxes/Manifest  |   1 -
 gnome-extra/gnome-boxes/gnome-boxes-3.26.4.ebuild | 111 --
 2 files changed, 112 deletions(-)

diff --git a/gnome-extra/gnome-boxes/Manifest b/gnome-extra/gnome-boxes/Manifest
index 4a6cba1fc8b..a4c40411123 100644
--- a/gnome-extra/gnome-boxes/Manifest
+++ b/gnome-extra/gnome-boxes/Manifest
@@ -1,2 +1 @@
-DIST gnome-boxes-3.26.4.tar.xz 1893760 BLAKE2B 
91d01f33b2fb03150c0abd75cb58a9a9ecd8deeb14d32502f5766e06c93b4d236f971417e0a26c44e1250afa069966b607912f2dde92fc5058e598eb029ff03b
 SHA512 
f92f09ea6f61d418253b3b4388bc7aac321cbbba853908b3a8e4faca0e04287cc7c3387eefdd2e150bc9dace8ef5ebbbab3dc3b38b26e0e2d010272703fbf6a3
 DIST gnome-boxes-3.30.3.tar.xz 1198224 BLAKE2B 
1c65d3f051d32dc85284da4d392e3ec418edf028b61f1166173ac6ced3e6cba687b297ea135a4e54058c561eb5fe69d767e9ee698fb6b16f6bd4cd09b00d5c3a
 SHA512 
fc8a06bb8c71356d50002468f7722aee14abe8432ccce319ada3032746b53eb2f679a93f991c04ae34832a315fc95d561ffc169c4560a23573c046705b5446b4

diff --git a/gnome-extra/gnome-boxes/gnome-boxes-3.26.4.ebuild 
b/gnome-extra/gnome-boxes/gnome-boxes-3.26.4.ebuild
deleted file mode 100644
index 2f59f01a4b0..000
--- a/gnome-extra/gnome-boxes/gnome-boxes-3.26.4.ebuild
+++ /dev/null
@@ -1,111 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-VALA_USE_DEPEND="vapigen"
-VALA_MIN_API_VERSION="0.36"
-
-inherit gnome2 linux-info readme.gentoo-r1 vala
-
-DESCRIPTION="Simple GNOME 3 application to access remote or virtual systems"
-HOMEPAGE="https://wiki.gnome.org/Apps/Boxes";
-
-LICENSE="LGPL-2+"
-SLOT="0"
-
-# We force 'bindist' due to licenses from gnome-boxes-nonfree
-IUSE="" #bindist
-
-KEYWORDS="amd64"
-
-# NOTE: sys-fs/* stuff is called via exec()
-# FIXME: ovirt is not available in tree
-# FIXME: use vala.eclass but only because of libgd not being able
-#to use its pre-generated files so do not copy all the
-#vala deps like live ebuild has.
-# FIXME: qemu probably needs to depend on spice[smartcard]
-#directly with USE=spice
-RDEPEND="
-   >=app-arch/libarchive-3:=
-   >=dev-libs/glib-2.52:2
-   >=dev-libs/gobject-introspection-0.9.6:=
-   >=dev-libs/libxml2-2.7.8:2
-   >=sys-libs/libosinfo-0.2.12
-   >=app-emulation/qemu-1.3.1[spice,smartcard,usbredir]
-   >=app-emulation/libvirt-0.9.3[libvirtd,qemu]
-   >=app-emulation/libvirt-glib-0.2.3
-   >=x11-libs/gtk+-3.19.8:3
-   >=net-libs/gtk-vnc-0.4.4[gtk3(+)]
-   app-crypt/libsecret
-   app-emulation/spice[smartcard]
-   >=net-misc/spice-gtk-0.32[gtk3(+),smartcard,usbredir]
-   virtual/libusb:1
-
-   app-misc/tracker:=
-
-   >=net-libs/libsoup-2.44:2.4
-
-   sys-fs/mtools
-   >=virtual/libgudev-165:=
-"
-#  !bindist? ( gnome-extra/gnome-boxes-nonfree )
-
-DEPEND="${RDEPEND}
-   $(vala_depend)
-   dev-util/itstool
-   >=sys-devel/gettext-0.19.8
-   virtual/pkgconfig
-"
-# eautoreconf needs yelp-tools
-RDEPEND="${RDEPEND}
-   || (
-   >=app-misc/tracker-1[iso(-)]
-   >=app-misc/tracker-miners-2[iso]
-   )
-"
-
-DISABLE_AUTOFORMATTING="yes"
-DOC_CONTENTS="Before running gnome-boxes, you will need to load the KVM 
modules.
-If you have an Intel Processor, run:
-# modprobe kvm-intel
-
-If you have an AMD Processor, run:
-# modprobe kvm-amd"
-
-pkg_pretend() {
-   linux-info_get_any_version
-
-   if linux_config_exists; then
-   if ! { linux_chkconfig_present KVM_AMD || \
-   linux_chkconfig_present KVM_INTEL; }; then
-   ewarn "You need KVM support in your kernel to use GNOME 
Boxes local support!"
-   fi
-   fi
-}
-
-src_prepare() {
-   # Do not change CFLAGS, wondering about VALA ones but appears to be
-   # needed as noted in configure comments below
-   sed 's/CFLAGS="$CFLAGS -O0 -ggdb3"//' -i configure{.ac,} || die
-
-   vala_src_prepare
-   gnome2_src_prepare
-}
-
-src_configure() {
-   # debug needed for splitdebug proper behavior (cardoe), bug #
-   gnome2_src_configure \
-   --enable-debug \
-   --disable-strict-cc \
-   --disable-ovirt
-}
-
-src_install() {
-   gnome2_src_install
-   readme.gentoo_create_doc
-}
-
-pkg_postinst() {
-   gnome2_pkg_postinst
-   readme.gentoo_print_elog
-}



[gentoo-commits] repo/gentoo:master commit in: gnome-base/gdm/files/, gnome-base/gdm/

2019-05-18 Thread Mart Raudsepp
commit: 19504fdd71b794f52a93462a0a85ff72dbf60907
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 18 20:13:14 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 18 20:44:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19504fdd

gnome-base/gdm: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 gnome-base/gdm/Manifest|   1 -
 gnome-base/gdm/files/3.24.3-CVE-2018-14424.patch   | 163 ---
 .../files/3.24.3-display-object-lifetime-fix.patch |  61 --
 gnome-base/gdm/files/gdm-3.8.4-logo.patch  |  25 ---
 gnome-base/gdm/gdm-3.24.3-r1.ebuild| 204 --
 gnome-base/gdm/gdm-3.30.3-r2.ebuild| 228 -
 6 files changed, 682 deletions(-)

diff --git a/gnome-base/gdm/Manifest b/gnome-base/gdm/Manifest
index 1958502cf55..255498fa2a5 100644
--- a/gnome-base/gdm/Manifest
+++ b/gnome-base/gdm/Manifest
@@ -1,3 +1,2 @@
-DIST gdm-3.24.3.tar.xz 1113992 BLAKE2B 
79ae5ccf049bdb05cea4f0e8b2766caee0552efe8fe044da655037bfd603f1e4ab89a4eb0687f786bf44e9fd1c27e07bc498a769c8f88f0cc22b2dd1c9b1
 SHA512 
d8edffb582545f452ec071990fd7d07d6cb755458bc77a9e1b807816f8202f70fc8177e4bb345125075347942c6760c5a5460e3570dc32ee2570ecc15e5f3345
 DIST gdm-3.30.3.tar.xz 1261224 BLAKE2B 
338f946a24d2a7e4b3cf34ac6accff01f8e7ce5032ee4ce79a96b1a755693e09788c6225e45de9a91ae4afea595a0562511104a467e561ec179c3ad61810468f
 SHA512 
17aed5bf7d27b07553703873cda28a711d6135497d36e4c241bcf1ab3552b31007cc241dab394dccf8a4f1daccf7d55ba39edf91f4b22bdea5c2aa1ea17404b8
 DIST tango-gentoo-v1.1.tar.gz 29322 BLAKE2B 
83fa2bf37727e60851dd679054fe1b153ebfea58c9a9a40f891f7d68d3b047b02e8effa1d1b4e08d64500a2072ce7200f159c92a352da7124de27e1b05bb6027
 SHA512 
87d47ddab68361db6d99866c51705dcb3e198f8345a1096859acf2c6cca5099dd23c7fb30d124f52c4933ea38fd45fadffbbe6ecbdfa84f5b60938a4824f9045

diff --git a/gnome-base/gdm/files/3.24.3-CVE-2018-14424.patch 
b/gnome-base/gdm/files/3.24.3-CVE-2018-14424.patch
deleted file mode 100644
index 4edb0670958..000
--- a/gnome-base/gdm/files/3.24.3-CVE-2018-14424.patch
+++ /dev/null
@@ -1,163 +0,0 @@
-From 6060db704a19b0db68f2e9e6a2d020c0c78b6bba Mon Sep 17 00:00:00 2001
-From: Chris Coulson 
-Date: Thu, 19 Jul 2018 18:26:05 +0100
-Subject: [PATCH] display-store: Pass the display object rather than the id in
- the removed signal
-
-By the time GdmDisplayStore emits the "display-removed" signal, the display
-is no longer in the store and gdm_display_store_lookup will not work in
-signal handlers.
-
-Change the "display-removed" parameter from the display id to the GdmDisplay
-object, so that signal handers can perform any cleanup they need to do
-
-CVE-2018-14424
-
-Closes: https://gitlab.gnome.org/GNOME/gdm/issues/401

- daemon/gdm-display-store.c | 11 +++
- daemon/gdm-display-store.h |  2 +-
- daemon/gdm-local-display-factory.c | 13 +++--
- daemon/gdm-manager.c   | 19 +--
- daemon/gdm-manager.h   |  3 ++-
- 5 files changed, 18 insertions(+), 30 deletions(-)
-
-diff --git a/daemon/gdm-display-store.c b/daemon/gdm-display-store.c
-index af76f519..fd24334e 100644
 a/daemon/gdm-display-store.c
-+++ b/daemon/gdm-display-store.c
-@@ -76,15 +76,10 @@ stored_display_new (GdmDisplayStore *store,
- static void
- stored_display_free (StoredDisplay *stored_display)
- {
--char *id;
--
--gdm_display_get_id (stored_display->display, &id, NULL);
--
- g_signal_emit (G_OBJECT (stored_display->store),
-signals[DISPLAY_REMOVED],
-0,
--   id);
--g_free (id);
-+   stored_display->display);
- 
- g_debug ("GdmDisplayStore: Unreffing display: %p",
-  stored_display->display);
-@@ -281,9 +276,9 @@ gdm_display_store_class_init (GdmDisplayStoreClass *klass)
-   G_STRUCT_OFFSET (GdmDisplayStoreClass, 
display_removed),
-   NULL,
-   NULL,
--  g_cclosure_marshal_VOID__STRING,
-+  g_cclosure_marshal_VOID__OBJECT,
-   G_TYPE_NONE,
--  1, G_TYPE_STRING);
-+  1, G_TYPE_OBJECT);
- 
- g_type_class_add_private (klass, sizeof (GdmDisplayStorePrivate));
- }
-diff --git a/daemon/gdm-display-store.h b/daemon/gdm-display-store.h
-index 28359933..0aff8ee2 100644
 a/daemon/gdm-display-store.h
-+++ b/daemon/gdm-display-store.h
-@@ -49,7 +49,7 @@ typedef struct
- void  (* display_added)(GdmDisplayStore *display_store,
- const char  *id);
- void  (* display_removed)  (GdmDisplayStore *display_store,
-- 

  1   2   3   4   >