[gentoo-commits] repo/gentoo:master commit in: media-sound/pulseaudio-modules-bt/

2020-03-31 Thread Jason A. Donenfeld
commit: b50033ecb5e30204457b16c251c7b7cf798f0673
Author: Pablo Cholaky  slash  cl>
AuthorDate: Mon Mar 23 05:17:28 2020 +
Commit: Jason A. Donenfeld  gentoo  org>
CommitDate: Wed Apr  1 05:33:17 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b50033ec

media-sound/pulseaudio-modules-bt: add USE flags

Closes: https://bugs.gentoo.org/713878
Signed-off-by: Pablo Cholaky  slash.cl>
Signed-off-by: Jason A. Donenfeld  gentoo.org>

 media-sound/pulseaudio-modules-bt/metadata.xml | 29 +-
 ebuild => pulseaudio-modules-bt-1.3-r1.ebuild} | 22 
 .../pulseaudio-modules-bt-.ebuild  | 22 
 3 files changed, 57 insertions(+), 16 deletions(-)

diff --git a/media-sound/pulseaudio-modules-bt/metadata.xml 
b/media-sound/pulseaudio-modules-bt/metadata.xml
index c6a40a7b9cb..ecdf5fddd6d 100644
--- a/media-sound/pulseaudio-modules-bt/metadata.xml
+++ b/media-sound/pulseaudio-modules-bt/metadata.xml
@@ -1,10 +1,27 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   zx...@gentoo.org
-
-
-   pa...@gentoo.org
-
+   
+   zx...@gentoo.org
+   
+   
+   pa...@gentoo.org
+   
+   
+   
+   AAC encoding support using media-libs/fdk-aac
+   
+   
+   APTX, APTX-HD encoding support
+   
+   
+   LDAC encoding support, using media-libs/libldac
+   
+   
+   Build with native HSP (Headset Profile) headset for bluez 5
+   
+   
+   Build with oFono HFP (Hands Free Profile) headset for bluez 5, 
requires net-misc/ofono.
+   
+   
 

diff --git a/media-sound/pulseaudio-modules-bt/pulseaudio-modules-bt-1.3.ebuild 
b/media-sound/pulseaudio-modules-bt/pulseaudio-modules-bt-1.3-r1.ebuild
similarity index 76%
rename from media-sound/pulseaudio-modules-bt/pulseaudio-modules-bt-1.3.ebuild
rename to media-sound/pulseaudio-modules-bt/pulseaudio-modules-bt-1.3-r1.ebuild
index 72132d0bcd3..22faf22ec86 100644
--- a/media-sound/pulseaudio-modules-bt/pulseaudio-modules-bt-1.3.ebuild
+++ b/media-sound/pulseaudio-modules-bt/pulseaudio-modules-bt-1.3-r1.ebuild
@@ -16,16 +16,16 @@ SRC_URI="
 LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="~amd64"
-IUSE=""
+IUSE="fdk +ffmpeg +ldac +native-headset ofono-headset"
 
 DEPEND="
-   media-libs/fdk-aac:0=
-   virtual/ffmpeg
+   fdk? ( media-libs/fdk-aac:0= )
+   ffmpeg? ( virtual/ffmpeg )
media-libs/sbc
-   media-libs/libldac
+   ldac? ( media-libs/libldac )
>=net-wireless/bluez-5
>=sys-apps/dbus-1.0.0
-   >=net-misc/ofono-1.13
+   ofono-headset? ( >=net-misc/ofono-1.13 )
>=media-sound/pulseaudio-${PULSE_VER}[-bluetooth]
 "
 # Ordinarily media-libs/libldac should be in DEPEND too, but for now upstream 
repo is using a ldac submodule instead.
@@ -53,6 +53,18 @@ load-module module-bluetooth-discover
 .endif
 "
 
+src_configure() {
+   local mycmakeargs=(
+   -DCODEC_AAC_FDK=$(usex fdk "ON" "OFF")
+   -DCODEC_APTX_FF=$(usex ffmpeg "ON" "OFF")
+   -DCODEC_APTX_HD_FF=$(usex ffmpeg "ON" "OFF")
+   -DCODEC_LDAC=$(usex ldac "ON" "OFF")
+   -DNATIVE_HEADSET=$(usex native-headset "ON" "OFF")
+   -DOFONO_HEADSET=$(usex ofono-headset "ON" "OFF")
+   )
+   cmake-utils_src_configure
+}
+
 src_prepare() {
cmake-utils_src_prepare
 

diff --git 
a/media-sound/pulseaudio-modules-bt/pulseaudio-modules-bt-.ebuild 
b/media-sound/pulseaudio-modules-bt/pulseaudio-modules-bt-.ebuild
index 4dbb9914396..8b8e74ca04f 100644
--- a/media-sound/pulseaudio-modules-bt/pulseaudio-modules-bt-.ebuild
+++ b/media-sound/pulseaudio-modules-bt/pulseaudio-modules-bt-.ebuild
@@ -17,16 +17,16 @@ EGIT_OVERRIDE_COMMIT_PULSEAUDIO_PULSEAUDIO="v13.0"
 LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS=""
-IUSE=""
+IUSE="fdk +ffmpeg +ldac +native-headset ofono-headset"
 
 DEPEND="
-   media-libs/fdk-aac:0=
-   virtual/ffmpeg
+   fdk? ( media-libs/fdk-aac:0= )
+   ffmpeg? ( virtual/ffmpeg )
media-libs/sbc
-   media-libs/libldac
+   ldac? ( media-libs/libldac )
>=net-wireless/bluez-5
>=sys-apps/dbus-1.0.0
-   >=net-misc/ofono-1.13
+   ofono-headset? ( >=net-misc/ofono-1.13 )
>=media-sound/pulseaudio-13[-bluetooth]
 "
 # Ordinarily media-libs/libldac should be in DEPEND too, but for now upstream 
repo is using a ldac submodule instead.
@@ -55,6 +55,18 @@ load-module module-bluetooth-discover
 .endif
 "
 
+src_configure() {
+   local mycmakeargs=(
+   -DCODEC_AAC_FDK=$(usex fdk "ON" "OFF")
+   -DCODEC_APTX_FF=$(usex ffmpeg "ON" "OFF")
+   -DCODEC_APTX_HD_FF=$(usex ffmpeg "ON" "OFF")
+   -DCODEC_LDAC=$(usex ldac "ON" "OFF")
+   -DNATIVE_HEADSET=$(usex 

[gentoo-commits] repo/gentoo:master commit in: sys-apps/sparc-utils/, sys-apps/sparc-utils/files/

2020-03-31 Thread Matt Turner
commit: e63b7c35c2c49b7ae4cce57ca167035737480e53
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Apr  1 05:01:01 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Apr  1 05:07:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e63b7c35

sys-apps/sparc-utils: Add patch to fix on 64-bit userland

Signed-off-by: Matt Turner  gentoo.org>

 .../files/elftoaout-2.3-64bit_fixes-1.patch| 261 +
 ...ils-1.9-r5.ebuild => sparc-utils-1.9-r6.ebuild} |   1 +
 2 files changed, 262 insertions(+)

diff --git a/sys-apps/sparc-utils/files/elftoaout-2.3-64bit_fixes-1.patch 
b/sys-apps/sparc-utils/files/elftoaout-2.3-64bit_fixes-1.patch
new file mode 100644
index 000..2be0e67184f
--- /dev/null
+++ b/sys-apps/sparc-utils/files/elftoaout-2.3-64bit_fixes-1.patch
@@ -0,0 +1,261 @@
+Submitted By: Jim Gifford (patches at jg555 dot com)
+Date: 2006-01-03
+Initial Package Version: 2.3
+Origin: Dave Miller
+Upstream Status: Unknown
+Description: Fixes 64 Bit Issues with Elftoaout
+
+   https://marc.info/?l=linux-sparc=113617505627794=2
+ 
+diff -Naur elftoaout-2.3/elftoaout.c elftoaout-2.3/elftoaout.c
+--- a/elftoaout-2.3/elftoaout.c2000-06-03 20:20:12.0 +
 b/elftoaout-2.3/elftoaout.c2006-01-03 22:33:28.0 +
+@@ -20,16 +20,36 @@
+  */
+ #include 
+ #include 
+-#ifdef linux
+ #include 
+-#define ELFDATA2MSB   2
+-#else
+-#include 
+-#endif
+-
+-#define swab16(x)  (((x)<<8&0xFF00)|((x)>>8&0x00FF))
+-#define swab32(x)  
(((x)<<24&0xFF00)|((x)<<8&0x00FF)|((x)>>24&0x00FF)|((x)>>8&0xFF00))
+-#define swab64(x)  unsigned long long)(swab32((unsigned int)x))) << 32) | 
(swab32(((unsigned long long)x)>>32)))
++#include 
++
++static inline u_int16_t swab16(u_int16_t x)
++{
++  return (((x << 8)  & 0xFF00) |
++  ((x >> 8) & 0x00FF));
++}
++
++static inline u_int32_t swab32(u_int32_t x)
++{
++  return (((x << 24) & 0xFF00) |
++  ((x <<  8) & 0x00FF) |
++  ((x >> 24) & 0x00FF) |
++  ((x >>  8) & 0xFF00));
++}
++
++static inline u_int64_t swab64(u_int64_t x)
++{
++  return ((u_int64_t)
++  ((u_int64_t)(((u_int64_t)x & (u_int64_t)0x00ffULL) << 56) |
++   (u_int64_t)(((u_int64_t)x & (u_int64_t)0xff00ULL) << 40) |
++   (u_int64_t)(((u_int64_t)x & (u_int64_t)0x00ffULL) << 24) |
++   (u_int64_t)(((u_int64_t)x & (u_int64_t)0xff00ULL) <<  8) |
++   (u_int64_t)(((u_int64_t)x & (u_int64_t)0x00ffULL) >>  8) |
++   (u_int64_t)(((u_int64_t)x & (u_int64_t)0xff00ULL) >> 24) |
++   (u_int64_t)(((u_int64_t)x & (u_int64_t)0x00ffULL) >> 40) |
++   (u_int64_t)(((u_int64_t)x & (u_int64_t)0xff00ULL) >> 56)));
++}
++
+ 
+ /* We carry a.out header here in order to compile the thing on Solaris */
+ 
+@@ -37,14 +57,14 @@
+ #define   CMAGIC  0x01030108
+ 
+ typedef struct {
+-  unsigned long   a_magic;/* magic number */
+-  unsigned long   a_text; /* size of text segment */
+-  unsigned long   a_data; /* size of initialized data */
+-  unsigned long   a_bss;  /* size of uninitialized data */
+-  unsigned long   a_syms; /* size of symbol table || checksum */
+-  unsigned long   a_entry;/* entry point */
+-  unsigned long   a_trsize;   /* size of text relocation */
+-  unsigned long   a_drsize;   /* size of data relocation */
++  u_int32_t   a_magic;/* magic number */
++  u_int32_t   a_text; /* size of text segment */
++  u_int32_t   a_data; /* size of initialized data */
++  u_int32_t   a_bss;  /* size of uninitialized data */
++  u_int32_t   a_syms; /* size of symbol table || checksum */
++  u_int32_t   a_entry;/* entry point */
++  u_int32_t   a_trsize;   /* size of text relocation */
++  u_int32_t   a_drsize;   /* size of data relocation */
+ } Exec;
+ 
+ 
+@@ -56,17 +76,16 @@
+   int swab;
+   int sparc64;
+   int csum;
+-  /* friend void Usage(void); */
+ } Application;
+ 
+ typedef struct {
+   Elf32_Phdr *tab;
+-  unsigned len;
++  unsigned int len;
+ } ProgTable;
+ 
+ typedef struct {
+   Elf64_Phdr *tab;
+-  unsigned len;
++  unsigned int len;
+ } ProgTable64;
+ 
+ void get_ptab(ProgTable *t, FILE *inp, const Elf32_Ehdr *h);
+@@ -75,9 +94,9 @@
+ void print_ptab64(ProgTable64 *t);
+ 
+ typedef struct {
+-  char *buf;/* Image data */
+-  unsigned len; /* Length of buffer */
+-  unsigned bss; /* Length of extra data */
++  unsigned char *buf;   /* Image data */
++  unsigned int len; /* Length of buffer */
++  unsigned int bss; /* Length of extra data */
+ } Segment;
+ 
+ void 

[gentoo-commits] proj/catalyst:master commit in: targets/support/

2020-03-31 Thread Matt Turner
commit: b28b3ce7a4aca0cd79236133fbe69b8769c0c194
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Apr  1 03:43:19 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Apr  1 04:21:03 2020 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=b28b3ce7

targets: Use mkdir -p

Signed-off-by: Matt Turner  gentoo.org>

 targets/support/bootloader-setup.sh | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/targets/support/bootloader-setup.sh 
b/targets/support/bootloader-setup.sh
index 051adc28..154874d5 100755
--- a/targets/support/bootloader-setup.sh
+++ b/targets/support/bootloader-setup.sh
@@ -291,9 +291,7 @@ case ${clst_hostarch} in
# CD image, and then pass these components to the
# `sgibootcd` tool which outputs a final CD image
scratch="${1}"
-   [ ! -d "${scratch}/kernels" ] && mkdir ${scratch}/kernels
-   [ ! -d "${scratch}/kernels/misc" ] && mkdir 
${scratch}/kernels/misc
-   [ ! -d "${scratch}/arcload" ] && mkdir ${scratch}/arcload
+   mkdir -p mkdir ${scratch}/{kernels/misc,arcload}
echo "" > ${scratch}/arc.cf
 
# Move kernel binaries to ${scratch}/kernels, and



[gentoo-commits] proj/catalyst:master commit in: targets/support/

2020-03-31 Thread Matt Turner
commit: 5ce5dafb2557fe50c4c860a6049fc804ec4f2304
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Apr  1 03:45:05 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Apr  1 04:21:03 2020 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=5ce5dafb

targets: Remove gentoo-config

Not critical, but its presence causes the rmdir to fail.

Signed-off-by: Matt Turner  gentoo.org>

 targets/support/netboot2-final.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/targets/support/netboot2-final.sh 
b/targets/support/netboot2-final.sh
index e6566a1e..28b0d005 100755
--- a/targets/support/netboot2-final.sh
+++ b/targets/support/netboot2-final.sh
@@ -15,6 +15,7 @@ for x in ${clst_boot_kernel}; do
mv ${clst_target_path}/boot/System-${x}.map 
${clst_target_path}/kernels/misc
 done
 
+rm -f ${clst_target_path}/boot/gentoo-config
 rmdir ${clst_target_path}/boot
 
 # Any post-processing necessary for each architecture can be done here.  This



[gentoo-commits] proj/catalyst:master commit in: targets/support/

2020-03-31 Thread Matt Turner
commit: 5c02fff672f47cd5a04d473944bb82b48a973527
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Apr  1 03:43:54 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Apr  1 04:21:03 2020 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=5c02fff6

targets: Build and use binpkgs for linux deps

Signed-off-by: Matt Turner  gentoo.org>

 targets/support/kmerge.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/targets/support/kmerge.sh b/targets/support/kmerge.sh
index 754a129f..97d18fe7 100755
--- a/targets/support/kmerge.sh
+++ b/targets/support/kmerge.sh
@@ -212,7 +212,7 @@ then
 
# install dependencies of kernel sources ahead of time in case
# package.provided generated below causes them not to be (re)installed
-   PKGDIR=${PKGDIR} clst_myemergeopts="--quiet --update --newuse 
--onlydeps" run_merge "${clst_ksource}" || exit 1
+   PKGDIR=${PKGDIR} clst_myemergeopts="--quiet --usepkg --buildpkg 
--binpkg-respect-use=y --update --newuse --onlydeps" run_merge 
"${clst_ksource}" || exit 1
 
# Create the kerncache directory if it doesn't exists
mkdir -p /tmp/kerncache/${clst_kname}



[gentoo-commits] proj/catalyst:master commit in: targets/support/

2020-03-31 Thread Matt Turner
commit: 46322490b543105aa561933d678368082ccc096d
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Apr  1 03:47:06 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Apr  1 04:21:03 2020 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=46322490

targets: Fix expected System.map name

This fixes a regression that broke netboot2 on SPARC.

Fixes: 23cd0ed7dc8a (netboot2.sh: Fix missing slashes in paths)
Signed-off-by: Matt Turner  gentoo.org>

 targets/support/netboot2-final.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/targets/support/netboot2-final.sh 
b/targets/support/netboot2-final.sh
index 28b0d005..52b85f05 100755
--- a/targets/support/netboot2-final.sh
+++ b/targets/support/netboot2-final.sh
@@ -50,7 +50,7 @@ case ${clst_hostarch} in
fi
for x in ${clst_boot_kernel}; do
elftoaout ${clst_target_path}/kernels/${x} -o 
${clst_target_path}/${x}-a.out
-   ${piggyback} ${clst_target_path}/${x}-a.out 
${clst_target_path}/kernels/misc/System.map-${x} 
${clst_target_path}/kernels/misc/${x}.igz
+   ${piggyback} ${clst_target_path}/${x}-a.out 
${clst_target_path}/kernels/misc/System-${x}.map 
${clst_target_path}/kernels/misc/${x}.igz
done
;;
ia64)



[gentoo-commits] repo/gentoo:master commit in: profiles/, profiles/default/linux/ppc64le/17.0/desktop/plasma/

2020-03-31 Thread Georgy Yakovlev
commit: d2e51f0ae8dc0f853dec7fe269392f0144da7136
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Apr  1 02:38:46 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Apr  1 03:01:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2e51f0a

profiles/default/linux/ppc64le/17.0/desktop/plasma: new exp profile

Bug: https://bugs.gentoo.org/715680
Signed-off-by: Georgy Yakovlev  gentoo.org>

 profiles/default/linux/ppc64le/17.0/desktop/plasma/eapi   | 1 +
 profiles/default/linux/ppc64le/17.0/desktop/plasma/parent | 2 ++
 profiles/profiles.desc| 1 +
 3 files changed, 4 insertions(+)

diff --git a/profiles/default/linux/ppc64le/17.0/desktop/plasma/eapi 
b/profiles/default/linux/ppc64le/17.0/desktop/plasma/eapi
new file mode 100644
index 000..7ed6ff82de6
--- /dev/null
+++ b/profiles/default/linux/ppc64le/17.0/desktop/plasma/eapi
@@ -0,0 +1 @@
+5

diff --git a/profiles/default/linux/ppc64le/17.0/desktop/plasma/parent 
b/profiles/default/linux/ppc64le/17.0/desktop/plasma/parent
new file mode 100644
index 000..ff3a7b1ec81
--- /dev/null
+++ b/profiles/default/linux/ppc64le/17.0/desktop/plasma/parent
@@ -0,0 +1,2 @@
+..
+../../../../../../targets/desktop/plasma

diff --git a/profiles/profiles.desc b/profiles/profiles.desc
index d11daeff8e9..96fde9d4636 100644
--- a/profiles/profiles.desc
+++ b/profiles/profiles.desc
@@ -179,6 +179,7 @@ ppc64   
default/linux/powerpc/ppc64/17.0/64bit-userland/little-endian/systemd   sta
 #ppc64   default/linux/ppc64/17.0/musl/hardenedexp
 ppc64   default/linux/ppc64le/17.0exp
 ppc64   default/linux/ppc64le/17.0/desktopexp
+ppc64   default/linux/ppc64le/17.0/desktop/plasma exp
 ppc64   default/linux/ppc64le/17.0/systemdexp
 ppc64   default/linux/ppc64le/17.0/musl   exp
 ppc64   default/linux/ppc64le/17.0/musl/hardened  exp



[gentoo-commits] repo/gentoo:master commit in: profiles/default/linux/ppc64le/17.0/desktop/, profiles/

2020-03-31 Thread Georgy Yakovlev
commit: d35e0f2cf7dc32c0a83cc9b72709e330fea17d3b
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Apr  1 02:32:06 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Apr  1 03:01:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d35e0f2c

profiles/default/linux/ppc64le/17.0/desktop: new exp profile

Bug: https://bugs.gentoo.org/715680
Signed-off-by: Georgy Yakovlev  gentoo.org>

 profiles/default/linux/ppc64le/17.0/desktop/eapi   | 1 +
 profiles/default/linux/ppc64le/17.0/desktop/parent | 2 ++
 profiles/profiles.desc | 1 +
 3 files changed, 4 insertions(+)

diff --git a/profiles/default/linux/ppc64le/17.0/desktop/eapi 
b/profiles/default/linux/ppc64le/17.0/desktop/eapi
new file mode 100644
index 000..7ed6ff82de6
--- /dev/null
+++ b/profiles/default/linux/ppc64le/17.0/desktop/eapi
@@ -0,0 +1 @@
+5

diff --git a/profiles/default/linux/ppc64le/17.0/desktop/parent 
b/profiles/default/linux/ppc64le/17.0/desktop/parent
new file mode 100644
index 000..ad6c5e126fb
--- /dev/null
+++ b/profiles/default/linux/ppc64le/17.0/desktop/parent
@@ -0,0 +1,2 @@
+..
+../../../../../targets/desktop

diff --git a/profiles/profiles.desc b/profiles/profiles.desc
index 7fe6e7a5237..d11daeff8e9 100644
--- a/profiles/profiles.desc
+++ b/profiles/profiles.desc
@@ -178,6 +178,7 @@ ppc64   
default/linux/powerpc/ppc64/17.0/64bit-userland/little-endian/systemd   sta
 #ppc64   default/linux/ppc64/17.0/musl exp
 #ppc64   default/linux/ppc64/17.0/musl/hardenedexp
 ppc64   default/linux/ppc64le/17.0exp
+ppc64   default/linux/ppc64le/17.0/desktopexp
 ppc64   default/linux/ppc64le/17.0/systemdexp
 ppc64   default/linux/ppc64le/17.0/musl   exp
 ppc64   default/linux/ppc64le/17.0/musl/hardened  exp



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

2020-03-31 Thread Georgy Yakovlev
commit: 5d249f9e36db15ff8476eaf879907069d08ea1d7
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Apr  1 02:59:48 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Apr  1 03:01:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d249f9e

profiles/default/linux/ppc64le/17.0/developer: new exp profile

Bug: https://bugs.gentoo.org/715680
Signed-off-by: Georgy Yakovlev  gentoo.org>

 profiles/default/linux/ppc64le/17.0/developer/eapi   | 1 +
 profiles/default/linux/ppc64le/17.0/developer/parent | 2 ++
 profiles/profiles.desc   | 1 +
 3 files changed, 4 insertions(+)

diff --git a/profiles/default/linux/ppc64le/17.0/developer/eapi 
b/profiles/default/linux/ppc64le/17.0/developer/eapi
new file mode 100644
index 000..7ed6ff82de6
--- /dev/null
+++ b/profiles/default/linux/ppc64le/17.0/developer/eapi
@@ -0,0 +1 @@
+5

diff --git a/profiles/default/linux/ppc64le/17.0/developer/parent 
b/profiles/default/linux/ppc64le/17.0/developer/parent
new file mode 100644
index 000..4c893748ce7
--- /dev/null
+++ b/profiles/default/linux/ppc64le/17.0/developer/parent
@@ -0,0 +1,2 @@
+..
+../../../../../targets/developer

diff --git a/profiles/profiles.desc b/profiles/profiles.desc
index 55acf806f55..2bdcb641c8a 100644
--- a/profiles/profiles.desc
+++ b/profiles/profiles.desc
@@ -182,6 +182,7 @@ ppc64   default/linux/ppc64le/17.0/desktop  
  exp
 ppc64   default/linux/ppc64le/17.0/desktop/plasma exp
 ppc64   default/linux/ppc64le/17.0/desktop/plasma/systemd exp
 ppc64   default/linux/ppc64le/17.0/systemdexp
+ppc64   default/linux/ppc64le/17.0/developer  exp
 ppc64   default/linux/ppc64le/17.0/musl   exp
 ppc64   default/linux/ppc64le/17.0/musl/hardened  exp
 



[gentoo-commits] repo/gentoo:master commit in: profiles/, profiles/default/linux/ppc64le/17.0/desktop/plasma/systemd/

2020-03-31 Thread Georgy Yakovlev
commit: e6d8e9f89f87de3dbcea41587bbba113a140ed98
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Apr  1 02:41:10 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Apr  1 03:01:53 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6d8e9f8

profiles/default/linux/ppc64le/17.0/desktop/plasma/systemd: new exp profile

Bug: https://bugs.gentoo.org/715680
Signed-off-by: Georgy Yakovlev  gentoo.org>

 profiles/default/linux/ppc64le/17.0/desktop/plasma/systemd/eapi   | 1 +
 profiles/default/linux/ppc64le/17.0/desktop/plasma/systemd/parent | 2 ++
 profiles/profiles.desc| 1 +
 3 files changed, 4 insertions(+)

diff --git a/profiles/default/linux/ppc64le/17.0/desktop/plasma/systemd/eapi 
b/profiles/default/linux/ppc64le/17.0/desktop/plasma/systemd/eapi
new file mode 100644
index 000..7ed6ff82de6
--- /dev/null
+++ b/profiles/default/linux/ppc64le/17.0/desktop/plasma/systemd/eapi
@@ -0,0 +1 @@
+5

diff --git a/profiles/default/linux/ppc64le/17.0/desktop/plasma/systemd/parent 
b/profiles/default/linux/ppc64le/17.0/desktop/plasma/systemd/parent
new file mode 100644
index 000..44f88d3e2df
--- /dev/null
+++ b/profiles/default/linux/ppc64le/17.0/desktop/plasma/systemd/parent
@@ -0,0 +1,2 @@
+..
+../../../../../../../targets/systemd

diff --git a/profiles/profiles.desc b/profiles/profiles.desc
index 96fde9d4636..55acf806f55 100644
--- a/profiles/profiles.desc
+++ b/profiles/profiles.desc
@@ -180,6 +180,7 @@ ppc64   
default/linux/powerpc/ppc64/17.0/64bit-userland/little-endian/systemd   sta
 ppc64   default/linux/ppc64le/17.0exp
 ppc64   default/linux/ppc64le/17.0/desktopexp
 ppc64   default/linux/ppc64le/17.0/desktop/plasma exp
+ppc64   default/linux/ppc64le/17.0/desktop/plasma/systemd exp
 ppc64   default/linux/ppc64le/17.0/systemdexp
 ppc64   default/linux/ppc64le/17.0/musl   exp
 ppc64   default/linux/ppc64le/17.0/musl/hardened  exp



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

2020-03-31 Thread Sergei Trofimovich
commit: 0bc14fb37320230d55449627a143c97cb187bdf1
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Mar 31 23:07:39 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Mar 31 23:07:39 2020 +
URL:https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=0bc14fb3

9.3.0: increase expmed cache size from 10^3 to 10^6

Without this patch is takes dev-libs/xxhash 1-2 hours
to compile. With this patch - TODO measurements.

It workarounds deficiency of synth_mult() which evics
cache entries as it calculates optimal multiplication
algorithm. xxhash is especially hevyweight as it's a
64-bit multiplication of large prime constants.

Bug: https://gcc.gnu.org/PR87256
Signed-off-by: Sergei Trofimovich  gentoo.org>

 9.3.0/gentoo/28_all_hppa-faster-synth_mult.patch | 44 
 9.3.0/gentoo/README.history  |  1 +
 2 files changed, 45 insertions(+)

diff --git a/9.3.0/gentoo/28_all_hppa-faster-synth_mult.patch 
b/9.3.0/gentoo/28_all_hppa-faster-synth_mult.patch
new file mode 100644
index 000..e93aa40
--- /dev/null
+++ b/9.3.0/gentoo/28_all_hppa-faster-synth_mult.patch
@@ -0,0 +1,44 @@
+From 73a841928cc1b86f43108d2383a6242e7e61a785 Mon Sep 17 00:00:00 2001
+From: Sergei Trofimovich 
+Date: Tue, 31 Mar 2020 23:58:05 +0100
+Subject: [PATCH] gcc/expmed.h: increase cache size from 10^3 to 10^6
+
+Without this patch is takes dev-libs/xxhash 1-2 hours
+to compile. With this patch - TODO measurements.
+
+It workarounds deficiency of synth_mult() which evics
+cache entries as it calculates optimal multiplication
+algorithm. xxhash is especially hevyweight as it's a
+64-bit multiplication of large prime constants.
+
+Bug: https://gcc.gnu.org/PR87256
+Signed-off-by: Sergei Trofimovich 
+---
+ gcc/expmed.h | 13 -
+ 1 file changed, 8 insertions(+), 5 deletions(-)
+
+--- a/gcc/expmed.h
 b/gcc/expmed.h
+@@ -127,11 +127,14 @@ struct alg_hash_entry {
+ };
+ 
+ /* The number of cache/hash entries.  */
+-#if HOST_BITS_PER_WIDE_INT == 64
+-#define NUM_ALG_HASH_ENTRIES 1031
+-#else
+-#define NUM_ALG_HASH_ENTRIES 307
+-#endif
++/*
++ * Workaround hppa2.0 synth_mult deficiency
++ * and allocate ~1 million slots:
++ * https://gcc.gnu.org/PR87256
++ * That should increase RAM usage up to ~24MB
++ * per process.
++ */
++#define NUM_ALG_HASH_ENTRIES 103
+ 
+ #define NUM_MODE_INT \
+   (MAX_MODE_INT - MIN_MODE_INT + 1)
+-- 
+2.26.0
+

diff --git a/9.3.0/gentoo/README.history b/9.3.0/gentoo/README.history
index e5865d4..5da5a24 100644
--- a/9.3.0/gentoo/README.history
+++ b/9.3.0/gentoo/README.history
@@ -2,6 +2,7 @@
- 04_all_default-ssp-fix.patch
+ 04_all_nossp-on-nostdlib.patch
+ 27_all_default_ssp-buffer-size.patch
+   + 28_all_hppa-faster-synth_mult.patch
 
 1  12 Mar 2019
+ 01_all_default-fortify-source.patch



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libjcat/, dev-libs/libjcat/files/

2020-03-31 Thread Marek Szuba
commit: 345a4b1cd1d77d1db99515bc64a71ee546142294
Author: Marek Szuba  gentoo  org>
AuthorDate: Tue Mar 31 22:54:14 2020 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Tue Mar 31 23:03:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=345a4b1c

dev-libs/libjcat: better control over build-time Python used

libjcat/meson.build calls a helper Python script which depends on
modules 'sys' (core, always present), 'xml' (core, controlled by USE=xml)
and 'pkg_resources' (from dev-python/setuptools) - using whatever Python
version /usr/bin/python3 points to, which may well provide neither of
the latter two modules. Make sure the helper script is invoked using the
Python interpreter used to run meson itself, as that one is guaranteed
to both provide XML support (the very same import line appears all over
the package mesonbuild) and have setuptools (it's in RDEPEND of
dev-util/meson).

Closes: https://bugs.gentoo.org/715670
Signed-off-by: Marek Szuba  gentoo.org>

 .../files/libjcat-0.1.0-use_right_python.patch | 29 ++
 dev-libs/libjcat/libjcat-0.1.0.ebuild  |  1 +
 2 files changed, 30 insertions(+)

diff --git a/dev-libs/libjcat/files/libjcat-0.1.0-use_right_python.patch 
b/dev-libs/libjcat/files/libjcat-0.1.0-use_right_python.patch
new file mode 100644
index 000..9cbc63a08c0
--- /dev/null
+++ b/dev-libs/libjcat/files/libjcat-0.1.0-use_right_python.patch
@@ -0,0 +1,29 @@
+By default generate-version-script.py uses /usr/bin/python3, whatever
+version that may be - which causes problems if the default python3
+installation is one either built without XML support or not included
+in PYTHON_TARGETS of dev-python/setuptools. Make sure the script is
+invoked using the same interpreter as meson itself, as that one is
+already guaranteed to provide both 'xml' and 'pkg_resources'.
+
+--- a/libjcat/meson.build
 b/libjcat/meson.build
+@@ -129,6 +129,11 @@
+ install : true,
+   )
+ 
++  # Make sure generate-version-script.py is invoked by the same python as 
meson,
++  # as that one must already have both XML support and setuptools.
++  python = import('python')
++  python_interpreter = python.find_installation()
++
+   # Verify the map file is correct -- note we can't actually use the generated
+   # file for two reasons:
+   #
+@@ -141,6 +146,7 @@
+ input: jcat_gir[0],
+ output: 'jcat.map',
+ command: [
++  python_interpreter,
+   join_paths(meson.source_root(), 'contrib', 
'generate-version-script.py'),
+   'LIBJCAT',
+   '@INPUT@',

diff --git a/dev-libs/libjcat/libjcat-0.1.0.ebuild 
b/dev-libs/libjcat/libjcat-0.1.0.ebuild
index 32863148cd1..0956f965a22 100644
--- a/dev-libs/libjcat/libjcat-0.1.0.ebuild
+++ b/dev-libs/libjcat/libjcat-0.1.0.ebuild
@@ -33,6 +33,7 @@ RESTRICT="!test? ( test )"
 
 PATCHES=(
"${FILESDIR}"/${PN}-0.1.0-disable_installed_tests.patch
+   "${FILESDIR}"/${PN}-0.1.0-use_right_python.patch
 )
 
 src_prepare() {



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

2020-03-31 Thread Lars Wendler
commit: ee9db2e0807c551477ad80791a4d6ea5abba2c52
Author: Lars Wendler  gentoo  org>
AuthorDate: Tue Mar 31 20:08:27 2020 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Tue Mar 31 22:07:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee9db2e0

app-editors/nano: Bump to version 4.9.1

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

 app-editors/nano/Manifest  |  1 +
 app-editors/nano/nano-4.9.1.ebuild | 80 ++
 2 files changed, 81 insertions(+)

diff --git a/app-editors/nano/Manifest b/app-editors/nano/Manifest
index 78a27a56925..5a34202719b 100644
--- a/app-editors/nano/Manifest
+++ b/app-editors/nano/Manifest
@@ -1,2 +1,3 @@
 DIST nano-4.6.tar.gz 2970798 BLAKE2B 
d6dfc702d374d1cbcd61080c8e0082b7931dc8c593c97eb705d878d25487a78dc1ebcb8004f742f5ecc3af1b5a31abcf6577e87aba96fb95d16029ff55e7af58
 SHA512 
76fb43495ca1f88ee8864eee5d023b6cd86bc35fba00151b4c6af53ae06e6b3828379e7d52a16c7df0956e9e04602a86ff8e8a7c1997320507ca041195bf004b
+DIST nano-4.9.1.tar.gz 2995183 BLAKE2B 
a5e455d94e683bd3ae00c37bd4395465ded281e1cbf434a0035b2d816b53b6d24f3fc966c44c8da643122dc2920f8ddefb0d37574baafe947dd107e1ede7034d
 SHA512 
155622092ee5a99dab30a6acd5cf35ecf087476aa48eabcdf7e1259af098483f84eef7569380fe7c47d4d69f63e61af10a3cc5c29c45f1242c17366c0f15835b
 DIST nano-4.9.tar.gz 3000427 BLAKE2B 
37ed08fa6b902951687ef26a527e1a0da3199946c73bed5d9fd0464a76af643b55a0900e7c1a1237af31867a7231f1b383dad423e780408560fa8246b18e30a4
 SHA512 
abce064a5cb55f730e41a7a8fbd8b2f9626fc6834b30cd05d62fe73b7f284d8cd80f44c6b84bb5370b980f00d3a71cf8c33408628229c2ee3b8a1670fa5e953c

diff --git a/app-editors/nano/nano-4.9.1.ebuild 
b/app-editors/nano/nano-4.9.1.ebuild
new file mode 100644
index 000..e27dda0e78d
--- /dev/null
+++ b/app-editors/nano/nano-4.9.1.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="git://git.sv.gnu.org/nano.git"
+   inherit git-r3 autotools
+else
+   MY_P="${PN}-${PV/_}"
+   SRC_URI="https://www.nano-editor.org/dist/v${PV:0:1}/${MY_P}.tar.gz;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+fi
+
+DESCRIPTION="GNU GPL'd Pico clone with more functionality"
+HOMEPAGE="https://www.nano-editor.org/ 
https://wiki.gentoo.org/wiki/Nano/Basics_Guide;
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="debug justify +magic minimal ncurses nls slang +spell +split-usr static 
unicode"
+
+LIB_DEPEND=">=sys-libs/ncurses-5.9-r1:0=[unicode?]
+   sys-libs/ncurses:0=[static-libs(+)]
+   magic? ( sys-apps/file[static-libs(+)] )
+   nls? ( virtual/libintl )
+   !ncurses? ( slang? ( sys-libs/slang[static-libs(+)] ) )"
+RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )"
+DEPEND="${RDEPEND}
+   static? ( ${LIB_DEPEND} )"
+BDEPEND="
+   nls? ( sys-devel/gettext )
+   virtual/pkgconfig
+"
+src_prepare() {
+   default
+   if [[ ${PV} == "" ]] ; then
+   eautoreconf
+   fi
+}
+
+src_configure() {
+   use static && append-ldflags -static
+   local myconf=(
+   --bindir="${EPREFIX}"/bin
+   --htmldir=/trash
+   $(use_enable !minimal color)
+   $(use_enable !minimal multibuffer)
+   $(use_enable !minimal nanorc)
+   $(use_enable magic libmagic)
+   $(use_enable spell speller)
+   $(use_enable justify)
+   $(use_enable debug)
+   $(use_enable nls)
+   $(use_enable unicode utf8)
+   $(use_enable minimal tiny)
+   $(usex ncurses --without-slang $(use_with slang))
+   )
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   # don't use "${ED}" here or things break (#654534)
+   rm -r "${D}"/trash || die
+
+   dodoc doc/sample.nanorc
+   docinto html
+   dodoc doc/faq.html
+   insinto /etc
+   newins doc/sample.nanorc nanorc
+   if ! use minimal ; then
+   # Enable colorization by default.
+   sed -i \
+   -e '/^# include /s:# *::' \
+   "${ED}"/etc/nanorc || die
+   fi
+
+   use split-usr && dosym ../../bin/nano /usr/bin/nano
+}



[gentoo-commits] repo/gentoo:master commit in: games-fps/ut2003/, games-fps/ut2003/files/

2020-03-31 Thread James Le Cuirot
commit: 32303459a081de5445c064e4cbffac30fe288d24
Author: James Le Cuirot  gentoo  org>
AuthorDate: Tue Mar 31 21:52:22 2020 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Tue Mar 31 21:54:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32303459

games-fps/ut2003: Fix SRC_URI, EAPI 7, fix server, align with UT2004

Closes: https://bugs.gentoo.org/715540
Package-Manager: Portage-2.3.96, Repoman-2.3.20
Signed-off-by: James Le Cuirot  gentoo.org>

 games-fps/ut2003/Manifest   |  2 +-
 games-fps/ut2003/files/ut2003-ded.confd |  6 ++
 games-fps/ut2003/files/ut2003-ded.initd | 13 +
 games-fps/ut2003/ut2003-2225-r4.ebuild  | 99 -
 games-fps/ut2003/ut2003-2225-r5.ebuild  | 98 
 5 files changed, 118 insertions(+), 100 deletions(-)

diff --git a/games-fps/ut2003/Manifest b/games-fps/ut2003/Manifest
index f580ec1670f..dab21529521 100644
--- a/games-fps/ut2003/Manifest
+++ b/games-fps/ut2003/Manifest
@@ -1 +1 @@
-DIST ut2003lnx_patch2225.tar.tar 10039316 BLAKE2B 
a15398eb2b66606f3e7b1382b01fda6b5d38982bc3fe7065184232eb18a8c85792147187951e810ecb6af738b5f5a15a2e56832d7e91fb21ab8956d699817f76
 SHA512 
3c44b6254b2b778bf2aca826c710f51db4ec0687c21f1c98e1070f3a9ad7e1a809e741a5b94e20a44c56c60a8b1e4a049788ff5f2a4d581c4eedf3dbbc0da86d
+DIST ut2003lnx_patch2225.tar.bz2 10039316 BLAKE2B 
a15398eb2b66606f3e7b1382b01fda6b5d38982bc3fe7065184232eb18a8c85792147187951e810ecb6af738b5f5a15a2e56832d7e91fb21ab8956d699817f76
 SHA512 
3c44b6254b2b778bf2aca826c710f51db4ec0687c21f1c98e1070f3a9ad7e1a809e741a5b94e20a44c56c60a8b1e4a049788ff5f2a4d581c4eedf3dbbc0da86d

diff --git a/games-fps/ut2003/files/ut2003-ded.confd 
b/games-fps/ut2003/files/ut2003-ded.confd
new file mode 100644
index 000..e6f81661a92
--- /dev/null
+++ b/games-fps/ut2003/files/ut2003-ded.confd
@@ -0,0 +1,6 @@
+# User and group the server should run as.
+ut2003_ded_user="nobody"
+ut2003_ded_group="nobody"
+
+# Any extra options you want to pass to the server.
+ut2003_ded_opts="DM-Antalus"

diff --git a/games-fps/ut2003/files/ut2003-ded.initd 
b/games-fps/ut2003/files/ut2003-ded.initd
new file mode 100644
index 000..19c8f1ada61
--- /dev/null
+++ b/games-fps/ut2003/files/ut2003-ded.initd
@@ -0,0 +1,13 @@
+#!/sbin/openrc-run
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+pidfile="/var/run/${RC_SVCNAME}.pid"
+command_background="true"
+command_user="${ut2003_ded_user}:${ut2003_ded_group}"
+command="ut2003-ded"
+command_args="${ut2003_ded_opts}"
+
+depend() {
+   need net
+}

diff --git a/games-fps/ut2003/ut2003-2225-r4.ebuild 
b/games-fps/ut2003/ut2003-2225-r4.ebuild
deleted file mode 100644
index 5e82f5af64d..000
--- a/games-fps/ut2003/ut2003-2225-r4.ebuild
+++ /dev/null
@@ -1,99 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils games
-
-DESCRIPTION="Sequel to the 1999 Game of the Year multi-player first-person 
shooter"
-HOMEPAGE="http://www.unrealtournament2003.com/;
-SRC_URI="ftp://ftp.infogrames.net/misc/ut2003/ut2003lnx_patch2225.tar.tar;
-
-LICENSE="ut2003"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="dedicated"
-RESTRICT="bindist strip"
-
-RDEPEND="
-   games-fps/ut2003-data
-   dedicated? ( games-server/ut2003-ded )
-   !dedicated? ( virtual/opengl[abi_x86_32(-)] )
-"
-DEPEND=""
-
-S=${WORKDIR}
-
-dir="${GAMES_PREFIX_OPT}/${PN}"
-Ddir="${D}/${dir}"
-
-src_unpack() {
-   unpack ut2003lnx_patch${PV}.tar.tar
-}
-
-src_install() {
-   insinto "${dir}"
-
-   games_make_wrapper ut2003 ./ut2003 "${dir}" "${dir}"
-   make_desktop_entry ut2003 "Unreal Tournament 2003" ut2003
-
-   # TODO: change this to use doexe/doins
-   # this brings our install up to the newest version
-   cp -r "${S}"/ut2003-lnx-2225/* "${Ddir}" || die
-
-   prepgamesdirs
-}
-
-pkg_postinst() {
-   games_pkg_postinst
-
-   # here is where we check for the existence of a cdkey...
-   # if we don't find one, we ask the user for it
-   if [[ -f "${dir}"/System/cdkey ]] ; then
-   elog "A cdkey file is already present in ${dir}/System"
-   else
-   ewarn "You MUST run this before playing the game:"
-   ewarn "emerge --config =${CATEGORY}/${PF}"
-   ewarn "That way you can (re)enter your cdkey."
-   fi
-   elog
-   elog "To play the game run:"
-   elog " ut2003"
-   ewarn
-   ewarn "If you are not installing for the first time and you plan on 
running"
-   ewarn "a server, you will probably need to edit your"
-   ewarn "~/.ut2003/System/UT2003.ini file and add a line that says"
-   ewarn "AccessControlClass=crashfix.iaccesscontrolini to your"
-   ewarn "[Engine.GameInfo] section to close a security issue."
-}
-
-pkg_postrm() {
-   ewarn "This package leaves 

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

2020-03-31 Thread James Le Cuirot
commit: df5153e121532e5cbb366650fedc8876588cc00e
Author: James Le Cuirot  gentoo  org>
AuthorDate: Tue Mar 31 21:53:42 2020 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Tue Mar 31 21:55:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df5153e1

profiles: Cancel last-rites for games-fps/ut2003 and friends

A new SRC_URI has been found.

Bug: https://bugs.gentoo.org/715540
Signed-off-by: James Le Cuirot  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index e24157a6ad4..4046d8f9783 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -32,16 +32,6 @@
 
 #--- END OF EXAMPLES ---
 
-# Jonas Stein  (2020-03-31)
-# Packages masked for removal. Broken SRC_URI,
-# AND RESTRICT=mirror is required
-# Bug #715540
-# Removal after 2020-05-01
-games-fps/ut2003
-games-fps/ut2003-bonuspack-cm
-games-fps/ut2003-bonuspack-de
-games-fps/ut2003-bonuspack-epic
-
 # Andreas Sturmlechner  (2020-03-30)
 # Unmaintained revdep on dev-python/pygtk blocking its removal, py2-only
 # Bugs #484270 and #705646, masked for removal in 30 days.



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/kubernetes/

2020-03-31 Thread William Hubbs
commit: 7d4ec8f9dc96407dddba08cf34c5839d786b20b2
Author: William Hubbs  gentoo  org>
AuthorDate: Tue Mar 31 21:25:51 2020 +
Commit: William Hubbs  gentoo  org>
CommitDate: Tue Mar 31 21:26:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d4ec8f9

sys-cluster/kubernetes: add 1.17.4

Signed-off-by: William Hubbs  gentoo.org>

 sys-cluster/kubernetes/Manifest |  1 +
 sys-cluster/kubernetes/kubernetes-1.17.4.ebuild | 90 +
 2 files changed, 91 insertions(+)

diff --git a/sys-cluster/kubernetes/Manifest b/sys-cluster/kubernetes/Manifest
index a539e050ea4..b73aacea612 100644
--- a/sys-cluster/kubernetes/Manifest
+++ b/sys-cluster/kubernetes/Manifest
@@ -1,2 +1,3 @@
 DIST kubernetes-1.16.8.tar.gz 31731459 BLAKE2B 
1d53c16586b5a7a41fc42d0fb3444b694531d3f04fb9e168a70d4b98f966f322bc82d39234612e38c71da052002c5bcc452c747d9f948dacbdd91ea40a9f5417
 SHA512 
04c8e9a9227ac9a98074cd52cbe90758134fedb10164fa69accbc19716a2f18dc133a4f880d0e35a3728c377faea431363f00ae9fe2ff5ca9e509444da9106c5
+DIST kubernetes-1.17.4.tar.gz 3175 BLAKE2B 
cd04e429d3f524f5dce7948db9b22230df8abdeb7570001ab985ffdb5b85709a8d1698490b9df13455d8f3968741db9571ee1ab3bc2a6fdd06a8c0fe274476e2
 SHA512 
fd1944d26c840bc1d2f585fccbabf48091fe8820ea089b3ea5c18652fd1edb3c8157a70ea19111b8b62aef16e0284a1607b583c3c1af79dd0dd266b99e20c549
 DIST kubernetes-1.18.0.tar.gz 32554015 BLAKE2B 
24079970cc1887c6dad7b55d9f2fd80cd9f46f1b6c1240cf28abf2eb33b3809bcd858293bb800255533a13e24145fab580b0bd2eb0e06c15ca4e0feeedcf6ff2
 SHA512 
3298ec63a2fbcd396b415f27a581f4286317ae206c30b35457aed780baae4115059df20e40028df394984caccc8bb4ef6c879ae3c064771c8a5c045dee7998e8

diff --git a/sys-cluster/kubernetes/kubernetes-1.17.4.ebuild 
b/sys-cluster/kubernetes/kubernetes-1.17.4.ebuild
new file mode 100644
index 000..c333bbabb3b
--- /dev/null
+++ b/sys-cluster/kubernetes/kubernetes-1.17.4.ebuild
@@ -0,0 +1,90 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit bash-completion-r1 go-module systemd
+
+DESCRIPTION="production-grade container orchestration"
+HOMEPAGE="https://kubernetes.io;
+SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+AGENT="kubelet"
+CLI="kubeadm kubectl"
+SERVICES="kube-apiserver kube-controller-manager kube-proxy kube-scheduler"
+IUSE="hardened"
+for x in ${AGENT} ${CLI} ${SERVICES}; do
+   IUSE+=" +${x}"
+done
+
+BDEPEND=">=dev-lang/go-1.13"
+COMMON_DEPEND="
+   kube-apiserver? (
+   acct-group/kube-apiserver
+   acct-user/kube-apiserver
+   )
+   kube-controller-manager? (
+   acct-group/kube-controller-manager
+   acct-user/kube-controller-manager
+   )
+   kube-scheduler? (
+   acct-group/kube-scheduler
+   acct-user/kube-scheduler
+   )"
+DEPEND="${COMMON_DEPEND}"
+RDEPEND="${COMMON_DEPEND}
+   kube-proxy? ( net-firewall/conntrack-tools )
+   !sys-cluster/kubeadm
+   !sys-cluster/kubectl
+   !sys-cluster/kubelet
+   !sys-cluster/kube-apiserver
+   !sys-cluster/kube-controller-manager
+   !sys-cluster/kube-proxy
+   !sys-cluster/kube-scheduler"
+
+RESTRICT+=" test"
+
+src_compile() {
+   local x
+   for x in ${AGENT} ${CLI} ${SERVICES}; do
+   use $x || continue
+   CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \
+   emake -j1 GOFLAGS=-v GOLDFLAGS="" LDFLAGS="" 
WHAT=cmd/${x}
+   done
+}
+
+src_install() {
+   local x
+   for x in ${AGENT} ${CLI} ${SERVICES}; do
+   use $x || continue
+   dobin _output/bin/${x}
+   if has ${x} ${CLI}; then
+   _output/bin/${x} completion bash > ${x}.bash || die
+   _output/bin/${x} completion zsh > ${x}.zsh || die
+   newbashcomp ${x}.bash ${x}
+   insinto /usr/share/zsh/site-functions
+   newins ${x}.zsh _${x}
+   continue
+   fi
+   newinitd "${FILESDIR}"/${x}.initd ${x}
+   newconfd "${FILESDIR}"/${x}.confd ${x}
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}"/${x}.logrotated ${x}
+   keepdir /var/log/${x}
+   if [[ "$x" =~ kubelet ]]; then
+   systemd_dounit "${FILESDIR}"/${x}.service
+   insinto /etc/kubernetes
+   newins "${FILESDIR}"/${x}.env ${x}.env
+   keepdir /etc/kubernetes/manifests
+   fi
+   if [[ $x =~ kubelet|kube-proxy ]]; then
+   keepdir /var/lib/${x}
+   fi
+   if [[ $x =~ .*apiserver|.*controller-manager|.*scheduler ]]; 
then
+   fowners ${x}:${x} /var/log/${x}
+ 

[gentoo-commits] repo/gentoo:master commit in: sys-cluster/kubernetes/

2020-03-31 Thread William Hubbs
commit: 19feaac7753665f288e537a7ad99085073e70c54
Author: William Hubbs  gentoo  org>
AuthorDate: Tue Mar 31 21:23:44 2020 +
Commit: William Hubbs  gentoo  org>
CommitDate: Tue Mar 31 21:26:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19feaac7

sys-cluster/kubernetes: add 1.16.8

Signed-off-by: William Hubbs  gentoo.org>

 sys-cluster/kubernetes/Manifest |  1 +
 sys-cluster/kubernetes/kubernetes-1.16.8.ebuild | 90 +
 2 files changed, 91 insertions(+)

diff --git a/sys-cluster/kubernetes/Manifest b/sys-cluster/kubernetes/Manifest
index 0d914c7cff9..a539e050ea4 100644
--- a/sys-cluster/kubernetes/Manifest
+++ b/sys-cluster/kubernetes/Manifest
@@ -1 +1,2 @@
+DIST kubernetes-1.16.8.tar.gz 31731459 BLAKE2B 
1d53c16586b5a7a41fc42d0fb3444b694531d3f04fb9e168a70d4b98f966f322bc82d39234612e38c71da052002c5bcc452c747d9f948dacbdd91ea40a9f5417
 SHA512 
04c8e9a9227ac9a98074cd52cbe90758134fedb10164fa69accbc19716a2f18dc133a4f880d0e35a3728c377faea431363f00ae9fe2ff5ca9e509444da9106c5
 DIST kubernetes-1.18.0.tar.gz 32554015 BLAKE2B 
24079970cc1887c6dad7b55d9f2fd80cd9f46f1b6c1240cf28abf2eb33b3809bcd858293bb800255533a13e24145fab580b0bd2eb0e06c15ca4e0feeedcf6ff2
 SHA512 
3298ec63a2fbcd396b415f27a581f4286317ae206c30b35457aed780baae4115059df20e40028df394984caccc8bb4ef6c879ae3c064771c8a5c045dee7998e8

diff --git a/sys-cluster/kubernetes/kubernetes-1.16.8.ebuild 
b/sys-cluster/kubernetes/kubernetes-1.16.8.ebuild
new file mode 100644
index 000..c333bbabb3b
--- /dev/null
+++ b/sys-cluster/kubernetes/kubernetes-1.16.8.ebuild
@@ -0,0 +1,90 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit bash-completion-r1 go-module systemd
+
+DESCRIPTION="production-grade container orchestration"
+HOMEPAGE="https://kubernetes.io;
+SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+AGENT="kubelet"
+CLI="kubeadm kubectl"
+SERVICES="kube-apiserver kube-controller-manager kube-proxy kube-scheduler"
+IUSE="hardened"
+for x in ${AGENT} ${CLI} ${SERVICES}; do
+   IUSE+=" +${x}"
+done
+
+BDEPEND=">=dev-lang/go-1.13"
+COMMON_DEPEND="
+   kube-apiserver? (
+   acct-group/kube-apiserver
+   acct-user/kube-apiserver
+   )
+   kube-controller-manager? (
+   acct-group/kube-controller-manager
+   acct-user/kube-controller-manager
+   )
+   kube-scheduler? (
+   acct-group/kube-scheduler
+   acct-user/kube-scheduler
+   )"
+DEPEND="${COMMON_DEPEND}"
+RDEPEND="${COMMON_DEPEND}
+   kube-proxy? ( net-firewall/conntrack-tools )
+   !sys-cluster/kubeadm
+   !sys-cluster/kubectl
+   !sys-cluster/kubelet
+   !sys-cluster/kube-apiserver
+   !sys-cluster/kube-controller-manager
+   !sys-cluster/kube-proxy
+   !sys-cluster/kube-scheduler"
+
+RESTRICT+=" test"
+
+src_compile() {
+   local x
+   for x in ${AGENT} ${CLI} ${SERVICES}; do
+   use $x || continue
+   CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \
+   emake -j1 GOFLAGS=-v GOLDFLAGS="" LDFLAGS="" 
WHAT=cmd/${x}
+   done
+}
+
+src_install() {
+   local x
+   for x in ${AGENT} ${CLI} ${SERVICES}; do
+   use $x || continue
+   dobin _output/bin/${x}
+   if has ${x} ${CLI}; then
+   _output/bin/${x} completion bash > ${x}.bash || die
+   _output/bin/${x} completion zsh > ${x}.zsh || die
+   newbashcomp ${x}.bash ${x}
+   insinto /usr/share/zsh/site-functions
+   newins ${x}.zsh _${x}
+   continue
+   fi
+   newinitd "${FILESDIR}"/${x}.initd ${x}
+   newconfd "${FILESDIR}"/${x}.confd ${x}
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}"/${x}.logrotated ${x}
+   keepdir /var/log/${x}
+   if [[ "$x" =~ kubelet ]]; then
+   systemd_dounit "${FILESDIR}"/${x}.service
+   insinto /etc/kubernetes
+   newins "${FILESDIR}"/${x}.env ${x}.env
+   keepdir /etc/kubernetes/manifests
+   fi
+   if [[ $x =~ kubelet|kube-proxy ]]; then
+   keepdir /var/lib/${x}
+   fi
+   if [[ $x =~ .*apiserver|.*controller-manager|.*scheduler ]]; 
then
+   fowners ${x}:${x} /var/log/${x}
+   fi
+   done
+}



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

2020-03-31 Thread Piotr Karbowski
commit: 111ff3aa2ac284e5d517af911184056378b5a8be
Author: Piotr Karbowski  gentoo  org>
AuthorDate: Tue Mar 31 20:49:18 2020 +
Commit: Piotr Karbowski  gentoo  org>
CommitDate: Tue Mar 31 20:50:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=111ff3aa

dev-libs/ncnn-20200226: add missing library dependency.

Closes: https://bugs.gentoo.org/715668
Signed-off-by: Piotr Karbowski  gentoo.org>

 dev-libs/ncnn/ncnn-20200226.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-libs/ncnn/ncnn-20200226.ebuild 
b/dev-libs/ncnn/ncnn-20200226.ebuild
index ac9c8320e99..50685e1b06c 100644
--- a/dev-libs/ncnn/ncnn-20200226.ebuild
+++ b/dev-libs/ncnn/ncnn-20200226.ebuild
@@ -17,7 +17,8 @@ IUSE=""
 
 DEPEND="
dev-util/glslang
-   dev-util/vulkan-headers"
+   dev-util/vulkan-headers
+   media-libs/vulkan-loader"
 
 RDEPEND="${DEPEND}"
 BDEPEND=""



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

2020-03-31 Thread Matt Turner
commit: 266d203d051c217d125e68e148e0283702c7156b
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Mar 31 20:10:06 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Mar 31 20:44:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=266d203d

media-libs/waffle: Version bump to 1.6.1

Signed-off-by: Matt Turner  gentoo.org>

 media-libs/waffle/Manifest|  1 +
 media-libs/waffle/waffle-1.6.1.ebuild | 64 +++
 2 files changed, 65 insertions(+)

diff --git a/media-libs/waffle/Manifest b/media-libs/waffle/Manifest
index 0b0146e39dc..514148b1a6d 100644
--- a/media-libs/waffle/Manifest
+++ b/media-libs/waffle/Manifest
@@ -1 +1,2 @@
 DIST waffle-1.6.0.tar.xz 224400 BLAKE2B 
458add99b346bd75dc757243b9e7db6ac269fb2c1e488333d921c640e10efd182e51e8a5e0312d334593033936adf047fc2339d21e675654d89d66edfb8922b3
 SHA512 
c8796ab8adf968df2c5c88e2941c83955fe41e87eb2b75b6a5cc61b0d0c06eaa44df2f255f573a51816036dc8bc3ec63f3fb51ccfb7efbfe83cdd50b3f1be13f
+DIST waffle-1.6.1.tar.xz 227152 BLAKE2B 
360782636809fa3716589e5c3f2d365ce2a916f3da4dde7ec271ce7e142f94160388f9ae12f1ef0ea79890f45eba9d6ef536e12861ee44cbd88282e3c4f01f52
 SHA512 
1d5839d517d1067efea163ffd76c05f32f30c3ef0f42dfa1b3a9830d4377829cce368d28889ec5a3be639a5e81db2fb4833d98eafc5ffa5e27578ff11977258f

diff --git a/media-libs/waffle/waffle-1.6.1.ebuild 
b/media-libs/waffle/waffle-1.6.1.ebuild
new file mode 100644
index 000..b508b016a13
--- /dev/null
+++ b/media-libs/waffle/waffle-1.6.1.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+if [[ ${PV} = ** ]]; then
+   EGIT_REPO_URI="https://gitlab.freedesktop.org/mesa/${PN};
+   GIT_ECLASS="git-r3"
+else
+   
SRC_URI="https://gitlab.freedesktop.org/mesa/${PN}/-/raw/website/files/release/${P}/${P}.tar.xz;
+   KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
+fi
+inherit meson multilib-minimal ${GIT_ECLASS}
+
+DESCRIPTION="Library that allows selection of GL API and of window system at 
runtime"
+HOMEPAGE="http://www.waffle-gl.org/ https://gitlab.freedesktop.org/mesa/waffle;
+
+LICENSE="BSD-2"
+SLOT="0"
+IUSE="doc +egl +gbm wayland X"
+RESTRICT="test" # gl_basic tests don't work when run from portage
+
+RDEPEND="
+   >=media-libs/mesa-9.1.6[egl?,gbm?,${MULTILIB_USEDEP}]
+   >=virtual/opengl-7.0-r1[${MULTILIB_USEDEP}]
+   >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
+   >=x11-libs/libxcb-1.9.1[${MULTILIB_USEDEP}]
+   gbm? ( >=virtual/libudev-208:=[${MULTILIB_USEDEP}] )
+   wayland? ( >=dev-libs/wayland-1.10[${MULTILIB_USEDEP}] )
+"
+DEPEND="${RDEPEND}
+   >=x11-base/xcb-proto-1.8-r3[${MULTILIB_USEDEP}]
+"
+BDEPEND="
+   dev-libs/libxslt
+   app-text/docbook-xml-dtd:4.2
+"
+
+MULTILIB_CHOST_TOOLS=(
+   /usr/bin/wflinfo$(get_exeext)
+)
+
+multilib_src_configure() {
+   local emesonargs=(
+   $(meson_feature X glx)
+   $(meson_feature wayland)
+   $(meson_feature X x11_egl)
+   $(meson_feature gbm)
+   $(meson_feature egl surfaceless_egl)
+   -Dbuild-manpages=true
+   -Dbuild-tests=false
+   )
+   meson_src_configure
+}
+
+multilib_src_compile() {
+   meson_src_compile
+}
+
+multilib_src_install() {
+   meson_src_install
+
+   ! use doc && rm -rf "${D}"/usr/share/doc/waffle1
+}



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

2020-03-31 Thread Matt Turner
commit: 8b0fd31eb83227c1eaaf9524eef9906454ea7f7a
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Mar 31 20:35:15 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Mar 31 20:44:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b0fd31e

media-libs/waffle: Remove unnecessary functions

Signed-off-by: Matt Turner  gentoo.org>

 media-libs/waffle/waffle-.ebuild | 9 -
 1 file changed, 9 deletions(-)

diff --git a/media-libs/waffle/waffle-.ebuild 
b/media-libs/waffle/waffle-.ebuild
index 6080dd579e2..b508b016a13 100644
--- a/media-libs/waffle/waffle-.ebuild
+++ b/media-libs/waffle/waffle-.ebuild
@@ -40,11 +40,6 @@ MULTILIB_CHOST_TOOLS=(
/usr/bin/wflinfo$(get_exeext)
 )
 
-src_unpack() {
-   default
-   [[ $PV = * ]] && git-r3_src_unpack
-}
-
 multilib_src_configure() {
local emesonargs=(
$(meson_feature X glx)
@@ -62,10 +57,6 @@ multilib_src_compile() {
meson_src_compile
 }
 
-multilib_src_test() {
-   meson_src_test
-}
-
 multilib_src_install() {
meson_src_install
 



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

2020-03-31 Thread Matt Turner
commit: 65610136a0d399107014dc084c1e24f7e5bf4ef2
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Mar 31 20:31:06 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Mar 31 20:44:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65610136

media-libs/waffle: Enable egl and gbm by default

Signed-off-by: Matt Turner  gentoo.org>

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

diff --git a/media-libs/waffle/waffle-.ebuild 
b/media-libs/waffle/waffle-.ebuild
index 7c8183c35ea..4b2918009cf 100644
--- a/media-libs/waffle/waffle-.ebuild
+++ b/media-libs/waffle/waffle-.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="http://www.waffle-gl.org/ 
https://gitlab.freedesktop.org/mesa/waffle;
 
 LICENSE="BSD-2"
 SLOT="0"
-IUSE="doc egl gbm wayland X"
+IUSE="doc +egl +gbm wayland X"
 RESTRICT="test" # gl_basic tests don't work when run from portage
 
 RDEPEND="



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

2020-03-31 Thread Matt Turner
commit: 89d3f095a715acb04ec227287feb8dd2a3b77563
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Mar 31 20:31:30 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Mar 31 20:44:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89d3f095

media-libs/waffle: Bump wayland dependency

Signed-off-by: Matt Turner  gentoo.org>

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

diff --git a/media-libs/waffle/waffle-.ebuild 
b/media-libs/waffle/waffle-.ebuild
index 4b2918009cf..4ae9a9bbcf9 100644
--- a/media-libs/waffle/waffle-.ebuild
+++ b/media-libs/waffle/waffle-.ebuild
@@ -26,7 +26,7 @@ RDEPEND="
>=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
>=x11-libs/libxcb-1.9.1[${MULTILIB_USEDEP}]
gbm? ( >=virtual/libudev-208:=[${MULTILIB_USEDEP}] )
-   wayland? ( >=dev-libs/wayland-1.0.6[${MULTILIB_USEDEP}] )
+   wayland? ( >=dev-libs/wayland-1.10[${MULTILIB_USEDEP}] )
 "
 DEPEND="${RDEPEND}
>=x11-base/xcb-proto-1.8-r3[${MULTILIB_USEDEP}]



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

2020-03-31 Thread Matt Turner
commit: cffa307c1b846186f14e4fb3d64950b1ef7ad4b6
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Mar 31 20:30:51 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Mar 31 20:44:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cffa307c

media-libs/waffle: Update SRC_URI

Signed-off-by: Matt Turner  gentoo.org>

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

diff --git a/media-libs/waffle/waffle-.ebuild 
b/media-libs/waffle/waffle-.ebuild
index cf4f722c608..7c8183c35ea 100644
--- a/media-libs/waffle/waffle-.ebuild
+++ b/media-libs/waffle/waffle-.ebuild
@@ -7,7 +7,7 @@ if [[ ${PV} = ** ]]; then
EGIT_REPO_URI="https://gitlab.freedesktop.org/mesa/${PN};
GIT_ECLASS="git-r3"
 else
-   SRC_URI="http://www.waffle-gl.org/files/release/${P}/${P}.tar.xz;
+   
SRC_URI="https://gitlab.freedesktop.org/mesa/${PN}/-/raw/website/files/release/${P}/${P}.tar.xz;
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
 fi
 inherit meson multilib-minimal ${GIT_ECLASS}



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

2020-03-31 Thread Matt Turner
commit: 38e14beda0e6522c6907259a60633447d26bf6c5
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Mar 31 20:32:05 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Mar 31 20:44:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38e14bed

media-libs/waffle: Use IUSE=doc to control only dev docs

So wflinfo(1) is always installed. Also move dependencies to BDEPEND.

Signed-off-by: Matt Turner  gentoo.org>

 media-libs/waffle/waffle-.ebuild | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/media-libs/waffle/waffle-.ebuild 
b/media-libs/waffle/waffle-.ebuild
index 4ae9a9bbcf9..6080dd579e2 100644
--- a/media-libs/waffle/waffle-.ebuild
+++ b/media-libs/waffle/waffle-.ebuild
@@ -30,10 +30,10 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}
>=x11-base/xcb-proto-1.8-r3[${MULTILIB_USEDEP}]
-   doc? (
-   dev-libs/libxslt
-   app-text/docbook-xml-dtd:4.2
-   )
+"
+BDEPEND="
+   dev-libs/libxslt
+   app-text/docbook-xml-dtd:4.2
 "
 
 MULTILIB_CHOST_TOOLS=(
@@ -52,7 +52,7 @@ multilib_src_configure() {
$(meson_feature X x11_egl)
$(meson_feature gbm)
$(meson_feature egl surfaceless_egl)
-   $(meson_use doc build-manpages)
+   -Dbuild-manpages=true
-Dbuild-tests=false
)
meson_src_configure
@@ -69,5 +69,5 @@ multilib_src_test() {
 multilib_src_install() {
meson_src_install
 
-   rm -rf "${D}"/usr/share/doc/waffle1
+   ! use doc && rm -rf "${D}"/usr/share/doc/waffle1
 }



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2020-03-31 Thread Matt Turner
commit: 4ed11e592c4c57a2c5c18159b9dff734df5495e7
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Mar 31 20:36:52 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Mar 31 20:44:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ed11e59

sys-fs/squashfs-tools-ng: Version bump to 0.9

Signed-off-by: Matt Turner  gentoo.org>

 sys-fs/squashfs-tools-ng/Manifest  |  1 +
 .../squashfs-tools-ng/squashfs-tools-ng-0.9.ebuild | 51 ++
 2 files changed, 52 insertions(+)

diff --git a/sys-fs/squashfs-tools-ng/Manifest 
b/sys-fs/squashfs-tools-ng/Manifest
index 9ec65d75dbf..2ad1b501280 100644
--- a/sys-fs/squashfs-tools-ng/Manifest
+++ b/sys-fs/squashfs-tools-ng/Manifest
@@ -1,2 +1,3 @@
 DIST squashfs-tools-ng-0.7.tar.xz 372956 BLAKE2B 
5fd0849c8cb0255ea56edc5b5cdc771363f5ca038f4306bb7d816ff26ce23cbd4f4652ef8ae497b8c9fe1ec09f9ebcfcf13aeb6b99b97db80a95018c25d4a3a6
 SHA512 
e53d7b64e68a40b49667b65d9fa8f12e977e8ca923c2fe9ce1e1def2745573f8607f7dee7ae6c06496489ef721c4c500ec40513ea5f6bd3ad4bb3a7796972b8e
 DIST squashfs-tools-ng-0.8.tar.xz 1004616 BLAKE2B 
5d347eef252886e7750da306f038494a15660350aca7b93aaf85a8411882489d8855c771e719a68b025f5c15fdc8b0d30727dde0884c5982460ff85d106fcd37
 SHA512 
7a533c7f9f21f717718a9ce5d775cf297c2e8edb6f121741b14692b52cbb6e3d7fe5cd59525222f7f9617440ea2adb2acec4dda3252abf3bebc689905b9fdc20
+DIST squashfs-tools-ng-0.9.tar.xz 1020728 BLAKE2B 
4f6672aecfa1f664198465154ad1d1ba92f741bcad576f90b58cdc982cc8a20d21dc7cfcb825604e2801ce187d5f984d55131c04859de0d7e67f515cddd781ac
 SHA512 
6394cb851828f110ed6a3ab17923b214b79b8bb5550069407839da62e5316459d7f564cb31211c849508b9664f4f1f9030ce5f64d5c8649b8a73c3a869ab22d0

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-0.9.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-0.9.ebuild
new file mode 100644
index 000..79c567828dd
--- /dev/null
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-0.9.ebuild
@@ -0,0 +1,51 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A new set of tools for working with SquashFS images"
+HOMEPAGE="https://github.com/AgentD/squashfs-tools-ng;
+if [[ ${PV} = * ]]; then
+   inherit autotools git-r3
+   EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
+else
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+   SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
+fi
+
+LICENSE="LGPL-3+ tools? ( GPL-3+ )"
+SLOT="0"
+IUSE="lz4 lzo selinux +tools +xz zstd"
+
+DEPEND="
+   sys-libs/zlib:=
+   lz4? ( app-arch/lz4:= )
+   lzo? ( dev-libs/lzo:= )
+   xz?  ( app-arch/xz-utils:= )
+   selinux? ( sys-libs/libselinux:= )
+   zstd?( app-arch/zstd:= )
+"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   default
+   [[ ${PV} == "" ]] && eautoreconf
+}
+
+src_configure() {
+   local myconf=(
+   --disable-static
+   $(use_with lz4)
+   $(use_with lzo)
+   $(use_with selinux)
+   $(use_with tools)
+   $(use_with xz)
+   $(use_with zstd)
+   )
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name "*.la" -delete || die
+}



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

2020-03-31 Thread Sergei Trofimovich
commit: b8559a6fdd1f86728c06d316871a9c74bde1d0a0
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Mar 31 20:36:55 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Mar 31 20:36:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8559a6f

dev-util/diffoscope: DISTUTILS_USE_SETUPTOOLS=rdepend

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-util/diffoscope/diffoscope-138.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-util/diffoscope/diffoscope-138.ebuild 
b/dev-util/diffoscope/diffoscope-138.ebuild
index 78434bd21e0..a677a10243a 100644
--- a/dev-util/diffoscope/diffoscope-138.ebuild
+++ b/dev-util/diffoscope/diffoscope-138.ebuild
@@ -4,6 +4,7 @@
 EAPI=7
 
 PYTHON_COMPAT=( python3_{6,7} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
 inherit distutils-r1
 
 DESCRIPTION="Will try to get to the bottom of what makes files or directories 
different"



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

2020-03-31 Thread Sergei Trofimovich
commit: c560796d2db1bb81c253984d0e2bc0bbe9aee42c
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Mar 31 20:28:54 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Mar 31 20:32:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c560796d

dev-util/diffoscope: bump up to 138

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-util/diffoscope/Manifest  |  1 +
 dev-util/diffoscope/diffoscope-138.ebuild | 66 +++
 2 files changed, 67 insertions(+)

diff --git a/dev-util/diffoscope/Manifest b/dev-util/diffoscope/Manifest
index 243041e07df..dbcc2dd6c42 100644
--- a/dev-util/diffoscope/Manifest
+++ b/dev-util/diffoscope/Manifest
@@ -1 +1,2 @@
 DIST diffoscope-137.tar.gz 1557283 BLAKE2B 
d4b59174eec5919ade87fa04878c469a87bb31407c35eac9a21b13b36fd7b15ca0cb5cdf38dd25c1e964db1987579c74b595b4fd38d2f3e5a028f64176f73202
 SHA512 
6faa0675cd203e3320071dbf60a14110cb3674984bce9edab40e28b17769cb847179973fe55e0f9a78a3d6bf903e259c432225ae31e7e4f60ece252ac9cac20c
+DIST diffoscope-138.tar.gz 1567753 BLAKE2B 
078a61eea53e0d0a66a862ac2c86889ddb95ddb8ccdb2b58b6a8b7e9ab1a3d5550511f73e7187a0539a974f257db6da79ad02b96e179952663f11e50cef23f12
 SHA512 
7dbc80d9135aba48e4f83b968e39f26e39f701b1ac1e6aaa2d9a6e18f24c1387b49d46067d2b2f2a76421752a8ac06d070cf660afb4a88db79f19339b327c485

diff --git a/dev-util/diffoscope/diffoscope-138.ebuild 
b/dev-util/diffoscope/diffoscope-138.ebuild
new file mode 100644
index 000..78434bd21e0
--- /dev/null
+++ b/dev-util/diffoscope/diffoscope-138.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7} )
+inherit distutils-r1
+
+DESCRIPTION="Will try to get to the bottom of what makes files or directories 
different"
+HOMEPAGE="https://diffoscope.org/ https://pypi.org/project/diffoscope/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="acl binutils bzip2 libcaca colord cpio +diff docx dtc e2fsprogs file
+find gettext gif gpg gzip haskell hex imagemagick iso java llvm
+mono opendocument pascal pdf postscript R rpm sqlite squashfs
+ssh tar tcpdump xz zip zstd"
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+RDEPEND="dev-python/python-magic[${PYTHON_USEDEP}]
+   dev-python/libarchive-c[${PYTHON_USEDEP}]
+   dev-python/distro[${PYTHON_USEDEP}]
+   acl? ( sys-apps/acl )
+   binutils? ( sys-devel/binutils )
+   bzip2? ( app-arch/bzip2 )
+   libcaca? ( media-libs/libcaca )
+   colord? ( x11-misc/colord )
+   cpio? ( app-arch/cpio )
+   diff? ( sys-apps/diffutils )
+   docx? ( app-text/docx2txt )
+   dtc? ( sys-apps/dtc )
+   e2fsprogs? ( sys-fs/e2fsprogs )
+   file? ( sys-apps/file )
+   find? ( sys-apps/findutils )
+   gettext? ( sys-devel/gettext )
+   gif? ( media-libs/giflib )
+   gpg? ( app-crypt/gnupg )
+   gzip? ( app-arch/gzip )
+   haskell? ( dev-lang/ghc )
+   hex? ( app-editors/vim-core )
+   imagemagick? ( media-gfx/imagemagick )
+   iso? ( virtual/cdrtools )
+   java? ( virtual/jdk )
+   llvm? ( sys-devel/llvm )
+   mono? ( dev-lang/mono )
+   opendocument? ( app-text/odt2txt )
+   pascal? ( dev-lang/fpc )
+   pdf? (
+   app-text/pdftk
+   app-text/poppler
+   dev-python/PyPDF2[${PYTHON_USEDEP}]
+   )
+   postscript? ( app-text/ghostscript-gpl )
+   R? ( dev-lang/R )
+   rpm? ( app-arch/rpm )
+   sqlite? ( dev-db/sqlite:3 )
+   squashfs? ( sys-fs/squashfs-tools )
+   ssh? ( net-misc/openssh )
+   tar? ( app-arch/tar )
+   tcpdump? ( net-analyzer/tcpdump )
+   xz? ( app-arch/xz-utils )
+   zip? ( app-arch/unzip )
+   zstd? ( app-arch/zstd )
+"



[gentoo-commits] repo/proj/guru:master commit in: dev-python/aiohttp-cors/, dev-python/aiohttp-cors/files/

2020-03-31 Thread Andrew Ammerlaan
commit: 41f57b145a777f4f247b1ad541f663d50c081a0a
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Tue Mar 31 19:57:14 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Tue Mar 31 19:57:14 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=41f57b14

dev-python/aiohttp-cors: add patch for py3_7

https://github.com/aio-libs/aiohttp-cors/pull/278

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan  riseup.net>

 dev-python/aiohttp-cors/aiohttp-cors-0.7.0.ebuild  |  7 ---
 .../files/aiohttp-cors-0.7.0-py3_7.patch   | 22 ++
 2 files changed, 26 insertions(+), 3 deletions(-)

diff --git a/dev-python/aiohttp-cors/aiohttp-cors-0.7.0.ebuild 
b/dev-python/aiohttp-cors/aiohttp-cors-0.7.0.ebuild
index bcc2930..4e87a24 100644
--- a/dev-python/aiohttp-cors/aiohttp-cors-0.7.0.ebuild
+++ b/dev-python/aiohttp-cors/aiohttp-cors-0.7.0.ebuild
@@ -3,14 +3,13 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_6 )
+PYTHON_COMPAT=( python3_{6,7} )
 
 inherit distutils-r1
 
 DESCRIPTION="Implements CORS support for aiohttp asyncio-powered asynchronous 
HTTP server"
 HOMEPAGE="https://github.com/aio-libs/aiohttp-cors;
 SRC_URI="https://github.com/aio-libs/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-EGIT_REPO_URI="https://github.com/aio-libs/aiohttp-cors;
 
 LICENSE="Apache-2.0"
 SLOT="0"
@@ -25,8 +24,10 @@ BDEPEND="
 
 distutils_enable_tests pytest
 
+# https://github.com/aio-libs/aiohttp-cors/pull/278
 PATCHES=(
-   "${FILESDIR}"/aiohttp-cors-0.7.0-tests.patch
+   "${FILESDIR}/${P}-tests.patch"
+   "${FILESDIR}/${P}-py3_7.patch"
 )
 
 src_prepare() {

diff --git a/dev-python/aiohttp-cors/files/aiohttp-cors-0.7.0-py3_7.patch 
b/dev-python/aiohttp-cors/files/aiohttp-cors-0.7.0-py3_7.patch
new file mode 100644
index 000..e09119c
--- /dev/null
+++ b/dev-python/aiohttp-cors/files/aiohttp-cors-0.7.0-py3_7.patch
@@ -0,0 +1,22 @@
+From e64b95848f3253157d831f4934841fceeaf9b2e3 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= 
+Date: Thu, 14 Nov 2019 12:54:47 +0100
+Subject: [PATCH] Test instance type by isinstance, not issubclass
+
+Fixes https://github.com/aio-libs/aiohttp-cors/issues/277
+---
+ tests/unit/test_cors_config.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/tests/unit/test_cors_config.py b/tests/unit/test_cors_config.py
+index 817410e..d494e20 100644
+--- a/tests/unit/test_cors_config.py
 b/tests/unit/test_cors_config.py
+@@ -103,7 +103,7 @@ def test_static_resource(app, cors):
+ "/file", "/", name="dynamic_named_route")
+ assert len(app.router.keys()) == 1
+ for resource in list(app.router.resources()):
+-if issubclass(resource, web.StaticResource):
++if isinstance(resource, web.StaticResource):
+ cors.add(resource)
+ assert len(app.router.keys()) == 1



[gentoo-commits] repo/proj/guru:master commit in: dev-python/aiohttp-cors/files/, dev-python/aiohttp-cors/

2020-03-31 Thread Andrew Ammerlaan
commit: 16bc3db95e54f77749c40803fc26bb9ea21d0ba6
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Tue Mar 31 18:03:56 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Tue Mar 31 18:30:12 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=16bc3db9

dev-python/aiohttp-cors: treecleaned package

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-python/aiohttp-cors/Manifest   |  1 +
 dev-python/aiohttp-cors/aiohttp-cors-0.7.0.ebuild  | 35 
 .../files/aiohttp-cors-0.7.0-tests.patch   | 66 ++
 dev-python/aiohttp-cors/metadata.xml   |  8 +++
 4 files changed, 110 insertions(+)

diff --git a/dev-python/aiohttp-cors/Manifest b/dev-python/aiohttp-cors/Manifest
new file mode 100644
index 000..4912de9
--- /dev/null
+++ b/dev-python/aiohttp-cors/Manifest
@@ -0,0 +1 @@
+DIST aiohttp-cors-0.7.0.tar.gz 39728 BLAKE2B 
747499856272f551cf8e2e0911ff7cbb2c7cb8a1f3159327dd8f0d40cabbbd9713a1a9e30ef9c99f3f9642567c99025e049db837c89f907d6698a27005ac2632
 SHA512 
72e0b365b952c08a02c1123d7672cfea01063e2ff01743a71e10f804d22178edc0f1c6b7f87b7ed484ca7c24e89a32de90d0d279f2f5c060427319182f9bdd3b

diff --git a/dev-python/aiohttp-cors/aiohttp-cors-0.7.0.ebuild 
b/dev-python/aiohttp-cors/aiohttp-cors-0.7.0.ebuild
new file mode 100644
index 000..bcc2930
--- /dev/null
+++ b/dev-python/aiohttp-cors/aiohttp-cors-0.7.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_6 )
+
+inherit distutils-r1
+
+DESCRIPTION="Implements CORS support for aiohttp asyncio-powered asynchronous 
HTTP server"
+HOMEPAGE="https://github.com/aio-libs/aiohttp-cors;
+SRC_URI="https://github.com/aio-libs/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+EGIT_REPO_URI="https://github.com/aio-libs/aiohttp-cors;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND=">=dev-python/aiohttp-1.1.1[${PYTHON_USEDEP}]"
+BDEPEND="
+   test? (
+   dev-python/pytest-aiohttp[${PYTHON_USEDEP}]
+   dev-python/selenium[${PYTHON_USEDEP}]
+   )"
+
+distutils_enable_tests pytest
+
+PATCHES=(
+   "${FILESDIR}"/aiohttp-cors-0.7.0-tests.patch
+)
+
+src_prepare() {
+   sed -i -e '/^addopts=/d' setup.cfg || die
+   distutils-r1_src_prepare
+}

diff --git a/dev-python/aiohttp-cors/files/aiohttp-cors-0.7.0-tests.patch 
b/dev-python/aiohttp-cors/files/aiohttp-cors-0.7.0-tests.patch
new file mode 100644
index 000..e6480b5
--- /dev/null
+++ b/dev-python/aiohttp-cors/files/aiohttp-cors-0.7.0-tests.patch
@@ -0,0 +1,66 @@
+From fed5542836c6afa925f3b607d544a92307c5e09f Mon Sep 17 00:00:00 2001
+From: Andrew Svetlov 
+Date: Mon, 15 Oct 2018 21:32:48 +0300
+Subject: [PATCH] Fix tests
+
+---
+ tests/integration/test_real_browser.py | 18 --
+ tests/unit/test_cors_config.py |  5 ++---
+ 2 files changed, 10 insertions(+), 13 deletions(-)
+
+diff --git a/tests/integration/test_real_browser.py 
b/tests/integration/test_real_browser.py
+index a5c9030..5dff79a 100644
+--- a/tests/integration/test_real_browser.py
 b/tests/integration/test_real_browser.py
+@@ -193,22 +193,20 @@ class IntegrationServers:
+ 
+ # Start servers.
+ for server_name, server_descr in self.servers.items():
+-handler = server_descr.app.make_handler()
+-server = await self.loop.create_server(
+-handler,
+-sock=server_sockets[server_name])
+-server_descr.handler = handler
+-server_descr.server = server
++runner = web.AppRunner(server_descr.app)
++await runner.setup()
++site = web.SockSite(runner, server_sockets[server_name])
++await site.start()
++server_descr.runner = runner
+ 
+ self._logger.info("Started server '%s' at '%s'",
+   server_name, server_descr.url)
+ 
+ async def stop_servers(self):
+ for server_descr in self.servers.values():
+-server_descr.server.close()
+-await server_descr.handler.shutdown()
+-await server_descr.server.wait_closed()
+-await server_descr.app.cleanup()
++runner = server_descr.runner
++await runner.shutdown()
++await runner.cleanup()
+ 
+ self.servers = {}
+ 
+diff --git a/tests/unit/test_cors_config.py b/tests/unit/test_cors_config.py
+index 5b8d8f3..817410e 100644
+--- a/tests/unit/test_cors_config.py
 b/tests/unit/test_cors_config.py
+@@ -58,11 +58,10 @@ def options_route(app):
+ "OPTIONS", "/options_path", _handler)
+ 
+ 
+-def test_add_options_route(cors, options_route):
++def test_add_options_route(app, cors, options_route):
+ """Test configuring OPTIONS route"""
+-
+ with pytest.raises(ValueError,
+-  

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

2020-03-31 Thread Ulrich Müller
commit: 56afe83505fbba9ba4548582186d67d9d1d70e25
Author: Ulrich Müller  gentoo  org>
AuthorDate: Tue Mar 31 19:01:38 2020 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Tue Mar 31 19:01:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56afe835

profiles/features/musl: Add info on alternatives to mask message.

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

 profiles/features/musl/package.mask | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/profiles/features/musl/package.mask 
b/profiles/features/musl/package.mask
index c04dbe306dc..0bc23619ffd 100644
--- a/profiles/features/musl/package.mask
+++ b/profiles/features/musl/package.mask
@@ -3,6 +3,8 @@
 
 # Ulrich Müller (2020-03-31)
 # Not ported to musl, bug #715642.
+# See https://wiki.gentoo.org/wiki/Project:Emacs/Emacs-like_editors
+# for alternatives.
 app-editors/jasspa-microemacs
 
 # Sergei Trofimovich  (2020-03-21)



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

2020-03-31 Thread Ulrich Müller
commit: 217752c545194c259a161575491975abdc2b7596
Author: Ulrich Müller  gentoo  org>
AuthorDate: Tue Mar 31 18:51:02 2020 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Tue Mar 31 18:51:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=217752c5

profiles/features/musl: Mask app-editors/jasspa-microemacs.

Bug: https://bugs.gentoo.org/715642
Signed-off-by: Ulrich Müller  gentoo.org>

 profiles/features/musl/package.mask | 4 
 1 file changed, 4 insertions(+)

diff --git a/profiles/features/musl/package.mask 
b/profiles/features/musl/package.mask
index cb7c6f88fac..070cbbebd35 100644
--- a/profiles/features/musl/package.mask
+++ b/profiles/features/musl/package.mask
@@ -1,6 +1,10 @@
 # Copyright 1999-2020 Gentoo Authors.
 # Distributed under the terms of the GNU General Public License v2
 
+# Ulrich Müller (2020-03-31)
+# Not ported to musl, bug #715642.
+app-editors/jasspa-microemacs
+
 # Sergei Trofimovich  (2020-03-21)
 # musl has no support for nss subsystem.
 sys-auth/libnss-nis



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

2020-03-31 Thread Ulrich Müller
commit: 2f13fa3fc7f6727e68113cd7f077c04fcd9d3ed6
Author: Ulrich Müller  gentoo  org>
AuthorDate: Tue Mar 31 18:52:16 2020 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Tue Mar 31 18:52:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f13fa3f

profiles/features/musl/package.mask: Fix header.

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

 profiles/features/musl/package.mask | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/profiles/features/musl/package.mask 
b/profiles/features/musl/package.mask
index 070cbbebd35..c04dbe306dc 100644
--- a/profiles/features/musl/package.mask
+++ b/profiles/features/musl/package.mask
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors.
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 # Ulrich Müller (2020-03-31)



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

2020-03-31 Thread Thomas Deutschmann
commit: de3a19eef1b42ad98ce140226954c2654a65c0d3
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Mar 31 18:39:26 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Mar 31 18:39:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de3a19ee

sys-kernel/gentoo-sources: mark ia64 stable to make CI happy

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Thomas Deutschmann  gentoo.org>

 sys-kernel/gentoo-sources/gentoo-sources-5.4.28.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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



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

2020-03-31 Thread Thomas Deutschmann
commit: 73a868c63912a8fe32e7db61250ff92d7917181d
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Mar 31 18:36:50 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Mar 31 18:39:58 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73a868c6

media-libs/openjpeg: ia64 marked stable to keep CI happy

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Thomas Deutschmann  gentoo.org>

 media-libs/openjpeg/openjpeg-2.3.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/openjpeg/openjpeg-2.3.1-r1.ebuild 
b/media-libs/openjpeg/openjpeg-2.3.1-r1.ebuild
index fb58d28a6ca..fd397f1d515 100644
--- a/media-libs/openjpeg/openjpeg-2.3.1-r1.ebuild
+++ b/media-libs/openjpeg/openjpeg-2.3.1-r1.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="https://github.com/uclouvain/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="BSD-2"
 SLOT="2/7" # based on SONAME
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 
~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 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc static-libs test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] proj/catalyst:master commit in: targets/support/

2020-03-31 Thread Matt Turner
commit: 6ea0ef2013c2137f7f1f6f1a5f675f42d2a16d64
Author: Christos Kotsi  gmail  com>
AuthorDate: Wed Apr 12 08:43:47 2017 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Mar 31 18:38:17 2020 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=6ea0ef20

targets: Simplify code with loops

Signed-off-by: Matt Turner  gentoo.org>

 targets/support/bootloader-setup.sh | 12 +---
 targets/support/livecdfs-update.sh  |  7 +++
 2 files changed, 8 insertions(+), 11 deletions(-)

diff --git a/targets/support/bootloader-setup.sh 
b/targets/support/bootloader-setup.sh
index 68e1355e..051adc28 100755
--- a/targets/support/bootloader-setup.sh
+++ b/targets/support/bootloader-setup.sh
@@ -191,15 +191,13 @@ case ${clst_hostarch} in
echo "prompt 1" >> ${icfg}
echo "display boot.msg" >> ${icfg}
echo "F1 kernels.msg" >> ${icfg}
-   echo "F2 F2.msg" >> ${icfg}
-   echo "F3 F3.msg" >> ${icfg}
-   echo "F4 F4.msg" >> ${icfg}
-   echo "F5 F5.msg" >> ${icfg}
-   echo "F6 F6.msg" >> ${icfg}
-   echo "F7 F7.msg" >> ${icfg}
+   for k in {2..7}
+   do
+   echo "F${k} F${k}.msg" >> ${icfg}
+   done
 
echo "Available kernels:" > ${kmsg}
-   for i in 2 3 4 5 6 7
+   for i in {2..7}
do
cp ${clst_sharedir}/livecd/files/x86-F$i.msg \
$1/isolinux/F$i.msg

diff --git a/targets/support/livecdfs-update.sh 
b/targets/support/livecdfs-update.sh
index 0f39eab0..4156624c 100755
--- a/targets/support/livecdfs-update.sh
+++ b/targets/support/livecdfs-update.sh
@@ -68,10 +68,9 @@ fi
 
 # Setup links for ethernet devices
 cd /etc/init.d
-ln -sf net.lo net.eth1
-ln -sf net.lo net.eth2
-ln -sf net.lo net.eth3
-ln -sf net.lo net.eth4
+for i in {1..4}; do
+   ln -sf net.lo net.eth${i}
+done
 
 # Add this for hwsetup/mkx86config
 mkdir -p /etc/sysconfig



[gentoo-commits] proj/catalyst:master commit in: targets/support/

2020-03-31 Thread Matt Turner
commit: 4e910d3734eaba7b8467a96a82098b8a7013dbc3
Author: Christos Kotsi  gmail  com>
AuthorDate: Wed Apr 12 08:43:49 2017 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Mar 31 18:38:20 2020 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=4e910d37

targets: Use mkdir -p

Signed-off-by: Matt Turner  gentoo.org>

 targets/support/netboot2-final.sh | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/targets/support/netboot2-final.sh 
b/targets/support/netboot2-final.sh
index ebd51878..e6566a1e 100755
--- a/targets/support/netboot2-final.sh
+++ b/targets/support/netboot2-final.sh
@@ -3,13 +3,11 @@
 source ${clst_shdir}/support/functions.sh
 source ${clst_shdir}/support/filesystem-functions.sh
 
-
 extract_kernels ${clst_target_path}/boot
 
 # Move kernel binaries to ${clst_target_path}/kernels, and
 # move everything else to ${clst_target_path}/kernels/misc
-mkdir ${clst_target_path}/kernels
-mkdir ${clst_target_path}/kernels/misc
+mkdir -p ${clst_target_path}/kernels/misc
 
 for x in ${clst_boot_kernel}; do
mv ${clst_target_path}/boot/${x} ${clst_target_path}/kernels



[gentoo-commits] proj/catalyst:master commit in: targets/livecd-stage2/, targets/support/

2020-03-31 Thread Matt Turner
commit: 858665d913d457ded107d01b132bf6af64cb3842
Author: Christos Kotsi  gmail  com>
AuthorDate: Wed Apr 12 08:43:44 2017 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Mar 31 18:38:13 2020 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=858665d9

targets: Combine some cp commands

Signed-off-by: Matt Turner  gentoo.org>

 targets/livecd-stage2/controller.sh | 12 +++-
 targets/support/livecdfs-update.sh  |  8 ++--
 2 files changed, 5 insertions(+), 15 deletions(-)

diff --git a/targets/livecd-stage2/controller.sh 
b/targets/livecd-stage2/controller.sh
index 166d1b0f..463c37e7 100755
--- a/targets/livecd-stage2/controller.sh
+++ b/targets/livecd-stage2/controller.sh
@@ -42,11 +42,7 @@ case $1 in
echo "${clst_livecd_type}. You should 
switch to using"
echo "generic-livecd instead."
fi
-   cp -pPR 
${clst_sharedir}/livecd/files/generic.motd.txt \
-   
${clst_sharedir}/livecd/files/universal.motd.txt \
-   
${clst_sharedir}/livecd/files/minimal.motd.txt \
-   
${clst_sharedir}/livecd/files/livecd.motd.txt \
-   ${clst_chroot_path}/etc
+   cp -pPR 
${clst_sharedir}/livecd/files/*.motd.txt ${clst_chroot_path}/etc
;;
*)
if [ -n "${clst_livecd_motd}" ]
@@ -133,8 +129,7 @@ case $1 in
exit 1
fi
fi
-   cp -f ${clst_snapshot_path} $1/snapshots
-   cp -f ${clst_snapshot_path}.DIGESTS $1/snapshots
+   cp -f ${clst_snapshot_path}{,.DIGESTS} 
$1/snapshots
;;
gentoo-release-livedvd)
targets="distfiles snapshots stages"
@@ -157,8 +152,7 @@ case $1 in
continue
;;
snapshots)
-   cp -f 
${clst_snapshot_path} $1/snapshots
-   cp -f 
${clst_snapshot_path}.DIGESTS $1/snapshots
+   cp -f 
${clst_snapshot_path}{,.DIGESTS} $1/snapshots
;;
stages)
### TODO: make this 
copy stages

diff --git a/targets/support/livecdfs-update.sh 
b/targets/support/livecdfs-update.sh
index 2a0a1f72..0f39eab0 100755
--- a/targets/support/livecdfs-update.sh
+++ b/targets/support/livecdfs-update.sh
@@ -264,8 +264,7 @@ case ${clst_livecd_type} in
USE="-* $(cat /var/db/pkg/sys-libs/glibc*/USE)" emerge -eqp 
@system | grep -e '^\[ebuild' | ${clst_sed} -e 's:^\[ebuild .\+\] ::' -e 's: 
.\+$::' > /usr/livecd/systempkgs.txt
 
# This is my hack to reduce tmpfs usage
-   cp -r ${clst_repo_basedir}/${clst_repo_name}/profiles 
/usr/livecd
-   cp -r ${clst_repo_basedir}/${clst_repo_name}/eclass /usr/livecd
+   cp -r ${clst_repo_basedir}/${clst_repo_name}/{profiles,eclass} 
/usr/livecd
rm -rf 
/usr/livecd/profiles/{co*,default-{1*,a*,b*,d*,h*,i*,m*,p*,s*,x*},g*,hardened-*,n*,x*}
mv -f /etc/gconf /usr/livecd
ln -sf /usr/livecd/gconf /etc/gconf
@@ -292,10 +291,7 @@ case ${clst_livecd_type} in
# Copy our installer icons
if [ -e 
/usr/share/applications/installer-gtk.desktop ]
then
-   cp -f 
/usr/share/applications/installer-gtk.desktop \
-   /home/${username}/Desktop
-   cp -f 
/usr/share/applications/installer-dialog.desktop \
-   /home/${username}/Desktop
+   cp -f 
/usr/share/applications/installer-{gtk,dialog}.desktop /home/${username}/Desktop
${clst_sed} -i -e \

's:Exec=installer-dialog:Exec=sudo installer-dialog:' \

/home/${username}/Desktop/installer-dialog.desktop



[gentoo-commits] proj/catalyst:master commit in: catalyst/arch/

2020-03-31 Thread Matt Turner
commit: 391ec5099ee6d0c678943b70641d2b3e3c82ced4
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Mar 31 14:57:20 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Mar 31 18:38:23 2020 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=391ec509

catalyst: Enable and fix CPU_FLAGS_X86

In commit be6d7f0b7f0a (use profile for CPU_FLAGS_X86 where appropriate)
we disabled setting CPU_FLAGS_X86 to avoid overriding the profile's
defaults (and in some cases, overriding incorrectly).

While that is undoubtedly the correct thing to do for the generic
classes (e.g., arch_amd64) it does not make sense for the classes
specific to a particular microarchitecture, unless we expect the
defaults of CPU_FLAGS_X86 to change in the future, which seems highly
unlikely.

It also is the wrong thing to do for x86, which does not have a default
CPU_FLAGS_X86.

Fixes: be6d7f0b7f0a (use profile for CPU_FLAGS_X86 where appropriate)
Signed-off-by: Matt Turner  gentoo.org>

 catalyst/arch/amd64.py | 14 +-
 catalyst/arch/x86.py   | 13 ++---
 2 files changed, 11 insertions(+), 16 deletions(-)

diff --git a/catalyst/arch/amd64.py b/catalyst/arch/amd64.py
index 73bf8b18..980be552 100644
--- a/catalyst/arch/amd64.py
+++ b/catalyst/arch/amd64.py
@@ -11,51 +11,47 @@ class arch_amd64(generic_amd64):
def __init__(self,myspec):
generic_amd64.__init__(self,myspec)
self.settings["COMMON_FLAGS"]="-O2 -pipe"
-   #lines like this appears to be trying to set the profile 
default, better to use the profile
-   
#self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","sse","sse2"]}
 
 class arch_nocona(generic_amd64):
"improved version of Intel Pentium 4 CPU with 64-bit extensions, MMX, 
SSE, SSE2 and SSE3 support"
def __init__(self,myspec):
generic_amd64.__init__(self,myspec)
self.settings["COMMON_FLAGS"]="-O2 -march=nocona -pipe"
-   
#self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","sse","sse2"]}
+   
self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","mmxext","sse","sse2","sse3"]}
 
-# Requires gcc 4.3 to use this class
 class arch_core2(generic_amd64):
"Intel Core 2 CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3 and 
SSSE3 support"
def __init__(self,myspec):
generic_amd64.__init__(self,myspec)
self.settings["COMMON_FLAGS"]="-O2 -march=core2 -pipe"
-   
#self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","sse","sse2","ssse3"]}
+   
self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","mmxext","sse","sse2","sse3","ssse3"]}
 
 class arch_k8(generic_amd64):
"generic k8, opteron and athlon64 support"
def __init__(self,myspec):
generic_amd64.__init__(self,myspec)
self.settings["COMMON_FLAGS"]="-O2 -march=k8 -pipe"
-   
#self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","sse","sse2","3dnow"]}
+   
self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","mmxext","3dnow","3dnowext","sse","sse2"]}
 
 class arch_k8_sse3(generic_amd64):
"improved versions of k8, opteron and athlon64 with SSE3 support"
def __init__(self,myspec):
generic_amd64.__init__(self,myspec)
self.settings["COMMON_FLAGS"]="-O2 -march=k8-sse3 -pipe"
-   
#self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","sse","sse2","3dnow"]}
+   
self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","mmxext","3dnow","3dnowext","sse","sse2","sse3"]}
 
 class arch_amdfam10(generic_amd64):
"AMD Family 10h core based CPUs with x86-64 instruction set support"
def __init__(self,myspec):
generic_amd64.__init__(self,myspec)
self.settings["COMMON_FLAGS"]="-O2 -march=amdfam10 -pipe"
-   
#self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","sse","sse2","3dnow"]}
+   
self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","mmxext","3dnow","3dnowext","sse","sse2","sse3","sse4a"]}
 
 class arch_x32(generic_amd64):
"builder class for generic x32 (Intel and AMD)"
def __init__(self,myspec):
generic_amd64.__init__(self,myspec)
self.settings["COMMON_FLAGS"]="-O2 -pipe"
-   
#self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","sse","sse2"]}
 
 def register():
"inform main catalyst program of the contents of this plugin"

diff --git a/catalyst/arch/x86.py b/catalyst/arch/x86.py
index de9142f7..4e50fea9 100644
--- a/catalyst/arch/x86.py
+++ b/catalyst/arch/x86.py
@@ -63,29 +63,28 @@ class arch_pentium3(generic_x86):
def __init__(self,myspec):
generic_x86.__init__(self,myspec)
self.settings["COMMON_FLAGS"]="-O2 -march=pentium3 -pipe"
-   

[gentoo-commits] repo/proj/guru:dev commit in: dev-python/aiohttp-cors/files/, dev-python/aiohttp-cors/

2020-03-31 Thread Alessandro Barbieri
commit: 16bc3db95e54f77749c40803fc26bb9ea21d0ba6
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Tue Mar 31 18:03:56 2020 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Tue Mar 31 18:30:12 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=16bc3db9

dev-python/aiohttp-cors: treecleaned package

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-python/aiohttp-cors/Manifest   |  1 +
 dev-python/aiohttp-cors/aiohttp-cors-0.7.0.ebuild  | 35 
 .../files/aiohttp-cors-0.7.0-tests.patch   | 66 ++
 dev-python/aiohttp-cors/metadata.xml   |  8 +++
 4 files changed, 110 insertions(+)

diff --git a/dev-python/aiohttp-cors/Manifest b/dev-python/aiohttp-cors/Manifest
new file mode 100644
index 000..4912de9
--- /dev/null
+++ b/dev-python/aiohttp-cors/Manifest
@@ -0,0 +1 @@
+DIST aiohttp-cors-0.7.0.tar.gz 39728 BLAKE2B 
747499856272f551cf8e2e0911ff7cbb2c7cb8a1f3159327dd8f0d40cabbbd9713a1a9e30ef9c99f3f9642567c99025e049db837c89f907d6698a27005ac2632
 SHA512 
72e0b365b952c08a02c1123d7672cfea01063e2ff01743a71e10f804d22178edc0f1c6b7f87b7ed484ca7c24e89a32de90d0d279f2f5c060427319182f9bdd3b

diff --git a/dev-python/aiohttp-cors/aiohttp-cors-0.7.0.ebuild 
b/dev-python/aiohttp-cors/aiohttp-cors-0.7.0.ebuild
new file mode 100644
index 000..bcc2930
--- /dev/null
+++ b/dev-python/aiohttp-cors/aiohttp-cors-0.7.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_6 )
+
+inherit distutils-r1
+
+DESCRIPTION="Implements CORS support for aiohttp asyncio-powered asynchronous 
HTTP server"
+HOMEPAGE="https://github.com/aio-libs/aiohttp-cors;
+SRC_URI="https://github.com/aio-libs/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+EGIT_REPO_URI="https://github.com/aio-libs/aiohttp-cors;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND=">=dev-python/aiohttp-1.1.1[${PYTHON_USEDEP}]"
+BDEPEND="
+   test? (
+   dev-python/pytest-aiohttp[${PYTHON_USEDEP}]
+   dev-python/selenium[${PYTHON_USEDEP}]
+   )"
+
+distutils_enable_tests pytest
+
+PATCHES=(
+   "${FILESDIR}"/aiohttp-cors-0.7.0-tests.patch
+)
+
+src_prepare() {
+   sed -i -e '/^addopts=/d' setup.cfg || die
+   distutils-r1_src_prepare
+}

diff --git a/dev-python/aiohttp-cors/files/aiohttp-cors-0.7.0-tests.patch 
b/dev-python/aiohttp-cors/files/aiohttp-cors-0.7.0-tests.patch
new file mode 100644
index 000..e6480b5
--- /dev/null
+++ b/dev-python/aiohttp-cors/files/aiohttp-cors-0.7.0-tests.patch
@@ -0,0 +1,66 @@
+From fed5542836c6afa925f3b607d544a92307c5e09f Mon Sep 17 00:00:00 2001
+From: Andrew Svetlov 
+Date: Mon, 15 Oct 2018 21:32:48 +0300
+Subject: [PATCH] Fix tests
+
+---
+ tests/integration/test_real_browser.py | 18 --
+ tests/unit/test_cors_config.py |  5 ++---
+ 2 files changed, 10 insertions(+), 13 deletions(-)
+
+diff --git a/tests/integration/test_real_browser.py 
b/tests/integration/test_real_browser.py
+index a5c9030..5dff79a 100644
+--- a/tests/integration/test_real_browser.py
 b/tests/integration/test_real_browser.py
+@@ -193,22 +193,20 @@ class IntegrationServers:
+ 
+ # Start servers.
+ for server_name, server_descr in self.servers.items():
+-handler = server_descr.app.make_handler()
+-server = await self.loop.create_server(
+-handler,
+-sock=server_sockets[server_name])
+-server_descr.handler = handler
+-server_descr.server = server
++runner = web.AppRunner(server_descr.app)
++await runner.setup()
++site = web.SockSite(runner, server_sockets[server_name])
++await site.start()
++server_descr.runner = runner
+ 
+ self._logger.info("Started server '%s' at '%s'",
+   server_name, server_descr.url)
+ 
+ async def stop_servers(self):
+ for server_descr in self.servers.values():
+-server_descr.server.close()
+-await server_descr.handler.shutdown()
+-await server_descr.server.wait_closed()
+-await server_descr.app.cleanup()
++runner = server_descr.runner
++await runner.shutdown()
++await runner.cleanup()
+ 
+ self.servers = {}
+ 
+diff --git a/tests/unit/test_cors_config.py b/tests/unit/test_cors_config.py
+index 5b8d8f3..817410e 100644
+--- a/tests/unit/test_cors_config.py
 b/tests/unit/test_cors_config.py
+@@ -58,11 +58,10 @@ def options_route(app):
+ "OPTIONS", "/options_path", _handler)
+ 
+ 
+-def test_add_options_route(cors, options_route):
++def test_add_options_route(app, cors, options_route):
+ """Test configuring OPTIONS route"""
+-
+ with pytest.raises(ValueError,
+-

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

2020-03-31 Thread Patrice Clement
commit: db6fe940274c722b5efe3957e66a0a830cace815
Author: Patrice Clement  gentoo  org>
AuthorDate: Tue Mar 31 18:18:09 2020 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Mar 31 18:18:53 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db6fe940

dev-lang/scala-bin: version bump.

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

 dev-lang/scala-bin/Manifest|  1 +
 dev-lang/scala-bin/scala-bin-2.13.1.ebuild | 76 ++
 2 files changed, 77 insertions(+)

diff --git a/dev-lang/scala-bin/Manifest b/dev-lang/scala-bin/Manifest
index 28df49eaab8..f631039e862 100644
--- a/dev-lang/scala-bin/Manifest
+++ b/dev-lang/scala-bin/Manifest
@@ -1 +1,2 @@
 DIST scala-2.12.4.tgz 19741785 BLAKE2B 
e782a4ac000ffcebc2faaac077cbb3cc13f8cc56deb9b3a78f1bddd3d0e6fd282d70f10cfef0780e4ab6a13e8d51b0401f84829b7974bd8823aecab54476ab02
 SHA512 
e6a9e11974d3bacc5f5dcdfdb379bdd1b430b1682141bed688f02f8b49395aff7c55cdb8da3319dff55da7bd7cfe7545e9b26db9558316ac8b3e29f6bb2c6d74
+DIST scala-2.13.1.tgz 19685743 BLAKE2B 
aaff6db71023f539d08da521ab1ff505a626605d9c298472d0c2e98a9a13d6b8440e89cf5ff4a53b7b9bcc48cbc1e3b55cc253563f54f18c369e13fc8c00a6c2
 SHA512 
028aa237c471cada1501cd5764b3c384c3f50e9fc327cddd3fa7c79e9cc909d86bf84d5fc28103054600f879a60c546fc45a837cdca54964eb57ec77f9c1613e

diff --git a/dev-lang/scala-bin/scala-bin-2.13.1.ebuild 
b/dev-lang/scala-bin/scala-bin-2.13.1.ebuild
new file mode 100644
index 000..27531fa3d55
--- /dev/null
+++ b/dev-lang/scala-bin/scala-bin-2.13.1.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+JAVA_PKG_IUSE="doc"
+
+inherit java-pkg-2
+
+MY_PN="${PN%-*}"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="The Scala Programming Language"
+HOMEPAGE="http://scala.epfl.ch/;
+SRC_URI="http://downloads.lightbend.com/${MY_PN}/${PV}/${MY_P}.tgz;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=virtual/jre-1.6
+   !dev-lang/scala"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   default
+   ebegin 'Cleaning .bat files'
+   rm -f bin/*.bat || die
+   eend $?
+
+   ebegin 'Patching SCALA_HOME variable in bin/ directory'
+   local f
+   for f in bin/*; do
+   sed -i -e 's#\(SCALA_HOME\)=.*#\1=/usr/share/scala-bin#' $f || 
die
+   done
+   eend $?
+}
+
+src_compile() {
+   :;
+}
+
+src_install() {
+   ebegin 'Installing bin scripts'
+   dobin bin/*
+   eend $?
+
+   ebegin 'Installing jar files'
+   cd lib/ || die
+
+   # Unversion those libs.
+   java-pkg_newjar jline-*.jar jline.jar
+   java-pkg_newjar scalap-*.jar scalap.jar
+
+   # Install these the usual way.
+   java-pkg_dojar scala-compiler.jar
+   java-pkg_dojar scala-library.jar
+   java-pkg_dojar scala-reflect.jar
+
+   eend $?
+
+   cd ../ || die
+
+   ebegin 'Installing man pages'
+   doman man/man1/*.1
+   eend $?
+
+   if use doc; then
+   ebegin 'Installing documentation'
+   java-pkg_dohtml -r doc/tools
+   eend $?
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: net-ftp/proftpd/

2020-03-31 Thread Sergei Trofimovich
commit: 89d50aff244ae40d8ff5ecef9ebb8988af3c68c4
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Mar 31 16:48:36 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Mar 31 18:01:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89d50aff

net-ftp/proftpd: drop to ~hppa

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 net-ftp/proftpd/proftpd-1.3.6c.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-ftp/proftpd/proftpd-1.3.6c.ebuild 
b/net-ftp/proftpd/proftpd-1.3.6c.ebuild
index ee796087785..4da29f36911 100644
--- a/net-ftp/proftpd/proftpd-1.3.6c.ebuild
+++ b/net-ftp/proftpd/proftpd-1.3.6c.ebuild
@@ -26,7 +26,7 @@ SRC_URI="ftp://ftp.proftpd.org/distrib/source/${P/_/}.tar.gz
 LICENSE="GPL-2"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86"
+KEYWORDS="~alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 sparc x86"
 IUSE="acl authfile ban +caps case clamav copy ctrls deflate diskuse dso 
dynmasq exec ifsession ifversion ident ipv6
kerberos ldap libressl log-forensic memcache msg mysql ncurses nls pam 
+pcre postgres qos radius
ratio readme rewrite selinux sftp shaper sitemisc snmp sodium softquota 
sqlite ssl tcpd test unique-id vroot"



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

2020-03-31 Thread Sergei Trofimovich
commit: 41126ae3dad604c2f0ae7090fe05d93096d78daa
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Mar 31 16:37:47 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Mar 31 18:01:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41126ae3

dev-python/pillow: drop to ~hppa

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-python/pillow/pillow-6.2.1.ebuild 
b/dev-python/pillow/pillow-6.2.1.ebuild
index 8c3b3fd995e..a53a7f73a72 100644
--- a/dev-python/pillow/pillow-6.2.1.ebuild
+++ b/dev-python/pillow/pillow-6.2.1.ebuild
@@ -18,7 +18,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="HPND"
 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="examples imagequant jpeg jpeg2k lcms test tiff tk truetype webp zlib"
 REQUIRED_USE="test? ( jpeg tiff )"
 RESTRICT="!test? ( test )"



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

2020-03-31 Thread Sergei Trofimovich
commit: 1097b8559f5ead675991898943a6bea5cb902b36
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Mar 31 16:38:06 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Mar 31 18:01:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1097b855

app-editors/mg: drop to ~hppa

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 app-editors/mg/mg-20171014.ebuild | 2 +-
 app-editors/mg/mg-20180408.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-editors/mg/mg-20171014.ebuild 
b/app-editors/mg/mg-20171014.ebuild
index 47478a302f6..da406b5556a 100644
--- a/app-editors/mg/mg-20171014.ebuild
+++ b/app-editors/mg/mg-20171014.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://homepage.boetes.org/software/mg/${P}.tar.gz;
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ppc ~ppc64 sparc x86"
+KEYWORDS="~alpha amd64 arm ~hppa ppc ~ppc64 sparc x86"
 IUSE="livecd"
 
 RDEPEND="sys-libs/ncurses:0

diff --git a/app-editors/mg/mg-20180408.ebuild 
b/app-editors/mg/mg-20180408.ebuild
index 5e8bfbef1b6..c1f6b5cda47 100644
--- a/app-editors/mg/mg-20180408.ebuild
+++ b/app-editors/mg/mg-20180408.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/hboetes/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ppc ~ppc64 sparc x86"
+KEYWORDS="~alpha amd64 arm ~hppa ppc ~ppc64 sparc x86"
 IUSE="livecd"
 
 RDEPEND="sys-libs/ncurses:0



[gentoo-commits] repo/gentoo:master commit in: app-antivirus/clamav/

2020-03-31 Thread Sergei Trofimovich
commit: b50453c31e0fdc8f7bbf287befcae471b5e3f061
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Mar 31 16:48:57 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Mar 31 18:01:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b50453c3

app-antivirus/clamav: drop to ~hppa

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 app-antivirus/clamav/clamav-0.102.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-antivirus/clamav/clamav-0.102.2-r1.ebuild 
b/app-antivirus/clamav/clamav-0.102.2-r1.ebuild
index 1c7040145e4..ef252e3b57f 100644
--- a/app-antivirus/clamav/clamav-0.102.2-r1.ebuild
+++ b/app-antivirus/clamav/clamav-0.102.2-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://www.clamav.net/downloads/production/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ppc ppc64 ~sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ia64 ppc ppc64 ~sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
 IUSE="bzip2 doc clamdtop clamsubmit iconv ipv6 libclamav-only libressl milter 
metadata-analysis-api selinux static-libs test uclibc xml"
 
 REQUIRED_USE="libclamav-only? ( !clamdtop !clamsubmit !milter 
!metadata-analysis-api )"



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

2020-03-31 Thread Sergei Trofimovich
commit: 938e6d367ea01326b56648a92bc72f5f699c32c1
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Mar 31 16:38:44 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Mar 31 18:01:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=938e6d36

app-accessibility/epos: drop to ~hppa

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 app-accessibility/epos/epos-2.5.37-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-accessibility/epos/epos-2.5.37-r2.ebuild 
b/app-accessibility/epos/epos-2.5.37-r2.ebuild
index 0f1c8b1f6b4..8cffe794310 100644
--- a/app-accessibility/epos/epos-2.5.37-r2.ebuild
+++ b/app-accessibility/epos/epos-2.5.37-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 hppa ia64 ppc ppc64 x86"
+KEYWORDS="~alpha amd64 ~hppa ia64 ppc ppc64 x86"
 IUSE=""
 
 DEPEND=">=app-text/sgmltools-lite-3.0.3-r9



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

2020-03-31 Thread Sergei Trofimovich
commit: c0593cbe1e3a50abad0d66731652ea7492cde648
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Mar 31 16:36:02 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Mar 31 18:01:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0593cbe

dev-python/rst2pdf: drop to ~hppa

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-python/rst2pdf/rst2pdf-0.93-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/rst2pdf/rst2pdf-0.93-r3.ebuild 
b/dev-python/rst2pdf/rst2pdf-0.93-r3.ebuild
index 90a7e2a626e..4316b719167 100644
--- a/dev-python/rst2pdf/rst2pdf-0.93-r3.ebuild
+++ b/dev-python/rst2pdf/rst2pdf-0.93-r3.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/rst2pdf/rst2pdf/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ppc ppc64 sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ppc ppc64 sparc x86"
 IUSE="svg"
 
 DEPEND="dev-python/docutils[${PYTHON_USEDEP}]



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

2020-03-31 Thread Sergei Trofimovich
commit: 9a7c0a4524e68ef16c8cba20346ba0ff41b41592
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Mar 31 16:37:15 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Mar 31 18:01:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a7c0a45

dev-python/reportlab: drop to ~hppa

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-python/reportlab/reportlab-3.5.13-r1.ebuild 
b/dev-python/reportlab/reportlab-3.5.13-r1.ebuild
index d9dc2336fce..64879659c5b 100644
--- a/dev-python/reportlab/reportlab-3.5.13-r1.ebuild
+++ b/dev-python/reportlab/reportlab-3.5.13-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz
 
 LICENSE="BSD"
 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 examples"
 
 RDEPEND="



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

2020-03-31 Thread Sergei Trofimovich
commit: 7d13bf3e7121f692c684f58c33636f2887ccf809
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Mar 31 16:36:51 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Mar 31 18:01:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d13bf3e

media-gfx/uniconvertor: drop to ~hppa

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 media-gfx/uniconvertor/uniconvertor-2.0_pre379-r1.ebuild | 4 ++--
 media-gfx/uniconvertor/uniconvertor-2.0_pre379-r2.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/media-gfx/uniconvertor/uniconvertor-2.0_pre379-r1.ebuild 
b/media-gfx/uniconvertor/uniconvertor-2.0_pre379-r1.ebuild
index 6f983cf383f..70eb7af38ee 100644
--- a/media-gfx/uniconvertor/uniconvertor-2.0_pre379-r1.ebuild
+++ b/media-gfx/uniconvertor/uniconvertor-2.0_pre379-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ DESCRIPTION="Convert vector graphic file formats like .cdr, 
.svg, wmf and more."
 
HOMEPAGE="https://sk1project.net/modules.php?name=Products=uniconvertor;
 SRC_URI="https://dev.gentoo.org/~jlec/distfiles/${P}.tar.xz;
 
-KEYWORDS="amd64 ~arm hppa ppc ppc64 x86 ~amd64-linux ~x86-linux ~x64-macos 
~sparc-solaris ~x86-solaris"
+KEYWORDS="amd64 ~arm ~hppa ppc ppc64 x86 ~amd64-linux ~x86-linux ~x64-macos 
~sparc-solaris ~x86-solaris"
 SLOT="0"
 LICENSE="GPL-2 LGPL-2"
 IUSE=""

diff --git a/media-gfx/uniconvertor/uniconvertor-2.0_pre379-r2.ebuild 
b/media-gfx/uniconvertor/uniconvertor-2.0_pre379-r2.ebuild
index 104e7215394..d3c2dfdf93f 100644
--- a/media-gfx/uniconvertor/uniconvertor-2.0_pre379-r2.ebuild
+++ b/media-gfx/uniconvertor/uniconvertor-2.0_pre379-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ DESCRIPTION="Convert vector graphic file formats like .cdr, 
.svg, wmf and more."
 
HOMEPAGE="https://sk1project.net/modules.php?name=Products=uniconvertor;
 SRC_URI="https://dev.gentoo.org/~jlec/distfiles/${P}.tar.xz;
 
-KEYWORDS="amd64 ~arm hppa ppc ppc64 x86 ~amd64-linux ~x86-linux ~x64-macos 
~sparc-solaris ~x86-solaris"
+KEYWORDS="amd64 ~arm ~hppa ppc ppc64 x86 ~amd64-linux ~x86-linux ~x64-macos 
~sparc-solaris ~x86-solaris"
 SLOT="0"
 LICENSE="GPL-2 LGPL-2"
 IUSE=""



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

2020-03-31 Thread Sergei Trofimovich
commit: ea0796c1a631ff8103e80f1277a604bf573784c4
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Mar 31 16:38:25 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Mar 31 18:01:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea0796c1

app-accessibility/mbrola: drop to ~hppa

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 app-accessibility/mbrola/mbrola-3.0.1h-r6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-accessibility/mbrola/mbrola-3.0.1h-r6.ebuild 
b/app-accessibility/mbrola/mbrola-3.0.1h-r6.ebuild
index a825165455a..44cdfe1a96e 100644
--- a/app-accessibility/mbrola/mbrola-3.0.1h-r6.ebuild
+++ b/app-accessibility/mbrola/mbrola-3.0.1h-r6.ebuild
@@ -37,7 +37,7 @@ S=${WORKDIR}
 
 LICENSE="MBROLA"
 SLOT="0"
-KEYWORDS="~alpha amd64 hppa ia64 ~mips ppc ppc64 sparc x86"
+KEYWORDS="~alpha amd64 ~hppa ia64 ~mips ppc ppc64 sparc x86"
 RESTRICT="strip"
 
 DEPEND="app-arch/unzip"



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

2020-03-31 Thread Sergei Trofimovich
commit: 41d738e2c58cf11c0add6c7e5860c0d5203fde2f
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Mar 31 16:36:23 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Mar 31 18:01:19 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41d738e2

media-gfx/svg2rlg: drop to ~hppa

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/media-gfx/svg2rlg/svg2rlg-0.3.ebuild 
b/media-gfx/svg2rlg/svg2rlg-0.3.ebuild
index 18207130fde..45e19a44391 100644
--- a/media-gfx/svg2rlg/svg2rlg-0.3.ebuild
+++ b/media-gfx/svg2rlg/svg2rlg-0.3.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ppc ppc64 sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ppc ppc64 sparc x86"
 IUSE=""
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



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

2020-03-31 Thread Thomas Deutschmann
commit: 8fe3f2e1ea52b4d887f707ff3b0564862c5d7b86
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Mar 31 17:57:39 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Mar 31 17:57:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fe3f2e1

media-libs/openjpeg: security cleanup (#707926)

Bug: https://bugs.gentoo.org/707926
Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Thomas Deutschmann  gentoo.org>

 media-libs/openjpeg/openjpeg-2.3.1.ebuild | 133 --
 1 file changed, 133 deletions(-)

diff --git a/media-libs/openjpeg/openjpeg-2.3.1.ebuild 
b/media-libs/openjpeg/openjpeg-2.3.1.ebuild
deleted file mode 100644
index 9cfc8e401cd..000
--- a/media-libs/openjpeg/openjpeg-2.3.1.ebuild
+++ /dev/null
@@ -1,133 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-CMAKE_ECLASS=cmake
-inherit cmake-multilib
-
-# Make sure that test data are not newer than release;
-# otherwise we will see "Found-But-No-Test" test failures!
-MY_TESTDATA_COMMIT="25632d6deca2e567d30ef476b4abe63916c36f6e"
-
-DESCRIPTION="Open-source JPEG 2000 library"
-HOMEPAGE="https://www.openjpeg.org;
-SRC_URI="https://github.com/uclouvain/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz
-   test? ( 
https://github.com/uclouvain/openjpeg-data/archive/${MY_TESTDATA_COMMIT}.tar.gz 
-> ${PN}-data_20180620.tar.gz )"
-
-LICENSE="BSD-2"
-SLOT="2/7" # based on SONAME
-KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="doc static-libs test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   media-libs/lcms:2
-   media-libs/libpng:0=
-   media-libs/tiff:0
-   sys-libs/zlib:="
-DEPEND="${RDEPEND}"
-BDEPEND="
-   doc? ( app-doc/doxygen )"
-
-DOCS=( AUTHORS.md CHANGELOG.md NEWS.md README.md THANKS.md )
-
-PATCHES=(
-   "${FILESDIR}/${PN}-2.3.1-gnuinstalldirs.patch" # bug 667150
-)
-
-src_prepare() {
-   if use test; then
-   mv "${WORKDIR}"/openjpeg-data-${MY_TESTDATA_COMMIT} 
"${WORKDIR}"/data ||
-   die "Failed to rename test data"
-   fi
-
-   cmake_src_prepare
-}
-
-multilib_src_configure() {
-   local mycmakeargs=(
-   -DBUILD_PKGCONFIG_FILES=ON  # always build pkgconfig files, 
bug #539834
-   -DBUILD_TESTING="$(multilib_native_usex test)"
-   -DBUILD_DOC=$(multilib_native_usex doc ON OFF)
-   -DBUILD_CODEC=$(multilib_is_native_abi && echo ON || echo OFF)
-   -DBUILD_STATIC_LIBS=$(usex static-libs)
-   )
-
-   cmake_src_configure
-}
-
-multilib_src_test() {
-   if ! multilib_is_native_abi ; then
-   elog "Cannot run tests for non-multilib abi."
-   return 0
-   fi
-
-   local myctestargs=
-
-   pushd "${BUILD_DIR}" > /dev/null || die
-   [[ -e CTestTestfile.cmake ]] || die "Test suite not available! Check 
source!"
-
-   [[ -n ${TEST_VERBOSE} ]] && myctestargs+=( --extra-verbose 
--output-on-failure )
-
-   echo ctest "${myctestargs[@]}" "$@"
-   if ctest "${myctestargs[@]}" "$@" ; then
-   einfo "Tests succeeded."
-   popd > /dev/null || die
-   return 0
-   else
-   local 
FAILEDTEST_LOG="${BUILD_DIR}/Testing/Temporary/LastTestsFailed.log"
-
-   if [[ ! -f "${FAILEDTEST_LOG}" ]] ; then
-   # Should never happen
-   die "Cannot analyze test failures: LastTestsFailed.log 
is missing!"
-   fi
-
-   echo ""
-   einfo "Note: Upstream is maintaining a list of known test 
failures."
-   einfo "We will now compare our test results against this list 
and sort out any known failure."
-
-   local KNOWN_FAILURES_LIST="${T}/known_failures_compiled.txt"
-   cat "${S}/tools/travis-ci/knownfailures-all.txt" > 
"${KNOWN_FAILURES_LIST}" || die
-
-   local ARCH_SPECIFIC_FAILURES=
-   if use amd64 ; then
-   ARCH_SPECIFIC_FAILURES="$(find "${S}/tools/travis-ci/" 
-name 'knownfailures-*x86_64*.txt' -print0 | sort -z | tail -z -n 1 | tr -d 
'\0')"
-   elif use x86 || use arm || use arm64; then
-   ARCH_SPECIFIC_FAILURES="$(find "${S}/tools/travis-ci/" 
-name 'knownfailures-*i386*.txt' -print0 | sort -z | tail -z -n 1 | tr -d '\0')"
-   fi
-
-   if [[ -f "${ARCH_SPECIFIC_FAILURES}" ]] ; then
-   einfo "Adding architecture specific failures 
(${ARCH_SPECIFIC_FAILURES}) to known failures list ..."
-   cat "${ARCH_SPECIFIC_FAILURES}" >> 
"${KNOWN_FAILURES_LIST}" || die
-   fi
-
-   # Logic copied from 

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

2020-03-31 Thread Mart Raudsepp
commit: 26c9b97659c896899c88ab7c1e41fc26487d099e
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Tue Mar 31 17:53:42 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Tue Mar 31 17:53:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26c9b976

dev-python/pluggy: arm64 stable (bug #714618)

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

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

diff --git a/dev-python/pluggy/pluggy-0.13.1.ebuild 
b/dev-python/pluggy/pluggy-0.13.1.ebuild
index d9398ba2856..dfbe5a60f34 100644
--- a/dev-python/pluggy/pluggy-0.13.1.ebuild
+++ b/dev-python/pluggy/pluggy-0.13.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ppc64 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc64 sparc x86"
 
 RDEPEND="$(python_gen_cond_dep \
'dev-python/importlib_metadata[${PYTHON_USEDEP}]' -2 python3_{5,6,7} 
pypy3)"



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

2020-03-31 Thread Mart Raudsepp
commit: 204c30e9c7f04bed8ce7836e9e20979e9890901e
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon Mar 30 22:13:38 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Tue Mar 31 17:51:28 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=204c30e9

media-gfx/fontforge: arm64 stable (bug #712156)

Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

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

diff --git a/media-gfx/fontforge/fontforge-20190801.ebuild 
b/media-gfx/fontforge/fontforge-20190801.ebuild
index 740f531a88c..6590e817239 100644
--- a/media-gfx/fontforge/fontforge-20190801.ebuild
+++ b/media-gfx/fontforge/fontforge-20190801.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/fontforge/fontforge/releases/download/${PV}/fontforg
 
 LICENSE="BSD GPL-3+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE="cairo truetype-debugger gif gtk jpeg png +python readline test tiff svg 
unicode X"
 
 RESTRICT="!test? ( test )"



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

2020-03-31 Thread Mart Raudsepp
commit: 96d70578aca9330749a499dfd384a42653ffa43f
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon Mar 30 20:11:36 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Tue Mar 31 17:51:25 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96d70578

app-admin/eselect: arm64 stable (bug #715300)

Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

 app-admin/eselect/eselect-1.4.16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/eselect/eselect-1.4.16.ebuild 
b/app-admin/eselect/eselect-1.4.16.ebuild
index 245c5e30702..92db9aeb55d 100644
--- a/app-admin/eselect/eselect-1.4.16.ebuild
+++ b/app-admin/eselect/eselect-1.4.16.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://dev.gentoo.org/~ulm/eselect/${P}.tar.xz;
 
 LICENSE="GPL-2+ || ( GPL-2+ CC-BY-SA-4.0 )"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc emacs vim-syntax"
 
 RDEPEND="sys-apps/sed



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

2020-03-31 Thread Mart Raudsepp
commit: 2ecfec2c2663d8e768453f18b969525f118fb0fb
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Tue Mar 31 00:59:12 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Tue Mar 31 17:51:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ecfec2c

dev-ml/dune: arm64 stable (#710374)

Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

 dev-ml/dune/dune-2.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/dune/dune-2.1.0.ebuild b/dev-ml/dune/dune-2.1.0.ebuild
index ca1534e877f..ab02564875e 100644
--- a/dev-ml/dune/dune-2.1.0.ebuild
+++ b/dev-ml/dune/dune-2.1.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/ocaml/dune/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0/${PV}"
-KEYWORDS="amd64 arm ~arm64 x86"
+KEYWORDS="amd64 arm arm64 x86"
 IUSE="test"
 
 DEPEND="dev-lang/ocaml"



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

2020-03-31 Thread Mart Raudsepp
commit: f1825527964fff9b0997ccec7580411312683891
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Tue Mar 31 01:12:03 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Tue Mar 31 17:51:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1825527

sys-devel/gcc-config: arm64 stable (bug #711382)

Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

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

diff --git a/sys-devel/gcc-config/gcc-config-2.2.1.ebuild 
b/sys-devel/gcc-config/gcc-config-2.2.1.ebuild
index 51af50911b8..7dff4dde9f8 100644
--- a/sys-devel/gcc-config/gcc-config-2.2.1.ebuild
+++ b/sys-devel/gcc-config/gcc-config-2.2.1.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} ==  ]]; then
 else
SRC_URI="mirror://gentoo/${P}.tar.xz
https://dev.gentoo.org/~slyfox/distfiles/${P}.tar.xz;
-   KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 
~riscv s390 sparc x86"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~riscv 
s390 sparc x86"
 fi
 
 DESCRIPTION="Utility to manage compilers"



[gentoo-commits] repo/gentoo:master commit in: app-emacs/eselect-mode/

2020-03-31 Thread Mart Raudsepp
commit: af8f50e3159cff71011a93a3879dd23d97dd27ac
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon Mar 30 20:12:37 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Tue Mar 31 17:51:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af8f50e3

app-emacs/eselect-mode: arm64 stable (bug #715300)

Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

 app-emacs/eselect-mode/eselect-mode-1.4.16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emacs/eselect-mode/eselect-mode-1.4.16.ebuild 
b/app-emacs/eselect-mode/eselect-mode-1.4.16.ebuild
index 72e18ad258f..3635713c4ae 100644
--- a/app-emacs/eselect-mode/eselect-mode-1.4.16.ebuild
+++ b/app-emacs/eselect-mode/eselect-mode-1.4.16.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://dev.gentoo.org/~ulm/eselect/${MY_P}.tar.xz;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 
 S="${WORKDIR}/${MY_P}/misc"
 SITEFILE="50${PN}-gentoo.el"



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

2020-03-31 Thread Mart Raudsepp
commit: 746a142b1eb1598272e9ce24ec2fb3e0b0a5f291
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Tue Mar 31 00:28:10 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Tue Mar 31 17:51:28 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=746a142b

media-libs/glm: arm64 stable (#709582)

Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

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

diff --git a/media-libs/glm/glm-0.9.9.7.ebuild 
b/media-libs/glm/glm-0.9.9.7.ebuild
index 1b2292b614d..c9c8d1c1198 100644
--- a/media-libs/glm/glm-0.9.9.7.ebuild
+++ b/media-libs/glm/glm-0.9.9.7.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/g-truc/glm/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="|| ( HappyBunny MIT )"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 arm arm64 ~ppc64 x86"
 IUSE="test cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_avx 
cpu_flags_x86_avx2"
 RESTRICT="!test? ( test )"
 



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

2020-03-31 Thread Mart Raudsepp
commit: f626833f7c53c324ef15d2ba1bc2838449a7e89f
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon Mar 30 20:34:43 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Tue Mar 31 17:51:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f626833f

dev-ml/findlib: arm64 stable (bug #708874)

Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

 dev-ml/findlib/findlib-1.8.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/findlib/findlib-1.8.1.ebuild 
b/dev-ml/findlib/findlib-1.8.1.ebuild
index 4af952aa983..b83cef1e7c2 100644
--- a/dev-ml/findlib/findlib-1.8.1.ebuild
+++ b/dev-ml/findlib/findlib-1.8.1.ebuild
@@ -13,7 +13,7 @@ IUSE="doc +ocamlopt tk"
 LICENSE="MIT"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~ppc-macos"
 
 DEPEND=">=dev-lang/ocaml-4.02.3-r1:=[ocamlopt?]
tk? ( dev-ml/labltk:= )"



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

2020-03-31 Thread Mart Raudsepp
commit: b3f5de84c4bbde40a9b6e6462bc6c396ebd9c58f
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon Mar 30 20:15:02 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Tue Mar 31 17:51:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3f5de84

app-misc/pax-utils: arm64 stable (bug #713906)

Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

 app-misc/pax-utils/pax-utils-1.2.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/pax-utils/pax-utils-1.2.5.ebuild 
b/app-misc/pax-utils/pax-utils-1.2.5.ebuild
index c07353a3aa1..cc472149fb3 100644
--- a/app-misc/pax-utils/pax-utils-1.2.5.ebuild
+++ b/app-misc/pax-utils/pax-utils-1.2.5.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://gentoo/${P}.tar.xz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86 ~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 ~riscv s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="caps debug python seccomp"
 
 RDEPEND="caps? ( >=sys-libs/libcap-2.24 )



[gentoo-commits] repo/gentoo:master commit in: dev-vcs/cvsps/

2020-03-31 Thread Mart Raudsepp
commit: ad158dc12338b2a753d6cf7d0cbff493c75f3a6c
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Tue Mar 31 00:04:31 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Tue Mar 31 17:51:28 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad158dc1

dev-vcs/cvsps: arm64 stable (bug #708906)

Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

 dev-vcs/cvsps/cvsps-3.13-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-vcs/cvsps/cvsps-3.13-r2.ebuild 
b/dev-vcs/cvsps/cvsps-3.13-r2.ebuild
index c1751ca7fb1..83cf6eb49c9 100644
--- a/dev-vcs/cvsps/cvsps-3.13-r2.ebuild
+++ b/dev-vcs/cvsps/cvsps-3.13-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://www.catb.org/~esr/${PN}/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="3"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 RDEPEND="sys-libs/zlib"



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

2020-03-31 Thread Mart Raudsepp
commit: ef7aeb5d736994ca6097eec0b8ba17b4d2a97ccc
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon Mar 30 20:10:21 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Tue Mar 31 17:51:25 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef7aeb5d

app-shells/bash-completion: arm64 stable (bug #709762)

Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

 app-shells/bash-completion/bash-completion-2.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-shells/bash-completion/bash-completion-2.10.ebuild 
b/app-shells/bash-completion/bash-completion-2.10.ebuild
index 4590260fcee..58299e4839f 100644
--- a/app-shells/bash-completion/bash-completion-2.10.ebuild
+++ b/app-shells/bash-completion/bash-completion-2.10.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris"
 IUSE="+eselect test"
 RESTRICT="test"
 



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

2020-03-31 Thread Mart Raudsepp
commit: 29657caec20343277b1f81aa4fb5bc79f0e4286a
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Mon Mar 30 20:14:13 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Tue Mar 31 17:51:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29657cae

net-dialup/freeradius: arm64 stable (bug #709804)

Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

 net-dialup/freeradius/freeradius-3.0.20.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dialup/freeradius/freeradius-3.0.20.ebuild 
b/net-dialup/freeradius/freeradius-3.0.20.ebuild
index b7bb8b13efc..b7e8e652bc8 100644
--- a/net-dialup/freeradius/freeradius-3.0.20.ebuild
+++ b/net-dialup/freeradius/freeradius-3.0.20.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 "
 HOMEPAGE="http://www.freeradius.org/;
 
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~sparc x86"
 LICENSE="GPL-2"
 SLOT="0"
 



[gentoo-commits] repo/gentoo:master commit in: dev-libs/nss/files/, dev-libs/nss/

2020-03-31 Thread Thomas Deutschmann
commit: e0cb2ef179d11014b83d4f5547949fcc057b4951
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Mar 31 17:48:42 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Mar 31 17:50:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0cb2ef1

dev-libs/nss: security cleanup (#627534)

Bug: https://bugs.gentoo.org/627534
Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-libs/nss/Manifest|   5 -
 dev-libs/nss/files/nss-3.47-enable-pem.patch |  11 -
 dev-libs/nss/metadata.xml|   1 -
 dev-libs/nss/nss-3.47.1-r1.ebuild| 375 ---
 dev-libs/nss/nss-3.48-r1.ebuild  | 375 ---
 dev-libs/nss/nss-3.49.2.ebuild   | 375 ---
 dev-libs/nss/nss-3.50-r1.ebuild  | 359 -
 7 files changed, 1501 deletions(-)

diff --git a/dev-libs/nss/Manifest b/dev-libs/nss/Manifest
index 96974b35f57..663b875e316 100644
--- a/dev-libs/nss/Manifest
+++ b/dev-libs/nss/Manifest
@@ -1,7 +1,2 @@
-DIST nss-3.47.1.tar.gz 76462846 BLAKE2B 
a26e858e06c494adb4059f8cc73993b0f3cff90a0785ed7eed3760931aa6b4ae5706cf7994c6c1421d9ed8bc36d1a4c199988bd9c59c06bb95fd03521c20f141
 SHA512 
ddee53f58929e5f3849c9f88a3a6735453a258c3c32a7e3e73cc949e0b7ad2dff81b21db31c9c5e1ef3eb79d63c31660e38ce76c06ca54a5681dd611dc2e2ae9
-DIST nss-3.48.tar.gz 76481237 BLAKE2B 
aded12d9f917d87e6fe32bc6c57b19e478507919c7d87b3f95e86ba10717d30da25632e60753b5cf7a24fbfef8fab6529ae373eea25d633d8164164bac97357c
 SHA512 
71aefe323501dd8d750ed36606554f2e67ecb2bca85b55bc798d5dfc3a47f3d454348ca950971fb16f6d847c098d2b1c40d40b50380e0c2540ed1b9a9e9a
-DIST nss-3.49.2.tar.gz 76489641 BLAKE2B 
844a88984fde45142093ee6df2934d89cb4911d3e716019c0d1620254064af51b56249bc4348816e546c5dcab66d7fc9d4def32021661f4f3d868e09c342abec
 SHA512 
fe0fe032db15853384a50b145dd6f3187a855109f0b81f1846312d33f8c628aededcbca4d199f974ae52530aec3f2312f80afbca3e5b97ed1ff96fcffafd2881
-DIST nss-3.50.tar.gz 78041630 BLAKE2B 
4d21a1cac475936e153b22829f8b4b2f6f6a57c41e14d091b287aba633a8d4c80c045882ce6f1cb7a2f9ce760d616b13389f90e59f60250c41080ed1f5a4900a
 SHA512 
d6bcaf8ad65b5a97c42cd6cbbc68add5c4b49db74b2debcedb2a007f72511ac0e9bd21fd2dec041bc1975cfc8af26a48450aa0d1b962f755931ab2ac45c795b1
 DIST nss-3.51.tar.gz 78305125 BLAKE2B 
2c7b90d4cc9fe283bf81e21d0dceefff503e5a31f0053828b140b2b927ddab8c8881b23c7d4c003f3e2d0dcd22efbe699baee63443cab6e72d33a552fd430e3c
 SHA512 
9c894b1ea41449b000750a7b3a89fcb43dfc3d0d4d6dcc0dc288bc73996f76f1ee1ede927a8aecae6d4a07f9f3d3e3a042c6a60cf06e27e0cdc004fce2e510fd
 DIST nss-cacert-class1-class3.patch 22950 BLAKE2B 
9d5e60df5f161a3c27c41e5a9419440a54f888eda454e3cde5ebe626d4075b65cf9938b5144d0fb022377f4bd415bff5e5c67d104409860aa9391b3eb8872c68
 SHA512 
a5aa740bf110a3f0262e3f1ef2fc739ac2b44f042e220039d48aee8e97cd764d5c10718220364f4098aba955882bd02cadb5481512388971a8290312f88a7df0
-DIST nss-pem-20160329.tar.xz 27732 BLAKE2B 
7c23133a7bfb969d8eac98fb6311e76ab60c5d6601c7329f3c492da30c017e66d64a1f8bc827dd36e52e65c1a1ec02b58816442aaf410345c5ed759a02264b84
 SHA512 
5834b06e4c64205447573d4f4c8989e20986ae67ee00eebce3817eb73794a6355a404143ba1c676ec302ceefaf9df103cb879b1d4ff14ba4e3790dbee3e40eb2

diff --git a/dev-libs/nss/files/nss-3.47-enable-pem.patch 
b/dev-libs/nss/files/nss-3.47-enable-pem.patch
deleted file mode 100644
index 47a01c322bb..000
--- a/dev-libs/nss/files/nss-3.47-enable-pem.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 a/lib/ckfw/manifest.mn
-+++ b/lib/ckfw/manifest.mn
-@@ -5,7 +5,7 @@
- 
- CORE_DEPTH = ../..
- 
--DIRS = builtins
-+DIRS = builtins pem
- 
- PRIVATE_EXPORTS = \
-   ck.h  \

diff --git a/dev-libs/nss/metadata.xml b/dev-libs/nss/metadata.xml
index 009a09732ad..c76b165099c 100644
--- a/dev-libs/nss/metadata.xml
+++ b/dev-libs/nss/metadata.xml
@@ -9,7 +9,6 @@
   
 Include root/class3 certs from CAcert (http://www.cacert.org/)
   
-  Add support for libnsspem
   Install utilities included with the library
 
 

diff --git a/dev-libs/nss/nss-3.47.1-r1.ebuild 
b/dev-libs/nss/nss-3.47.1-r1.ebuild
deleted file mode 100644
index 8c5fc05e76c..000
--- a/dev-libs/nss/nss-3.47.1-r1.ebuild
+++ /dev/null
@@ -1,375 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit eutils flag-o-matic multilib toolchain-funcs multilib-minimal
-
-NSPR_VER="4.22"
-RTM_NAME="NSS_${PV//./_}_RTM"
-# Rev of https://git.fedorahosted.org/cgit/nss-pem.git
-PEM_GIT_REV="429b0222759d8ad8e6dcd29e62875ae3efd69116"
-PEM_P="${PN}-pem-20160329"
-
-DESCRIPTION="Mozilla's Network Security Services library that implements PKI 
support"
-HOMEPAGE="http://www.mozilla.org/projects/security/pki/nss/;
-SRC_URI="https://archive.mozilla.org/pub/security/nss/releases/${RTM_NAME}/src/${P}.tar.gz
-   cacert? ( 

[gentoo-commits] repo/gentoo:master commit in: dev-libs/nspr/, dev-libs/nspr/files/

2020-03-31 Thread Thomas Deutschmann
commit: 6458568d4caf17cc987048da66c6d7d1bf61b305
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Mar 31 17:50:25 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Mar 31 17:50:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6458568d

dev-libs/nspr: drop old

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-libs/nspr/Manifest  |   3 -
 dev-libs/nspr/files/nspr-4.7.0-prtime.patch |  26 --
 dev-libs/nspr/nspr-4.20.ebuild  | 118 ---
 dev-libs/nspr/nspr-4.22.ebuild  | 120 ---
 dev-libs/nspr/nspr-4.24.ebuild  | 122 
 5 files changed, 389 deletions(-)

diff --git a/dev-libs/nspr/Manifest b/dev-libs/nspr/Manifest
index 170622eaf18..131b1010eee 100644
--- a/dev-libs/nspr/Manifest
+++ b/dev-libs/nspr/Manifest
@@ -1,4 +1 @@
-DIST nspr-4.20.tar.gz 1140892 BLAKE2B 
2cb96b7a40c307f904dac038f016b5c0e527aaf673463cbcb59d8bb6c9d0239219402587d624f48804e33f43abd4427c87f267bf1a88a0dacffcc408ac15dc49
 SHA512 
22fdf7627f450b0594ebccaee170098e1a8cd0f429fd44816f1322756002ced3d69cf686c3f69f7cb30b8132d3605a9fce5457ab99d0002e6af11a3408a5c949
-DIST nspr-4.22.tar.gz 1078701 BLAKE2B 
8b37031ffebf79320c91ce674d7c3a0cfbef25bfb006cb9aaff44f090110b35ea2768f83dae4a793723f8e2f3aecabc1a4b8042cd1b0ab0aade30781e43f9d62
 SHA512 
d34271f0692905162f71b02cf6f62a8ebf779159335e4ed286ee8d51faaad633a61c9392bada86d976bca2b5aa47c8760085de30dbd13c9cfa423582c31db37b
-DIST nspr-4.24.tar.gz 1078825 BLAKE2B 
3a773768c31334fa4f3f406d838d430dccfbcf5f7bd34dca422b199265f17fc08ef3d5d1e6df5468efeeeace8b5f8a38ece518e6bdbcdf811c2642d43be80c6c
 SHA512 
b020031ed7a8997099c11e0772779c7b10d15b4f6b14e2b1832732943e8b8224afa952ce04a1914c1553af9d3973a6d9cacf08058ee6fff35102e3b2ec0943c1
 DIST nspr-4.25.tar.gz 1079633 BLAKE2B 
377e5ec0e60cca13f1ee988adb10870bbb6cb9e4eb61e4434152418d4f8d446741a192d7019298ec2669b8e190cacb6a1ca9c4b2838e9b14dd3590ed40facdd2
 SHA512 
b9aa576e0da37e8729088fe559d94030cf18f277c1f7a30104d3088a804913343ed884645c0adb62144da475e20934b359f897bf3ae9a6ebb5f9daf283d5a562

diff --git a/dev-libs/nspr/files/nspr-4.7.0-prtime.patch 
b/dev-libs/nspr/files/nspr-4.7.0-prtime.patch
deleted file mode 100644
index 2de3ba34457..000
--- a/dev-libs/nspr/files/nspr-4.7.0-prtime.patch
+++ /dev/null
@@ -1,26 +0,0 @@
 a/pr/src/misc/prtime.c
-+++ b/pr/src/misc/prtime.c
-@@ -1536,7 +1536,7 @@
- case TT_EET: zone_offset =  2 * 60; break;
- case TT_JST: zone_offset =  9 * 60; break;
- default:
--  PR_ASSERT (0);
-+  return PR_FAILURE;
-   break;
- }
- }
-@@ -1578,11 +1578,12 @@
-   struct tm localTime;
-   time_t secs;
- 
--  PR_ASSERT(result->tm_month > -1 &&
-+  if (!(result->tm_month > -1 &&
- result->tm_mday > 0 &&
- result->tm_hour > -1 &&
- result->tm_min > -1 &&
--result->tm_sec > -1);
-+result->tm_sec > -1))
-+  return PR_FAILURE;
- 
- /*
-  * To obtain time_t from a tm structure representing the local

diff --git a/dev-libs/nspr/nspr-4.20.ebuild b/dev-libs/nspr/nspr-4.20.ebuild
deleted file mode 100644
index 7acc7bcb527..000
--- a/dev-libs/nspr/nspr-4.20.ebuild
+++ /dev/null
@@ -1,118 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools toolchain-funcs multilib-minimal
-
-MIN_PV="$(ver_cut 2)"
-
-DESCRIPTION="Netscape Portable Runtime"
-HOMEPAGE="http://www.mozilla.org/projects/nspr/;
-SRC_URI="https://archive.mozilla.org/pub/nspr/releases/v${PV}/src/${P}.tar.gz;
-
-LICENSE="|| ( MPL-2.0 GPL-2 LGPL-2.1 )"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 sparc 
x86 ~ppc-aix ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
-IUSE="debug"
-
-MULTILIB_CHOST_TOOLS=(
-   /usr/bin/nspr-config
-)
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-4.7.0-prtime.patch
-   "${FILESDIR}"/${PN}-4.7.1-solaris.patch
-   "${FILESDIR}"/${PN}-4.10.6-solaris.patch
-   "${FILESDIR}"/${PN}-4.8.4-darwin-install_name.patch
-   "${FILESDIR}"/${PN}-4.8.9-link-flags.patch
-   # We do not need to pass -L$libdir via nspr-config --libs
-   "${FILESDIR}"/${PN}-4.9.5_nspr_config.patch
-)
-
-src_prepare() {
-   cd "${S}"/nspr || die
-
-   default
-
-   # rename configure.in to configure.ac for new autotools compatibility
-   if [[ -e "${S}"/nspr/configure.in ]] ; then
-   einfo "Renaming configure.in to configure.ac"
-   mv "${S}"/nspr/configure.{in,ac} || die
-   fi
-
-   # We must run eautoconf to regenerate configure

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

2020-03-31 Thread Sebastian Pipping
commit: 2a51a4e568ebadfca6344d2dcd3e880571148d88
Author: Sebastian Pipping  gentoo  org>
AuthorDate: Tue Mar 31 17:41:46 2020 +
Commit: Sebastian Pipping  gentoo  org>
CommitDate: Tue Mar 31 17:43:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a51a4e5

media-libs/tremor: Stop using ltprune eclass

Signed-off-by: Sebastian Pipping  gentoo.org>
Package-Manager: Portage-2.3.92, Repoman-2.3.20

 media-libs/tremor/tremor-0_pre20130223-r1.ebuild | 4 ++--
 media-libs/tremor/tremor-0_pre20130223-r2.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/media-libs/tremor/tremor-0_pre20130223-r1.ebuild 
b/media-libs/tremor/tremor-0_pre20130223-r1.ebuild
index 856548ea2fb..ff4417e9b64 100644
--- a/media-libs/tremor/tremor-0_pre20130223-r1.ebuild
+++ b/media-libs/tremor/tremor-0_pre20130223-r1.ebuild
@@ -5,7 +5,7 @@ EAPI=5
 
 # svn export http://svn.xiph.org/trunk/Tremor tremor-${PV}
 
-inherit autotools eutils ltprune multilib-minimal
+inherit autotools eutils multilib-minimal
 
 DESCRIPTION="A fixed-point version of the Ogg Vorbis decoder (also known as 
libvorbisidec)"
 HOMEPAGE="https://wiki.xiph.org/Tremor;
@@ -40,5 +40,5 @@ multilib_src_configure() {
 multilib_src_install_all() {
einstalldocs
dohtml -r doc/*
-   prune_libtool_files
+   find "${D}" -name '*.la' -type f -delete || die
 }

diff --git a/media-libs/tremor/tremor-0_pre20130223-r2.ebuild 
b/media-libs/tremor/tremor-0_pre20130223-r2.ebuild
index a316b2867b7..4aa37c129b8 100644
--- a/media-libs/tremor/tremor-0_pre20130223-r2.ebuild
+++ b/media-libs/tremor/tremor-0_pre20130223-r2.ebuild
@@ -5,7 +5,7 @@ EAPI=5
 
 # svn export http://svn.xiph.org/trunk/Tremor tremor-${PV}
 
-inherit autotools eutils ltprune multilib-minimal
+inherit autotools eutils multilib-minimal
 
 DESCRIPTION="A fixed-point version of the Ogg Vorbis decoder (also known as 
libvorbisidec)"
 HOMEPAGE="https://wiki.xiph.org/Tremor;
@@ -46,5 +46,5 @@ multilib_src_configure() {
 multilib_src_install_all() {
einstalldocs
dohtml -r doc/*
-   prune_libtool_files
+   find "${D}" -name '*.la' -type f -delete || die
 }



[gentoo-commits] repo/proj/guru:master commit in: dev-python/trio/

2020-03-31 Thread Andrew Ammerlaan
commit: 66d7444142931ebbab59cbe3e3f7e2a213a4e97c
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Tue Mar 31 15:26:25 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Tue Mar 31 15:26:25 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=66d74441

dev-python/trio: missing dependency

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-python/trio/trio-0.13.0.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/trio/trio-0.13.0.ebuild 
b/dev-python/trio/trio-0.13.0.ebuild
index ce3ef2e..66266e5 100644
--- a/dev-python/trio/trio-0.13.0.ebuild
+++ b/dev-python/trio/trio-0.13.0.ebuild
@@ -32,6 +32,7 @@ DEPEND="${RDEPEND}
>=dev-python/astor-0.8.0[${PYTHON_USEDEP}]
>=dev-python/immutables-0.6[${PYTHON_USEDEP}]
dev-python/jedi[${PYTHON_USEDEP}]
+   dev-python/pylint[${PYTHON_USEDEP}]
dev-python/trustme[${PYTHON_USEDEP}]
dev-python/yapf[${PYTHON_USEDEP}]
)



[gentoo-commits] repo/proj/guru:master commit in: dev-python/pytest-ordering/

2020-03-31 Thread Andrew Ammerlaan
commit: f53b2d4f975730f685c695be2e23f5d29d25aadd
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Tue Mar 31 15:16:43 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Tue Mar 31 15:18:07 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f53b2d4f

dev-python/pytest-ordering: new package

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-python/pytest-ordering/Manifest|  1 +
 dev-python/pytest-ordering/metadata.xml| 13 
 .../pytest-ordering/pytest-ordering-0.6.ebuild | 24 ++
 3 files changed, 38 insertions(+)

diff --git a/dev-python/pytest-ordering/Manifest 
b/dev-python/pytest-ordering/Manifest
new file mode 100644
index 000..0036ecd
--- /dev/null
+++ b/dev-python/pytest-ordering/Manifest
@@ -0,0 +1 @@
+DIST pytest-ordering-0.6.tar.gz 11046 BLAKE2B 
468ae5f04029b96ed3058b7f429aec0aaf96092453b229c3de5eab174702af2c1a9fe83171c68d282c4a144b3dd736daf9ed87b9e139a7bd175114f504049ebc
 SHA512 
fd3aec83914f64d1295e1a1bf3fdc580c6824a749a1da8cebae275fef940d6ed6e5dcafad321d94f504a153e13e298b6544dc3c2db716a6b25d3148c2365fe15

diff --git a/dev-python/pytest-ordering/metadata.xml 
b/dev-python/pytest-ordering/metadata.xml
new file mode 100644
index 000..3f9f921
--- /dev/null
+++ b/dev-python/pytest-ordering/metadata.xml
@@ -0,0 +1,13 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+  
+lssndrbarbi...@gmail.com
+Alessandro Barbieri
+  
+  
+https://github.com/ftobia/pytest-ordering
+pytest-ordering
+  
+

diff --git a/dev-python/pytest-ordering/pytest-ordering-0.6.ebuild 
b/dev-python/pytest-ordering/pytest-ordering-0.6.ebuild
new file mode 100644
index 000..6cb756e
--- /dev/null
+++ b/dev-python/pytest-ordering/pytest-ordering-0.6.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7} )
+
+inherit distutils-r1
+
+DESCRIPTION="pytest plugin to run your tests in a specific order"
+HOMEPAGE="
+   https://github.com/ftobia/pytest-ordering
+   https://pypi.org/project/pytest-ordering
+"
+SRC_URI="https://github.com/ftobia/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND=""
+
+distutils_enable_tests pytest
+distutils_enable_sphinx docs/source



[gentoo-commits] repo/proj/guru:master commit in: dev-python/sphobjinv/

2020-03-31 Thread Andrew Ammerlaan
commit: dd283f513c60fbc8edaf0d4a32a87da8885e6081
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Tue Mar 31 15:17:16 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Tue Mar 31 15:18:07 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=dd283f51

dev-python/sphobjinv: more dependencies

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-python/sphobjinv/sphobjinv-2.0.1.ebuild | 9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/dev-python/sphobjinv/sphobjinv-2.0.1.ebuild 
b/dev-python/sphobjinv/sphobjinv-2.0.1.ebuild
index 7fb7dd7..5a4e708 100644
--- a/dev-python/sphobjinv/sphobjinv-2.0.1.ebuild
+++ b/dev-python/sphobjinv/sphobjinv-2.0.1.ebuild
@@ -21,20 +21,25 @@ KEYWORDS="~amd64 ~x86 "
 SLOT="0"
 
 RDEPEND="
-   dev-python/attrs[${PYTHON_USEDEP}]
+   >=dev-python/attrs-17.4[${PYTHON_USEDEP}]
dev-python/certifi[${PYTHON_USEDEP}]
dev-python/fuzzywuzzy[${PYTHON_USEDEP}]
dev-python/jsonschema[${PYTHON_USEDEP}]"
 
 DEPEND="
test? (
+   >=dev-python/pytest-4.4.0[${PYTHON_USEDEP}]
+   dev-python/pytest-ordering[${PYTHON_USEDEP}]
dev-python/pytest-subtests[${PYTHON_USEDEP}]
dev-python/pytest-timeout[${PYTHON_USEDEP}]
-   dev-python/stdio-mgr[${PYTHON_USEDEP}]
+   dev-python/sphinx-issues[${PYTHON_USEDEP}]
+   dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
+   >=dev-python/stdio-mgr-1.0.1[${PYTHON_USEDEP}]
dev-python/timeout-decorator[${PYTHON_USEDEP}]
)
 "
 
+#it may require sphinx==2.3.1
 distutils_enable_sphinx doc/source dev-python/sphinx_rtd_theme 
dev-python/sphinx-issues
 distutils_enable_tests pytest
 



[gentoo-commits] repo/proj/guru:master commit in: dev-python/pytest-trio/

2020-03-31 Thread Andrew Ammerlaan
commit: e0d5b38166015cc1c8eb29ee0799c642c1a915b2
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Tue Mar 31 16:43:22 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Tue Mar 31 16:43:22 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e0d5b381

dev-python/pytest-trio: more deps, more drama

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-python/pytest-trio/pytest-trio-0.5.2.ebuild | 12 +++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/dev-python/pytest-trio/pytest-trio-0.5.2.ebuild 
b/dev-python/pytest-trio/pytest-trio-0.5.2.ebuild
index 8232fa5..aba3ec7 100644
--- a/dev-python/pytest-trio/pytest-trio-0.5.2.ebuild
+++ b/dev-python/pytest-trio/pytest-trio-0.5.2.ebuild
@@ -34,14 +34,20 @@ DEPEND="
>=dev-python/hypothesis-3.64[${PYTHON_USEDEP}]
!~dev-python/pytest-3.7.0[${PYTHON_USEDEP}]
!~dev-python/pytest-3.7.1[${PYTHON_USEDEP}]
+   >=dev-python/pytest-4.3[${PYTHON_USEDEP}]
dev-python/trio-asyncio[${PYTHON_USEDEP}]
)
 "
 
 distutils_enable_tests pytest
-distutils_enable_sphinx docs/source
+distutils_enable_sphinx docs/source \
+   ">=dev-python/attrs-17.4.0" \
+   ">=dev-python/sphinx-1.6.1" \
+   dev-python/sphinx_rtd_theme \
+   dev-python/sphinxcontrib-trio
 
 python_prepare_all() {
+   #fix for https://github.com/python-trio/pytest-trio/issues/90
# AttributeError("module 'pytest' has no attribute 
'RemovedInPytest4Warning'",)
rm pytest_trio/_tests/conftest.py || die
 
@@ -50,6 +56,10 @@ python_prepare_all() {
 
 python_test() {
# has to be run in source dir
+   #even upstream doesn't know how to run their tests
+   #https://github.com/python-trio/pytest-trio/issues/84
+   #"Our CI is still passing AFAIK"
+
PYTHONPATH="${S}"
cd "${S}" || die
pytest -vv || die "Tests fail with ${EPYTHON}"



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/pytest-ordering/

2020-03-31 Thread Andrew Ammerlaan
commit: db2c2dfcf93d7e8b14a6746a755bfef7536fa43e
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Tue Mar 31 17:32:36 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Tue Mar 31 17:32:36 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=db2c2dfc

dev-python/pytest-ordering: depend on self for tests

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan  riseup.net>

 dev-python/pytest-ordering/pytest-ordering-0.6.ebuild | 14 --
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/dev-python/pytest-ordering/pytest-ordering-0.6.ebuild 
b/dev-python/pytest-ordering/pytest-ordering-0.6.ebuild
index 6cb756e..a6fe80e 100644
--- a/dev-python/pytest-ordering/pytest-ordering-0.6.ebuild
+++ b/dev-python/pytest-ordering/pytest-ordering-0.6.ebuild
@@ -3,7 +3,9 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+DISTUTILS_USE_SETUPTOOLS=rdepend
 
 inherit distutils-r1
 
@@ -18,7 +20,15 @@ LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 
-RDEPEND=""
+DEPEND="test? ( dev-python/pytest-ordering[${PYTHON_USEDEP}] )"
 
 distutils_enable_tests pytest
 distutils_enable_sphinx docs/source
+
+python_prepare_all() {
+   # TypeError: `args` parameter expected to be a list or tuple of 
strings, got: '--markers' (type: )
+   sed -i -e 's:test_run_marker_registered:_&:' \
+   tests/test_ordering.py || die
+
+   distutils-r1_python_prepare_all
+}



[gentoo-commits] proj/betagarden:master commit in: app-crypt/wile/

2020-03-31 Thread Sebastian Pipping
commit: d3860b1c94b7d87610130d61b15cfa2ac3b5c114
Author: Sebastian Pipping  gentoo  org>
AuthorDate: Tue Mar 31 17:14:28 2020 +
Commit: Sebastian Pipping  gentoo  org>
CommitDate: Tue Mar 31 17:17:13 2020 +
URL:https://gitweb.gentoo.org/proj/betagarden.git/commit/?id=d3860b1c

app-crypt/wile: Drop old + py3[67]

Signed-off-by: Sebastian Pipping  gentoo.org>

 app-crypt/wile/wile-1.0.1.ebuild   | 33 --
 app-crypt/wile/wile-1.0.5.ebuild   | 32 -
 .../{wile-1.0.6.ebuild => wile-1.0.6-r1.ebuild}| 12 ++--
 3 files changed, 9 insertions(+), 68 deletions(-)

diff --git a/app-crypt/wile/wile-1.0.1.ebuild b/app-crypt/wile/wile-1.0.1.ebuild
deleted file mode 100644
index 7579bb5..000
--- a/app-crypt/wile/wile-1.0.1.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-inherit distutils-r1
-
-DESCRIPTION="Stripped down letsencrypt (ACME) client"
-HOMEPAGE="https://github.com/costela/wile;
-SRC_URI="https://github.com/costela/wile/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="
-   >=dev-python/setuptools-38.5.1[${PYTHON_USEDEP}]
-   dev-python/setuptools_scm[${PYTHON_USEDEP}]
-   "
-RDEPEND="
-   >=app-crypt/acme-0.21[${PYTHON_USEDEP}]
-   dev-python/josepy[${PYTHON_USEDEP}]
-   dev-python/six[${PYTHON_USEDEP}]
-   dev-python/click[${PYTHON_USEDEP}]
-   dev-python/pyopenssl[${PYTHON_USEDEP}]
-   dev-python/cryptography[${PYTHON_USEDEP}]
-   dev-python/paramiko[${PYTHON_USEDEP}]
-   "
-
-DOCS=( README.md )
-

diff --git a/app-crypt/wile/wile-1.0.5.ebuild b/app-crypt/wile/wile-1.0.5.ebuild
deleted file mode 100644
index 8d8b140..000
--- a/app-crypt/wile/wile-1.0.5.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-inherit distutils-r1
-
-DESCRIPTION="Stripped down letsencrypt (ACME) client"
-HOMEPAGE="https://github.com/costela/wile;
-SRC_URI="https://github.com/costela/wile/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="
-   >=dev-python/setuptools-38.5.1[${PYTHON_USEDEP}]
-   dev-python/setuptools_scm[${PYTHON_USEDEP}]
-   "
-RDEPEND="
-   >app-crypt/acme-0.22[${PYTHON_USEDEP}]
-   dev-python/josepy[${PYTHON_USEDEP}]
-   dev-python/six[${PYTHON_USEDEP}]
-   

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

2020-03-31 Thread Fabian Groffen
commit: 095f4b4daf6029369c5d5ed308607c8b1e45276d
Author: Fabian Groffen  gentoo  org>
AuthorDate: Tue Mar 31 17:08:26 2020 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Tue Mar 31 17:08:26 2020 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=095f4b4d

scripts/bootstrap-prefix: check ownership of $EPREFIX dir, bug #715312

Closes: https://bugs.gentoo.org/715312
Signed-off-by: Fabian Groffen  gentoo.org>

 scripts/bootstrap-prefix.sh | 12 +++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
index 5eca478c5a..25e091c37a 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -2714,10 +2714,20 @@ EOF
EPREFIX=
continue
fi
+   if [[ $(stat -c '%U/%G' "${EPREFIX}"/.canihaswrite) != \
+   $(stat -c '%U/%G' "${EPREFIX}") ]] ;
+   then
+   echo
+   echo "The $EPREFIX directory has different ownership 
than expected."
+   echo "Ensure the directory is owned (user and group) by 
your"
+   echo "primary ids"
+   EPREFIX=
+   continue
+   fi
# don't really expect this one to fail
rm -f "${EPREFIX}"/.canihaswrite || exit 1
# location seems ok
-   break;
+   break
done
export STAGE1_PATH=${PATH}
export 
PATH="$EPREFIX/usr/bin:$EPREFIX/bin:$EPREFIX/tmp/usr/bin:$EPREFIX/tmp/bin:$EPREFIX/tmp/usr/local/bin:${PATH}"



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/pytest-trio/

2020-03-31 Thread Andrew Ammerlaan
commit: fda864a8f4df250f3de3122d3e7b1650f6d55aab
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Tue Mar 31 17:05:40 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Tue Mar 31 17:06:01 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fda864a8

dev-python/pytest-trio: test require package to already be isntalled

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan  riseup.net>

 dev-python/pytest-trio/pytest-trio-0.5.2.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/pytest-trio/pytest-trio-0.5.2.ebuild 
b/dev-python/pytest-trio/pytest-trio-0.5.2.ebuild
index aba3ec7..d0b4346 100644
--- a/dev-python/pytest-trio/pytest-trio-0.5.2.ebuild
+++ b/dev-python/pytest-trio/pytest-trio-0.5.2.ebuild
@@ -32,6 +32,7 @@ DEPEND="
${RDEPEND}
test? (
>=dev-python/hypothesis-3.64[${PYTHON_USEDEP}]
+   dev-python/pytest-trio[${PYTHON_USEDEP}]
!~dev-python/pytest-3.7.0[${PYTHON_USEDEP}]
!~dev-python/pytest-3.7.1[${PYTHON_USEDEP}]
>=dev-python/pytest-4.3[${PYTHON_USEDEP}]



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

2020-03-31 Thread Fabian Groffen
commit: 5ed5ce158eb5bbdefe78f0332ab87823da905f11
Author: Fabian Groffen  gentoo  org>
AuthorDate: Tue Mar 31 17:04:59 2020 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Tue Mar 31 17:04:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ed5ce15

mail-client/mutt: security cleanup

Bug: https://bugs.gentoo.org/715352
Closes: https://bugs.gentoo.org/695078
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Fabian Groffen  gentoo.org>

 mail-client/mutt/Manifest  |   6 -
 mail-client/mutt/metadata.xml  |   7 -
 mail-client/mutt/mutt-1.10.1.ebuild| 282 -
 mail-client/mutt/mutt-1.12.2-r2.ebuild | 272 ---
 mail-client/mutt/mutt-1.13.4-r1.ebuild | 261 --
 5 files changed, 828 deletions(-)

diff --git a/mail-client/mutt/Manifest b/mail-client/mutt/Manifest
index 3c1a869e3d5..af9a77b11b2 100644
--- a/mail-client/mutt/Manifest
+++ b/mail-client/mutt/Manifest
@@ -1,8 +1,2 @@
-DIST mutt-1.10.1.tar.gz 4255890 BLAKE2B 
2a0e7629c42ba11ec5c3686d9c17e283ed9cb1f9874decec9453cf01ae0780c7993ac0104db7987571f27c04e408c1eff47d3b73918eb9754c253b6249ad48f4
 SHA512 
13509ff159c65e23614696967b4bd8baf7b8e16c0e85cfd89e2df8201de2dc97e6c4a426f5919f05051dee2b14f847c7203e0b236931d3cdf81dbbb221551726
-DIST mutt-1.12.2.tar.gz 4675774 BLAKE2B 
0b0a4695f31db97437e7d6e52ca8e131376bd0ae168195a4a73c3d2230f4346c5b623e39b89c5cc7bf5253e7ffad8f007b844a864fcde94baef1aa7369f9
 SHA512 
a824a056edef0c320b7633a39ab2421646442132190c2b2bf788ac39aaf7a0143d12847eb27290913d8ae793810bb6353803977610045b36235579001a1096bd
-DIST mutt-1.13.4.tar.gz 4901222 BLAKE2B 
70ab2dcd93d860a2a1bc31059230f034bc87780e423f6a7ccd3b464d67c59d0f547ad2ae2ddfa42f07dc3d5ec9dea2e7302f92eeb2f5b9f722798ea80bf2fe1d
 SHA512 
59ae13d7cef052818f38f6d52e2cb42251f393ecf622eae113bfa29218b541195471de822efbdb072c6f74a4dc385bb94fe27c37b44c62eac7e2a0a4e0c6adc3
 DIST mutt-1.13.5.tar.gz 4902500 BLAKE2B 
24c7f40ca177a64118f30d3ea1af95ebbf88c4e9b53a12bab058544350606b85d47ed659eab5f59e5bf17964843243ce175b6e0f0571baca93367ed1bc866a94
 SHA512 
f2ea863626e5dad4854c98a1797faa97c9f14fb5161c590e88ee02afbdde7f48493bd2cce6109f9839501cf38aa238dc804f4c98f17ac97c68b48cb0bc0e5b4a
-DIST mutt-gentoo-1.10.1-patches-r0.tar.xz 108396 BLAKE2B 
86edca04154f96efce27543326f8610dffba0085c7d69e82a7ac5f48ae9cd6662bcf6afa0e55b3d83ec054ee2eb86dff70b0c15a5170f41cc57887e17a661406
 SHA512 
1e0675803abc2bc116ef6e726f5009c43b0fb7bbf9bd3141a7cbbded51033695ddcc5228612f228cd19dae4181719e756a85e3fa2c8c9a9a4a9aefb4170bd5f5
-DIST mutt-gentoo-1.12.2-patches-r1.tar.xz 106720 BLAKE2B 
788735757dd4cf8c1d9fe09350eaf4780b1e90f1e1d9bf39c98ee03255b9b84847a387402940d1a05e4be2b8684688216ea62f564c40715cd6ccf4bebaeebdc0
 SHA512 
ec8c0989bff2008e6df0c43a8e833fb4f463993eacb1cbdd11722a6c49bb400804c80f74ac0073883a050f352a65d2743c4aebc882a2cd7db369a4e214a95701
-DIST mutt-gentoo-1.13.4-patches-r0.tar.xz 36084 BLAKE2B 
80f508d55199b036d7ba2a5b848dc99a4d60acea5edbc5b582472ee61c89f477fe613c043c6abf6fd4c9ef6c70acc0c656c2e93430b2fbce0aa39a8e0a0ef480
 SHA512 
775b22b667d67d1ddc9b2c15d208c52f00bc8e42cabc2985eb5f2983589476d5fc6eaab38230aeafd7e4dbcb6165eef33ea2d5721cc973d406ca4f736afd4c32
 DIST mutt-gentoo-1.13.5-patches-r0.tar.xz 35932 BLAKE2B 
7f4488e6478ba2a2593a58d9905fd8cb857d95a7c05dd90d7d08843bafc060c0560fc5061a85a0a91baf063f055139fa09e5a54ea353e0118418f73baa333928
 SHA512 
1ddad0550a9bc772247d5ca468efd044c9eeccb497cbe391b19382d598fd0ec8dbdb3d34d4297cc5cd3a8ff43c881155a5874db24e89c0f2a4702b6e0ba4f0d9

diff --git a/mail-client/mutt/metadata.xml b/mail-client/mutt/metadata.xml
index 3c947815701..6d9a60c2d6f 100644
--- a/mail-client/mutt/metadata.xml
+++ b/mail-client/mutt/metadata.xml
@@ -13,21 +13,14 @@
to be enabled
Enable dev-db/lmdb database 
backend for
header caching
-   Enable support for 
net-mail/notmuch
Enable support for POP3 mailboxes
Enable support for direct SMTP delivery
Enable dev-db/tokyocabinet
database backend for header caching
-   Build classic_pgp backend to support 
PGP/MIME
-   and traditional/inline PGP
Build classic_pgp backend to support 
PGP/MIME
and traditional/inline PGP
-   Enable support for 
app-crypt/gpgme
Build gpgme backend to support S/MIME, 
PGP/MIME and
traditional/inline PGP
-   Enable support for smime
-   Build classic_smime backend to 
support
-   S/MIME
Build classic_smime backend to 
support
S/MIME


diff --git a/mail-client/mutt/mutt-1.10.1.ebuild 
b/mail-client/mutt/mutt-1.10.1.ebuild
deleted file mode 100644
index b61d695b111..000
--- a/mail-client/mutt/mutt-1.10.1.ebuild

[gentoo-commits] repo/gentoo:master commit in: media-fonts/tex-gyre/

2020-03-31 Thread Sebastian Pipping
commit: 5355181f87c97206c05941e23b730a7d961d05f9
Author: Sebastian Pipping  gentoo  org>
AuthorDate: Tue Mar 31 16:47:58 2020 +
Commit: Sebastian Pipping  gentoo  org>
CommitDate: Tue Mar 31 16:47:58 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5355181f

media-fonts/tex-gyre: De-warn MissingUnpackerDep

Signed-off-by: Sebastian Pipping  gentoo.org>
Package-Manager: Portage-2.3.92, Repoman-2.3.20

 media-fonts/tex-gyre/tex-gyre-2.005.ebuild | 2 ++
 media-fonts/tex-gyre/tex-gyre-2.501.ebuild | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/media-fonts/tex-gyre/tex-gyre-2.005.ebuild 
b/media-fonts/tex-gyre/tex-gyre-2.005.ebuild
index 1a12d6e0a27..2e47c60fea5 100644
--- a/media-fonts/tex-gyre/tex-gyre-2.005.ebuild
+++ b/media-fonts/tex-gyre/tex-gyre-2.005.ebuild
@@ -12,5 +12,7 @@ LICENSE="|| ( GFL LPPL-1.3c )" # legally equivalent
 SLOT="0"
 KEYWORDS="~alpha amd64 ~arm arm64 ~hppa x86"
 
+DEPEND="app-arch/unzip"
+
 S=${WORKDIR}
 FONT_SUFFIX="otf"

diff --git a/media-fonts/tex-gyre/tex-gyre-2.501.ebuild 
b/media-fonts/tex-gyre/tex-gyre-2.501.ebuild
index bd2992159bd..ad498a6c96f 100644
--- a/media-fonts/tex-gyre/tex-gyre-2.501.ebuild
+++ b/media-fonts/tex-gyre/tex-gyre-2.501.ebuild
@@ -13,5 +13,7 @@ LICENSE="|| ( GFL LPPL-1.3c )" # legally equivalent
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~x86"
 
+BDEPEND="app-arch/unzip"
+
 S="${WORKDIR}/${MY_P}"
 FONT_SUFFIX="otf"



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/pytest-trio/

2020-03-31 Thread Alessandro Barbieri
commit: e0d5b38166015cc1c8eb29ee0799c642c1a915b2
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Tue Mar 31 16:43:22 2020 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Tue Mar 31 16:43:22 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e0d5b381

dev-python/pytest-trio: more deps, more drama

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-python/pytest-trio/pytest-trio-0.5.2.ebuild | 12 +++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/dev-python/pytest-trio/pytest-trio-0.5.2.ebuild 
b/dev-python/pytest-trio/pytest-trio-0.5.2.ebuild
index 8232fa5..aba3ec7 100644
--- a/dev-python/pytest-trio/pytest-trio-0.5.2.ebuild
+++ b/dev-python/pytest-trio/pytest-trio-0.5.2.ebuild
@@ -34,14 +34,20 @@ DEPEND="
>=dev-python/hypothesis-3.64[${PYTHON_USEDEP}]
!~dev-python/pytest-3.7.0[${PYTHON_USEDEP}]
!~dev-python/pytest-3.7.1[${PYTHON_USEDEP}]
+   >=dev-python/pytest-4.3[${PYTHON_USEDEP}]
dev-python/trio-asyncio[${PYTHON_USEDEP}]
)
 "
 
 distutils_enable_tests pytest
-distutils_enable_sphinx docs/source
+distutils_enable_sphinx docs/source \
+   ">=dev-python/attrs-17.4.0" \
+   ">=dev-python/sphinx-1.6.1" \
+   dev-python/sphinx_rtd_theme \
+   dev-python/sphinxcontrib-trio
 
 python_prepare_all() {
+   #fix for https://github.com/python-trio/pytest-trio/issues/90
# AttributeError("module 'pytest' has no attribute 
'RemovedInPytest4Warning'",)
rm pytest_trio/_tests/conftest.py || die
 
@@ -50,6 +56,10 @@ python_prepare_all() {
 
 python_test() {
# has to be run in source dir
+   #even upstream doesn't know how to run their tests
+   #https://github.com/python-trio/pytest-trio/issues/84
+   #"Our CI is still passing AFAIK"
+
PYTHONPATH="${S}"
cd "${S}" || die
pytest -vv || die "Tests fail with ${EPYTHON}"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/roct-thunk-interface/

2020-03-31 Thread Craig Andrews
commit: f5162ad56ba348934879a0153fd69e614afae5d1
Author: Craig Andrews  gentoo  org>
AuthorDate: Tue Mar 31 16:36:21 2020 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Tue Mar 31 16:36:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5162ad5

dev-libs/roct-thunk-interface: 3.3.0 version bump

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

 dev-libs/roct-thunk-interface/Manifest |  1 +
 .../roct-thunk-interface-3.3.0.ebuild  | 42 ++
 2 files changed, 43 insertions(+)

diff --git a/dev-libs/roct-thunk-interface/Manifest 
b/dev-libs/roct-thunk-interface/Manifest
index a23ae004640..1013c5269ab 100644
--- a/dev-libs/roct-thunk-interface/Manifest
+++ b/dev-libs/roct-thunk-interface/Manifest
@@ -1,2 +1,3 @@
 DIST roct-thunk-interface-3.0.0.tar.gz 2685769 BLAKE2B 
d8ecf26113357a2a400bc1f2d4b40e38f2bd1bd5ac2c77c189490df9bcc7864f8357c262ad62d6cbf0f62f41edd9e09f5b75ce1e66f3a589d143a3883942a12d
 SHA512 
18756a626d57255cfdd03b38dbc56769e4e28dbe1b00cc1e3d99a39dcd943bafebedc1774c76a191cdaf83b2bce4ac464dc97cbd088894447afddcca50447e9f
 DIST roct-thunk-interface-3.1.0.tar.gz 2688973 BLAKE2B 
b372e12ba5795a0f1e85f7c904059fbe71e147051f287939aacb165c6ca3068e59694c891e3ebdec945e494df4134ca6e4595e7b00893479387d2326b9af5b13
 SHA512 
dd63d097a42c8751846a1c5649a9c35c0d5e5dc68b1e8080cb6e333f787851ebc649c36d952aefbefbf9558c914d55c612800e85620b24676d7d2d7454bb3490
+DIST roct-thunk-interface-3.3.0.tar.gz 2689906 BLAKE2B 
0eee8be65b0be8136dc0091cbc5534b89d630b9ffc1af1d6bdbf98671e141f524b3789153da673ed27dc3810d73e6ea8afb2fed776aa8df83e3c613b3776f81c
 SHA512 
6ee02e5a9ef04ff9f873f762a78dcab93e45a98793545a882839fc2c890ea13030038130b1de266422eea58681e9fffa119e54b8d2f980c3a09c92b692d5cf3e

diff --git a/dev-libs/roct-thunk-interface/roct-thunk-interface-3.3.0.ebuild 
b/dev-libs/roct-thunk-interface/roct-thunk-interface-3.3.0.ebuild
new file mode 100644
index 000..9ec113c78eb
--- /dev/null
+++ b/dev-libs/roct-thunk-interface/roct-thunk-interface-3.3.0.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake linux-info
+
+if [[ ${PV} == * ]] ; then
+   
EGIT_REPO_URI="https://github.com/RadeonOpenCompute/ROCT-Thunk-Interface/;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/RadeonOpenCompute/ROCT-Thunk-Interface/archive/roc-${PV}.tar.gz
 -> ${P}.tar.gz"
+   S="${WORKDIR}/ROCT-Thunk-Interface-roc-${PV}"
+   KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="Radeon Open Compute Thunk Interface"
+HOMEPAGE="https://github.com/RadeonOpenCompute/ROCT-Thunk-Interface;
+CONFIG_CHECK="~HSA_AMD ~HMM_MIRROR ~ZONE_DEVICE ~DRM_AMDGPU 
~DRM_AMDGPU_USERPTR"
+LICENSE="MIT"
+SLOT="0/$(ver_cut 1-2)"
+
+RDEPEND="sys-process/numactl
+   sys-apps/pciutils"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+   sed -e "s:get_version ( \"1.0.0\" ):get_version ( \"${PV}\" ):" -i 
CMakeLists.txt || die
+   cmake_src_prepare
+}
+src_configure() {
+   local mycmakeargs=(
+   -DCPACK_PACKAGING_INSTALL_PREFIX="${EPREFIX}/usr"
+   )
+   cmake_src_configure
+}
+src_compile() {
+   cmake_src_compile build-dev
+}
+src_install() {
+   cmake_src_install install-dev
+}



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

2020-03-31 Thread Craig Andrews
commit: e493783e357e43bcc58f08c1aa563bd1604ae8ac
Author: Craig Andrews  gentoo  org>
AuthorDate: Tue Mar 31 16:35:04 2020 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Tue Mar 31 16:36:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e493783e

dev-util/rocminfo: 3.3.0 version bump

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

 dev-util/rocminfo/Manifest| 1 +
 dev-util/rocminfo/{rocminfo-.ebuild => rocminfo-3.3.0.ebuild} | 4 ++--
 dev-util/rocminfo/rocminfo-.ebuild| 4 ++--
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/dev-util/rocminfo/Manifest b/dev-util/rocminfo/Manifest
index 2d2a2b1f111..a4dbe1c21a0 100644
--- a/dev-util/rocminfo/Manifest
+++ b/dev-util/rocminfo/Manifest
@@ -5,3 +5,4 @@ DIST rocminfo-2.8.0.tar.gz 14786 BLAKE2B 
ec439fb771980d6b4777e9c3b11e23055eee7b8
 DIST rocminfo-2.9.0.tar.gz 14791 BLAKE2B 
5438862e461b9c2f53560138f4b7437876048edff6ff31715e9af2be535167042b170c492c59c41862a55a742a53047e2e9f0478fa73c8cf948c0fc1ff388594
 SHA512 
90c5c1de3ea6e917b338a5498d9e071dd491a97bd7b927dc1ddca568df08b52b6b8518a1105dfab7a262b78d1cb89117813084dfce6b73d7aae40abd357f81d1
 DIST rocminfo-3.0.0.tar.gz 14786 BLAKE2B 
4fab1258ff9b43620c79c811678071c38db5afedd9fb5a95227d73e7d2d4104dfbaa72855c845a663b8dabb9ea8f17962baa5ca65613fc40c2d3c3e1c1b7d08b
 SHA512 
94f7c3773b18a8d3bce773b624164d0a4b928b2411ef83307e46634e09259eb8f431f576f0673186f1f44b54c72004818aa10858520b8d86fe283f2f5ed3f5f1
 DIST rocminfo-3.1.0.tar.gz 15113 BLAKE2B 
5155819afff87a87a40d5e57c194573a29b85d654bfaf446a17a893490143546e8c706020baae4f1d23a28e53894b20f457dcabf8615730e42e4a18b2caefe12
 SHA512 
d0be50bab99c4df1ce74e3bf98db68249c681a5eeb6839e4ee6aa91a208ed829d1288ce3cc82f564a22ca8b6f62b65f3c40c3784e21e1fd4953c81315d044dfc
+DIST rocminfo-3.3.0.tar.gz 15120 BLAKE2B 
4ac93144dc76d5b8839d3d1cca51d92fdd88ee66ec141afccd84fa3ef2fcf4b140dc78d43f8cbb57eba678e00c247c8189b80c1e0b69662226b505dca57f6be1
 SHA512 
f2f273882a83632f0d9e7817a722b252cb2c1c7cf5d86cc8980ea680c073f6aa666c4150fff498e8bc48396e3e23f544d05485ee1672bc34223ca8ec64226854

diff --git a/dev-util/rocminfo/rocminfo-.ebuild 
b/dev-util/rocminfo/rocminfo-3.3.0.ebuild
similarity index 91%
copy from dev-util/rocminfo/rocminfo-.ebuild
copy to dev-util/rocminfo/rocminfo-3.3.0.ebuild
index 99b4e1f557d..cac515f5ca2 100644
--- a/dev-util/rocminfo/rocminfo-.ebuild
+++ b/dev-util/rocminfo/rocminfo-3.3.0.ebuild
@@ -9,9 +9,9 @@ if [[ ${PV} == * ]] ; then
EGIT_REPO_URI="https://github.com/RadeonOpenCompute/rocminfo/;
inherit git-r3
 else
-   
SRC_URI="https://github.com/RadeonOpenCompute/rocminfo/archive/roc-${PV}.tar.gz 
-> ${P}.tar.gz"
+   
SRC_URI="https://github.com/RadeonOpenCompute/rocminfo/archive/rocm-${PV}.tar.gz
 -> ${P}.tar.gz"
KEYWORDS="~amd64"
-   S="${WORKDIR}/rocminfo-roc-${PV}"
+   S="${WORKDIR}/rocminfo-rocm-${PV}"
 fi
 
 DESCRIPTION="ROCm Application for Reporting System Info"

diff --git a/dev-util/rocminfo/rocminfo-.ebuild 
b/dev-util/rocminfo/rocminfo-.ebuild
index 99b4e1f557d..cac515f5ca2 100644
--- a/dev-util/rocminfo/rocminfo-.ebuild
+++ b/dev-util/rocminfo/rocminfo-.ebuild
@@ -9,9 +9,9 @@ if [[ ${PV} == * ]] ; then
EGIT_REPO_URI="https://github.com/RadeonOpenCompute/rocminfo/;
inherit git-r3
 else
-   
SRC_URI="https://github.com/RadeonOpenCompute/rocminfo/archive/roc-${PV}.tar.gz 
-> ${P}.tar.gz"
+   
SRC_URI="https://github.com/RadeonOpenCompute/rocminfo/archive/rocm-${PV}.tar.gz
 -> ${P}.tar.gz"
KEYWORDS="~amd64"
-   S="${WORKDIR}/rocminfo-roc-${PV}"
+   S="${WORKDIR}/rocminfo-rocm-${PV}"
 fi
 
 DESCRIPTION="ROCm Application for Reporting System Info"



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

2020-03-31 Thread Thomas Deutschmann
commit: 4108503ab5d6c56c546ba9aa6fb538972d6a9096
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Mar 31 16:13:04 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Mar 31 16:26:57 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4108503a

www-client/firefox: fix quoting

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Thomas Deutschmann  gentoo.org>

 www-client/firefox/files/firefox.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-client/firefox/files/firefox.sh 
b/www-client/firefox/files/firefox.sh
index e3412b3b47c..dcb2a8d606d 100644
--- a/www-client/firefox/files/firefox.sh
+++ b/www-client/firefox/files/firefox.sh
@@ -103,8 +103,8 @@ export MOZ_ALLOW_DOWNGRADE=1
 ## names and contect menus
 ##
 if [[ $@ != *"--name "* ]]; then
-   set -- "--name ${DESKTOP_FILE}" "$@"
+   set -- --name "${DESKTOP_FILE}" "$@"
 fi
 
 # Run the browser
-exec ${MOZ_PROGRAM} $@
+exec ${MOZ_PROGRAM} "$@"



[gentoo-commits] repo/gentoo:master commit in: www-client/firefox-bin/files/

2020-03-31 Thread Thomas Deutschmann
commit: f15eb0616cbc5992c7486772eea825d32d4c44f9
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Mar 31 16:14:12 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Mar 31 16:27:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f15eb061

www-client/firefox-bin: fix quoting

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Thomas Deutschmann  gentoo.org>

 www-client/firefox-bin/files/firefox-bin.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-client/firefox-bin/files/firefox-bin.sh 
b/www-client/firefox-bin/files/firefox-bin.sh
index 069b474ac8a..b0231854800 100644
--- a/www-client/firefox-bin/files/firefox-bin.sh
+++ b/www-client/firefox-bin/files/firefox-bin.sh
@@ -98,8 +98,8 @@ export GTK_PATH="${MOZ_LIB_DIR}/gtk-3.0"
 ## names and contect menus
 ##
 if [[ $@ != *"--name "* ]]; then
-   set -- "--name ${DESKTOP_FILE}" "$@"
+   set -- --name "${DESKTOP_FILE}" "$@"
 fi
 
 # Run the browser
-exec ${MOZ_PROGRAM} $@
+exec ${MOZ_PROGRAM} "$@"



[gentoo-commits] repo/gentoo:master commit in: net-print/gutenprint/

2020-03-31 Thread Miroslav Å ulc
commit: 592ac06c7193ce22a695ab7812df88ea0072040b
Author: Miroslav Å ulc  gentoo  org>
AuthorDate: Tue Mar 31 16:03:34 2020 +
Commit: Miroslav Å ulc  gentoo  org>
CommitDate: Tue Mar 31 16:04:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=592ac06c

net-print/gutenprint: removed old 5.3.1 & dropping to ~ia64

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Miroslav Å ulc  gentoo.org>

 net-print/gutenprint/Manifest|  1 -
 net-print/gutenprint/gutenprint-5.3.1.ebuild | 94 
 2 files changed, 95 deletions(-)

diff --git a/net-print/gutenprint/Manifest b/net-print/gutenprint/Manifest
index 633fabf6b1b..88c4bc61669 100644
--- a/net-print/gutenprint/Manifest
+++ b/net-print/gutenprint/Manifest
@@ -1,2 +1 @@
-DIST gutenprint-5.3.1.tar.xz 5153260 BLAKE2B 
03465158944a77af93bfaf13878f821f13e63eac1bd92f9e33ba003b49a4cc1864e0ddf2bd3d72cec9fd2759401f90304f62ec068c3b62b0c210c53d1265c0d1
 SHA512 
214d07e6f78130e95c8c9d98f0862921d26f74a7c302afabdb138b35ef5f02f52fa143411983867fd7015477c16ca18cf8001e6552c27cd4a12c08ff77e92986
 DIST gutenprint-5.3.3.tar.xz 5050624 BLAKE2B 
dbcf74169d0756d991bbdad7338a6e6f995f8eeedc2610677b327abee6aecc787d1cc35949f73c1d93ad274de7d467542b72a5fe0abf58fbc4ec6f21667cbad7
 SHA512 
d2c47eb4ccc3c46ccb2f1042682edf7443f5c57439ead72f49ecd10537cf967251bacf7ca7da29fb8dceecc7eebd55ed021f2594ff9fb6509bab543fab1dc8d6

diff --git a/net-print/gutenprint/gutenprint-5.3.1.ebuild 
b/net-print/gutenprint/gutenprint-5.3.1.ebuild
deleted file mode 100644
index fcbf7a181fe..000
--- a/net-print/gutenprint/gutenprint-5.3.1.ebuild
+++ /dev/null
@@ -1,94 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit autotools
-
-DESCRIPTION="Ghostscript and cups printer drivers"
-HOMEPAGE="http://gutenprint.sourceforge.net;
-
-MY_P="${P/_/-}"
-S="${WORKDIR}/${MY_P}"
-SRC_URI="mirror://sourceforge/gimp-print/${MY_P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ia64 ppc ppc64 sparc x86"
-
-IUSE="cups gimp gtk nls readline ppds static-libs"
-REQUIRED_USE="gimp? ( gtk )"
-
-# gimp restriction: https://sourceforge.net/p/gimp-print/bugs/725/
-RDEPEND="
-   dev-lang/perl
-   readline? ( sys-libs/readline:0= )
-   cups? ( >=net-print/cups-1.1.14 )
-   gimp? ( 

[gentoo-commits] data/gentoo-news:master commit in: 2020-03-30-stable-ia64-keywords-removed/

2020-03-31 Thread Matt Turner
commit: 1fce326930152693ed2a03805c55c1dc943235ed
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Mar 30 17:21:34 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Mar 30 17:23:03 2020 +
URL:https://gitweb.gentoo.org/data/gentoo-news.git/commit/?id=1fce3269

2020-03-30-stable-ia64-keywords-removed: Add news item

Signed-off-by: Matt Turner  gentoo.org>

 .../2020-03-30-stable-ia64-keywords-removed.en.txt | 14 ++
 1 file changed, 14 insertions(+)

diff --git 
a/2020-03-30-stable-ia64-keywords-removed/2020-03-30-stable-ia64-keywords-removed.en.txt
 
b/2020-03-30-stable-ia64-keywords-removed/2020-03-30-stable-ia64-keywords-removed.en.txt
new file mode 100644
index 000..ad55ad1
--- /dev/null
+++ 
b/2020-03-30-stable-ia64-keywords-removed/2020-03-30-stable-ia64-keywords-removed.en.txt
@@ -0,0 +1,14 @@
+Title: Stable ia64 keywords removed
+Author: Matt Turner 
+Posted: 2020-03-30
+Revision: 1
+News-Item-Format: 2.0
+Display-If-Keyword: ia64
+
+The Gentoo/IA64 team no longer thinks that the time invested in package
+stabilization is warranted for the small number of users on IA64. As a
+result, we will drop all "ia64" keywords to "~ia64" on 2020-04-03 and will
+add "~ia64" to ACCEPT_KEYWORDS in the profile.
+
+Users need not make any changes to their systems, and the Gentoo/IA64 team
+has no plans to remove support for the architecture.



[gentoo-commits] repo/gentoo:master commit in: media-radio/qrq/, media-radio/qrq/files/

2020-03-31 Thread Thomas Beierlein
commit: 493867cfc6f6a6751fa3819ea7d681d6067cf178
Author: Thomas Beierlein  gentoo  org>
AuthorDate: Tue Mar 31 15:45:49 2020 +
Commit: Thomas Beierlein  gentoo  org>
CommitDate: Tue Mar 31 15:55:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=493867cf

media-radio/qrq: Drop old

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Thomas Beierlein  gentoo.org>

 media-radio/qrq/Manifest|  2 --
 media-radio/qrq/files/qrq-0.3.1-tinfo.patch | 20 --
 media-radio/qrq/qrq-0.3.1-r1.ebuild | 41 -
 media-radio/qrq/qrq-0.3.2.ebuild| 41 -
 4 files changed, 104 deletions(-)

diff --git a/media-radio/qrq/Manifest b/media-radio/qrq/Manifest
index 8e66b620d1e..a15abfa1011 100644
--- a/media-radio/qrq/Manifest
+++ b/media-radio/qrq/Manifest
@@ -1,3 +1 @@
-DIST qrq-0.3.1.tar.gz 131508 BLAKE2B 
f33f970b7d94291740ad4a7f0136a4ecf98aa9e7ef927e776326792da3dee884e114ea265354c2f5e15048a4979cfc195b9f5b827b76a11a267b15e6f9f58cc6
 SHA512 
ce6e3b6f79575f11457f56e1044267dbefda20b13ba43fd79b2ad5821b4502a8a2badacbd891e154472d6f26334a0a8fcddf9521d905d8e7a72d8a687346e23d
-DIST qrq-0.3.2.tar.gz 132546 BLAKE2B 
a19be5742deb719471c43e873c387995ab51a776d0f5b303f0f2fa15a87c697961cd5c93cc615a496f7377e0ab43ac8a2c12edbc7bc11ac44997b1b6788ad809
 SHA512 
1513428ee836610c7d755315a1cfc03dadacc33d78605fa9d0dd84786f4122f7ba7f928afa40a4fdc0bb9b19151fb8acdd1a7684a2ac6a76703379b9121e6ac5
 DIST qrq-0.3.3.tar.gz 159832 BLAKE2B 
7af974175777f6166303ece0e0cfa0a035d49e0c265cd513b771a280dc7ac0772a979f45923a14737ff58a64147f8c97a3978ccd7e4cd81fe4a38f3156766057
 SHA512 
025f0a350600a9f3f24cb00afcaa0e99c0be881e40684cc7ccbb9927d883372336c0b668bae21f232ce52dd221eb4ed950d306a32bab34e65f9f3cba9f28a484

diff --git a/media-radio/qrq/files/qrq-0.3.1-tinfo.patch 
b/media-radio/qrq/files/qrq-0.3.1-tinfo.patch
deleted file mode 100644
index 83ae2b0e7bc..000
--- a/media-radio/qrq/files/qrq-0.3.1-tinfo.patch
+++ /dev/null
@@ -1,20 +0,0 @@
 a/Makefile 2017-04-03 18:45:09.028423872 +0200
-+++ b/Makefile 2017-04-03 18:45:55.711048924 +0200
-@@ -47,7 +47,7 @@ ifeq ($(USE_CA), YES)
-   endif
- else ifeq ($(USE_PA), YES)
-   CFLAGS:=$(CFLAGS) -D PA -pthread
--  LDFLAGS:=$(LDFLAGS) -lpulse-simple -lpulse -lncurses
-+  LDFLAGS:=$(LDFLAGS) -lpulse-simple -lpulse $(shell pkg-config 
ncurses --libs)
-   OBJECTS=qrq.o pulseaudio.o
- else ifeq ($(USE_WIN32), YES)
-   CFLAGS:=$(CFLAGS) -D PA
-@@ -55,7 +55,7 @@
-   OBJECTS=qrq.o qrq.res pdcurses.a libpthreadGC1.a 
- else
-   OBJECTS=qrq.o oss.o
--  LDFLAGS:=$(LDFLAGS) -lpthread -lncurses
-+  LDFLAGS:=$(LDFLAGS) -lpthread $(shell pkg-config ncurses --libs)
-   CFLAGS:=$(CFLAGS) -D OSS
- endif 
- 

diff --git a/media-radio/qrq/qrq-0.3.1-r1.ebuild 
b/media-radio/qrq/qrq-0.3.1-r1.ebuild
deleted file mode 100644
index cf605dee2b5..000
--- a/media-radio/qrq/qrq-0.3.1-r1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit toolchain-funcs
-
-DESCRIPTION="Yet another CW trainer for Linux/Unix"
-HOMEPAGE="http://fkurz.net/ham/qrq.html;
-SRC_URI="http://fkurz.net/ham/${PN}/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="pulseaudio"
-
-DEPEND="sys-libs/ncurses:=
-   pulseaudio? ( media-sound/pulseaudio )"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   eapply "${FILESDIR}"/${P}-tinfo.patch
-   # avoid prestripping of 'qrq' binary
-   sed -i -e "s/install -s -m/install -m/" Makefile || die
-   sed -i -e "s/CC=gcc/CC=$(tc-getCC)/" Makefile || die
-   sed -i -e "s/-lpulse-simple/-lpthread -lpulse-simple/" Makefile || die
-   default
-}
-
-src_compile() {
-   CONF="USE_PA=NO USE_OSS=YES"
-   if use pulseaudio; then
-   CONF="USE_PA=YES USE_OSS=NO"
-   fi
-   emake $CONF
-}
-
-src_install() {
-   emake $CONF DESTDIR="${D}/usr" install
-   dodoc AUTHORS ChangeLog README
-}

diff --git a/media-radio/qrq/qrq-0.3.2.ebuild b/media-radio/qrq/qrq-0.3.2.ebuild
deleted file mode 100644
index b5eeded2344..000
--- a/media-radio/qrq/qrq-0.3.2.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit toolchain-funcs
-
-DESCRIPTION="Yet another CW trainer for Linux/Unix"
-HOMEPAGE="http://fkurz.net/ham/qrq.html;
-SRC_URI="http://fkurz.net/ham/${PN}/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="pulseaudio"
-
-DEPEND="sys-libs/ncurses:=
-   pulseaudio? ( media-sound/pulseaudio )"
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}/${P}-tinfo.patch" )
-
-src_prepare() {
-   # avoid prestripping of 'qrq' binary
-   sed 

[gentoo-commits] repo/gentoo:master commit in: media-radio/dxcc/

2020-03-31 Thread Thomas Beierlein
commit: a648c3dc8f1a70274779e281e1d9178dd14b7036
Author: Thomas Beierlein  gentoo  org>
AuthorDate: Tue Mar 31 15:55:32 2020 +
Commit: Thomas Beierlein  gentoo  org>
CommitDate: Tue Mar 31 15:55:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a648c3dc

media-radio/dxcc: Drop old

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Thomas Beierlein  gentoo.org>

 media-radio/dxcc/Manifest|  1 -
 media-radio/dxcc/dxcc-20080225-r1.ebuild | 26 --
 2 files changed, 27 deletions(-)

diff --git a/media-radio/dxcc/Manifest b/media-radio/dxcc/Manifest
index c5f0c61c583..4bd889ffeae 100644
--- a/media-radio/dxcc/Manifest
+++ b/media-radio/dxcc/Manifest
@@ -1,3 +1,2 @@
-DIST dxcc-20080225.tar.gz 110774 BLAKE2B 
45673644fc3fdc0eb3ec072df64ee79441a1c7e5afcbce7e5b33c159eef75c254fe2796086fe9a1781293e8a1671e9cfe872f6ef8446d34f6168ec9cbd9f9fcc
 SHA512 
ef976d5c94b488d3dec132850f9c4da34caf02eee77a8c38a3fce5ccb033ffb848d5814eb72756d04235b9cc454f17f4c31aa47295c9e9cecec716ff32bf3df7
 DIST dxcc-20190309.tar.gz 175488 BLAKE2B 
46ef8e87e0c70b4d58f3a6533f651aff078502705206f145dc25b5380db0019faa49dbb9003896c4ace33f35d59b349155bb77584d235700ea4532f71744fb44
 SHA512 
c7bad51ade05d60aa077b24c87bf5370728038503e190808eb774b307089269fe21d068f86487455ec1b23e5b90a560ef53794834ffe7e6eefc6fd78effdec21
 DIST dxcc-20191204.tar.gz 176076 BLAKE2B 
86f18d7ce381e2ac8c5baa31e71d26d031cae47ab19d6a89af7d18662877901649286281e55e15fe068649f54449d474d72cfdb6cf87fb9c66e698095c7093c8
 SHA512 
a4fe2034ebd9674dc63e998dc68aa5d56eebae2203eb7a3e90edb2b71283bee76c1b68a99561596d2afb80777ba8ef071f1d5d12c6b6e1ea6ce1e2425ab22144

diff --git a/media-radio/dxcc/dxcc-20080225-r1.ebuild 
b/media-radio/dxcc/dxcc-20080225-r1.ebuild
deleted file mode 100644
index 41f7df911b1..000
--- a/media-radio/dxcc/dxcc-20080225-r1.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils
-
-DESCRIPTION="A ham radio callsign DXCC lookup utility"
-HOMEPAGE="http://fkurz.net/ham/dxcc.html;
-SRC_URI="http://fkurz.net/ham/${PN}/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="tk"
-
-RDEPEND="dev-lang/perl
-   tk? ( dev-perl/Tk )"
-
-src_prepare() {
-   epatch "${FILESDIR}/Makefile.patch"
-}
-
-src_install() {
-   emake DESTDIR="${D}/usr" install
-   dodoc README ChangeLog
-}



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

2020-03-31 Thread Mike Pagano
commit: d2c9f9cd300ff25e03d5a4e6b5af44aa5a5a3462
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Mar 31 15:52:56 2020 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Mar 31 15:52:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2c9f9cd

sys-kernel/gentoo-sources: Clean-up of old, unsupported kernels in 5.5.X

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Mike Pagano  gentoo.org>

 sys-kernel/gentoo-sources/Manifest |  9 ---
 .../gentoo-sources/gentoo-sources-5.5.7.ebuild | 28 --
 .../gentoo-sources/gentoo-sources-5.5.8.ebuild | 28 --
 .../gentoo-sources/gentoo-sources-5.5.9.ebuild | 28 --
 4 files changed, 93 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index a19d87c0a72..e24df72dfd9 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -43,12 +43,6 @@ DIST genpatches-5.4-27.extras.tar.xz 1744 BLAKE2B 
876ee0915d60032a8a8c33ebdd9a8a
 DIST genpatches-5.4-28.base.tar.xz 1116800 BLAKE2B 
9046755867bb255b7faefbee6b4b1d8ad4c105927dc4d215f9712c8e6972010d048d4d11732f50a38d6e1d12877c29520ddcc1572c50aa11bd5224dd75076398
 SHA512 
1be72cb5436ae5671f56f3cfe5fe1a426ccd2d4adcd5a77932bce7656f7987efbee2d3f601c7dc9aeda45b52ee96c097a2940cd5014aabecb4efd37b77e7d061
 DIST genpatches-5.4-28.experimental.tar.xz 6144 BLAKE2B 
e3d2c5ff450f02f9beaa88e3386acd39da9cbea0431097ad9a089f795d62d0c7409de3ea2c25e2173bb8e6860215f76800fab2d5cfe0c8c8012c7453bd1f950e
 SHA512 
f7f521dad25375ac5a630ff506439db1598039e51e4e704069ed1c942037099a77048dece44bdd7d46e591a1168347a78c70504204ac9a19965b33e0b83a8ceb
 DIST genpatches-5.4-28.extras.tar.xz 1744 BLAKE2B 
6516e021b69ebb3bf6632e255752ea34fc9b76dc1b6061c412c4ea1abd652771463902cc8e9f163ed1153965c403fe22e733a6e9a35de1e8b0b033e48a769be5
 SHA512 
4766a65d4a37ff44ecce6140710b3e8aab4a997966ff8af3551573fb37b369cba7c626338090a09451ca118425158729c3b1bb9c4478245c067b28fbc4f45754
-DIST genpatches-5.5-10.base.tar.xz 456696 BLAKE2B 
d26c970cad7ffc6950f92fdd906a85f4e0e6242c6450b7ac0211a2cab8ade3c03112f3220943babbf26f115d35d3ba3dec18ff00c7a5608efadcaf7d417431e3
 SHA512 
bbd56eac912dac056d8273a9f3c21710fc614619b1bb6b52c48bf5972518a17ae20ad8601fb294a446415d0ecda57501681a4bbf13fe4a493a48a0d2d324e396
-DIST genpatches-5.5-10.experimental.tar.xz 5596 BLAKE2B 
7f4253811033204ded79c9c7b4d103cdefaf2ce459739fc32da9a0802ad61b5d118628ae9a70103ee460c9b7c4a79b6d48190d105b7a4d5e7b06061cd1969647
 SHA512 
8d655fe247c860096ee15140c58df8da172524c51433ad60426e1ea528f69d4e5ecb24d2ff39c3400dfe18206039ddbe046ec7aff6304dcdbfa05d03b71ae992
-DIST genpatches-5.5-10.extras.tar.xz 1740 BLAKE2B 
43ef46fdd52322a5b1f370690e7e39d8a6b835726b4166b5f35f079446042b60c9f59e159a88ac82ffa384ff7dce619140783a7e202d3374e272e140744a6459
 SHA512 
57affa6ae287b621407d8c8b8d12dcc7a45bb3d68bbd0418737c95df6ef7bdd76ea8a90caec3322b2e3a75ccb159c42fb132e38cf8c62e21d7abd22e98d309c9
-DIST genpatches-5.5-11.base.tar.xz 504352 BLAKE2B 
e7e24b605897a5c9aa454c9b8591458b9ff6276574513c58e2c16b99f8f045081ff57a419f5f31c78625d3c807abf1483ec718d3e4d80f8cbc45455d1d5e2d95
 SHA512 
db442b6df1b841c59c888dad631a7353daa9f500322a2f4b0449ee61833cd89c7f6f1bad1b799009a90de6c17b7bab7592fdcc4d7d2ba26321ec91302343a204
-DIST genpatches-5.5-11.experimental.tar.xz 5600 BLAKE2B 
bd7006c638322fa4aef7f7a45316940cee2c39449e85b57b2374fcb9ff11e6d3c1988045d6af1b80e8e21f180651459c371f462730c0941e07ebd407db78fceb
 SHA512 
57d689e062b71f38283937615bcd3b132e174cb875bdee373a36fc13d525c935e7b70bf5f7ab338bfcc2b80c68e05c9875f1bffec5f953f4847fa0fdb0246d4a
-DIST genpatches-5.5-11.extras.tar.xz 1744 BLAKE2B 
f84aa0a4059f15a6e8e08f957259ceb519e144905467562abfe5637702e089141c4a6def7c61d91af299d2a850115a01852435d448e04fa8bb6a84644bd57bbd
 SHA512 
e0241b4cb10e6257fbb5d12e41a7ef32eb9a501e9a81c0e638ec619629f9a421ae6022c8cb041789b764948f6b71cf810f49be7d8773b2d8c7c25935de846648
 DIST genpatches-5.5-12.base.tar.xz 541732 BLAKE2B 
fac0a28374f38f3949fd13433da71680cb72c90477b5778343950fc4857095c9298b83c7ff34965030329179864fee287ede693ba4614b9b7f765b76f26ff362
 SHA512 
bd0855ca4a1b453dfcac8fac034e634a2080fdc7cdf1d9ed633d36cdd75d6145737df09606211ec38012c7dc5d9a7956911c47b4256acfcd746df31d529cfe2f
 DIST genpatches-5.5-12.experimental.tar.xz 5596 BLAKE2B 
b8f2341550c7b6e64d6da49813079fdad59fd5b80e77bae120ba50676a05d96233f8fdfda8a145c1060c06fbedcd40dc57c38d127e02621c183fb3692e0a8801
 SHA512 
3ca8743bec878a56505a6ca18a780b21f8d75b8a18e2ab903499cf12f7c76d2ab5dc8bd8887edfbbfe010bc6522c912bca16fe12c7aa477c208c27b099825ebd
 DIST genpatches-5.5-12.extras.tar.xz 1740 BLAKE2B 
b9787c1a5ff46dd4cbbd6a1914b9851e42072bcec880e15ef82a8d878da079ba991c690eda9752ec0f9d7e15a7e9032e5e2a8fa98623a1b45937cc2dcfe30688
 SHA512 
94b4e044c2e67a303cc3e08941e097c8f24e38cbc2b39816b0d6b49ef4c1bb00341389432ba2258195b1abe2b3ee7ea92a06a56e756f22591625838731d41bf8
@@ -58,9 +52,6 @@ DIST 

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

2020-03-31 Thread Mike Pagano
commit: 8989c052778e6a1d06d13470630f4a133e5579af
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Mar 31 15:51:36 2020 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Mar 31 15:51:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8989c052

sys-kernel/gentoo-sources: Clean-up of old, unsupported kernels in 5.4.X

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Mike Pagano  gentoo.org>

 sys-kernel/gentoo-sources/Manifest |  6 -
 .../gentoo-sources/gentoo-sources-5.4.24.ebuild| 28 --
 .../gentoo-sources/gentoo-sources-5.4.25.ebuild| 28 --
 3 files changed, 62 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 3e4a4910e65..a19d87c0a72 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -34,12 +34,6 @@ DIST genpatches-4.9-220.extras.tar.xz 17360 BLAKE2B 
e2ae4d6bdef8b5657323f47c8439
 DIST genpatches-4.9-221.base.tar.xz 3941076 BLAKE2B 
4c9bb8ced3b8ad55538ef48e7c88b98e86c8949310a6373c3275e8baaaccff932ae97378e28ba52574e4ae27791e95cb40246331e25ad51096ee46022b13c970
 SHA512 
06a478322b5e4bb935b5bbca33c46b7871329cc10e63fd4b2322277ee27764fcfc7ce6964f78393f6101e24948378227ad949af32e375f3fc3ea65c4459d67f2
 DIST genpatches-4.9-221.experimental.tar.xz 106428 BLAKE2B 
27bac39217be7eb875423edbb5cd4d4f4e07a40c75205d8eb669038e4ecaa5ac5ad076c263d79fb39fd1fe3cf9a2b9cf800a993aefce1ce6d641203ec0495013
 SHA512 
593497feba82f709df0c60f81ad8caffd8c0344a8ccb70961ebf6abda75ac208d7d16664af74d372d877cb0c252aaf38d026542f49bc5d3b08ece16e5d698fe3
 DIST genpatches-4.9-221.extras.tar.xz 17372 BLAKE2B 
997ee1424f0746a5b2f004ad3c7973213dd533cded400e5a44e84b8d6099600eec91322ec3a03fa295f54f91d122935e02108756e5ade4540d06441bac888c6b
 SHA512 
ffaac7f643364345c84b11144aa3dc020ae0bf0efd610ea58db3beeba8e1909af9c44c2a74348a7f9f78f59502790d51dab2b6fa24ea5ced24547e1f751173a0
-DIST genpatches-5.4-24.base.tar.xz 1012048 BLAKE2B 
88f206f9824bdbe818a159832be638bd37ba274cc06fa245c7e48fe67112383ba3254e6e6433a5ebef792b4b61798aba9d748f8bffac0f62aa9c5536cc934b8d
 SHA512 
bfa30fab2737af4d7e8874831cadec224a634832502f7472c4a018ee98ff698e5134101b06f09ab779e03d62920a29691a12a189ff19e055cfb1effce584b8d9
-DIST genpatches-5.4-24.experimental.tar.xz 6140 BLAKE2B 
93c1963594e725765475fc1cfbd9e84d2904cc0abf22db4af59f030f74c7b3be3f24811e47346b7560818cc59b24761b2d2bc1bb309c20833c86a06f75af52f6
 SHA512 
81f55a9c37e7905bb30d4980aef2f178fc1c3871358c2d26943c42e7c99c1be6b4e3339f10a0d578ba694350da107d72259daeac1424d49ea6ad5c67d51201ba
-DIST genpatches-5.4-24.extras.tar.xz 1740 BLAKE2B 
959877a73da6fc757631407722e086c41409309060b275139c092aacc9cb1a7b749638322abf019bf194508d06a73eeef00939dc666f94313a680452b1fc91c2
 SHA512 
d9c85b2e581bcda49cf34ca90dbcb124c56ab515a8df67a55b08f5e8c0495894376267ba78c966dc9697d88ca8e429e2018d9dedd1a1fddaa7107c6fc74f248b
-DIST genpatches-5.4-25.base.tar.xz 1052564 BLAKE2B 
b41dcbbeefe779bf86209d676bc5155e1a6db0b8e91fc101da87bb66cd51f5ac26d41798fabe7b4e9377c696a729b649e16036bf677bfb468b8300d32617e995
 SHA512 
f1badde5398ff780bea19c91c294fbd391d142f0912645a2adf4c5ff63b049697d83bd5377069828b43abe5e448abe3649313d16cc6ee07c6eaa90f0c57f0ca5
-DIST genpatches-5.4-25.experimental.tar.xz 6140 BLAKE2B 
44a3ca437b6d166694853a540aa94c56af93e3965a63ef7098e0431814181735aa171a0473c2babfc3e966898860cad375342407dfd3a5797f90e99a3a9f6e6e
 SHA512 
b879b90f76028ccf5c11b584163f9209f10c3391d17e06a6027c7345013ac22ae29601ef37bd2ccac9ab8aa237e02d3d18af353b74e77f415ec5ce4ce4375a1b
-DIST genpatches-5.4-25.extras.tar.xz 1744 BLAKE2B 
7ca0570133350ec60e8872f9035dfd2d46355a16642755d8f4bdbed7a9622a1a18f0529fb55eff00dd15520396c269c7849210b461f0c8f5ed8c6512071eaeb5
 SHA512 
1894e699b09a9cf5732b9b9c8aad91c0ab85ef08fbc03afd4d0feb3cabf8dd04b2f6cd47ee8f1d09a07490617d5f16997cfcf037449f1d4f3af84c4f8541de43
 DIST genpatches-5.4-26.base.tar.xz 1079948 BLAKE2B 
4ed837fb6df27ce7e8b2b608800a5d754c02c8b34c88b3f528d65813de50a88e05a87a5079d7d67ba6ccc552e9f5b3ea775660e2f76a0badea30c6ab4eb472e5
 SHA512 
961edf9d05c84daaab9a8a5b499acd8215d1b54ecf4bb9b4670e9300fc917673fc35005d4695c24a02c116745425fe3b6d44066887c4f4b618925d826d5ea0ec
 DIST genpatches-5.4-26.experimental.tar.xz 6140 BLAKE2B 
6a6330b709dcc0127004c3eff34b1248fce24a99fffa765f3c0ee2b1d8b6c3f1b7bdf71d40ef9fa1658c61750793d7b840ed1d0b5a9f282f6a1f56cfb91f1c9c
 SHA512 
7b5917147631723579c9f57ce8ada26f6fd8b12a7127d730230b11bbcd5d6a5570f986c5877ad6ac4404d083d8b1e820555f3752c93ed0d9fffb3b4c07f0879e
 DIST genpatches-5.4-26.extras.tar.xz 1740 BLAKE2B 
4bae843721cdeea0dd205239cf9ad58d25ac4b4fc43e92e0cb74faac46e759a9e0f9b6c1f4f88b56c8d56fee091000fd663c2e4e7099a64fefb71df1f4bc881b
 SHA512 
f379b5ede9cca71b334638953209a2598dbf091ad08c322d2265cbbdb27d8f0ea7b1594db33be24cff96f062e3ee62008832ac74713454de9fc19fc20eff6da7

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.4.24.ebuild 

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

2020-03-31 Thread Mike Pagano
commit: 3870f051c0f966deddffe598282c6acbda4ee7ab
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Mar 31 15:50:07 2020 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Mar 31 15:50:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3870f051

sys-kernel/gentoo-sources: Clean-up of old, unsupported kernels in 4.19.X

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Mike Pagano  gentoo.org>

 sys-kernel/gentoo-sources/Manifest | 12 --
 .../gentoo-sources/gentoo-sources-4.19.108.ebuild  | 28 --
 .../gentoo-sources/gentoo-sources-4.19.109.ebuild  | 28 --
 .../gentoo-sources/gentoo-sources-4.19.110.ebuild  | 28 --
 .../gentoo-sources/gentoo-sources-4.19.97.ebuild   | 28 --
 5 files changed, 124 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 88d9507be99..3e4a4910e65 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -7,15 +7,6 @@ DIST genpatches-4.14-183.extras.tar.xz 17496 BLAKE2B 
e82ce068b3661c672dddc084d79
 DIST genpatches-4.14-184.base.tar.xz 4099856 BLAKE2B 
23bcc9fafc8d3662c3c44d49ec63347360382c70bfbd15d3d3ec8d7b285d589ad2880223d06fa6456b99374cb69fe4820654e71ac5a538112c72eced19fc46f7
 SHA512 
b8388a36406c7acd136d674845fa4c214ee3c54d5d6544243b0ee6c04358fd8e9c0cf5253b5b7d1bb4c79b836b6a3bb257909473b0a35b5a61df3f99be6c6bdd
 DIST genpatches-4.14-184.experimental.tar.xz 5932 BLAKE2B 
a9556c3b02dfce3efc85a8fc9d0ae31a5b4c295f392f9f89e91f41fb990effdae3a9047dd26a878f20b432333cd28ac3dca6f3be6bdaf518b3dfbcb94e69bf54
 SHA512 
71a9c67ed996d7cda6413045095545d9b55070bf11cd6d2fadbd3722321b5d017a749048ab3baa5a7c4142901cb4c59f105a535fe79c3ae25eb8d8cdb0a28585
 DIST genpatches-4.14-184.extras.tar.xz 17508 BLAKE2B 
26bc45cfa09466fe11744354a1275dfc1b5bda4021570ef1130661bd30801d8c67578083cde653025d81a24575c52e1f4655ce4cf6be7bc2b124d8609b83d9cc
 SHA512 
9d68cacc829ab9fc8696429af1b47fd1662ceac9f160e975883c0a98e39bffa20d19ed961a55f381aa5b0364cba2d2d5a22c96f3ce928ccdb88126e4e6475faf
-DIST genpatches-4.19-107.base.tar.xz 3227648 BLAKE2B 
0a40b4a65cef13ba6840a3ff5380bc286cbb4fad8bdd1d714385435e0403afd8b128be2253cb9e08756b01bebd319782b5821cb879310fe45d5f034a6234b7da
 SHA512 
d2dd2859104c38014357ebc4fd94b81cee27fb13ce6ece76e8ba82d4726d0ce35cac96c8af7eb7a55f559fc4ac305779ebfdca30b194d4e791a5120fb9a78456
-DIST genpatches-4.19-107.experimental.tar.xz 6428 BLAKE2B 
c69676edb4b2210b8914b42af52134313e2d8aa49875a78f3908892930049be88fcb118c5bd1d6a0c9e705ca7e7822be0cd6275294e7ea78039fbcf692bbf427
 SHA512 
b315dc61e86a7684dc173c6e36ca422a42a0e461a3fcb32a215c11353fd446aef356a0a263c91fe3b881cd3ec37a28ecb80b5366fa28b0e8107eda85cd5802a3
-DIST genpatches-4.19-107.extras.tar.xz 17488 BLAKE2B 
55a484a8927241b721ebcdc0d48f92895982f27e7e05c68f9e04638019355fd296ad514fa767c72b27aaa3fcae0339f436080776fa53081d489e51e889a2e1ff
 SHA512 
42126be688244fda9fb87e1d83785933fb6a96d92e02460f3fd34704e45b5f73ba2921e599f5a51729939f3cacc0d29ca5a9dbedb5d929551169b02ab765617e
-DIST genpatches-4.19-108.base.tar.xz 3245572 BLAKE2B 
ac917443056a08dc9cbd47fe57d4b15a9b8916bbab59462ba0c96be4f9240f2d2beb0496bec6deeecc924862f49e65d77369bc3b1d59c51d0d70e7d5067e1cb9
 SHA512 
cbba52bbf0649f346dfee4601ffbc9305d5d34a7cb4cd50df9fee221d4afe970fe3ae9f9dd461b7da3fb2aff5e3efe2f69f4117d2adb55ebdd570f00e1824c61
-DIST genpatches-4.19-108.experimental.tar.xz 6432 BLAKE2B 
58becc4d336611157924c8d6fe47ee4fd23afbbee28779d4f2c2e72b39611ed406581f083465f06c51d18e7c426a8e923d8ba158ec2af2bfeb909422da4d09ee
 SHA512 
581b81f777285920044f6eb0a7772cb1cb94dba99fa5d09809a45e7b33aa62b425a47212df714c27a2f46cfad5903312eba9df7466084933a3a2e3fdb6495562
-DIST genpatches-4.19-108.extras.tar.xz 17488 BLAKE2B 
4a5d2cf9c20a3c8ee9178713ad18e68a5c33022e36a299a97b926f0311cca5366dae98831c6a9861ef644a2707953c0b6be7e939bef263ac27e9facfe9896347
 SHA512 
c6c04bc19debe86fdb8d504b5f06b4f30914d63d54e025ec885fc88bba94de070c51efe6d84004c78f2baf126d696d574fd9a1ebee017fbc2e98f97580dc4e87
-DIST genpatches-4.19-109.base.tar.xz 3246220 BLAKE2B 
2fa4cbe0651cf3c2759d42a1c4e2415bfa73e69cb268bc47f7ba6f82971a938bcce98c682b8cda62909c2470fe8acfa4b7c5b54353899da117765005e461da71
 SHA512 
7db6d5c859804d0ea4139e5dd2c0d152d7e3381d3ea9e4515c893634fcbc4743a5da3e14e5a256db374fe8975d05d4165650b66e0e6b6b39a71a77c48440f356
-DIST genpatches-4.19-109.experimental.tar.xz 6432 BLAKE2B 
7753648b69c9487cea4c7386f1a54041f94c6ee6ac0205addc84a40a05d51af1beb780f63dce1f5549d87f5320a8435c8f39b8440d2e9b132813cbc6554e3a8a
 SHA512 
151413c91233382984068a27d0e95d2d61ee3702be355e3f5fafe573c44237a0a1561d0fbb410961ced9e71373f065a421c7ac6c2ee21ce4017b5332529db485
-DIST genpatches-4.19-109.extras.tar.xz 17496 BLAKE2B 
1f6f8a59c0562ef2c346cbfe7fc31f90bf0ea724c217c24c311b27340b14c34d212c4c6650ee3a9d98cd614a670a6e7fc1e9e9963f13fdf9b5b594487b180f2d
 SHA512 

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

2020-03-31 Thread Hans de Graaff
commit: 6093a11575e10a55f4f4307cb28bc86a0537194d
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Mar 31 15:31:26 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Mar 31 15:41:51 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6093a115

dev-ruby/fakefs: add 1.2.0

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/fakefs/Manifest|  1 +
 dev-ruby/fakefs/fakefs-1.2.0.ebuild | 46 +
 2 files changed, 47 insertions(+)

diff --git a/dev-ruby/fakefs/Manifest b/dev-ruby/fakefs/Manifest
index ed2470e4af3..bc56742498e 100644
--- a/dev-ruby/fakefs/Manifest
+++ b/dev-ruby/fakefs/Manifest
@@ -2,3 +2,4 @@ DIST fakefs-0.19.2.tar.gz 53405 BLAKE2B 
c9841f7f2aee5135d149187d03f7f3034d3c6cbc
 DIST fakefs-0.20.0.tar.gz 53591 BLAKE2B 
067fef803bb0efb50f63f0c0fb645bb4d0d1c00d198cdf367e99871c6cb9e28cc1d4f0a52318a61c446577aa58170143c2aea4b0b826136610430abf996d03aa
 SHA512 
9f9b2cef58709f7ab1147602b2f47d6a0302b217cc7210537605491f9db6477183e5fa447974c0572f1a1fbecce1029e451241d44b5f96eec97a7521275c165c
 DIST fakefs-0.20.1.tar.gz 53626 BLAKE2B 
013f49b57355943eb6624540be93bc069c95409f9e1d49c8cced034656f596ee98fc3ee4dd40cb80383d447164f11242e16a5ffb9b35ba2e28fb136e0f72a09e
 SHA512 
61d83868a0cf4d0abf071fadc9ca21176e3ef8f2ccc781760a8b0b3e55713750d3e952482e90a87e8665163a262e8bdef8e6b2f3c423fabe696d64f356862aa4
 DIST fakefs-1.0.0.tar.gz 53753 BLAKE2B 
41ce41ef7551b8fde429b1e4c4f933fe141d131eee40976df3873c0eeaddc1d75cc1ba93e7ff12b322296a4767759376cd118ef54e6c36a02b5b6bef4af54af1
 SHA512 
7e3ae7fb426413882efe98866257fc734a9b834f70d82ec907f74c2c34109f09e6621e120e20f6813267e2ab6c1270288bc9419d2a0d29c4b1d49f1a345e
+DIST fakefs-1.2.0.tar.gz 53920 BLAKE2B 
e0a2af3d581af36931b6311dbcc6d13abf8f61e0637609a440dcac121a3dca214dd9d921f80cb1863b6bfeecf7ce0d9e4253b468170eb1c320152ac89e8f4b90
 SHA512 
0cd48757035be35e3e85a2f3f12570b8ccce2659f5d9563dd5a45fa0b541702f1f9c1d03d5660c1c52f9372bb6f9067d701b5ddf17a2f36a4a43d9618d22572e

diff --git a/dev-ruby/fakefs/fakefs-1.2.0.ebuild 
b/dev-ruby/fakefs/fakefs-1.2.0.ebuild
new file mode 100644
index 000..b885d5831ef
--- /dev/null
+++ b/dev-ruby/fakefs/fakefs-1.2.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+USE_RUBY="ruby24 ruby25 ruby26 ruby27"
+
+RUBY_FAKEGEM_RECIPE_TEST="none"
+
+RUBY_FAKEGEM_EXTRADOC="CONTRIBUTORS README.md"
+
+RUBY_FAKEGEM_GEMSPEC="fakefs.gemspec"
+
+inherit ruby-fakegem eutils
+
+DESCRIPTION="A fake filesystem. Use it in your tests"
+HOMEPAGE="https://github.com/defunkt/fakefs;
+SRC_URI="https://github.com/defunkt/fakefs/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+IUSE=""
+
+ruby_add_bdepend "
+   test? (
+   >=dev-ruby/rspec-3.1:3
+   >=dev-ruby/minitest-5.5
+   )"
+
+all_ruby_prepare() {
+   # Remove bundler
+   rm Gemfile || die
+
+   # Avoid unneeded minitest-rg dependency.
+   sed -i -e '1igem "minitest", "~>5.5"' \
+   -e '/bundler/ s:^:#:' \
+   -e '/minitest\/rg/ s:^:#:' test/test_helper.rb || die
+
+   sed -i -e 's/git ls-files/find/' ${RUBY_FAKEGEM_GEMSPEC} || die
+}
+
+each_ruby_test() {
+   RSPEC_VERSION=3 ruby-ng_rspec
+   ${RUBY} -Ilib:.:test -e 'Dir["test/**/*_test.rb"].each{|f| require f}' 
|| die
+}



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

2020-03-31 Thread Hans de Graaff
commit: 2f436c51a1434781c58f5a470ce33d29e99b7756
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Mar 31 15:41:39 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Mar 31 15:41:52 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f436c51

dev-lang/ruby: add new versions for bug 715620

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-lang/ruby/Manifest   |   4 +
 dev-lang/ruby/ruby-2.4.10.ebuild | 228 +
 dev-lang/ruby/ruby-2.5.8.ebuild  | 223 
 dev-lang/ruby/ruby-2.6.6.ebuild  | 235 ++
 dev-lang/ruby/ruby-2.7.1.ebuild  | 237 +++
 5 files changed, 927 insertions(+)

diff --git a/dev-lang/ruby/Manifest b/dev-lang/ruby/Manifest
index b61365d960f..770d52e8c54 100644
--- a/dev-lang/ruby/Manifest
+++ b/dev-lang/ruby/Manifest
@@ -1,4 +1,8 @@
+DIST ruby-2.4.10.tar.xz 10100664 BLAKE2B 
7301f34b94bb6d88c0d049eed4220ddb290c877b130e90c86bc454b3e72c90ae151db0e828068c8fe02b21cd41c8f3cd43d4e95ab688d2cd6f3f3840ea9d
 SHA512 
11c7a9ea1353f752763b189815ac34674cc8ebf7141517838b7f040823e892780d94ec3091c1f5d1415f9bc1b838b7f6f9de13a706df7bef80ce3b146a7d6660
 DIST ruby-2.4.9.tar.xz 10078316 BLAKE2B 
ad83adf6b884a9a36e83cc754077f706afa221a9e8b81d92f6b6a1b829dc0350bdacd67b0b4e1e196a17e3f7d1c65f1e9b38e245aeddf089576eaca7d051701b
 SHA512 
9046575315c29c789427c2d00c832f0c0970e47fd158bbe8e4f2df5cff2ea9c06c65c3493adb4656e5b32ebfdc546092911f98a8ad7f698bc001c290db5888c7
 DIST ruby-2.5.7.tar.xz 11296440 BLAKE2B 
6f3590f30c7b196145a83490abed24b0059521374a03086646186b20670bfed548ea744c910c8eda0d11607d8673644d7fb23ff9091dd2f6dfcbc43080fe0f97
 SHA512 
63b7c75fab44cd1bd22f22ddec00c740cf379ac7240da0dfafcec54347766695faef47428ce1c433fd77fa96992e976c984697067fa526236d383b12adc9ce75
+DIST ruby-2.5.8.tar.xz 11298404 BLAKE2B 
3256c0448e72b63c0bd89f89a27fa9c09c8feed54d42cd79899b7d5cfe9dbc29ca708d12c630b3f52ff85b0c6a4011ae7ff0483d64b2fd445700a72a91028035
 SHA512 
2886be764a454425c5beef2777c64a70ee0d048b07896b327633d904f5077fea4299526689f9e2ac4dcd2fc4811cf9a6c8ce75367ed35d29dfe1a54222872e0d
 DIST ruby-2.6.5.tar.xz 11553580 BLAKE2B 
07739a92ff17467fe6d31bb4dce56ae35fd9c67bb697ebc00b4845474c75d8377c77916e6e129512cfffcf76bd60e6327e818e899b6160f3222912654d5eb118
 SHA512 
e8ae3b5d4d23a93d0ef6057235ad0e573665a8b4b6544e1c70b4cce9c4d2fb9094e5c8fe8a9ab7b9996efe3ada603f9b4ef1fd08fb5a83253c1ae2b5e3f202db
+DIST ruby-2.6.6.tar.xz 11567284 BLAKE2B 
45e910dd9b128c46bff3003834c4fdcbbc2e2e4d3e44f298ff4356a285de2c375d6b6021a3aa28d89336b32a1655fa4a7c086d07f4a0f6bcd578a11dd4a894da
 SHA512 
86caf93dbf61d03781767ab5375a7edf4761f13ba08ccfefe16c0a7550499237e7390c2f72a95d42670d4fe76b2401b4218936187c62ec1572799e9e04c50d62
 DIST ruby-2.7.0.tar.xz 11990900 BLAKE2B 
0f4969780618979190a92ca317963f825d854ecb437e7031cb7848b04bc9cb9532145968e33f5b8022449bccd1b0828b87a0ed0c0a09b182e2484d0811975a0d
 SHA512 
dd5690c631bf3a2b76cdc06902bcd76a89713a045e136debab9b8a81ff8c433bbb254aa09e4014ca1cf85a69ff4bcb13de11da5e40c224e7268be43ef2194af7
+DIST ruby-2.7.1.tar.xz 12003684 BLAKE2B 
90a35c3e246cfe982a146be29a3d121d6e2c251ed96703dbc46b98c21e0e43e5445132e6119e584ae35f7193f063ff1b14822f947a4e07037c37fbba5e4038da
 SHA512 
79f98b1ea98e0b10ec79da1883e8fc84d48ffe5c09ae945cbebde94365e35a589d919aac965f74d70ca7e21370ecee631ac5a8f9c4eac61d62f5aa629f27bf31

diff --git a/dev-lang/ruby/ruby-2.4.10.ebuild b/dev-lang/ruby/ruby-2.4.10.ebuild
new file mode 100644
index 000..93fbdf22a17
--- /dev/null
+++ b/dev-lang/ruby/ruby-2.4.10.ebuild
@@ -0,0 +1,228 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools flag-o-matic multilib
+
+MY_P="${PN}-$(ver_cut 1-3)"
+S=${WORKDIR}/${MY_P}
+
+SLOT=$(ver_cut 1-2)
+MY_SUFFIX=$(ver_rs 1 '' ${SLOT})
+RUBYVERSION=${SLOT}.0
+
+DESCRIPTION="An object-oriented scripting language"
+HOMEPAGE="https://www.ruby-lang.org/;
+SRC_URI="https://cache.ruby-lang.org/pub/ruby/${SLOT}/${MY_P}.tar.xz;
+
+LICENSE="|| ( Ruby-BSD BSD-2 )"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86"
+IUSE="berkdb debug doc examples gdbm ipv6 jemalloc libressl +rdoc rubytests 
socks5 +ssl static-libs tk xemacs"
+
+RDEPEND="
+   berkdb? ( sys-libs/db:= )
+   gdbm? ( sys-libs/gdbm:= )
+   jemalloc? ( dev-libs/jemalloc )
+   ssl? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl )
+   )
+   socks5? ( >=net-proxy/dante-1.1.13 )
+   tk? (
+   dev-lang/tcl:0=[threads]
+   dev-lang/tk:0=[threads]
+   )
+   dev-libs/libyaml
+   dev-libs/libffi:=
+   sys-libs/readline:0=
+   sys-libs/zlib
+   >=app-eselect/eselect-ruby-20161226
+   !https://www.ruby-lang.org/;

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

2020-03-31 Thread Hans de Graaff
commit: 943756e71571e435c3371dd5e8ff5aee9e5ad53e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Mar 31 15:38:18 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Mar 31 15:41:52 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=943756e7

dev-ruby/faker: add 2.11.0

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/faker/Manifest|  1 +
 dev-ruby/faker/faker-2.11.0.ebuild | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/dev-ruby/faker/Manifest b/dev-ruby/faker/Manifest
index 90781a87b94..09df612b0f8 100644
--- a/dev-ruby/faker/Manifest
+++ b/dev-ruby/faker/Manifest
@@ -1,4 +1,5 @@
 DIST faker-1.9.6.tar.gz 1833392 BLAKE2B 
826ee480515873d1e250147e5c3749e222b1273a00fd4ae0a2a28dca91c5981290c8540602d89d406e91d98a0f5dbc6fc4a54ab6d7d2b716a4d4957ab32254dc
 SHA512 
1ea0c4194603b5eaec0f4abc2460fb39cb9de97179d7699c3cb37673731ebf8bf03d20fb422911d4725d4308691d4c92a82f5a661e034381cc04066ddcc955bc
 DIST faker-2.10.0.tar.gz 1026104 BLAKE2B 
4e669233bc6def8c15d9b042607fed37c6a267494551af71000b7c774f84a90d5dfbc6a168024fa8cf2a16b03d5041c90a94924fd55a96c7c5d091d6907310c9
 SHA512 
de7abb03be6c0a2a6a367dcf0611b5416c5d2128ddb33252758f1a0ac9a663fdad034e0f7dd3ca8cf060fe5bca011e3a078b2a9b36bab5daec9d7a406d9df7ba
 DIST faker-2.10.2.tar.gz 1028811 BLAKE2B 
27976e94f2910c37943318d4e4330d557dec3d7aed9ff291bfa7ac108298787352cb7c93f15fda80d17d2c639615b215e147d8f97c707c8ab66033acab1c7f9e
 SHA512 
3a6326778a190a26ff0842e9d21c43d27106b8fff5a7057eb4ce3d7f64ae378604f56e93ab1baee84634c256633044f3aaef93b49e06b70905d959f09fa1d70a
+DIST faker-2.11.0.tar.gz 1033369 BLAKE2B 
51677346980bd5070a145b1d8dd11a6426cf9da5c407e030d9722ed8ccc4ed1a0a8b2d5534c96b50fbe79e84fe71e4268f3228c223dc61fe4c74cda0de18a790
 SHA512 
9adc03cdef0714656738d354d787a99cb9fcc85718847db7b183b02f38d550ff86d65c8e6ed13be3c839cc64f36f3e95ff25dd5d2f8f45c7207dbe5735238e0a
 DIST faker-2.8.1.tar.gz 1019881 BLAKE2B 
06336ba84a512058150ac50535e4d6a466628d127999a47f954076250c5fbb01ca901b80e1933286a88ae0770a1fef874ac24299f5d28a327f06f901007c729d
 SHA512 
8cee9dc1ea8c1aea65f117dcfdda0b9cf17c297ead58ed8ee97626f0c448f91e4f87fe4c27a09c5da844af7476ea442ae32e23d829f50d6686b44283569a0902

diff --git a/dev-ruby/faker/faker-2.11.0.ebuild 
b/dev-ruby/faker/faker-2.11.0.ebuild
new file mode 100644
index 000..175a91f89e2
--- /dev/null
+++ b/dev-ruby/faker/faker-2.11.0.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+USE_RUBY="ruby24 ruby25 ruby26 ruby27"
+
+RUBY_FAKEGEM_RECIPE_DOC="none"
+
+RUBY_FAKEGEM_GEMSPEC="faker.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A library for generating fake data such as names, addresses, and 
phone numbers"
+HOMEPAGE="https://github.com/stympy/faker;
+SRC_URI="https://github.com/stympy/faker/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1)"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="test"
+
+ruby_add_rdepend ">=dev-ruby/i18n-1.6 !!

[gentoo-commits] repo/proj/guru:dev commit in: dev-python/trio/

2020-03-31 Thread Alessandro Barbieri
commit: 66d7444142931ebbab59cbe3e3f7e2a213a4e97c
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Tue Mar 31 15:26:25 2020 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Tue Mar 31 15:26:25 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=66d74441

dev-python/trio: missing dependency

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-python/trio/trio-0.13.0.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/trio/trio-0.13.0.ebuild 
b/dev-python/trio/trio-0.13.0.ebuild
index ce3ef2e..66266e5 100644
--- a/dev-python/trio/trio-0.13.0.ebuild
+++ b/dev-python/trio/trio-0.13.0.ebuild
@@ -32,6 +32,7 @@ DEPEND="${RDEPEND}
>=dev-python/astor-0.8.0[${PYTHON_USEDEP}]
>=dev-python/immutables-0.6[${PYTHON_USEDEP}]
dev-python/jedi[${PYTHON_USEDEP}]
+   dev-python/pylint[${PYTHON_USEDEP}]
dev-python/trustme[${PYTHON_USEDEP}]
dev-python/yapf[${PYTHON_USEDEP}]
)



[gentoo-commits] proj/releng:master commit in: releases/weekly/specs/s390/s390x/netboot/, ...

2020-03-31 Thread Matt Turner
commit: 4007c6d2f4ef20846d83d636cbaadabf880f4f05
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Mar 31 15:18:17 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Mar 31 15:19:26 2020 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=4007c6d2

specs/s390: Drop --arch-override=s390 argument to genkernel

Signed-off-by: Matt Turner  gentoo.org>

 releases/weekly/specs/s390/s390/netboot/netboot.spec  | 2 +-
 releases/weekly/specs/s390/s390x/netboot/netboot.spec | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/releases/weekly/specs/s390/s390/netboot/netboot.spec 
b/releases/weekly/specs/s390/s390/netboot/netboot.spec
index 9453fd05..e262711d 100644
--- a/releases/weekly/specs/s390/s390/netboot/netboot.spec
+++ b/releases/weekly/specs/s390/s390/netboot/netboot.spec
@@ -15,7 +15,7 @@ portage_confdir: 
@REPO_DIR@/releases/weekly/specs/s390/s390/netboot/portage
 boot/kernel:  netboot
 boot/kernel/netboot/sources:   sys-kernel/gentoo-sources
 boot/kernel/netboot/config: ../../kconfig/netboot64.config
-boot/kernel/netboot/gk_kernargs:   --arch-override=s390 --all-ramdisk-modules
+boot/kernel/netboot/gk_kernargs:   --all-ramdisk-modules
 
 netboot2/use:
  -*

diff --git a/releases/weekly/specs/s390/s390x/netboot/netboot.spec 
b/releases/weekly/specs/s390/s390x/netboot/netboot.spec
index 6137486d..4f578ab5 100644
--- a/releases/weekly/specs/s390/s390x/netboot/netboot.spec
+++ b/releases/weekly/specs/s390/s390x/netboot/netboot.spec
@@ -15,7 +15,7 @@ portage_confdir: 
@REPO_DIR@/releases/weekly/specs/s390/s390x/netboot/portage
 boot/kernel:  netboot64
 boot/kernel/netboot64/sources:   sys-kernel/gentoo-sources
 boot/kernel/netboot64/config: ../../kconfig/netboot64.config
-boot/kernel/netboot64/gk_kernargs:   --arch-override=s390 --all-ramdisk-modules
+boot/kernel/netboot64/gk_kernargs:   --all-ramdisk-modules
 
 netboot2/use:
  -*



[gentoo-commits] proj/releng:master commit in: releases/weekly/specs/hppa/

2020-03-31 Thread Matt Turner
commit: c9eaa841d7cf7c0eebbd5f998809383dec6db13a
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Mar 31 15:17:26 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Mar 31 15:19:26 2020 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=c9eaa841

specs/hppa: Drop --arch-override=parisc argument to genkernel

Signed-off-by: Matt Turner  gentoo.org>

 releases/weekly/specs/hppa/installcd-stage2-minimal.spec | 1 -
 releases/weekly/specs/hppa/netboot2-hppa32.spec  | 2 +-
 releases/weekly/specs/hppa/netboot2-hppa64.spec  | 2 +-
 3 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/releases/weekly/specs/hppa/installcd-stage2-minimal.spec 
b/releases/weekly/specs/hppa/installcd-stage2-minimal.spec
index aebf081d..42db882a 100644
--- a/releases/weekly/specs/hppa/installcd-stage2-minimal.spec
+++ b/releases/weekly/specs/hppa/installcd-stage2-minimal.spec
@@ -11,7 +11,6 @@ portage_confdir: @REPO_DIR@/releases/weekly/portage/isos
 livecd/volid: Gentoo hppa latest
 livecd/bootargs: dokeymap
 livecd/fstype: squashfs
-livecd/gk_mainargs: --arch-override=parisc
 livecd/iso: /var/tmp/catalyst/builds/default/install-hppa-minimal-20140201.iso
 livecd/type: gentoo-release-minimal
 

diff --git a/releases/weekly/specs/hppa/netboot2-hppa32.spec 
b/releases/weekly/specs/hppa/netboot2-hppa32.spec
index 30f48875..b2e87aac 100644
--- a/releases/weekly/specs/hppa/netboot2-hppa32.spec
+++ b/releases/weekly/specs/hppa/netboot2-hppa32.spec
@@ -14,7 +14,7 @@ profile: default/linux/hppa/17.0
 boot/kernel:  netboot32
 boot/kernel/netboot32/sources:   sys-kernel/gentoo-sources
 boot/kernel/netboot32/config: 
/root/releng/releases/weekly/kconfig/hppa/netboot-3.10.7-gentoo-netboot32.config
-boot/kernel/netboot32/gk_kernargs:   --arch-override=parisc 
--all-ramdisk-modules
+boot/kernel/netboot32/gk_kernargs:   --all-ramdisk-modules
 
 netboot2/use:
  -*

diff --git a/releases/weekly/specs/hppa/netboot2-hppa64.spec 
b/releases/weekly/specs/hppa/netboot2-hppa64.spec
index c38e9e7a..61ebfbc7 100644
--- a/releases/weekly/specs/hppa/netboot2-hppa64.spec
+++ b/releases/weekly/specs/hppa/netboot2-hppa64.spec
@@ -13,7 +13,7 @@ profile: default/linux/hppa/17.0
 boot/kernel:  netboot64
 boot/kernel/netboot64/sources:   sys-kernel/gentoo-sources
 boot/kernel/netboot64/config: 
/root/releng/releases/weekly/kconfig/hppa/netboot-3.10.7-gentoo-netboot64.config
-boot/kernel/netboot64/gk_kernargs:   --arch-override=parisc 
--kernel-cross-compile=hppa64-unknown-linux-gnu- --all-ramdisk-modules
+boot/kernel/netboot64/gk_kernargs:   
--kernel-cross-compile=hppa64-unknown-linux-gnu- --all-ramdisk-modules
 
 netboot2/use:
  -*



[gentoo-commits] proj/releng:master commit in: releases/weekly/specs/s390/s390/netboot/, ...

2020-03-31 Thread Matt Turner
commit: 54cf10a025719821549ef7efe3c8b789e5861732
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Mar 31 14:34:45 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Mar 31 15:19:26 2020 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=54cf10a0

specs: Drop {fsck,mkfs}.ext4dev and other dead binaries

Signed-off-by: Matt Turner  gentoo.org>

 releases/weekly/specs/hppa/netboot2-hppa32.spec| 4 
 releases/weekly/specs/hppa/netboot2-hppa64.spec| 4 
 releases/weekly/specs/s390/s390/netboot/netboot.spec   | 2 --
 releases/weekly/specs/s390/s390x/netboot/netboot.spec  | 2 --
 releases/weekly/specs/sparc/sparc64/netboot/sparc-netboot.spec | 2 --
 5 files changed, 14 deletions(-)

diff --git a/releases/weekly/specs/hppa/netboot2-hppa32.spec 
b/releases/weekly/specs/hppa/netboot2-hppa32.spec
index ef37729a..30f48875 100644
--- a/releases/weekly/specs/hppa/netboot2-hppa32.spec
+++ b/releases/weekly/specs/hppa/netboot2-hppa32.spec
@@ -71,11 +71,9 @@ netboot2/packages/sys-fs/e2fsprogs/files:
/sbin/resize2fs
/sbin/findfs
/sbin/e2label
-   /sbin/mkfs.ext4dev
/sbin/mkfs.ext4
/sbin/mkfs.ext3
/sbin/mkfs.ext2
-   /sbin/fsck.ext4dev
/sbin/fsck.ext4
/sbin/fsck.ext3
/sbin/fsck.ext2
@@ -90,8 +88,6 @@ netboot2/packages/sys-fs/xfsprogs/files:
/sbin/mkfs.xfs
/sbin/fsck.xfs
/sbin/xfs_repair
-   /lib/libxfs.so.*
-   /lib/libxlog.so.*
/lib/librt*
 
 

diff --git a/releases/weekly/specs/hppa/netboot2-hppa64.spec 
b/releases/weekly/specs/hppa/netboot2-hppa64.spec
index 3d0cebb8..c38e9e7a 100644
--- a/releases/weekly/specs/hppa/netboot2-hppa64.spec
+++ b/releases/weekly/specs/hppa/netboot2-hppa64.spec
@@ -73,11 +73,9 @@ netboot2/packages/sys-fs/e2fsprogs/files:
/sbin/resize2fs
/sbin/findfs
/sbin/e2label
-   /sbin/mkfs.ext4dev
/sbin/mkfs.ext4
/sbin/mkfs.ext3
/sbin/mkfs.ext2
-   /sbin/fsck.ext4dev
/sbin/fsck.ext4
/sbin/fsck.ext3
/sbin/fsck.ext2
@@ -92,8 +90,6 @@ netboot2/packages/sys-fs/xfsprogs/files:
/sbin/mkfs.xfs
/sbin/fsck.xfs
/sbin/xfs_repair
-   /lib/libxfs.so.*
-   /lib/libxlog.so.*
/lib/librt*
 
 

diff --git a/releases/weekly/specs/s390/s390/netboot/netboot.spec 
b/releases/weekly/specs/s390/s390/netboot/netboot.spec
index 0a6b4220..9453fd05 100644
--- a/releases/weekly/specs/s390/s390/netboot/netboot.spec
+++ b/releases/weekly/specs/s390/s390/netboot/netboot.spec
@@ -120,11 +120,9 @@ netboot2/packages/sys-fs/e2fsprogs/files:
/sbin/resize2fs
/sbin/findfs
/sbin/e2label
-   /sbin/mkfs.ext4dev
/sbin/mkfs.ext4
/sbin/mkfs.ext3
/sbin/mkfs.ext2
-   /sbin/fsck.ext4dev
/sbin/fsck.ext4
/sbin/fsck.ext3
/sbin/fsck.ext2

diff --git a/releases/weekly/specs/s390/s390x/netboot/netboot.spec 
b/releases/weekly/specs/s390/s390x/netboot/netboot.spec
index 92af9d21..6137486d 100644
--- a/releases/weekly/specs/s390/s390x/netboot/netboot.spec
+++ b/releases/weekly/specs/s390/s390x/netboot/netboot.spec
@@ -120,11 +120,9 @@ netboot2/packages/sys-fs/e2fsprogs/files:
/sbin/resize2fs
/sbin/findfs
/sbin/e2label
-   /sbin/mkfs.ext4dev
/sbin/mkfs.ext4
/sbin/mkfs.ext3
/sbin/mkfs.ext2
-   /sbin/fsck.ext4dev
/sbin/fsck.ext4
/sbin/fsck.ext3
/sbin/fsck.ext2

diff --git a/releases/weekly/specs/sparc/sparc64/netboot/sparc-netboot.spec 
b/releases/weekly/specs/sparc/sparc64/netboot/sparc-netboot.spec
index 1ed0ec3a..5e02bee3 100644
--- a/releases/weekly/specs/sparc/sparc64/netboot/sparc-netboot.spec
+++ b/releases/weekly/specs/sparc/sparc64/netboot/sparc-netboot.spec
@@ -58,13 +58,11 @@ netboot2/packages/e2fsprogs/files:
/sbin/fsck.ext2
/sbin/fsck.ext3
/sbin/fsck.ext4
-   /sbin/fsck.ext4dev
/sbin/logsave
/sbin/mke2fs
/sbin/mkfs.ext2
/sbin/mkfs.ext3
/sbin/mkfs.ext4
-   /sbin/mkfs.ext4dev
/sbin/resize2fs
/sbin/tune2fs
/usr/bin/chattr



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/pytest-ordering/

2020-03-31 Thread Alessandro Barbieri
commit: f53b2d4f975730f685c695be2e23f5d29d25aadd
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Tue Mar 31 15:16:43 2020 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Tue Mar 31 15:18:07 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f53b2d4f

dev-python/pytest-ordering: new package

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-python/pytest-ordering/Manifest|  1 +
 dev-python/pytest-ordering/metadata.xml| 13 
 .../pytest-ordering/pytest-ordering-0.6.ebuild | 24 ++
 3 files changed, 38 insertions(+)

diff --git a/dev-python/pytest-ordering/Manifest 
b/dev-python/pytest-ordering/Manifest
new file mode 100644
index 000..0036ecd
--- /dev/null
+++ b/dev-python/pytest-ordering/Manifest
@@ -0,0 +1 @@
+DIST pytest-ordering-0.6.tar.gz 11046 BLAKE2B 
468ae5f04029b96ed3058b7f429aec0aaf96092453b229c3de5eab174702af2c1a9fe83171c68d282c4a144b3dd736daf9ed87b9e139a7bd175114f504049ebc
 SHA512 
fd3aec83914f64d1295e1a1bf3fdc580c6824a749a1da8cebae275fef940d6ed6e5dcafad321d94f504a153e13e298b6544dc3c2db716a6b25d3148c2365fe15

diff --git a/dev-python/pytest-ordering/metadata.xml 
b/dev-python/pytest-ordering/metadata.xml
new file mode 100644
index 000..3f9f921
--- /dev/null
+++ b/dev-python/pytest-ordering/metadata.xml
@@ -0,0 +1,13 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+  
+lssndrbarbi...@gmail.com
+Alessandro Barbieri
+  
+  
+https://github.com/ftobia/pytest-ordering
+pytest-ordering
+  
+

diff --git a/dev-python/pytest-ordering/pytest-ordering-0.6.ebuild 
b/dev-python/pytest-ordering/pytest-ordering-0.6.ebuild
new file mode 100644
index 000..6cb756e
--- /dev/null
+++ b/dev-python/pytest-ordering/pytest-ordering-0.6.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7} )
+
+inherit distutils-r1
+
+DESCRIPTION="pytest plugin to run your tests in a specific order"
+HOMEPAGE="
+   https://github.com/ftobia/pytest-ordering
+   https://pypi.org/project/pytest-ordering
+"
+SRC_URI="https://github.com/ftobia/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND=""
+
+distutils_enable_tests pytest
+distutils_enable_sphinx docs/source



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/sphobjinv/

2020-03-31 Thread Alessandro Barbieri
commit: dd283f513c60fbc8edaf0d4a32a87da8885e6081
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Tue Mar 31 15:17:16 2020 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Tue Mar 31 15:18:07 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=dd283f51

dev-python/sphobjinv: more dependencies

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-python/sphobjinv/sphobjinv-2.0.1.ebuild | 9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/dev-python/sphobjinv/sphobjinv-2.0.1.ebuild 
b/dev-python/sphobjinv/sphobjinv-2.0.1.ebuild
index 7fb7dd7..5a4e708 100644
--- a/dev-python/sphobjinv/sphobjinv-2.0.1.ebuild
+++ b/dev-python/sphobjinv/sphobjinv-2.0.1.ebuild
@@ -21,20 +21,25 @@ KEYWORDS="~amd64 ~x86 "
 SLOT="0"
 
 RDEPEND="
-   dev-python/attrs[${PYTHON_USEDEP}]
+   >=dev-python/attrs-17.4[${PYTHON_USEDEP}]
dev-python/certifi[${PYTHON_USEDEP}]
dev-python/fuzzywuzzy[${PYTHON_USEDEP}]
dev-python/jsonschema[${PYTHON_USEDEP}]"
 
 DEPEND="
test? (
+   >=dev-python/pytest-4.4.0[${PYTHON_USEDEP}]
+   dev-python/pytest-ordering[${PYTHON_USEDEP}]
dev-python/pytest-subtests[${PYTHON_USEDEP}]
dev-python/pytest-timeout[${PYTHON_USEDEP}]
-   dev-python/stdio-mgr[${PYTHON_USEDEP}]
+   dev-python/sphinx-issues[${PYTHON_USEDEP}]
+   dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
+   >=dev-python/stdio-mgr-1.0.1[${PYTHON_USEDEP}]
dev-python/timeout-decorator[${PYTHON_USEDEP}]
)
 "
 
+#it may require sphinx==2.3.1
 distutils_enable_sphinx doc/source dev-python/sphinx_rtd_theme 
dev-python/sphinx-issues
 distutils_enable_tests pytest
 



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

2020-03-31 Thread Mike Pagano
commit: fbb4b4cca80914f3d63d1ab4761874719e9230ca
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Mar 31 15:05:15 2020 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Mar 31 15:05:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbb4b4cc

sys-kernel/gentoo-sources: Clean-up of old, unsupported kernels in 4.14.X

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Mike Pagano  gentoo.org>

 sys-kernel/gentoo-sources/Manifest | 12 --
 .../gentoo-sources/gentoo-sources-4.14.166.ebuild  | 28 --
 .../gentoo-sources/gentoo-sources-4.14.169.ebuild  | 28 --
 .../gentoo-sources/gentoo-sources-4.14.170.ebuild  | 28 --
 .../gentoo-sources/gentoo-sources-4.14.171.ebuild  | 28 --
 5 files changed, 124 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index a0443be0105..88d9507be99 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -1,15 +1,3 @@
-DIST genpatches-4.14-175.base.tar.xz 3801828 BLAKE2B 
47a880aa27edde889d8659438ceae437dea7eb21fd72932cff7ce388daba38f6b39be174b26745a116a347a83cf5099ea54fd7eb21651011d38fe6fe3811c7ca
 SHA512 
640616ef2c34900130d5759bf7e6ecd79358c5f8380c94f0e3cda3572637dda5a94331e106d7cfeb8d3b3127a844fb89f55107fc6123f7000777bb09918a4b17
-DIST genpatches-4.14-175.experimental.tar.xz 5936 BLAKE2B 
79e38de1f1013986c2b3b57b4de32a8c83fbb0ea094f24a6bbac85fc5001cb6b9bcd4157506dba84c404cdf03a2406db4ee62170c656f44e72938479890f56f0
 SHA512 
7b9a2d3fb660c0f9c47636429f41db89f31dd1000f7edc580c13ff405dee8eb021ae44c4daa77578f43893d4e9e3d113fb6dbf650b0c8584d641853a85f5c27e
-DIST genpatches-4.14-175.extras.tar.xz 17508 BLAKE2B 
2d0c30a08a1945d3829bb50b96e284a92e7388374db5879c4939b534b5dea29ec297e0b6f58f651d57c30d778668ab1dc73584ef3d3cd3a78f375e537f0e
 SHA512 
f1ab60b3fd2a28a6f925656993f742121b9e2ced739aab0b381cea9d126b11ef4ffb4756208ecec5af63be272c8cd603e4d5d016fdfe7cd649825dfa8b5aa7a5
-DIST genpatches-4.14-178.base.tar.xz 3887468 BLAKE2B 
c196f08891302450fae0d8741f8310c3b45b402373f94c186be44c7dc26d9f21c4b13266ba13d6863465bae1a506bc2907dc73b55502631c5d206b0578d44eea
 SHA512 
53d956f1d4fb7139764ae2c8dde7bcbafa62832af816b87127b5d615108d3f22290204c98adfde7038bbcf6a5c8b709715cdaa68a6c5814cb4de4d16d53a7637
-DIST genpatches-4.14-178.experimental.tar.xz 5932 BLAKE2B 
c763412516091591f59b4831fdc24507324454b9043a0ba1bf8224603ea28a7a31c16a4ab8cb5785912fdbd89001cb96e777ad4a72c75642e0b1778d314fe167
 SHA512 
be3ddb34813b6599842a5e812309ad2aec7c03fac949391cf98c4fad3aadc30f69f29fdc6c5e17ca8cbe8a7507e209072881521de96241136f4900d04e847231
-DIST genpatches-4.14-178.extras.tar.xz 17496 BLAKE2B 
138589165064eeeab106668aca8fe2fe263fe2f66e56fcb74d8bfbe2f70a05f53e7851df03bfb80a0c2dc8fc90f3e69066fd11cfc52cde03fc3a3aefc46e7e30
 SHA512 
4f96a5ba435d45e28d136e2b5317327e1df78f9e105c7b9dff5beecbdfe7fc32fb4c166c05922fc2c12a469287a28d37d9f2357c3ccf83875abe92a1870a45ec
-DIST genpatches-4.14-180.base.tar.xz 3907208 BLAKE2B 
9aa4a2e71d3182a45b6dca8c350fc580b13ed6a975434851d0e3bc0e00229d97bf37b27f706ccf2d5aa1df9143c52888426a1b0a9f66dcec0c7602c1a69fb658
 SHA512 
df3f4d5988374fa29fb417a36f48de6ec44d73c4507a25b4ba91588f16449140f6f6cf7947614452f29d9fa328806d533ea0090d1999d3383a7084a471e00ae7
-DIST genpatches-4.14-180.experimental.tar.xz 5936 BLAKE2B 
9301f011b8c8878e334ac9098836e9c1ae3d8e96893dfb0d2f512b9f8ed9474f2541d5b3a8f6d77b27275b275d02f237415956512bede954eb18a449ae9c4bf5
 SHA512 
474c5fafc8c26b1822dacca359de5c8c9dba4bc90e9a3ef533ce769d7ccc5bc6fef649f20efb69d19a5823aaf1a382856487fb9b03b344a201bdc01da46dbcdb
-DIST genpatches-4.14-180.extras.tar.xz 17508 BLAKE2B 
8d568d4e18cc1194db8def0ecb0c3ffbaac639bae8367ee5e7c2d77cc2c79991c4ba979bf345e37a55eebf5e8498981f607a1a6a9a2352e0e1fbedd2177498e3
 SHA512 
979c8fc96b4ac842e6e275a96e9f70297bea0198b6184efe0618269a7c8b37ca7015a388511c4ac45365b66d20b96fa3e16579af22912d7ee90f68836faa4b3f
-DIST genpatches-4.14-181.base.tar.xz 3991280 BLAKE2B 
264a2f0fed15bdf7cb84257887d0e4ce5dd0e9eb6a9febdc08903c6760d9c0a744d8f80dac5625592c46f3667dbce3500287c20ef0052f1026e2b01d6ec437c6
 SHA512 
4332f2eca701e179cebb58db2802da71f0c5fc96928c7b403a0964bf6370942c89058d6a25fd3ad587c5af795822b42a86488783fef85a47b9057ed6d38654ba
-DIST genpatches-4.14-181.experimental.tar.xz 5936 BLAKE2B 
0392297b2232fb2bd18d8d9ab833968f6dc7f4ae8946fd579afcf3375fe9d22d10f4a76a9071fd110a84edd65c43e2a92a57cb263a9cf02a3907a67150122dd9
 SHA512 
42a68efcd26ec8f4d3ddc5163a424e678544869a6de0768b879402c87d4525c29c7cdb89e51a539bed247d5b84a2034dec57e7af7a30d31beced6743a9868109
-DIST genpatches-4.14-181.extras.tar.xz 17512 BLAKE2B 
3a45afa10e478bbe324d038d34289ada633dfb7ad62e12081d3b3c21fa7b991b7920dc4bb320b0007b6f899c5450b7d47d402d1f0f3766978ba870036839fb4a
 SHA512 
4918e375f9a051268816034c1403e13a99afe91fa45d44b3f358e467a54829841ece674be7b097080cab2b36d0e6746ecb1a0a83be77b4b27f3a776509145bd5
 DIST 

[gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-ppm-wiegand/

2020-03-31 Thread Rick Farina
commit: b6dc22cfdea85d2a07e7973fada179be756aa386
Author: Rick Farina  gentoo  org>
AuthorDate: Tue Mar 31 15:03:56 2020 +
Commit: Rick Farina  gentoo  org>
CommitDate: Tue Mar 31 15:04:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6dc22cf

net-wireless/gr-ppm-wiegand: fix qa warning

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

 net-wireless/gr-ppm-wiegand/gr-ppm-wiegand-.ebuild | 14 ++
 1 file changed, 14 insertions(+)

diff --git a/net-wireless/gr-ppm-wiegand/gr-ppm-wiegand-.ebuild 
b/net-wireless/gr-ppm-wiegand/gr-ppm-wiegand-.ebuild
index 793f5725988..6807b68ba67 100644
--- a/net-wireless/gr-ppm-wiegand/gr-ppm-wiegand-.ebuild
+++ b/net-wireless/gr-ppm-wiegand/gr-ppm-wiegand-.ebuild
@@ -27,3 +27,17 @@ RDEPEND="${PYTHON_DEPS}
 DEPEND="${RDEPEND}
dev-libs/boost:=
dev-util/cppunit"
+
+src_configure() {
+   #not supported by upstream...yet
+   mycmakeargs=(
+   -DGR_PKG_DOC_DIR="${EPREFIX}/usr/share/doc/${PF}"
+   )
+   cmake-utils_src_configure
+}
+
+src_install(){
+   default
+   dodir "/usr/share/doc/${PF}"
+   mv "${ED}/usr/share/doc/${PN}" "${ED}/usr/share/doc/${PF}"
+}



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

2020-03-31 Thread Ben Kohler
commit: cbbab342ccc293c5f68ce18d7089b7faa6ff9958
Author: Ben Kohler  gentoo  org>
AuthorDate: Fri Sep  6 16:26:04 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Tue Mar 31 15:03:17 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbbab342

java-utils-2.eclass: minor @USAGE fix

Signed-off-by: Ben Kohler  gentoo.org>

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

diff --git a/eclass/java-utils-2.eclass b/eclass/java-utils-2.eclass
index 1e46e9b5578..29f13e031f4 100644
--- a/eclass/java-utils-2.eclass
+++ b/eclass/java-utils-2.eclass
@@ -266,7 +266,7 @@ java-pkg_addres() {
 }
 
 # @FUNCTION: java-pkg_rm_files
-# @USAGE: java-pkg_rm_files File1.java File2.java ...
+# @USAGE:  [File2.java] ...
 # @DESCRIPTION:
 # Remove unneeded files in ${S}.
 #



  1   2   3   >