[gentoo-commits] repo/gentoo:master commit in: app-emulation/sen/

2019-03-20 Thread Lars Wendler
commit: 2a36d9fa5a5fa9533f49a2ceabb9541c4cc99e4c
Author: Lars Wendler  gentoo  org>
AuthorDate: Thu Mar 21 00:05:11 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Thu Mar 21 00:05:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a36d9fa

app-emulation/sen: Drop python3_7 support. Missing deps.

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

 app-emulation/sen/sen-0.6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/sen/sen-0.6.1.ebuild 
b/app-emulation/sen/sen-0.6.1.ebuild
index ebc569b9560..a1159468c54 100644
--- a/app-emulation/sen/sen-0.6.1.ebuild
+++ b/app-emulation/sen/sen-0.6.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{5,6,7} )
+PYTHON_COMPAT=( python3_{5,6} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: sys-boot/grub/

2019-03-20 Thread Mike Gilbert
commit: 5e01aacf1d9da5517378b85d4e660bf51244e805
Author: Mike Gilbert  gentoo  org>
AuthorDate: Thu Mar 21 03:38:48 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Mar 21 03:38:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e01aacf

sys-boot/grub: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12_p83
Signed-off-by: Mike Gilbert  gentoo.org>

 sys-boot/grub/grub-2.02-r1.ebuild | 311 -
 sys-boot/grub/grub-2.02-r2.ebuild | 312 --
 2 files changed, 623 deletions(-)

diff --git a/sys-boot/grub/grub-2.02-r1.ebuild 
b/sys-boot/grub/grub-2.02-r1.ebuild
deleted file mode 100644
index 95b66ff669f..000
--- a/sys-boot/grub/grub-2.02-r1.ebuild
+++ /dev/null
@@ -1,311 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-GRUB_AUTOGEN=1
-GRUB_AUTORECONF=1
-
-if [[ -n ${GRUB_AUTOGEN} ]]; then
-   PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5,3_6} )
-   inherit python-any-r1
-fi
-
-if [[ -n ${GRUB_AUTORECONF} ]]; then
-   WANT_LIBTOOL=none
-   inherit autotools
-fi
-
-inherit bash-completion-r1 flag-o-matic multibuild pax-utils toolchain-funcs
-
-if [[ ${PV} !=  ]]; then
-   if [[ ${PV} == *_alpha* || ${PV} == *_beta* || ${PV} == *_rc* ]]; then
-   # The quote style is to work with <=bash-4.2 and >=bash-4.3 
#503860
-   MY_P=${P/_/'~'}
-   SRC_URI="mirror://gnu-alpha/${PN}/${MY_P}.tar.xz"
-   S=${WORKDIR}/${MY_P}
-   else
-   SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
-   S=${WORKDIR}/${P%_*}
-   fi
-   KEYWORDS="amd64 ~arm ~arm64 x86"
-else
-   inherit git-r3
-   EGIT_REPO_URI="git://git.sv.gnu.org/grub.git
-   http://git.savannah.gnu.org/r/grub.git;
-fi
-
-PATCHES=(
-   "${FILESDIR}"/gfxpayload.patch
-   "${FILESDIR}"/grub-2.02_beta2-KERNEL_GLOBS.patch
-   "${FILESDIR}"/2.02-multiple-early-initrd.patch
-   "${FILESDIR}"/2.02-freetype-capitalise-variables.patch
-   "${FILESDIR}"/2.02-freetype-pkg-config.patch
-)
-
-DEJAVU=dejavu-sans-ttf-2.37
-UNIFONT=unifont-9.0.06
-SRC_URI+=" fonts? ( mirror://gnu/unifont/${UNIFONT}/${UNIFONT}.pcf.gz )
-   themes? ( mirror://sourceforge/dejavu/${DEJAVU}.zip )"
-
-DESCRIPTION="GNU GRUB boot loader"
-HOMEPAGE="https://www.gnu.org/software/grub/;
-
-# Includes licenses for dejavu and unifont
-LICENSE="GPL-3 fonts? ( GPL-2-with-font-exception ) themes? ( BitstreamVera )"
-SLOT="2/${PVR}"
-IUSE="debug device-mapper doc efiemu +fonts mount multislot nls static sdl 
test +themes truetype libzfs"
-
-GRUB_ALL_PLATFORMS=( coreboot efi-32 efi-64 emu ieee1275 loongson multiboot 
qemu qemu-mips pc uboot xen xen-32 )
-IUSE+=" ${GRUB_ALL_PLATFORMS[@]/#/grub_platforms_}"
-
-REQUIRED_USE="
-   grub_platforms_coreboot? ( fonts )
-   grub_platforms_qemu? ( fonts )
-   grub_platforms_ieee1275? ( fonts )
-   grub_platforms_loongson? ( fonts )
-"
-
-# os-prober: Used on runtime to detect other OSes
-# xorriso (dev-libs/libisoburn): Used on runtime for mkrescue
-COMMON_DEPEND="
-   app-arch/xz-utils
-   >=sys-libs/ncurses-5.2-r5:0=
-   debug? (
-   sdl? ( media-libs/libsdl )
-   )
-   device-mapper? ( >=sys-fs/lvm2-2.02.45 )
-   libzfs? ( sys-fs/zfs )
-   mount? ( sys-fs/fuse:0 )
-   truetype? ( media-libs/freetype:2= )
-   ppc? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils )
-   ppc64? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils )
-"
-DEPEND="${COMMON_DEPEND}
-   ${PYTHON_DEPS}
-   app-misc/pax-utils
-   sys-devel/flex
-   sys-devel/bison
-   sys-apps/help2man
-   sys-apps/texinfo
-   fonts? (
-   media-libs/freetype:2
-   virtual/pkgconfig
-   )
-   grub_platforms_xen? ( app-emulation/xen-tools:= )
-   grub_platforms_xen-32? ( app-emulation/xen-tools:= )
-   static? (
-   app-arch/xz-utils[static-libs(+)]
-   truetype? (
-   app-arch/bzip2[static-libs(+)]
-   media-libs/freetype[static-libs(+)]
-   sys-libs/zlib[static-libs(+)]
-   virtual/pkgconfig
-   )
-   )
-   test? (
-   app-admin/genromfs
-   app-arch/cpio
-   app-arch/lzop
-   app-emulation/qemu
-   dev-libs/libisoburn
-   sys-apps/miscfiles
-   sys-block/parted
-   sys-fs/squashfs-tools
-   )
-   themes? (
-   app-arch/unzip
-   media-libs/freetype:2
-   virtual/pkgconfig
-   )
-   truetype? ( virtual/pkgconfig )
-"
-RDEPEND="${COMMON_DEPEND}
-   kernel_linux? (
-   grub_platforms_efi-32? ( sys-boot/efibootmgr )
-   grub_platforms_efi-64? ( 

[gentoo-commits] repo/gentoo:master commit in: sys-boot/grub/

2019-03-20 Thread Mike Gilbert
commit: 598e8b3f76a437208ff1a34e33aa68dd8d518475
Author: Mike Gilbert  gentoo  org>
AuthorDate: Thu Mar 21 03:38:07 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Mar 21 03:38:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=598e8b3f

sys-boot/grub: 2.02-r3 stable on amd64 and x86

Closes: https://bugs.gentoo.org/681008
Package-Manager: Portage-2.3.62, Repoman-2.3.12_p83
Signed-off-by: Mike Gilbert  gentoo.org>

 sys-boot/grub/grub-2.02-r3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-boot/grub/grub-2.02-r3.ebuild 
b/sys-boot/grub/grub-2.02-r3.ebuild
index f40c9c79529..8067036a24c 100644
--- a/sys-boot/grub/grub-2.02-r3.ebuild
+++ b/sys-boot/grub/grub-2.02-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -28,7 +28,7 @@ if [[ ${PV} !=  ]]; then
SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
S=${WORKDIR}/${P%_*}
fi
-   KEYWORDS="~amd64 ~arm ~arm64 ppc ppc64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 x86"
 else
inherit git-r3
EGIT_REPO_URI="git://git.sv.gnu.org/grub.git



[gentoo-commits] repo/gentoo:master commit in: sys-boot/grub/

2019-03-20 Thread Mike Gilbert
commit: 6c5b8442cca0ee8ba9173106628abcf9a14fc56a
Author: Mike Gilbert  gentoo  org>
AuthorDate: Thu Mar 21 04:18:45 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Mar 21 04:18:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c5b8442

sys-boot/grub: EAPI 7

Package-Manager: Portage-2.3.62, Repoman-2.3.12_p83
Signed-off-by: Mike Gilbert  gentoo.org>

 sys-boot/grub/grub-.ebuild | 58 +-
 1 file changed, 29 insertions(+), 29 deletions(-)

diff --git a/sys-boot/grub/grub-.ebuild b/sys-boot/grub/grub-.ebuild
index c35bda09b14..dea453ed94f 100644
--- a/sys-boot/grub/grub-.ebuild
+++ b/sys-boot/grub/grub-.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
 
 if [[ ${PV} ==   ]]; then
GRUB_AUTORECONF=1
@@ -64,22 +64,7 @@ REQUIRED_USE="
grub_platforms_loongson? ( fonts )
 "
 
-# os-prober: Used on runtime to detect other OSes
-# xorriso (dev-libs/libisoburn): Used on runtime for mkrescue
-COMMON_DEPEND="
-   app-arch/xz-utils
-   >=sys-libs/ncurses-5.2-r5:0=
-   debug? (
-   sdl? ( media-libs/libsdl )
-   )
-   device-mapper? ( >=sys-fs/lvm2-2.02.45 )
-   libzfs? ( sys-fs/zfs )
-   mount? ( sys-fs/fuse:0 )
-   truetype? ( media-libs/freetype:2= )
-   ppc? ( >=sys-apps/ibm-powerpc-utils-1.3.5 )
-   ppc64? ( >=sys-apps/ibm-powerpc-utils-1.3.5 )
-"
-DEPEND="${COMMON_DEPEND}
+BDEPEND="
${PYTHON_DEPS}
app-misc/pax-utils
sys-devel/flex
@@ -90,17 +75,6 @@ DEPEND="${COMMON_DEPEND}
media-libs/freetype:2
virtual/pkgconfig
)
-   grub_platforms_xen? ( app-emulation/xen-tools:= )
-   grub_platforms_xen-32? ( app-emulation/xen-tools:= )
-   static? (
-   app-arch/xz-utils[static-libs(+)]
-   truetype? (
-   app-arch/bzip2[static-libs(+)]
-   media-libs/freetype[static-libs(+)]
-   sys-libs/zlib[static-libs(+)]
-   virtual/pkgconfig
-   )
-   )
test? (
app-admin/genromfs
app-arch/cpio
@@ -118,6 +92,32 @@ DEPEND="${COMMON_DEPEND}
)
truetype? ( virtual/pkgconfig )
 "
+COMMON_DEPEND="
+   app-arch/xz-utils
+   >=sys-libs/ncurses-5.2-r5:0=
+   debug? (
+   sdl? ( media-libs/libsdl )
+   )
+   device-mapper? ( >=sys-fs/lvm2-2.02.45 )
+   libzfs? ( sys-fs/zfs )
+   mount? ( sys-fs/fuse:0 )
+   truetype? ( media-libs/freetype:2= )
+   ppc? ( >=sys-apps/ibm-powerpc-utils-1.3.5 )
+   ppc64? ( >=sys-apps/ibm-powerpc-utils-1.3.5 )
+   grub_platforms_xen? ( app-emulation/xen-tools:= )
+   grub_platforms_xen-32? ( app-emulation/xen-tools:= )
+"
+DEPEND="${COMMON_DEPEND}
+   static? (
+   app-arch/xz-utils[static-libs(+)]
+   truetype? (
+   app-arch/bzip2[static-libs(+)]
+   media-libs/freetype[static-libs(+)]
+   sys-libs/zlib[static-libs(+)]
+   virtual/pkgconfig
+   )
+   )
+"
 RDEPEND="${COMMON_DEPEND}
kernel_linux? (
grub_platforms_efi-32? ( sys-boot/efibootmgr )
@@ -293,7 +293,7 @@ src_install() {
einstalldocs
 
if use multislot; then
-   mv "${ED%/}"/usr/share/info/grub{,2}.info || die
+   mv "${ED}"/usr/share/info/grub{,2}.info || die
fi
 
insinto /etc/default



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

2019-03-20 Thread Matthew Thode
commit: 82378b080eade38264a78c6bd0ea1132e2bb26a0
Author: Matthew Thode  gentoo  org>
AuthorDate: Wed Mar 20 23:35:14 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Wed Mar 20 23:35:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82378b08

media-sound/pulseeffects: 4.5.7 bump

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

 media-sound/pulseeffects/Manifest  |  1 +
 media-sound/pulseeffects/pulseeffects-4.5.7.ebuild | 71 ++
 2 files changed, 72 insertions(+)

diff --git a/media-sound/pulseeffects/Manifest 
b/media-sound/pulseeffects/Manifest
index e167e048418..6768d1ca8e1 100644
--- a/media-sound/pulseeffects/Manifest
+++ b/media-sound/pulseeffects/Manifest
@@ -2,3 +2,4 @@ DIST pulseeffects-3.2.3.tar.gz 648968 BLAKE2B 
aef2aaacacc41020c5f14582c91b53ba84
 DIST pulseeffects-4.4.7.tar.gz 1082596 BLAKE2B 
3265507191f5fca405282d8bdf9cf078023e80d2ca8f3a8bb999f7828f5220ca61b68ce01dc80e2d066a0d759b83229eabd523aff71106bd4024067afd1a8220
 SHA512 
243bd23d107f22a2a4b5934fb67bc5c059f278f2ec824814791ea24429e8d53844ffd71c9c21c35209261f4a0a4633827362bfd43355437a10944bbfd9a25421
 DIST pulseeffects-4.5.5.tar.gz 1783582 BLAKE2B 
4c2154fad61705811d2e2135bdacc7f1e31d499ea65fbbb044896ba37cfde9ef4cd925fe7cc390c5611fb294d57a7297c7e54c76b3d69505c9b595d47259ad9a
 SHA512 
fe45097bcd5aa9754c612c52cfba7d06d14185e18a75e5ae2a257733159f0288897e4f60d147e164f4bcafcd23978e23a006753b2b26e26613809863895cfab5
 DIST pulseeffects-4.5.6.tar.gz 1822218 BLAKE2B 
def674bb35970ceb2a440acac20ebd5c406ae1691b58e8e8cdee3f0eacc7077daf989bcd94a962a1ef1054bc81f68108fd445adebb32a96940a91306025d72a2
 SHA512 
c18e4b52c4eff15db40c398b0a60b7b2e7a069142552a9801d0a580f52145d8b13b4507a9d37aa49919bbdc144b85b3f02e140aca671d9dedfb521ed34dbc99e
+DIST pulseeffects-4.5.7.tar.gz 1826584 BLAKE2B 
8b58c314bba261b5154feaeab210e69be9773700cf31123bd964b1183e72c412576ce4743a112276abf0602ac5c53fb1580c62530478a7f9c144c1f0d6c70a12
 SHA512 
76d1772b704aef58b9137d30d5ebea7a3fbe20b389d052e1a6cb96a9705f8678145df39a4592ce49790beaeffe953701a973a86e6d59b39563b83d064e8b4320

diff --git a/media-sound/pulseeffects/pulseeffects-4.5.7.ebuild 
b/media-sound/pulseeffects/pulseeffects-4.5.7.ebuild
new file mode 100644
index 000..c45904327f5
--- /dev/null
+++ b/media-sound/pulseeffects/pulseeffects-4.5.7.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit gnome2-utils meson
+
+DESCRIPTION="Limiter, compressor, reverberation, equalizer auto volume effects 
for Pulseaudio"
+HOMEPAGE="https://github.com/wwmm/pulseeffects;
+
+if [[ ${PV} == * ]];then
+   inherit git-r3
+   SRC_URI=""
+   EGIT_REPO_URI="${HOMEPAGE}"
+else
+   SRC_URI="${HOMEPAGE}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+   KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="bs2b calf mda-lv2 rubberband"
+
+#TODO: optional : lilv, zam-plugins (check from archlinux pkg)
+RDEPEND="
+   >=dev-libs/boost-1.41
+   >=dev-cpp/glibmm-2.56.0
+   >=dev-cpp/gtkmm-3.20:3.0
+   >=dev-libs/glib-2.56:2
+   >=dev-libs/libsigc++-2.10:2
+   >=x11-libs/gtk+-3.18:3
+   >=media-libs/lilv-0.24.2-r1
+   >=media-libs/lsp-plugins-1.1.7[lv2]
+   >=media-libs/gstreamer-1.12.0:1.0
+   >=media-libs/gst-plugins-good-1.12.0:1.0
+   >=media-libs/gst-plugins-bad-1.12.0:1.0
+   bs2b? ( >=media-plugins/gst-plugins-bs2b-1.12.0:1.0 )
+   >=media-plugins/gst-plugins-ladspa-1.12.0:1.0
+   >=media-plugins/gst-plugins-lv2-1.12.0:1.0
+   >=media-plugins/gst-plugins-pulse-1.12.0:1.0
+   calf? ( >=media-plugins/calf-0.90.0[lv2] )
+   mda-lv2? ( media-plugins/mda-lv2 )
+   rubberband? ( media-libs/rubberband )
+   >=media-libs/zita-convolver-3.0.0
+   media-libs/libebur128
+   media-sound/pulseaudio
+   sys-apps/dbus"
+# see 47a950b00c6db383ad07502a8fc396ecca98c1ce for dev-libs/appstream-glib
+# and sys-devel/gettext depends reasoning
+DEPEND="
+   ${RDEPEND}
+   dev-libs/appstream-glib
+   sys-devel/gettext
+"
+BDEPEND="
+   >=sys-devel/gcc-7.3.0
+   dev-util/itstool
+   virtual/pkgconfig
+"
+
+pkg_postinst(){
+   gnome2_gconf_install
+   gnome2_schemas_update
+   gnome2_icon_cache_update
+}
+
+pkg_postrm(){
+   gnome2_gconf_uninstall
+   gnome2_schemas_update
+   gnome2_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/icinga2/

2019-03-20 Thread Matthew Thode
commit: 85e58a6302ecedddf70df5f8b8805275b9b4be74
Author: Matthew Thode  gentoo  org>
AuthorDate: Wed Mar 20 23:30:34 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Wed Mar 20 23:35:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85e58a63

net-analyzer/icinga2: 2.10.4 bump

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

 net-analyzer/icinga2/Manifest  |   1 +
 net-analyzer/icinga2/icinga2-2.10.4.ebuild | 172 +
 2 files changed, 173 insertions(+)

diff --git a/net-analyzer/icinga2/Manifest b/net-analyzer/icinga2/Manifest
index c43274b9ab1..777d630cff7 100644
--- a/net-analyzer/icinga2/Manifest
+++ b/net-analyzer/icinga2/Manifest
@@ -1,4 +1,5 @@
 DIST icinga2-2.10.2.tar.gz 4408535 BLAKE2B 
f650826feee13695c42d7e6ced45e3009ac607d6af0bcb16c3f93f8099017a74de40e33deefaffb230a519f9dabf410c03745309d203ede71a4d7076ba8c9121
 SHA512 
2fb30673fbeef395a43eb7947c0c0217d7c0fc9c149bb244d16dae461dd5728a2540e88bcb351bac2ec5d58d6896f8a4789ced5647cdac8cecf0623fff12054b
 DIST icinga2-2.10.3.tar.gz 4421984 BLAKE2B 
130279f3fbe90e9cc311d98ca8ff879c3dca34b61e8e8b3f7db30b7cb116361decf2e8fcc44c34bab863ef654a345f7cafc14c0179ec83dc3a2fe84ef103575e
 SHA512 
c3b4b6e66889e30ed5c73b3adf55bec9c547f4f3a81a5511b981d8e6d4b1e370bc71263b3249b625769cea1d13de5aa62f3c039ac5315013c13bc02009e70967
+DIST icinga2-2.10.4.tar.gz 5129248 BLAKE2B 
420330cfdbecce98e9b825527c38d4606c0f3e3a74c6798b7012dae2c4ebc583317e60a91c7966d68de17359b6af676f5accd71d0fece505a17a3ca92f00e05e
 SHA512 
7277dd315541341ee68f2e83035210c233d6556d36c26d3211b85e2d43759627c73e881edac8e5e1d266c6b1eef19c5e1eeb8e5a77a237e688039ba88a58438c
 DIST icinga2-2.8.4.tar.gz 2510333 BLAKE2B 
f551a5eadc93d8455612af40e34a0922bc75f41b8064f9989c8f0c28dc2c3fb18963cf9b3272efa29f03973e7cf5824762bebff1bfa1a23c4ba39c93fc29c8e5
 SHA512 
b2cb5989962ac65da927cbdbac1b3345c913321d507b5113f32dd90bf969b2513478e68d52b9cd4cf255057d74428f9e42067288b7ddc59ad060ca7b84f4f114
 DIST icinga2-2.9.1.tar.gz 2193190 BLAKE2B 
29be491c4b43e218ef8aaa2128822040ccb0989e91d83f033cf7873216e4307cdbc8ee9052d79fd0c396efeb68759acc97938e3ee596e0820e3f6c8f73bc
 SHA512 
1d69a24f85249386e30ff1625cf522ba58e5f2ab641dbe950bf1764324a6c7516d1532942954e842002566823b0f30383747d5ec8b7bd36705aa5f0ccfa29533

diff --git a/net-analyzer/icinga2/icinga2-2.10.4.ebuild 
b/net-analyzer/icinga2/icinga2-2.10.4.ebuild
new file mode 100644
index 000..8a9695a5e27
--- /dev/null
+++ b/net-analyzer/icinga2/icinga2-2.10.4.ebuild
@@ -0,0 +1,172 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+if [[ ${PV} !=  ]]; then
+   inherit cmake-utils depend.apache eutils systemd toolchain-funcs user 
wxwidgets
+   SRC_URI="https://github.com/Icinga/icinga2/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+else
+   inherit cmake-utils depend.apache eutils git-r3 systemd toolchain-funcs 
user wxwidgets
+   EGIT_REPO_URI="https://github.com/Icinga/icinga2.git;
+   EGIT_BRANCH="master"
+   KEYWORDS=""
+fi
+
+DESCRIPTION="Distributed, general purpose, network monitoring engine"
+HOMEPAGE="http://icinga.org/icinga2;
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="classicui console libressl lto mail mariadb minimal +mysql nano-syntax 
+plugins postgres systemd +vim-syntax"
+WX_GTK_VER="3.0"
+
+CDEPEND="
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   >=dev-libs/boost-1.58-r1
+   console? ( dev-libs/libedit )
+   mariadb? ( dev-db/mariadb-connector-c:= )
+   mysql? ( dev-db/mysql-connector-c:= )
+   postgres? ( dev-db/postgresql:= )
+   dev-libs/yajl"
+
+DEPEND="
+   ${CDEPEND}
+   sys-devel/bison
+   >=sys-devel/flex-2.5.35"
+
+RDEPEND="
+   ${CDEPEND}
+   plugins? ( || (
+   net-analyzer/monitoring-plugins
+   net-analyzer/nagios-plugins
+   ) )
+   mail? ( virtual/mailx )
+   classicui? ( net-analyzer/icinga[web] )"
+
+REQUIRED_USE="!minimal? ( || ( mariadb mysql postgres ) )"
+
+want_apache2
+
+pkg_setup() {
+   depend.apache_pkg_setup
+   enewgroup icinga
+   enewgroup icingacmd
+   enewgroup nagios  # for plugins
+   enewuser icinga -1 -1 /var/lib/icinga2 "icinga,icingacmd,nagios"
+}
+
+src_configure() {
+   sed -i 's/FLAGS\}\ \-g/FLAGS\}\ \-lpthread\ /g' CMakeLists.txt || die
+   local mycmakeargs=(
+   -DICINGA2_UNITY_BUILD=FALSE
+   -DCMAKE_VERBOSE_MAKEFILE=ON
+   -DCMAKE_BUILD_TYPE=None
+   -DCMAKE_INSTALL_PREFIX=/usr
+   -DCMAKE_INSTALL_SYSCONFDIR=/etc
+   -DCMAKE_INSTALL_LOCALSTATEDIR=/var
+   -DICINGA2_SYSCONFIGFILE=/etc/conf.d/icinga2
+   -DICINGA2_PLUGINDIR="/usr/$(get_libdir)/nagios/plugins"
+   -DICINGA2_USER=icinga
+   

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

2019-03-20 Thread Matthew Thode
commit: aace9367076c4aca4d19559bb48b02742f119f9a
Author: Matthew Thode  gentoo  org>
AuthorDate: Wed Mar 20 23:33:49 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Wed Mar 20 23:35:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aace9367

media-libs/lsp-plugins: 1.1.7 bump

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

 media-libs/lsp-plugins/Manifest |  1 +
 media-libs/lsp-plugins/lsp-plugins-1.1.7.ebuild | 52 +
 2 files changed, 53 insertions(+)

diff --git a/media-libs/lsp-plugins/Manifest b/media-libs/lsp-plugins/Manifest
index 74f90e7c158..1fe4e34aaba 100644
--- a/media-libs/lsp-plugins/Manifest
+++ b/media-libs/lsp-plugins/Manifest
@@ -1 +1,2 @@
 DIST lsp-plugins-1.1.5.tar.gz 51911033 BLAKE2B 
ec9b6f3715f1043537ebe35d14abda85b8dfe23d52d335c54c02eb2867753c9b256a5acd71537c95d6da273d054f0e0c9439fe2f81f6d6ced3087de93bfaef60
 SHA512 
42b9cd102247a0165a32f82a5a7ce05928a9703c80f215783ad67020d1f975d1c334af1f86c9f17e76bea3fd90bcf5c47fff5618875038b3655621880b60a699
+DIST lsp-plugins-1.1.7.tar.gz 52408312 BLAKE2B 
1763d7aaff60c4bf3185325789925dc7e5ea1052907f0d1ee3af7c09d39d1f49dfdda537c29d1d2e1ed2bd041345fb3f32a444aa403521f6d4fbd7a952f9f7cb
 SHA512 
e98000c98464abc1db75e044bc1b7adb535b94fbe1025a52baf0a2c92bcd21039c9b330e790f0607b4747356aff3f7d4ae20e666a9135108e875057c5459c8ae

diff --git a/media-libs/lsp-plugins/lsp-plugins-1.1.7.ebuild 
b/media-libs/lsp-plugins/lsp-plugins-1.1.7.ebuild
new file mode 100644
index 000..f681f70629d
--- /dev/null
+++ b/media-libs/lsp-plugins/lsp-plugins-1.1.7.ebuild
@@ -0,0 +1,52 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Linux Studio Plugins"
+HOMEPAGE="https://lsp-plug.in;
+
+if [[ ${PV} == * ]];then
+   inherit git-r3
+   SRC_URI=""
+   EGIT_REPO_URI="https://github.com/sadko4u/lsp-plugins;
+   EGIT_BRANCH="devel"
+else
+   SRC_URI="https://github.com/sadko4u/lsp-plugins/archive/${P}.tar.gz;
+   S="${WORKDIR}/${PN}-${P}"
+   KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="LGPL-3"
+SLOT="0"
+IUSE="doc jack ladspa +lv2"
+REQUIRED_USE="|| ( jack ladspa lv2 )"
+
+DEPEND="
+   dev-libs/expat
+   media-libs/libsndfile
+   doc? ( dev-lang/php:* )
+   jack? (
+   virtual/jack
+   x11-libs/cairo[X]
+   )
+   ladspa? ( media-libs/ladspa-sdk )
+   lv2? (
+   media-libs/lv2
+   x11-libs/cairo[X]
+   )
+"
+RDEPEND="${DEPEND}"
+BDEPEND=""
+
+src_compile(){
+   use doc && MODULES+="doc"
+   use jack && MODULES+=" jack"
+   use ladspa && MODULES+=" ladspa"
+   use lv2 && MODULES+=" lv2"
+   emake BUILD_MODULES="${MODULES}"
+}
+
+src_install(){
+   emake PREFIX="/usr" DESTDIR="${D}" LIB_PATH="/usr/$(get_libdir)" install
+}



[gentoo-commits] repo/gentoo:master commit in: app-emulation/sen/

2019-03-20 Thread Lars Wendler
commit: 41d171b0b6edf42d3d8b8280fd9c628ba7d7b1ed
Author: Nelo-T. Wallus  wallus  de>
AuthorDate: Wed Mar 20 22:26:52 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Mar 20 23:30:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41d171b0

app-emulation/sen: Bump to 0.6.1

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Nelo-T. Wallus  wallus.de>
Closes: https://github.com/gentoo/gentoo/pull/11428
Signed-off-by: Lars Wendler  gentoo.org>

 app-emulation/sen/Manifest |  1 +
 app-emulation/sen/sen-0.6.1.ebuild | 37 +
 2 files changed, 38 insertions(+)

diff --git a/app-emulation/sen/Manifest b/app-emulation/sen/Manifest
index aeedd7ece92..a730e220156 100644
--- a/app-emulation/sen/Manifest
+++ b/app-emulation/sen/Manifest
@@ -1,2 +1,3 @@
 DIST sen-0.5.1.tar.gz 70930 BLAKE2B 
93758076d014a36996ece021f1de2f3ece749453d32554fe79ffec0ab1101bf4cc5c11d80934817fa5b10d73b811e738c87ce8e745a642507ec8406ad2eb59fa
 SHA512 
0faf2c12e6361d3b4e9d093e0830867976a1fbd03cadc7a527c88460244532a8b636d8d4b732bb0c7f4041a0bb0819d20caabe62327b5edbf731b4eb8a4898a6
 DIST sen-0.6.0.tar.gz 55113 BLAKE2B 
5f6affbea94005c0adc9ac544d40d94cd9a9eca930b979c19174d21d73fdd887d21802a5241c02ba212a45c4a7873f22c7372aeb69955e1f97e444ef74d91929
 SHA512 
5573a0d6da5ae395e947bf34c54313e4e3a0251dc1868c52bbfe9ad11463397da83a0c9ac3f1912da2e6f49341c84d40dcab900d41b4a32ebac44d1dde3ac82b
+DIST sen-0.6.1.tar.gz 55357 BLAKE2B 
0d58f0ea11eeff29161925018425c918b3260c754d1b658e2ebd3c88e0c371feb0f1815af61979206bee529c369a90ace895d25e645ef0d76c563abd8b74c943
 SHA512 
2f1cadf745ca7e12d3e92534e76984072b9678055b9911f76b1a6d3cbd43266ad1eeb4d5e7bb8742db91c4da4aef684fa644c33de6fa2494c37688e9747e0efa

diff --git a/app-emulation/sen/sen-0.6.1.ebuild 
b/app-emulation/sen/sen-0.6.1.ebuild
new file mode 100644
index 000..ebc569b9560
--- /dev/null
+++ b/app-emulation/sen/sen-0.6.1.ebuild
@@ -0,0 +1,37 @@
+# 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
+
+DESCRIPTION="Terminal User Interface for docker engine"
+HOMEPAGE="https://github.com/TomasTomecek/sen;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+RDEPEND="dev-python/urwid[${PYTHON_USEDEP}]
+   dev-python/urwidtrees[${PYTHON_USEDEP}]
+   dev-python/docker-py[${PYTHON_USEDEP}]
+   "
+DEPEND="${RDEPEND}
+   test? (
+   dev-python/pytest[${PYTHON_USEDEP}]
+   dev-python/flexmock[${PYTHON_USEDEP}]
+   )
+   "
+
+python_install_all() {
+   distutils-r1_python_install_all
+   dodoc -r docs
+}
+
+python_test() {
+   pytest -vv tests || die "pytest failed"
+}



[gentoo-commits] proj/genkernel:master commit in: /

2019-03-20 Thread Thomas Deutschmann
commit: 65207ce9470fe81d94450e453765af9633fedc4e
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Mar 20 23:25:52 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Mar 20 23:25:52 2019 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=65207ce9

gen_initramfs: catch lddtree failure for real.

Fixes: https://bugs.gentoo.org/618056
Signed-off-by: Thomas Deutschmann  gentoo.org>

 gen_initramfs.sh | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/gen_initramfs.sh b/gen_initramfs.sh
index 420e9fe..9c50179 100755
--- a/gen_initramfs.sh
+++ b/gen_initramfs.sh
@@ -972,6 +972,13 @@ append_data() {
 }
 
 create_initramfs() {
+   local lddtree_testfile=`which cpio 2>/dev/null`
+   if [[ -z "${lddtree_testfile}" || ! -e "${lddtree_testfile}" ]]; then
+   print_warning 1 "cpio binary not found -- cannot check if 
lddtree is working!"
+   elif ! lddtree "${lddtree_testfile}" 1>/dev/null 2>&1; then
+   gen_die "'lddtree ${lddtree_testfile}' failed -- cannot 
generate initramfs without working lddtree!"
+   fi
+
local compress_ext=""
print_info 1 "initramfs: >> Initializing..."
 



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

2019-03-20 Thread Mike Gilbert
commit: 45dd509b5c76f7200afc50275b532571a4116a72
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed Mar 20 23:55:06 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed Mar 20 23:55:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45dd509b

www-client/chromium: remove old

Package-Manager: Portage-2.3.62, Repoman-2.3.12_p83
Signed-off-by: Mike Gilbert  gentoo.org>

 www-client/chromium/Manifest  |   2 -
 www-client/chromium/chromium-72.0.3626.121.ebuild | 713 --
 2 files changed, 715 deletions(-)

diff --git a/www-client/chromium/Manifest b/www-client/chromium/Manifest
index 39e4a293d7c..eaef6105849 100644
--- a/www-client/chromium/Manifest
+++ b/www-client/chromium/Manifest
@@ -1,3 +1 @@
-DIST chromium-72.0.3626.121.tar.xz 686420260 BLAKE2B 
a605ba62b2d568df926beba0c4336f2bd844feae2e15def3f434871124fc1fc3f59dd2423cb2adcdeb30fad156a27a8a260818e29829cd71e79361bc7fbd9329
 SHA512 
0bbeba7fa662d92ad60fdb56b3a73b79fc40ecb1499bb3b9a50b78ab7900b7a4de83f271c1c299e386dc9f72bfb2cbf71f83a388c6e14e288ab42b2b673fce96
 DIST chromium-73.0.3683.75.tar.xz 710439908 BLAKE2B 
23ed7facf2f67e9bbfc2f1baf434892773d9d63dab10cebab350c3b0b2c75a07f84a4f677e01563a441cc3bae0d42212b3eb28b6d7c573b0137d25e478064a3b
 SHA512 
52bd1dac782a2f7960eba48446d4dfc4c6c13c8e9de21bbee250fad2802beb222cff7bea9878c7338926030aa3aa7ffd2dd1238d35e261a0d766b2d9974fdaf6
-DIST chromium-webrtc-includes-r1.patch.xz 57820 BLAKE2B 
8e113680254b4834abda72c335a8f0af7211c5982c91e52372945f9a57c5558bd6772300ffefb475b450c40ffe66cd627aba34d33af101fe402815c2a16fe6c8
 SHA512 
cd4562ec32a044925afc65d9cba62310acc515db7cab0ee3aa0f3afe11672b3e7046ca937d8739c4feca436af7d9cf0f7860716a397c8aa5d5ae647b5eaf1ac0

diff --git a/www-client/chromium/chromium-72.0.3626.121.ebuild 
b/www-client/chromium/chromium-72.0.3626.121.ebuild
deleted file mode 100644
index fd355e67ee9..000
--- a/www-client/chromium/chromium-72.0.3626.121.ebuild
+++ /dev/null
@@ -1,713 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python2_7 )
-
-CHROMIUM_LANGS="am ar bg bn ca cs da de el en-GB es es-419 et fa fi fil fr gu 
he
-   hi hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt-BR pt-PT ro ru sk sl 
sr
-   sv sw ta te th tr uk vi zh-CN zh-TW"
-
-inherit check-reqs chromium-2 desktop flag-o-matic multilib ninja-utils 
pax-utils portability python-any-r1 readme.gentoo-r1 toolchain-funcs xdg-utils
-
-DESCRIPTION="Open-source version of Google Chrome web browser"
-HOMEPAGE="http://chromium.org/;
-SRC_URI="https://commondatastorage.googleapis.com/chromium-browser-official/${P}.tar.xz
-   
https://dev.gentoo.org/~floppym/dist/chromium-webrtc-includes-r1.patch.xz;
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~x86"
-IUSE="+closure-compile component-build cups gnome-keyring +hangouts 
jumbo-build kerberos neon pic +proprietary-codecs pulseaudio selinux +suid 
+system-ffmpeg +system-icu +system-libvpx +tcmalloc widevine"
-RESTRICT="!system-ffmpeg? ( proprietary-codecs? ( bindist ) )"
-
-COMMON_DEPEND="
-   >=app-accessibility/at-spi2-atk-2.26:2
-   app-arch/bzip2:=
-   cups? ( >=net-print/cups-1.3.11:= )
-   >=dev-libs/atk-2.26
-   dev-libs/expat:=
-   dev-libs/glib:2
-   system-icu? ( >=dev-libs/icu-59:= )
-   >=dev-libs/libxml2-2.9.4-r3:=[icu]
-   dev-libs/libxslt:=
-   dev-libs/nspr:=
-   >=dev-libs/nss-3.26:=
-   >=dev-libs/re2-0.2016.11.01:=
-   gnome-keyring? ( >=gnome-base/libgnome-keyring-3.12:= )
-   >=media-libs/alsa-lib-1.0.19:=
-   media-libs/fontconfig:=
-   media-libs/freetype:=
-   >=media-libs/harfbuzz-2.0.0:0=[icu(-)]
-   media-libs/libjpeg-turbo:=
-   media-libs/libpng:=
-   system-libvpx? ( media-libs/libvpx:=[postproc,svc] )
-   >=media-libs/openh264-1.6.0:=
-   pulseaudio? ( media-sound/pulseaudio:= )
-   system-ffmpeg? (
-   >=media-video/ffmpeg-4:=
-   || (
-   media-video/ffmpeg[-samba]
-   >=net-fs/samba-4.5.10-r1[-debug(-)]
-   )
-   !=net-fs/samba-4.5.12-r0
-   media-libs/opus:=
-   )
-   sys-apps/dbus:=
-   sys-apps/pciutils:=
-   virtual/udev
-   x11-libs/cairo:=
-   x11-libs/gdk-pixbuf:2
-   x11-libs/gtk+:3[X]
-   x11-libs/libX11:=
-   x11-libs/libXcomposite:=
-   x11-libs/libXcursor:=
-   x11-libs/libXdamage:=
-   x11-libs/libXext:=
-   x11-libs/libXfixes:=
-   >=x11-libs/libXi-1.6.0:=
-   x11-libs/libXrandr:=
-   x11-libs/libXrender:=
-   x11-libs/libXScrnSaver:=
-   x11-libs/libXtst:=
-   x11-libs/pango:=
-   app-arch/snappy:=
-   media-libs/flac:=
-   >=media-libs/libwebp-0.4.0:=
-   sys-libs/zlib:=[minizip]
-   kerberos? ( virtual/krb5 )
-"
-# For nvidia-drivers blocker, see bug #413637 .

[gentoo-commits] repo/gentoo:master commit in: www-plugins/chrome-binary-plugins/

2019-03-20 Thread Mike Gilbert
commit: 23595268f097f4978cd09eaf062ef5f16c4e93c8
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed Mar 20 23:53:34 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed Mar 20 23:53:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23595268

www-plugins/chrome-binary-plugins: automated update

Package-Manager: Portage-2.3.62, Repoman-2.3.12_p83
Signed-off-by: Mike Gilbert  gentoo.org>

 www-plugins/chrome-binary-plugins/Manifest  | 6 +++---
 ...3.0.3683.75.ebuild => chrome-binary-plugins-73.0.3683.86.ebuild} | 0
 ...5_beta.ebuild => chrome-binary-plugins-73.0.3683.86_beta.ebuild} | 0
 ...alpha.ebuild => chrome-binary-plugins-74.0.3729.22_alpha.ebuild} | 0
 4 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/www-plugins/chrome-binary-plugins/Manifest 
b/www-plugins/chrome-binary-plugins/Manifest
index 101db7f587a..03361804c96 100644
--- a/www-plugins/chrome-binary-plugins/Manifest
+++ b/www-plugins/chrome-binary-plugins/Manifest
@@ -1,3 +1,3 @@
-DIST google-chrome-beta_73.0.3683.75-1_amd64.deb 58818860 BLAKE2B 
8d66a4603f5a9cb6533965cc85b132aebc96746074c93f94171b9f5583df84e4ae30367e21f5c3107b15d3ff415f128c6102a0858e57332029bbd915cc4bc54c
 SHA512 
f85fe40389973e9387cb82b9a0ffe9149b12fe47a7a995a6ded59a41c93b584822cd800c3fbcbff636dc3fefc80d9dc09625e311eebd62a5785173a942ca95a1
-DIST google-chrome-stable_73.0.3683.75-1_amd64.deb 57711706 BLAKE2B 
6254397961e86917944af1cf3f8bc545f5c7e6beec514310b89e14a4662a4578831f34170ddfe77b4f67e4a648cd3ff070a1113b142eba4313f3b37ec72d96e1
 SHA512 
473e82499a7f7b00b7cd51aaa6cfff22555b8ad42c13f48caa4e5b158f4df2f1eaeff57948978e1bedd810e40262b549ba057581adca29a7e60a04fac88e958e
-DIST google-chrome-unstable_74.0.3729.6-1_amd64.deb 59799538 BLAKE2B 
ed5982ffd6bfe4a0709c72a7a82863ca271d075439ce4b4e63709800b0427958a56c7505c1b0fd3c9ba3f69ff2b5aa0142a2c986bf9e77c6340e8f2da9c587fc
 SHA512 
cbe279e8bb4e1eac8fb207ba4ff90768316019f8bbf190f1486e9adc8495e28ebee44b973d6e91c1b778b08b8db3863ff28efed300d6667159965545993ceda8
+DIST google-chrome-beta_73.0.3683.86-1_amd64.deb 58884130 BLAKE2B 
c445b6c6ecbb1c249f2047d30df855265a5ca93a27b8d68f6548869924289d80e04651c69ed772adc9ced8f12bc5dc9f85cea1c50d0b97570a9a262d1959ce85
 SHA512 
3e7ac09eefbfa15961c1f2f678bc320124c535f8f30c852c56f32a69a0d9870b46352195bff9660186a4a2d9a030e7421d2948af81318932bd9d6046136a675f
+DIST google-chrome-stable_73.0.3683.86-1_amd64.deb 57596330 BLAKE2B 
5bd808a2909d74e85056fe9c84c746463ee9dc2a31bf3e2f95364885acac6c14d41433fee2922b6e2a33b1aebb8a63a6319e28dabf759231493e1edce5b2a1f9
 SHA512 
b7bb3f1c1d76ec029f3d9d2387ff2218ea114ea43047c313f930811ff5a4214ea00a651b8891170845f6c4a03edc44ffb7f04450b25579ece11517e7e0a2de6f
+DIST google-chrome-unstable_74.0.3729.22-1_amd64.deb 59998654 BLAKE2B 
3af77e81929c705dca08ff6e5978566ca79011d6c1d4323f58fac2083006ba2499292e42f242abf91c2850734034f5414bcfae19dc53c316c17a268ccf92304d
 SHA512 
6e2d627891dc3b7ecbaa57459533e0dd8a108f458d83f99520b92843fa697baa67afc43f440ffee6740bdfd53dd04374bf65ecfee623ae465d2f3f2679343ee3

diff --git 
a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-73.0.3683.75.ebuild 
b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-73.0.3683.86.ebuild
similarity index 100%
rename from 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-73.0.3683.75.ebuild
rename to 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-73.0.3683.86.ebuild

diff --git 
a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-73.0.3683.75_beta.ebuild
 
b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-73.0.3683.86_beta.ebuild
similarity index 100%
rename from 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-73.0.3683.75_beta.ebuild
rename to 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-73.0.3683.86_beta.ebuild

diff --git 
a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-74.0.3729.6_alpha.ebuild
 
b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-74.0.3729.22_alpha.ebuild
similarity index 100%
rename from 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-74.0.3729.6_alpha.ebuild
rename to 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-74.0.3729.22_alpha.ebuild



[gentoo-commits] repo/gentoo:master commit in: sys-boot/grub/

2019-03-20 Thread Mike Gilbert
commit: 1e3d98c3aaf9844b67bc0b0b97011626abd394e6
Author: Mike Gilbert  gentoo  org>
AuthorDate: Thu Mar 21 03:19:44 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Mar 21 03:19:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e3d98c3

sys-boot/grub: adjust bootstrap logic

Package-Manager: Portage-2.3.62, Repoman-2.3.12_p83
Signed-off-by: Mike Gilbert  gentoo.org>

 sys-boot/grub/grub-.ebuild | 18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/sys-boot/grub/grub-.ebuild b/sys-boot/grub/grub-.ebuild
index 0663509415e..c35bda09b14 100644
--- a/sys-boot/grub/grub-.ebuild
+++ b/sys-boot/grub/grub-.ebuild
@@ -4,12 +4,11 @@
 EAPI=6
 
 if [[ ${PV} ==   ]]; then
-   GRUB_AUTOGEN=1
GRUB_AUTORECONF=1
GRUB_BOOTSTRAP=1
 fi
 
-if [[ -n ${GRUB_AUTOGEN} ]]; then
+if [[ -n ${GRUB_AUTOGEN} || -n ${GRUB_BOOTSTRAP} ]]; then
PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5,3_6} )
inherit python-any-r1
 fi
@@ -164,14 +163,15 @@ src_prepare() {
tests/util/grub-fs-tester.in \
|| die
 
-   if [[ -n ${GRUB_AUTOGEN} ]]; then
+   if [[ -n ${GRUB_AUTOGEN} || -n ${GRUB_BOOTSTRAP} ]]; then
python_setup
-   if [[ -n ${GRUB_BOOTSTRAP} ]]; then
-   eautopoint --force
-   AUTOPOINT=: AUTORECONF=: ./bootstrap || die
-   else
-   ./autogen.sh || die
-   fi
+   fi
+
+   if [[ -n ${GRUB_BOOTSTRAP} ]]; then
+   eautopoint --force
+   AUTOPOINT=: AUTORECONF=: ./bootstrap || die
+   elif [[ -n ${GRUB_AUTOGEN} ]]; then
+   ./autogen.sh || die
fi
 
if [[ -n ${GRUB_AUTORECONF} ]]; then



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

2019-03-20 Thread Mike Gilbert
commit: 8ca44467f981347010ad75d9f98a3460d1038eee
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed Mar 20 23:52:51 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed Mar 20 23:52:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ca44467

www-client/google-chrome: automated update (73.0.3683.86)

Package-Manager: Portage-2.3.62, Repoman-2.3.12_p83
Signed-off-by: Mike Gilbert  gentoo.org>

 www-client/google-chrome/Manifest   | 2 +-
 ...gle-chrome-73.0.3683.75.ebuild => google-chrome-73.0.3683.86.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/google-chrome/Manifest 
b/www-client/google-chrome/Manifest
index 8867e6bd3bc..f50783c45eb 100644
--- a/www-client/google-chrome/Manifest
+++ b/www-client/google-chrome/Manifest
@@ -1 +1 @@
-DIST google-chrome-stable_73.0.3683.75-1_amd64.deb 57711706 BLAKE2B 
6254397961e86917944af1cf3f8bc545f5c7e6beec514310b89e14a4662a4578831f34170ddfe77b4f67e4a648cd3ff070a1113b142eba4313f3b37ec72d96e1
 SHA512 
473e82499a7f7b00b7cd51aaa6cfff22555b8ad42c13f48caa4e5b158f4df2f1eaeff57948978e1bedd810e40262b549ba057581adca29a7e60a04fac88e958e
+DIST google-chrome-stable_73.0.3683.86-1_amd64.deb 57596330 BLAKE2B 
5bd808a2909d74e85056fe9c84c746463ee9dc2a31bf3e2f95364885acac6c14d41433fee2922b6e2a33b1aebb8a63a6319e28dabf759231493e1edce5b2a1f9
 SHA512 
b7bb3f1c1d76ec029f3d9d2387ff2218ea114ea43047c313f930811ff5a4214ea00a651b8891170845f6c4a03edc44ffb7f04450b25579ece11517e7e0a2de6f

diff --git a/www-client/google-chrome/google-chrome-73.0.3683.75.ebuild 
b/www-client/google-chrome/google-chrome-73.0.3683.86.ebuild
similarity index 100%
rename from www-client/google-chrome/google-chrome-73.0.3683.75.ebuild
rename to www-client/google-chrome/google-chrome-73.0.3683.86.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-client/google-chrome-unstable/

2019-03-20 Thread Mike Gilbert
commit: b458fd6934d9d77e39e47fa8ab768a9f94789455
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed Mar 20 23:53:27 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed Mar 20 23:53:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b458fd69

www-client/google-chrome-unstable: automated update (74.0.3729.22)

Package-Manager: Portage-2.3.62, Repoman-2.3.12_p83
Signed-off-by: Mike Gilbert  gentoo.org>

 www-client/google-chrome-unstable/Manifest  | 2 +-
 ...le-74.0.3729.6.ebuild => google-chrome-unstable-74.0.3729.22.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/google-chrome-unstable/Manifest 
b/www-client/google-chrome-unstable/Manifest
index e8ef5305f63..922fcc96e91 100644
--- a/www-client/google-chrome-unstable/Manifest
+++ b/www-client/google-chrome-unstable/Manifest
@@ -1 +1 @@
-DIST google-chrome-unstable_74.0.3729.6-1_amd64.deb 59799538 BLAKE2B 
ed5982ffd6bfe4a0709c72a7a82863ca271d075439ce4b4e63709800b0427958a56c7505c1b0fd3c9ba3f69ff2b5aa0142a2c986bf9e77c6340e8f2da9c587fc
 SHA512 
cbe279e8bb4e1eac8fb207ba4ff90768316019f8bbf190f1486e9adc8495e28ebee44b973d6e91c1b778b08b8db3863ff28efed300d6667159965545993ceda8
+DIST google-chrome-unstable_74.0.3729.22-1_amd64.deb 59998654 BLAKE2B 
3af77e81929c705dca08ff6e5978566ca79011d6c1d4323f58fac2083006ba2499292e42f242abf91c2850734034f5414bcfae19dc53c316c17a268ccf92304d
 SHA512 
6e2d627891dc3b7ecbaa57459533e0dd8a108f458d83f99520b92843fa697baa67afc43f440ffee6740bdfd53dd04374bf65ecfee623ae465d2f3f2679343ee3

diff --git 
a/www-client/google-chrome-unstable/google-chrome-unstable-74.0.3729.6.ebuild 
b/www-client/google-chrome-unstable/google-chrome-unstable-74.0.3729.22.ebuild
similarity index 100%
rename from 
www-client/google-chrome-unstable/google-chrome-unstable-74.0.3729.6.ebuild
rename to 
www-client/google-chrome-unstable/google-chrome-unstable-74.0.3729.22.ebuild



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

2019-03-20 Thread Mike Gilbert
commit: 1d2f6fdd64be8266f09ac92d3dba1ade259ac575
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed Mar 20 23:53:13 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed Mar 20 23:53:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d2f6fdd

www-client/google-chrome-beta: automated update (73.0.3683.86)

Package-Manager: Portage-2.3.62, Repoman-2.3.12_p83
Signed-off-by: Mike Gilbert  gentoo.org>

 www-client/google-chrome-beta/Manifest  | 2 +-
 ...-beta-73.0.3683.75.ebuild => google-chrome-beta-73.0.3683.86.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/google-chrome-beta/Manifest 
b/www-client/google-chrome-beta/Manifest
index 08f31f784cd..c362158b0b5 100644
--- a/www-client/google-chrome-beta/Manifest
+++ b/www-client/google-chrome-beta/Manifest
@@ -1 +1 @@
-DIST google-chrome-beta_73.0.3683.75-1_amd64.deb 58818860 BLAKE2B 
8d66a4603f5a9cb6533965cc85b132aebc96746074c93f94171b9f5583df84e4ae30367e21f5c3107b15d3ff415f128c6102a0858e57332029bbd915cc4bc54c
 SHA512 
f85fe40389973e9387cb82b9a0ffe9149b12fe47a7a995a6ded59a41c93b584822cd800c3fbcbff636dc3fefc80d9dc09625e311eebd62a5785173a942ca95a1
+DIST google-chrome-beta_73.0.3683.86-1_amd64.deb 58884130 BLAKE2B 
c445b6c6ecbb1c249f2047d30df855265a5ca93a27b8d68f6548869924289d80e04651c69ed772adc9ced8f12bc5dc9f85cea1c50d0b97570a9a262d1959ce85
 SHA512 
3e7ac09eefbfa15961c1f2f678bc320124c535f8f30c852c56f32a69a0d9870b46352195bff9660186a4a2d9a030e7421d2948af81318932bd9d6046136a675f

diff --git 
a/www-client/google-chrome-beta/google-chrome-beta-73.0.3683.75.ebuild 
b/www-client/google-chrome-beta/google-chrome-beta-73.0.3683.86.ebuild
similarity index 100%
rename from www-client/google-chrome-beta/google-chrome-beta-73.0.3683.75.ebuild
rename to www-client/google-chrome-beta/google-chrome-beta-73.0.3683.86.ebuild



[gentoo-commits] repo/gentoo:master commit in: sys-boot/grub/

2019-03-20 Thread Mike Gilbert
commit: bddcef62229d2a58f04924e848a014980e6f47bf
Author: Mike Gilbert  gentoo  org>
AuthorDate: Thu Mar 21 03:10:59 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Mar 21 03:10:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bddcef62

sys-boot/grub: bootstrap gnulib in the live ebuild

Package-Manager: Portage-2.3.62, Repoman-2.3.12_p83
Signed-off-by: Mike Gilbert  gentoo.org>

 sys-boot/grub/grub-.ebuild | 16 +---
 1 file changed, 13 insertions(+), 3 deletions(-)

diff --git a/sys-boot/grub/grub-.ebuild b/sys-boot/grub/grub-.ebuild
index 662c83807ee..0663509415e 100644
--- a/sys-boot/grub/grub-.ebuild
+++ b/sys-boot/grub/grub-.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
@@ -6,6 +6,7 @@ EAPI=6
 if [[ ${PV} ==   ]]; then
GRUB_AUTOGEN=1
GRUB_AUTORECONF=1
+   GRUB_BOOTSTRAP=1
 fi
 
 if [[ -n ${GRUB_AUTOGEN} ]]; then
@@ -136,6 +137,11 @@ QA_MULTILIB_PATHS="usr/lib/grub/.*"
 src_unpack() {
if [[ ${PV} ==  ]]; then
git-r3_src_unpack
+   cd "${P}" || die
+   local GNULIB_URI="https://git.savannah.gnu.org/git/gnulib.git;
+   local GNULIB_REVISION=$(source bootstrap.conf; echo 
"${GNULIB_REVISION}")
+   git-r3_fetch "${GNULIB_URI}" "${GNULIB_REVISION}"
+   git-r3_checkout "${GNULIB_URI}" gnulib
fi
default
 }
@@ -160,11 +166,15 @@ src_prepare() {
 
if [[ -n ${GRUB_AUTOGEN} ]]; then
python_setup
-   bash autogen.sh || die
+   if [[ -n ${GRUB_BOOTSTRAP} ]]; then
+   eautopoint --force
+   AUTOPOINT=: AUTORECONF=: ./bootstrap || die
+   else
+   ./autogen.sh || die
+   fi
fi
 
if [[ -n ${GRUB_AUTORECONF} ]]; then
-   autopoint() { :; }
eautoreconf
fi
 }



[gentoo-commits] repo/gentoo:master commit in: sys-boot/grub/

2019-03-20 Thread Mike Gilbert
commit: 1c2650e3424d6676a346aa7abdfea67ff24fce0b
Author: Mike Gilbert  gentoo  org>
AuthorDate: Thu Mar 21 04:20:12 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Mar 21 04:20:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c2650e3

sys-boot/grub: drop multislot USE flag

Package-Manager: Portage-2.3.62, Repoman-2.3.12_p83
Signed-off-by: Mike Gilbert  gentoo.org>

 sys-boot/grub/grub-.ebuild | 17 ++---
 1 file changed, 2 insertions(+), 15 deletions(-)

diff --git a/sys-boot/grub/grub-.ebuild b/sys-boot/grub/grub-.ebuild
index dea453ed94f..22f563f6114 100644
--- a/sys-boot/grub/grub-.ebuild
+++ b/sys-boot/grub/grub-.ebuild
@@ -52,7 +52,7 @@ HOMEPAGE="https://www.gnu.org/software/grub/;
 # Includes licenses for dejavu and unifont
 LICENSE="GPL-3 fonts? ( GPL-2-with-font-exception ) themes? ( BitstreamVera )"
 SLOT="2/${PVR}"
-IUSE="debug device-mapper doc efiemu +fonts mount multislot nls static sdl 
test +themes truetype libzfs"
+IUSE="debug device-mapper doc efiemu +fonts mount nls static sdl test +themes 
truetype libzfs"
 
 GRUB_ALL_PLATFORMS=( coreboot efi-32 efi-64 emu ieee1275 loongson multiboot 
qemu qemu-mips pc uboot xen xen-32 )
 IUSE+=" ${GRUB_ALL_PLATFORMS[@]/#/grub_platforms_}"
@@ -123,7 +123,7 @@ RDEPEND="${COMMON_DEPEND}
grub_platforms_efi-32? ( sys-boot/efibootmgr )
grub_platforms_efi-64? ( sys-boot/efibootmgr )
)
-   !multislot? ( !sys-boot/grub:0 !sys-boot/grub-static )
+   !sys-boot/grub:0 !sys-boot/grub-static
nls? ( sys-devel/gettext )
 "
 
@@ -150,11 +150,6 @@ src_prepare() {
 
sed -i -e /autoreconf/d autogen.sh || die
 
-   if use multislot; then
-   # fix texinfo file name, bug 416035
-   sed -i -e 's/^\* GRUB:/* GRUB2:/' -e 's/(grub)/(grub2)/' 
docs/grub.texi || die
-   fi
-
# Nothing in Gentoo packages 'american-english' in the exact path
# wanted for the test, but all that is needed is a compressible text
# file, and we do have 'words' from miscfiles in the same path.
@@ -229,10 +224,6 @@ grub_configure() {
$(usex efiemu '' '--disable-efiemu')
)
 
-   if use multislot; then
-   myeconfargs+=( --program-transform-name="s,grub,grub2," )
-   fi
-
# Set up font symlinks
ln -s "${WORKDIR}/${UNIFONT}.pcf" unifont.pcf || die
if use themes; then
@@ -292,10 +283,6 @@ src_install() {
 
einstalldocs
 
-   if use multislot; then
-   mv "${ED}"/usr/share/info/grub{,2}.info || die
-   fi
-
insinto /etc/default
newins "${FILESDIR}"/grub.default-3 grub
 }



[gentoo-commits] repo/gentoo:master commit in: sys-boot/grub/

2019-03-20 Thread Mike Gilbert
commit: d4e0d4f83e33dd6e60134bba5d384ba799b1046b
Author: Mike Gilbert  gentoo  org>
AuthorDate: Thu Mar 21 04:26:19 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Mar 21 04:26:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4e0d4f8

sys-boot/grub: unifont 12.0.01

Package-Manager: Portage-2.3.62, Repoman-2.3.12_p83
Signed-off-by: Mike Gilbert  gentoo.org>

 sys-boot/grub/Manifest | 1 +
 sys-boot/grub/grub-.ebuild | 6 +++---
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/sys-boot/grub/Manifest b/sys-boot/grub/Manifest
index 106fa33c0a5..6dca1dcd23a 100644
--- a/sys-boot/grub/Manifest
+++ b/sys-boot/grub/Manifest
@@ -1,3 +1,4 @@
 DIST dejavu-sans-ttf-2.37.zip 417746 BLAKE2B 
c8904f3cd5a49370a7dc10e456684c88aeae998a99090bf4d0a5baa4f36cc8fb8f70586cf6d610a5ffeee97261d28c80f55bbe9dcfc3ed796d5c2d60e79adb58
 SHA512 
ede5899daa1984c5aa8cacb1c850eb53f189dddef3d9bb78bf9774d8976b7c0d6eb0bcf86237cd7d11f5b36cf5b5058d42cd94d3bd76f2bd0931c7ceb1271fae
 DIST grub-2.02.tar.xz 6113260 BLAKE2B 
7c5ec61a8dc5a00e9cdc91c489f0d2ee37cd7e673eef8e8e26bbc18c5ec28829f563b9298874fb96d45a5d523ce366e936649c21ebda7462afda0cc328b970ce
 SHA512 
cc6eb0a42b5c8df2f671cc128ff725afb3ff1f8832a196022e433cf0d3b75decfca2316d0aa5fabea75747d55e88f3d021dd93508563f8ca80fd7b9e7fe1f088
+DIST unifont-12.0.01.pcf.gz 1360857 BLAKE2B 
ab87e58aee2295e52dc49b7bb131793ad775abbf49f4b64758045a9b5158e75afd01a8425b56e6f6d0ba288a733bf426df363c1ecc78daddec516c33d461bc3b
 SHA512 
9d34a005dd10f212e43075beb71eb39b9cc3403ae1cddec7d79af91b3a3a1beb4a3696075cc94563c8402efe2ad05de552ace77a24da09f1c0b7f95e99b056a3
 DIST unifont-9.0.06.pcf.gz 1360354 BLAKE2B 
09b96e1711c729ef159d62e3ea7b289ca2d01dc0ea417e35a18b73dc02a23f62ce7821d9761bceee4002d9eeaabd91cfb69bbacc6fbdfdfa00445d18fe8f1d66
 SHA512 
dd0a1afa72f5204c62055d83f22750c74af38ffafdb8eda8e1f1cf7292e572a14969b8a9a6a2cb336d5bed4ab633f6b5a962c59117a590e4238788959cb82774

diff --git a/sys-boot/grub/grub-.ebuild b/sys-boot/grub/grub-.ebuild
index 22f563f6114..4de2f017c33 100644
--- a/sys-boot/grub/grub-.ebuild
+++ b/sys-boot/grub/grub-.ebuild
@@ -42,7 +42,7 @@ PATCHES=(
 )
 
 DEJAVU=dejavu-sans-ttf-2.37
-UNIFONT=unifont-9.0.06
+UNIFONT=unifont-12.0.01
 SRC_URI+=" fonts? ( mirror://gnu/unifont/${UNIFONT}/${UNIFONT}.pcf.gz )
themes? ( mirror://sourceforge/dejavu/${DEJAVU}.zip )"
 
@@ -225,9 +225,9 @@ grub_configure() {
)
 
# Set up font symlinks
-   ln -s "${WORKDIR}/${UNIFONT}.pcf" unifont.pcf || die
+   mv "${WORKDIR}/${UNIFONT}.pcf" unifont.pcf || die
if use themes; then
-   ln -s "${WORKDIR}/${DEJAVU}/ttf/DejaVuSans.ttf" DejaVuSans.ttf 
|| die
+   mv "${WORKDIR}/${DEJAVU}/ttf/DejaVuSans.ttf" DejaVuSans.ttf || 
die
fi
 
local ECONF_SOURCE="${S}"



[gentoo-commits] repo/gentoo:master commit in: sys-boot/grub/

2019-03-20 Thread Mike Gilbert
commit: 94db4d57fa4045ef90e9394f5821f51e60505939
Author: Mike Gilbert  gentoo  org>
AuthorDate: Thu Mar 21 04:28:09 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Mar 21 04:28:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94db4d57

sys-boot/grub: redirect stdout while sourcing bootstrap.conf

Package-Manager: Portage-2.3.62, Repoman-2.3.12_p83
Signed-off-by: Mike Gilbert  gentoo.org>

 sys-boot/grub/grub-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-boot/grub/grub-.ebuild b/sys-boot/grub/grub-.ebuild
index 4de2f017c33..7ae9bb427d9 100644
--- a/sys-boot/grub/grub-.ebuild
+++ b/sys-boot/grub/grub-.ebuild
@@ -138,7 +138,7 @@ src_unpack() {
git-r3_src_unpack
cd "${P}" || die
local GNULIB_URI="https://git.savannah.gnu.org/git/gnulib.git;
-   local GNULIB_REVISION=$(source bootstrap.conf; echo 
"${GNULIB_REVISION}")
+   local GNULIB_REVISION=$(source bootstrap.conf >/dev/null; echo 
"${GNULIB_REVISION}")
git-r3_fetch "${GNULIB_URI}" "${GNULIB_REVISION}"
git-r3_checkout "${GNULIB_URI}" gnulib
fi



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

2019-03-20 Thread Yixun Lan
commit: fd5b0c3ac9a74d7502a051e931c8120fd7b0bc7d
Author: Yixun Lan  gentoo  org>
AuthorDate: Wed Mar 20 07:04:55 2019 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Wed Mar 20 07:05:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd5b0c3a

media-libs/dav1d: fix subslot & keyword

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

 media-libs/dav1d/dav1d-0.2.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/dav1d/dav1d-0.2.1.ebuild 
b/media-libs/dav1d/dav1d-0.2.1.ebuild
index ddb669829bc..361df4a791a 100644
--- a/media-libs/dav1d/dav1d-0.2.1.ebuild
+++ b/media-libs/dav1d/dav1d-0.2.1.ebuild
@@ -8,7 +8,7 @@ if [[ "${PV}" == "" ]]; then
SCM="git-r3"
EGIT_REPO_URI="https://code.videolan.org/videolan/dav1d;
 else
-   KEYWORDS="~amd64"
+   KEYWORDS="~amd64 ~x86"

SRC_URI="https://code.videolan.org/videolan/dav1d/-/archive/${PV}/${P}.tar.bz2;
 fi
 
@@ -18,7 +18,7 @@ DESCRIPTION="dav1d is an AV1 Decoder :)"
 HOMEPAGE="https://code.videolan.org/videolan/dav1d;
 
 LICENSE="BSD-2"
-SLOT="0"
+SLOT="0/1"
 IUSE="+8bit +10bit +asm"
 
 ASM_DEPEND=">=dev-lang/nasm-2.13"



[gentoo-commits] repo/gentoo:master commit in: app-i18n/ibus/

2019-03-20 Thread Yixun Lan
commit: 232cfaef3a48be79133f5944ff677677132e19d9
Author: Yixun Lan  gentoo  org>
AuthorDate: Wed Mar 20 06:31:43 2019 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Wed Mar 20 06:34:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=232cfaef

app-i18n/ibus: version bump 1.5.20

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

 app-i18n/ibus/Manifest   |   1 +
 app-i18n/ibus/ibus-1.5.20.ebuild | 181 +++
 2 files changed, 182 insertions(+)

diff --git a/app-i18n/ibus/Manifest b/app-i18n/ibus/Manifest
index 5e89f5ede99..520c7aa1fae 100644
--- a/app-i18n/ibus/Manifest
+++ b/app-i18n/ibus/Manifest
@@ -1,2 +1,3 @@
 DIST ibus-1.5.18.tar.gz 2760121 BLAKE2B 
dfcf549362ac9ac0cb9adb9cedc3fd7146877a42e0e086ad7be18ccb6239868ed940d2c371d83c2e2706c7120702af0bcb0106da60889f0b3d5857b8929b9165
 SHA512 
34519c3464eaf2cac3320e1568fc76f4edb281afa70f335c015b828ff4e86b3224d77b95cdc0b2e76e42459c54b1044264ff226963fe739dd553ac7326d2f2d3
 DIST ibus-1.5.19.tar.gz 2842274 BLAKE2B 
a5aea4770c1c0a58a9e0b1aa26f47a8ab9eb5060a0c06179663984c5b531464ff4575a8ece2f2ee2122f777ca615296c1e46ad4833c68ba2da038f2b85dea374
 SHA512 
ddcd464c9afb6d081df1cfac65069506877eb4818c3ba5594bcf76f3c6795ef6c17177a778dc89b2ef69d10d87297aa12c8e04f156b750e500b51b32787bd9fc
+DIST ibus-1.5.20.tar.gz 3393487 BLAKE2B 
0ed930cbadf7ecf9fa82ee2c0e2a8aa8cfb25a8dc1a2e2ffef0d4f894df31f879f08d7ed14508736836545cbc25b929707939c3b0ea53f2b44ba7489d6dc80ed
 SHA512 
2bbcc19742882fa55d9c8704251f133c5be9f36a93cf52d70c460a4713419868deb634f965e67c1d5c45b615de388b92c0fbb863b118a546fbb89370a38eb77b

diff --git a/app-i18n/ibus/ibus-1.5.20.ebuild b/app-i18n/ibus/ibus-1.5.20.ebuild
new file mode 100644
index 000..09b0683c5cb
--- /dev/null
+++ b/app-i18n/ibus/ibus-1.5.20.ebuild
@@ -0,0 +1,181 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6,3_7} )
+VALA_MIN_API_VERSION="0.34"
+VALA_USE_DEPEND="vapigen"
+
+inherit autotools bash-completion-r1 gnome2-utils python-r1 vala virtualx 
xdg-utils
+
+DESCRIPTION="Intelligent Input Bus for Linux / Unix OS"
+HOMEPAGE="https://github.com/ibus/ibus/wiki;
+SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV}/${P}.tar.gz;
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+IUSE="+X +emoji gconf +gtk +gtk2 +introspection kde nls +python test +unicode 
vala wayland"
+REQUIRED_USE="emoji? ( gtk )
+   gtk2? ( gtk )
+   kde? ( gtk )
+   python? (
+   ${PYTHON_REQUIRED_USE}
+   introspection
+   )
+   test? ( gtk )
+   vala? ( introspection )"
+
+CDEPEND="app-text/iso-codes
+   dev-libs/glib:2
+   gnome-base/dconf
+   gnome-base/librsvg:2
+   sys-apps/dbus[X?]
+   X? (
+   x11-libs/libX11
+   !gtk? ( x11-libs/gtk+:2 )
+   )
+   gconf? ( gnome-base/gconf:2 )
+   gtk? (
+   x11-libs/gtk+:3
+   x11-libs/libX11
+   x11-libs/libXi
+   gtk2? ( x11-libs/gtk+:2 )
+   )
+   introspection? ( dev-libs/gobject-introspection )
+   kde? ( dev-qt/qtgui:5 )
+   nls? ( virtual/libintl )
+   python? (
+   ${PYTHON_DEPS}
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   )
+   wayland? (
+   dev-libs/wayland
+   x11-libs/libxkbcommon
+   )"
+RDEPEND="${CDEPEND}
+   python? (
+   gtk? (
+   x11-libs/gtk+:3[introspection]
+   )
+   )"
+DEPEND="${CDEPEND}
+   $(vala_depend)
+   dev-util/glib-utils
+   dev-util/intltool
+   virtual/pkgconfig
+   emoji? (
+   app-i18n/unicode-cldr
+   app-i18n/unicode-emoji
+   )
+   nls? ( sys-devel/gettext )
+   unicode? ( app-i18n/unicode-data )"
+
+src_prepare() {
+   vala_src_prepare --ignore-use
+   sed -i "/UCD_DIR=/s/\$with_emoji_annotation_dir/\$with_ucd_dir/" 
configure.ac
+   if ! has_version 'x11-libs/gtk+:3[wayland]'; then
+   touch ui/gtk3/panelbinding.vala
+   fi
+   if ! use emoji; then
+   touch \
+   tools/main.vala \
+   ui/gtk3/panel.vala
+   fi
+   if ! use kde; then
+   touch ui/gtk3/panel.vala
+   fi
+
+   # for multiple Python implementations
+   sed -i "s/^\(PYGOBJECT_DIR =\).*/\1/" bindings/Makefile.am
+   # fix for parallel install
+   sed -i "/^if ENABLE_PYTHON2/,/^endif/d" bindings/pygobject/Makefile.am
+   # require user interaction
+   sed -i "/^TESTS += ibus-\(compose\|keypress\)/d" src/tests/Makefile.am
+
+   sed -i "/^bash_completion/d" tools/Makefile.am
+
+   default
+   eautoreconf
+   xdg_environment_reset
+}
+
+src_configure() {
+ 

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

2019-03-20 Thread Michael Haubenwallner
commit: 22c4e0424b2f0b8861c6aa278cb2e5269ed40896
Author: Michael Haubenwallner  gentoo  org>
AuthorDate: Mon Mar 18 14:45:59 2019 +
Commit: Michael Haubenwallner  gentoo  org>
CommitDate: Wed Mar 20 08:38:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22c4e042

profiles/prefix/winnt/profile.bashrc: drop exe-in-use handling

Unlike Interix, Cygwin is able to "remove" executables in use, as in
transparently moving them to trashbin.  Broken for EAPI 7, dropped.

Signed-off-by: Michael Haubenwallner  gentoo.org>

 profiles/prefix/windows/winnt/profile.bashrc | 121 ---
 1 file changed, 121 deletions(-)

diff --git a/profiles/prefix/windows/winnt/profile.bashrc 
b/profiles/prefix/windows/winnt/profile.bashrc
index 7d1251609c0..3c12c651967 100644
--- a/profiles/prefix/windows/winnt/profile.bashrc
+++ b/profiles/prefix/windows/winnt/profile.bashrc
@@ -27,69 +27,6 @@ windows_setup_dllhelper() {
esac
 }
 
-windows_cleanup_removed_files() {
-   local removedlist=$1
-   rm -f "${removedlist}".new
-
-   if [[ -r ${removedlist} ]]; then
-   rm -f "${removedlist}".old
-   fi
-   # restore in case of system fault
-   if [[ -r ${removedlist}.old ]]; then
-   mv "${removedlist}"{.old,}
-   fi
-
-   touch "${removedlist}"{,.new} # ensure they exist
-
-   while read rmstem; do
-   # try to remove previously recorded files
-   for f in "${ROOT}${rmstem}"*; do
-   ebegin "trying to remove ${f}"
-   rm -f "${f}" > /dev/null 2>&1
-   eend $?
-   done
-   # but keep it in list if still exists
-   for f in "${ROOT}${rmstem}"*; do
-   [[ -f ${f} ]] && echo "${rmstem}" >> 
"${removedlist}".new
-   break
-   done
-   done < "${removedlist}"
-
-   # update the list
-   mv "${removedlist}"{,.old}
-   mv "${removedlist}"{.new,}
-   rm "${removedlist}".old
-}
-
-windows_find_removed_slot() {
-   local f=$1
-   local n=0
-   while [[ ${n} -lt 100 && -f "${f}${n}" ]]; do
-   n=$((n=n+1))
-   done
-
-   if [[ ${n} -ge 100 ]]; then
-   echo "too many (>=100) old text files busy of '${f}'" >&2
-   exit 1
-   fi
-
-   echo $n
-}
-
-windows_prepare_file() {
-   local failed=0
-   my_mv=mv
-
-   [[ "${1}" == */mv ]] && my_mv="${1}.new"
-   [[ -f "${1}.new" ]] && rm -f "${1}.new"
-
-   cp -p "${1}" "${1}.new" || failed=1
-   ${my_mv} "${1}" "${2}" || failed=1
-   ${my_mv} "${1}.new" "${1}" || failed=1
-
-   echo $failed
-}
-
 post_src_install() {
cd "${ED}"
find . -name '*.exe' -o -name '*.dll.a' -o -name '*.so' |
@@ -125,64 +62,6 @@ post_src_install() {
done
 }
 
-post_pkg_preinst() {
-   local removedlist="${EROOT}var/lib/portage/files2bremoved"
-   windows_cleanup_removed_files $removedlist
-   
-   # now go for current package
-   cd "${D}"
-   find ".${EROOT}" -type f | xargs -r /usr/bin/file | grep ' PE ' | while 
read f t
-   do
-   f=${f#./} # find prints: "./path/to/file"
-   f=${f%:} # file prints: "file-argument: type-of-file"
-   test -r "${ROOT}${f}" || continue
-   rmstem="${f}.removedbyportage"
-   # keep list of old busy text files unique
-   grep "^${rmstem}$" "${removedlist}" >/dev/null \
-   || echo "${rmstem}" >> "${removedlist}"
-
-   local n=$(windows_find_removed_slot ${ROOT}${rmstem})
-   ebegin "backing up text file ${ROOT}${f} (${n})"
-   eend $(windows_prepare_file "${ROOT}${f}" 
"${ROOT}${rmstem}${n}")
-   done
-}
-
-post_pkg_prerm() {
-   local removedlist="${EROOT}var/lib/portage/files2bremoved"
-   save_IFS=$IFS
-   IFS='
-';
-   local MY_PR=${PR}
-   [[ ${MY_PR} == r0 ]] && MY_PR=
-   local -a 
contents=($(<"${EROOT}var/db/pkg/${CATEGORY}/${P}${MY_PR:+-}${MY_PR}/CONTENTS"));
-   IFS=$save_IFS
-   local -a cont
-   for content in "${contents[@]}"; do
-   cont=($content)
-   f=${cont[1]}
-   f=${f#/}
-
-   test -r "${ROOT}${f}" || continue
-
-   if /usr/bin/file "${ROOT}${f}" | grep ' PE ' > /dev/null; then
-   # $f should be an absolute path to the installed file
-   rmstem="${f}.removedbyportage"
-
-   grep "^${rmstem}$" "${removedlist}" > /dev/null \
-   || echo "${rmstem}" >> "${removedlist}"
-
-   local n=$(windows_find_removed_slot ${ROOT}${rmstem})
-   ebegin "preparing ${ROOT}${f} for unmerge ($n)"
-   eend $(windows_prepare_file "${ROOT}${f}" 
"${ROOT}${rmstem}${n}")
- 

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

2019-03-20 Thread Lars Wendler
commit: 2d0bb40e536a01fde208c1cf15da940beddf1de6
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Mar 20 08:51:46 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Mar 20 08:54:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d0bb40e

sys-libs/ldb: Removed old.

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

 sys-libs/ldb/Manifest |   2 -
 sys-libs/ldb/ldb-1.3.7.ebuild | 103 -
 sys-libs/ldb/ldb-1.4.5.ebuild | 105 --
 3 files changed, 210 deletions(-)

diff --git a/sys-libs/ldb/Manifest b/sys-libs/ldb/Manifest
index ba0c301a14a..d2e1e64a46e 100644
--- a/sys-libs/ldb/Manifest
+++ b/sys-libs/ldb/Manifest
@@ -4,9 +4,7 @@ DIST ldb-1.1.31.tar.gz 1337586 BLAKE2B 
9454f91a621368cfc7cfdb709781653e947d63b27
 DIST ldb-1.2.3.tar.gz 1344513 BLAKE2B 
941174d6e2c51319c8690a8d8a87bea443d4fa4d738bd13243b502fdc9d590ba075fcf4a9920c38bb6fc15564f0b116089cd62d99e7cfe33649dc751910265ad
 SHA512 
500ab069cf6cec39907300e3905d334163b5094087831708acc22c4199b006ef52af3b66aade7558a48fab7cd69be3af7883bda3816a83c576d01b36ab270247
 DIST ldb-1.2.4.tar.gz 1346413 BLAKE2B 
441cdf679ab4852e1c8d90ca8d9544d7983436c864cb3ea76b63f45177061c2763f9700b4be4be9ba53a4bcc9cec49b509dd39efb8f5f2171bc432641d1329c2
 SHA512 
093815cfa9e950299c4f09c58362136d72c439692f7d8670ecbf9cac49ecef6fd365f8fab5d39f41a4dd39e07f6c8d1a2616e843653d2fa0d7bdff346a118aa9
 DIST ldb-1.3.6.tar.gz 1374574 BLAKE2B 
654f35eb25aeb373540ead7cb10da66c92970ea6b100631cb14bacf937fec64e09b19ed3e09a976406e3f8d6347c4e17144c0a0bff8795316559be45353edbf7
 SHA512 
8fcd72598e948c55adaa832d6ebcbc03b979281032cb900af4304c1c68ce9cc94a1e1d4729d0c2a0b83a618cab716749d851160005a0093cf8a178e6dbea298d
-DIST ldb-1.3.7.tar.gz 1374109 BLAKE2B 
561d120bbfc49ef7115a3c046d65f15960ff9905b5a56ed7676d31ce6027ba9f18dfe5027952154db4a040e14be69689f248ffef0ca2ae801553be4c890248fe
 SHA512 
b6d2b2f5a0868ac4ed1cfe786f26d5815cf60233561a23a06d9d5c231d51bfc68ad1a0826e5080bc97bafbaef1770fa38b7d3071f57b766e960b22485e8b5e2b
 DIST ldb-1.3.8.tar.gz 1375782 BLAKE2B 
dbca935e762af86b268308253615019b24af6727411e77947ceeadd3e0114c2ad2a14d4a4f1121bf58ccb080d44a8513d2094314b043604d885977a26e622c57
 SHA512 
06d1b4c2badbf0c27733a64f979c48af8b599747cef7cd7f5417cd55a76447e8f8987bd061694c5af63261fdb35433e3844122c14103d5cc8b4eaab1f4752541
-DIST ldb-1.4.5.tar.gz 1429162 BLAKE2B 
47c55ca8a89f343708b5ea275a1f2417e91e05b2d1cf92d812f2a1430dcf174b14e69474f30dcf60b34a5c4b905924a67f002607535257fbb531bfed807648fa
 SHA512 
ed1e73eb4e10f041463b38be031e7b7b1057a6a1ef6a637019d58a6549a0958d551a0b52f3858114b83cf14470ef5ddd96de3dcbb733a3bd1fed768fc29fadd2
 DIST ldb-1.4.6.tar.gz 1431798 BLAKE2B 
748d6054af4b898fa475692a425d96541fa2c055ffdd4b8ca6635fea04d7b143b4e7301886f307300662140bc449a3ee3932801c7c5df10f6ba3ee5a10c7a46b
 SHA512 
fb2be7842ecfda8788e8982831e34487f016814d1e8a757e93f8716019aaba4b9b7dd469e4ba11eb3990846fb55cdb2db2ec494eb7b0ff04f261d8309b1c98f4
 DIST ldb-1.5.4.tar.gz 1629123 BLAKE2B 
3c71af079f2e5cb81e493d16d453c53bd0ee4c63720b0261ea6116244b2652ca581499c0b8c64949dccc95460aba7b4ef3afe7850563a830f3fb4b8753bdea2f
 SHA512 
fc323e4283671c14d6dd4feb7e9ca943a63a166688077dbf3591f9d957cf821f9e739869842e15ca1ec4fd3764123d5afc6f4954b1af437bd1ec54df58366a22
 DIST ldb-1.6.2.tar.gz 1629794 BLAKE2B 
5219479c773aa87c4bd6917e60b963df9cf3c481468ed020b4e9c4a175110ce80fd1c7a4ca4e28d99c972e0891287485261310eab1bbd7b8b138ea59f168ac8c
 SHA512 
089dee2465efe0811ff745b52b15d2d7638b940112a06680706d5401231864859605ff0392245d4c815e9b85f5a4ba782fc61d8dba215cc8198e7d9a6ddd255e

diff --git a/sys-libs/ldb/ldb-1.3.7.ebuild b/sys-libs/ldb/ldb-1.3.7.ebuild
deleted file mode 100644
index e76e509dbce..000
--- a/sys-libs/ldb/ldb-1.3.7.ebuild
+++ /dev/null
@@ -1,103 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE="threads"
-
-inherit python-single-r1 waf-utils multilib-minimal eutils
-
-DESCRIPTION="An LDAP-like embedded database"
-HOMEPAGE="https://ldb.samba.org;
-SRC_URI="https://www.samba.org/ftp/pub/${PN}/${P}.tar.gz;
-
-LICENSE="LGPL-3"
-SLOT="0/${PV}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
-IUSE="doc +ldap +python"
-
-RDEPEND="
-   !elibc_FreeBSD? ( dev-libs/libbsd[${MULTILIB_USEDEP}] )
-   dev-libs/popt[${MULTILIB_USEDEP}]
-   >=dev-util/cmocka-1.1.1[${MULTILIB_USEDEP}]
-   >=sys-libs/talloc-2.1.11[python?,${MULTILIB_USEDEP}]
-   >=sys-libs/tdb-1.3.15[python?,${MULTILIB_USEDEP}]
-   >=sys-libs/tevent-0.9.36[python(+)?,${MULTILIB_USEDEP}]
-   ldap? ( net-nds/openldap )
-   python? ( ${PYTHON_DEPS} )
-"
-
-DEPEND="dev-libs/libxslt
-   doc? ( app-doc/doxygen )
-   virtual/pkgconfig
-   ${PYTHON_DEPS}
-   ${RDEPEND}
-"
-
-REQUIRED_USE="python? ( 

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

2019-03-20 Thread Lars Wendler
commit: a17cb75e86edbf60d92999547260f71b2862f6a9
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Mar 20 08:53:38 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Mar 20 08:54:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a17cb75e

sys-libs/ldb: Don't enable python by default.

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

 sys-libs/ldb/ldb-1.1.29-r1.ebuild | 4 ++--
 sys-libs/ldb/ldb-1.1.31.ebuild| 4 ++--
 sys-libs/ldb/ldb-1.2.3.ebuild | 4 ++--
 sys-libs/ldb/ldb-1.2.4.ebuild | 2 +-
 sys-libs/ldb/ldb-1.3.6.ebuild | 4 ++--
 sys-libs/ldb/ldb-1.3.8.ebuild | 2 +-
 sys-libs/ldb/ldb-1.4.6.ebuild | 2 +-
 sys-libs/ldb/ldb-1.5.4.ebuild | 2 +-
 sys-libs/ldb/ldb-1.6.2.ebuild | 2 +-
 9 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/sys-libs/ldb/ldb-1.1.29-r1.ebuild 
b/sys-libs/ldb/ldb-1.1.29-r1.ebuild
index a6535f14148..e660a17da8f 100644
--- a/sys-libs/ldb/ldb-1.1.29-r1.ebuild
+++ b/sys-libs/ldb/ldb-1.1.29-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
@@ -14,7 +14,7 @@ SRC_URI="https://www.samba.org/ftp/pub/${PN}/${P}.tar.gz;
 LICENSE="LGPL-3"
 SLOT="0/${PV}"
 KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd"
-IUSE="doc +ldap +python"
+IUSE="doc +ldap python"
 
 RDEPEND="!elibc_FreeBSD? ( dev-libs/libbsd[${MULTILIB_USEDEP}] )
dev-libs/popt[${MULTILIB_USEDEP}]

diff --git a/sys-libs/ldb/ldb-1.1.31.ebuild b/sys-libs/ldb/ldb-1.1.31.ebuild
index 8cf1cc9bf71..59cf95d3462 100644
--- a/sys-libs/ldb/ldb-1.1.31.ebuild
+++ b/sys-libs/ldb/ldb-1.1.31.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -14,7 +14,7 @@ SRC_URI="https://www.samba.org/ftp/pub/${PN}/${P}.tar.gz;
 LICENSE="LGPL-3"
 SLOT="0/${PV}"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
-IUSE="doc +ldap +python"
+IUSE="doc +ldap python"
 
 RDEPEND="!elibc_FreeBSD? ( dev-libs/libbsd[${MULTILIB_USEDEP}] )
dev-libs/popt[${MULTILIB_USEDEP}]

diff --git a/sys-libs/ldb/ldb-1.2.3.ebuild b/sys-libs/ldb/ldb-1.2.3.ebuild
index 2da9d4d..9d3ffe48109 100644
--- a/sys-libs/ldb/ldb-1.2.3.ebuild
+++ b/sys-libs/ldb/ldb-1.2.3.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
@@ -14,7 +14,7 @@ SRC_URI="https://www.samba.org/ftp/pub/${PN}/${P}.tar.gz;
 LICENSE="LGPL-3"
 SLOT="0/${PV}"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
-IUSE="doc +ldap +python"
+IUSE="doc +ldap python"
 
 RDEPEND="!elibc_FreeBSD? ( dev-libs/libbsd[${MULTILIB_USEDEP}] )
dev-libs/popt[${MULTILIB_USEDEP}]

diff --git a/sys-libs/ldb/ldb-1.2.4.ebuild b/sys-libs/ldb/ldb-1.2.4.ebuild
index 822772cf008..ec5e00cfcdc 100644
--- a/sys-libs/ldb/ldb-1.2.4.ebuild
+++ b/sys-libs/ldb/ldb-1.2.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://www.samba.org/ftp/pub/${PN}/${P}.tar.gz;
 LICENSE="LGPL-3"
 SLOT="0/${PV}"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
-IUSE="doc +ldap +python"
+IUSE="doc +ldap python"
 
 RDEPEND="!elibc_FreeBSD? ( dev-libs/libbsd[${MULTILIB_USEDEP}] )
dev-libs/popt[${MULTILIB_USEDEP}]

diff --git a/sys-libs/ldb/ldb-1.3.6.ebuild b/sys-libs/ldb/ldb-1.3.6.ebuild
index 44926f1820b..ab24cb6707f 100644
--- a/sys-libs/ldb/ldb-1.3.6.ebuild
+++ b/sys-libs/ldb/ldb-1.3.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -14,7 +14,7 @@ SRC_URI="https://www.samba.org/ftp/pub/${PN}/${P}.tar.gz;
 LICENSE="LGPL-3"
 SLOT="0/${PV}"
 KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~x86-fbsd"
-IUSE="doc +ldap +python"
+IUSE="doc +ldap python"
 
 RDEPEND="
!elibc_FreeBSD? ( dev-libs/libbsd[${MULTILIB_USEDEP}] )

diff --git a/sys-libs/ldb/ldb-1.3.8.ebuild b/sys-libs/ldb/ldb-1.3.8.ebuild
index e76e509dbce..21e1ebbd999 100644
--- a/sys-libs/ldb/ldb-1.3.8.ebuild
+++ b/sys-libs/ldb/ldb-1.3.8.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://www.samba.org/ftp/pub/${PN}/${P}.tar.gz;
 LICENSE="LGPL-3"
 SLOT="0/${PV}"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
-IUSE="doc +ldap +python"
+IUSE="doc +ldap python"
 
 RDEPEND="
!elibc_FreeBSD? ( dev-libs/libbsd[${MULTILIB_USEDEP}] )

diff --git 

[gentoo-commits] repo/gentoo:master commit in: sys-process/cronie/

2019-03-20 Thread Lars Wendler
commit: 55795752bad0202f9c83e28002528d94d60bdbf8
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Mar 20 09:45:05 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Mar 20 09:45:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55795752

sys-process/cronie: Bump to version 1.5.4. Removed old.

Closes: https://bugs.gentoo.org/680764
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Lars Wendler  gentoo.org>

 sys-process/cronie/Manifest| 2 +-
 sys-process/cronie/{cronie-1.5.3-r1.ebuild => cronie-1.5.4.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/cronie/Manifest b/sys-process/cronie/Manifest
index 2c0f13a6a84..67b6243c32d 100644
--- a/sys-process/cronie/Manifest
+++ b/sys-process/cronie/Manifest
@@ -1,2 +1,2 @@
 DIST cronie-1.5.2.tar.gz 121604 BLAKE2B 
4225439fd13a32bba3bd24f25d7dd405cdb123e666ebbf14574143af9d161867f82ea3fc479d81a884590faaa9c42e19c971285e01a19d6ac793b7deb7fc4775
 SHA512 
6455e234becc44e6568fa25fd72abfaa293cb0bc2d2f1d124e551c068ba01083192b21e82e941158c8c1f41cb6dad3851d665b9f3baa82fd49080f3f8619740b
-DIST cronie-1.5.3.tar.gz 122363 BLAKE2B 
68bfc5e83a1d006534291ab054dd8aaa4b351ba1abda8feed0a04885b74cfefa39cc3bd5d2caa5394b1167353da9f2c98a30e6343956cee1014d53370743acbd
 SHA512 
18c5b51d27258f7d37286d6d1684142a74ec49994ba8332ae3afeb77320d242ada5fe5923baf043b460c2769658d74ec60ac73f37836947620660a6c2119086d
+DIST cronie-1.5.4.tar.gz 122452 BLAKE2B 
042961390807c22aa1db3ab592470538d9a348d33fee8f088dfa20e45ee72c72d9502bf5eb5a957494c55d99a6705b94774442f5a2fb06eeab1aa0b0e1a4d6ae
 SHA512 
40a8cd750bc18dcb264e88cf049b0ea66f053b7b6cc10f38fd4f4e6b912871f41ce7ad126521a08203e81c00846e001016b47da3c5e8730a7b49fc970d7b2a6a

diff --git a/sys-process/cronie/cronie-1.5.3-r1.ebuild 
b/sys-process/cronie/cronie-1.5.4.ebuild
similarity index 100%
rename from sys-process/cronie/cronie-1.5.3-r1.ebuild
rename to sys-process/cronie/cronie-1.5.4.ebuild



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

2019-03-20 Thread Lars Wendler
commit: e0b0e0781437843e65e47bd6b787b420771c931d
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Mar 20 09:45:43 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Mar 20 09:45:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0b0e078

package.mask: Removed =sys-process/cronie-1.5.3-r1 mask

Signed-off-by: Lars Wendler  gentoo.org>

 profiles/package.mask | 4 
 1 file changed, 4 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index ac09e25f0fd..5dd0eef1d59 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -90,10 +90,6 @@ x11-misc/xwinwrap
 # Removal in 30 days.  Bug #407381.
 media-video/get_flash_videos
 
-# Lars Wendler  (17 Mar 2019)
-# Breaks user crontab (#680764)
-=sys-process/cronie-1.5.3-r1
-
 # Michał Górny  (16 Mar 2019)
 # The current Gentoo version has been added in 2011, and a bump is
 # pending since at least 2012.  Last touched upstream in 2015.



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

2019-03-20 Thread Fabian Groffen
commit: 7bb6da4d308214d247d4a7c57f8566bc9224274c
Author: Fabian Groffen  gentoo  org>
AuthorDate: Wed Mar 20 10:22:53 2019 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Wed Mar 20 10:22:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bb6da4d

dev-python/automat: marked ~amd64-linux

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

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

diff --git a/dev-python/automat/automat-0.7.0.ebuild 
b/dev-python/automat/automat-0.7.0.ebuild
index 31c408a3704..96fbe84f14f 100644
--- a/dev-python/automat/automat-0.7.0.ebuild
+++ b/dev-python/automat/automat-0.7.0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${MYPN:0:1}/${MYPN}/${MYP}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~amd64-linux"
 IUSE="examples test"
 
 RDEPEND="



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

2019-03-20 Thread Fabian Groffen
commit: 3937beb604fe1aba9e9f9c67e12db7e2194d31cb
Author: Fabian Groffen  gentoo  org>
AuthorDate: Wed Mar 20 10:20:10 2019 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Wed Mar 20 10:20:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3937beb6

dev-python/m2r: marked ~amd64-linux

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

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

diff --git a/dev-python/m2r/m2r-0.1.14.ebuild b/dev-python/m2r/m2r-0.1.14.ebuild
index 21107e51579..3b969a248c3 100644
--- a/dev-python/m2r/m2r-0.1.14.ebuild
+++ b/dev-python/m2r/m2r-0.1.14.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~amd64-linux"
 IUSE="test"
 
 RDEPEND="



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

2019-03-20 Thread Fabian Groffen
commit: f56cf16115c269ce904e1e2aa9c16dabc4183acf
Author: Fabian Groffen  gentoo  org>
AuthorDate: Wed Mar 20 10:27:04 2019 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Wed Mar 20 10:27:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f56cf161

dev-python/hyperlink: marked ~amd64-linux

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

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

diff --git a/dev-python/hyperlink/hyperlink-18.0.0.ebuild 
b/dev-python/hyperlink/hyperlink-18.0.0.ebuild
index 91efd49bbde..08b080aed79 100644
--- a/dev-python/hyperlink/hyperlink-18.0.0.ebuild
+++ b/dev-python/hyperlink/hyperlink-18.0.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-fbsd"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-fbsd ~amd64-linux"
 IUSE="test"
 
 RDEPEND=""



[gentoo-commits] repo/gentoo:master commit in: virtual/python-typing/

2019-03-20 Thread Fabian Groffen
commit: 184ca81772628734c070e599636712c4506e6b35
Author: Fabian Groffen  gentoo  org>
AuthorDate: Wed Mar 20 10:30:56 2019 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Wed Mar 20 10:30:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=184ca817

virtual/python-typing: marked ~amd64-linux

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

 virtual/python-typing/python-typing-0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/virtual/python-typing/python-typing-0-r1.ebuild 
b/virtual/python-typing/python-typing-0-r1.ebuild
index af93bf809ce..b911a4a8168 100644
--- a/virtual/python-typing/python-typing-0-r1.ebuild
+++ b/virtual/python-typing/python-typing-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
@@ -9,7 +9,7 @@ inherit python-r1
 
 DESCRIPTION="A virtual for the Python typing module"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 
~amd64-fbsd ~x64-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 
~amd64-fbsd ~amd64-linux ~x64-solaris"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
 RDEPEND="${PYTHON_DEPS}



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

2019-03-20 Thread Fabian Groffen
commit: 64d8b9a1bc69f52479fc38ff6f5c09e5e89e18d2
Author: Fabian Groffen  gentoo  org>
AuthorDate: Wed Mar 20 10:29:49 2019 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Wed Mar 20 10:29:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64d8b9a1

dev-python/incremental: marked ~amd64-linux

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

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

diff --git a/dev-python/incremental/incremental-17.5.0.ebuild 
b/dev-python/incremental/incremental-17.5.0.ebuild
index b3d2eaf2b65..50886551068 100644
--- a/dev-python/incremental/incremental-17.5.0.ebuild
+++ b/dev-python/incremental/incremental-17.5.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~amd64-linux"
 IUSE=""
 
 RDEPEND=""



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

2019-03-20 Thread Fabian Groffen
commit: 5626c31d8f12e895e7ee23254436067e350f294e
Author: Fabian Groffen  gentoo  org>
AuthorDate: Wed Mar 20 10:21:54 2019 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Wed Mar 20 10:21:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5626c31d

dev-python/wstools: marked ~amd64-linux

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

 dev-python/wstools/wstools-0.4.5-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/wstools/wstools-0.4.5-r1.ebuild 
b/dev-python/wstools/wstools-0.4.5-r1.ebuild
index ee485d99911..4d7a6f84833 100644
--- a/dev-python/wstools/wstools-0.4.5-r1.ebuild
+++ b/dev-python/wstools/wstools-0.4.5-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
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x64-macos ~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~amd64-linux ~x64-macos ~x86-macos"
 IUSE="test"
 
 RDEPEND="



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

2019-03-20 Thread Fabian Groffen
commit: 91662c55072eaf0f651e08721c83269fc08d87fb
Author: Fabian Groffen  gentoo  org>
AuthorDate: Wed Mar 20 10:27:45 2019 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Wed Mar 20 10:27:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91662c55

dev-python/typing: marked ~amd64-linux

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

 dev-python/typing/typing-3.6.4-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/typing/typing-3.6.4-r1.ebuild 
b/dev-python/typing/typing-3.6.4-r1.ebuild
index a2f4c6da829..a26a46309d6 100644
--- a/dev-python/typing/typing-3.6.4-r1.ebuild
+++ b/dev-python/typing/typing-3.6.4-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
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="PSF-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-fbsd ~x64-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-fbsd ~amd64-linux ~x64-solaris"
 IUSE=""
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



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

2019-03-20 Thread Fabian Groffen
commit: 98105773f1904565972af9c320b29a3d2fa5e545
Author: Fabian Groffen  gentoo  org>
AuthorDate: Wed Mar 20 10:29:14 2019 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Wed Mar 20 10:29:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98105773

dev-python/pyhamcrest: marked ~amd64-linux

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

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

diff --git a/dev-python/pyhamcrest/pyhamcrest-1.9.0-r1.ebuild 
b/dev-python/pyhamcrest/pyhamcrest-1.9.0-r1.ebuild
index 8364afe1d5e..c87d6490028 100644
--- a/dev-python/pyhamcrest/pyhamcrest-1.9.0-r1.ebuild
+++ b/dev-python/pyhamcrest/pyhamcrest-1.9.0-r1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/hamcrest/PyHamcrest/archive/V${PV}.tar.gz -> ${MY_PN
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~sh ~amd64-fbsd"
+KEYWORDS="~amd64 ~arm ~sh ~amd64-fbsd ~amd64-linux"
 IUSE="doc examples test"
 
 RDEPEND=">=dev-python/six-1.4[${PYTHON_USEDEP}]"



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

2019-03-20 Thread Fabian Groffen
commit: 305135562501f1716028023bf5ebe84b9acad3a0
Author: Fabian Groffen  gentoo  org>
AuthorDate: Wed Mar 20 10:21:01 2019 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Wed Mar 20 10:21:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30513556

dev-python/soappy: marked ~amd64-linux

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

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

diff --git a/dev-python/soappy/soappy-0.12.22.ebuild 
b/dev-python/soappy/soappy-0.12.22.ebuild
index 40ab700736b..3cdbe5adc91 100644
--- a/dev-python/soappy/soappy-0.12.22.ebuild
+++ b/dev-python/soappy/soappy-0.12.22.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.zip"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 s390 ~sh sparc x86 
~amd64-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 s390 ~sh sparc x86 
~amd64-fbsd ~amd64-linux"
 
 IUSE="examples ssl"
 



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

2019-03-20 Thread Fabian Groffen
commit: a3d83e785fd5ff9a01d0875458ae62cfa405a3d7
Author: Fabian Groffen  gentoo  org>
AuthorDate: Wed Mar 20 10:28:45 2019 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Wed Mar 20 10:28:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3d83e78

dev-python/twisted: marked ~amd64-linux

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

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

diff --git a/dev-python/twisted/twisted-18.7.0.ebuild 
b/dev-python/twisted/twisted-18.7.0.ebuild
index 6e23ebe62d4..89733dde61e 100644
--- a/dev-python/twisted/twisted-18.7.0.ebuild
+++ b/dev-python/twisted/twisted-18.7.0.ebuild
@@ -19,7 +19,7 @@ SRC_URI="${SRC_URI}/${TWISTED_RELEASE}/${TWISTED_P}.tar.bz2
 
 # Dropped keywords due to new deps not keyworded
 #KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh 
~x86 ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-KEYWORDS="~amd64 ~arm ~mips ~s390 ~sh ~amd64-fbsd"
+KEYWORDS="~amd64 ~arm ~mips ~s390 ~sh ~amd64-fbsd ~amd64-linux"
 
 LICENSE="MIT"
 SLOT="0"



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

2019-03-20 Thread Fabian Groffen
commit: 844e207b854fa8123129bf0179c994816f78
Author: Fabian Groffen  gentoo  org>
AuthorDate: Wed Mar 20 10:19:10 2019 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Wed Mar 20 10:19:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=844e207b

dev-python/defusedxml: marked ~amd64-linux

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

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

diff --git a/dev-python/defusedxml/defusedxml-0.5.0.ebuild 
b/dev-python/defusedxml/defusedxml-0.5.0.ebuild
index ef86559ae68..6704b3094ee 100644
--- a/dev-python/defusedxml/defusedxml-0.5.0.ebuild
+++ b/dev-python/defusedxml/defusedxml-0.5.0.ebuild
@@ -11,7 +11,7 @@ inherit distutils-r1
 DESCRIPTION="XML bomb protection for Python stdlib modules, an xml serialiser"
 HOMEPAGE="https://bitbucket.org/tiran/defusedxml 
https://pypi.org/project/defusedxml/;
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 s390 ~sh sparc x86 
~amd64-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 s390 ~sh sparc x86 
~amd64-fbsd ~amd64-linux"
 IUSE="examples"
 
 LICENSE="PSF-2"



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

2019-03-20 Thread Fabian Groffen
commit: 6ba9c0622ec35b9b6ac898052d9acfc8e7cba621
Author: Fabian Groffen  gentoo  org>
AuthorDate: Wed Mar 20 10:30:22 2019 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Wed Mar 20 10:30:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ba9c062

dev-python/constantly: marked ~amd64-linux

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

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

diff --git a/dev-python/constantly/constantly-15.1.0-r1.ebuild 
b/dev-python/constantly/constantly-15.1.0-r1.ebuild
index 07d7abb4426..348fedc80de 100644
--- a/dev-python/constantly/constantly-15.1.0-r1.ebuild
+++ b/dev-python/constantly/constantly-15.1.0-r1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/twisted/constantly/archive/${PV}.tar.gz -> ${P}.gh.t
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~amd64-linux"
 IUSE="test"
 
 RDEPEND=""



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

2019-03-20 Thread Mikle Kolyada
commit: 46887d279fac2a41cef01559e32b8d41323f5486
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Mar 20 11:24:42 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Mar 20 11:24:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46887d27

dev-libs/cgilib: arm stable wrt bug #677962

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="arm"

 dev-libs/cgilib/cgilib-0.7-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/cgilib/cgilib-0.7-r1.ebuild 
b/dev-libs/cgilib/cgilib-0.7-r1.ebuild
index 2d2df7991b5..a12d375cff3 100644
--- a/dev-libs/cgilib/cgilib-0.7-r1.ebuild
+++ b/dev-libs/cgilib/cgilib-0.7-r1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="${HOMEPAGE}download/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc ~x86"
+KEYWORDS="~alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc ~x86"
 IUSE="static-libs"
 
 DOCS=( AUTHORS ChangeLog README cookies.txt )



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

2019-03-20 Thread Mikle Kolyada
commit: 3c60951ad3cd790047da41008ff9a1f0d8a5c904
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Mar 20 11:45:51 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Mar 20 11:45:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c60951a

dev-python/PyContracts: s390 stable wrt bug #676306

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="s390"

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

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



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

2019-03-20 Thread Mikle Kolyada
commit: caaab3503de3ff6609d6568e52e80eb718e7ceb0
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Mar 20 11:46:52 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Mar 20 11:46:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=caaab350

dev-python/PyContracts: m68k stable wrt bug #676306

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="m68k"

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

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



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

2019-03-20 Thread Mikle Kolyada
commit: bdcee21f700a529515e41c9b646e227ccf0d07c0
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Mar 20 11:46:12 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Mar 20 11:46:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdcee21f

dev-python/PyContracts: sh stable wrt bug #676306

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="sh"

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

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



[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-screensaver-pyro/

2019-03-20 Thread Craig Andrews
commit: 9285b1d86eca5b8d4d90c95d059742df958b7e0d
Author: Craig Andrews  gentoo  org>
AuthorDate: Wed Mar 20 14:13:28 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Wed Mar 20 14:13:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9285b1d8

media-plugins/kodi-screensaver-pyro: 3.0.0 version bump

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

 media-plugins/kodi-screensaver-pyro/Manifest   |  1 +
 .../kodi-screensaver-pyro-3.0.0.ebuild | 32 ++
 2 files changed, 33 insertions(+)

diff --git a/media-plugins/kodi-screensaver-pyro/Manifest 
b/media-plugins/kodi-screensaver-pyro/Manifest
index 9e879e116f0..ea4e5f479b0 100644
--- a/media-plugins/kodi-screensaver-pyro/Manifest
+++ b/media-plugins/kodi-screensaver-pyro/Manifest
@@ -1,2 +1,3 @@
 DIST kodi-screensaver-pyro-1.1.0.tar.gz 4664 BLAKE2B 
92ebff9b42ca257d24e52bad267a301fd9b85bcae9a0db254b2d679722c63dc32abb94c7fce7a0cef7da35cfdc60a44b0f07d0f139332b086c0ff924ea6daff8
 SHA512 
93cbf40393dc2c50c927daffbdc10756c4a8e4a9a960e07edd6841ae4b0ac5c49beb097ce0710ca38720963e77859b7ed0198dc611c6990a73e066c8ee91bcb2
 DIST kodi-screensaver-pyro-2.0.0.tar.gz 6502 BLAKE2B 
a0ccc3346f6482db303d4d12104b09611fcc21658eefd23a6af7610cfcff996e2e6507f90da1a8ae3b853a5104da1d4d2a316ae5a335c14e1af4c88b5ac6a7fb
 SHA512 
383fd40fc2bde9a1fe52126300b6279ec78ceab773bd6a763c8b72c3d3ed9b04e5b15eaa0de6da34af7e1d86046807e4734f75e524fa8335bf18cc8bc3965360
+DIST kodi-screensaver-pyro-3.0.0.tar.gz 81858 BLAKE2B 
4d48cfeee5d51c45e0caa99e742226ed6f6b0704391d657be8863ffe76acfeb2e3f3740903cec89e0dcaa2dcbff6109fb91e582c5855598b9fd75549880ab87a
 SHA512 
92335e156950f7da5800dc9c9fd57262a2d608d63cb2015e3f5711686b657930f05651a35e043480ed64f40cb34a3228c44b6c641b63a8d0438e0944abc09515

diff --git 
a/media-plugins/kodi-screensaver-pyro/kodi-screensaver-pyro-3.0.0.ebuild 
b/media-plugins/kodi-screensaver-pyro/kodi-screensaver-pyro-3.0.0.ebuild
new file mode 100644
index 000..a51a4c18258
--- /dev/null
+++ b/media-plugins/kodi-screensaver-pyro/kodi-screensaver-pyro-3.0.0.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils kodi-addon
+
+DESCRIPTION="Pyro screensaver for Kodi"
+HOMEPAGE="https://github.com/xbmc/screensaver.pyro;
+SRC_URI=""
+
+case ${PV} in
+)
+   SRC_URI=""
+   EGIT_REPO_URI="https://github.com/xbmc/screensaver.pyro.git;
+   inherit git-r3
+   ;;
+*)
+   CODENAME="Leia"
+   KEYWORDS="~amd64 ~x86"
+   
SRC_URI="https://github.com/xbmc/screensaver.pyro/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}.tar.gz"
+   S="${WORKDIR}/screensaver.pyro-${PV}-${CODENAME}"
+   ;;
+esac
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+DEPEND="
+   =media-tv/kodi-18*
+   "



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

2019-03-20 Thread Lars Wendler
commit: 12636e5e7a3c5050124c2ffd12f2d851573b5290
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Mar 20 14:55:23 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Mar 20 14:55:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12636e5e

media-libs/jasper: Bump to version 2.0.15

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

 media-libs/jasper/Manifest |  1 +
 media-libs/jasper/jasper-2.0.15.ebuild | 67 ++
 2 files changed, 68 insertions(+)

diff --git a/media-libs/jasper/Manifest b/media-libs/jasper/Manifest
index a36492e7b89..93b54910206 100644
--- a/media-libs/jasper/Manifest
+++ b/media-libs/jasper/Manifest
@@ -1 +1,2 @@
 DIST jasper-2.0.14.tar.gz 1311825 BLAKE2B 
0cd2feb5a73aaa2da6f1d105fefe98f57c6a5ecf92f6449891f49eca0b5926bc683a03bf933b920cad95883134cf292405f244f10b3bbe7867a41f2dde80337e
 SHA512 
6b270cb1eb55f777f30016f3258e5e2297627e7d086334814c308464f5a4552c23241b0fdbc81ea715a6f4746294657f96c1cb6ceb320629ce57db7e81d84940
+DIST jasper-2.0.15.tar.gz 1311926 BLAKE2B 
39b6e0af590bbf849a172b97148465e68b9b5682286b882e41bf8f58e3ff4f18a4762a29b08529d9589a63aa22a9125aeed8c2dc7e61198f5eb15f1ca7b60ae0
 SHA512 
360cadfa0f3cb502ce6354267df71a48bac5a5f6bf60c280f6943c8ede72c727ca178cad411c7824c727731aaa7def92298ebd259a262d9776c6e137f12b16c7

diff --git a/media-libs/jasper/jasper-2.0.15.ebuild 
b/media-libs/jasper/jasper-2.0.15.ebuild
new file mode 100644
index 000..39254dafd4c
--- /dev/null
+++ b/media-libs/jasper/jasper-2.0.15.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake-multilib
+
+DESCRIPTION="Implementation of the codec specified in the JPEG-2000 Part-1 
standard"
+HOMEPAGE="https://www.ece.uvic.ca/~mdadams/jasper/;
+
+if [[ ${PV} == ** ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/mdadams/jasper.git;
+else
+   SRC_URI="https://github.com/mdadams/${PN}/archive/version-${PV}.tar.gz 
-> ${P}.tar.gz"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+   S="${WORKDIR}/${PN}-version-${PV}"
+fi
+
+# We limit memory usage to 128 MiB by default, specified in bytes
+: ${JASPER_MEM_LIMIT:=134217728}
+
+LICENSE="JasPer2.0"
+SLOT="0/4"
+IUSE="doc jpeg opengl test"
+
+RDEPEND="
+   jpeg? ( >=virtual/jpeg-0-r2:0[${MULTILIB_USEDEP}] )
+   opengl? (
+   >=virtual/opengl-7.0-r1:0[${MULTILIB_USEDEP}]
+   >=media-libs/freeglut-2.8.1:0[${MULTILIB_USEDEP}]
+   virtual/glu[${MULTILIB_USEDEP}]
+   x11-libs/libXi[${MULTILIB_USEDEP}]
+   x11-libs/libXmu[${MULTILIB_USEDEP}]
+   )"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   doc? ( app-doc/doxygen )
+"
+
+multilib_src_configure() {
+   local mycmakeargs=(
+   -DALLOW_IN_SOURCE_BUILD=OFF
+   -DBASH_PROGRAM="${EPREFIX}"/bin/bash
+   -DJAS_ENABLE_ASAN=OFF
+   -DJAS_ENABLE_LSAN=OFF
+   -DJAS_ENABLE_MSAN=OFF
+   -DJAS_ENABLE_SHARED=ON
+   -DJAS_ENABLE_STRICT=ON
+   -DJAS_ENABLE_USAN=OFF
+   -DCMAKE_INSTALL_DOCDIR=share/doc/${PF}
+
+   # JPEG
+   -DJAS_ENABLE_LIBJPEG=$(usex jpeg)
+   -DCMAKE_DISABLE_FIND_PACKAGE_JPEG=$(usex !jpeg)
+
+   # OpenGL
+   -DJAS_ENABLE_OPENGL=$(usex opengl)
+   -DCMAKE_DISABLE_FIND_PACKAGE_OpenGL=$(usex !opengl)
+
+   # Doxygen
+   -DCMAKE_DISABLE_FIND_PACKAGE_Doxygen=$(multilib_native_usex doc 
OFF ON)
+
+   -DJAS_ENABLE_PROGRAMS=$(usex test)
+   )
+   cmake-utils_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: dev-db/sqlitebrowser/, dev-db/sqlitebrowser/files/

2019-03-20 Thread Rick Farina
commit: 420bd534b01e9f70683da54c4c1e409d3ecc9621
Author: Rick Farina  gentoo  org>
AuthorDate: Wed Mar 20 15:30:37 2019 +
Commit: Rick Farina  gentoo  org>
CommitDate: Wed Mar 20 15:30:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=420bd534

dev-db/sqlitebrowser: bump and unbundle

previous patch did most of the unbundling, but left qhexedit2 bundled
which caused revdep-rebuild to want to rebuild all the time.

semi related to bug #678628

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

 dev-db/sqlitebrowser/Manifest  |  1 +
 .../files/sqlitebrowser-3.11.1-unbundle.patch  | 85 ++
 dev-db/sqlitebrowser/sqlitebrowser-3.11.1.ebuild   | 64 
 3 files changed, 150 insertions(+)

diff --git a/dev-db/sqlitebrowser/Manifest b/dev-db/sqlitebrowser/Manifest
index 861e19002a8..214850f0684 100644
--- a/dev-db/sqlitebrowser/Manifest
+++ b/dev-db/sqlitebrowser/Manifest
@@ -1 +1,2 @@
 DIST sqlitebrowser-3.10.1.tar.gz 1992186 BLAKE2B 
105333118a404aab48abe5ecbe83b425109b60adf40d3a3b7766c7036954996539bd133da4b3e3b1e2d819223842d107710b6b24aada6bb298462e062296dabf
 SHA512 
da9650fff6cd7984e8f438b254318b5da46209eb21a375569ec1b4dd898a41d99d61d6682f2979a56d5c39d552ed42f443215900c1cebe95350e4624415f69c4
+DIST sqlitebrowser-3.11.1.tar.gz 2523481 BLAKE2B 
c9a92b93795050605aa938cf5c73493b7d887b386da77b4cee206becd70779f00ab39c7a105772cdbe925ebedcfe0277b6ebe7898383db87454e19b050001253
 SHA512 
31f5315fd66d14fde16b58fe6522da937068c42e21f60aa15c3c04a1318ecac09f68143df108b83204cdc70ec8bac617a8ae196df9b5524690f837d7e7728916

diff --git a/dev-db/sqlitebrowser/files/sqlitebrowser-3.11.1-unbundle.patch 
b/dev-db/sqlitebrowser/files/sqlitebrowser-3.11.1-unbundle.patch
new file mode 100644
index 000..f8668332328
--- /dev/null
+++ b/dev-db/sqlitebrowser/files/sqlitebrowser-3.11.1-unbundle.patch
@@ -0,0 +1,85 @@
+diff -Naur sqlitebrowser-3.11.1-orig/cmake/FindQScintilla.cmake 
sqlitebrowser-3.11.1/cmake/FindQScintilla.cmake
+--- sqlitebrowser-3.11.1-orig/cmake/FindQScintilla.cmake   2019-03-20 
11:12:47.452357850 -0400
 sqlitebrowser-3.11.1/cmake/FindQScintilla.cmake2019-03-20 
11:17:49.611365342 -0400
+@@ -42,10 +42,12 @@
+ # either expressed or implied, of the FreeBSD Project.
+ #=
+ 
++SET (QT_MIN_VERSION "5.6.2")
++FIND_PACKAGE( Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS Network 
Widgets )
+ 
+ find_path ( QSCINTILLA_INCLUDE_DIR
+   NAMES qsciscintilla.h
+-  HINTS ${QT_INCLUDE_DIR}
++  HINTS ${Qt5Core_INCLUDE_DIRS}
+   PATH_SUFFIXES Qsci
+ )
+ 
+@@ -80,8 +82,8 @@
+ 
+ 
+ find_library ( QSCINTILLA_LIBRARY
+-  NAMES qscintilla qscintilla2 libqscintilla2
+-  HINTS ${QT_LIBRARY_DIR}
++  NAMES qscintilla2 libqscintilla2 qscintilla2_qt5 libqscintilla2_qt5
++  HINTS ${Qt5Core_LIBRARIES}
+ )
+ 
+ set ( QSCINTILLA_LIBRARIES ${QSCINTILLA_LIBRARY} )
+diff -Naur sqlitebrowser-3.11.1-orig/CMakeLists.txt 
sqlitebrowser-3.11.1/CMakeLists.txt
+--- sqlitebrowser-3.11.1-orig/CMakeLists.txt   2019-03-20 11:12:47.452357850 
-0400
 sqlitebrowser-3.11.1/CMakeLists.txt2019-03-20 11:19:07.740367280 
-0400
+@@ -61,26 +61,12 @@
+ endif()
+ 
+ if(NOT FORCE_INTERNAL_ANTLR)
+-find_package(Antlr2 QUIET)
++  find_package(Antlr2 REQUIRED)
+ endif()
+ if(NOT FORCE_INTERNAL_QSCINTILLA)
+-find_package(QScintilla QUIET)
++  find_package(QScintilla REQUIRED)
+ endif()
+ 
+-set(QHEXEDIT_DIR libs/qhexedit)
+-set(QCUSTOMPLOT_DIR libs/qcustomplot-source)
+-
+-if(NOT ANTLR2_FOUND)
+-set(ANTLR_DIR libs/antlr-2.7.7)
+-add_subdirectory(${ANTLR_DIR})
+-endif()
+-if(NOT QSCINTILLA_FOUND)
+-set(QSCINTILLA_DIR libs/qscintilla/Qt4Qt5)
+-add_subdirectory(${QSCINTILLA_DIR})
+-endif()
+-add_subdirectory(${QHEXEDIT_DIR})
+-add_subdirectory(${QCUSTOMPLOT_DIR})
+-
+ find_package(Qt5 REQUIRED COMPONENTS Concurrent Gui LinguistTools Network 
PrintSupport Test Widgets Xml)
+ 
+ set(CMAKE_AUTOMOC ON)
+diff -Naur sqlitebrowser-3.11.1-orig/src/src.pro 
sqlitebrowser-3.11.1/src/src.pro
+--- sqlitebrowser-3.11.1-orig/src/src.pro  2019-03-20 11:12:47.459357850 
-0400
 sqlitebrowser-3.11.1/src/src.pro   2019-03-20 11:22:02.891371623 -0400
+@@ -178,10 +178,6 @@
+ }
+ }
+ 
+-LIBPATH_QHEXEDIT=$$OUT_PWD/../libs/qhexedit
+-LIBPATH_ANTLR=$$OUT_PWD/../libs/antlr-2.7.7
+-LIBPATH_QCUSTOMPLOT=$$OUT_PWD/../libs/qcustomplot-source
+-LIBPATH_QSCINTILLA=$$OUT_PWD/../libs/qscintilla/Qt4Qt5
+ unix {
+ LIBS += -ldl
+ }
+@@ -222,9 +218,7 @@
+ }
+ 
+ UI_DIR = .ui
+-INCLUDEPATH += $$PWD/../libs/antlr-2.7.7 $$PWD/../libs/qhexedit 
$$PWD/../libs/qcustomplot-source $$PWD/../libs/qscintilla/Qt4Qt5 $$PWD/..
+-LIBS += -L$$LIBPATH_QHEXEDIT -L$$LIBPATH_ANTLR -L$$LIBPATH_QCUSTOMPLOT 
-L$$LIBPATH_QSCINTILLA -lantlr -lqhexedit -lqcustomplot -lqscintilla2
+-DEPENDPATH += $$PWD/../libs/antlr-2.7.7 $$PWD/../libs/qhexedit 

[gentoo-commits] proj/portage-utils:master commit in: tests/install/, tests/

2019-03-20 Thread Fabian Groffen
commit: 901ad79e4457102cf93580864f86ca30bbd0a401
Author: Fabian Groffen  gentoo  org>
AuthorDate: Wed Mar 20 07:55:48 2019 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Wed Mar 20 07:55:48 2019 +
URL:https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=901ad79e

tests: copy q for install test for Darwin

On Darwin, resolving the path of a hardlink, resolves to the first entry
for it, e.g. not necessarily the path the executable was called at.
Since this makes the test fail, simply copy the binary, to make sure it
always works.

Signed-off-by: Fabian Groffen  gentoo.org>

 tests/init.sh| 1 +
 tests/install/dotest | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/tests/init.sh b/tests/init.sh
index 5c9ec3d..93f1100 100644
--- a/tests/init.sh
+++ b/tests/init.sh
@@ -35,6 +35,7 @@ export PORTAGE_CONFIGROOT="${ab}/not/a/real/path"
 # Always use UTC for timestamps to keep tests stable. #551806
 export TZ='UTC 0'
 
+# create symlinks for applets
 q -i -q
 
 tret=0

diff --git a/tests/install/dotest b/tests/install/dotest
index 1c790d1..b312f1b 100755
--- a/tests/install/dotest
+++ b/tests/install/dotest
@@ -11,8 +11,8 @@ applets=$(q -Ch | \
 )
 rm -f ${applets}
 
-if ! ln -f `which q` ; then
-   skip "could not 'ln -f'"
+if ! cp `which q` . ; then
+   skip "could not copy q"
 fi
 ./q -i || die "./q -i"
 



[gentoo-commits] proj/portage-utils:master commit in: tests/atom_explode/

2019-03-20 Thread Fabian Groffen
commit: 11ac8188bfdee030fa233fd4480f35c2d8e3df69
Author: Fabian Groffen  gentoo  org>
AuthorDate: Wed Mar 20 07:53:46 2019 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Wed Mar 20 07:53:46 2019 +
URL:https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=11ac8188

tests: ensure repeatable results on any host when TRAVIS_OS_NAME is set

Always use the static "cache" of ebuilds provided in the tree, even if
we find a tree when we're testing in Travis mode.

Signed-off-by: Fabian Groffen  gentoo.org>

 tests/atom_explode/dotest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/atom_explode/dotest b/tests/atom_explode/dotest
index 3a45fc1..f47d44f 100755
--- a/tests/atom_explode/dotest
+++ b/tests/atom_explode/dotest
@@ -3,7 +3,7 @@
 . ../init.sh || exit 1
 
 PORTDIR=$(DEBUG=: q -Ch 2>&1 | grep ^PORTDIR | awk '{print $NF}')
-if [[ -d "${PORTDIR}"/metadata/md5-cache ]] &&
+if [[ -z ${TRAVIS_OS_NAME} && -d "${PORTDIR}"/metadata/md5-cache ]] &&
"$s"/atom-explode.py < /dev/null >& /dev/null ;
 then
pushd "${PORTDIR}"/metadata/md5-cache >/dev/null || exit $?



[gentoo-commits] repo/gentoo:master commit in: net-fs/samba/

2019-03-20 Thread Lars Wendler
commit: 99f98a2d1ae09b0dd476bd36ca971e76bcbfbb18
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Mar 20 08:31:35 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Mar 20 08:31:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99f98a2d

net-fs/samba: Bump to version 4.10.0. Removed old.

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

 net-fs/samba/Manifest | 2 +-
 net-fs/samba/{samba-4.10.0_rc4.ebuild => samba-4.10.0.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index 2b5069c368f..c1467ca79aa 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -1,4 +1,4 @@
-DIST samba-4.10.0rc4.tar.gz 18271083 BLAKE2B 
761e3c971992a66ab429db33ce6b2ff308feb6397bdbb90c6566325336fd7f5afad89a420ac8bf26ba6e9dab423ec187095e47e8f9b81c13972297ed2aa601fe
 SHA512 
6e2de0fa732b19b524624716b6c1fe8ffaf9e7dab9dbee30b70f3e496a11fd79703720ee5a4dc5ebafeb67c6c19baf2d3032f796c4eaa4f04deb9d2c2b172362
+DIST samba-4.10.0.tar.gz 18270804 BLAKE2B 
53faf392aa4d09412f3d525410e290385f796dd7ef16e48d403ce8ff0466150312992c7459adee21ebf4c217c67a77d244b69f706dae16245058670a2ccd2087
 SHA512 
e82a8ec78cea666a653bddab066eaa22382f5b016b38f7618492e39f470d6f4c3ddd6dc21e9f0e9fde73ab98c4dd3da1a3823fd457f085ac14c36070b447ac90
 DIST samba-4.5.11-disable-python-patches.tar.xz 6292 BLAKE2B 
c2a32a1059a02bc1c87ce5f604cbc5878c654b8f693c8486b5ba63b37513444915a7b6389fe82b7e31ab2f9577dd8462eddba60b4f4f756b4ed1145ce7bd90ae
 SHA512 
f0e3076e3e1ecaae3f06b3ef30efc81719fb3f63a1041dcbdae4b62ca4cf693732f9eb16f047d046d4930136fed82194e82b455ea888e12cf845b3e6a122d57d
 DIST samba-4.5.16.tar.gz 21024396 BLAKE2B 
e737559fb748044076608fa233700eb54c7e1c56bc234763f062b6341a179cc78a4a8cdf9f3d6f4d7f3cf8a79f846852ddd5cc753a468c3adb3a0451e1809ed9
 SHA512 
de8a41013cfb5ef3adcb290efd97a78a5de876d90ad05764d631f14e663a1849bb53e4ac394b46c906f1109be5748fee9316407a659c57007d36851ae8adcd7f
 DIST samba-4.7.12.tar.gz 16923189 BLAKE2B 
98ea5e535482a4cdfeb4f9ad70bc8c40bb6d5a8920ce9bc6dda84f20698245c3c5d472a5f79984efc81f9c32d1d1e72b1fcdffb137e3a27634f4c521a1d46a48
 SHA512 
951dfc0ea7130da9d9aa3069ca276e630d67171a1995dba368459e0cdf00337d0f6271827bffec694371010614a1a7ce2349840ddedd0231315f6a56dce2fcac

diff --git a/net-fs/samba/samba-4.10.0_rc4.ebuild 
b/net-fs/samba/samba-4.10.0.ebuild
similarity index 100%
rename from net-fs/samba/samba-4.10.0_rc4.ebuild
rename to net-fs/samba/samba-4.10.0.ebuild



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

2019-03-20 Thread Lars Wendler
commit: 452ed222e0afe304f13bd6441c90b1f18b613999
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Mar 20 14:48:27 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Mar 20 14:50:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=452ed222

media-libs/jasper: Bumped live ebuild to EAPI-7

- added sub-slot
- added "test" USE flag
- removed vcs-snapshot eclass

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

 media-libs/jasper/jasper-.ebuild | 18 +++---
 1 file changed, 11 insertions(+), 7 deletions(-)

diff --git a/media-libs/jasper/jasper-.ebuild 
b/media-libs/jasper/jasper-.ebuild
index ed20cb057f9..39254dafd4c 100644
--- a/media-libs/jasper/jasper-.ebuild
+++ b/media-libs/jasper/jasper-.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 inherit cmake-multilib
 
@@ -12,17 +12,17 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/mdadams/jasper.git;
 else
-   inherit vcs-snapshot
SRC_URI="https://github.com/mdadams/${PN}/archive/version-${PV}.tar.gz 
-> ${P}.tar.gz"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+   S="${WORKDIR}/${PN}-version-${PV}"
 fi
 
 # We limit memory usage to 128 MiB by default, specified in bytes
 : ${JASPER_MEM_LIMIT:=134217728}
 
 LICENSE="JasPer2.0"
-SLOT="0"
-IUSE="doc jpeg opengl"
+SLOT="0/4"
+IUSE="doc jpeg opengl test"
 
 RDEPEND="
jpeg? ( >=virtual/jpeg-0-r2:0[${MULTILIB_USEDEP}] )
@@ -33,8 +33,10 @@ RDEPEND="
x11-libs/libXi[${MULTILIB_USEDEP}]
x11-libs/libXmu[${MULTILIB_USEDEP}]
)"
-DEPEND="${RDEPEND}
-   doc? ( app-doc/doxygen )"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   doc? ( app-doc/doxygen )
+"
 
 multilib_src_configure() {
local mycmakeargs=(
@@ -58,6 +60,8 @@ multilib_src_configure() {
 
# Doxygen
-DCMAKE_DISABLE_FIND_PACKAGE_Doxygen=$(multilib_native_usex doc 
OFF ON)
+
+   -DJAS_ENABLE_PROGRAMS=$(usex test)
)
cmake-utils_src_configure
 }



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

2019-03-20 Thread Lars Wendler
commit: 0e7dde9ad148fb3fa5ae582c2ab248a43a969e0f
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Mar 20 15:00:14 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Mar 20 15:03:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e7dde9a

media-sound/kid3: Bump to version 3.7.1

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

 media-sound/kid3/Manifest  |  1 +
 media-sound/kid3/kid3-3.7.1.ebuild | 90 ++
 2 files changed, 91 insertions(+)

diff --git a/media-sound/kid3/Manifest b/media-sound/kid3/Manifest
index b38ce572d3d..458f3030c17 100644
--- a/media-sound/kid3/Manifest
+++ b/media-sound/kid3/Manifest
@@ -1 +1,2 @@
 DIST kid3-3.7.0.tar.gz 1466849 BLAKE2B 
39bdab9afb187754914ef77326d9c323e5dd4ab13a6f603deca3dfe97acb0d7a81d58a8eb569397c1a094ebaa7449997b729ce008614c8fc9f04d2b9e7995e03
 SHA512 
3112addba1e0697ae8874bf12336e54c744165a692dc81a99d97194df8511aa540a53085e2be84b3557cd9a2c9d3d887046c06550cef11406b28e6f6e6b507a6
+DIST kid3-3.7.1.tar.gz 1486532 BLAKE2B 
aec19ca9792ab5a3ae975d64b581074f6505507027bc52483a95b8570fdf7484fadd63a5cc740b59817b6b2b7227f02637aeb3e9611d206a536138c6db083198
 SHA512 
68b1d4978e5e984d180981d02df5efa247d50da79e5c6a41010eb3c5369b6cdc023042333865f4730e47814c4b4b69dc2f1bcbe1566396b72637fd576f5e543c

diff --git a/media-sound/kid3/kid3-3.7.1.ebuild 
b/media-sound/kid3/kid3-3.7.1.ebuild
new file mode 100644
index 000..6ae8aae4340
--- /dev/null
+++ b/media-sound/kid3/kid3-3.7.1.ebuild
@@ -0,0 +1,90 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+ECM_KDEINSTALLDIRS="false"
+KDE_HANDBOOK="false" # buildsystem applies broken python hacks, bug #614950
+inherit kde5
+
+DESCRIPTION="Simple tag editor based on Qt"
+HOMEPAGE="https://kid3.sourceforge.io/;
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="5"
+KEYWORDS="~amd64 ~x86"
+IUSE="acoustid flac kde mp3 mp4 +taglib vorbis"
+
+REQUIRED_USE="flac? ( vorbis )"
+
+COMMON_DEPEND="
+   $(add_qt_dep qtdbus)
+   $(add_qt_dep qtdeclarative)
+   $(add_qt_dep qtgui)
+   $(add_qt_dep qtmultimedia)
+   $(add_qt_dep qtnetwork)
+   $(add_qt_dep qtwidgets)
+   $(add_qt_dep qtxml)
+   sys-libs/readline:0=
+   acoustid? (
+   media-libs/chromaprint
+   virtual/ffmpeg
+   )
+   flac? (
+   media-libs/flac[cxx]
+   media-libs/libvorbis
+   )
+   kde? (
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kconfigwidgets)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kwidgetsaddons)
+   $(add_frameworks_dep kxmlgui)
+   )
+   mp3? ( media-libs/id3lib )
+   mp4? ( media-libs/libmp4v2:0 )
+   taglib? ( >=media-libs/taglib-1.9.1 )
+   vorbis? (
+   media-libs/libogg
+   media-libs/libvorbis
+   )
+"
+RDEPEND="${COMMON_DEPEND}
+   !media-sound/kid3:4
+"
+DEPEND="${COMMON_DEPEND}"
+BDEPEND="
+   $(add_qt_dep linguist-tools)
+"
+
+src_prepare() {
+   # overengineered upstream build system
+   # kde5 eclass src_prepare leads to compile failure
+
+   # only enable handbook when required
+   if ! use_if_iuse handbook ; then
+   cmake_comment_add_subdirectory ${KDE_DOC_DIR}
+   fi
+
+   cmake-utils_src_prepare
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DWITH_CHROMAPRINT=$(usex acoustid)
+   -DWITH_FLAC=$(usex flac)
+   -DWITH_ID3LIB=$(usex mp3)
+   -DWITH_MP4V2=$(usex mp4)
+   -DWITH_TAGLIB=$(usex taglib)
+   -DWITH_VORBIS=$(usex vorbis)
+   )
+
+   if use kde ; then
+   mycmakeargs+=( "-DWITH_APPS=KDE;CLI" )
+   else
+   mycmakeargs+=( "-DWITH_APPS=Qt;CLI" )
+   fi
+
+   kde5_src_configure
+}



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

2019-03-20 Thread Michał Górny
commit: 193197e8d9e135cce66413f2470ca61deb0c5e95
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 20 14:14:52 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 20 15:01:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=193197e8

dev-python/clang-python: Bump to 8.0.0 final

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

 dev-python/clang-python/Manifest  |  1 +
 dev-python/clang-python/clang-python-8.0.0.ebuild | 47 +++
 2 files changed, 48 insertions(+)

diff --git a/dev-python/clang-python/Manifest b/dev-python/clang-python/Manifest
index 9dc17d408cf..e14bf0a51eb 100644
--- a/dev-python/clang-python/Manifest
+++ b/dev-python/clang-python/Manifest
@@ -2,4 +2,5 @@ DIST cfe-4.0.1.src.tar.xz 10933628 BLAKE2B 
bc1bb8875e83ccecd446a48cfa41f5c98a09d
 DIST cfe-5.0.2.src.tar.xz 11459216 BLAKE2B 
80d9b2ab70b00c0dfd5c5386a44e0c15d8252e6175c9da55a0519c4f9b8192e32e215110d7d3808225786e2c7f906f2dfbe11dd09bdf21574e99709ae237ed0b
 SHA512 
9931afceb5569ad6caec85d506180c810f7fea94af8c997143b0a37cbf413fcea0d925204786106271efb65fde684066ace0dfcbbf7b61ecd709d22dd0b1
 DIST cfe-6.0.1.src.tar.xz 11905772 BLAKE2B 
abb60e9f9827d1d8a24f0aaf8a1d1e32979293cc401258d230f93290e633645747fd0344af189ac7081b06be2cada503364e1e432b37110ade4b3578e40c7605
 SHA512 
f64ba9290059f6e36fee41c8f32bf483609d31c291fcd2f77d41fecfdf3c8233a5e23b93a1c73fed03683823bd6e72757ed993dd32527de3d5f2b7a64bb031b9
 DIST cfe-7.0.1.src.tar.xz 12488668 BLAKE2B 
b80247b5caf81661dfa715d9bf454b8023221bd27ce49b6bd8cd66f40ffe01448e40fb828fbcc64e49f059af7a7c5a95a0737b0b998454ac5c1dd39388150fa6
 SHA512 
df2f38153ebdc261bcfa6a569567f759bbb1a803192882a9d4eca55a47878166ac9057151a94ad341dc1281136547e4faa783a68070dfde2307b48cacd4b9194
+DIST cfe-8.0.0.src.tar.xz 12868468 BLAKE2B 
3cb96c95c4d9713feb7011e4f1ca24be3e7f6c9b458f6cd9e6905f99737312ca44cb701ed5871e47dd583145e5898d53a65c4cda6456af3d4ca31b670ed84409
 SHA512 
98e540222719716985e5d8439116e47469cb01201ea91d1da7e46cb6633da099688d9352c3b65e5c5f660cbbae353b3d79bb803fc66b3be663f2b04b1feed1c3
 DIST cfe-8.0.0rc5.src.tar.xz 12864516 BLAKE2B 
b1c982d83e0a911a7375d07f9f2f52956b3595674252e6e7d8d8ef4015b51171c59a2d3306c00fcd83ae2fff2eb3d58cc9d4cdeadaca02c4fc3a6242f57959fe
 SHA512 
40f3b6069e40fc4f831662912a8f4c3ab1579587bf48c1fcd9e80287b7e26e8b70becfce525a0b55b1b8283f20a9d67d232cf5ce10189a39d655e2fe3fb3dd73

diff --git a/dev-python/clang-python/clang-python-8.0.0.ebuild 
b/dev-python/clang-python/clang-python-8.0.0.ebuild
new file mode 100644
index 000..9a7fbe1d66a
--- /dev/null
+++ b/dev-python/clang-python/clang-python-8.0.0.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6,3_7} )
+inherit python-r1
+
+MY_P=cfe-${PV/_/}.src
+DESCRIPTION="Python bindings for sys-devel/clang"
+HOMEPAGE="https://llvm.org/;
+SRC_URI="https://releases.llvm.org/${PV/_//}/${MY_P}.tar.xz;
+
+LICENSE="UoI-NCSA"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-fbsd"
+IUSE="test"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+# The module is opening libclang.so directly, and doing some blasphemy
+# on top of it.
+RDEPEND="
+   >=sys-devel/clang-${PV}:*
+   !sys-devel/llvm:0[clang(-),python(-)]
+   !sys-devel/clang:0[python(-)]
+   ${PYTHON_DEPS}"
+DEPEND="${RDEPEND}"
+
+S=${WORKDIR}/${MY_P}/bindings/python
+
+src_unpack() {
+   einfo "Unpacking parts of ${MY_P}.tar.xz ..."
+   tar -xJf "${DISTDIR}/${MY_P}.tar.xz" "${MY_P}/bindings/python" || die
+}
+
+python_test() {
+   "${EPYTHON}" -m unittest discover -v || die "Tests fail with ${EPYTHON}"
+}
+
+src_test() {
+   python_foreach_impl python_test
+}
+
+src_install() {
+   python_foreach_impl python_domodule clang
+}



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

2019-03-20 Thread Michał Górny
commit: 22606f41024c819187810551cca7600ef3e5c3aa
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 20 14:17:05 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 20 15:01:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22606f41

sys-libs/libcxxabi: Remove 8.0.0rc5

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

 sys-libs/libcxxabi/Manifest   |   2 -
 sys-libs/libcxxabi/libcxxabi-8.0.0_rc5.ebuild | 119 --
 2 files changed, 121 deletions(-)

diff --git a/sys-libs/libcxxabi/Manifest b/sys-libs/libcxxabi/Manifest
index 051a90a3391..b6845ea95c5 100644
--- a/sys-libs/libcxxabi/Manifest
+++ b/sys-libs/libcxxabi/Manifest
@@ -1,8 +1,6 @@
 DIST libcxx-6.0.1.src.tar.xz 1552328 BLAKE2B 
65a6addd04e530c2a72e8cba207282b9e9fafc01a594d7b11f63d10b6f88eca67a3cdf90b8055e410ede358d9be1f63fbe427f308e1337833447c0260d96e1c8
 SHA512 
c04f628b0924d76f035f615b59d19ce42dfc19c9a8eea4fe2b22a95cfe5a037ebdb30943fd741443939df5b4cf692bc1e51c840fefefbd134e3afbe2a75fe875
 DIST libcxx-7.0.1.src.tar.xz 1638188 BLAKE2B 
541d27c3801895d59ad06b15de5fe9ff0d9b5b3ef393a5fad05a12a52dd6453ecc530b0ce3129624a27e959d3c9c5f7066ebb57fd85caca538ebf4f990aa6967
 SHA512 
b3ad7ad95bdcf2d902b29de8a0b757d4dbc220bc1a22a813d6bcec15a34b3aa42e85c59f4cecbb318c799ca611550b44c328b37278f4349b984016ad4556c1d8
 DIST libcxx-8.0.0.src.tar.xz 1752308 BLAKE2B 
1e8cd8c7100f5f8b943ba8f38b0b59a0fd5e5bea834953483a67502f67de3eb51eba4ed4be17cdb54406da4ad7ebc6fef33934c59db982afa55856ce9f1f46ff
 SHA512 
2e0fcd3e78f7e15ea894e52c51351daef8e3a2aaf53b3df7497b11403d28f5269ff49a4674bacea1d565a5faa2b24502caaaeff9cd48518f0d141563d8f9cc03
-DIST libcxx-8.0.0rc5.src.tar.xz 1755168 BLAKE2B 
ec3e77fc15d92d4a2e04b706b52379e2f5fefbdd00e6f1bd63061c42781330b279507e690f2f14185e18893bb7b985251e68b5282b26b4c20afbed671d35073b
 SHA512 
aaf6495ea7ddf68441aa4422ca7d0d02f17875553f34010d1e5061a5180774990b227edc6fe133dd4081de7e4f835228ac286b974800fd396b3650c4f7899b7a
 DIST libcxxabi-6.0.1.src.tar.xz 528356 BLAKE2B 
b301b750b2928864d3fc51e66cf91aab6837636ec2bce706b9a97296ec96af4bd2e80b1bf80c9b4afe449335ee12bbdd1905433c27e1770e16bc306baf206927
 SHA512 
bbb4c7b412e295cb735f637df48a83093eef45ed5444f7766790b4b047f75fd5fd634d8f3a8ac33a5c1407bd16fd450ba113f60a9bcc1d0a911fe0c54e9c81f2
 DIST libcxxabi-7.0.1.src.tar.xz 535096 BLAKE2B 
212330e8dbde98280b1bcd4f36ea3f30b69af9816e6c252bd9640c45501536ce38e8b57f3e82195d2a33cb1286651f7cad82713c71e8012e512e04c4ff7bad64
 SHA512 
92e8d28f329e9a8cce296f0fddd88324198f722db3a748bb2164b28ae8eca6047c89ed1e70af00bbedd93ce4285b2ab1e0307a65b88dc60e581eebfd6cbd2038
 DIST libcxxabi-8.0.0.src.tar.xz 539040 BLAKE2B 
847d848e4ed66212789c50137e9556abed601ab4f30765b8b4453f0bc2609e2d1ef516b2f504ee2331a53706940b814545423da05392aed24bf290e6757b52f6
 SHA512 
9ee2e6d5899529be45b2e5edc395606fa9040d25789b3da1ae0182113626e7624cbb071eae525c478293a7b371876e41614348ee5808f90f3f9c7b08837e1055
-DIST libcxxabi-8.0.0rc5.src.tar.xz 539008 BLAKE2B 
899a1dd983e0265dd7961e6d9ed23e6f171b0ab195fc7164ab1d94ec82f52bee370296edfd51cc800cc9646feb92bf338075b19c4ef545ad9195f8ce83bddbea
 SHA512 
9bc9bde4787a21febc0b385c22dd20c33876c79aff585dbee6414d9982cce8ee5df05ed2a681eaf40b4d656e177feb4dcff4782663119ede72c4f4907aca2b9f

diff --git a/sys-libs/libcxxabi/libcxxabi-8.0.0_rc5.ebuild 
b/sys-libs/libcxxabi/libcxxabi-8.0.0_rc5.ebuild
deleted file mode 100644
index c04f5a34e13..000
--- a/sys-libs/libcxxabi/libcxxabi-8.0.0_rc5.ebuild
+++ /dev/null
@@ -1,119 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-: ${CMAKE_MAKEFILE_GENERATOR:=ninja}
-# (needed due to CMAKE_BUILD_TYPE != Gentoo)
-CMAKE_MIN_VERSION=3.7.0-r1
-PYTHON_COMPAT=( python2_7 )
-
-inherit cmake-multilib llvm multiprocessing python-any-r1
-
-MY_P=${P/_/}.src
-LIBCXX_P=libcxx-${PV/_/}.src
-
-DESCRIPTION="Low level support for a standard C++ library"
-HOMEPAGE="https://libcxxabi.llvm.org/;
-SRC_URI="https://prereleases.llvm.org/${PV/_//}/${MY_P}.tar.xz
-   https://prereleases.llvm.org/${PV/_//}/${LIBCXX_P}.tar.xz;
-
-LICENSE="|| ( UoI-NCSA MIT )"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-fbsd"
-IUSE="+libunwind +static-libs test elibc_musl"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   libunwind? (
-   || (
-   
>=sys-libs/libunwind-1.0.1-r1[static-libs?,${MULTILIB_USEDEP}]
-   
>=sys-libs/llvm-libunwind-3.9.0-r1[static-libs?,${MULTILIB_USEDEP}]
-   )
-   )"
-# llvm-6 for new lit options
-DEPEND="${RDEPEND}
-   >=sys-devel/llvm-6
-   test? ( >=sys-devel/clang-3.9.0
-   $(python_gen_any_dep 'dev-python/lit[${PYTHON_USEDEP}]') )"
-
-S=${WORKDIR}/${MY_P}
-
-# least intrusive of all
-CMAKE_BUILD_TYPE=RelWithDebInfo
-
-python_check_deps() {
-   has_version "dev-python/lit[${PYTHON_USEDEP}]"
-}
-
-pkg_setup() {
-   llvm_pkg_setup
-   use test && python-any-r1_pkg_setup
-}
-

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

2019-03-20 Thread Michał Górny
commit: 33a43217fb629b9abbb3d36c41785143ca8dcafd
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 20 14:14:57 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 20 15:01:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33a43217

sys-libs/libcxxabi: Bump to 8.0.0 final

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

 sys-libs/libcxxabi/Manifest   |   2 +
 sys-libs/libcxxabi/libcxxabi-8.0.0.ebuild | 119 ++
 2 files changed, 121 insertions(+)

diff --git a/sys-libs/libcxxabi/Manifest b/sys-libs/libcxxabi/Manifest
index 82b6b5a24f1..051a90a3391 100644
--- a/sys-libs/libcxxabi/Manifest
+++ b/sys-libs/libcxxabi/Manifest
@@ -1,6 +1,8 @@
 DIST libcxx-6.0.1.src.tar.xz 1552328 BLAKE2B 
65a6addd04e530c2a72e8cba207282b9e9fafc01a594d7b11f63d10b6f88eca67a3cdf90b8055e410ede358d9be1f63fbe427f308e1337833447c0260d96e1c8
 SHA512 
c04f628b0924d76f035f615b59d19ce42dfc19c9a8eea4fe2b22a95cfe5a037ebdb30943fd741443939df5b4cf692bc1e51c840fefefbd134e3afbe2a75fe875
 DIST libcxx-7.0.1.src.tar.xz 1638188 BLAKE2B 
541d27c3801895d59ad06b15de5fe9ff0d9b5b3ef393a5fad05a12a52dd6453ecc530b0ce3129624a27e959d3c9c5f7066ebb57fd85caca538ebf4f990aa6967
 SHA512 
b3ad7ad95bdcf2d902b29de8a0b757d4dbc220bc1a22a813d6bcec15a34b3aa42e85c59f4cecbb318c799ca611550b44c328b37278f4349b984016ad4556c1d8
+DIST libcxx-8.0.0.src.tar.xz 1752308 BLAKE2B 
1e8cd8c7100f5f8b943ba8f38b0b59a0fd5e5bea834953483a67502f67de3eb51eba4ed4be17cdb54406da4ad7ebc6fef33934c59db982afa55856ce9f1f46ff
 SHA512 
2e0fcd3e78f7e15ea894e52c51351daef8e3a2aaf53b3df7497b11403d28f5269ff49a4674bacea1d565a5faa2b24502caaaeff9cd48518f0d141563d8f9cc03
 DIST libcxx-8.0.0rc5.src.tar.xz 1755168 BLAKE2B 
ec3e77fc15d92d4a2e04b706b52379e2f5fefbdd00e6f1bd63061c42781330b279507e690f2f14185e18893bb7b985251e68b5282b26b4c20afbed671d35073b
 SHA512 
aaf6495ea7ddf68441aa4422ca7d0d02f17875553f34010d1e5061a5180774990b227edc6fe133dd4081de7e4f835228ac286b974800fd396b3650c4f7899b7a
 DIST libcxxabi-6.0.1.src.tar.xz 528356 BLAKE2B 
b301b750b2928864d3fc51e66cf91aab6837636ec2bce706b9a97296ec96af4bd2e80b1bf80c9b4afe449335ee12bbdd1905433c27e1770e16bc306baf206927
 SHA512 
bbb4c7b412e295cb735f637df48a83093eef45ed5444f7766790b4b047f75fd5fd634d8f3a8ac33a5c1407bd16fd450ba113f60a9bcc1d0a911fe0c54e9c81f2
 DIST libcxxabi-7.0.1.src.tar.xz 535096 BLAKE2B 
212330e8dbde98280b1bcd4f36ea3f30b69af9816e6c252bd9640c45501536ce38e8b57f3e82195d2a33cb1286651f7cad82713c71e8012e512e04c4ff7bad64
 SHA512 
92e8d28f329e9a8cce296f0fddd88324198f722db3a748bb2164b28ae8eca6047c89ed1e70af00bbedd93ce4285b2ab1e0307a65b88dc60e581eebfd6cbd2038
+DIST libcxxabi-8.0.0.src.tar.xz 539040 BLAKE2B 
847d848e4ed66212789c50137e9556abed601ab4f30765b8b4453f0bc2609e2d1ef516b2f504ee2331a53706940b814545423da05392aed24bf290e6757b52f6
 SHA512 
9ee2e6d5899529be45b2e5edc395606fa9040d25789b3da1ae0182113626e7624cbb071eae525c478293a7b371876e41614348ee5808f90f3f9c7b08837e1055
 DIST libcxxabi-8.0.0rc5.src.tar.xz 539008 BLAKE2B 
899a1dd983e0265dd7961e6d9ed23e6f171b0ab195fc7164ab1d94ec82f52bee370296edfd51cc800cc9646feb92bf338075b19c4ef545ad9195f8ce83bddbea
 SHA512 
9bc9bde4787a21febc0b385c22dd20c33876c79aff585dbee6414d9982cce8ee5df05ed2a681eaf40b4d656e177feb4dcff4782663119ede72c4f4907aca2b9f

diff --git a/sys-libs/libcxxabi/libcxxabi-8.0.0.ebuild 
b/sys-libs/libcxxabi/libcxxabi-8.0.0.ebuild
new file mode 100644
index 000..e366f2ae0e7
--- /dev/null
+++ b/sys-libs/libcxxabi/libcxxabi-8.0.0.ebuild
@@ -0,0 +1,119 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+: ${CMAKE_MAKEFILE_GENERATOR:=ninja}
+# (needed due to CMAKE_BUILD_TYPE != Gentoo)
+CMAKE_MIN_VERSION=3.7.0-r1
+PYTHON_COMPAT=( python2_7 )
+
+inherit cmake-multilib llvm multiprocessing python-any-r1
+
+MY_P=${P/_/}.src
+LIBCXX_P=libcxx-${PV/_/}.src
+
+DESCRIPTION="Low level support for a standard C++ library"
+HOMEPAGE="https://libcxxabi.llvm.org/;
+SRC_URI="https://releases.llvm.org/${PV/_//}/${MY_P}.tar.xz
+   https://releases.llvm.org/${PV/_//}/${LIBCXX_P}.tar.xz;
+
+LICENSE="|| ( UoI-NCSA MIT )"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-fbsd"
+IUSE="+libunwind +static-libs test elibc_musl"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   libunwind? (
+   || (
+   
>=sys-libs/libunwind-1.0.1-r1[static-libs?,${MULTILIB_USEDEP}]
+   
>=sys-libs/llvm-libunwind-3.9.0-r1[static-libs?,${MULTILIB_USEDEP}]
+   )
+   )"
+# llvm-6 for new lit options
+DEPEND="${RDEPEND}
+   >=sys-devel/llvm-6
+   test? ( >=sys-devel/clang-3.9.0
+   $(python_gen_any_dep 'dev-python/lit[${PYTHON_USEDEP}]') )"
+
+S=${WORKDIR}/${MY_P}
+
+# least intrusive of all
+CMAKE_BUILD_TYPE=RelWithDebInfo
+
+python_check_deps() {
+   has_version "dev-python/lit[${PYTHON_USEDEP}]"
+}
+
+pkg_setup() {
+   llvm_pkg_setup
+   use test && python-any-r1_pkg_setup
+}
+
+src_unpack() {
+   

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

2019-03-20 Thread Michał Górny
commit: 6f1a0b24736ead6e7de5d9594cc0681d52c669d2
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 20 14:14:57 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 20 15:01:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f1a0b24

sys-libs/libcxx: Bump to 8.0.0 final

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

 sys-libs/libcxx/Manifest|   1 +
 sys-libs/libcxx/libcxx-8.0.0.ebuild | 215 
 2 files changed, 216 insertions(+)

diff --git a/sys-libs/libcxx/Manifest b/sys-libs/libcxx/Manifest
index 249dc4cadbe..72717228eb2 100644
--- a/sys-libs/libcxx/Manifest
+++ b/sys-libs/libcxx/Manifest
@@ -1,3 +1,4 @@
 DIST libcxx-6.0.1.src.tar.xz 1552328 BLAKE2B 
65a6addd04e530c2a72e8cba207282b9e9fafc01a594d7b11f63d10b6f88eca67a3cdf90b8055e410ede358d9be1f63fbe427f308e1337833447c0260d96e1c8
 SHA512 
c04f628b0924d76f035f615b59d19ce42dfc19c9a8eea4fe2b22a95cfe5a037ebdb30943fd741443939df5b4cf692bc1e51c840fefefbd134e3afbe2a75fe875
 DIST libcxx-7.0.1.src.tar.xz 1638188 BLAKE2B 
541d27c3801895d59ad06b15de5fe9ff0d9b5b3ef393a5fad05a12a52dd6453ecc530b0ce3129624a27e959d3c9c5f7066ebb57fd85caca538ebf4f990aa6967
 SHA512 
b3ad7ad95bdcf2d902b29de8a0b757d4dbc220bc1a22a813d6bcec15a34b3aa42e85c59f4cecbb318c799ca611550b44c328b37278f4349b984016ad4556c1d8
+DIST libcxx-8.0.0.src.tar.xz 1752308 BLAKE2B 
1e8cd8c7100f5f8b943ba8f38b0b59a0fd5e5bea834953483a67502f67de3eb51eba4ed4be17cdb54406da4ad7ebc6fef33934c59db982afa55856ce9f1f46ff
 SHA512 
2e0fcd3e78f7e15ea894e52c51351daef8e3a2aaf53b3df7497b11403d28f5269ff49a4674bacea1d565a5faa2b24502caaaeff9cd48518f0d141563d8f9cc03
 DIST libcxx-8.0.0rc5.src.tar.xz 1755168 BLAKE2B 
ec3e77fc15d92d4a2e04b706b52379e2f5fefbdd00e6f1bd63061c42781330b279507e690f2f14185e18893bb7b985251e68b5282b26b4c20afbed671d35073b
 SHA512 
aaf6495ea7ddf68441aa4422ca7d0d02f17875553f34010d1e5061a5180774990b227edc6fe133dd4081de7e4f835228ac286b974800fd396b3650c4f7899b7a

diff --git a/sys-libs/libcxx/libcxx-8.0.0.ebuild 
b/sys-libs/libcxx/libcxx-8.0.0.ebuild
new file mode 100644
index 000..29aa632a979
--- /dev/null
+++ b/sys-libs/libcxx/libcxx-8.0.0.ebuild
@@ -0,0 +1,215 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+# Ninja provides better scalability and cleaner verbose output, and is used
+# throughout all LLVM projects.
+: ${CMAKE_MAKEFILE_GENERATOR:=ninja}
+# (needed due to CMAKE_BUILD_TYPE != Gentoo)
+CMAKE_MIN_VERSION=3.7.0-r1
+PYTHON_COMPAT=( python2_7 )
+
+inherit cmake-multilib llvm multiprocessing python-any-r1 \
+   toolchain-funcs
+
+DESCRIPTION="New implementation of the C++ standard library, targeting C++11"
+HOMEPAGE="https://libcxx.llvm.org/;
+SRC_URI="https://releases.llvm.org/${PV/_//}/${P/_/}.src.tar.xz;
+
+LICENSE="|| ( UoI-NCSA MIT )"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-fbsd"
+IUSE="elibc_glibc elibc_musl +libcxxabi libcxxrt +libunwind +static-libs test"
+REQUIRED_USE="libunwind? ( || ( libcxxabi libcxxrt ) )
+   ?? ( libcxxabi libcxxrt )"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   libcxxabi? ( 
~sys-libs/libcxxabi-${PV}[libunwind=,static-libs?,${MULTILIB_USEDEP}] )
+   libcxxrt? ( 
sys-libs/libcxxrt[libunwind=,static-libs?,${MULTILIB_USEDEP}] )
+   !libcxxabi? ( !libcxxrt? ( >=sys-devel/gcc-4.7:=[cxx] ) )"
+# llvm-6 for new lit options
+# clang-3.9.0 installs necessary target symlinks unconditionally
+# which removes the need for MULTILIB_USEDEP
+DEPEND="${RDEPEND}
+   test? ( >=sys-devel/clang-3.9.0
+   $(python_gen_any_dep 'dev-python/lit[${PYTHON_USEDEP}]') )
+   app-arch/xz-utils
+   >=sys-devel/llvm-6"
+
+S=${WORKDIR}/${P/_/}.src
+
+DOCS=( CREDITS.TXT )
+
+PATCHES=(
+   # Add link flag "-Wl,-z,defs" to avoid underlinking; this is needed in a
+   # out-of-tree build.
+   "${FILESDIR}/${PN}-3.9-cmake-link-flags.patch"
+)
+
+# least intrusive of all
+CMAKE_BUILD_TYPE=RelWithDebInfo
+
+python_check_deps() {
+   has_version "dev-python/lit[${PYTHON_USEDEP}]"
+}
+
+pkg_setup() {
+   llvm_pkg_setup
+   use test && python-any-r1_pkg_setup
+
+   if ! use libcxxabi && ! use libcxxrt && ! tc-is-gcc ; then
+   eerror "To build ${PN} against libsupc++, you have to use gcc. 
Other"
+   eerror "compilers are not supported. Please set CC=gcc and 
CXX=g++"
+   eerror "and try again."
+   die
+   fi
+   if tc-is-gcc && [[ $(gcc-version) < 4.7 ]] ; then
+   eerror "${PN} needs to be built with gcc-4.7 or later (or other"
+   eerror "conformant compilers). Please use gcc-config to switch 
to"
+   eerror "gcc-4.7 or later version."
+   die
+   fi
+}
+
+test_compiler() {
+   $(tc-getCXX) ${CXXFLAGS} ${LDFLAGS} "${@}" -o /dev/null -x c++ - \
+   <<<'int main() { return 0; }' &>/dev/null
+}
+
+src_configure() {
+   # note: we need to do 

[gentoo-commits] repo/gentoo:master commit in: dev-ml/llvm-ocaml/

2019-03-20 Thread Michał Górny
commit: 073e8b60fd0cd714b8084043a1bd801757b19b6c
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 20 14:17:14 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 20 15:02:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=073e8b60

dev-ml/llvm-ocaml: Remove 8.0.0rc5

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

 dev-ml/llvm-ocaml/Manifest|   1 -
 dev-ml/llvm-ocaml/llvm-ocaml-8.0.0_rc5.ebuild | 127 --
 2 files changed, 128 deletions(-)

diff --git a/dev-ml/llvm-ocaml/Manifest b/dev-ml/llvm-ocaml/Manifest
index d30342edf6a..518151e3600 100644
--- a/dev-ml/llvm-ocaml/Manifest
+++ b/dev-ml/llvm-ocaml/Manifest
@@ -3,4 +3,3 @@ DIST llvm-5.0.2.src.tar.xz 23451868 BLAKE2B 
b7082be2e4ad557b29b9f6869811f262adcf
 DIST llvm-6.0.1.src.tar.xz 25306628 BLAKE2B 
60232d4d22f8096b565cc8d81fea0639f24f14e8fc4f66ade69fa15479181f07f655f26dff3fa24bf105762b495da316c5c9352db234bd0af6b9c3fff6d4d881
 SHA512 
cbbb00eb99cfeb4aff623ee1a5ba075e7b5a76fc00c5f9f539ff28c108598f5708a0369d5bd92683def5a20c2fe60cab7827b42d628dbfcc79b57e0e91b84dd9
 DIST llvm-7.0.1.src.tar.xz 28311056 BLAKE2B 
737aa6144a415e41a4ff2c8bd5a727d6f14d7b1810c62cbefa5a25fe642c98cddf8a28e35c7e9783373aa3b96f5c0943229e229ad1b43e56e9ed6db0f27ab128
 SHA512 
ac43a3cb71a53deb55e3693653847cf20bf6f5d9056f224e6956c96d63bc59ebee9404f088eec9cabe65337b4607a905ef931354b373cf64e0004c6905a6b5df
 DIST llvm-8.0.0.src.tar.xz 30503732 BLAKE2B 
d89bdeb0ec7d885e49cfe5ae025da84f00502d409710c0807a3cdd58dbd47c50cf6a635593569483150f7f2ecb0de0310bd6785cb7625219bf9f6224a0d68e1c
 SHA512 
1602343b451b964f5d8c2d6b0654d89384c80d45883498c5f0e2f4196168dd4a1ed2a4dadb752076020243df42ffe46cb31d82ffc145d8e5874163cbb9686a1f
-DIST llvm-8.0.0rc5.src.tar.xz 30507432 BLAKE2B 
3f20c3dc270439a32fe23e403ca5190e624f329a10d424d15475d32d89725b021f12af19845928da41be4b83afd254df1f6d27f235b0d2ab81ff76d9e588250f
 SHA512 
b015bab2f0b0644d9fab295dee5d3b2a4d4d7c9d5870a06d7829f43d61e92aeb31b28d4c074f6a20ad803dde06399ef3298c951f1580b010f4b756f75bb4453b

diff --git a/dev-ml/llvm-ocaml/llvm-ocaml-8.0.0_rc5.ebuild 
b/dev-ml/llvm-ocaml/llvm-ocaml-8.0.0_rc5.ebuild
deleted file mode 100644
index 75111b867fb..000
--- a/dev-ml/llvm-ocaml/llvm-ocaml-8.0.0_rc5.ebuild
+++ /dev/null
@@ -1,127 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-: ${CMAKE_MAKEFILE_GENERATOR:=ninja}
-# (needed due to CMAKE_BUILD_TYPE != Gentoo)
-CMAKE_MIN_VERSION=3.7.0-r1
-PYTHON_COMPAT=( python2_7 )
-
-inherit cmake-utils llvm multiprocessing python-any-r1
-
-MY_P=llvm-${PV/_/}.src
-DESCRIPTION="OCaml bindings for LLVM"
-HOMEPAGE="https://llvm.org/;
-SRC_URI="https://prereleases.llvm.org/${PV/_//}/${MY_P}.tar.xz;
-
-# Keep in sync with sys-devel/llvm
-ALL_LLVM_TARGETS=( AArch64 AMDGPU ARM BPF Hexagon Lanai Mips MSP430
-   NVPTX PowerPC Sparc SystemZ X86 XCore )
-ALL_LLVM_TARGETS=( "${ALL_LLVM_TARGETS[@]/#/llvm_targets_}" )
-LLVM_TARGET_USEDEPS=${ALL_LLVM_TARGETS[@]/%/?}
-
-LICENSE="UoI-NCSA"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE="debug test ${ALL_LLVM_TARGETS[*]}"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   >=dev-lang/ocaml-4.00.0:0=
-   dev-ml/ocaml-ctypes:=
-   ~sys-devel/llvm-${PV}:=[${LLVM_TARGET_USEDEPS// /,},debug?]
-   !sys-devel/llvm[ocaml(-)]"
-# configparser-3.2 breaks the build (3.3 or none at all are fine)
-DEPEND="${RDEPEND}
-   dev-lang/perl
-   dev-ml/findlib
-   test? ( dev-ml/ounit )
-   !!

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

2019-03-20 Thread Michał Górny
commit: 3f625524477795d6b1d7e0712bcce3c0bd42c462
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 20 14:17:03 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 20 15:01:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f625524

sys-libs/libomp: Remove 8.0.0rc5

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

 sys-libs/libomp/Manifest|   1 -
 sys-libs/libomp/libomp-8.0.0_rc5.ebuild | 115 
 2 files changed, 116 deletions(-)

diff --git a/sys-libs/libomp/Manifest b/sys-libs/libomp/Manifest
index 2ab59b590a5..632c9f33b6f 100644
--- a/sys-libs/libomp/Manifest
+++ b/sys-libs/libomp/Manifest
@@ -1,4 +1,3 @@
 DIST openmp-6.0.1.src.tar.xz 2048320 BLAKE2B 
08b3a7051c985903f78331f55a1c6e928399b87c862c43c991e9bf78b66b6e412fc96f202b82c051176dbbe02422f8ceb7414f44ea8f3522f418e515c0f70c62
 SHA512 
abb956583e5d11d0c6f6d97183c081d658616a74933be884a591eaa3d8c4bb04f08f02016d2c86d7384c7ff1aa44fb949b0d967fc0ff50e3132aaba412e9add8
 DIST openmp-7.0.1.src.tar.xz 909316 BLAKE2B 
b8adbf67738b8d2d2d42b45b24aabd2f5e65a7b9cdda0d4a62511808c2101d9bb925b4904a9ecb98f77a1b7f38f13408fea6f724748183f9d5f5419c3fdeac54
 SHA512 
2062db8b87bce2c130bab528a6d654cb05b3de7641737552fc263724ceaa5e322afc2787796a0bddcda8d1bdf913a49f5a0180abcc57f8842b7e8ea8df4d6f51
 DIST openmp-8.0.0.src.tar.xz 934384 BLAKE2B 
f473fad9e8bcab1ad0c6ffab7cee471065d615947964177194f829847d41e726fb435562f1637f2a65d3ae84e01a8077662de047443f33d089948e2efb58906c
 SHA512 
0fff071c9dbf118bc1908e433d6ce571f47a4f2dbc5bf2d843151889e3414473bb5a9c97dc0b6dc6d1bd9ab0c6e365cae625f97d1b11d5d6ae059fa5a0496cb3
-DIST openmp-8.0.0rc5.src.tar.xz 934496 BLAKE2B 
058c69a972c6296d941f9a0d9e3d69eb8020fccb8985dedc0f6f5020b55cd2f239a2e0f66157870b46adb20be08fa6350d1aea2261523a70b6a9a3704bcbabed
 SHA512 
818daa70fc638879ae00dda783bef69e9b39f3ca6d57bc233b4a5a0478e96ddf311d99ff3d254a81a26a6b75eca56accb6f7d30e4911bcd1cd259fab1dad80b4

diff --git a/sys-libs/libomp/libomp-8.0.0_rc5.ebuild 
b/sys-libs/libomp/libomp-8.0.0_rc5.ebuild
deleted file mode 100644
index 11a034d619b..000
--- a/sys-libs/libomp/libomp-8.0.0_rc5.ebuild
+++ /dev/null
@@ -1,115 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-: ${CMAKE_MAKEFILE_GENERATOR:=ninja}
-# (needed due to CMAKE_BUILD_TYPE != Gentoo)
-CMAKE_MIN_VERSION=3.7.0-r1
-PYTHON_COMPAT=( python2_7 )
-
-inherit cmake-multilib linux-info multiprocessing python-any-r1
-
-DESCRIPTION="OpenMP runtime library for LLVM/clang compiler"
-HOMEPAGE="https://openmp.llvm.org;
-SRC_URI="https://prereleases.llvm.org/${PV/_//}/openmp-${PV/_/}.src.tar.xz;
-
-# Additional licenses:
-# - MIT-licensed Intel code,
-# - LLVM Software Grant from Intel.
-
-LICENSE="|| ( UoI-NCSA MIT ) MIT LLVM-Grant"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-fbsd ~amd64-linux ~x64-macos"
-IUSE="cuda hwloc kernel_linux offload ompt test"
-# CUDA works only with the x86_64 ABI
-REQUIRED_USE="offload? ( cuda? ( abi_x86_64 ) )"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   hwloc? ( sys-apps/hwloc:0=[${MULTILIB_USEDEP}] )
-   offload? (
-   virtual/libelf:=[${MULTILIB_USEDEP}]
-   virtual/libffi:=[${MULTILIB_USEDEP}]
-   cuda? ( dev-util/nvidia-cuda-toolkit:= )
-   )"
-# tests:
-# - dev-python/lit provides the test runner
-# - sys-devel/llvm provide test utils (e.g. FileCheck)
-# - sys-devel/clang provides the compiler to run tests
-DEPEND="${RDEPEND}
-   dev-lang/perl
-   offload? ( virtual/pkgconfig[${MULTILIB_USEDEP}] )
-   test? (
-   $(python_gen_any_dep 'dev-python/lit[${PYTHON_USEDEP}]')
-   >=sys-devel/clang-6
-   )"
-
-S=${WORKDIR}/openmp-${PV/_/}.src
-
-# least intrusive of all
-CMAKE_BUILD_TYPE=RelWithDebInfo
-
-python_check_deps() {
-   has_version "dev-python/lit[${PYTHON_USEDEP}]"
-}
-
-kernel_pds_check() {
-   if use kernel_linux && kernel_is -lt 4 15 && kernel_is -ge 4 13; then
-   local CONFIG_CHECK="~!SCHED_PDS"
-   local ERROR_SCHED_PDS="\
-PDS scheduler versions >= 0.98c < 0.98i (e.g. used in kernels >= 4.13-pf11
-< 4.14-pf9) do not implement sched_yield() call which may result in horrible
-performance problems with libomp. If you are using one of the specified
-kernel versions, you may want to disable the PDS scheduler."
-
-   check_extra_config
-   fi
-}
-
-pkg_pretend() {
-   kernel_pds_check
-}
-
-pkg_setup() {
-   use test && python-any-r1_pkg_setup
-}
-
-multilib_src_configure() {
-   local libdir="$(get_libdir)"
-   local mycmakeargs=(
-   -DOPENMP_LIBDIR_SUFFIX="${libdir#lib}"
-
-   -DLIBOMP_USE_HWLOC=$(usex hwloc)
-   -DLIBOMP_OMPT_SUPPORT=$(usex ompt)
-
-   -DOPENMP_ENABLE_LIBOMPTARGET=$(usex offload)
-
-   # do not install libgomp.so & libiomp5.so aliases
-   

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

2019-03-20 Thread Michał Górny
commit: 8753f709abb71929c02739379c5119f86b68716a
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 20 14:17:10 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 20 15:02:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8753f709

dev-python/clang-python: Remove 8.0.0rc5

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

 dev-python/clang-python/Manifest   |  1 -
 .../clang-python/clang-python-8.0.0_rc5.ebuild | 47 --
 2 files changed, 48 deletions(-)

diff --git a/dev-python/clang-python/Manifest b/dev-python/clang-python/Manifest
index e14bf0a51eb..2b9d7da1475 100644
--- a/dev-python/clang-python/Manifest
+++ b/dev-python/clang-python/Manifest
@@ -3,4 +3,3 @@ DIST cfe-5.0.2.src.tar.xz 11459216 BLAKE2B 
80d9b2ab70b00c0dfd5c5386a44e0c15d8252
 DIST cfe-6.0.1.src.tar.xz 11905772 BLAKE2B 
abb60e9f9827d1d8a24f0aaf8a1d1e32979293cc401258d230f93290e633645747fd0344af189ac7081b06be2cada503364e1e432b37110ade4b3578e40c7605
 SHA512 
f64ba9290059f6e36fee41c8f32bf483609d31c291fcd2f77d41fecfdf3c8233a5e23b93a1c73fed03683823bd6e72757ed993dd32527de3d5f2b7a64bb031b9
 DIST cfe-7.0.1.src.tar.xz 12488668 BLAKE2B 
b80247b5caf81661dfa715d9bf454b8023221bd27ce49b6bd8cd66f40ffe01448e40fb828fbcc64e49f059af7a7c5a95a0737b0b998454ac5c1dd39388150fa6
 SHA512 
df2f38153ebdc261bcfa6a569567f759bbb1a803192882a9d4eca55a47878166ac9057151a94ad341dc1281136547e4faa783a68070dfde2307b48cacd4b9194
 DIST cfe-8.0.0.src.tar.xz 12868468 BLAKE2B 
3cb96c95c4d9713feb7011e4f1ca24be3e7f6c9b458f6cd9e6905f99737312ca44cb701ed5871e47dd583145e5898d53a65c4cda6456af3d4ca31b670ed84409
 SHA512 
98e540222719716985e5d8439116e47469cb01201ea91d1da7e46cb6633da099688d9352c3b65e5c5f660cbbae353b3d79bb803fc66b3be663f2b04b1feed1c3
-DIST cfe-8.0.0rc5.src.tar.xz 12864516 BLAKE2B 
b1c982d83e0a911a7375d07f9f2f52956b3595674252e6e7d8d8ef4015b51171c59a2d3306c00fcd83ae2fff2eb3d58cc9d4cdeadaca02c4fc3a6242f57959fe
 SHA512 
40f3b6069e40fc4f831662912a8f4c3ab1579587bf48c1fcd9e80287b7e26e8b70becfce525a0b55b1b8283f20a9d67d232cf5ce10189a39d655e2fe3fb3dd73

diff --git a/dev-python/clang-python/clang-python-8.0.0_rc5.ebuild 
b/dev-python/clang-python/clang-python-8.0.0_rc5.ebuild
deleted file mode 100644
index ba2878b2698..000
--- a/dev-python/clang-python/clang-python-8.0.0_rc5.ebuild
+++ /dev/null
@@ -1,47 +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_4,3_5,3_6,3_7} )
-inherit python-r1
-
-MY_P=cfe-${PV/_/}.src
-DESCRIPTION="Python bindings for sys-devel/clang"
-HOMEPAGE="https://llvm.org/;
-SRC_URI="https://prereleases.llvm.org/${PV/_//}/${MY_P}.tar.xz;
-
-LICENSE="UoI-NCSA"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-fbsd"
-IUSE="test"
-RESTRICT="!test? ( test )"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-# The module is opening libclang.so directly, and doing some blasphemy
-# on top of it.
-RDEPEND="
-   >=sys-devel/clang-${PV}:*
-   !sys-devel/llvm:0[clang(-),python(-)]
-   !sys-devel/clang:0[python(-)]
-   ${PYTHON_DEPS}"
-DEPEND="${RDEPEND}"
-
-S=${WORKDIR}/${MY_P}/bindings/python
-
-src_unpack() {
-   einfo "Unpacking parts of ${MY_P}.tar.xz ..."
-   tar -xJf "${DISTDIR}/${MY_P}.tar.xz" "${MY_P}/bindings/python" || die
-}
-
-python_test() {
-   "${EPYTHON}" -m unittest discover -v || die "Tests fail with ${EPYTHON}"
-}
-
-src_test() {
-   python_foreach_impl python_test
-}
-
-src_install() {
-   python_foreach_impl python_domodule clang
-}



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

2019-03-20 Thread Michał Górny
commit: 05add8e01e2781aaf121b2ca17604a8ebe19eb77
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 20 14:17:04 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 20 15:01:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05add8e0

sys-libs/libcxx: Remove 8.0.0rc5

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

 sys-libs/libcxx/Manifest|   1 -
 sys-libs/libcxx/libcxx-8.0.0_rc5.ebuild | 215 
 2 files changed, 216 deletions(-)

diff --git a/sys-libs/libcxx/Manifest b/sys-libs/libcxx/Manifest
index 72717228eb2..ea4e572a5b7 100644
--- a/sys-libs/libcxx/Manifest
+++ b/sys-libs/libcxx/Manifest
@@ -1,4 +1,3 @@
 DIST libcxx-6.0.1.src.tar.xz 1552328 BLAKE2B 
65a6addd04e530c2a72e8cba207282b9e9fafc01a594d7b11f63d10b6f88eca67a3cdf90b8055e410ede358d9be1f63fbe427f308e1337833447c0260d96e1c8
 SHA512 
c04f628b0924d76f035f615b59d19ce42dfc19c9a8eea4fe2b22a95cfe5a037ebdb30943fd741443939df5b4cf692bc1e51c840fefefbd134e3afbe2a75fe875
 DIST libcxx-7.0.1.src.tar.xz 1638188 BLAKE2B 
541d27c3801895d59ad06b15de5fe9ff0d9b5b3ef393a5fad05a12a52dd6453ecc530b0ce3129624a27e959d3c9c5f7066ebb57fd85caca538ebf4f990aa6967
 SHA512 
b3ad7ad95bdcf2d902b29de8a0b757d4dbc220bc1a22a813d6bcec15a34b3aa42e85c59f4cecbb318c799ca611550b44c328b37278f4349b984016ad4556c1d8
 DIST libcxx-8.0.0.src.tar.xz 1752308 BLAKE2B 
1e8cd8c7100f5f8b943ba8f38b0b59a0fd5e5bea834953483a67502f67de3eb51eba4ed4be17cdb54406da4ad7ebc6fef33934c59db982afa55856ce9f1f46ff
 SHA512 
2e0fcd3e78f7e15ea894e52c51351daef8e3a2aaf53b3df7497b11403d28f5269ff49a4674bacea1d565a5faa2b24502caaaeff9cd48518f0d141563d8f9cc03
-DIST libcxx-8.0.0rc5.src.tar.xz 1755168 BLAKE2B 
ec3e77fc15d92d4a2e04b706b52379e2f5fefbdd00e6f1bd63061c42781330b279507e690f2f14185e18893bb7b985251e68b5282b26b4c20afbed671d35073b
 SHA512 
aaf6495ea7ddf68441aa4422ca7d0d02f17875553f34010d1e5061a5180774990b227edc6fe133dd4081de7e4f835228ac286b974800fd396b3650c4f7899b7a

diff --git a/sys-libs/libcxx/libcxx-8.0.0_rc5.ebuild 
b/sys-libs/libcxx/libcxx-8.0.0_rc5.ebuild
deleted file mode 100644
index 4e0e73c96b4..000
--- a/sys-libs/libcxx/libcxx-8.0.0_rc5.ebuild
+++ /dev/null
@@ -1,215 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-# Ninja provides better scalability and cleaner verbose output, and is used
-# throughout all LLVM projects.
-: ${CMAKE_MAKEFILE_GENERATOR:=ninja}
-# (needed due to CMAKE_BUILD_TYPE != Gentoo)
-CMAKE_MIN_VERSION=3.7.0-r1
-PYTHON_COMPAT=( python2_7 )
-
-inherit cmake-multilib llvm multiprocessing python-any-r1 \
-   toolchain-funcs
-
-DESCRIPTION="New implementation of the C++ standard library, targeting C++11"
-HOMEPAGE="https://libcxx.llvm.org/;
-SRC_URI="https://prereleases.llvm.org/${PV/_//}/${P/_/}.src.tar.xz;
-
-LICENSE="|| ( UoI-NCSA MIT )"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-fbsd"
-IUSE="elibc_glibc elibc_musl +libcxxabi libcxxrt +libunwind +static-libs test"
-REQUIRED_USE="libunwind? ( || ( libcxxabi libcxxrt ) )
-   ?? ( libcxxabi libcxxrt )"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   libcxxabi? ( 
~sys-libs/libcxxabi-${PV}[libunwind=,static-libs?,${MULTILIB_USEDEP}] )
-   libcxxrt? ( 
sys-libs/libcxxrt[libunwind=,static-libs?,${MULTILIB_USEDEP}] )
-   !libcxxabi? ( !libcxxrt? ( >=sys-devel/gcc-4.7:=[cxx] ) )"
-# llvm-6 for new lit options
-# clang-3.9.0 installs necessary target symlinks unconditionally
-# which removes the need for MULTILIB_USEDEP
-DEPEND="${RDEPEND}
-   test? ( >=sys-devel/clang-3.9.0
-   $(python_gen_any_dep 'dev-python/lit[${PYTHON_USEDEP}]') )
-   app-arch/xz-utils
-   >=sys-devel/llvm-6"
-
-S=${WORKDIR}/${P/_/}.src
-
-DOCS=( CREDITS.TXT )
-
-PATCHES=(
-   # Add link flag "-Wl,-z,defs" to avoid underlinking; this is needed in a
-   # out-of-tree build.
-   "${FILESDIR}/${PN}-3.9-cmake-link-flags.patch"
-)
-
-# least intrusive of all
-CMAKE_BUILD_TYPE=RelWithDebInfo
-
-python_check_deps() {
-   has_version "dev-python/lit[${PYTHON_USEDEP}]"
-}
-
-pkg_setup() {
-   llvm_pkg_setup
-   use test && python-any-r1_pkg_setup
-
-   if ! use libcxxabi && ! use libcxxrt && ! tc-is-gcc ; then
-   eerror "To build ${PN} against libsupc++, you have to use gcc. 
Other"
-   eerror "compilers are not supported. Please set CC=gcc and 
CXX=g++"
-   eerror "and try again."
-   die
-   fi
-   if tc-is-gcc && [[ $(gcc-version) < 4.7 ]] ; then
-   eerror "${PN} needs to be built with gcc-4.7 or later (or other"
-   eerror "conformant compilers). Please use gcc-config to switch 
to"
-   eerror "gcc-4.7 or later version."
-   die
-   fi
-}
-
-test_compiler() {
-   $(tc-getCXX) ${CXXFLAGS} ${LDFLAGS} "${@}" -o /dev/null -x c++ - \
-   <<<'int main() { return 0; }' &>/dev/null
-}
-
-src_configure() {
-   # 

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

2019-03-20 Thread Michał Górny
commit: 92dd0710b2209b3e64c8f8820adc93dd8d1a84dc
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 20 14:14:56 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 20 15:01:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92dd0710

sys-libs/llvm-libunwind: Bump to 8.0.0 final

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

 sys-libs/llvm-libunwind/Manifest   |   3 +
 .../llvm-libunwind/llvm-libunwind-8.0.0.ebuild | 143 +
 2 files changed, 146 insertions(+)

diff --git a/sys-libs/llvm-libunwind/Manifest b/sys-libs/llvm-libunwind/Manifest
index a84e463edc2..714935d0a97 100644
--- a/sys-libs/llvm-libunwind/Manifest
+++ b/sys-libs/llvm-libunwind/Manifest
@@ -1,9 +1,12 @@
 DIST libcxx-6.0.1.src.tar.xz 1552328 BLAKE2B 
65a6addd04e530c2a72e8cba207282b9e9fafc01a594d7b11f63d10b6f88eca67a3cdf90b8055e410ede358d9be1f63fbe427f308e1337833447c0260d96e1c8
 SHA512 
c04f628b0924d76f035f615b59d19ce42dfc19c9a8eea4fe2b22a95cfe5a037ebdb30943fd741443939df5b4cf692bc1e51c840fefefbd134e3afbe2a75fe875
 DIST libcxx-7.0.1.src.tar.xz 1638188 BLAKE2B 
541d27c3801895d59ad06b15de5fe9ff0d9b5b3ef393a5fad05a12a52dd6453ecc530b0ce3129624a27e959d3c9c5f7066ebb57fd85caca538ebf4f990aa6967
 SHA512 
b3ad7ad95bdcf2d902b29de8a0b757d4dbc220bc1a22a813d6bcec15a34b3aa42e85c59f4cecbb318c799ca611550b44c328b37278f4349b984016ad4556c1d8
+DIST libcxx-8.0.0.src.tar.xz 1752308 BLAKE2B 
1e8cd8c7100f5f8b943ba8f38b0b59a0fd5e5bea834953483a67502f67de3eb51eba4ed4be17cdb54406da4ad7ebc6fef33934c59db982afa55856ce9f1f46ff
 SHA512 
2e0fcd3e78f7e15ea894e52c51351daef8e3a2aaf53b3df7497b11403d28f5269ff49a4674bacea1d565a5faa2b24502caaaeff9cd48518f0d141563d8f9cc03
 DIST libcxx-8.0.0rc5.src.tar.xz 1755168 BLAKE2B 
ec3e77fc15d92d4a2e04b706b52379e2f5fefbdd00e6f1bd63061c42781330b279507e690f2f14185e18893bb7b985251e68b5282b26b4c20afbed671d35073b
 SHA512 
aaf6495ea7ddf68441aa4422ca7d0d02f17875553f34010d1e5061a5180774990b227edc6fe133dd4081de7e4f835228ac286b974800fd396b3650c4f7899b7a
 DIST libcxxabi-6.0.1.src.tar.xz 528356 BLAKE2B 
b301b750b2928864d3fc51e66cf91aab6837636ec2bce706b9a97296ec96af4bd2e80b1bf80c9b4afe449335ee12bbdd1905433c27e1770e16bc306baf206927
 SHA512 
bbb4c7b412e295cb735f637df48a83093eef45ed5444f7766790b4b047f75fd5fd634d8f3a8ac33a5c1407bd16fd450ba113f60a9bcc1d0a911fe0c54e9c81f2
 DIST libcxxabi-7.0.1.src.tar.xz 535096 BLAKE2B 
212330e8dbde98280b1bcd4f36ea3f30b69af9816e6c252bd9640c45501536ce38e8b57f3e82195d2a33cb1286651f7cad82713c71e8012e512e04c4ff7bad64
 SHA512 
92e8d28f329e9a8cce296f0fddd88324198f722db3a748bb2164b28ae8eca6047c89ed1e70af00bbedd93ce4285b2ab1e0307a65b88dc60e581eebfd6cbd2038
+DIST libcxxabi-8.0.0.src.tar.xz 539040 BLAKE2B 
847d848e4ed66212789c50137e9556abed601ab4f30765b8b4453f0bc2609e2d1ef516b2f504ee2331a53706940b814545423da05392aed24bf290e6757b52f6
 SHA512 
9ee2e6d5899529be45b2e5edc395606fa9040d25789b3da1ae0182113626e7624cbb071eae525c478293a7b371876e41614348ee5808f90f3f9c7b08837e1055
 DIST libcxxabi-8.0.0rc5.src.tar.xz 539008 BLAKE2B 
899a1dd983e0265dd7961e6d9ed23e6f171b0ab195fc7164ab1d94ec82f52bee370296edfd51cc800cc9646feb92bf338075b19c4ef545ad9195f8ce83bddbea
 SHA512 
9bc9bde4787a21febc0b385c22dd20c33876c79aff585dbee6414d9982cce8ee5df05ed2a681eaf40b4d656e177feb4dcff4782663119ede72c4f4907aca2b9f
 DIST libunwind-6.0.1.src.tar.xz 77036 BLAKE2B 
b6c293285896c8ff1f64bb56eee5a88b102b7ed9902d46436ee3cb79f204f230fd08a07d39c7fa9aeeddd093036f2bb9af38dd54268099ea9e51e12a71ff4adb
 SHA512 
78568c28720abdd1f8471c462421df9965e05e1db048689d16ac85378716c4080ec1723af78e9f61d133b0ff82ac8c1f0dde7fd42d194485f62c1a17c02db37f
 DIST libunwind-7.0.1.src.tar.xz 79784 BLAKE2B 
c426ef661d1c5ba8abfdb7c155b44d8c9301e2254031cff9fcb0634f61d7374779095be3118c0a29c69e60c63a32405334242413625ece8c5c9130d58bedd865
 SHA512 
e6203e77691c7039496da09e55d27a994a0e273ab0ef10df2f0b9345fead11d855413342a7ccc7b641c3f06053210a8822ba39e9f5b8624384bf1fa456deb969
+DIST libunwind-8.0.0.src.tar.xz 86484 BLAKE2B 
74f52fbda056b98cb8a2af652270dc4404177be4fd24a3d030f43e908ef912b875f6471819d364d2ee00c6edbec78d25647f023830c6ddc1c032added1059582
 SHA512 
8c10e986b4123b6db9f010f053d9c67786fd739d0990146c481f7eaf69ae44fdbcb99dfad9b240b369c3f93be05dfeaf0bd977685360be94e2872ddb04019380
 DIST libunwind-8.0.0rc5.src.tar.xz 86516 BLAKE2B 
0ac17d2ae1dd79f8b8bd5ee746d31a864ece20538bc283d8cb75be7ed40ddecb03e4b7c7ecd0214e34e85a299b925f374a07c0218b7c8c7df30db79c2dd8bac6
 SHA512 
994cc5db4d250cadb2b8e71842f4d1c937fbb102b71980054b641bbedf64b7867ac9f380ed0ca2b557b9c5ab2cd2d911398d4b8545bfefd5cd3d250ced9bd170

diff --git a/sys-libs/llvm-libunwind/llvm-libunwind-8.0.0.ebuild 
b/sys-libs/llvm-libunwind/llvm-libunwind-8.0.0.ebuild
new file mode 100644
index 000..352989d548d
--- /dev/null
+++ b/sys-libs/llvm-libunwind/llvm-libunwind-8.0.0.ebuild
@@ -0,0 +1,143 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+: ${CMAKE_MAKEFILE_GENERATOR:=ninja}
+# (needed due to 

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

2019-03-20 Thread Michał Górny
commit: 7229976dacc0054e748cec666269e0e98ace9f2b
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 20 14:17:19 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 20 15:02:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7229976d

sys-devel/llvm-common: Remove 8.0.0rc5

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

 sys-devel/llvm-common/Manifest |  1 -
 sys-devel/llvm-common/llvm-common-8.0.0_rc5.ebuild | 35 --
 2 files changed, 36 deletions(-)

diff --git a/sys-devel/llvm-common/Manifest b/sys-devel/llvm-common/Manifest
index d30342edf6a..518151e3600 100644
--- a/sys-devel/llvm-common/Manifest
+++ b/sys-devel/llvm-common/Manifest
@@ -3,4 +3,3 @@ DIST llvm-5.0.2.src.tar.xz 23451868 BLAKE2B 
b7082be2e4ad557b29b9f6869811f262adcf
 DIST llvm-6.0.1.src.tar.xz 25306628 BLAKE2B 
60232d4d22f8096b565cc8d81fea0639f24f14e8fc4f66ade69fa15479181f07f655f26dff3fa24bf105762b495da316c5c9352db234bd0af6b9c3fff6d4d881
 SHA512 
cbbb00eb99cfeb4aff623ee1a5ba075e7b5a76fc00c5f9f539ff28c108598f5708a0369d5bd92683def5a20c2fe60cab7827b42d628dbfcc79b57e0e91b84dd9
 DIST llvm-7.0.1.src.tar.xz 28311056 BLAKE2B 
737aa6144a415e41a4ff2c8bd5a727d6f14d7b1810c62cbefa5a25fe642c98cddf8a28e35c7e9783373aa3b96f5c0943229e229ad1b43e56e9ed6db0f27ab128
 SHA512 
ac43a3cb71a53deb55e3693653847cf20bf6f5d9056f224e6956c96d63bc59ebee9404f088eec9cabe65337b4607a905ef931354b373cf64e0004c6905a6b5df
 DIST llvm-8.0.0.src.tar.xz 30503732 BLAKE2B 
d89bdeb0ec7d885e49cfe5ae025da84f00502d409710c0807a3cdd58dbd47c50cf6a635593569483150f7f2ecb0de0310bd6785cb7625219bf9f6224a0d68e1c
 SHA512 
1602343b451b964f5d8c2d6b0654d89384c80d45883498c5f0e2f4196168dd4a1ed2a4dadb752076020243df42ffe46cb31d82ffc145d8e5874163cbb9686a1f
-DIST llvm-8.0.0rc5.src.tar.xz 30507432 BLAKE2B 
3f20c3dc270439a32fe23e403ca5190e624f329a10d424d15475d32d89725b021f12af19845928da41be4b83afd254df1f6d27f235b0d2ab81ff76d9e588250f
 SHA512 
b015bab2f0b0644d9fab295dee5d3b2a4d4d7c9d5870a06d7829f43d61e92aeb31b28d4c074f6a20ad803dde06399ef3298c951f1580b010f4b756f75bb4453b

diff --git a/sys-devel/llvm-common/llvm-common-8.0.0_rc5.ebuild 
b/sys-devel/llvm-common/llvm-common-8.0.0_rc5.ebuild
deleted file mode 100644
index 1c597f784d4..000
--- a/sys-devel/llvm-common/llvm-common-8.0.0_rc5.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MY_P=llvm-${PV/_/}.src
-DESCRIPTION="Common files shared between multiple slots of LLVM"
-HOMEPAGE="https://llvm.org/;
-SRC_URI="https://prereleases.llvm.org/${PV/_//}/${MY_P}.tar.xz;
-
-LICENSE="UoI-NCSA"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-fbsd ~amd64-linux ~ppc-macos 
~x64-macos ~x86-macos"
-IUSE=""
-
-RDEPEND="!sys-devel/llvm:0"
-
-S=${WORKDIR}/${MY_P}
-
-src_unpack() {
-   einfo "Unpacking parts of ${MY_P}.tar.xz ..."
-   tar -xJf "${DISTDIR}/${MY_P}.tar.xz" "${MY_P}/utils/vim" || die
-}
-
-src_configure() { :; }
-src_compile() { :; }
-src_test() { :; }
-
-src_install() {
-   insinto /usr/share/vim/vimfiles
-   doins -r utils/vim/*/
-   # some users may find it useful
-   newdoc utils/vim/README README.vim
-   dodoc utils/vim/vimrc
-}



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

2019-03-20 Thread Michał Górny
commit: 6616f5fab076d46ffc0c0c8813a7187a4363bcdd
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 20 14:17:02 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 20 15:01:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6616f5fa

sys-devel/clang-runtime: Remove 8.0.0rc5

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

 .../clang-runtime/clang-runtime-8.0.0_rc5.ebuild   | 31 --
 1 file changed, 31 deletions(-)

diff --git a/sys-devel/clang-runtime/clang-runtime-8.0.0_rc5.ebuild 
b/sys-devel/clang-runtime/clang-runtime-8.0.0_rc5.ebuild
deleted file mode 100644
index 97c0d55cf2a..000
--- a/sys-devel/clang-runtime/clang-runtime-8.0.0_rc5.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit multilib-build
-
-DESCRIPTION="Meta-ebuild for clang runtime libraries"
-HOMEPAGE="https://clang.llvm.org/;
-SRC_URI=""
-
-LICENSE="metapackage"
-SLOT="${PV%_*}"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-fbsd ~amd64-linux ~ppc-macos 
~x64-macos ~x86-macos"
-IUSE="+compiler-rt crt libcxx openmp +sanitize"
-
-RDEPEND="
-   compiler-rt? (
-   ~sys-libs/compiler-rt-${PV}:${SLOT}
-   sanitize? ( ~sys-libs/compiler-rt-sanitizers-${PV}:${SLOT} )
-   )
-   crt? (
-   || (
-   sys-libs/netbsd-csu[${MULTILIB_USEDEP}]
-   sys-freebsd/freebsd-lib[${MULTILIB_USEDEP}]
-   )
-   )
-   libcxx? ( >=sys-libs/libcxx-${PV}[${MULTILIB_USEDEP}] )
-   openmp? ( >=sys-libs/libomp-${PV}[${MULTILIB_USEDEP}] )"
-
-REQUIRED_USE="sanitize? ( compiler-rt )"



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

2019-03-20 Thread Michał Górny
commit: a42644174dd8e8fe1147bd14770c6be3668fa326
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 20 14:17:15 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 20 15:02:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4264417

dev-python/lit: Remove 8.0.0rc5

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

 dev-python/lit/Manifest |  1 -
 dev-python/lit/lit-8.0.0_rc5.ebuild | 39 -
 2 files changed, 40 deletions(-)

diff --git a/dev-python/lit/Manifest b/dev-python/lit/Manifest
index d30342edf6a..518151e3600 100644
--- a/dev-python/lit/Manifest
+++ b/dev-python/lit/Manifest
@@ -3,4 +3,3 @@ DIST llvm-5.0.2.src.tar.xz 23451868 BLAKE2B 
b7082be2e4ad557b29b9f6869811f262adcf
 DIST llvm-6.0.1.src.tar.xz 25306628 BLAKE2B 
60232d4d22f8096b565cc8d81fea0639f24f14e8fc4f66ade69fa15479181f07f655f26dff3fa24bf105762b495da316c5c9352db234bd0af6b9c3fff6d4d881
 SHA512 
cbbb00eb99cfeb4aff623ee1a5ba075e7b5a76fc00c5f9f539ff28c108598f5708a0369d5bd92683def5a20c2fe60cab7827b42d628dbfcc79b57e0e91b84dd9
 DIST llvm-7.0.1.src.tar.xz 28311056 BLAKE2B 
737aa6144a415e41a4ff2c8bd5a727d6f14d7b1810c62cbefa5a25fe642c98cddf8a28e35c7e9783373aa3b96f5c0943229e229ad1b43e56e9ed6db0f27ab128
 SHA512 
ac43a3cb71a53deb55e3693653847cf20bf6f5d9056f224e6956c96d63bc59ebee9404f088eec9cabe65337b4607a905ef931354b373cf64e0004c6905a6b5df
 DIST llvm-8.0.0.src.tar.xz 30503732 BLAKE2B 
d89bdeb0ec7d885e49cfe5ae025da84f00502d409710c0807a3cdd58dbd47c50cf6a635593569483150f7f2ecb0de0310bd6785cb7625219bf9f6224a0d68e1c
 SHA512 
1602343b451b964f5d8c2d6b0654d89384c80d45883498c5f0e2f4196168dd4a1ed2a4dadb752076020243df42ffe46cb31d82ffc145d8e5874163cbb9686a1f
-DIST llvm-8.0.0rc5.src.tar.xz 30507432 BLAKE2B 
3f20c3dc270439a32fe23e403ca5190e624f329a10d424d15475d32d89725b021f12af19845928da41be4b83afd254df1f6d27f235b0d2ab81ff76d9e588250f
 SHA512 
b015bab2f0b0644d9fab295dee5d3b2a4d4d7c9d5870a06d7829f43d61e92aeb31b28d4c074f6a20ad803dde06399ef3298c951f1580b010f4b756f75bb4453b

diff --git a/dev-python/lit/lit-8.0.0_rc5.ebuild 
b/dev-python/lit/lit-8.0.0_rc5.ebuild
deleted file mode 100644
index 2252897106f..000
--- a/dev-python/lit/lit-8.0.0_rc5.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
-
-PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} )
-inherit distutils-r1 multiprocessing
-
-MY_P=llvm-${PV/_/}.src
-DESCRIPTION="A stand-alone install of the LLVM suite testing tool"
-HOMEPAGE="https://llvm.org/;
-SRC_URI="https://prereleases.llvm.org/${PV/_//}/${MY_P}.tar.xz;
-
-LICENSE="UoI-NCSA"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-fbsd"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-S=${WORKDIR}/${MY_P}/utils/lit
-
-# Tests require 'FileCheck' and 'not' utilities (from llvm)
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? (
-   dev-python/psutil[${PYTHON_USEDEP}]
-   sys-devel/llvm )"
-
-# TODO: move the manpage generation here (from sys-devel/llvm)
-
-src_unpack() {
-   einfo "Unpacking parts of ${MY_P}.tar.xz ..."
-   tar -xJf "${DISTDIR}/${MY_P}.tar.xz" "${MY_P}/utils/lit" || die
-}
-
-python_test() {
-   ./lit.py -j "${LIT_JOBS:-$(makeopts_jobs "${MAKEOPTS}" 
"$(get_nproc)")}" \
-   -vv tests || die
-}



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

2019-03-20 Thread Michał Górny
commit: 4b3a162bcd14d68ecf00833e11dcd5baebaa6043
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 20 14:17:12 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 20 15:02:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b3a162b

sys-devel/clang-common: Remove 8.0.0rc5

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

 sys-devel/clang-common/Manifest|  1 -
 .../clang-common/clang-common-8.0.0_rc5.ebuild | 33 --
 2 files changed, 34 deletions(-)

diff --git a/sys-devel/clang-common/Manifest b/sys-devel/clang-common/Manifest
index d043cdf1838..6c99ef94df6 100644
--- a/sys-devel/clang-common/Manifest
+++ b/sys-devel/clang-common/Manifest
@@ -1,4 +1,3 @@
 DIST cfe-6.0.1.src.tar.xz 11905772 BLAKE2B 
abb60e9f9827d1d8a24f0aaf8a1d1e32979293cc401258d230f93290e633645747fd0344af189ac7081b06be2cada503364e1e432b37110ade4b3578e40c7605
 SHA512 
f64ba9290059f6e36fee41c8f32bf483609d31c291fcd2f77d41fecfdf3c8233a5e23b93a1c73fed03683823bd6e72757ed993dd32527de3d5f2b7a64bb031b9
 DIST cfe-7.0.1.src.tar.xz 12488668 BLAKE2B 
b80247b5caf81661dfa715d9bf454b8023221bd27ce49b6bd8cd66f40ffe01448e40fb828fbcc64e49f059af7a7c5a95a0737b0b998454ac5c1dd39388150fa6
 SHA512 
df2f38153ebdc261bcfa6a569567f759bbb1a803192882a9d4eca55a47878166ac9057151a94ad341dc1281136547e4faa783a68070dfde2307b48cacd4b9194
 DIST cfe-8.0.0.src.tar.xz 12868468 BLAKE2B 
3cb96c95c4d9713feb7011e4f1ca24be3e7f6c9b458f6cd9e6905f99737312ca44cb701ed5871e47dd583145e5898d53a65c4cda6456af3d4ca31b670ed84409
 SHA512 
98e540222719716985e5d8439116e47469cb01201ea91d1da7e46cb6633da099688d9352c3b65e5c5f660cbbae353b3d79bb803fc66b3be663f2b04b1feed1c3
-DIST cfe-8.0.0rc5.src.tar.xz 12864516 BLAKE2B 
b1c982d83e0a911a7375d07f9f2f52956b3595674252e6e7d8d8ef4015b51171c59a2d3306c00fcd83ae2fff2eb3d58cc9d4cdeadaca02c4fc3a6242f57959fe
 SHA512 
40f3b6069e40fc4f831662912a8f4c3ab1579587bf48c1fcd9e80287b7e26e8b70becfce525a0b55b1b8283f20a9d67d232cf5ce10189a39d655e2fe3fb3dd73

diff --git a/sys-devel/clang-common/clang-common-8.0.0_rc5.ebuild 
b/sys-devel/clang-common/clang-common-8.0.0_rc5.ebuild
deleted file mode 100644
index cdd11c2dce8..000
--- a/sys-devel/clang-common/clang-common-8.0.0_rc5.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit bash-completion-r1
-
-MY_P=cfe-${PV/_/}.src
-DESCRIPTION="Common files shared between multiple slots of clang"
-HOMEPAGE="https://llvm.org/;
-SRC_URI="https://prereleases.llvm.org/${PV/_//}/${MY_P}.tar.xz;
-
-LICENSE="UoI-NCSA"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-fbsd ~amd64-linux ~ppc-macos 
~x64-macos ~x86-macos"
-IUSE=""
-
-PDEPEND="sys-devel/clang:*"
-
-S=${WORKDIR}/${MY_P}
-
-src_unpack() {
-   einfo "Unpacking parts of ${MY_P}.tar.xz ..."
-   tar -xJf "${DISTDIR}/${MY_P}.tar.xz" 
"${MY_P}/utils/bash-autocomplete.sh" || die
-}
-
-src_configure() { :; }
-src_compile() { :; }
-src_test() { :; }
-
-src_install() {
-   newbashcomp utils/bash-autocomplete.sh clang
-}



[gentoo-commits] repo/gentoo:master commit in: sys-libs/compiler-rt-sanitizers/

2019-03-20 Thread Michał Górny
commit: 23c8fa8e76c93601ea1968bcd9209e6cce2b76fc
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 20 14:14:55 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 20 15:01:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23c8fa8e

sys-libs/compiler-rt-sanitizers: Bump to 8.0.0 final

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

 sys-libs/compiler-rt-sanitizers/Manifest   |   2 +
 .../compiler-rt-sanitizers-8.0.0.ebuild| 171 +
 2 files changed, 173 insertions(+)

diff --git a/sys-libs/compiler-rt-sanitizers/Manifest 
b/sys-libs/compiler-rt-sanitizers/Manifest
index 545d30ac043..a60927fa5e9 100644
--- a/sys-libs/compiler-rt-sanitizers/Manifest
+++ b/sys-libs/compiler-rt-sanitizers/Manifest
@@ -2,6 +2,7 @@ DIST compiler-rt-4.0.1.src.tar.xz 1434100 BLAKE2B 
ca6bf78fc07f387b7244a52ef648b0
 DIST compiler-rt-5.0.2.src.tar.xz 1543256 BLAKE2B 
09fa84b8f3e9b8627a14387bc6eaa3d6b4588b9c8f1ac5a0114135fd830e3d45922408b237866789eb81bf38defde1186e0f7430a69f825bee12776b7cd9f74e
 SHA512 
605a6d064877a860d6c9097e0220896dfceafed0a2392ad495c97aa347b97899d89f7e21932e29d3274f396615837414a3e730a915fe4f53eaa858ce3642a666
 DIST compiler-rt-6.0.1.src.tar.xz 1686820 BLAKE2B 
59fa3f6e478bd4d6dfa056c85dcdc4349cbce7cea7fc56519feddc9d66c88c9ca48bad7967432ceb81d754213577f12707035afd827cf630a58627575b73b798
 SHA512 
69850c1ad92c66977fa217cbfb42a6a3f502fbe3d1a08daa7fc4cfeb617a7736d231f8ad8d93b10b1ae29bd753315d2a2d70f9ff1f4d18a9a7cc81758d91f963
 DIST compiler-rt-7.0.1.src.tar.xz 1864520 BLAKE2B 
14f72aad4379387f4212fb5efef3456cb5e8a03c7a91f98de2368e9b5ff2d02aeaed05da4fba6978b9e4e8698eb34c9c0c4c2df8d43b8c11e8e9d65079c7fa41
 SHA512 
b94a2a1fb9a6d587cef59b04b951628747bb35bdbcb67de8825aad402a2ba875916a347eef7a9575ac27264e8372e2d67cd477fe2d750c0ed3ce7d67bbbc7dba
+DIST compiler-rt-8.0.0.src.tar.xz 1903020 BLAKE2B 
dc42c4772132fee5e225bb94805cd6917214c1d830b8ba4f1c774e6e1726ec7846432d1d6881085676b6d094ec04060ec2a95749eb7d93be79268ee7de1bd828
 SHA512 
fe9f69fe2269fa3d560ae97fdacd462f855fb0b7a5f647f5b8595206ff7febca6496725adc953de411a827c761e2b3ca11a2149f25707d6c62af0722b68ba913
 DIST compiler-rt-8.0.0rc5.src.tar.xz 1902880 BLAKE2B 
ef8a3eeb58845032f332cc3e0eed4ca33166450ef0ebf21d00fa6f0068ff61a3af54bddb696c9ab507c909baa5bf53ad1bc218ca5a3a354a021315fd6ad1b6b5
 SHA512 
6d7e520e2b16e097b35fcfce1637160ce8b3a174ef79b7c56e4fae466aef9dafc45f577de590426637f9950bbb2f0c18213cea90e566b05f4f6251e4e5de0dca
 DIST compiler-rt-sanitizers-4.0.1-patchset.tar.xz 2384 BLAKE2B 
6f9eee711c83570767f0bb634d0f91c18ee7f2af93a478938b8d5b6ce6f2c2fbaadb7bd5c7ee94a14dc1834359a046187db6bc7005b7c2efa539325dc0701ad9
 SHA512 
72d7357b4c27bbf8fa8b34803ddea905a9f1054e8fc7bf99a4ead9dc00408989ea2709f04be9cf45a27eeb4b9386c89feeb25b53a84f3cac9739196b89813887
 DIST compiler-rt-sanitizers-6.0.1-patchset.tar.xz 8820 BLAKE2B 
d53ca357e060d058c7f20c51e74684f4c032fdf3ccec4c9f227dc7a5757206f331b9eda25a72c5c66faf4c44b2cc63eb439bd21bdd55d37a93918ab428fd7cd4
 SHA512 
782a34c56134bd061da30c1f598ddb9e90cb34a4e4ef058fa9634f6da372fd8693ff5e6cf98b59700942273240f83052b89ee2736b22f4e19bc8b519fbec8cad
@@ -9,4 +10,5 @@ DIST llvm-4.0.1.src.tar.xz 21065652 BLAKE2B 
6327eed2d1feb108440f22d2581d1ff86c10
 DIST llvm-5.0.2.src.tar.xz 23451868 BLAKE2B 
b7082be2e4ad557b29b9f6869811f262adcf5c73d552faf91b339bede75cf5eab58afefa12fa779a38be71fe2b8f4ea297c3213ee4e8370cc01972c59249d91c
 SHA512 
3588be5ed969c3f7f6f16f56a12a6af2814d3d3c960d4a36ffebb0446cc75f19220bccee7fc605f9b01f5d5c188a905a046193cc12dec42dd5922048b5c27fe1
 DIST llvm-6.0.1.src.tar.xz 25306628 BLAKE2B 
60232d4d22f8096b565cc8d81fea0639f24f14e8fc4f66ade69fa15479181f07f655f26dff3fa24bf105762b495da316c5c9352db234bd0af6b9c3fff6d4d881
 SHA512 
cbbb00eb99cfeb4aff623ee1a5ba075e7b5a76fc00c5f9f539ff28c108598f5708a0369d5bd92683def5a20c2fe60cab7827b42d628dbfcc79b57e0e91b84dd9
 DIST llvm-7.0.1.src.tar.xz 28311056 BLAKE2B 
737aa6144a415e41a4ff2c8bd5a727d6f14d7b1810c62cbefa5a25fe642c98cddf8a28e35c7e9783373aa3b96f5c0943229e229ad1b43e56e9ed6db0f27ab128
 SHA512 
ac43a3cb71a53deb55e3693653847cf20bf6f5d9056f224e6956c96d63bc59ebee9404f088eec9cabe65337b4607a905ef931354b373cf64e0004c6905a6b5df
+DIST llvm-8.0.0.src.tar.xz 30503732 BLAKE2B 
d89bdeb0ec7d885e49cfe5ae025da84f00502d409710c0807a3cdd58dbd47c50cf6a635593569483150f7f2ecb0de0310bd6785cb7625219bf9f6224a0d68e1c
 SHA512 
1602343b451b964f5d8c2d6b0654d89384c80d45883498c5f0e2f4196168dd4a1ed2a4dadb752076020243df42ffe46cb31d82ffc145d8e5874163cbb9686a1f
 DIST llvm-8.0.0rc5.src.tar.xz 30507432 BLAKE2B 
3f20c3dc270439a32fe23e403ca5190e624f329a10d424d15475d32d89725b021f12af19845928da41be4b83afd254df1f6d27f235b0d2ab81ff76d9e588250f
 SHA512 
b015bab2f0b0644d9fab295dee5d3b2a4d4d7c9d5870a06d7829f43d61e92aeb31b28d4c074f6a20ad803dde06399ef3298c951f1580b010f4b756f75bb4453b

diff --git 
a/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-8.0.0.ebuild 
b/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-8.0.0.ebuild
new file mode 100644

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

2019-03-20 Thread Michał Górny
commit: 4551861731e89b70498497fa028bcc405b5f4fe5
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 20 14:17:08 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 20 15:02:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45518617

sys-libs/compiler-rt: Remove 8.0.0rc5

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

 sys-libs/compiler-rt/Manifest |   1 -
 sys-libs/compiler-rt/compiler-rt-8.0.0_rc5.ebuild | 109 --
 2 files changed, 110 deletions(-)

diff --git a/sys-libs/compiler-rt/Manifest b/sys-libs/compiler-rt/Manifest
index bab8d96ae8d..1c31ec86398 100644
--- a/sys-libs/compiler-rt/Manifest
+++ b/sys-libs/compiler-rt/Manifest
@@ -3,4 +3,3 @@ DIST compiler-rt-5.0.2.src.tar.xz 1543256 BLAKE2B 
09fa84b8f3e9b8627a14387bc6eaa3
 DIST compiler-rt-6.0.1.src.tar.xz 1686820 BLAKE2B 
59fa3f6e478bd4d6dfa056c85dcdc4349cbce7cea7fc56519feddc9d66c88c9ca48bad7967432ceb81d754213577f12707035afd827cf630a58627575b73b798
 SHA512 
69850c1ad92c66977fa217cbfb42a6a3f502fbe3d1a08daa7fc4cfeb617a7736d231f8ad8d93b10b1ae29bd753315d2a2d70f9ff1f4d18a9a7cc81758d91f963
 DIST compiler-rt-7.0.1.src.tar.xz 1864520 BLAKE2B 
14f72aad4379387f4212fb5efef3456cb5e8a03c7a91f98de2368e9b5ff2d02aeaed05da4fba6978b9e4e8698eb34c9c0c4c2df8d43b8c11e8e9d65079c7fa41
 SHA512 
b94a2a1fb9a6d587cef59b04b951628747bb35bdbcb67de8825aad402a2ba875916a347eef7a9575ac27264e8372e2d67cd477fe2d750c0ed3ce7d67bbbc7dba
 DIST compiler-rt-8.0.0.src.tar.xz 1903020 BLAKE2B 
dc42c4772132fee5e225bb94805cd6917214c1d830b8ba4f1c774e6e1726ec7846432d1d6881085676b6d094ec04060ec2a95749eb7d93be79268ee7de1bd828
 SHA512 
fe9f69fe2269fa3d560ae97fdacd462f855fb0b7a5f647f5b8595206ff7febca6496725adc953de411a827c761e2b3ca11a2149f25707d6c62af0722b68ba913
-DIST compiler-rt-8.0.0rc5.src.tar.xz 1902880 BLAKE2B 
ef8a3eeb58845032f332cc3e0eed4ca33166450ef0ebf21d00fa6f0068ff61a3af54bddb696c9ab507c909baa5bf53ad1bc218ca5a3a354a021315fd6ad1b6b5
 SHA512 
6d7e520e2b16e097b35fcfce1637160ce8b3a174ef79b7c56e4fae466aef9dafc45f577de590426637f9950bbb2f0c18213cea90e566b05f4f6251e4e5de0dca

diff --git a/sys-libs/compiler-rt/compiler-rt-8.0.0_rc5.ebuild 
b/sys-libs/compiler-rt/compiler-rt-8.0.0_rc5.ebuild
deleted file mode 100644
index 42b690e9883..000
--- a/sys-libs/compiler-rt/compiler-rt-8.0.0_rc5.ebuild
+++ /dev/null
@@ -1,109 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-: ${CMAKE_MAKEFILE_GENERATOR:=ninja}
-# (needed due to CMAKE_BUILD_TYPE != Gentoo)
-CMAKE_MIN_VERSION=3.7.0-r1
-PYTHON_COMPAT=( python2_7 )
-
-inherit cmake-utils flag-o-matic llvm multiprocessing \
-   python-any-r1 toolchain-funcs
-
-DESCRIPTION="Compiler runtime library for clang (built-in part)"
-HOMEPAGE="https://llvm.org/;
-SRC_URI="https://prereleases.llvm.org/${PV/_//}/${P/_/}.src.tar.xz;
-
-LICENSE="|| ( UoI-NCSA MIT )"
-SLOT="${PV%_*}"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-fbsd ~amd64-linux ~ppc-macos 
~x64-macos ~x86-macos"
-IUSE="+clang test"
-RESTRICT="!test? ( test ) !clang? ( test )"
-
-CLANG_SLOT=${SLOT%%.*}
-# llvm-6 for new lit options
-DEPEND="
-   >=sys-devel/llvm-6
-   clang? ( sys-devel/clang )
-   test? (
-   $(python_gen_any_dep "dev-python/lit[\${PYTHON_USEDEP}]")
-   =sys-devel/clang-${PV%_*}*:${CLANG_SLOT} )
-   ${PYTHON_DEPS}"
-
-S=${WORKDIR}/${P/_/}.src
-
-# least intrusive of all
-CMAKE_BUILD_TYPE=RelWithDebInfo
-
-pkg_pretend() {
-   if ! use clang && ! tc-is-clang; then
-   ewarn "Building using a compiler other than clang may result in 
broken atomics"
-   ewarn "library. Enable USE=clang unless you have a very good 
reason not to."
-   fi
-}
-
-pkg_setup() {
-   llvm_pkg_setup
-   python-any-r1_pkg_setup
-}
-
-test_compiler() {
-   $(tc-getCC) ${CFLAGS} ${LDFLAGS} "${@}" -o /dev/null -x c - \
-   <<<'int main() { return 0; }' &>/dev/null
-}
-
-src_configure() {
-   # pre-set since we need to pass it to cmake
-   BUILD_DIR=${WORKDIR}/${P}_build
-
-   local nolib_flags=( -nodefaultlibs -lc )
-   if use clang; then
-   local -x CC=${CHOST}-clang
-   local -x CXX=${CHOST}-clang++
-   # ensure we can use clang before installing compiler-rt
-   local -x LDFLAGS="${LDFLAGS} ${nolib_flags[*]}"
-   strip-unsupported-flags
-   elif ! test_compiler; then
-   if test_compiler "${nolib_flags[@]}"; then
-   local -x LDFLAGS="${LDFLAGS} ${nolib_flags[*]}"
-   ewarn "${CC} seems to lack runtime, trying with 
${nolib_flags[*]}"
-   fi
-   fi
-
-   local mycmakeargs=(
-   -DCOMPILER_RT_INSTALL_PATH="${EPREFIX}/usr/lib/clang/${SLOT}"
-
-   -DCOMPILER_RT_INCLUDE_TESTS=$(usex test)
-   -DCOMPILER_RT_BUILD_LIBFUZZER=OFF
-   

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

2019-03-20 Thread Michał Górny
commit: 3c746be9442cd845ee83b40afef4e43656baacf3
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 20 14:14:58 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 20 15:01:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c746be9

sys-libs/libomp: Bump to 8.0.0 final

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

 sys-libs/libomp/Manifest|   1 +
 sys-libs/libomp/libomp-8.0.0.ebuild | 115 
 2 files changed, 116 insertions(+)

diff --git a/sys-libs/libomp/Manifest b/sys-libs/libomp/Manifest
index 2f5715acdc0..2ab59b590a5 100644
--- a/sys-libs/libomp/Manifest
+++ b/sys-libs/libomp/Manifest
@@ -1,3 +1,4 @@
 DIST openmp-6.0.1.src.tar.xz 2048320 BLAKE2B 
08b3a7051c985903f78331f55a1c6e928399b87c862c43c991e9bf78b66b6e412fc96f202b82c051176dbbe02422f8ceb7414f44ea8f3522f418e515c0f70c62
 SHA512 
abb956583e5d11d0c6f6d97183c081d658616a74933be884a591eaa3d8c4bb04f08f02016d2c86d7384c7ff1aa44fb949b0d967fc0ff50e3132aaba412e9add8
 DIST openmp-7.0.1.src.tar.xz 909316 BLAKE2B 
b8adbf67738b8d2d2d42b45b24aabd2f5e65a7b9cdda0d4a62511808c2101d9bb925b4904a9ecb98f77a1b7f38f13408fea6f724748183f9d5f5419c3fdeac54
 SHA512 
2062db8b87bce2c130bab528a6d654cb05b3de7641737552fc263724ceaa5e322afc2787796a0bddcda8d1bdf913a49f5a0180abcc57f8842b7e8ea8df4d6f51
+DIST openmp-8.0.0.src.tar.xz 934384 BLAKE2B 
f473fad9e8bcab1ad0c6ffab7cee471065d615947964177194f829847d41e726fb435562f1637f2a65d3ae84e01a8077662de047443f33d089948e2efb58906c
 SHA512 
0fff071c9dbf118bc1908e433d6ce571f47a4f2dbc5bf2d843151889e3414473bb5a9c97dc0b6dc6d1bd9ab0c6e365cae625f97d1b11d5d6ae059fa5a0496cb3
 DIST openmp-8.0.0rc5.src.tar.xz 934496 BLAKE2B 
058c69a972c6296d941f9a0d9e3d69eb8020fccb8985dedc0f6f5020b55cd2f239a2e0f66157870b46adb20be08fa6350d1aea2261523a70b6a9a3704bcbabed
 SHA512 
818daa70fc638879ae00dda783bef69e9b39f3ca6d57bc233b4a5a0478e96ddf311d99ff3d254a81a26a6b75eca56accb6f7d30e4911bcd1cd259fab1dad80b4

diff --git a/sys-libs/libomp/libomp-8.0.0.ebuild 
b/sys-libs/libomp/libomp-8.0.0.ebuild
new file mode 100644
index 000..d472c4f2379
--- /dev/null
+++ b/sys-libs/libomp/libomp-8.0.0.ebuild
@@ -0,0 +1,115 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+: ${CMAKE_MAKEFILE_GENERATOR:=ninja}
+# (needed due to CMAKE_BUILD_TYPE != Gentoo)
+CMAKE_MIN_VERSION=3.7.0-r1
+PYTHON_COMPAT=( python2_7 )
+
+inherit cmake-multilib linux-info multiprocessing python-any-r1
+
+DESCRIPTION="OpenMP runtime library for LLVM/clang compiler"
+HOMEPAGE="https://openmp.llvm.org;
+SRC_URI="https://releases.llvm.org/${PV/_//}/openmp-${PV/_/}.src.tar.xz;
+
+# Additional licenses:
+# - MIT-licensed Intel code,
+# - LLVM Software Grant from Intel.
+
+LICENSE="|| ( UoI-NCSA MIT ) MIT LLVM-Grant"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-fbsd ~amd64-linux ~x64-macos"
+IUSE="cuda hwloc kernel_linux offload ompt test"
+# CUDA works only with the x86_64 ABI
+REQUIRED_USE="offload? ( cuda? ( abi_x86_64 ) )"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   hwloc? ( sys-apps/hwloc:0=[${MULTILIB_USEDEP}] )
+   offload? (
+   virtual/libelf:=[${MULTILIB_USEDEP}]
+   virtual/libffi:=[${MULTILIB_USEDEP}]
+   cuda? ( dev-util/nvidia-cuda-toolkit:= )
+   )"
+# tests:
+# - dev-python/lit provides the test runner
+# - sys-devel/llvm provide test utils (e.g. FileCheck)
+# - sys-devel/clang provides the compiler to run tests
+DEPEND="${RDEPEND}
+   dev-lang/perl
+   offload? ( virtual/pkgconfig[${MULTILIB_USEDEP}] )
+   test? (
+   $(python_gen_any_dep 'dev-python/lit[${PYTHON_USEDEP}]')
+   >=sys-devel/clang-6
+   )"
+
+S=${WORKDIR}/openmp-${PV/_/}.src
+
+# least intrusive of all
+CMAKE_BUILD_TYPE=RelWithDebInfo
+
+python_check_deps() {
+   has_version "dev-python/lit[${PYTHON_USEDEP}]"
+}
+
+kernel_pds_check() {
+   if use kernel_linux && kernel_is -lt 4 15 && kernel_is -ge 4 13; then
+   local CONFIG_CHECK="~!SCHED_PDS"
+   local ERROR_SCHED_PDS="\
+PDS scheduler versions >= 0.98c < 0.98i (e.g. used in kernels >= 4.13-pf11
+< 4.14-pf9) do not implement sched_yield() call which may result in horrible
+performance problems with libomp. If you are using one of the specified
+kernel versions, you may want to disable the PDS scheduler."
+
+   check_extra_config
+   fi
+}
+
+pkg_pretend() {
+   kernel_pds_check
+}
+
+pkg_setup() {
+   use test && python-any-r1_pkg_setup
+}
+
+multilib_src_configure() {
+   local libdir="$(get_libdir)"
+   local mycmakeargs=(
+   -DOPENMP_LIBDIR_SUFFIX="${libdir#lib}"
+
+   -DLIBOMP_USE_HWLOC=$(usex hwloc)
+   -DLIBOMP_OMPT_SUPPORT=$(usex ompt)
+
+   -DOPENMP_ENABLE_LIBOMPTARGET=$(usex offload)
+
+   # do not install libgomp.so & libiomp5.so aliases
+   

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

2019-03-20 Thread Michał Górny
commit: 70bf012525897917687658bd0c07ef29a06f78bc
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 20 14:14:53 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 20 15:01:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70bf0125

dev-util/lldb: Bump to 8.0.0 final

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

 dev-util/lldb/Manifest  |   2 +
 dev-util/lldb/lldb-8.0.0.ebuild | 118 
 2 files changed, 120 insertions(+)

diff --git a/dev-util/lldb/Manifest b/dev-util/lldb/Manifest
index 37e2cd862d3..57de0c94053 100644
--- a/dev-util/lldb/Manifest
+++ b/dev-util/lldb/Manifest
@@ -1,4 +1,6 @@
 DIST lldb-7.0.1.src.tar.xz 19384628 BLAKE2B 
4720aa85afb90b84264f53736ca8a225bfc807cd84271f8be35a06437e718fb40a0f5090f213e203ffb746b254583f59e912d00300635e78f43aeb75a8dc4048
 SHA512 
7e98c3148ac34b42404e5aaaff91728d19e9062110a333f0bc7a62ec324fbb6d033ea44b56e144dc1e94febb2107cfb33c71bb3602c2168a6270dd807a2cc5ff
+DIST lldb-8.0.0.src.tar.xz 19602332 BLAKE2B 
85a51b3ccae8fd0074b0f5b54e35d2eb020770246b13a0ec52a4647d30f23a6620ce410af7e49604947ff60f789ecab0bfeddfc3598642c9096cf3362d88b5bf
 SHA512 
5192d6d6d1759db28569de929ba8db2a80283000f1bf8453d9cf172ac85574c8eacc13f9fe64ecabea0533bfc49c0f58ea8fb29b1f4d88c065d905d553f2e60c
 DIST lldb-8.0.0rc5.src.tar.xz 19602752 BLAKE2B 
4f861bf53b254d3b2496b954a566ae02fe043d938cc04b931c88237dbf593de42c1e51ace0f81280b9e646a2febe853f9be72bec8f91d351ba7f9fe3b4d46df9
 SHA512 
b10e57410b4414e9f373bb2486690108d6a83c8268c9fcc4e30af60f488bf0dec660c4556ff384cb12b0af29d3c9e5a05a9bf57a0bc9acd1d3c39cf071304440
 DIST llvm-7.0.1.src.tar.xz 28311056 BLAKE2B 
737aa6144a415e41a4ff2c8bd5a727d6f14d7b1810c62cbefa5a25fe642c98cddf8a28e35c7e9783373aa3b96f5c0943229e229ad1b43e56e9ed6db0f27ab128
 SHA512 
ac43a3cb71a53deb55e3693653847cf20bf6f5d9056f224e6956c96d63bc59ebee9404f088eec9cabe65337b4607a905ef931354b373cf64e0004c6905a6b5df
+DIST llvm-8.0.0.src.tar.xz 30503732 BLAKE2B 
d89bdeb0ec7d885e49cfe5ae025da84f00502d409710c0807a3cdd58dbd47c50cf6a635593569483150f7f2ecb0de0310bd6785cb7625219bf9f6224a0d68e1c
 SHA512 
1602343b451b964f5d8c2d6b0654d89384c80d45883498c5f0e2f4196168dd4a1ed2a4dadb752076020243df42ffe46cb31d82ffc145d8e5874163cbb9686a1f
 DIST llvm-8.0.0rc5.src.tar.xz 30507432 BLAKE2B 
3f20c3dc270439a32fe23e403ca5190e624f329a10d424d15475d32d89725b021f12af19845928da41be4b83afd254df1f6d27f235b0d2ab81ff76d9e588250f
 SHA512 
b015bab2f0b0644d9fab295dee5d3b2a4d4d7c9d5870a06d7829f43d61e92aeb31b28d4c074f6a20ad803dde06399ef3298c951f1580b010f4b756f75bb4453b

diff --git a/dev-util/lldb/lldb-8.0.0.ebuild b/dev-util/lldb/lldb-8.0.0.ebuild
new file mode 100644
index 000..1da6e6ba172
--- /dev/null
+++ b/dev-util/lldb/lldb-8.0.0.ebuild
@@ -0,0 +1,118 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+: ${CMAKE_MAKEFILE_GENERATOR:=ninja}
+# (needed due to CMAKE_BUILD_TYPE != Gentoo)
+CMAKE_MIN_VERSION=3.7.0-r1
+PYTHON_COMPAT=( python2_7 )
+
+inherit cmake-utils llvm multiprocessing python-single-r1 \
+   toolchain-funcs
+
+MY_P=${P/_/}.src
+LLVM_P=llvm-${PV/_/}.src
+
+DESCRIPTION="The LLVM debugger"
+HOMEPAGE="https://llvm.org/;
+SRC_URI="https://releases.llvm.org/${PV/_//}/${MY_P}.tar.xz
+   test? ( https://releases.llvm.org/${PV/_//}/${LLVM_P}.tar.xz )"
+
+LICENSE="UoI-NCSA"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="libedit ncurses python test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   libedit? ( dev-libs/libedit:0= )
+   ncurses? ( >=sys-libs/ncurses-5.9-r3:0= )
+   python? ( dev-python/six[${PYTHON_USEDEP}]
+   ${PYTHON_DEPS} )
+   ~sys-devel/clang-${PV}[xml]
+   ~sys-devel/llvm-${PV}
+   !

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

2019-03-20 Thread Michał Górny
commit: e55b8323435974c7a034b9410c14465377cfc55e
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 20 14:14:54 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 20 15:01:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e55b8323

sys-libs/compiler-rt: Bump to 8.0.0 final

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

 sys-libs/compiler-rt/Manifest |   1 +
 sys-libs/compiler-rt/compiler-rt-8.0.0.ebuild | 109 ++
 2 files changed, 110 insertions(+)

diff --git a/sys-libs/compiler-rt/Manifest b/sys-libs/compiler-rt/Manifest
index 8c7f5924bd7..bab8d96ae8d 100644
--- a/sys-libs/compiler-rt/Manifest
+++ b/sys-libs/compiler-rt/Manifest
@@ -2,4 +2,5 @@ DIST compiler-rt-4.0.1.src.tar.xz 1434100 BLAKE2B 
ca6bf78fc07f387b7244a52ef648b0
 DIST compiler-rt-5.0.2.src.tar.xz 1543256 BLAKE2B 
09fa84b8f3e9b8627a14387bc6eaa3d6b4588b9c8f1ac5a0114135fd830e3d45922408b237866789eb81bf38defde1186e0f7430a69f825bee12776b7cd9f74e
 SHA512 
605a6d064877a860d6c9097e0220896dfceafed0a2392ad495c97aa347b97899d89f7e21932e29d3274f396615837414a3e730a915fe4f53eaa858ce3642a666
 DIST compiler-rt-6.0.1.src.tar.xz 1686820 BLAKE2B 
59fa3f6e478bd4d6dfa056c85dcdc4349cbce7cea7fc56519feddc9d66c88c9ca48bad7967432ceb81d754213577f12707035afd827cf630a58627575b73b798
 SHA512 
69850c1ad92c66977fa217cbfb42a6a3f502fbe3d1a08daa7fc4cfeb617a7736d231f8ad8d93b10b1ae29bd753315d2a2d70f9ff1f4d18a9a7cc81758d91f963
 DIST compiler-rt-7.0.1.src.tar.xz 1864520 BLAKE2B 
14f72aad4379387f4212fb5efef3456cb5e8a03c7a91f98de2368e9b5ff2d02aeaed05da4fba6978b9e4e8698eb34c9c0c4c2df8d43b8c11e8e9d65079c7fa41
 SHA512 
b94a2a1fb9a6d587cef59b04b951628747bb35bdbcb67de8825aad402a2ba875916a347eef7a9575ac27264e8372e2d67cd477fe2d750c0ed3ce7d67bbbc7dba
+DIST compiler-rt-8.0.0.src.tar.xz 1903020 BLAKE2B 
dc42c4772132fee5e225bb94805cd6917214c1d830b8ba4f1c774e6e1726ec7846432d1d6881085676b6d094ec04060ec2a95749eb7d93be79268ee7de1bd828
 SHA512 
fe9f69fe2269fa3d560ae97fdacd462f855fb0b7a5f647f5b8595206ff7febca6496725adc953de411a827c761e2b3ca11a2149f25707d6c62af0722b68ba913
 DIST compiler-rt-8.0.0rc5.src.tar.xz 1902880 BLAKE2B 
ef8a3eeb58845032f332cc3e0eed4ca33166450ef0ebf21d00fa6f0068ff61a3af54bddb696c9ab507c909baa5bf53ad1bc218ca5a3a354a021315fd6ad1b6b5
 SHA512 
6d7e520e2b16e097b35fcfce1637160ce8b3a174ef79b7c56e4fae466aef9dafc45f577de590426637f9950bbb2f0c18213cea90e566b05f4f6251e4e5de0dca

diff --git a/sys-libs/compiler-rt/compiler-rt-8.0.0.ebuild 
b/sys-libs/compiler-rt/compiler-rt-8.0.0.ebuild
new file mode 100644
index 000..6f7b07f5898
--- /dev/null
+++ b/sys-libs/compiler-rt/compiler-rt-8.0.0.ebuild
@@ -0,0 +1,109 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+: ${CMAKE_MAKEFILE_GENERATOR:=ninja}
+# (needed due to CMAKE_BUILD_TYPE != Gentoo)
+CMAKE_MIN_VERSION=3.7.0-r1
+PYTHON_COMPAT=( python2_7 )
+
+inherit cmake-utils flag-o-matic llvm multiprocessing \
+   python-any-r1 toolchain-funcs
+
+DESCRIPTION="Compiler runtime library for clang (built-in part)"
+HOMEPAGE="https://llvm.org/;
+SRC_URI="https://releases.llvm.org/${PV/_//}/${P/_/}.src.tar.xz;
+
+LICENSE="|| ( UoI-NCSA MIT )"
+SLOT="${PV%_*}"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-fbsd ~amd64-linux ~ppc-macos 
~x64-macos ~x86-macos"
+IUSE="+clang test"
+RESTRICT="!test? ( test ) !clang? ( test )"
+
+CLANG_SLOT=${SLOT%%.*}
+# llvm-6 for new lit options
+DEPEND="
+   >=sys-devel/llvm-6
+   clang? ( sys-devel/clang )
+   test? (
+   $(python_gen_any_dep "dev-python/lit[\${PYTHON_USEDEP}]")
+   =sys-devel/clang-${PV%_*}*:${CLANG_SLOT} )
+   ${PYTHON_DEPS}"
+
+S=${WORKDIR}/${P/_/}.src
+
+# least intrusive of all
+CMAKE_BUILD_TYPE=RelWithDebInfo
+
+pkg_pretend() {
+   if ! use clang && ! tc-is-clang; then
+   ewarn "Building using a compiler other than clang may result in 
broken atomics"
+   ewarn "library. Enable USE=clang unless you have a very good 
reason not to."
+   fi
+}
+
+pkg_setup() {
+   llvm_pkg_setup
+   python-any-r1_pkg_setup
+}
+
+test_compiler() {
+   $(tc-getCC) ${CFLAGS} ${LDFLAGS} "${@}" -o /dev/null -x c - \
+   <<<'int main() { return 0; }' &>/dev/null
+}
+
+src_configure() {
+   # pre-set since we need to pass it to cmake
+   BUILD_DIR=${WORKDIR}/${P}_build
+
+   local nolib_flags=( -nodefaultlibs -lc )
+   if use clang; then
+   local -x CC=${CHOST}-clang
+   local -x CXX=${CHOST}-clang++
+   # ensure we can use clang before installing compiler-rt
+   local -x LDFLAGS="${LDFLAGS} ${nolib_flags[*]}"
+   strip-unsupported-flags
+   elif ! test_compiler; then
+   if test_compiler "${nolib_flags[@]}"; then
+   local -x LDFLAGS="${LDFLAGS} ${nolib_flags[*]}"
+   ewarn "${CC} seems to lack runtime, trying with 

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

2019-03-20 Thread Michał Górny
commit: 1ba097098a902ca7fea0c3951cd2f5fe8808e560
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 20 14:14:59 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 20 15:01:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ba09709

sys-devel/clang-runtime: Bump to 8.0.0 final

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

 sys-devel/clang-runtime/clang-runtime-8.0.0.ebuild | 31 ++
 1 file changed, 31 insertions(+)

diff --git a/sys-devel/clang-runtime/clang-runtime-8.0.0.ebuild 
b/sys-devel/clang-runtime/clang-runtime-8.0.0.ebuild
new file mode 100644
index 000..97c0d55cf2a
--- /dev/null
+++ b/sys-devel/clang-runtime/clang-runtime-8.0.0.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit multilib-build
+
+DESCRIPTION="Meta-ebuild for clang runtime libraries"
+HOMEPAGE="https://clang.llvm.org/;
+SRC_URI=""
+
+LICENSE="metapackage"
+SLOT="${PV%_*}"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-fbsd ~amd64-linux ~ppc-macos 
~x64-macos ~x86-macos"
+IUSE="+compiler-rt crt libcxx openmp +sanitize"
+
+RDEPEND="
+   compiler-rt? (
+   ~sys-libs/compiler-rt-${PV}:${SLOT}
+   sanitize? ( ~sys-libs/compiler-rt-sanitizers-${PV}:${SLOT} )
+   )
+   crt? (
+   || (
+   sys-libs/netbsd-csu[${MULTILIB_USEDEP}]
+   sys-freebsd/freebsd-lib[${MULTILIB_USEDEP}]
+   )
+   )
+   libcxx? ( >=sys-libs/libcxx-${PV}[${MULTILIB_USEDEP}] )
+   openmp? ( >=sys-libs/libomp-${PV}[${MULTILIB_USEDEP}] )"
+
+REQUIRED_USE="sanitize? ( compiler-rt )"



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

2019-03-20 Thread Michał Górny
commit: fb5a8551b3105627f30cde2f2b472fa84e756791
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 20 14:17:09 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 20 15:02:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb5a8551

dev-util/lldb: Remove 8.0.0rc5

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

 dev-util/lldb/Manifest  |   2 -
 dev-util/lldb/lldb-8.0.0_rc5.ebuild | 118 
 2 files changed, 120 deletions(-)

diff --git a/dev-util/lldb/Manifest b/dev-util/lldb/Manifest
index 57de0c94053..84eece90036 100644
--- a/dev-util/lldb/Manifest
+++ b/dev-util/lldb/Manifest
@@ -1,6 +1,4 @@
 DIST lldb-7.0.1.src.tar.xz 19384628 BLAKE2B 
4720aa85afb90b84264f53736ca8a225bfc807cd84271f8be35a06437e718fb40a0f5090f213e203ffb746b254583f59e912d00300635e78f43aeb75a8dc4048
 SHA512 
7e98c3148ac34b42404e5aaaff91728d19e9062110a333f0bc7a62ec324fbb6d033ea44b56e144dc1e94febb2107cfb33c71bb3602c2168a6270dd807a2cc5ff
 DIST lldb-8.0.0.src.tar.xz 19602332 BLAKE2B 
85a51b3ccae8fd0074b0f5b54e35d2eb020770246b13a0ec52a4647d30f23a6620ce410af7e49604947ff60f789ecab0bfeddfc3598642c9096cf3362d88b5bf
 SHA512 
5192d6d6d1759db28569de929ba8db2a80283000f1bf8453d9cf172ac85574c8eacc13f9fe64ecabea0533bfc49c0f58ea8fb29b1f4d88c065d905d553f2e60c
-DIST lldb-8.0.0rc5.src.tar.xz 19602752 BLAKE2B 
4f861bf53b254d3b2496b954a566ae02fe043d938cc04b931c88237dbf593de42c1e51ace0f81280b9e646a2febe853f9be72bec8f91d351ba7f9fe3b4d46df9
 SHA512 
b10e57410b4414e9f373bb2486690108d6a83c8268c9fcc4e30af60f488bf0dec660c4556ff384cb12b0af29d3c9e5a05a9bf57a0bc9acd1d3c39cf071304440
 DIST llvm-7.0.1.src.tar.xz 28311056 BLAKE2B 
737aa6144a415e41a4ff2c8bd5a727d6f14d7b1810c62cbefa5a25fe642c98cddf8a28e35c7e9783373aa3b96f5c0943229e229ad1b43e56e9ed6db0f27ab128
 SHA512 
ac43a3cb71a53deb55e3693653847cf20bf6f5d9056f224e6956c96d63bc59ebee9404f088eec9cabe65337b4607a905ef931354b373cf64e0004c6905a6b5df
 DIST llvm-8.0.0.src.tar.xz 30503732 BLAKE2B 
d89bdeb0ec7d885e49cfe5ae025da84f00502d409710c0807a3cdd58dbd47c50cf6a635593569483150f7f2ecb0de0310bd6785cb7625219bf9f6224a0d68e1c
 SHA512 
1602343b451b964f5d8c2d6b0654d89384c80d45883498c5f0e2f4196168dd4a1ed2a4dadb752076020243df42ffe46cb31d82ffc145d8e5874163cbb9686a1f
-DIST llvm-8.0.0rc5.src.tar.xz 30507432 BLAKE2B 
3f20c3dc270439a32fe23e403ca5190e624f329a10d424d15475d32d89725b021f12af19845928da41be4b83afd254df1f6d27f235b0d2ab81ff76d9e588250f
 SHA512 
b015bab2f0b0644d9fab295dee5d3b2a4d4d7c9d5870a06d7829f43d61e92aeb31b28d4c074f6a20ad803dde06399ef3298c951f1580b010f4b756f75bb4453b

diff --git a/dev-util/lldb/lldb-8.0.0_rc5.ebuild 
b/dev-util/lldb/lldb-8.0.0_rc5.ebuild
deleted file mode 100644
index cab280bed82..000
--- a/dev-util/lldb/lldb-8.0.0_rc5.ebuild
+++ /dev/null
@@ -1,118 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-: ${CMAKE_MAKEFILE_GENERATOR:=ninja}
-# (needed due to CMAKE_BUILD_TYPE != Gentoo)
-CMAKE_MIN_VERSION=3.7.0-r1
-PYTHON_COMPAT=( python2_7 )
-
-inherit cmake-utils llvm multiprocessing python-single-r1 \
-   toolchain-funcs
-
-MY_P=${P/_/}.src
-LLVM_P=llvm-${PV/_/}.src
-
-DESCRIPTION="The LLVM debugger"
-HOMEPAGE="https://llvm.org/;
-SRC_URI="https://prereleases.llvm.org/${PV/_//}/${MY_P}.tar.xz
-   test? ( https://prereleases.llvm.org/${PV/_//}/${LLVM_P}.tar.xz )"
-
-LICENSE="UoI-NCSA"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="libedit ncurses python test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   libedit? ( dev-libs/libedit:0= )
-   ncurses? ( >=sys-libs/ncurses-5.9-r3:0= )
-   python? ( dev-python/six[${PYTHON_USEDEP}]
-   ${PYTHON_DEPS} )
-   ~sys-devel/clang-${PV}[xml]
-   ~sys-devel/llvm-${PV}
-   !

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

2019-03-20 Thread Michał Górny
commit: 5cc8f61d781438a7237605c139d47b0de4995cb5
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 20 14:17:11 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 20 15:02:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cc8f61d

sys-devel/clang: Remove 8.0.0rc5

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

 sys-devel/clang/Manifest   |   3 -
 sys-devel/clang/clang-8.0.0_rc5.ebuild | 319 -
 2 files changed, 322 deletions(-)

diff --git a/sys-devel/clang/Manifest b/sys-devel/clang/Manifest
index f79688d9ea4..9eb3b5db4bd 100644
--- a/sys-devel/clang/Manifest
+++ b/sys-devel/clang/Manifest
@@ -3,13 +3,11 @@ DIST cfe-5.0.2.src.tar.xz 11459216 BLAKE2B 
80d9b2ab70b00c0dfd5c5386a44e0c15d8252
 DIST cfe-6.0.1.src.tar.xz 11905772 BLAKE2B 
abb60e9f9827d1d8a24f0aaf8a1d1e32979293cc401258d230f93290e633645747fd0344af189ac7081b06be2cada503364e1e432b37110ade4b3578e40c7605
 SHA512 
f64ba9290059f6e36fee41c8f32bf483609d31c291fcd2f77d41fecfdf3c8233a5e23b93a1c73fed03683823bd6e72757ed993dd32527de3d5f2b7a64bb031b9
 DIST cfe-7.0.1.src.tar.xz 12488668 BLAKE2B 
b80247b5caf81661dfa715d9bf454b8023221bd27ce49b6bd8cd66f40ffe01448e40fb828fbcc64e49f059af7a7c5a95a0737b0b998454ac5c1dd39388150fa6
 SHA512 
df2f38153ebdc261bcfa6a569567f759bbb1a803192882a9d4eca55a47878166ac9057151a94ad341dc1281136547e4faa783a68070dfde2307b48cacd4b9194
 DIST cfe-8.0.0.src.tar.xz 12868468 BLAKE2B 
3cb96c95c4d9713feb7011e4f1ca24be3e7f6c9b458f6cd9e6905f99737312ca44cb701ed5871e47dd583145e5898d53a65c4cda6456af3d4ca31b670ed84409
 SHA512 
98e540222719716985e5d8439116e47469cb01201ea91d1da7e46cb6633da099688d9352c3b65e5c5f660cbbae353b3d79bb803fc66b3be663f2b04b1feed1c3
-DIST cfe-8.0.0rc5.src.tar.xz 12864516 BLAKE2B 
b1c982d83e0a911a7375d07f9f2f52956b3595674252e6e7d8d8ef4015b51171c59a2d3306c00fcd83ae2fff2eb3d58cc9d4cdeadaca02c4fc3a6242f57959fe
 SHA512 
40f3b6069e40fc4f831662912a8f4c3ab1579587bf48c1fcd9e80287b7e26e8b70becfce525a0b55b1b8283f20a9d67d232cf5ce10189a39d655e2fe3fb3dd73
 DIST clang-tools-extra-4.0.1.src.tar.xz 581788 BLAKE2B 
52ca89eda6fe1e0fbbdc46e17f4067f03a9a9440dcdcc98811651087d0c9ab24dfe3eefb0b80a32ec41abe0766cb3e47031de61c4cff02b7d0e08c8fd03e3faa
 SHA512 
ea26d926f428e62e76cf8a073e63ffe05645f6592e05d7717d5c257908870ae9217727d3e1578227b14eda5937085872463f1a8e99970256179c68b8a92e69e0
 DIST clang-tools-extra-5.0.2.src.tar.xz 646272 BLAKE2B 
8a15a0c3ed9e8c31706d744017aa8be52616037790075c2314c3a613c9e1aa86b0b980c4e3bd9a775b234440f17436392196b41f1691ab25a33b432a25affb68
 SHA512 
241d85652e7c3ad5d77754ad9a694bddab3c14098067da4119223007c5a4a765d1cd7e7c7dba91666ccd5506f8703c82c9ee487f28249a00c2c4edbd0d1f2640
 DIST clang-tools-extra-6.0.1.src.tar.xz 757256 BLAKE2B 
1d91d7459a34e7251007af91db1803ee6d04f1ef3e0fcf134a7e0d1d3456b094a80339ee60db3f0bdd12961f3a05caee7edfc5c6b9c48d49cd55a5dc3c102c3a
 SHA512 
cf29d117b6dabcb7a8e5f6dab5016ce5a5c8f475679001a43fd5c935f2c368f37cdef50aae2080a1e4524f647f6d83458d4a5dec5b45d03fb374f463caf7c3f5
 DIST clang-tools-extra-7.0.1.src.tar.xz 901368 BLAKE2B 
9d99f825e35bc2ef3c56c5c498778d2dcbc578e84920b44345b5734f5799ee7cffdbc77e2ee29b4a8fc03e0d451e31fff1abce042c71cee9984e00083d4dcdd3
 SHA512 
f0aa73217560f952261201e9049310e4a038bc5d4b4120a4c5d13a42aacfbbfe702f1891745755e1702269751d3df19237271caecba43c810a6f50d35494c798
 DIST clang-tools-extra-8.0.0.src.tar.xz 1996156 BLAKE2B 
26c839669ce4cf531a56e8527c9d507ce458861c00aaf563fa5e58cfa2fa3897d820643746802198c8e77c9e46fc8f4b833fc3746b32d8adc0d4a09dbe3ace7c
 SHA512 
434e4cb7b76f89b0a0af25f05f32f2f2e8edb9e9f14547be845df75f5032c1d9dbf475be408bb989c476ec667c10af54a15d40e42559b05e52d24c5fd416b517
-DIST clang-tools-extra-8.0.0rc5.src.tar.xz 1996164 BLAKE2B 
d20bd1c3dedb5559496ffacc11adaca39551f9ea055dde68274c6612a9d0446faa5a880e9e857b864143922d15acdfc8f0d957d19b496b16d42e9c743eeca551
 SHA512 
98f0f66b970295fda5706a0e4c1f517805b42e55ed10d1f7bcfba84d77a21f7aaa177e678e2bf8145409dd3eebf8a1d8f89defe2abec24ec3b2e6bed07b6d4e0
 DIST llvm-4.0.1.src.tar.xz 21065652 BLAKE2B 
6327eed2d1feb108440f22d2581d1ff86c10a10c29793538d8d899c7e2dc83d3f7b147d3fd4bcce2bd2bf57c071b08c624aeafe40a3e7a3914506e7751727e6c
 SHA512 
16adc39b34ddb628f81b171119a8e2a0e9138b25011e803ef0b688e2fbea116fc4953d3a1b61b90a98a75e33619f81566b7cb06a9a2ea4d04ac5e0eb303a2d1d
 DIST llvm-5.0.2-manpages.tar.bz2 93977 BLAKE2B 
8c5e8899e0df9d6037fb7d5c373de6492ccdc9fd2c26cc7dfbd8fb2b9e68418ca8fdf42cdc303c361e649cc6939bf5229cbad017bdccbd5d791e92752328252f
 SHA512 
568615bce5a75d42e4b6d592557472d366d49a99f8e81be10ae679804f1fe674c7fd0bbdac09af44fc67ee5aa34c4ed2153c2767c536ac8e45dd15c811c92dcb
 DIST llvm-5.0.2.src.tar.xz 23451868 BLAKE2B 
b7082be2e4ad557b29b9f6869811f262adcf5c73d552faf91b339bede75cf5eab58afefa12fa779a38be71fe2b8f4ea297c3213ee4e8370cc01972c59249d91c
 SHA512 
3588be5ed969c3f7f6f16f56a12a6af2814d3d3c960d4a36ffebb0446cc75f19220bccee7fc605f9b01f5d5c188a905a046193cc12dec42dd5922048b5c27fe1
@@ -19,5 +17,4 @@ DIST llvm-7.0.1-manpages.tar.bz2 121157 

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

2019-03-20 Thread Andreas Sturmlechner
commit: cdbae2a7a7844fffdd21f7fb1517903b961108bf
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Mar 20 14:14:21 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Mar 20 14:15:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdbae2a7

media-gfx/darktable: Drop all <2.6.1

Broken by exiv2-0.27.

Bug: https://bugs.gentoo.org/678426
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-gfx/darktable/Manifest   |   6 --
 media-gfx/darktable/darktable-2.2.5.ebuild | 139 ---
 media-gfx/darktable/darktable-2.4.3.ebuild | 145 -
 media-gfx/darktable/darktable-2.4.4.ebuild | 145 -
 media-gfx/darktable/darktable-2.6.0.ebuild | 138 ---
 5 files changed, 573 deletions(-)

diff --git a/media-gfx/darktable/Manifest b/media-gfx/darktable/Manifest
index 6a2786500e2..4414ce3e246 100644
--- a/media-gfx/darktable/Manifest
+++ b/media-gfx/darktable/Manifest
@@ -1,8 +1,2 @@
-DIST darktable-2.2.5.tar.xz 3092540 BLAKE2B 
8196ed501c96e6738057ee593c6437257b917907a02c365bd011cbf8ba258178e2915e097d373a2dca6a03ea6920df48b8f16f477e7479959371ef19937ceed9
 SHA512 
fbc79398660b51e580d22dbdfc9a74d213f69335d6058e2844ef397951a1e840264b6d03d1b52b424319fb647a274ac14ff23ee9a9c60071f71497988bdf989b
-DIST darktable-2.4.3.tar.xz 3422460 BLAKE2B 
2fa1d7787301b6bc83b09e8d93bda251d2f9b7cf7d47979087b6da5126272d17c15f925be26652580aad6601f8613eac593c08e91638f2d445de1981f8694798
 SHA512 
adc0740f866890c53a1389b43042d76a4c668dd22654d91fd5a7eb728aa6979cb7dd3703d6e7d3689b6d3840e892432b3c3ce6953a76d4355dfc1f90a8f29506
-DIST darktable-2.4.4.tar.xz 3432268 BLAKE2B 
75d22187c4a32eaf240803e68b8ffe9a29b4dfeaab3eb0061dd817e65c7118a5fe3f1832ce2d7b5adf1d8501c17adff7f1e87545774ca17bd2e33b749e993886
 SHA512 
143739b18217cb2b47f7c5cb29bbb17e0d78b380ccd9358e96e179639d8e3526c76f3822edace605856ec3272b099a09f052867479d20879bf36ef45dafe5df6
-DIST darktable-2.6.0.tar.xz 3358508 BLAKE2B 
1d6dc414d0f5c7dc1340ce1db229e5f4629534e6ccc3d4f017dea87a1e33d897ee8d73affece22311bbb27338075e48384b86b9aece83cbd6c582f761226a863
 SHA512 
066a8766edf3d961b2995bd681c9be65ae118f650a34da3c87c9096b76586c4a949b4c620993bcba3e7cd29f255c19dad9c2e205ed413c309398b4bc606eb73b
 DIST darktable-2.6.1.tar.xz 3473300 BLAKE2B 
e2194d9d967872b3dbc5dd608b3aa946424ff8a20a00b8cd8e1e9dd7ad3146acd791d2a7f20652d4673fdaac7bec86e405e055bab664c41b601b5788f0f15e72
 SHA512 
0d92fa35629ca02ca7cbb2910966b3fad57e536c967fd05381ad02dc9645106e6baaf1a93c1c186618624850c876f23305704e41d7151150e3367e21c415a967
-DIST darktable-usermanual-2.2.0.pdf 14998142 BLAKE2B 
68332239b4d2e34a0cd9f9e9bc26a18149ef1a8c033e3d5a7a7c150e952546669d74d0eeb97ad6793955d65a3259df51932829aca3d46f5c3ce7e01b59ee709b
 SHA512 
5408193b442a7f60783aace507d8dd39c638f5f58d8b5fb5ab68eca03ce9853477b0cbe14184375d58cd6a648de18e9ecae586376698571222be755159cc0b20
-DIST darktable-usermanual-2.4.0.pdf 15072726 BLAKE2B 
a10fb02bb732040e45e4b2c6b6a6e022c6095a29aac894727c8a803bf76ac50924bcd938f3c7085222f32542074cbe051afe8752059a0796db22adabecce3faf
 SHA512 
0259ccd264ec0569a770d92a517932bf5b24ce279c699a636f36656519c400456f0bdbd5de1eacf96e0cb05c0b7e59a6c6fa02803b809bc0fabb902ffe454dd1
 DIST darktable-usermanual-2.6.0.pdf 15623135 BLAKE2B 
a7a254e49dd57ee03480d52f4506a436210324cc4a2651f3c2fd70ca65cb7aa1735934a5e046ffa662b2aa1f081042d2d1e6ce0f70b6768719c52e2d14c358ce
 SHA512 
e68005ee8706f2342755ce3e4dcd6c2907c1607bc9b750154dceb4b52dcccf50c581ab65212efc8ffb2447f5d828e0fdb61d0471c3d14938e098528e50f32e14

diff --git a/media-gfx/darktable/darktable-2.2.5.ebuild 
b/media-gfx/darktable/darktable-2.2.5.ebuild
deleted file mode 100644
index 09628ed7484..000
--- a/media-gfx/darktable/darktable-2.2.5.ebuild
+++ /dev/null
@@ -1,139 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils eutils flag-o-matic gnome2-utils pax-utils toolchain-funcs 
xdg-utils
-
-DOC_PV="2.2.0"
-MY_PV="${PV/_/}"
-MY_P="${P/_/.}"
-
-DESCRIPTION="A virtual lighttable and darkroom for photographers"
-HOMEPAGE="https://www.darktable.org/;
-SRC_URI="https://github.com/darktable-org/${PN}/releases/download/release-${MY_PV}/${MY_P}.tar.xz
-   doc? ( 
https://github.com/darktable-org/${PN}/releases/download/release-${DOC_PV}/${PN}-usermanual.pdf
 -> ${PN}-usermanual-${DOC_PV}.pdf )"
-
-LICENSE="GPL-3 CC-BY-3.0"
-SLOT="0"
-KEYWORDS="amd64 x86"
-LANGS=" ca cs da de es fr he hu it ja nl pl ru sk sl sv uk"
-# TODO add lua once dev-lang/lua-5.2 is unmasked
-IUSE="colord cups cpu_flags_x86_sse3 doc flickr geolocation gnome-keyring 
gphoto2 graphicsmagick jpeg2k kwallet
-nls opencl openmp openexr pax_kernel webp
-${LANGS// / l10n_}"
-
-# sse3 support is required to build darktable
-REQUIRED_USE="cpu_flags_x86_sse3"
-
-CDEPEND="
-   dev-db/sqlite:3
-   dev-libs/json-glib
-  

[gentoo-commits] repo/gentoo:master commit in: app-shells/bash/

2019-03-20 Thread Lars Wendler
commit: b0a85e3725247e39ba1df505192a45d503e55493
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Mar 20 14:31:08 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Mar 20 14:31:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0a85e37

app-shells/bash: Removed old.

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

 app-shells/bash/bash-5.0_p2.ebuild | 257 -
 1 file changed, 257 deletions(-)

diff --git a/app-shells/bash/bash-5.0_p2.ebuild 
b/app-shells/bash/bash-5.0_p2.ebuild
deleted file mode 100644
index 7572f931eab..000
--- a/app-shells/bash/bash-5.0_p2.ebuild
+++ /dev/null
@@ -1,257 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit flag-o-matic toolchain-funcs multilib prefix
-
-# Official patchlevel
-# See ftp://ftp.cwru.edu/pub/bash/bash-5.0-patches/
-PLEVEL=${PV##*_p}
-MY_PV=${PV/_p*}
-MY_PV=${MY_PV/_/-}
-MY_P=${PN}-${MY_PV}
-is_release() {
-   case ${PV} in
-   *_alpha*|*_beta*|*_rc*) return 1 ;;
-   *) return 0 ;;
-   esac
-}
-[[ ${PV} != *_p* ]] && PLEVEL=0
-patches() {
-   local opt=$1 plevel=${2:-${PLEVEL}} pn=${3:-${PN}} pv=${4:-${MY_PV}}
-   [[ ${plevel} -eq 0 ]] && return 1
-   eval set -- {1..${plevel}}
-   set -- $(printf "${pn}${pv/\.}-%03d " "$@")
-   if [[ ${opt} == -s ]] ; then
-   echo "${@/#/${DISTDIR}/}"
-   else
-   local u
-   for u in ftp://ftp.cwru.edu/pub/bash mirror://gnu/${pn} ; do
-   printf "${u}/${pn}-${pv}-patches/%s " "$@"
-   done
-   fi
-}
-
-# The version of readline this bash normally ships with.
-READLINE_VER="8.0"
-
-DESCRIPTION="The standard GNU Bourne again shell"
-HOMEPAGE="http://tiswww.case.edu/php/chet/bash/bashtop.html;
-if is_release ; then
-   SRC_URI="mirror://gnu/bash/${MY_P}.tar.gz $(patches)"
-else
-   SRC_URI="ftp://ftp.cwru.edu/pub/bash/${MY_P}.tar.gz;
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="afs bashlogger examples mem-scramble +net nls plugins +readline"
-
-DEPEND="
-   >=sys-libs/ncurses-5.2-r2:0=
-   readline? ( >=sys-libs/readline-${READLINE_VER}:0= )
-   nls? ( virtual/libintl )
-"
-RDEPEND="
-   ${DEPEND}
-   !

[gentoo-commits] repo/gentoo:master commit in: app-shells/bash/

2019-03-20 Thread Lars Wendler
commit: 596519978ca08ab3a46e60e7ac754278a5aef40e
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Mar 20 14:29:51 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Mar 20 14:31:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59651997

app-shells/bash: Bump to version 5.0_p3

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

 app-shells/bash/Manifest   |   1 +
 app-shells/bash/bash-5.0_p3.ebuild | 266 +
 2 files changed, 267 insertions(+)

diff --git a/app-shells/bash/Manifest b/app-shells/bash/Manifest
index 3962596fa5d..bee3da75417 100644
--- a/app-shells/bash/Manifest
+++ b/app-shells/bash/Manifest
@@ -310,3 +310,4 @@ DIST bash44-022 1818 BLAKE2B 
66c6e5fd33f0649ff886d1fd944cb10a06de06f0724c0cb7343
 DIST bash44-023 1557 BLAKE2B 
95a21ade7e4be68d66f3862f26b574c5897055822471c8d2801b8e1f866d1d11ddd4000e967b567c3ef7949af8a88ca918ea066d52a67fc5fd4b266135f0dbbb
 SHA512 
442efa78d365a728555ade77cc2f8501aed09f37ae10e1ac647d35299829b63caefbc5c30436d622bfef9300e9d929d7f4fafe85a59df15089881bc987fa12fd
 DIST bash50-001 4133 BLAKE2B 
3eedb63f943ba89f1147c907fcacb5e5af891a6728edb4ced972e19d586573db6fface4947490ffb9f42a2ed87c745a352e102fb727637eec8422d7323da9470
 SHA512 
e3bf036287d3be1f3e91755678c04c9a8e1b4a98e34e181871dfaeb13987dda18c31a44db3f3829d91a185ba4414b9c0229f2a15f6e8a951cbc6c1054252bfdd
 DIST bash50-002 4380 BLAKE2B 
022340f0da0d5b7c571c2015beb87268452faf1484bedb75e2868b16904eed93749d5c0ed62b9da43badb3ee2efe3bdb4f55e212a40c3cfdc073d44623475b85
 SHA512 
59b1cfa1be1029ada53c63fe651d51451ead5523c50c115e0eada07e34e641c693ed728366986acb431f96fdc61818efd3f8cd168ce416001edc62602e5f28dd
+DIST bash50-003 6434 BLAKE2B 
ccf05f2f0da6dd0a1d25d22200326d405019acbce27a7fbcb3f16ff09027d5dec5cb9d5dc557638f72089a3444b25d5106abdb0916cac0797562b4d8b68a0ab2
 SHA512 
520b5cc0b7aeea6cd8b7471b553d8979996f3627a3e5c8889023562dadc82475be243aca2ec608217b78400a1dceb134b877d3ded926e581445234f1b69409e6

diff --git a/app-shells/bash/bash-5.0_p3.ebuild 
b/app-shells/bash/bash-5.0_p3.ebuild
new file mode 100644
index 000..0e14a04dc16
--- /dev/null
+++ b/app-shells/bash/bash-5.0_p3.ebuild
@@ -0,0 +1,266 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit flag-o-matic toolchain-funcs multilib prefix
+
+# Official patchlevel
+# See ftp://ftp.cwru.edu/pub/bash/bash-5.0-patches/
+PLEVEL=${PV##*_p}
+MY_PV=${PV/_p*}
+MY_PV=${MY_PV/_/-}
+MY_P=${PN}-${MY_PV}
+is_release() {
+   case ${PV} in
+   *_alpha*|*_beta*|*_rc*) return 1 ;;
+   *) return 0 ;;
+   esac
+}
+[[ ${PV} != *_p* ]] && PLEVEL=0
+patches() {
+   local opt=$1 plevel=${2:-${PLEVEL}} pn=${3:-${PN}} pv=${4:-${MY_PV}}
+   [[ ${plevel} -eq 0 ]] && return 1
+   eval set -- {1..${plevel}}
+   set -- $(printf "${pn}${pv/\.}-%03d " "$@")
+   if [[ ${opt} == -s ]] ; then
+   echo "${@/#/${DISTDIR}/}"
+   else
+   local u
+   for u in ftp://ftp.cwru.edu/pub/bash mirror://gnu/${pn} ; do
+   printf "${u}/${pn}-${pv}-patches/%s " "$@"
+   done
+   fi
+}
+
+# The version of readline this bash normally ships with.
+READLINE_VER="8.0"
+
+DESCRIPTION="The standard GNU Bourne again shell"
+HOMEPAGE="http://tiswww.case.edu/php/chet/bash/bashtop.html;
+if is_release ; then
+   SRC_URI="mirror://gnu/bash/${MY_P}.tar.gz $(patches)"
+else
+   SRC_URI="ftp://ftp.cwru.edu/pub/bash/${MY_P}.tar.gz;
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="afs bashlogger examples mem-scramble +net nls plugins +readline"
+
+DEPEND="
+   >=sys-libs/ncurses-5.2-r2:0=
+   readline? ( >=sys-libs/readline-${READLINE_VER}:0= )
+   nls? ( virtual/libintl )
+"
+RDEPEND="
+   ${DEPEND}
+   !

[gentoo-commits] repo/proj/prefix:master commit in: scripts/

2019-03-20 Thread Fabian Groffen
commit: 5107368437df6964ba4c2567de9e13bb988912c6
Author: Fabian Groffen  gentoo  org>
AuthorDate: Wed Mar 20 14:52:06 2019 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Wed Mar 20 14:52:06 2019 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=51073684

scripts/bootstrap-prefix: bootstrap libressl for wget to use

Somewhat experimental, but optional (e.g. if it fails should not abort
the bootstrap) bootstrap of libressl so wget can link against it to
enable https:// support.  Tested on powerpc-apple-darwin9.

Bug: https://bugs.gentoo.org/644372
Signed-off-by: Fabian Groffen  gentoo.org>

 scripts/bootstrap-prefix.sh | 57 +++--
 1 file changed, 45 insertions(+), 12 deletions(-)

diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
index 6f5b44f5d0..7cb83cf84d 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -13,8 +13,13 @@ rapx() { is-rap && echo $1 || echo $2; }
 
 ## Functions Start Here
 
+v() {
+   echo "$@"
+   "$@"
+}
+
 econf() {
-   ${CONFIG_SHELL} ./configure \
+   v ${CONFIG_SHELL} ./configure \
--host=${CHOST} \
--prefix="${ROOT}"/tmp/usr \
--mandir="${ROOT}"/tmp/usr/share/man \
@@ -65,7 +70,7 @@ efetch() {
# try for mirrors first, fall back to distfiles, then try given 
location
local locs=( )
local loc
-   for loc in ${GENTOO_MIRRORS} ${DISTFILES_G_O} ; do
+   for loc in ${GENTOO_MIRRORS} ; do
locs=(
"${locs[@]}"
"${loc}/distfiles/${1##*/}"
@@ -74,7 +79,7 @@ efetch() {
locs=( "${locs[@]}" "$1" )
 
for loc in "${locs[@]}" ; do
-   ${FETCH_COMMAND} "${loc}" < /dev/null
+   v ${FETCH_COMMAND} "${loc}" < /dev/null
[[ -f ${1##*/} ]] && break
done
if [[ ! -f ${1##*/} ]] ; then
@@ -806,7 +811,8 @@ bootstrap_gnu() {
# Darwin9 in particular doesn't compile when using system readline,
# but we don't need any groovy input at all, so just disable it,
# except for Cygwin, where the patch above would fail to compile
-   [[ ${PN} == "bash" && ${CHOST} != *-cygwin* ]] && myconf="${myconf} 
--disable-readline"
+   [[ ${PN} == "bash" && ${CHOST} != *-cygwin* ]] \
+   && myconf="${myconf} --disable-readline"
 
# ensure we don't read system-wide shell initialisation, it may
# contain cruft, bug #650284
@@ -819,11 +825,30 @@ bootstrap_gnu() {
# coreutils completely useless (install failing on everything)
# Don't try using gmp either, it may be that just the library is
# there, and if so, the buildsystem assumes the header exists too
-   [[ ${PN} == "coreutils" ]] && \
+   # stdbuf is giving many problems, and we don't really care about it
+   # at this level, so disable it too
+   if [[ ${PN} == "coreutils" ]] ; then
myconf="${myconf} --disable-acl --without-gmp"
+   myconf="${myconf} --enable-no-install-program=stdbuf"
+   fi
 
# Gentoo Bug 400831, fails on Ubuntu with libssl-dev installed
-   [[ ${PN} == "wget" ]] && myconf="${myconf} --without-ssl"
+   if [[ ${PN} == "wget" ]] ; then
+   if [[ -x ${ROOT}/tmp/usr/bin/openssl ]] ; then
+   myconf="${myconf} --with-ssl=openssl"
+   myconf="${myconf} --with-libssl-prefix=${ROOT}/tmp/usr"
+   export CPPFLAGS="${CPPFLAGS} -I${ROOT}/tmp/usr/include"
+   export LDFLAGS="${LDFLAGS} -L${ROOT}/tmp/usr/lib"
+   else
+   myconf="${myconf} --without-ssl"
+   fi
+   fi
+
+   # for libressl, only provide static lib, such that wget (above)
+   # links it in and we don't have to bother about RPATH or something
+   if [[ ${PN} == "libressl" ]] ; then
+   myconf="${myconf} --enable-static --disable-shared"
+   fi
 
# SuSE 11.1 has GNU binutils-2.20, choking on crc32_x86
[[ ${PN} == "xz" ]] && myconf="${myconf} --disable-assembler"
@@ -848,16 +873,16 @@ bootstrap_gnu() {
einfo "Compiling ${PN}"
econf ${myconf} || return 1
if [[ ${PN} == "make" && $(type -t $MAKE) != "file" ]]; then
-   ./build.sh || return 1
+   v ./build.sh || return 1
else
-   $MAKE ${MAKEOPTS} || return 1
+   v $MAKE ${MAKEOPTS} || return 1
fi
 
einfo "Installing ${PN}"
if [[ ${PN} == "make" && $(type -t $MAKE) != "file" ]]; then
-   ./make install MAKE="${S}/make" || return 1
+   v ./make install MAKE="${S}/make" || return 1
else
-   $MAKE install || return 1
+

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

2019-03-20 Thread Michał Górny
commit: 0d7aab0afe1580f2e77e34ed21fdbd31b5b28249
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 20 14:17:13 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 20 15:02:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d7aab0a

sys-devel/lld: Remove 8.0.0rc5

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

 sys-devel/lld/Manifest |  2 -
 sys-devel/lld/lld-8.0.0_rc5.ebuild | 75 --
 2 files changed, 77 deletions(-)

diff --git a/sys-devel/lld/Manifest b/sys-devel/lld/Manifest
index 094fd6749ea..b34a56dd85f 100644
--- a/sys-devel/lld/Manifest
+++ b/sys-devel/lld/Manifest
@@ -1,8 +1,6 @@
 DIST lld-6.0.1.src.tar.xz 787804 BLAKE2B 
6b1d42bf24ca4c4dbfd060f1e40efa106e4adb73ee44a219f1568168b90b2a1430c3bd9c9e7996fda1f90423f8154678d6ee795ba4e179a0a72d86e980cbba52
 SHA512 
856ccc125255ab6184919f1424372f0f8a5de847047e2ab1a131a2ecec0caa9b5163d01409c7c510df9c794f0bc8d65cc904df2baf6462ef53bc163e002a
 DIST lld-7.0.1.src.tar.xz 912812 BLAKE2B 
586f869350cb49eec661b72d575686d3627f2e094b492ad1d62ebad2a7aa14cff5582b51713ab02889c1f1bab20b38cfcb038e6753936688e6530f7b044e73ba
 SHA512 
e5d3ed280d8ac6014cd6bbe080b11e2c4ebbae81dc14b637e779ec027d818dbae91c6f0de9e94bcecd6bdaa37f12c35141b5d81f0a15251d27932aa9bebd4047
 DIST lld-8.0.0.src.tar.xz 999864 BLAKE2B 
31433168de4240cb106b63744c46067c7c71f3b95004e822d2b2c1f14215abc1219e06d99e235714a8931ecba84f5d6867147053343cbee2a668eb1e10b68240
 SHA512 
43b671546f26a2293c27496584fcae43a99caabfffdbc7f72e06689e489005215b9a8607a4dc66a5469b3139d362486a46d1fbbdc2c657195fd3d3f1a72d2fa0
-DIST lld-8.0.0rc5.src.tar.xz 16 BLAKE2B 
1c48d0a017e225b62333046a532bf82dec36a1bfbd51b53c30a3d4b3a23de2c5a7efcdf65025cde667e1af25d9858a09b5fa375abee212ffb7782a4e95276af3
 SHA512 
392d55336f4fb450dd13cc3ffca22c1ad0f856c633f4be879ee55f430a68c1037645b16e4357494d68818bc62d5490e31e3fe8f7f154e8cbac2fde5136588241
 DIST llvm-6.0.1.src.tar.xz 25306628 BLAKE2B 
60232d4d22f8096b565cc8d81fea0639f24f14e8fc4f66ade69fa15479181f07f655f26dff3fa24bf105762b495da316c5c9352db234bd0af6b9c3fff6d4d881
 SHA512 
cbbb00eb99cfeb4aff623ee1a5ba075e7b5a76fc00c5f9f539ff28c108598f5708a0369d5bd92683def5a20c2fe60cab7827b42d628dbfcc79b57e0e91b84dd9
 DIST llvm-7.0.1.src.tar.xz 28311056 BLAKE2B 
737aa6144a415e41a4ff2c8bd5a727d6f14d7b1810c62cbefa5a25fe642c98cddf8a28e35c7e9783373aa3b96f5c0943229e229ad1b43e56e9ed6db0f27ab128
 SHA512 
ac43a3cb71a53deb55e3693653847cf20bf6f5d9056f224e6956c96d63bc59ebee9404f088eec9cabe65337b4607a905ef931354b373cf64e0004c6905a6b5df
 DIST llvm-8.0.0.src.tar.xz 30503732 BLAKE2B 
d89bdeb0ec7d885e49cfe5ae025da84f00502d409710c0807a3cdd58dbd47c50cf6a635593569483150f7f2ecb0de0310bd6785cb7625219bf9f6224a0d68e1c
 SHA512 
1602343b451b964f5d8c2d6b0654d89384c80d45883498c5f0e2f4196168dd4a1ed2a4dadb752076020243df42ffe46cb31d82ffc145d8e5874163cbb9686a1f
-DIST llvm-8.0.0rc5.src.tar.xz 30507432 BLAKE2B 
3f20c3dc270439a32fe23e403ca5190e624f329a10d424d15475d32d89725b021f12af19845928da41be4b83afd254df1f6d27f235b0d2ab81ff76d9e588250f
 SHA512 
b015bab2f0b0644d9fab295dee5d3b2a4d4d7c9d5870a06d7829f43d61e92aeb31b28d4c074f6a20ad803dde06399ef3298c951f1580b010f4b756f75bb4453b

diff --git a/sys-devel/lld/lld-8.0.0_rc5.ebuild 
b/sys-devel/lld/lld-8.0.0_rc5.ebuild
deleted file mode 100644
index 7e98b34812a..000
--- a/sys-devel/lld/lld-8.0.0_rc5.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-: ${CMAKE_MAKEFILE_GENERATOR:=ninja}
-# (needed due to CMAKE_BUILD_TYPE != Gentoo)
-CMAKE_MIN_VERSION=3.7.0-r1
-PYTHON_COMPAT=( python2_7 )
-
-inherit cmake-utils llvm multiprocessing python-any-r1
-
-MY_P=${P/_/}.src
-LLVM_P=llvm-${PV/_/}.src
-
-DESCRIPTION="The LLVM linker (link editor)"
-HOMEPAGE="https://llvm.org/;
-SRC_URI="https://prereleases.llvm.org/${PV/_//}/${MY_P}.tar.xz
-   test? ( https://prereleases.llvm.org/${PV/_//}/${LLVM_P}.tar.xz )"
-
-LICENSE="UoI-NCSA"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-fbsd"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="~sys-devel/llvm-${PV}"
-DEPEND="${RDEPEND}
-   test? ( $(python_gen_any_dep 
"~dev-python/lit-${PV}[\${PYTHON_USEDEP}]") )"
-
-S=${WORKDIR}/${MY_P}
-
-# least intrusive of all
-CMAKE_BUILD_TYPE=RelWithDebInfo
-
-python_check_deps() {
-   has_version "dev-python/lit[${PYTHON_USEDEP}]"
-}
-
-pkg_setup() {
-   LLVM_MAX_SLOT=${PV%%.*} llvm_pkg_setup
-   use test && python-any-r1_pkg_setup
-}
-
-src_unpack() {
-   einfo "Unpacking ${MY_P}.tar.xz ..."
-   tar -xf "${DISTDIR}/${MY_P}.tar.xz" || die
-
-   if use test; then
-   einfo "Unpacking parts of ${LLVM_P}.tar.xz ..."
-   tar -xf "${DISTDIR}/${LLVM_P}.tar.xz" \
-   "${LLVM_P}"/utils/{lit,unittest} || die
-   mv "${LLVM_P}" llvm || die
-   fi
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DBUILD_SHARED_LIBS=ON
-
- 

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

2019-03-20 Thread Michał Górny
commit: 2a049e123b079474153425a28ef48ac914af4875
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 20 14:17:18 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 20 15:02:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a049e12

sys-devel/llvm: Remove 8.0.0rc5

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

 sys-devel/llvm/Manifest  |   1 -
 sys-devel/llvm/llvm-8.0.0_rc5.ebuild | 297 ---
 2 files changed, 298 deletions(-)

diff --git a/sys-devel/llvm/Manifest b/sys-devel/llvm/Manifest
index a9df8377fa2..38730acdba9 100644
--- a/sys-devel/llvm/Manifest
+++ b/sys-devel/llvm/Manifest
@@ -8,5 +8,4 @@ DIST llvm-7.0.1-manpages.tar.bz2 121157 BLAKE2B 
d209e292dde0b528bca6e6438eac83d3
 DIST llvm-7.0.1.src.tar.xz 28311056 BLAKE2B 
737aa6144a415e41a4ff2c8bd5a727d6f14d7b1810c62cbefa5a25fe642c98cddf8a28e35c7e9783373aa3b96f5c0943229e229ad1b43e56e9ed6db0f27ab128
 SHA512 
ac43a3cb71a53deb55e3693653847cf20bf6f5d9056f224e6956c96d63bc59ebee9404f088eec9cabe65337b4607a905ef931354b373cf64e0004c6905a6b5df
 DIST llvm-8.0.0-manpages.tar.bz2 140542 BLAKE2B 
e6c58865ace0b8848ffe825e931a639daa5b22099317b3263acf8df4b8d5e1e97ed54a85b9241e6874b112c67114bda5617c3014c3bc1430c179bdf389e77269
 SHA512 
198f5bde8c610aa7953b325fc29c2bebe5c3d81469af6273975ed32cd739a9936813fca7399acc49809c322cf73fbdaa77a834f889bd78fe4672024965ea47fb
 DIST llvm-8.0.0.src.tar.xz 30503732 BLAKE2B 
d89bdeb0ec7d885e49cfe5ae025da84f00502d409710c0807a3cdd58dbd47c50cf6a635593569483150f7f2ecb0de0310bd6785cb7625219bf9f6224a0d68e1c
 SHA512 
1602343b451b964f5d8c2d6b0654d89384c80d45883498c5f0e2f4196168dd4a1ed2a4dadb752076020243df42ffe46cb31d82ffc145d8e5874163cbb9686a1f
-DIST llvm-8.0.0rc5.src.tar.xz 30507432 BLAKE2B 
3f20c3dc270439a32fe23e403ca5190e624f329a10d424d15475d32d89725b021f12af19845928da41be4b83afd254df1f6d27f235b0d2ab81ff76d9e588250f
 SHA512 
b015bab2f0b0644d9fab295dee5d3b2a4d4d7c9d5870a06d7829f43d61e92aeb31b28d4c074f6a20ad803dde06399ef3298c951f1580b010f4b756f75bb4453b
 DIST llvm-manpages-4.0.1.tar.bz2 87981 BLAKE2B 
79ffd254ee5c6e09159c954913ef820f74107d4fcea5e3ed82592dc36af8fdfbf1e850547ba8bfc20aa9a5ecdd26c50329e6a6d558ae3aa5475a930789ce3e01
 SHA512 
d5b3213567c25db58ef364d272314a79c311a80fc21d98c09a5540af45a8190a38f489228663fe9a9b63bf0f2b952c460c4196a8fc8d6f221619f6e7ed2fc415

diff --git a/sys-devel/llvm/llvm-8.0.0_rc5.ebuild 
b/sys-devel/llvm/llvm-8.0.0_rc5.ebuild
deleted file mode 100644
index 250137f620f..000
--- a/sys-devel/llvm/llvm-8.0.0_rc5.ebuild
+++ /dev/null
@@ -1,297 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-: ${CMAKE_MAKEFILE_GENERATOR:=ninja}
-# (needed due to CMAKE_BUILD_TYPE != Gentoo)
-CMAKE_MIN_VERSION=3.7.0-r1
-PYTHON_COMPAT=( python2_7 )
-
-inherit cmake-utils eapi7-ver flag-o-matic multilib-minimal \
-   multiprocessing pax-utils python-any-r1 toolchain-funcs
-
-DESCRIPTION="Low Level Virtual Machine"
-HOMEPAGE="https://llvm.org/;
-SRC_URI="https://prereleases.llvm.org/${PV/_//}/${P/_/}.src.tar.xz;
-#  !doc? ( https://dev.gentoo.org/~mgorny/dist/llvm/${P}-manpages.tar.bz2 
)"
-
-# Keep in sync with CMakeLists.txt
-ALL_LLVM_TARGETS=( AArch64 AMDGPU ARM BPF Hexagon Lanai Mips MSP430
-   NVPTX PowerPC Sparc SystemZ X86 XCore )
-ALL_LLVM_TARGETS=( "${ALL_LLVM_TARGETS[@]/#/llvm_targets_}" )
-
-# Additional licenses:
-# 1. OpenBSD regex: Henry Spencer's license ('rc' in Gentoo) + BSD.
-# 2. ARM backend: LLVM Software Grant by ARM.
-# 3. MD5 code: public-domain.
-# 4. Tests (not installed):
-#  a. gtest: BSD.
-#  b. YAML tests: MIT.
-
-LICENSE="UoI-NCSA rc BSD public-domain
-   llvm_targets_ARM? ( LLVM-Grant )"
-SLOT="$(ver_cut 1)"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-fbsd ~amd64-linux ~ppc-macos 
~x64-macos ~x86-macos"
-IUSE="debug doc exegesis gold libedit +libffi ncurses test xar xml
-   kernel_Darwin ${ALL_LLVM_TARGETS[*]}"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   sys-libs/zlib:0=
-   exegesis? ( dev-libs/libpfm:= )
-   gold? (
-   || (
-   >=sys-devel/binutils-2.31.1-r4:*[plugins]
-   =virtual/libffi-3.0.13-r1:0=[${MULTILIB_USEDEP}] )
-   ncurses? ( >=sys-libs/ncurses-5.9-r3:0=[${MULTILIB_USEDEP}] )
-   xar? ( app-arch/xar )
-   xml? ( dev-libs/libxml2:2=[${MULTILIB_USEDEP}] )"
-# configparser-3.2 breaks the build (3.3 or none at all are fine)
-DEPEND="${RDEPEND}
-   dev-lang/perl
-   || ( >=sys-devel/gcc-3.0 >=sys-devel/llvm-3.5
-   ( >=sys-freebsd/freebsd-lib-9.1-r10 sys-libs/libcxx )
-   )
-   kernel_Darwin? (
-   =sys-devel/binutils-apple-5.1
-   )
-   doc? ( $(python_gen_any_dep '
-   dev-python/recommonmark[${PYTHON_USEDEP}]
-   dev-python/sphinx[${PYTHON_USEDEP}]
-   ') )
-   !doc? ( ${PYTHON_DEPS} )
-   gold? ( sys-libs/binutils-libs )
-   libffi? 

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

2019-03-20 Thread Michał Górny
commit: b563da5b59df5f67665a08a7e7dadb2b5ad6d964
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 20 14:17:06 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 20 15:01:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b563da5b

sys-libs/llvm-libunwind: Remove 8.0.0rc5

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

 sys-libs/llvm-libunwind/Manifest   |   3 -
 .../llvm-libunwind/llvm-libunwind-8.0.0_rc5.ebuild | 143 -
 2 files changed, 146 deletions(-)

diff --git a/sys-libs/llvm-libunwind/Manifest b/sys-libs/llvm-libunwind/Manifest
index 714935d0a97..5e3354a976b 100644
--- a/sys-libs/llvm-libunwind/Manifest
+++ b/sys-libs/llvm-libunwind/Manifest
@@ -1,12 +1,9 @@
 DIST libcxx-6.0.1.src.tar.xz 1552328 BLAKE2B 
65a6addd04e530c2a72e8cba207282b9e9fafc01a594d7b11f63d10b6f88eca67a3cdf90b8055e410ede358d9be1f63fbe427f308e1337833447c0260d96e1c8
 SHA512 
c04f628b0924d76f035f615b59d19ce42dfc19c9a8eea4fe2b22a95cfe5a037ebdb30943fd741443939df5b4cf692bc1e51c840fefefbd134e3afbe2a75fe875
 DIST libcxx-7.0.1.src.tar.xz 1638188 BLAKE2B 
541d27c3801895d59ad06b15de5fe9ff0d9b5b3ef393a5fad05a12a52dd6453ecc530b0ce3129624a27e959d3c9c5f7066ebb57fd85caca538ebf4f990aa6967
 SHA512 
b3ad7ad95bdcf2d902b29de8a0b757d4dbc220bc1a22a813d6bcec15a34b3aa42e85c59f4cecbb318c799ca611550b44c328b37278f4349b984016ad4556c1d8
 DIST libcxx-8.0.0.src.tar.xz 1752308 BLAKE2B 
1e8cd8c7100f5f8b943ba8f38b0b59a0fd5e5bea834953483a67502f67de3eb51eba4ed4be17cdb54406da4ad7ebc6fef33934c59db982afa55856ce9f1f46ff
 SHA512 
2e0fcd3e78f7e15ea894e52c51351daef8e3a2aaf53b3df7497b11403d28f5269ff49a4674bacea1d565a5faa2b24502caaaeff9cd48518f0d141563d8f9cc03
-DIST libcxx-8.0.0rc5.src.tar.xz 1755168 BLAKE2B 
ec3e77fc15d92d4a2e04b706b52379e2f5fefbdd00e6f1bd63061c42781330b279507e690f2f14185e18893bb7b985251e68b5282b26b4c20afbed671d35073b
 SHA512 
aaf6495ea7ddf68441aa4422ca7d0d02f17875553f34010d1e5061a5180774990b227edc6fe133dd4081de7e4f835228ac286b974800fd396b3650c4f7899b7a
 DIST libcxxabi-6.0.1.src.tar.xz 528356 BLAKE2B 
b301b750b2928864d3fc51e66cf91aab6837636ec2bce706b9a97296ec96af4bd2e80b1bf80c9b4afe449335ee12bbdd1905433c27e1770e16bc306baf206927
 SHA512 
bbb4c7b412e295cb735f637df48a83093eef45ed5444f7766790b4b047f75fd5fd634d8f3a8ac33a5c1407bd16fd450ba113f60a9bcc1d0a911fe0c54e9c81f2
 DIST libcxxabi-7.0.1.src.tar.xz 535096 BLAKE2B 
212330e8dbde98280b1bcd4f36ea3f30b69af9816e6c252bd9640c45501536ce38e8b57f3e82195d2a33cb1286651f7cad82713c71e8012e512e04c4ff7bad64
 SHA512 
92e8d28f329e9a8cce296f0fddd88324198f722db3a748bb2164b28ae8eca6047c89ed1e70af00bbedd93ce4285b2ab1e0307a65b88dc60e581eebfd6cbd2038
 DIST libcxxabi-8.0.0.src.tar.xz 539040 BLAKE2B 
847d848e4ed66212789c50137e9556abed601ab4f30765b8b4453f0bc2609e2d1ef516b2f504ee2331a53706940b814545423da05392aed24bf290e6757b52f6
 SHA512 
9ee2e6d5899529be45b2e5edc395606fa9040d25789b3da1ae0182113626e7624cbb071eae525c478293a7b371876e41614348ee5808f90f3f9c7b08837e1055
-DIST libcxxabi-8.0.0rc5.src.tar.xz 539008 BLAKE2B 
899a1dd983e0265dd7961e6d9ed23e6f171b0ab195fc7164ab1d94ec82f52bee370296edfd51cc800cc9646feb92bf338075b19c4ef545ad9195f8ce83bddbea
 SHA512 
9bc9bde4787a21febc0b385c22dd20c33876c79aff585dbee6414d9982cce8ee5df05ed2a681eaf40b4d656e177feb4dcff4782663119ede72c4f4907aca2b9f
 DIST libunwind-6.0.1.src.tar.xz 77036 BLAKE2B 
b6c293285896c8ff1f64bb56eee5a88b102b7ed9902d46436ee3cb79f204f230fd08a07d39c7fa9aeeddd093036f2bb9af38dd54268099ea9e51e12a71ff4adb
 SHA512 
78568c28720abdd1f8471c462421df9965e05e1db048689d16ac85378716c4080ec1723af78e9f61d133b0ff82ac8c1f0dde7fd42d194485f62c1a17c02db37f
 DIST libunwind-7.0.1.src.tar.xz 79784 BLAKE2B 
c426ef661d1c5ba8abfdb7c155b44d8c9301e2254031cff9fcb0634f61d7374779095be3118c0a29c69e60c63a32405334242413625ece8c5c9130d58bedd865
 SHA512 
e6203e77691c7039496da09e55d27a994a0e273ab0ef10df2f0b9345fead11d855413342a7ccc7b641c3f06053210a8822ba39e9f5b8624384bf1fa456deb969
 DIST libunwind-8.0.0.src.tar.xz 86484 BLAKE2B 
74f52fbda056b98cb8a2af652270dc4404177be4fd24a3d030f43e908ef912b875f6471819d364d2ee00c6edbec78d25647f023830c6ddc1c032added1059582
 SHA512 
8c10e986b4123b6db9f010f053d9c67786fd739d0990146c481f7eaf69ae44fdbcb99dfad9b240b369c3f93be05dfeaf0bd977685360be94e2872ddb04019380
-DIST libunwind-8.0.0rc5.src.tar.xz 86516 BLAKE2B 
0ac17d2ae1dd79f8b8bd5ee746d31a864ece20538bc283d8cb75be7ed40ddecb03e4b7c7ecd0214e34e85a299b925f374a07c0218b7c8c7df30db79c2dd8bac6
 SHA512 
994cc5db4d250cadb2b8e71842f4d1c937fbb102b71980054b641bbedf64b7867ac9f380ed0ca2b557b9c5ab2cd2d911398d4b8545bfefd5cd3d250ced9bd170

diff --git a/sys-libs/llvm-libunwind/llvm-libunwind-8.0.0_rc5.ebuild 
b/sys-libs/llvm-libunwind/llvm-libunwind-8.0.0_rc5.ebuild
deleted file mode 100644
index 6948d378b79..000
--- a/sys-libs/llvm-libunwind/llvm-libunwind-8.0.0_rc5.ebuild
+++ /dev/null
@@ -1,143 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-: ${CMAKE_MAKEFILE_GENERATOR:=ninja}
-# 

[gentoo-commits] repo/gentoo:master commit in: sys-libs/compiler-rt-sanitizers/

2019-03-20 Thread Michał Górny
commit: 323115c0c00255a670bcaf9ec5b7a3dc71ebb029
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 20 14:17:07 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 20 15:01:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=323115c0

sys-libs/compiler-rt-sanitizers: Remove 8.0.0rc5

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

 sys-libs/compiler-rt-sanitizers/Manifest   |   2 -
 .../compiler-rt-sanitizers-8.0.0_rc5.ebuild| 171 -
 2 files changed, 173 deletions(-)

diff --git a/sys-libs/compiler-rt-sanitizers/Manifest 
b/sys-libs/compiler-rt-sanitizers/Manifest
index a60927fa5e9..a261d982004 100644
--- a/sys-libs/compiler-rt-sanitizers/Manifest
+++ b/sys-libs/compiler-rt-sanitizers/Manifest
@@ -3,7 +3,6 @@ DIST compiler-rt-5.0.2.src.tar.xz 1543256 BLAKE2B 
09fa84b8f3e9b8627a14387bc6eaa3
 DIST compiler-rt-6.0.1.src.tar.xz 1686820 BLAKE2B 
59fa3f6e478bd4d6dfa056c85dcdc4349cbce7cea7fc56519feddc9d66c88c9ca48bad7967432ceb81d754213577f12707035afd827cf630a58627575b73b798
 SHA512 
69850c1ad92c66977fa217cbfb42a6a3f502fbe3d1a08daa7fc4cfeb617a7736d231f8ad8d93b10b1ae29bd753315d2a2d70f9ff1f4d18a9a7cc81758d91f963
 DIST compiler-rt-7.0.1.src.tar.xz 1864520 BLAKE2B 
14f72aad4379387f4212fb5efef3456cb5e8a03c7a91f98de2368e9b5ff2d02aeaed05da4fba6978b9e4e8698eb34c9c0c4c2df8d43b8c11e8e9d65079c7fa41
 SHA512 
b94a2a1fb9a6d587cef59b04b951628747bb35bdbcb67de8825aad402a2ba875916a347eef7a9575ac27264e8372e2d67cd477fe2d750c0ed3ce7d67bbbc7dba
 DIST compiler-rt-8.0.0.src.tar.xz 1903020 BLAKE2B 
dc42c4772132fee5e225bb94805cd6917214c1d830b8ba4f1c774e6e1726ec7846432d1d6881085676b6d094ec04060ec2a95749eb7d93be79268ee7de1bd828
 SHA512 
fe9f69fe2269fa3d560ae97fdacd462f855fb0b7a5f647f5b8595206ff7febca6496725adc953de411a827c761e2b3ca11a2149f25707d6c62af0722b68ba913
-DIST compiler-rt-8.0.0rc5.src.tar.xz 1902880 BLAKE2B 
ef8a3eeb58845032f332cc3e0eed4ca33166450ef0ebf21d00fa6f0068ff61a3af54bddb696c9ab507c909baa5bf53ad1bc218ca5a3a354a021315fd6ad1b6b5
 SHA512 
6d7e520e2b16e097b35fcfce1637160ce8b3a174ef79b7c56e4fae466aef9dafc45f577de590426637f9950bbb2f0c18213cea90e566b05f4f6251e4e5de0dca
 DIST compiler-rt-sanitizers-4.0.1-patchset.tar.xz 2384 BLAKE2B 
6f9eee711c83570767f0bb634d0f91c18ee7f2af93a478938b8d5b6ce6f2c2fbaadb7bd5c7ee94a14dc1834359a046187db6bc7005b7c2efa539325dc0701ad9
 SHA512 
72d7357b4c27bbf8fa8b34803ddea905a9f1054e8fc7bf99a4ead9dc00408989ea2709f04be9cf45a27eeb4b9386c89feeb25b53a84f3cac9739196b89813887
 DIST compiler-rt-sanitizers-6.0.1-patchset.tar.xz 8820 BLAKE2B 
d53ca357e060d058c7f20c51e74684f4c032fdf3ccec4c9f227dc7a5757206f331b9eda25a72c5c66faf4c44b2cc63eb439bd21bdd55d37a93918ab428fd7cd4
 SHA512 
782a34c56134bd061da30c1f598ddb9e90cb34a4e4ef058fa9634f6da372fd8693ff5e6cf98b59700942273240f83052b89ee2736b22f4e19bc8b519fbec8cad
 DIST llvm-4.0.1.src.tar.xz 21065652 BLAKE2B 
6327eed2d1feb108440f22d2581d1ff86c10a10c29793538d8d899c7e2dc83d3f7b147d3fd4bcce2bd2bf57c071b08c624aeafe40a3e7a3914506e7751727e6c
 SHA512 
16adc39b34ddb628f81b171119a8e2a0e9138b25011e803ef0b688e2fbea116fc4953d3a1b61b90a98a75e33619f81566b7cb06a9a2ea4d04ac5e0eb303a2d1d
@@ -11,4 +10,3 @@ DIST llvm-5.0.2.src.tar.xz 23451868 BLAKE2B 
b7082be2e4ad557b29b9f6869811f262adcf
 DIST llvm-6.0.1.src.tar.xz 25306628 BLAKE2B 
60232d4d22f8096b565cc8d81fea0639f24f14e8fc4f66ade69fa15479181f07f655f26dff3fa24bf105762b495da316c5c9352db234bd0af6b9c3fff6d4d881
 SHA512 
cbbb00eb99cfeb4aff623ee1a5ba075e7b5a76fc00c5f9f539ff28c108598f5708a0369d5bd92683def5a20c2fe60cab7827b42d628dbfcc79b57e0e91b84dd9
 DIST llvm-7.0.1.src.tar.xz 28311056 BLAKE2B 
737aa6144a415e41a4ff2c8bd5a727d6f14d7b1810c62cbefa5a25fe642c98cddf8a28e35c7e9783373aa3b96f5c0943229e229ad1b43e56e9ed6db0f27ab128
 SHA512 
ac43a3cb71a53deb55e3693653847cf20bf6f5d9056f224e6956c96d63bc59ebee9404f088eec9cabe65337b4607a905ef931354b373cf64e0004c6905a6b5df
 DIST llvm-8.0.0.src.tar.xz 30503732 BLAKE2B 
d89bdeb0ec7d885e49cfe5ae025da84f00502d409710c0807a3cdd58dbd47c50cf6a635593569483150f7f2ecb0de0310bd6785cb7625219bf9f6224a0d68e1c
 SHA512 
1602343b451b964f5d8c2d6b0654d89384c80d45883498c5f0e2f4196168dd4a1ed2a4dadb752076020243df42ffe46cb31d82ffc145d8e5874163cbb9686a1f
-DIST llvm-8.0.0rc5.src.tar.xz 30507432 BLAKE2B 
3f20c3dc270439a32fe23e403ca5190e624f329a10d424d15475d32d89725b021f12af19845928da41be4b83afd254df1f6d27f235b0d2ab81ff76d9e588250f
 SHA512 
b015bab2f0b0644d9fab295dee5d3b2a4d4d7c9d5870a06d7829f43d61e92aeb31b28d4c074f6a20ad803dde06399ef3298c951f1580b010f4b756f75bb4453b

diff --git 
a/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-8.0.0_rc5.ebuild 
b/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-8.0.0_rc5.ebuild
deleted file mode 100644
index d1c8f9787e0..000
--- a/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-8.0.0_rc5.ebuild
+++ /dev/null
@@ -1,171 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-: ${CMAKE_MAKEFILE_GENERATOR:=ninja}
-# (needed due 

[gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/

2019-03-20 Thread Craig Andrews
commit: f8b26eb06c84b49e3aa40a0f37921ae779c7cbf8
Author: Craig Andrews  gentoo  org>
AuthorDate: Tue Mar 19 18:38:48 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Wed Mar 20 15:29:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8b26eb0

sys-block/zram-init: 8.1 version bump, EAPI=7

Closes: https://bugs.gentoo.org/663898
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Craig Andrews  gentoo.org>

 sys-block/zram-init/Manifest |  1 +
 sys-block/zram-init/zram-init-8.1.ebuild | 54 
 2 files changed, 55 insertions(+)

diff --git a/sys-block/zram-init/Manifest b/sys-block/zram-init/Manifest
index 8ddf1cc1b00..7eacb8ce0fd 100644
--- a/sys-block/zram-init/Manifest
+++ b/sys-block/zram-init/Manifest
@@ -1,2 +1,3 @@
 DIST zram-init-3.8.tar.gz 6619 BLAKE2B 
c22482a619e5b0137c2d3eb45babee82ff36778a32caaed959beaf6ed3683e0010ef42328f8c4db7956696ca9c6a80c9e676c9db7d533f7283832036203beb34
 SHA512 
c083f34bba6031f8e247f61a1451343e14cc4bc5c4731ad3a32a5f0eea265936a83b27ad0e3cbd2ba0e05e2bec1e6ae739b6e4149d120dafbcc057437188f07f
 DIST zram-init-7.1.tar.gz 9054 BLAKE2B 
70c1aee839db3c4599fa59a0ecda7bb7a905a18cbbd90872865f266364da0602bd6ada85c35d7da5f8e6f4c6f9da122abf01abd57080a0728d4314fc2ed03c0d
 SHA512 
6a9a6568d1c439f941401cb5638645a034a3cb29aaafa0d7595ad19fe7c50296e72c6751393eaa5cd8877b0d2bd0376339fb0f596c9517f9b17d425cc9c5ed53
+DIST zram-init-8.1.tar.gz 9177 BLAKE2B 
229a469aeeb0b22b80f48d946d4ff746c7bd5d7b58ea9290db0da011df6d618c7c55ad95810b0be74ff81350182057d9067e834ecba688eb4ffa668521468a8b
 SHA512 
8f688accb7a4231f705f694c4b4e7344bbb338b2b1f09a6dacd900020a4e8583105b25fef5b40f39630db88db6fcc8ec79824945ceaee95ea1279d09d081a994

diff --git a/sys-block/zram-init/zram-init-8.1.ebuild 
b/sys-block/zram-init/zram-init-8.1.ebuild
new file mode 100644
index 000..2b9aa4db74d
--- /dev/null
+++ b/sys-block/zram-init/zram-init-8.1.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit readme.gentoo-r1 systemd
+
+DESCRIPTION="Scripts to support compressed swap devices or ramdisks with zram"
+HOMEPAGE="https://github.com/vaeth/zram-init/;
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+if [[ ${PV} == * ]] ; then
+   EGIT_REPO_URI="https://github.com/vaeth/${PN}.git;
+   inherit git-r3
+else
+   SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
+fi
+
+RDEPEND=">=app-shells/push-2.0
+   !

[gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/

2019-03-20 Thread Craig Andrews
commit: b470a79e58cb2b630812ab8635dc7864d14b7b1a
Author: Craig Andrews  gentoo  org>
AuthorDate: Tue Mar 19 18:39:34 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Wed Mar 20 15:29:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b470a79e

sys-block/zram-init: - live version

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

 sys-block/zram-init/zram-init-.ebuild | 54 +++
 1 file changed, 54 insertions(+)

diff --git a/sys-block/zram-init/zram-init-.ebuild 
b/sys-block/zram-init/zram-init-.ebuild
new file mode 100644
index 000..2b9aa4db74d
--- /dev/null
+++ b/sys-block/zram-init/zram-init-.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit readme.gentoo-r1 systemd
+
+DESCRIPTION="Scripts to support compressed swap devices or ramdisks with zram"
+HOMEPAGE="https://github.com/vaeth/zram-init/;
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+if [[ ${PV} == * ]] ; then
+   EGIT_REPO_URI="https://github.com/vaeth/${PN}.git;
+   inherit git-r3
+else
+   SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
+fi
+
+RDEPEND=">=app-shells/push-2.0
+   !

[gentoo-commits] repo/proj/prefix:master commit in: scripts/

2019-03-20 Thread Fabian Groffen
commit: cf3891762523e572ab3572b7d1eef747ca4d8a60
Author: Fabian Groffen  gentoo  org>
AuthorDate: Wed Mar 20 08:49:20 2019 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Wed Mar 20 08:49:20 2019 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=cf389176

scripts/bootstrap-prefix: bump snapshot

the previous 13 revert was basically reverting the availability of
gcc-8.3 and libressl

Signed-off-by: Fabian Groffen  gentoo.org>

 scripts/bootstrap-prefix.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
index 35e54ddc87..c8a0ae627e 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -546,7 +546,7 @@ do_tree() {
 bootstrap_tree() {
# RAP uses the latest gentoo main repo snapshot to bootstrap.
is-rap && LATEST_TREE_YES=1
-   local PV="20190312"
+   local PV="20190319"
if [[ -n ${LATEST_TREE_YES} ]]; then
do_tree "${SNAPSHOT_URL}" portage-latest.tar.bz2
else



[gentoo-commits] repo/proj/prefix:master commit in: scripts/

2019-03-20 Thread Fabian Groffen
commit: 805094aa7d8756bd7d6a390760b20cabb4d530e8
Author: Fabian Groffen  gentoo  org>
AuthorDate: Wed Mar 20 08:50:32 2019 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Wed Mar 20 08:50:32 2019 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=805094aa

scripts/bootstrap-prefix: try bootstrapping zlib-1.2.11

The latest version of zlib is installed later, so if we can download
just one version, that would be great.

Signed-off-by: Fabian Groffen  gentoo.org>

 scripts/bootstrap-prefix.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
index c8a0ae627e..e57e932d0b 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -1116,6 +1116,7 @@ bootstrap_zlib_core() {
 }
 
 bootstrap_zlib() {
+   bootstrap_zlib_core 1.2.11 || \
bootstrap_zlib_core 1.2.8 || bootstrap_zlib_core 1.2.7 || \
bootstrap_zlib_core 1.2.6 || bootstrap_zlib_core 1.2.5
 }



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

2019-03-20 Thread Lars Wendler
commit: c6be48f5d87afbd1b733ce6bcfb12718331d69bb
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Mar 20 11:01:35 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Mar 20 11:01:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6be48f5

app-admin/keepassxc: Synced live ebuild

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

 app-admin/keepassxc/keepassxc-.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/app-admin/keepassxc/keepassxc-.ebuild 
b/app-admin/keepassxc/keepassxc-.ebuild
index b59c1684db7..c561fc73f88 100644
--- a/app-admin/keepassxc/keepassxc-.ebuild
+++ b/app-admin/keepassxc/keepassxc-.ebuild
@@ -70,12 +70,11 @@ src_configure() {
-DWITH_TESTS="$(usex test)"
-DWITH_XC_AUTOTYPE="$(usex autotype)"
-DWITH_XC_BROWSER="$(usex browser)"
-   -DWITH_XC_HTTP=OFF
-DWITH_XC_NETWORKING="$(usex network)"
-DWITH_XC_SSHAGENT=ON
-DWITH_XC_YUBIKEY="$(usex yubikey)"
)
-   if [[ "${PV}" == *_beta* ]] ; then
+   if [[ "${PV}" !=  ]] ; then
mycmakeargs+=( -DOVERRIDE_VERSION="${PV/_/-}" )
fi
cmake-utils_src_configure



[gentoo-commits] repo/gentoo:master commit in: app-admin/keepassxc/, app-admin/keepassxc/files/

2019-03-20 Thread Lars Wendler
commit: 0012625aa824c6f970d272b2fb6b67c282d2257b
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Mar 20 11:00:39 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Mar 20 11:01:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0012625a

app-admin/keepassxc: Bump to version 2.4.0. Removed old.

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

 app-admin/keepassxc/Manifest   |  2 +-
 .../files/keepassxc-2.4.0-build_fix.patch  | 38 ++
 ...c-2.4.0_beta2.ebuild => keepassxc-2.4.0.ebuild} |  8 ++---
 3 files changed, 43 insertions(+), 5 deletions(-)

diff --git a/app-admin/keepassxc/Manifest b/app-admin/keepassxc/Manifest
index a434365f41e..3cc0130cc13 100644
--- a/app-admin/keepassxc/Manifest
+++ b/app-admin/keepassxc/Manifest
@@ -1,2 +1,2 @@
 DIST keepassxc-2.3.4-src.tar.xz 4137176 BLAKE2B 
bbf8dbef5fb365f3c0d9332454b2b3bce7d4e411f43939ae683428ca669a459f1662bb8b1a1da228bc9447ee15349a5cd558e4fdfcc5194f22401f56003fd0f0
 SHA512 
edca22ef9d7c553d21d8ea6115a5635265176acc56fdf055f1961a3e65046de49ed5b67eb68ecf4f925226fb5bca140d5d473a5082301168f6a8bb7979f562a8
-DIST keepassxc-2.4.0_beta2.tar.gz 4740311 BLAKE2B 
071edbf9d985671d70c381bd4863a704af6ad172a22fcf23ee0e12c8ea2a723029626669ed37e2e2739e3a66106b00b4c73cdbaa8e43496d950363422d6df8cc
 SHA512 
5db8eb11a6aa42632bf2642af121063cb0df32fa1cda1beaea7c18e07c65049d3fa9a1a76643bd97ded80b7e5b2d403e9cd414c808faffdf2cb7e75c7f0578b1
+DIST keepassxc-2.4.0.tar.gz 4790634 BLAKE2B 
5298baf80c48f27da16274f815dc6d83031586e3fec20356569c4d7eb652ed68f22b849595c837e736b7b3adb7636bf1f50c89626a093eecf236e3a94d89f33b
 SHA512 
a50e90389bb53ffca28d322958c01db09472bf5e3d21075ab09db7cc1ed2e8aa0ac9ff310d79c06da4f429aef0427e3706931ce5d4d02b54a52b0209ba5ab853

diff --git a/app-admin/keepassxc/files/keepassxc-2.4.0-build_fix.patch 
b/app-admin/keepassxc/files/keepassxc-2.4.0-build_fix.patch
new file mode 100644
index 000..486c8e2dd9a
--- /dev/null
+++ b/app-admin/keepassxc/files/keepassxc-2.4.0-build_fix.patch
@@ -0,0 +1,38 @@
+From ff43f3ff8a8a1630d10e7117c45048623d215616 Mon Sep 17 00:00:00 2001
+From: Lars Wendler 
+Date: Wed, 20 Mar 2019 11:53:21 +0100
+Subject: [PATCH] src/gui/DatabaseWidget.cpp: Build fails without
+ WITH_XC_KEESHARE
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+/var/tmp/portage/app-admin/keepassxc-2.4.0/work/keepassxc-2.4.0/src/gui/DatabaseWidget.cpp:
 In member function ‘void DatabaseWidget::search(const QString&)’:
+/var/tmp/portage/app-admin/keepassxc-2.4.0/work/keepassxc-2.4.0/src/gui/DatabaseWidget.cpp:1115:5:
 error: ‘m_shareLabel’ was not declared in this scope
+ m_shareLabel->setVisible(false);
+ ^~~~
+/var/tmp/portage/app-admin/keepassxc-2.4.0/work/keepassxc-2.4.0/src/gui/DatabaseWidget.cpp:1115:5:
 note: suggested alternative: ‘m_searchingLabel’
+ m_shareLabel->setVisible(false);
+ ^~~~
+ m_searchingLabel
+---
+ src/gui/DatabaseWidget.cpp | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/src/gui/DatabaseWidget.cpp b/src/gui/DatabaseWidget.cpp
+index 8728c331..e4196734 100644
+--- a/src/gui/DatabaseWidget.cpp
 b/src/gui/DatabaseWidget.cpp
+@@ -1112,7 +1112,9 @@ void DatabaseWidget::search(const QString& searchtext)
+ }
+ 
+ m_searchingLabel->setVisible(true);
++#ifdef WITH_XC_KEESHARE
+ m_shareLabel->setVisible(false);
++#endif
+ 
+ emit searchModeActivated();
+ }
+-- 
+2.21.0
+

diff --git a/app-admin/keepassxc/keepassxc-2.4.0_beta2.ebuild 
b/app-admin/keepassxc/keepassxc-2.4.0.ebuild
similarity index 87%
rename from app-admin/keepassxc/keepassxc-2.4.0_beta2.ebuild
rename to app-admin/keepassxc/keepassxc-2.4.0.ebuild
index 4d05c7804c8..7329f7db6fb 100644
--- a/app-admin/keepassxc/keepassxc-2.4.0_beta2.ebuild
+++ b/app-admin/keepassxc/keepassxc-2.4.0.ebuild
@@ -13,8 +13,8 @@ if [[ "${PV}" !=  ]] ; then

SRC_URI="https://github.com/keepassxreboot/keepassxc/archive/${PV/_/-}.tar.gz 
-> ${P}.tar.gz"
S="${WORKDIR}/${P/_/-}"
else
-   
#SRC_URI="https://github.com/keepassxreboot/keepassxc/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   
SRC_URI="https://github.com/keepassxreboot/keepassxc/releases/download/${PV}/${P}-src.tar.xz;
+   
SRC_URI="https://github.com/keepassxreboot/keepassxc/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   
#SRC_URI="https://github.com/keepassxreboot/keepassxc/releases/download/${PV}/${P}-src.tar.xz;
KEYWORDS="~amd64 ~x86"
fi
 else
@@ -59,6 +59,7 @@ PDEPEND="
 
 PATCHES=(
"${FILESDIR}/${PN}-dont_call_mandb.patch"
+   "${FILESDIR}/${P}-build_fix.patch"
 )
 
 src_prepare() {
@@ -74,12 +75,11 @@ src_configure() {
-DWITH_TESTS="$(usex test)"
-DWITH_XC_AUTOTYPE="$(usex autotype)"
-DWITH_XC_BROWSER="$(usex browser)"
- 

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

2019-03-20 Thread Mikle Kolyada
commit: 14121299c291fa7dc3a189a187520ecb7c5aaadb
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Mar 20 11:26:16 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Mar 20 11:26:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14121299

app-text/enchant: arm stable wrt bug #662484

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="arm"

 app-text/enchant/enchant-1.6.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/enchant/enchant-1.6.1-r1.ebuild 
b/app-text/enchant/enchant-1.6.1-r1.ebuild
index 068866bd3d8..0d2a19a27b5 100644
--- a/app-text/enchant/enchant-1.6.1-r1.ebuild
+++ b/app-text/enchant/enchant-1.6.1-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/AbiWord/enchant/releases/download/${PN}-${MY_PV}/${P
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~x86-solaris"
 
 IUSE="aspell +hunspell static-libs test"
 REQUIRED_USE="|| ( hunspell aspell )"



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

2019-03-20 Thread Mart Raudsepp
commit: bea47cee314829edbb41453d1e89fa1d1d3f9993
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Wed Mar 20 09:36:42 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Wed Mar 20 09:50:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bea47cee

profiles/desktop/gnome: globally enable elogind, disable consolekit

GNOME really desires a logind provider. Now that the core gnome desktop
supports elogind, we can default enable it in GNOME profile with a clean
gnome-base/gnome install path without systemd. For this we also need to
disable consolekit from desktop profile (until it's still enabled there),
as some packages block between USE=consolekit and USE=elogind.
profiles/desktop/gnome/systemd relies on the systemd profile now
use.masking USE=elogind globally (a change I made some days ago), and
enabling USE=systemd in its place, so should be no regressions there.

Because stable doesn't have a usable non-systemd GNOME setup anyways,
desktop/gnome profile wasn't out of the box usable, thus we don't
need to concern ourselves for stable users here and get the profile
working for ~arch users -- before this everyone using gnome should
have been using desktop/gnome/systemd instead anyway.

Bug: https://bugs.gentoo.org/599470
Signed-off-by: Mart Raudsepp  gentoo.org>

 profiles/targets/desktop/gnome/make.defaults | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/profiles/targets/desktop/gnome/make.defaults 
b/profiles/targets/desktop/gnome/make.defaults
index 09b365139a7..e32bb8b830e 100644
--- a/profiles/targets/desktop/gnome/make.defaults
+++ b/profiles/targets/desktop/gnome/make.defaults
@@ -1,4 +1,4 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-USE="colord eds evo gnome gnome-keyring gnome-online-accounts gstreamer 
introspection libsecret nautilus networkmanager pulseaudio tracker"
+USE="colord -consolekit eds elogind evo gnome gnome-keyring 
gnome-online-accounts gstreamer introspection libsecret nautilus networkmanager 
pulseaudio tracker"



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

2019-03-20 Thread Mart Raudsepp
commit: 672b3243cd44d1bbae47f46585232346344bf935
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Wed Mar 20 09:35:13 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Wed Mar 20 09:50:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=672b3243

desktop/gnome/package.use: Update some USE tweaks descriptions

Signed-off-by: Mart Raudsepp  gentoo.org>

 profiles/targets/desktop/gnome/package.use | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/profiles/targets/desktop/gnome/package.use 
b/profiles/targets/desktop/gnome/package.use
index 6ad77917460..28a4c157482 100644
--- a/profiles/targets/desktop/gnome/package.use
+++ b/profiles/targets/desktop/gnome/package.use
@@ -1,11 +1,13 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-# Needed by mutter defaults, bug #547300
+# Needed by a global USE=wayland right now; some REQUIRED_USE may be outdated 
and need review
+>=media-libs/cogl-1.18.2-r1 gles2
 >=media-libs/clutter-1.20 egl
 media-libs/cogl kms
+
+# Needed by mutter defaults and USE=wayland, bug #547300
 >=media-libs/mesa-10.3 gbm gles2
->=media-libs/cogl-1.18.2-r1 gles2
 
 # For eautoreconf in =app-crypt/seahorse-3.10.2-r1
 app-crypt/gcr vala



[gentoo-commits] repo/gentoo:master commit in: dev-db/postgresql/

2019-03-20 Thread Mikle Kolyada
commit: d7ae08bb767586a45b45dd9f1cdc8a3561f2e9d4
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Mar 20 11:13:47 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Mar 20 11:13:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7ae08bb

dev-db/postgresql: amd64 stable wrt bug #680840

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 dev-db/postgresql/postgresql-10.7.ebuild   | 2 +-
 dev-db/postgresql/postgresql-11.2.ebuild   | 2 +-
 dev-db/postgresql/postgresql-9.4.21.ebuild | 2 +-
 dev-db/postgresql/postgresql-9.5.16.ebuild | 2 +-
 dev-db/postgresql/postgresql-9.6.12.ebuild | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dev-db/postgresql/postgresql-10.7.ebuild 
b/dev-db/postgresql/postgresql-10.7.ebuild
index d7f89ecea03..c68fd78b0b6 100644
--- a/dev-db/postgresql/postgresql-10.7.ebuild
+++ b/dev-db/postgresql/postgresql-10.7.ebuild
@@ -11,7 +11,7 @@ PLOCALES="af cs de en es fa fr hr hu it ko nb pl pt_BR ro ru 
sk sl sv tr zh_CN
 inherit flag-o-matic l10n linux-info multilib pam prefix python-single-r1 \
systemd user versionator
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc ~x86 ~amd64-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc ~x86 ~amd64-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris"
 
 SLOT=$(get_major_version)
 

diff --git a/dev-db/postgresql/postgresql-11.2.ebuild 
b/dev-db/postgresql/postgresql-11.2.ebuild
index ef7584eee93..d3f0ef2c897 100644
--- a/dev-db/postgresql/postgresql-11.2.ebuild
+++ b/dev-db/postgresql/postgresql-11.2.ebuild
@@ -11,7 +11,7 @@ PLOCALES="af cs de en es fa fr hr hu it ko nb pl pt_BR ro ru 
sk sl sv tr zh_CN
 inherit flag-o-matic l10n linux-info multilib pam prefix python-single-r1 \
systemd user versionator
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 SLOT=$(get_major_version)
 

diff --git a/dev-db/postgresql/postgresql-9.4.21.ebuild 
b/dev-db/postgresql/postgresql-9.4.21.ebuild
index 57d8c6f72ab..f71a25b9209 100644
--- a/dev-db/postgresql/postgresql-9.4.21.ebuild
+++ b/dev-db/postgresql/postgresql-9.4.21.ebuild
@@ -11,7 +11,7 @@ PLOCALES="af cs de en es fa fr hr hu it ko nb pl pt_BR ro ru 
sk sl sv tr zh_CN
 inherit flag-o-matic l10n linux-info multilib pam prefix python-single-r1 \
systemd user versionator
 
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc ~x86 
~amd64-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris"
 
 SLOT="$(get_version_component_range 1-2)"
 

diff --git a/dev-db/postgresql/postgresql-9.5.16.ebuild 
b/dev-db/postgresql/postgresql-9.5.16.ebuild
index 5cf5acc2612..4ad298ab815 100644
--- a/dev-db/postgresql/postgresql-9.5.16.ebuild
+++ b/dev-db/postgresql/postgresql-9.5.16.ebuild
@@ -11,7 +11,7 @@ PLOCALES="af cs de en es fa fr hr hu it ko nb pl pt_BR ro ru 
sk sl sv tr zh_CN
 inherit flag-o-matic l10n linux-info multilib pam prefix python-single-r1 \
systemd user versionator
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc ~x86 ~amd64-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc ~x86 ~amd64-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris"
 
 SLOT="$(get_version_component_range 1-2)"
 

diff --git a/dev-db/postgresql/postgresql-9.6.12.ebuild 
b/dev-db/postgresql/postgresql-9.6.12.ebuild
index 5dbebe4e310..9049723237e 100644
--- a/dev-db/postgresql/postgresql-9.6.12.ebuild
+++ b/dev-db/postgresql/postgresql-9.6.12.ebuild
@@ -11,7 +11,7 @@ PLOCALES="af cs de en es fa fr hr hu it ko nb pl pt_BR ro ru 
sk sl sv tr zh_CN
 inherit flag-o-matic l10n linux-info multilib pam prefix python-single-r1 \
systemd user versionator
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 SLOT="$(get_version_component_range 1-2)"
 



[gentoo-commits] repo/gentoo:master commit in: sci-visualization/gnuplot/

2019-03-20 Thread Mikle Kolyada
commit: d314f401026d348a2c93d991cebb8b05a5f14a2d
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Mar 20 11:19:10 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Mar 20 11:19:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d314f401

sci-visualization/gnuplot: arm stable wrt bug #677424

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="arm"

 sci-visualization/gnuplot/gnuplot-5.2.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-visualization/gnuplot/gnuplot-5.2.5.ebuild 
b/sci-visualization/gnuplot/gnuplot-5.2.5.ebuild
index 642f4df3e1e..f23362f1210 100644
--- a/sci-visualization/gnuplot/gnuplot-5.2.5.ebuild
+++ b/sci-visualization/gnuplot/gnuplot-5.2.5.ebuild
@@ -17,7 +17,7 @@ if [[ -z ${PV%%*} ]]; then
 else
MY_P="${P/_/.}"
SRC_URI="mirror://sourceforge/gnuplot/${MY_P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ppc ppc64 ~s390 ~sparc 
~x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ppc ppc64 ~s390 ~sparc 
~x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 fi
 
 LICENSE="gnuplot bitmap? ( free-noncomm )"



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

2019-03-20 Thread Mikle Kolyada
commit: 1fcf8f806972c0c91081214682d1c86ebc675369
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Mar 20 11:18:29 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Mar 20 11:18:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fcf8f80

dev-libs/leveldb: arm stable wrt bug #676254

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="arm"

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

diff --git a/dev-libs/leveldb/leveldb-1.20.ebuild 
b/dev-libs/leveldb/leveldb-1.20.ebuild
index 4061d64896e..fa326715485 100644
--- a/dev-libs/leveldb/leveldb-1.20.ebuild
+++ b/dev-libs/leveldb/leveldb-1.20.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/google/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 LICENSE="BSD"
 # https://github.com/google/leveldb/issues/536
 SLOT="0/1"
-KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 x86 ~amd64-fbsd ~amd64-linux 
~x86-linux"
+KEYWORDS="amd64 arm ~arm64 ~mips ~ppc ~ppc64 x86 ~amd64-fbsd ~amd64-linux 
~x86-linux"
 IUSE="+snappy static-libs kernel_FreeBSD +tcmalloc test"
 
 DEPEND="tcmalloc? ( dev-util/google-perftools )



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

2019-03-20 Thread Mikle Kolyada
commit: 527082957524cf96a19ff57a82650262e9cac20e
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Mar 20 11:23:39 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Mar 20 11:23:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52708295

media-gfx/libimagequant: arm stable wrt bug #679956

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="arm"

 media-gfx/libimagequant/libimagequant-2.12.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/libimagequant/libimagequant-2.12.2.ebuild 
b/media-gfx/libimagequant/libimagequant-2.12.2.ebuild
index 51cfc32c733..9bb6ee7ea6d 100644
--- a/media-gfx/libimagequant/libimagequant-2.12.2.ebuild
+++ b/media-gfx/libimagequant/libimagequant-2.12.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/ImageOptim/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="GPL-3"
 SLOT="0/0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
 IUSE="cpu_flags_x86_sse2 debug openmp static-libs"
 
 DEPEND=""



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

2019-03-20 Thread Mikle Kolyada
commit: 61170c5a57c7b29512217e5850a5c76d6346b95f
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Mar 20 11:23:37 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Mar 20 11:23:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61170c5a

dev-python/olefile: arm stable wrt bug #679956

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="arm"

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

diff --git a/dev-python/olefile/olefile-0.46.ebuild 
b/dev-python/olefile/olefile-0.46.ebuild
index 7fc749c528b..89ae6eb3a36 100644
--- a/dev-python/olefile/olefile-0.46.ebuild
+++ b/dev-python/olefile/olefile-0.46.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/decalage2/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
 IUSE="doc"
 
 RDEPEND=""



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

2019-03-20 Thread Mikle Kolyada
commit: ab01409bcfe4e182d7be8572385efe111048f293
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Mar 20 11:23:35 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Mar 20 11:23:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab01409b

dev-python/pillow: arm stable wrt bug #679956

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="arm"

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

diff --git a/dev-python/pillow/pillow-5.4.1.ebuild 
b/dev-python/pillow/pillow-5.4.1.ebuild
index 98e0b493012..3131038e070 100644
--- a/dev-python/pillow/pillow-5.4.1.ebuild
+++ b/dev-python/pillow/pillow-5.4.1.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="https://github.com/python-pillow/Pillow/archive/${PV}.tar.gz -> ${P}.ta
 
 LICENSE="HPND"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux"
 IUSE="doc examples imagequant jpeg jpeg2k lcms test tiff tk truetype webp zlib"
 
 REQUIRED_USE="test? ( jpeg tiff )"



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

2019-03-20 Thread Lars Wendler
commit: 4a4839e5bbbc7ad761008b2abcc848017cfedf20
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Mar 20 08:57:08 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Mar 20 08:57:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a4839e5

desktop/package.use: Enable "client" USE flag for net-fs/samba

Signed-off-by: Lars Wendler  gentoo.org>

 profiles/targets/desktop/package.use | 4 
 1 file changed, 4 insertions(+)

diff --git a/profiles/targets/desktop/package.use 
b/profiles/targets/desktop/package.use
index 4b1b1a923c3..18f4dbc4b29 100644
--- a/profiles/targets/desktop/package.use
+++ b/profiles/targets/desktop/package.use
@@ -1,6 +1,10 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+# Lars Wendler  (20 Mar 2019)
+# Enable client by default. Usually desktop users need the client.
+net-fs/samba client
+
 # Andreas Sturmlechner  (09 Jun 2018)
 # Required by app-office/libreoffice
 dev-libs/xmlsec nss



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

2019-03-20 Thread Lars Wendler
commit: 7485a4b9c59cd616690498b4af2b761662d57039
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Mar 20 10:16:08 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Mar 20 10:17:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7485a4b9

base/package.use.force: USE="-gnutls" is broken in >=samba-4.10.0_rc1

Bug: https://bugs.gentoo.org/675694
Signed-off-by: Lars Wendler  gentoo.org>

 profiles/base/package.use.force | 4 
 1 file changed, 4 insertions(+)

diff --git a/profiles/base/package.use.force b/profiles/base/package.use.force
index 0e523f3f583..834d98c7952 100644
--- a/profiles/base/package.use.force
+++ b/profiles/base/package.use.force
@@ -1,6 +1,10 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+# Lars Wendler  (20 Mar 2019)
+# USE="-gnutls" is broken (#675694)
+>=net-fs/samba-4.10.0_rc1 gnutls
+
 # Mart Raudsepp  (14 Dec 2018)
 # Security is not optional if available for the architecture/kernel.
 gnome-base/gnome-desktop seccomp



[gentoo-commits] repo/proj/prefix:master commit in: scripts/

2019-03-20 Thread Fabian Groffen
commit: db5a9643fd8b27a36179ab275f3cc9e2d2325089
Author: Fabian Groffen  gentoo  org>
AuthorDate: Wed Mar 20 10:34:42 2019 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Wed Mar 20 10:34:42 2019 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=db5a9643

scripts/bootstrap-prefix: try to bootstrap xz/bzip2 sooner

newer sources are often using xz over gzip, so try to get xz in such
that we can unpack (newer) xz sources.

Signed-off-by: Fabian Groffen  gentoo.org>

 scripts/bootstrap-prefix.sh | 27 +--
 1 file changed, 17 insertions(+), 10 deletions(-)

diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
index e57e932d0b..fd110da16c 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -707,7 +707,7 @@ bootstrap_gnu() {
 
einfo "Bootstrapping ${PN}"
 
-   for t in tar.gz tar.xz tar.bz2 tar ; do
+   for t in tar.xz tar.bz2 tar.gz tar ; do
A=${PN}-${PV}.${t}
 
# save the user some useless downloading
@@ -1126,6 +1126,7 @@ bootstrap_libffi() {
 }
 
 bootstrap_sed() {
+   bootstrap_gnu sed 4.5 || \
bootstrap_gnu sed 4.2.2 || bootstrap_gnu sed 4.2.1
 }
 
@@ -1141,16 +1142,17 @@ bootstrap_grep() {
# don't use 2.13, it contains a bug that bites, bug #425668
# 2.9 is the last version provided as tar.gz (platforms without xz)
# 2.7 is necessary for Solaris/OpenIndiana (2.8, 2.9 fail to configure)
+   bootstrap_gnu grep 3.3 || \
bootstrap_gnu grep 2.9 || bootstrap_gnu grep 2.7 || \
-   bootstrap_gnu grep 2.14 || bootstrap_gnu grep 2.12
+   bootstrap_gnu grep 2.14 || bootstrap_gnu grep 2.12
 }
 
 bootstrap_coreutils() {
# 8.16 is the last version released as tar.gz
# 8.18 is necessary for macOS High Sierra (darwin17) and converted
#  to tar.gz for this case
-   bootstrap_gnu coreutils 8.28 || bootstrap_gnu coreutils 8.16 || \
-   bootstrap_gnu coreutils 8.17
+   bootstrap_gnu coreutils 8.30 || bootstrap_gnu coreutils 8.28 || \
+   bootstrap_gnu coreutils 8.16 || bootstrap_gnu coreutils 8.17
 }
 
 bootstrap_tar() {
@@ -1210,6 +1212,7 @@ bootstrap_gzip() {
 }
 
 bootstrap_xz() {
+   GNU_URL=${XZ_URL:-http://tukaani.org} bootstrap_gnu xz 5.2.4 || \
GNU_URL=${XZ_URL:-http://tukaani.org} bootstrap_gnu xz 5.2.3
 }
 
@@ -1293,9 +1296,13 @@ bootstrap_stage1() {
# packages following (e.g. zlib builds 64-bits)
 
# don't rely on $MAKE, if make == gmake packages that call 'make' fail
-   [[ $(make --version 2>&1) == *GNU" Make "4* ]] || (bootstrap_make) || 
return 1
-   [[ ${OFFLINE_MODE} ]] || type -P wget > /dev/null || (bootstrap_wget) 
|| return 1
+   [[ $(make --version 2>&1) == *GNU" Make "4* ]] \
+   || (bootstrap_make) || return 1
+   [[ ${OFFLINE_MODE} ]] || type -P wget > /dev/null \
+   || (bootstrap_wget) || return 1
[[ $(sed --version 2>&1) == *GNU* ]] || (bootstrap_sed) || return 1
+   type -P xz > /dev/null || (bootstrap_xz) || return 1
+   type -P bzip2 > /dev/null || (bootstrap_bzip2) || return 1
[[ $(m4 --version 2>&1) == *GNU*1.4.1?* ]] || (bootstrap_m4) || return 1
[[ -x ${ROOT}/tmp/usr/bin/bison ]] \
|| [[ $(bison --version 2>&1) == *GNU" "Bison") "2.[3-7]* ]] \
@@ -1305,15 +1312,15 @@ bootstrap_stage1() {
|| (bootstrap_coreutils) || return 1
[[ $(find --version 2>&1) == *GNU* ]] || (bootstrap_findutils) || 
return 1
[[ $(tar --version 2>&1) == *GNU* ]] || (bootstrap_tar) || return 1
-   [[ $(patch --version 2>&1) == *"patch 2."[6-9]*GNU* ]] || 
(bootstrap_patch) || return 1
+   [[ $(patch --version 2>&1) == *"patch 2."[6-9]*GNU* ]] \
+   || (bootstrap_patch) || return 1
[[ $(grep --version 2>&1) == *GNU* ]] || (bootstrap_grep) || return 1
-   [[ $(awk --version < /dev/null 2>&1) == *GNU" Awk "[456789]* ]] || 
bootstrap_gawk || return 1
+   [[ $(awk --version < /dev/null 2>&1) == *GNU" Awk "[456789]* ]] \
+   || bootstrap_gawk || return 1
# always build our own bash, for we don't know what devilish thing
# we're working with now, bug #650284
[[ -x ${ROOT}/tmp/usr/bin/bash ]] \
|| (bootstrap_bash) || return 1
-   type -P bzip2 > /dev/null || (bootstrap_bzip2) || return 1
-   type -P xz > /dev/null || (bootstrap_xz) || return 1
# Some host tools need to be wrapped to be useful for us.
# We put them in tmp/usr/local/bin, to not accidentally
# be identified as stage1-installed like in bug #615410.



[gentoo-commits] repo/gentoo:master commit in: net-im/telegram-desktop-bin/

2019-03-20 Thread Mikle Kolyada
commit: 4e939ba4705b0e1fab7a2305312a93cc47e0364b
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Mar 20 11:03:50 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Mar 20 11:04:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e939ba4

net-im/telegram-desktop-bin: Version bump (v1.6.0)

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

 net-im/telegram-desktop-bin/Manifest   |  3 +
 .../telegram-desktop-bin-1.6.0.ebuild  | 65 ++
 2 files changed, 68 insertions(+)

diff --git a/net-im/telegram-desktop-bin/Manifest 
b/net-im/telegram-desktop-bin/Manifest
index 3b07a012d9b..5312467dfc4 100644
--- a/net-im/telegram-desktop-bin/Manifest
+++ b/net-im/telegram-desktop-bin/Manifest
@@ -1,9 +1,12 @@
 DIST tdesktop-1.5.11.tar.gz 14244290 BLAKE2B 
caa37c32e93cae338eea1704cce3a4e88ba39ee9383f8a919fde560cc3e1a494ac0569d50b76f873389c0939bf9016b2900b57116a67a7055576dc64f2dd1379
 SHA512 
45315a769acae28a767899461ffb5f2bea6deac66f1ffc5d908d6967e8ce81c4f6a3170468dedf607d9ba8c9bcb824d2c41ef214d6484aea344e396b53b37bcb
 DIST tdesktop-1.5.12.tar.gz 14252160 BLAKE2B 
5f903e7dd1d749b75fa67a8956932bcd08974395c80985c5347a422b93d2eca544d2b6082de0f87769f83ba18107dc837b28ee9c4dd5f266f5d88252e7d279f0
 SHA512 
66887ff86d8290c2e141cf6cf50d17e72704a433fb7b9e340414107eba9ebead9c93d754baa5eef3d28717b61e7633da982d3ba5a8a68711df229437fbb67414
 DIST tdesktop-1.5.15.tar.gz 14253170 BLAKE2B 
f1c6ce9617892f4b37c59b6d2070a9cb4bc88f8e954a2913243fa6e72abd69c18dc9a4dc68a5811f098e7b02f5eb099952aab6db58fbdaeb7fdae0f91472e762
 SHA512 
952fdafaa826dfe74af18b38344c1bd57bdaa09ae66ac6cb859ab1fa907d189c6f2fce7985b1842740437511b503bdde7e7d9bd0585ba84e93dda12b66f3af29
+DIST tdesktop-1.6.0.tar.gz 14301107 BLAKE2B 
e1871035eaaa8dca3c445332649b0854ced6923d5b40c40317a61523e3169dc408acdc45ac8fccceb367b6fbfdf70b46a64251cb47896542606fb08138e4c4f1
 SHA512 
b0a9236455a0a1194fa98ec062d2701a7d2ad700d481a488430d0e93f23b9fdb1c4bd106beb7c675be718da22e7fcaacf35ed77956ea16b458d8efc2d776cb7b
 DIST tsetup.1.5.11.tar.xz 32436872 BLAKE2B 
b1e871abd039c5decc866378fa1d250acdeb33d8fd083bb5d7c1f496242af7da038561f9a7fe78dbfb7dbe5a784e77f054164e08f3da1732cc4d1e966b74aab0
 SHA512 
0f07468223266e20cdeb8a5cb5c7cc2fc780961578d63c893c04899bfde0bb36e77d9d4153c76fc2ca61b7b340dcc5a8d715e236c1b5aa2041c852543a5640bb
 DIST tsetup.1.5.12.tar.xz 32461440 BLAKE2B 
10f1ff27bc4adbca2fb2f79b4f6208c48ef2ee6c03e8f8c2044645dc1b057a5be0b72272b37b8f28f36a0ab9fcffe9cf8b1d04b240ba3971c376d025a6e92c7b
 SHA512 
c73a0a6ec5c7872c1a38d68069dd83c2c319472e0605c745e4a56d2a280892198789f7a3dd6b0df7066b556f803d004a4090ea8ca2d212cb40abed20193a8230
 DIST tsetup.1.5.15.tar.xz 32450268 BLAKE2B 
486a6cdd2a3a15e197b8969820cd2dd0e318b9de63144c8182a1458338c77e55d4fff4e3c88ee5209adf4f840597e8f417bc77e7057c339e0e4668c5ec2d
 SHA512 
c8b8fec8c296c3dc1d8d7c9659b0cae7ce3aa5b5441d5d29faf155e4ab7b23dc4accaa059a3ed5e82ac1dd49903cabcabbfecf87b109c798870fdd33896d9917
+DIST tsetup.1.6.0.tar.xz 32866936 BLAKE2B 
ccd17f5d043ce17c75e82d8d5f45c62429e10ecd130853be7aa4740b0377637b843634babdec024efd515a83d9abeb78b6f558a6d5641cba4df72066ae25a364
 SHA512 
00e7459cc7b2e8fdcbd9b596aeaba2d1cd994277e2119602d3a9ce3f8611e2009a10a4bb72d3b340891149894fbecf7ddbcb640bd6e5ae1f8c8a920bb188d091
 DIST tsetup32.1.5.11.tar.xz 35221340 BLAKE2B 
9910d9de184553f4ebf6a32772fe1aee326fc82b532ae539495188b89971f7b5fa4992b0de4991340aa3f01b4fd3e8f09b2af71f74c4f5a6c9ec88271fe0783e
 SHA512 
835cd3a0a65d397d94b2355bfbf70c68c6867a3f08523bd07c834258e55ca8f52f06a1d3eaf4951df3c0f0277067ebf19ceb83a53372c54f50ac9f5078dbcac7
 DIST tsetup32.1.5.12.tar.xz 35261680 BLAKE2B 
488e8681173ab983f7f5dc037d328078cbfc8b995d9abcdf1351a38c73c18546888fabaa26b60b6530ee75231ee6bd2e0fcab9bb300aa5c74ab6bd7ad20faab7
 SHA512 
4710166f2c1840c41df299cb35e7ae2874d3bc1621d9ff293ba8dbcf59370e88f4542ebf9dfd9b551aaecd7539655443fdf43a6b1906758f5db1f61586ae3591
 DIST tsetup32.1.5.15.tar.xz 35264344 BLAKE2B 
ecc4ff8e27bd622e84ab24614d0ea1dc7c1437325baa0ed068c5e2be4e99c183a20140bb2cdcb7180d61b587c5aa61eb3ddf720fded2a9687a588ef39dc16f96
 SHA512 
77ce5e99bdf799b54946047c13536defb06f3c39b7e2b700a520955efdcd2e53a2fd990ca85cc9f64a6826743d7b4b2deccb7e084d4f59a1856edbabf3d2f0b8
+DIST tsetup32.1.6.0.tar.xz 35498312 BLAKE2B 
2240e5dd5d5121500394c36c0a600d8176f1ba41628cb67d456e54d6107fcef105265c5b1627f0d48da5dc1ec867cf89b6ebbdfc4544fadfa016e2f9fd342d87
 SHA512 
a7c4103fbf81205e1812009a6d3fbd45148ec5df547050a1f06c835a39af954b09efdb792c4f4f4fc00cbead69bc6ad2b49b3ac08ad7ea06fa38177d8a99f9bb

diff --git a/net-im/telegram-desktop-bin/telegram-desktop-bin-1.6.0.ebuild 
b/net-im/telegram-desktop-bin/telegram-desktop-bin-1.6.0.ebuild
new file mode 100644
index 000..10f3a4e22b7
--- /dev/null
+++ b/net-im/telegram-desktop-bin/telegram-desktop-bin-1.6.0.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2

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

2019-03-20 Thread Mikle Kolyada
commit: 2fc6e7762be54a63acaf119d358486dfac4a4f4f
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Mar 20 11:42:42 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Mar 20 11:42:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fc6e776

sys-apps/portage: alpha stable wrt bug #680054

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="alpha"

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

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



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

2019-03-20 Thread Mikle Kolyada
commit: 5895750971f7516684ccc0b143f8e56838587046
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Mar 20 11:41:59 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Mar 20 11:41:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58957509

sys-apps/portage: m68k stable wrt bug #680054

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="m68k"

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

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



  1   2   3   >