[gentoo-commits] repo/gentoo:master commit in: app-arch/lz4/

2019-08-20 Thread Michał Górny
commit: 8a4e82fde6aa41a1e751122def759b45ad7c5ce8
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Aug 21 05:40:48 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Aug 21 05:40:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a4e82fd

app-arch/lz4: Bump to 1.9.2

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

 app-arch/lz4/Manifest |  1 +
 app-arch/lz4/lz4-1.9.2.ebuild | 33 +
 2 files changed, 34 insertions(+)

diff --git a/app-arch/lz4/Manifest b/app-arch/lz4/Manifest
index 4bb1382050d..4f386685433 100644
--- a/app-arch/lz4/Manifest
+++ b/app-arch/lz4/Manifest
@@ -1,2 +1,3 @@
 DIST lz4-1.8.3.tar.gz 327897 BLAKE2B 
e2be80be14c67cf1a07cc6a2e6f6777a87abdd15499b9c32b8096e09284aea19620adf930e28454ce105e325cff684d2625e0a38211705f3c105a80b72f56be5
 SHA512 
5d284f75a0c4ad11ebc4abb4394d98c863436da0718d62f648ef2e2cda8e5adf47617a4b43594375f7b0b673541a9ccfaf73880a55fd240986594558214dbf9f
 DIST lz4-1.9.1.tar.gz 285336 BLAKE2B 
50dfad2e92028a1ccfe186efb5dbe24e4641e104da656990ba5138a84d29fbfea26d96c2d7f64f8d6a686dc98b4890990a280d4d86e321b04f467b65b6c61e1f
 SHA512 
536cdeb6dd73b4769cf9501ad312b004ab01699758534b47ca2eddbc815fd374a3caba40cde36f73a7a70e134065836b733e2b0c023c31740b877ef9317ccf3e
+DIST lz4-1.9.2.tar.gz 305796 BLAKE2B 
0021487bee8657bc825fdd2b98a6dc8a6d10be3240fe0bebf6563e9c855a15bf5440a02d5cd6ee1f1e8502743348bcec1e866d3287b07e623887e9eb9da35eee
 SHA512 
ae714c61ec8e33ed91359b63f2896cfa102d66b730dce112b74696ec5850e59d88bd5527173e01e354a70fbe8f036557a47c767ee0766bc5f9c257978116c3c1

diff --git a/app-arch/lz4/lz4-1.9.2.ebuild b/app-arch/lz4/lz4-1.9.2.ebuild
new file mode 100644
index 000..f68caa90b67
--- /dev/null
+++ b/app-arch/lz4/lz4-1.9.2.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake-multilib
+
+if [[ ${PV} ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/lz4/lz4.git;
+   EGIT_BRANCH=dev
+else
+   SRC_URI="https://github.com/Cyan4973/lz4/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+fi
+
+DESCRIPTION="Extremely Fast Compression algorithm"
+HOMEPAGE="https://github.com/lz4/lz4;
+
+LICENSE="BSD-2 GPL-2"
+# https://abi-laboratory.pro/tracker/timeline/lz4/
+SLOT="0/r132"
+IUSE="static-libs"
+
+CMAKE_USE_DIR=${S}/contrib/cmake_unofficial
+
+multilib_src_configure() {
+   local mycmakeargs=(
+   -DBUILD_STATIC_LIBS=$(usex static-libs)
+   )
+
+   cmake-utils_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/gtest/, dev-cpp/gtest/files/

2019-08-20 Thread Joonas Niilola
commit: aa4cea02ac7bb486979ce96d29b0dc6c76491184
Author: Peter Levine  gmail  com>
AuthorDate: Tue Aug 20 05:56:41 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Aug 21 05:06:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa4cea02

dev-cpp/gtest: Fix test failure on sparc64

sparc64 exhibits the same usersandbox stack overflow bug and its stack can
apparently grow upwards in memory.  Revert back to allocating 10 pages of
mapped memory for the offending call to clone().

Bug: https://bugs.gentoo.org/692464
Reported-by: Rolf Eike Beer  opensource.sf-tec.de>
Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: Peter Levine  gmail.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 .../gtest-1.9.0_pre20190607-add-mmap-stack-flag.patch | 15 ---
 ...test-1.9.0_pre20190607-increase-clone-stack-size.patch | 13 +
 dev-cpp/gtest/gtest-1.9.0_pre20190607.ebuild  |  2 +-
 dev-cpp/gtest/gtest-.ebuild   |  2 +-
 4 files changed, 15 insertions(+), 17 deletions(-)

diff --git 
a/dev-cpp/gtest/files/gtest-1.9.0_pre20190607-add-mmap-stack-flag.patch 
b/dev-cpp/gtest/files/gtest-1.9.0_pre20190607-add-mmap-stack-flag.patch
deleted file mode 100644
index 9a840aa5876..000
--- a/dev-cpp/gtest/files/gtest-1.9.0_pre20190607-add-mmap-stack-flag.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Bug: https://bugs.gentoo.org/688162
-Upstream PR: https://github.com/google/googletest/pull/2276
-
 a/googletest/src/gtest-death-test.cc
-+++ b/googletest/src/gtest-death-test.cc
-@@ -1357,6 +1357,9 @@ static pid_t ExecDeathTestSpawnChild(char* const* argv, 
int close_fd) {
- const auto stack_size = static_cast(getpagesize());
- // MMAP_ANONYMOUS is not defined on Mac, so we use MAP_ANON instead.
- void* const stack = mmap(nullptr, stack_size, PROT_READ | PROT_WRITE,
-+#if GTEST_OS_LINUX
-+ (stack_grows_down ? MAP_GROWSDOWN : 0) | // 
Needed for stack auto-resizing
-+#endif
-  MAP_ANON | MAP_PRIVATE, -1, 0);
- GTEST_DEATH_TEST_CHECK_(stack != MAP_FAILED);
- 

diff --git 
a/dev-cpp/gtest/files/gtest-1.9.0_pre20190607-increase-clone-stack-size.patch 
b/dev-cpp/gtest/files/gtest-1.9.0_pre20190607-increase-clone-stack-size.patch
new file mode 100755
index 000..38d515a48dd
--- /dev/null
+++ 
b/dev-cpp/gtest/files/gtest-1.9.0_pre20190607-increase-clone-stack-size.patch
@@ -0,0 +1,13 @@
+Bug: https://bugs.gentoo.org/692464
+
+--- a/googletest/src/gtest-death-test.cc
 b/googletest/src/gtest-death-test.cc
+@@ -1070,7 +1070,7 @@
+ 
+   if (!use_fork) {
+ static const bool stack_grows_down = StackGrowsDown();
+-const auto stack_size = static_cast(getpagesize());
++const auto stack_size = static_cast(getpagesize()* 10);
+ // MMAP_ANONYMOUS is not defined on Mac, so we use MAP_ANON instead.
+ void* const stack = mmap(NULL, stack_size, PROT_READ | PROT_WRITE,
+  MAP_ANON | MAP_PRIVATE, -1, 0);

diff --git a/dev-cpp/gtest/gtest-1.9.0_pre20190607.ebuild 
b/dev-cpp/gtest/gtest-1.9.0_pre20190607.ebuild
index 923d9a16c22..d79d6b7dd58 100644
--- a/dev-cpp/gtest/gtest-1.9.0_pre20190607.ebuild
+++ b/dev-cpp/gtest/gtest-1.9.0_pre20190607.ebuild
@@ -35,7 +35,7 @@ DEPEND="test? ( ${PYTHON_DEPS} )"
 RDEPEND="!dev-cpp/gmock"
 
 PATCHES=(
-   "${FILESDIR}"/${PN}-1.9.0_pre20190607-add-mmap-stack-flag.patch
+   "${FILESDIR}"/${PN}-1.9.0_pre20190607-increase-clone-stack-size.patch
 )
 
 pkg_setup() {

diff --git a/dev-cpp/gtest/gtest-.ebuild b/dev-cpp/gtest/gtest-.ebuild
index bd677dc0bd1..02ca3c039b1 100644
--- a/dev-cpp/gtest/gtest-.ebuild
+++ b/dev-cpp/gtest/gtest-.ebuild
@@ -33,7 +33,7 @@ DEPEND="test? ( ${PYTHON_DEPS} )"
 RDEPEND="!dev-cpp/gmock"
 
 PATCHES=(
-   "${FILESDIR}"/${PN}-1.9.0_pre20190607-add-mmap-stack-flag.patch
+   "${FILESDIR}"/${PN}-1.9.0_pre20190607-increase-clone-stack-size.patch
 )
 
 pkg_setup() {



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/gtest/files/, dev-cpp/gtest/

2019-08-20 Thread Joonas Niilola
commit: 856baf91fe985ca7e633f2611528a8c5f171c0b0
Author: Peter Levine  gmail  com>
AuthorDate: Tue Aug 20 06:10:29 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Aug 21 05:06:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=856baf91

dev-cpp/gtest: Remove gtest-1.7.0-r1

Outdated EAPI and no reverse dependencies

Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: Peter Levine  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/12751
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-cpp/gtest/Manifest |  1 -
 .../files/configure-fix-pthread-linking.patch  | 93 --
 dev-cpp/gtest/gtest-1.7.0-r1.ebuild| 50 
 3 files changed, 144 deletions(-)

diff --git a/dev-cpp/gtest/Manifest b/dev-cpp/gtest/Manifest
index 263c2954cef..63ceaa70e4a 100644
--- a/dev-cpp/gtest/Manifest
+++ b/dev-cpp/gtest/Manifest
@@ -1,4 +1,3 @@
-DIST gtest-1.7.0.tar.gz 1001582 BLAKE2B 
3d10c1e502c2fac1500d07301031a9328b29027a3f9719137e09d2c47556cf52bbc978a8fb7b37330a94beafa27d24c3bfc247b2f0d51306b53f43e7ae2373b4
 SHA512 
a9f5c047b39efb2d11b55ee9913662ca402ac6837b3ad2d278ecfbd1caf32ed4546f169e3e92503d57bf3b62ccf89cd062da1c7ea3638aae98e868d2766363c3
 DIST gtest-1.8.0.tar.gz 1281617 BLAKE2B 
ac052b4d0eb0d8ded03a8c7dff05177818627b8a51f2dbc2c162b2ee2a5d1323539e7d0d02236d9ebb75e018f0171c2fdaeb4de3bb339548265e50de79e6
 SHA512 
1dbece324473e53a83a60601b02c92c089f5d314761351974e097b2cf4d24af4296f9eb8653b6b03b1e363d9c5f793897acae1f0c7ac40149216035c4d395d9d
 DIST gtest-1.8.1.tar.gz 992298 BLAKE2B 
40ef3417fe424205c0617f07207347ce671ac87605f8ac9b8a333b0b06e3fbef9f556041ee324c18f957f3258ab9fe06704f31cdd038355fb7890180eb77ced1
 SHA512 
e6283c667558e1fd6e49fa96e52af0e415a3c8037afe1d28b7ff1ec4c2ef8f49beb70a9327b7fc77eb4052a58c4ccad8b5260ec90e4bceeac7a46ff59c4369d7
 DIST gtest-1.9.0_pre20190607.tar.gz 958396 BLAKE2B 
64ae2c86a320a6ed56d6f99383591f7a0176e3f1291144bddf6dc82733c78177963f95516bbaed494318d3d7451d164aeb0d4a192b415414bcc25b9875cf6e82
 SHA512 
6c17ba303ec1dc8a989075a6dc0eda9b023345d00f6b43e588676cc2cd291f8c508744e4aba86a6c6b651329ce47419ad04d5765ca5978eda507a1643e8a92c3

diff --git a/dev-cpp/gtest/files/configure-fix-pthread-linking.patch 
b/dev-cpp/gtest/files/configure-fix-pthread-linking.patch
deleted file mode 100644
index 75e5219b7a7..000
--- a/dev-cpp/gtest/files/configure-fix-pthread-linking.patch
+++ /dev/null
@@ -1,93 +0,0 @@
-From fb71154012e634a5e780e93af5434bcdafaf2b24 Mon Sep 17 00:00:00 2001
-From: Justin Bronder 
-Date: Mon, 15 Oct 2012 17:25:07 -0400
-Subject: [PATCH] configure:  fix pthread linking
-
-- Update the pthread check to make sure that we don't need -lpthread when
-compiling with -nostdlib.
-
-- Make sure that the necessary pthread library is passed to libtool.
-
-Fixes:
-
-$ ldd -r /usr/lib/libgtest.so
-linux-vdso.so.1 (0x7fffe7dff000)
-libstdc++.so.6 => /usr/lib/gcc/x86_64-pc-linux-gnu/4.6.3/libstdc++.so.6 
(0x7fbe09a9f000)
-libc.so.6 => /lib64/libc.so.6 (0x7fbe096f7000)
-libgcc_s.so.1 => /usr/lib/gcc/x86_64-pc-linux-gnu/4.6.3/libgcc_s.so.1 
(0x7fbe094e1000)
-libm.so.6 => /lib64/libm.so.6 (0x7fbe091ee000)
-/lib64/ld-linux-x86-64.so.2 (0x7fbe0a005000)
-undefined symbol: pthread_key_create(/usr/lib/libgtest.so)
-undefined symbol: pthread_getspecific   (/usr/lib/libgtest.so)
-undefined symbol: pthread_key_delete(/usr/lib/libgtest.so)
-undefined symbol: pthread_setspecific   (/usr/lib/libgtest.so)

- Makefile.am   |1 +
- m4/acx_pthread.m4 |   39 ++-
- 2 files changed, 39 insertions(+), 1 deletions(-)
-
-diff --git a/Makefile.am b/Makefile.am
-index cb350b7..db2606e 100644
 a/Makefile.am
-+++ b/Makefile.am
-@@ -181,6 +181,7 @@ endif
- lib_LTLIBRARIES = lib/libgtest.la lib/libgtest_main.la
- 
- lib_libgtest_la_SOURCES = src/gtest-all.cc
-+lib_libgtest_la_LIBADD = $(AM_LIBS)
- 
- pkginclude_HEADERS = \
-   include/gtest/gtest-death-test.h \
-diff --git a/m4/acx_pthread.m4 b/m4/acx_pthread.m4
-index 2cf20de..7fba4d9 100644
 a/m4/acx_pthread.m4
-+++ b/m4/acx_pthread.m4
-@@ -339,7 +339,44 @@ if test "x$acx_pthread_ok" = xyes; then
-  # so it's not safe to assume that we may use pthreads
-  acx_pthread_ok=no
-   fi
--  
-+   
-+   AC_MSG_CHECKING([whether what we have so far is sufficient with -nostdlib])
-+   CFLAGS="-nostdlib $CFLAGS"
-+   # we need c with nostdlib
-+   LIBS="$LIBS -lc" 
-+   AC_TRY_LINK([#include ],
-+ [pthread_t th; pthread_join(th, 0);
-+ pthread_attr_init(0); pthread_cleanup_push(0, 0);
-+ pthread_create(0,0,0,0); pthread_cleanup_pop(0); ],
-+ [done=yes],[done=no])
-+  
-+   if test "x$done" = xyes; then
-+  AC_MSG_RESULT([yes])
-+   else
-+  AC_MSG_RESULT([no])
-+   fi
-+   
-+   if test x"$done" = xno; then
-+  AC_MSG_CHECKING([whether -lpthread saves the day])

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

2019-08-20 Thread Hans de Graaff
commit: c41bf1762a88c06c76de4dc1a8afc5ac4cd6bc65
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Aug 21 05:01:03 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Aug 21 05:01:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c41bf176

dev-ruby/rouge: add 3.9.0

Add missing test dependency on minitest-power_assert. Drop keywords
accordingly, bug 692660

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

 dev-ruby/rouge/Manifest   |  1 +
 dev-ruby/rouge/rouge-3.9.0.ebuild | 35 +++
 2 files changed, 36 insertions(+)

diff --git a/dev-ruby/rouge/Manifest b/dev-ruby/rouge/Manifest
index e802ee038bb..7f192c8e2be 100644
--- a/dev-ruby/rouge/Manifest
+++ b/dev-ruby/rouge/Manifest
@@ -1,3 +1,4 @@
 DIST rouge-3.6.0.tar.gz 727487 BLAKE2B 
d5430e0dec82244c8c5fc0df3de318556f3b6c24579b34a724f20953765ab9fabfd79c5aeab3ff9d16f5f4c7db531b0b9d511938b8836207f4a64050a4bff112
 SHA512 
b5ec4d6325a752033d8c1e1bbe1618840bf2b5c556391ae8d978971a520f83a49d7244f0386193c947689d84d61d98137b8d8a06ed83e3c1d6769923a1c6c1c1
 DIST rouge-3.7.0.tar.gz 761581 BLAKE2B 
681b8447a0f56e774f155ca735fa57b18a58f7ba3a55f995c3b42927392c91891facee557ed85a9faae86a9fa3301aedca995cff9a9b3d729c1be8e0cbdb8b97
 SHA512 
9360a4e0d564435da1481503222794e4b5649b4ece1b410d079c69f10e89e20bdf08c9d04663919cfbb7ce7b7cf0688604649c42c2442750bb1301d68e78248f
 DIST rouge-3.8.0.tar.gz 755720 BLAKE2B 
aca1ccbd601ee080958ccf09ab8932dc556065945f4cc2ee9b9bf5531ff41cec676005b0c7540aa058b3346c5eabac4351dd6a291ff148c9b5dfc682f7579336
 SHA512 
16a1cf9e9eae466c55f236f10d10bf0f5f4d523f6a680c1130b02115384691c1e2fbb14b59a6be1b9df77cc67fdb0ffe026cff6d0150230afe53f26b4c254dde
+DIST rouge-3.9.0.tar.gz 771945 BLAKE2B 
855a9a7b7bc5af5c19265570d7cfbb699ac3c9e355ef1a0ccba2a8a5e93ccf3dac5bc1c6e8ab1e251c29eb4eada403862c31f905d6de86bd3b6ae1d1868231c0
 SHA512 
da132ed07889f6dfda9199cfd6eb8f1af8e0c68b666452f0bafc86417bc153d11967138de49f299f4ae9d2f868dd7349a4089b235fceea80e32b1af3e3200172

diff --git a/dev-ruby/rouge/rouge-3.9.0.ebuild 
b/dev-ruby/rouge/rouge-3.9.0.ebuild
new file mode 100644
index 000..88e1aab311a
--- /dev/null
+++ b/dev-ruby/rouge/rouge-3.9.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+USE_RUBY="ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_TASK_TEST="spec"
+RUBY_FAKEGEM_RECIPE_DOC="yard"
+
+RUBY_FAKEGEM_GEMSPEC="rouge.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Yet-another-markdown-parser using a strict syntax definition in 
pure Ruby"
+HOMEPAGE="https://github.com/jneen/rouge;
+SRC_URI="https://github.com/jneen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+
+SLOT="2"
+KEYWORDS="~amd64"
+IUSE=""
+
+ruby_add_bdepend "doc? ( dev-ruby/redcarpet )
+   test? ( dev-ruby/minitest-power_assert )
+"
+
+ruby_add_rdepend "dev-ruby/redcarpet"
+
+all_ruby_prepare() {
+   rm -f tasks/update/changelog.rake || die
+
+   sed -i -e '/bundler/I s:^:#: ; 5irequire "minitest-power_assert"' 
spec/spec_helper.rb || die
+   sed -i -e '/\(changelog\|bundler\)/ s:^:#: ; 1irequire "pathname"' 
Rakefile || die
+}



[gentoo-commits] repo/gentoo:master commit in: sci-libs/Shapely/

2019-08-20 Thread Slawek Lis
commit: 9ef07e5b3c16d401d55a22723073926a2fdde6df
Author: Slawomir Lis  gentoo  org>
AuthorDate: Wed Aug 21 04:57:11 2019 +
Commit: Slawek Lis  gentoo  org>
CommitDate: Wed Aug 21 04:57:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ef07e5b

sci-libs/Shapely: version bump to 1.6.4_p2

Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: Slawek Lis  gentoo.org>

 sci-libs/Shapely/Manifest|  1 +
 sci-libs/Shapely/Shapely-1.6.4_p2.ebuild | 50 
 2 files changed, 51 insertions(+)

diff --git a/sci-libs/Shapely/Manifest b/sci-libs/Shapely/Manifest
index 35873429646..ab1a676fbf8 100644
--- a/sci-libs/Shapely/Manifest
+++ b/sci-libs/Shapely/Manifest
@@ -1,3 +1,4 @@
 DIST Shapely-1.3.0.tar.gz 118863 BLAKE2B 
6a35060b6593519b62b479fdb21047e0a44976109e27a55dbdf7583952666c8cfecf775975be54701696d57d3c5b1082110dd474df265ccf5b467acddcd2a629
 SHA512 
106f9773a5b00e7269a84c760f3a2b867c48139c48eebeecd524c8216d75c28daaf46eff45c118c180e33a317e9aca278a8d83605dc7273877a7ed3edd82
 DIST Shapely-1.3.2.tar.gz 120179 BLAKE2B 
bc10e017a546e715c05c4edb1aab4f86cb0fd6f1f35ab23f1d8dcdf402c96aca92668cf9bc788387dac8cabd958cfa35a90045f2f2a7a6798383cb2d
 SHA512 
23d65c5a7137726e05e0399dc49f05e5ad9b582d4adcdf30215f72ae75989e85daf30ea2a5010d6a5a086cb6bbb5b4599b5065080b845c833776812f6e46566d
 DIST Shapely-1.5.17.tar.gz 180663 BLAKE2B 
1a41de8c264989abeac27fe9b63abd81ad6f03f0eecd313131d04190b8bbebc6c6bd6b45b1782fbfd163025cda4977b7e93a24a711c76fddfaedb0fe880cea53
 SHA512 
eea241942ffbf377001445fab4017c9a2746d6bc0baa6c801a08ca95e608bbdaea7ad9568f00cbecdb559e634402bc6d213ebccb4074e59325e1cc4b3771626d
+DIST Shapely-1.6.4.post2.tar.gz 225745 BLAKE2B 
96e995db6dd1464bac7c2562efdc7f298a5f23c388e44f334db685b1cfa1025ff403db870e11328977a267483726504e03b6d7c47fe4234a3a5966a13b2b7311
 SHA512 
027c816ef2104f654569ca658b52b87c60e5ba6a45927fcc51c23dd1922f3f9f7fdcea3601160b0a999e39611617142833ccac790777093be8b96a0d9083f78f

diff --git a/sci-libs/Shapely/Shapely-1.6.4_p2.ebuild 
b/sci-libs/Shapely/Shapely-1.6.4_p2.ebuild
new file mode 100644
index 000..50528d9087d
--- /dev/null
+++ b/sci-libs/Shapely/Shapely-1.6.4_p2.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{5,6} )
+
+inherit distutils-r1 eapi7-ver
+
+DESCRIPTION="Geometric objects, predicates, and operations"
+HOMEPAGE="https://pypi.org/project/Shapely/;
+
+MY_PV="$(ver_cut 1-3).post$(ver_cut 5)"
+
+if [[ ${PV} == "" ]] ; then
+   inherit git-r3
+   SRC_URI=""
+   EGIT_REPO_URI="https://github.com/Toblerity/${PN}.git;
+else
+   SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${PN}-${MY_PV}.tar.gz"
+   KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="test"
+
+RDEPEND=">=sci-libs/geos-3.3
+   dev-python/numpy[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/cython[${PYTHON_USEDEP}]
+   test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
+S="${WORKDIR}/${PN}-${MY_PV}"
+
+python_prepare_all() {
+   # fix install path for Cython definition file
+   sed -i \
+   -e "s|\(data_files.*\)'shapely'|\1'share/shapely'|" \
+   setup.py || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   distutils_install_for_testing
+   cd "${TEST_DIR}/lib" || die
+   cp -r "${S}/tests" . || die
+   py.test tests || die
+}



[gentoo-commits] repo/user/darkelf:master commit in: net-im/discord-bin/

2019-08-20 Thread Simon
commit: 561749039f1c6c82296f7524adb6a24b6c26b26c
Author: Simon the Sorcerer  mail  uni-paderborn  de>
AuthorDate: Wed Aug 21 02:40:40 2019 +
Commit: Simon  gmx  de>
CommitDate: Wed Aug 21 02:40:40 2019 +
URL:https://gitweb.gentoo.org/repo/user/darkelf.git/commit/?id=56174903

removed net-im/discord.

Signed-off-by: Simon the Sorcerer  mail.uni-paderborn.de>

 net-im/discord-bin/Manifest |  3 -
 net-im/discord-bin/discord-bin-0.0.8.ebuild | 91 -
 net-im/discord-bin/metadata.xml |  8 ---
 3 files changed, 102 deletions(-)

diff --git a/net-im/discord-bin/Manifest b/net-im/discord-bin/Manifest
deleted file mode 100644
index 794d314..000
--- a/net-im/discord-bin/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST discord-0.0.8.deb 44221304 BLAKE2B 
3b40f03a3398e1041c0b532df8bc1326df2564a2744d05529db9ba9191bb647eed4ebc28e08cdfa69b98336b2b0619f5898367c3497a704a7bec4309f7f2eb36
 SHA512 
5d228f0d36306d35ae8d76385a82cbfef32da2ee405292062972c4c2df453f0d329d91127d55ce81e79fa398de9be839b77125fc8a7e9958fa3409c29ee4880a
-EBUILD discord-bin-0.0.8.ebuild 1705 BLAKE2B 
827e64b78f48d17ab52041fededd773c75ce63f319391630ad93924dd73725935a39e0b6cfc94b8afb621f8da9f183853d93033c7332294372577042ee412231
 SHA512 
a48e37a0f5bea77cc83144680a33236546a2edee27d71c64197ffd816db07c3e7c0b3a6a38df4a9335353208377c1d804c592eefff1b9329de07a6b54dd15d5b
-MISC metadata.xml 245 BLAKE2B 
26bf988c73d073000ab8d21ea881c4088b90e7081410938828744375bfa8de31cce2c78154ccfc61105c853c1f24f4994ca4e5cbb80c4c89dfd489bbd10a09ee
 SHA512 
ecb8a4621081ccdd43f08e4f560b0bc820c27d6a282c87e1a8f77137ec8b215188fe31f11fc6379533afee2ebe7e14d5395a45c1aab9abfe423fd832dba692a4

diff --git a/net-im/discord-bin/discord-bin-0.0.8.ebuild 
b/net-im/discord-bin/discord-bin-0.0.8.ebuild
deleted file mode 100644
index b8f860f..000
--- a/net-im/discord-bin/discord-bin-0.0.8.ebuild
+++ /dev/null
@@ -1,91 +0,0 @@
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MY_PN=${PN/-bin/}
-inherit eutils gnome2-utils unpacker
-
-DESCRIPTION="All-in-one voice and text chat for gamers"
-HOMEPAGE="https://discordapp.com;
-SRC_URI="https://dl.discordapp.net/apps/linux/${PV}/${MY_PN}-${PV}.deb;
-
-LICENSE="all-rights-reserved"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-RDEPEND="
-   dev-libs/atk
-   dev-libs/expat
-   dev-libs/glib:2
-   dev-libs/nspr
-   dev-libs/nss
-   gnome-base/gconf:2
-   media-libs/alsa-lib
-   media-libs/fontconfig:1.0
-   media-libs/freetype:2
-   net-print/cups
-   sys-apps/dbus
-   sys-libs/libcxx
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf:2
-   x11-libs/gtk+:2
-   x11-libs/libX11
-   x11-libs/libXScrnSaver
-   x11-libs/libXcomposite
-   x11-libs/libXcursor
-   x11-libs/libXdamage
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXi
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   x11-libs/libXtst
-   x11-libs/pango
-"
-
-S=${WORKDIR}
-
-RESTRICT="mirror bindist"
-
-QA_PREBUILT="
-   opt/discord/share/discord/Discord
-   opt/discord/share/discord/libnode.so
-   opt/discord/share/discord/libffmpeg.so
-"
-
-src_unpack() {
-   unpack_deb ${A}
-}
-
-src_prepare() {
-   default
-
-   sed -i \
-   -e "s:/usr/share/discord/Discord:discord:g" \
-   usr/share/${MY_PN}/${MY_PN}.desktop || die
-}
-
-src_install() {
-   insinto /opt/${MY_PN}
-   doins -r usr/.
-
-   fperms +x /opt/${MY_PN}/bin/${MY_PN}
-   dosym ../../opt/${MY_PN}/bin/${MY_PN} /usr/bin/${MY_PN}
-   dosym ../../../opt/${MY_PN}/share/applications/${MY_PN}.desktop \
-   /usr/share/applications/${MY_PN}.desktop
-   dosym ../../../opt/${MY_PN}/share/pixmaps/${MY_PN}.png \
-   /usr/share/pixmaps/${MY_PN}.png
-}
-
-pkg_preinst() {
-   gnome2_icon_savelist
-}
-
-pkg_postinst() {
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   gnome2_icon_cache_update
-}

diff --git a/net-im/discord-bin/metadata.xml b/net-im/discord-bin/metadata.xml
deleted file mode 100644
index 15fd2f3..000
--- a/net-im/discord-bin/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   j...@gentoo.org
-   Johannes Huber
-   
-



[gentoo-commits] repo/user/darkelf:master commit in: xfce-extra/xfce4-mixer/

2019-08-20 Thread Simon
commit: b8f92763165a49aa53663bf08e2db7280e3ed8e2
Author: Simon the Sorcerer  mail  uni-paderborn  de>
AuthorDate: Wed Aug 21 02:31:50 2019 +
Commit: Simon  gmx  de>
CommitDate: Wed Aug 21 02:31:50 2019 +
URL:https://gitweb.gentoo.org/repo/user/darkelf.git/commit/?id=b8f92763

removed xfce-extra/xfce4-mixer.

Signed-off-by: Simon the Sorcerer  mail.uni-paderborn.de>

 xfce-extra/xfce4-mixer/Manifest  |  3 --
 xfce-extra/xfce4-mixer/metadata.xml  | 11 ---
 xfce-extra/xfce4-mixer/xfce4-mixer-4.11.0.ebuild | 41 
 3 files changed, 55 deletions(-)

diff --git a/xfce-extra/xfce4-mixer/Manifest b/xfce-extra/xfce4-mixer/Manifest
deleted file mode 100644
index a3c5777..000
--- a/xfce-extra/xfce4-mixer/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST xfce4-mixer-4.11.0.tar.bz2 472235 SHA256 
fb0c1df201ed1130f54f15b914cbe5a59286e994a137acda5609570c57112de2 SHA512 
0ef27ece0d5f46bd83db86d8e607d2dc34f4b0221679dbdeae4e4eb9993b30398a2e882b3a870af9928906330898935f2fe29e83442ba6f01b9e19d02ea6f66f
 WHIRLPOOL 
58ebbe509e89d7bf3dded809a9466094287e53d7c0ed905c6c5e3bf70ac8810d9ad174a1dc082940c77b55117e6931d067f24dd46b8c09ce1fd1f6c39fa96492
-EBUILD xfce4-mixer-4.11.0.ebuild 1102 SHA256 
69f1f60237b0ae06de49e9312fbea3ed4f777be56f562bae0ed128c0b6cb22fc SHA512 
b738ed4d087f4c0b50533c119642535daae0908dc7b8b26c42e8cd6c9ca60c070d57316c9350681c2c2a4502c0e9cc86bfa8d342e2c4c7db300ef5c80f2e4bbe
 WHIRLPOOL 
4c061fca8baa0ec6ab083e29aba2bf9ba25e66c816582ff5d19edaedb8228474402622336b3fadab85723915afe781b67c140e83bc23e4743a5b38318a0ff0a8
-MISC metadata.xml 387 SHA256 
ed3f68c3ddbe15eefbc3d2586cbc3c9c7ce6b73c0a6c63145f0e106afa2acfdd SHA512 
d8048cd004963ea6ecce64e9c4323217ec52c90bbb2c6bdb9eb1144215fe5501a9533af37bd5fc236fbb93b1622747cf917861835d04883da34b37581c1c9580
 WHIRLPOOL 
76147d4c2c8a6d9f392b36fe6c997e2a0115d42fa3331195e1a64164991706ebdeac7b3b2a0b1995a5225ab057a3f5935338629be4936cbb0511291f4eacc462

diff --git a/xfce-extra/xfce4-mixer/metadata.xml 
b/xfce-extra/xfce4-mixer/metadata.xml
deleted file mode 100644
index 0a52d74..000
--- a/xfce-extra/xfce4-mixer/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-  
-   neu...@mail.uni-paderborn.de
-   Primary maintainer
-  
-  
-Enable shortcut support using 
dev-libs/keybinder
-  
-

diff --git a/xfce-extra/xfce4-mixer/xfce4-mixer-4.11.0.ebuild 
b/xfce-extra/xfce4-mixer/xfce4-mixer-4.11.0.ebuild
deleted file mode 100644
index 682b016..000
--- a/xfce-extra/xfce4-mixer/xfce4-mixer-4.11.0.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit xfconf
-
-DESCRIPTION="A volume control application and panel plug-in for Xfce"
-HOMEPAGE="https://git.xfce.org/apps/xfce4-mixer/;
-SRC_URI="mirror://xfce/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 arm ~hppa ~mips ppc ppc64 x86 ~x86-fbsd ~amd64-linux 
~x86-linux"
-IUSE="alsa debug +keybinder oss"
-
-COMMON_DEPEND=">=dev-libs/glib-2.24
-   dev-libs/libunique:1
-   media-libs/gst-plugins-base:0.10
-   >=x11-libs/gtk+-2.20:2
-   >=xfce-base/libxfce4ui-4.10
-   >=xfce-base/libxfce4util-4.10
-   >=xfce-base/xfce4-panel-4.10
-   >=xfce-base/xfconf-4.10
-   keybinder? ( dev-libs/keybinder:0 )"
-RDEPEND="${COMMON_DEPEND}
-   alsa? ( media-plugins/gst-plugins-alsa:0.10 )
-   oss? ( media-plugins/gst-plugins-oss:0.10 )
-   !alsa? ( !oss? ( media-plugins/gst-plugins-meta:0.10 ) )"
-DEPEND="${COMMON_DEPEND}
-   dev-util/intltool
-   sys-devel/gettext
-   virtual/pkgconfig"
-
-pkg_setup() {
-   XFCONF=(
-   $(use_enable keybinder)
-   $(xfconf_use_debug)
-   )
-
-   DOCS=( AUTHORS ChangeLog NEWS README )
-}



[gentoo-commits] repo/gentoo:master commit in: sys-auth/oath-toolkit/

2019-08-20 Thread Matt Turner
commit: 1ce5191ad8b5059d4323f0b6f19deefc6cfca21c
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Aug 21 02:13:19 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Aug 21 02:13:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ce5191a

sys-auth/oath-toolkit-2.6.2: x86 stable

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

 sys-auth/oath-toolkit/oath-toolkit-2.6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/oath-toolkit/oath-toolkit-2.6.2.ebuild 
b/sys-auth/oath-toolkit/oath-toolkit-2.6.2.ebuild
index 28725920c26..1fd990ee3d1 100644
--- a/sys-auth/oath-toolkit/oath-toolkit-2.6.2.ebuild
+++ b/sys-auth/oath-toolkit/oath-toolkit-2.6.2.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="http://download.savannah.gnu.org/releases/${PN}/${P}.tar.gz;
 LICENSE="GPL-3 LGPL-2.1"
 
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm64 ~ppc64 x86"
 IUSE="pam pskc test"
 
 RDEPEND="



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

2019-08-20 Thread Matt Turner
commit: d3e43b26b9a514f4853651954f6fadbd87eb5f8b
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Aug 21 02:07:57 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Aug 21 02:08:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3e43b26

app-admin/pass-otp: Stabilize

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

 app-admin/pass-otp/pass-otp-1.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/pass-otp/pass-otp-1.2.0.ebuild 
b/app-admin/pass-otp/pass-otp-1.2.0.ebuild
index b93a38c51e2..07731fc77c0 100644
--- a/app-admin/pass-otp/pass-otp-1.2.0.ebuild
+++ b/app-admin/pass-otp/pass-otp-1.2.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/tadfisher/pass-otp/releases/download/v${PV}/${P}.tar
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="qrcode test"
 
 DEPEND="test? ( dev-tcltk/expect:* )"



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

2019-08-20 Thread William Hubbs
commit: 2d480869e1388d2d01534c1d586a5f69f6eb225a
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Aug 21 01:48:04 2019 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Aug 21 01:48:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d480869

sys-apps/openrc: sync live

Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: William Hubbs  gentoo.org>

 sys-apps/openrc/openrc-.ebuild | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/sys-apps/openrc/openrc-.ebuild 
b/sys-apps/openrc/openrc-.ebuild
index 6bf7ded639b..dea79c65bd1 100644
--- a/sys-apps/openrc/openrc-.ebuild
+++ b/sys-apps/openrc/openrc-.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
 fi
 
 LICENSE="BSD-2"
@@ -182,12 +182,12 @@ pkg_postinst() {
 
# Added for 0.35.
if use kernel_linux && [[ ! -h "${EROOT}"/lib ]]; then
-   if [[ -d "${EROOT}$(get_libdir)"/rc ]]; then
-   cp -RPp "${EROOT}$(get_libdir)/rc" "${EROOT}"/lib
+   if [[ -d "${EROOT}/$(get_libdir)"/rc ]]; then
+   cp -RPp "${EROOT}/$(get_libdir)/rc" "${EROOT}"/lib
fi
elif ! use kernel_linux; then
-   if [[ -d "${EROOT}$(get_libdir)"/rc ]]; then
-   cp -RPp "${EROOT}$(get_libdir)/rc" "${EROOT}"/lib
+   if [[ -d "${EROOT}/$(get_libdir)"/rc ]]; then
+   cp -RPp "${EROOT}/$(get_libdir)/rc" "${EROOT}"/lib
fi
fi
 



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

2019-08-20 Thread William Hubbs
commit: 94899415b4ed5c37165f731130aa03690ba15b73
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Aug 21 01:40:09 2019 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Aug 21 01:43:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94899415

sys-apps/openrc: remove broken version

Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: William Hubbs  gentoo.org>

 sys-apps/openrc/Manifest   |   1 -
 sys-apps/openrc/openrc-0.42.ebuild | 211 -
 2 files changed, 212 deletions(-)

diff --git a/sys-apps/openrc/Manifest b/sys-apps/openrc/Manifest
index 2f4db701205..f5e4edb0229 100644
--- a/sys-apps/openrc/Manifest
+++ b/sys-apps/openrc/Manifest
@@ -1,3 +1,2 @@
 DIST openrc-0.41.2.tar.gz 245302 BLAKE2B 
ab80dc4f3a7c2c464fe64cdfa7fd31363d5a9d25e90d0239325be05561e5802f22c47013fde82650f5ce08cf99f16f5f479d8617c254647b8c40cec9609d0b6b
 SHA512 
ebfa691cae4704bb3023ea0508a712a45b8c20809828729dfa5292e96f3fd1b309813d80d7c286d0c09680bf5378aba40cfd994f27951f43a3ffb1fd0d69a58b
 DIST openrc-0.42.1.tar.gz 242848 BLAKE2B 
381f52552c13afbbcf45456fe71078bacf9182adfd67c97394093986977f5e8262d8a3c64219501745575a5210f525afe9fccee72f7625485a9f575108baa369
 SHA512 
579b9bfbb151b945a364a2c12b037d2e15991820ca99a07ac18e9bdc50074e67fbf0dcf9865aa4deabe2bf82092e4623be51c9e0b4014384951e0a92ac1e7646
-DIST openrc-0.42.tar.gz 242670 BLAKE2B 
df3c1594cb441228dd9c5f16e0758bd3a62cd51c8797ce57b6c290b0b8d80307eb5e43a4a6107da8d6911777524deac48cea48f6b96a5d4eab4e5c81fa11a835
 SHA512 
200f3f0054e766accce332bc86941367f99f0c6a0b00bf1faad877ff9ac7cfa36a90a60432361483c0d2a778bed0d811130ad692aea64b2e2d34c5b95940b68a

diff --git a/sys-apps/openrc/openrc-0.42.ebuild 
b/sys-apps/openrc/openrc-0.42.ebuild
deleted file mode 100644
index dea79c65bd1..000
--- a/sys-apps/openrc/openrc-0.42.ebuild
+++ /dev/null
@@ -1,211 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit flag-o-matic pam toolchain-funcs usr-ldscript
-
-DESCRIPTION="OpenRC manages the services, startup and shutdown of a host"
-HOMEPAGE="https://github.com/openrc/openrc/;
-
-if [[ ${PV} == "" ]]; then
-   EGIT_REPO_URI="https://github.com/OpenRC/${PN}.git;
-   inherit git-r3
-else
-   SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
-fi
-
-LICENSE="BSD-2"
-SLOT="0"
-IUSE="audit bash debug ncurses pam newnet prefix +netifrc selinux static-libs
-   sysv-utils unicode kernel_linux kernel_FreeBSD"
-
-COMMON_DEPEND="kernel_FreeBSD? ( || ( >=sys-freebsd/freebsd-ubin-9.0_rc 
sys-process/fuser-bsd ) )
-   ncurses? ( sys-libs/ncurses:0= )
-   pam? (
-   sys-auth/pambase
-   virtual/pam
-   )
-   audit? ( sys-process/audit )
-   kernel_linux? (
-   sys-process/psmisc
-   !=sys-libs/libselinux-2.6
-   )
-   !test
-# a value of "#" will just comment out the option
-set_config() {
-   local file="${ED}/$1" var=$2 val com
-   eval "${@:5}" && val=$3 || val=$4
-   [[ ${val} == "#" ]] && com="#" && val='\2'
-   sed -i -r -e "/^#?${var}=/{s:=([\"'])?([^ 
]*)\1?:=\1${val}\1:;s:^#?:${com}:}" "${file}"
-}
-
-set_config_yes_no() {
-   set_config "$1" "$2" YES NO "${@:3}"
-}
-
-src_install() {
-   emake ${MAKE_ARGS} DESTDIR="${D}" install
-
-   # move the shared libs back to /usr so ldscript can install
-   # more of a minimal set of files
-   # disabled for now due to #270646
-   #mv "${ED}"/$(get_libdir)/lib{einfo,rc}* "${ED}"/usr/$(get_libdir)/ || 
die
-   #gen_usr_ldscript -a einfo rc
-   gen_usr_ldscript libeinfo.so
-   gen_usr_ldscript librc.so
-
-   if ! use kernel_linux; then
-   keepdir /lib/rc/init.d
-   fi
-   keepdir /lib/rc/tmp
-
-   # Setup unicode defaults for silly unicode users
-   set_config_yes_no /etc/rc.conf unicode use unicode
-
-   # Cater to the norm
-   set_config_yes_no /etc/conf.d/keymaps windowkeys '(' use x86 '||' use 
amd64 ')'
-
-   # On HPPA, do not run consolefont by default (bug #222889)
-   if use hppa; then
-   rm -f "${ED}"/etc/runlevels/boot/consolefont
-   fi
-
-   # Support for logfile rotation
-   insinto /etc/logrotate.d
-   newins "${FILESDIR}"/openrc.logrotate openrc
-
-   # install gentoo pam.d files
-   newpamd "${FILESDIR}"/start-stop-daemon.pam start-stop-daemon
-   newpamd "${FILESDIR}"/start-stop-daemon.pam supervise-daemon
-
-   # install documentation
-   dodoc ChangeLog *.md
-   if use newnet; then
-   dodoc README.newnet
-   fi
-}
-
-pkg_preinst() {
-   # avoid default thrashing in conf.d files when possible #295406
-   if [[ -e 

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

2019-08-20 Thread Aaron Bauman
commit: 96714bf699cd959dae9bf1a906475fed36728869
Author: Gabriel Caudrelier  gmail  com>
AuthorDate: Sun Aug 18 16:09:40 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed Aug 21 00:00:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96714bf6

app-misc/pip3line: Removing proxy maintainer

Signed-off-by: Gabriel Caudrelier  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/12743
Signed-off-by: Aaron Bauman  gentoo.org>

 app-misc/pip3line/metadata.xml | 9 +
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/app-misc/pip3line/metadata.xml b/app-misc/pip3line/metadata.xml
index 9cc54c99226..a89190752a4 100644
--- a/app-misc/pip3line/metadata.xml
+++ b/app-misc/pip3line/metadata.xml
@@ -1,14 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   gabriel.caudrel...@gmail.com
-   Gabriel Caudrelier
-   
-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
-   
+   

Compile the Distorm plugin
Use QScintilla for more efficient text 
display



[gentoo-commits] proj/portage:master commit in: lib/portage/package/ebuild/

2019-08-20 Thread Zac Medico
commit: 26c8526293bd93906390d8fc830dc55052fc4d40
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Aug 20 23:41:24 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Aug 20 23:42:53 2019 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=26c85262

doebuild_environment: add newline to PORTAGE_COMPRESSION_COMMAND messages

Fixes: cff2c0149142 ("Support different compressors for binary packages")
Signed-off-by: Zac Medico  gentoo.org>

 lib/portage/package/ebuild/doebuild.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/portage/package/ebuild/doebuild.py 
b/lib/portage/package/ebuild/doebuild.py
index 6f980f87d..584ff798b 100644
--- a/lib/portage/package/ebuild/doebuild.py
+++ b/lib/portage/package/ebuild/doebuild.py
@@ -543,7 +543,7 @@ def doebuild_environment(myebuild, mydo, myroot=None, 
settings=None,
compression = _compressors[binpkg_compression]
except KeyError as e:
if binpkg_compression:
-   writemsg("Warning: Invalid or unsupported 
compression method: %s" % e.args[0])
+   writemsg("Warning: Invalid or unsupported 
compression method: %s\n" % e.args[0])
else:
# Empty BINPKG_COMPRESS disables compression.
mysettings['PORTAGE_COMPRESSION_COMMAND'] = 
'cat'
@@ -551,11 +551,11 @@ def doebuild_environment(myebuild, mydo, myroot=None, 
settings=None,
try:
compression_binary = 
shlex_split(varexpand(compression["compress"], mydict=settings))[0]
except IndexError as e:
-   writemsg("Warning: Invalid or unsupported 
compression method: %s" % e.args[0])
+   writemsg("Warning: Invalid or unsupported 
compression method: %s\n" % e.args[0])
else:
if find_binary(compression_binary) is None:
missing_package = compression["package"]
-   writemsg("Warning: File compression 
unsupported %s. Missing package: %s" % (binpkg_compression, missing_package))
+   writemsg("Warning: File compression 
unsupported %s. Missing package: %s\n" % (binpkg_compression, missing_package))
else:
cmd = [varexpand(x, mydict=settings) 
for x in shlex_split(compression["compress"])]
# Filter empty elements



[gentoo-commits] repo/gentoo:master commit in: games-simulation/flightgear/files/, games-simulation/flightgear/

2019-08-20 Thread Maciej Mrozowski
commit: fd9240d1080f5b37dc010df68d7e504e8e1a27ea
Author: Maciej Mrozowski  gentoo  org>
AuthorDate: Tue Aug 20 23:40:24 2019 +
Commit: Maciej Mrozowski  gentoo  org>
CommitDate: Tue Aug 20 23:42:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd9240d1

games-simulation/flightgear: Fix build dependencies, bug 686904.

Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Maciej Mrozowski  gentoo.org>

 .../files/flightgear-2018.3.2-cmake.patch  | 24 ++
 .../flightgear/flightgear-2018.3.2.ebuild  |  3 +++
 games-simulation/flightgear/flightgear-.ebuild |  3 +++
 3 files changed, 30 insertions(+)

diff --git a/games-simulation/flightgear/files/flightgear-2018.3.2-cmake.patch 
b/games-simulation/flightgear/files/flightgear-2018.3.2-cmake.patch
new file mode 100644
index 000..97747e8b748
--- /dev/null
+++ b/games-simulation/flightgear/files/flightgear-2018.3.2-cmake.patch
@@ -0,0 +1,24 @@
+diff -ruN flightgear-2018.3.2/CMakeLists.txt my/CMakeLists.txt
+--- flightgear-2018.3.2/CMakeLists.txt 2019-01-29 14:17:49.0 +0100
 my/CMakeLists.txt  2019-08-18 05:29:04.762138013 +0200
+@@ -323,7 +323,7 @@
+ ## Qt5 setup setup
+ if (ENABLE_QT)
+ message(STATUS "Qt launcher enabled, checking for Qt >= 5.4 / qmake")
+-find_package(Qt5 5.4 COMPONENTS Widgets Network Qml Quick Svg)
++find_package(Qt5 5.4 COMPONENTS Widgets Network Qml Quick)
+ if (Qt5Widgets_FOUND)
+ message(STATUS "Will enable Qt launcher GUI")
+ message(STATUS "  Qt5Widgets version: ${Qt5Widgets_VERSION_STRING}")
+diff -ruN flightgear-2018.3.2/src/GUI/CMakeLists.txt my/src/GUI/CMakeLists.txt
+--- flightgear-2018.3.2/src/GUI/CMakeLists.txt 2019-01-29 14:17:50.0 
+0100
 my/src/GUI/CMakeLists.txt  2019-08-18 05:38:19.607822998 +0200
+@@ -127,7 +127,7 @@
+ ${qml_sources})
+ 
+ set_property(TARGET fglauncher PROPERTY AUTOMOC ON)
+-target_link_libraries(fglauncher Qt5::Core Qt5::Widgets Qt5::Network 
Qt5::Qml Qt5::Quick Qt5::Svg SimGearCore)
++target_link_libraries(fglauncher Qt5::Core Qt5::Widgets Qt5::Network 
Qt5::Qml Qt5::Quick SimGearCore)
+ target_include_directories(fglauncher PRIVATE 
${PROJECT_BINARY_DIR}/src/GUI)
+ 
+ add_library(fgqmlui QQuickDrawable.cxx

diff --git a/games-simulation/flightgear/flightgear-2018.3.2.ebuild 
b/games-simulation/flightgear/flightgear-2018.3.2.ebuild
index 31cb9fe151d..ddec50a3ac8 100644
--- a/games-simulation/flightgear/flightgear-2018.3.2.ebuild
+++ b/games-simulation/flightgear/flightgear-2018.3.2.ebuild
@@ -53,6 +53,7 @@ COMMON_DEPEND="
 DEPEND="${COMMON_DEPEND}
>=dev-libs/boost-1.44
>=media-libs/plib-1.8.5
+   qt5? ( >=dev-qt/linguist-tools-5.7.1:5 )
utils? (
x11-libs/libXi
x11-libs/libXmu
@@ -62,6 +63,8 @@ RDEPEND="${COMMON_DEPEND}
~games-simulation/${PN}-data-${PV}
 "
 
+PATCHES=("${FILESDIR}/${PN}-2018.3.2-cmake.patch")
+
 DOCS=(AUTHORS ChangeLog NEWS README Thanks)
 
 pkg_pretend() {

diff --git a/games-simulation/flightgear/flightgear-.ebuild 
b/games-simulation/flightgear/flightgear-.ebuild
index e485d9af2d3..0243250482c 100644
--- a/games-simulation/flightgear/flightgear-.ebuild
+++ b/games-simulation/flightgear/flightgear-.ebuild
@@ -55,6 +55,7 @@ COMMON_DEPEND="
 DEPEND="${COMMON_DEPEND}
>=dev-libs/boost-1.44
>=media-libs/plib-1.8.5
+   qt5? ( >=dev-qt/linguist-tools-5.7.1:5 )
utils? (
x11-libs/libXi
x11-libs/libXmu
@@ -64,6 +65,8 @@ RDEPEND="${COMMON_DEPEND}
~games-simulation/${PN}-data-${PV}
 "
 
+PATCHES=("${FILESDIR}/${PN}-2018.3.2-cmake.patch")
+
 DOCS=(AUTHORS ChangeLog NEWS README Thanks)
 
 pkg_pretend() {



[gentoo-commits] repo/gentoo:master commit in: media-fonts/noto-cjk/

2019-08-20 Thread Aaron Bauman
commit: a15913e735ac59e4d2629146517a2d2be638446a
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Aug 20 23:35:41 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Aug 20 23:35:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a15913e7

media-fonts/noto-cjk: arm64 stable (bug #691514)

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.72, Repoman-2.3.17
RepoMan-Options: --include-arches="arm64"

 media-fonts/noto-cjk/noto-cjk-20190416.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-fonts/noto-cjk/noto-cjk-20190416.ebuild 
b/media-fonts/noto-cjk/noto-cjk-20190416.ebuild
index 1fec977c240..dca9ad97782 100644
--- a/media-fonts/noto-cjk/noto-cjk-20190416.ebuild
+++ b/media-fonts/noto-cjk/noto-cjk-20190416.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/googlei18n/noto-cjk/archive/${COMMIT}.tar.gz -> ${P}
 
 LICENSE="OFL-1.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~mips ~ppc ~ppc64 ~sparc x86"
 IUSE=""
 
 RESTRICT="binchecks strip"



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

2019-08-20 Thread Aaron Bauman
commit: b1b6e71c77e135fec8aaf197349353df566e2223
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Aug 20 23:35:36 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Aug 20 23:35:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1b6e71c

media-fonts/noto: arm64 stable (bug #691514)

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.72, Repoman-2.3.17
RepoMan-Options: --include-arches="arm64"

 media-fonts/noto/noto-20190524.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-fonts/noto/noto-20190524.ebuild 
b/media-fonts/noto/noto-20190524.ebuild
index a47f219dcf4..b8e9f10d621 100644
--- a/media-fonts/noto/noto-20190524.ebuild
+++ b/media-fonts/noto/noto-20190524.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/googlei18n/noto-fonts/archive/${COMMIT}.tar.gz -> ${
 
 LICENSE="OFL-1.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~mips ~ppc ~ppc64 ~sparc x86"
 # Extra allows to optionally reduce disk usage even returning to tofu
 # issue as described in https://www.google.com/get/noto/
 IUSE="cjk +extra"



[gentoo-commits] repo/gentoo:master commit in: media-fonts/noto-cjk/

2019-08-20 Thread Agostino Sarubbo
commit: ab65b00dd1b99499b95d9783236fb33ae52ebd4d
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Aug 20 22:54:26 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Aug 20 22:54:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab65b00d

media-fonts/noto-cjk: x86 stable wrt bug #691514

Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-fonts/noto-cjk/noto-cjk-20190416.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-fonts/noto-cjk/noto-cjk-20190416.ebuild 
b/media-fonts/noto-cjk/noto-cjk-20190416.ebuild
index 187a32ecab2..1fec977c240 100644
--- a/media-fonts/noto-cjk/noto-cjk-20190416.ebuild
+++ b/media-fonts/noto-cjk/noto-cjk-20190416.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/googlei18n/noto-cjk/archive/${COMMIT}.tar.gz -> ${P}
 
 LICENSE="OFL-1.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~sparc x86"
 IUSE=""
 
 RESTRICT="binchecks strip"



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

2019-08-20 Thread Agostino Sarubbo
commit: c230ef335a98a9cf108bebdbda6e632bcf09e536
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Aug 20 22:54:33 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Aug 20 22:54:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c230ef33

app-misc/hello: x86 stable wrt bug #692458

Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-misc/hello/hello-2.10-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/hello/hello-2.10-r1.ebuild 
b/app-misc/hello/hello-2.10-r1.ebuild
index 9fc60af6d2e..0ebcf3ca6b4 100644
--- a/app-misc/hello/hello-2.10-r1.ebuild
+++ b/app-misc/hello/hello-2.10-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="FDL-1.3 GPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
 IUSE="nls"
 
 DOCS=(AUTHORS ChangeLog ChangeLog.O NEWS README THANKS TODO 
contrib/evolution.txt)



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

2019-08-20 Thread Agostino Sarubbo
commit: 39d91cd78bf4c957e80fb6468281faecab8fd3a2
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Aug 20 22:54:24 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Aug 20 22:54:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39d91cd7

media-fonts/noto: x86 stable wrt bug #691514

Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-fonts/noto/noto-20190524.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-fonts/noto/noto-20190524.ebuild 
b/media-fonts/noto/noto-20190524.ebuild
index 6d4c1dc7c26..a47f219dcf4 100644
--- a/media-fonts/noto/noto-20190524.ebuild
+++ b/media-fonts/noto/noto-20190524.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/googlei18n/noto-fonts/archive/${COMMIT}.tar.gz -> ${
 
 LICENSE="OFL-1.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~sparc x86"
 # Extra allows to optionally reduce disk usage even returning to tofu
 # issue as described in https://www.google.com/get/noto/
 IUSE="cjk +extra"



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

2019-08-20 Thread Agostino Sarubbo
commit: eacd208ce7f327a759fc3377306a19557e2d05bf
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Aug 20 22:54:30 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Aug 20 22:54:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eacd208c

dev-db/sqlcipher: x86 stable wrt bug #692190

Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-db/sqlcipher/sqlcipher-4.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/sqlcipher/sqlcipher-4.0.1.ebuild 
b/dev-db/sqlcipher/sqlcipher-4.0.1.ebuild
index 494f5365df5..587212f8109 100644
--- a/dev-db/sqlcipher/sqlcipher-4.0.1.ebuild
+++ b/dev-db/sqlcipher/sqlcipher-4.0.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/sqlcipher/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 IUSE="debug libedit readline libressl static-libs tcl test"
 



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

2019-08-20 Thread Agostino Sarubbo
commit: 42b8e1168540a265fabc9adcb22f72da92089d4e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Aug 20 22:54:37 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Aug 20 22:54:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42b8e116

net-wireless/hostapd: x86 stable wrt bug #692540

Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-wireless/hostapd/hostapd-2.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-wireless/hostapd/hostapd-2.9.ebuild 
b/net-wireless/hostapd/hostapd-2.9.ebuild
index 8ec2de4d82d..e52d191025d 100644
--- a/net-wireless/hostapd/hostapd-2.9.ebuild
+++ b/net-wireless/hostapd/hostapd-2.9.ebuild
@@ -21,7 +21,7 @@ else
SRC_URI+=" https://w1.fi/releases/${P}.tar.gz;
fi
# Never stabilize snapshot ebuilds please
-   KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc x86"
 fi
 
 LICENSE="BSD"



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

2019-08-20 Thread Agostino Sarubbo
commit: a55cef428c8d0060686958f40848cae9d04e7540
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Aug 20 22:38:53 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Aug 20 22:38:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a55cef42

sys-kernel/vanilla-sources: Automated version bump to 3.16.73 - remove old.

Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Agostino Sarubbo  gentoo.org>

 sys-kernel/vanilla-sources/Manifest | 2 +-
 .../{vanilla-sources-3.16.72.ebuild => vanilla-sources-3.16.73.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index f91aad4234d..f601af8eed2 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -5,7 +5,7 @@ DIST linux-4.4.tar.xz 87295988 BLAKE2B 
f260f1858994f5d481fd078c86e51bddbc958f7c5
 DIST linux-4.9.tar.xz 93192404 BLAKE2B 
83ae310b17d47f1f18d6d28537c31e10f3e60458c5954c4611158ca99e71cc0da2e051272eabf27d5887df4a7cb4a5dd66ff993077c11d2221e92d300a0b48d7
 SHA512 
bf67ff812cc3cb7e5059e82cc5db0d9a7c5637f7ed9a42e4730c715bf7047c81ed3a571225f92a33ef0b6d65f35595bc32d773356646df2627da55e9bc7f1f1a
 DIST linux-5.1.tar.xz 106244476 BLAKE2B 
ae3c63ced819737e34f8ec3a78138f87704a2f2956454411e3a4830ec8c0aaf2c288af6ca080f1892540e50f4a422482360010be8641afdeeeaf7231e7d8da97
 SHA512 
ae96f347badc95f1f3acf506c52b6cc23c0bd09ce8f4ce6705d4b4058b62593059bba1bc603c8d8b00a2f19131e7e56c31ac62b45883a346fa61d655e178f236
 DIST linux-5.2.tar.xz 107029708 BLAKE2B 
f0cf6e3a15a4bd019edbfa33cb4556d0672e807f7d139eff3ab053d0ad7649198b229475955a1f51eb90d0e9f8268cafb782f6312793fdf38472f3c6d7c2d7ee
 SHA512 
5a28f8a34c4e0470617f5638b7112e6252109b78f23b1eed484a228530970c7ef5c130d6e5a09cf25ea2f6a0329602dcc1ec66ce893182e15b27d99bd228789c
-DIST patch-3.16.72.xz 2485820 BLAKE2B 
49949cd843fb14301d32814de795e6da60a858bb34d8010d69f1ea90bc7c881d73a89ef9ac5047cbe8a9dd718941026ce6dad071cceb4f989ce8f428a02e53f0
 SHA512 
1ebbee1c2037203145450644ad74fc3a3b7d02146d4b36e0e01202405670111530d5742f6c66852cf78211999e0674a6b0b3612549b564fdd1211ef7d9acf56a
+DIST patch-3.16.73.xz 2488000 BLAKE2B 
d60b6db3e5de716031667bf367c278e06a7d3ae6cb045d9558e5b3550a4bc11c478d0daca8b08c901b09ce5d27f49fb27610cd4c0e6694f885c263c9b7ea99bc
 SHA512 
64b07867a0c22f1d122b0cd0e52b2039f7ddea3bc22390ce1b43da7b09c35eb235b6e44d4715746573861fba2df73b52227da885b761b097bcc5cc5c91506054
 DIST patch-4.14.139.xz 2812680 BLAKE2B 
7806ae5ac36ceceef31e06e55bfed23f6a41d79e74f77b4c0162d84b1e04010ede7da83a5cdd98821ed1c8ab9ca425b5e83226aaf4c0e2fea82c2e40e9bee714
 SHA512 
72fe1368f89ffa309b42876650533e314375d32d1a742ba3c7cf1f6494334206142d66f661ed13d487d7524d8c045038aa9860cee792a427e49c6a34e2590f03
 DIST patch-4.19.67.xz 1676148 BLAKE2B 
41ca1bf729c82c42b4f0b75a9f219f788d49ac7eed4650b63c4af95c721fff3809babbee6c2ffb8962cbe55f8cb66fc405c69aff5a53c4fe576d2d9214bb150a
 SHA512 
a73ea67811cdb6c7b86a249f21252e76af5926b50df7cd7a3b418b49a24afd5c66e69394cd0152dcbd8837c1271af485b794953d18595c936d4d62ac54442107
 DIST patch-4.4.189.xz 2668944 BLAKE2B 
d4d1077f1e595ca09387c46850762c16fa97b33ac8d2ffdf69f3615fa3f0872f33f2f9c37990a2f5a6d35c53e02384b6ae0d9c263b0f7a69199dd15cfc71
 SHA512 
c5bdd2d3b6a6654c5e1b23974dcfbe01b30ab6d4ae893b69c579c6a24f89b99245a0de27f4a38951bd888f6ca4bd0d98f07eba2c4b2e05727265006ec64d9640

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-3.16.72.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-3.16.73.ebuild
similarity index 100%
rename from sys-kernel/vanilla-sources/vanilla-sources-3.16.72.ebuild
rename to sys-kernel/vanilla-sources/vanilla-sources-3.16.73.ebuild



[gentoo-commits] repo/gentoo:master commit in: media-fonts/noto-cjk/

2019-08-20 Thread Agostino Sarubbo
commit: e3f29883d44d6d0d49cfc2d9f306654929eba961
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Aug 20 21:55:18 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Aug 20 21:55:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3f29883

media-fonts/noto-cjk: amd64 stable wrt bug #691514

Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-fonts/noto-cjk/noto-cjk-20190416.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-fonts/noto-cjk/noto-cjk-20190416.ebuild 
b/media-fonts/noto-cjk/noto-cjk-20190416.ebuild
index 7802ca32336..187a32ecab2 100644
--- a/media-fonts/noto-cjk/noto-cjk-20190416.ebuild
+++ b/media-fonts/noto-cjk/noto-cjk-20190416.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/googlei18n/noto-cjk/archive/${COMMIT}.tar.gz -> ${P}
 
 LICENSE="OFL-1.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE=""
 
 RESTRICT="binchecks strip"



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

2019-08-20 Thread Agostino Sarubbo
commit: 611a7edb09eba81be33ec8f97c5b94e687d45575
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Aug 20 21:55:13 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Aug 20 21:55:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=611a7edb

media-fonts/noto: amd64 stable wrt bug #691514

Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-fonts/noto/noto-20190524.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-fonts/noto/noto-20190524.ebuild 
b/media-fonts/noto/noto-20190524.ebuild
index e845a0f6746..6d4c1dc7c26 100644
--- a/media-fonts/noto/noto-20190524.ebuild
+++ b/media-fonts/noto/noto-20190524.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/googlei18n/noto-fonts/archive/${COMMIT}.tar.gz -> ${
 
 LICENSE="OFL-1.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 # Extra allows to optionally reduce disk usage even returning to tofu
 # issue as described in https://www.google.com/get/noto/
 IUSE="cjk +extra"



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

2019-08-20 Thread William Hubbs
commit: 6c4b00bfe61a267620feb76689c9715b37265427
Author: William Hubbs  sony  com>
AuthorDate: Tue Aug 20 21:29:10 2019 +
Commit: William Hubbs  gentoo  org>
CommitDate: Tue Aug 20 21:30:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c4b00bf

sys-apps/openrc: 0.42.1 bump for clang

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: William Hubbs  gentoo.org>

 sys-apps/openrc/Manifest |   1 +
 sys-apps/openrc/openrc-0.42.1.ebuild | 211 +++
 2 files changed, 212 insertions(+)

diff --git a/sys-apps/openrc/Manifest b/sys-apps/openrc/Manifest
index ada9e54501b..2f4db701205 100644
--- a/sys-apps/openrc/Manifest
+++ b/sys-apps/openrc/Manifest
@@ -1,2 +1,3 @@
 DIST openrc-0.41.2.tar.gz 245302 BLAKE2B 
ab80dc4f3a7c2c464fe64cdfa7fd31363d5a9d25e90d0239325be05561e5802f22c47013fde82650f5ce08cf99f16f5f479d8617c254647b8c40cec9609d0b6b
 SHA512 
ebfa691cae4704bb3023ea0508a712a45b8c20809828729dfa5292e96f3fd1b309813d80d7c286d0c09680bf5378aba40cfd994f27951f43a3ffb1fd0d69a58b
+DIST openrc-0.42.1.tar.gz 242848 BLAKE2B 
381f52552c13afbbcf45456fe71078bacf9182adfd67c97394093986977f5e8262d8a3c64219501745575a5210f525afe9fccee72f7625485a9f575108baa369
 SHA512 
579b9bfbb151b945a364a2c12b037d2e15991820ca99a07ac18e9bdc50074e67fbf0dcf9865aa4deabe2bf82092e4623be51c9e0b4014384951e0a92ac1e7646
 DIST openrc-0.42.tar.gz 242670 BLAKE2B 
df3c1594cb441228dd9c5f16e0758bd3a62cd51c8797ce57b6c290b0b8d80307eb5e43a4a6107da8d6911777524deac48cea48f6b96a5d4eab4e5c81fa11a835
 SHA512 
200f3f0054e766accce332bc86941367f99f0c6a0b00bf1faad877ff9ac7cfa36a90a60432361483c0d2a778bed0d811130ad692aea64b2e2d34c5b95940b68a

diff --git a/sys-apps/openrc/openrc-0.42.1.ebuild 
b/sys-apps/openrc/openrc-0.42.1.ebuild
new file mode 100644
index 000..dea79c65bd1
--- /dev/null
+++ b/sys-apps/openrc/openrc-0.42.1.ebuild
@@ -0,0 +1,211 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic pam toolchain-funcs usr-ldscript
+
+DESCRIPTION="OpenRC manages the services, startup and shutdown of a host"
+HOMEPAGE="https://github.com/openrc/openrc/;
+
+if [[ ${PV} == "" ]]; then
+   EGIT_REPO_URI="https://github.com/OpenRC/${PN}.git;
+   inherit git-r3
+else
+   SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+fi
+
+LICENSE="BSD-2"
+SLOT="0"
+IUSE="audit bash debug ncurses pam newnet prefix +netifrc selinux static-libs
+   sysv-utils unicode kernel_linux kernel_FreeBSD"
+
+COMMON_DEPEND="kernel_FreeBSD? ( || ( >=sys-freebsd/freebsd-ubin-9.0_rc 
sys-process/fuser-bsd ) )
+   ncurses? ( sys-libs/ncurses:0= )
+   pam? (
+   sys-auth/pambase
+   virtual/pam
+   )
+   audit? ( sys-process/audit )
+   kernel_linux? (
+   sys-process/psmisc
+   !=sys-libs/libselinux-2.6
+   )
+   !test
+# a value of "#" will just comment out the option
+set_config() {
+   local file="${ED}/$1" var=$2 val com
+   eval "${@:5}" && val=$3 || val=$4
+   [[ ${val} == "#" ]] && com="#" && val='\2'
+   sed -i -r -e "/^#?${var}=/{s:=([\"'])?([^ 
]*)\1?:=\1${val}\1:;s:^#?:${com}:}" "${file}"
+}
+
+set_config_yes_no() {
+   set_config "$1" "$2" YES NO "${@:3}"
+}
+
+src_install() {
+   emake ${MAKE_ARGS} DESTDIR="${D}" install
+
+   # move the shared libs back to /usr so ldscript can install
+   # more of a minimal set of files
+   # disabled for now due to #270646
+   #mv "${ED}"/$(get_libdir)/lib{einfo,rc}* "${ED}"/usr/$(get_libdir)/ || 
die
+   #gen_usr_ldscript -a einfo rc
+   gen_usr_ldscript libeinfo.so
+   gen_usr_ldscript librc.so
+
+   if ! use kernel_linux; then
+   keepdir /lib/rc/init.d
+   fi
+   keepdir /lib/rc/tmp
+
+   # Setup unicode defaults for silly unicode users
+   set_config_yes_no /etc/rc.conf unicode use unicode
+
+   # Cater to the norm
+   set_config_yes_no /etc/conf.d/keymaps windowkeys '(' use x86 '||' use 
amd64 ')'
+
+   # On HPPA, do not run consolefont by default (bug #222889)
+   if use hppa; then
+   rm -f "${ED}"/etc/runlevels/boot/consolefont
+   fi
+
+   # Support for logfile rotation
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}"/openrc.logrotate openrc
+
+   # install gentoo pam.d files
+   newpamd "${FILESDIR}"/start-stop-daemon.pam start-stop-daemon
+   newpamd "${FILESDIR}"/start-stop-daemon.pam supervise-daemon
+
+   # install documentation
+   dodoc ChangeLog *.md
+   if use newnet; then
+   dodoc README.newnet
+   fi
+}
+
+pkg_preinst() {
+   # avoid default thrashing in conf.d files when 

[gentoo-commits] repo/gentoo:master commit in: games-strategy/wesnoth/

2019-08-20 Thread Lars Wendler
commit: 8d53db0b2e75d40b4e5dee316647cd3d531051fd
Author: Lars Wendler  gentoo  org>
AuthorDate: Tue Aug 20 21:13:40 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Tue Aug 20 21:14:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d53db0b

games-strategy/wesnoth: Only keyword release versions

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

 games-strategy/wesnoth/wesnoth-1.14.7.ebuild | 5 -
 games-strategy/wesnoth/wesnoth-1.15.0.ebuild | 5 -
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/games-strategy/wesnoth/wesnoth-1.14.7.ebuild 
b/games-strategy/wesnoth/wesnoth-1.14.7.ebuild
index e0b1b37602e..e4bfda3bc80 100644
--- a/games-strategy/wesnoth/wesnoth-1.14.7.ebuild
+++ b/games-strategy/wesnoth/wesnoth-1.14.7.ebuild
@@ -11,7 +11,10 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x86-fbsd"
+# uneven minor versions are development versions
+if [[ $(( $(ver_cut 2) % 2 )) == 0 ]] ; then
+   KEYWORDS="~amd64 ~x86 ~x86-fbsd"
+fi
 IUSE="dbus dedicated doc fribidi libressl nls openmp server"
 
 RDEPEND="

diff --git a/games-strategy/wesnoth/wesnoth-1.15.0.ebuild 
b/games-strategy/wesnoth/wesnoth-1.15.0.ebuild
index 6ab67dcc94a..f45abfd28f2 100644
--- a/games-strategy/wesnoth/wesnoth-1.15.0.ebuild
+++ b/games-strategy/wesnoth/wesnoth-1.15.0.ebuild
@@ -11,7 +11,10 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-#KEYWORDS="~amd64 ~x86 ~x86-fbsd"
+# uneven minor versions are development versions
+if [[ $(( $(ver_cut 2) % 2 )) == 0 ]] ; then
+   KEYWORDS="~amd64 ~x86 ~x86-fbsd"
+fi
 IUSE="dbus dedicated doc fribidi libressl nls server"
 
 RDEPEND="



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

2019-08-20 Thread Matt Turner
commit: a86728bfc5035081bdea1cbf67ab7cb0dbcf725d
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Aug 20 20:48:25 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Aug 20 20:49:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a86728bf

media-libs/libglvnd: Prepare for a non-snapshot ebuild

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

 media-libs/libglvnd/libglvnd-.ebuild | 7 +--
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/media-libs/libglvnd/libglvnd-.ebuild 
b/media-libs/libglvnd/libglvnd-.ebuild
index f62514e3058..494820dda94 100644
--- a/media-libs/libglvnd/libglvnd-.ebuild
+++ b/media-libs/libglvnd/libglvnd-.ebuild
@@ -34,14 +34,9 @@ RDEPEND="
 DEPEND="${PYTHON_DEPS}
${RDEPEND}"
 
-src_unpack() {
-   default
-   [[ $PV = * ]] && git-r3_src_unpack
-}
-
 src_prepare() {
default
-   eautoreconf
+   [[ $PV = * ]] && eautoreconf
 }
 
 multilib_src_configure() {



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

2019-08-20 Thread Matt Turner
commit: 040a4d89f839f9fe177f5a421f7ba3b8cfd46bc0
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Aug 20 20:48:53 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Aug 20 20:49:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=040a4d89

media-libs/libglvnd: Version bump to 1.1.1

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

 media-libs/libglvnd/Manifest  |  1 +
 media-libs/libglvnd/libglvnd-1.1.1.ebuild | 51 +++
 2 files changed, 52 insertions(+)

diff --git a/media-libs/libglvnd/Manifest b/media-libs/libglvnd/Manifest
index 2125ebd2dc6..e5661b6ca69 100644
--- a/media-libs/libglvnd/Manifest
+++ b/media-libs/libglvnd/Manifest
@@ -1 +1,2 @@
 DIST libglvnd-1.1.0.20190213.tar.gz 829094 BLAKE2B 
cf977846693a5de3485e23fe8b4c8e2bc0472d994dc85530ecd85c685d71abd7aa69e815292141f60fd69a299cf39ac16dda5822128295747bfd42db3408df66
 SHA512 
772445cbb5574c1900109b3e0d8aab442b8c8d9790c4d91e1400fccdff4a53b653b59120e4fb631a45fc47af02949288924e62a22c3d877d4f741d5596736e37
+DIST libglvnd-1.1.1.tar.gz 1851222 BLAKE2B 
58a6e997b64bd22c4af0136fb37959f45df4a738bfcff205d7efb7ac08e7897a19164cb36f11d556c5a1bd3d46f0f1df3f89a36b7352b8a880c3570b2cf462cf
 SHA512 
9106ae3cd3bdce8f4def3c7e08645f76e1a65f51e184510088e79b834899061d357422376e0efd56e1bc9dc7d3150f74837f43bd3e6c4c44faa3859844ab21b7

diff --git a/media-libs/libglvnd/libglvnd-1.1.1.ebuild 
b/media-libs/libglvnd/libglvnd-1.1.1.ebuild
new file mode 100644
index 000..89d10684b84
--- /dev/null
+++ b/media-libs/libglvnd/libglvnd-1.1.1.ebuild
@@ -0,0 +1,51 @@
+# Copyright 2018-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGIT_REPO_URI="https://github.com/NVIDIA/${PN}.git;
+
+if [[ ${PV} = * ]]; then
+   GIT_ECLASS="git-r3"
+fi
+
+PYTHON_COMPAT=( python2_7 )
+inherit autotools ${GIT_ECLASS} multilib-minimal python-any-r1
+
+DESCRIPTION="The GL Vendor-Neutral Dispatch library"
+HOMEPAGE="https://github.com/NVIDIA/libglvnd;
+if [[ ${PV} = * ]]; then
+   SRC_URI=""
+else
+   KEYWORDS="~amd64"
+   
SRC_URI="https://github.com/NVIDIA/${PN}/releases/download/v${PV}/${P}.tar.gz;
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   !media-libs/mesa[-libglvnd(-)]
+   x11-libs/libX11[${MULTILIB_USEDEP}]
+   "
+DEPEND="${PYTHON_DEPS}
+   ${RDEPEND}"
+
+src_prepare() {
+   default
+   [[ $PV = * ]] && eautoreconf
+}
+
+multilib_src_configure() {
+   ECONF_SOURCE=${S} econf
+}
+
+multilib_src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}
+
+multilib_src_test() {
+   emake check
+}



[gentoo-commits] proj/musl:master commit in: x11-base/xorg-server/files/, x11-base/xorg-server/

2019-08-20 Thread Anthony G. Basile
commit: 7b09219f15e8a105248b7ac1c07d8ab239ada118
Author: stefson  yahoo  de>
AuthorDate: Tue Jul 30 04:48:14 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Aug 20 20:43:12 2019 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=7b09219f

x11-base/xorg-server: revbump to 1.20.5

Signed-off-by: Steffen Kuhn  yahoo.de>
Signed-off-by: Anthony G. Basile  gentoo.org>

 x11-base/xorg-server/Manifest | 2 +-
 x11-base/xorg-server/files/xdm.initd-11   | 2 +-
 .../{xorg-server-1.20.4.ebuild => xorg-server-1.20.5.ebuild}  | 8 
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/x11-base/xorg-server/Manifest b/x11-base/xorg-server/Manifest
index 3dd24c9..f978f86 100644
--- a/x11-base/xorg-server/Manifest
+++ b/x11-base/xorg-server/Manifest
@@ -1 +1 @@
-DIST xorg-server-1.20.4.tar.bz2 6123780 BLAKE2B 
224dda54f433315f6614cbee5bc54db91d9d9e190c06ac7f26e334b80b9d4a612ff4b2a4f10f50a6f928ecdbea40172d5578289fbf88411f006bcd473253b05d
 SHA512 
f1c92ef6d7613e0636973d3395b48dfdad42230847ab1c8b1cea84647a968f649f9aba97bdb01c10ee8351cbe954d4e6ca4a0fc84bb8fa662d49c8ba2aee00a8
+DIST xorg-server-1.20.5.tar.bz2 6126757 BLAKE2B 
2374c6f39acd80174d9cf9c15b6a75f420de3a9b7b51a41385a326fed106fc57fdc5a0a4a08beba36a8d65bff1c8c8d35bb50c73c5285ee206f3293a212369be
 SHA512 
625f0626b122cf95600abe382c3217348999357a0e2d2443092f1b67cff1c98d7ef09303884ceaeac181e0555dc56b0d4d44bda45cc464dac2d9a50c5b32d631

diff --git a/x11-base/xorg-server/files/xdm.initd-11 
b/x11-base/xorg-server/files/xdm.initd-11
index 70b81c0..ce76c56 100644
--- a/x11-base/xorg-server/files/xdm.initd-11
+++ b/x11-base/xorg-server/files/xdm.initd-11
@@ -208,7 +208,7 @@ stop() {
 
ebegin "Stopping ${myservice}"
 
-   if start-stop-daemon --quiet --test --stop --exec "${myexe}"; then
+   if start-stop-daemon --quiet --test --stop --exec "${myexe}" 
2>/dev/null; then
start-stop-daemon --stop --exec "${myexe}" --retry 
TERM/5/TERM/5 \
${mypidfile:+--pidfile} ${mypidfile} \
${myname:+--name} ${myname}

diff --git a/x11-base/xorg-server/xorg-server-1.20.4.ebuild 
b/x11-base/xorg-server/xorg-server-1.20.5.ebuild
similarity index 95%
rename from x11-base/xorg-server/xorg-server-1.20.4.ebuild
rename to x11-base/xorg-server/xorg-server-1.20.5.ebuild
index ec78441..dfc7110 100644
--- a/x11-base/xorg-server/xorg-server-1.20.4.ebuild
+++ b/x11-base/xorg-server/xorg-server-1.20.5.ebuild
@@ -91,7 +91,7 @@ CDEPEND=">=app-eselect/eselect-opengl-1.3.0
 
 DEPEND="${CDEPEND}
sys-devel/flex
-   >=x11-base/xorg-proto-2018.3
+   >=x11-base/xorg-proto-2018.4
dmx? (
doc? (
|| (
@@ -119,9 +119,9 @@ REQUIRED_USE="!minimal? (
xephyr? ( kdrive )"
 
 UPSTREAMED_PATCHES=(
-   
"${FILESDIR}"/${P}-shm-reindent-shm_tmpfile-to-follow-our-standards.patch
-   "${FILESDIR}"/${P}-shm-Pick-the-shm-dir-at-run-time-not-build-time.patch
-   "${FILESDIR}"/${P}-shm-Use-memfd_create-when-possible.patch
+   
"${FILESDIR}"/${PN}-1.20.4-shm-reindent-shm_tmpfile-to-follow-our-standards.patch
+   
"${FILESDIR}"/${PN}-1.20.4-shm-Pick-the-shm-dir-at-run-time-not-build-time.patch
+   "${FILESDIR}"/${PN}-1.20.4-shm-Use-memfd_create-when-possible.patch
 )
 
 PATCHES=(



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

2019-08-20 Thread Aaron Bauman
commit: affd9af7adc02caae43a955cdf5e7d96f510fba8
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Aug 20 20:35:32 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Aug 20 20:36:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=affd9af7

sys-apps/hwids: arm64 stable (bug #692480)

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.72, Repoman-2.3.17
RepoMan-Options: --include-arches="arm64"

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

diff --git a/sys-apps/hwids/hwids-20190316.ebuild 
b/sys-apps/hwids/hwids-20190316.ebuild
index 829ed5fb05a..9cc779c188a 100644
--- a/sys-apps/hwids/hwids-20190316.ebuild
+++ b/sys-apps/hwids/hwids-20190316.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == "" ]]; then
EGIT_REPO_URI="${HOMEPAGE}.git"
 else
SRC_URI="${HOMEPAGE}/archive/${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
 fi
 
 LICENSE="|| ( GPL-2 BSD ) public-domain"



[gentoo-commits] repo/gentoo:master commit in: games-strategy/wesnoth/

2019-08-20 Thread Lars Wendler
commit: 1a70c54d73ee6867712744592ec77651093bdf24
Author: Lars Wendler  gentoo  org>
AuthorDate: Tue Aug 20 20:25:17 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Tue Aug 20 20:25:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a70c54d

games-strategy/wesnoth: Unkeyword development version

Closes: https://bugs.gentoo.org/692620
Package-Manager: Portage-2.3.72, Repoman-2.3.17
Signed-off-by: Lars Wendler  gentoo.org>

 games-strategy/wesnoth/wesnoth-1.15.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-strategy/wesnoth/wesnoth-1.15.0.ebuild 
b/games-strategy/wesnoth/wesnoth-1.15.0.ebuild
index 4857db1f198..6ab67dcc94a 100644
--- a/games-strategy/wesnoth/wesnoth-1.15.0.ebuild
+++ b/games-strategy/wesnoth/wesnoth-1.15.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x86-fbsd"
+#KEYWORDS="~amd64 ~x86 ~x86-fbsd"
 IUSE="dbus dedicated doc fribidi libressl nls server"
 
 RDEPEND="



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

2019-08-20 Thread Aaron Bauman
commit: 26c2420d0648b602ebd4ddc36835921d2684687b
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Aug 20 20:02:34 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Aug 20 20:03:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26c2420d

dev-libs/libofx: fix SLOT

* non-maintainer bump

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

Signed-off-by: Aaron Bauman  gentoo.org>

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

diff --git a/dev-libs/libofx/libofx-0.9.14.ebuild 
b/dev-libs/libofx/libofx-0.9.14.ebuild
index dd56b4ded61..0805f53fafe 100644
--- a/dev-libs/libofx/libofx-0.9.14.ebuild
+++ b/dev-libs/libofx/libofx-0.9.14.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://github.com/libofx/libofx;
 SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-2"
-SLOT="0"
+SLOT="0/7"
 KEYWORDS="amd64 ~hppa x86"
 IUSE="static-libs test"
 



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

2019-08-20 Thread William Hubbs
commit: 197f9a2896d6a0e15eb9668348de139fe478b1e2
Author: William Hubbs  sony  com>
AuthorDate: Tue Aug 20 18:42:36 2019 +
Commit: William Hubbs  gentoo  org>
CommitDate: Tue Aug 20 18:43:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=197f9a28

sys-apps/openrc: remove several old versions

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: William Hubbs  gentoo.org>

 sys-apps/openrc/Manifest|   2 -
 sys-apps/openrc/openrc-0.34.11.ebuild   | 327 
 sys-apps/openrc/openrc-0.38.3-r1.ebuild | 326 ---
 sys-apps/openrc/openrc-0.38.3.ebuild| 326 ---
 4 files changed, 981 deletions(-)

diff --git a/sys-apps/openrc/Manifest b/sys-apps/openrc/Manifest
index c2452410c3d..ada9e54501b 100644
--- a/sys-apps/openrc/Manifest
+++ b/sys-apps/openrc/Manifest
@@ -1,4 +1,2 @@
-DIST openrc-0.34.11.tar.gz 228054 BLAKE2B 
8d4fdd7de4b3c44df0ccec728b91bd2624582dc2bbdb1fa7892aa61ce0a953a7cf66964f38da888636d895e3c6b776747a4a7fbbdbbbd26029313695f35837fe
 SHA512 
76245d31c6fe9e90e5e2f35ce918b915fc88c231674e0c99dc98b8f3fa120e794900eec9919a0ab029a081b206393246eccb9119a79c90ad6e39325d022928be
-DIST openrc-0.38.3.tar.gz 238031 BLAKE2B 
87d1546e21d581feda4064cd64bf43f762203becdcc4b002bf868f17403bd42770cb1106a8bc383c8d69e19ad66ad2bedaa7090c95206597e8a9b6e2ba481dcc
 SHA512 
6bb42ccdab5fb24b11f5042bf19850f440d3494b6bd1d7b8db31b592f051fcd26feac1c8d9ef515238c53c6f5bf98a8c367a48471c178ae829e05c56bd24cfde
 DIST openrc-0.41.2.tar.gz 245302 BLAKE2B 
ab80dc4f3a7c2c464fe64cdfa7fd31363d5a9d25e90d0239325be05561e5802f22c47013fde82650f5ce08cf99f16f5f479d8617c254647b8c40cec9609d0b6b
 SHA512 
ebfa691cae4704bb3023ea0508a712a45b8c20809828729dfa5292e96f3fd1b309813d80d7c286d0c09680bf5378aba40cfd994f27951f43a3ffb1fd0d69a58b
 DIST openrc-0.42.tar.gz 242670 BLAKE2B 
df3c1594cb441228dd9c5f16e0758bd3a62cd51c8797ce57b6c290b0b8d80307eb5e43a4a6107da8d6911777524deac48cea48f6b96a5d4eab4e5c81fa11a835
 SHA512 
200f3f0054e766accce332bc86941367f99f0c6a0b00bf1faad877ff9ac7cfa36a90a60432361483c0d2a778bed0d811130ad692aea64b2e2d34c5b95940b68a

diff --git a/sys-apps/openrc/openrc-0.34.11.ebuild 
b/sys-apps/openrc/openrc-0.34.11.ebuild
deleted file mode 100644
index 9ae507eb58b..000
--- a/sys-apps/openrc/openrc-0.34.11.ebuild
+++ /dev/null
@@ -1,327 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit flag-o-matic pam toolchain-funcs usr-ldscript
-
-DESCRIPTION="OpenRC manages the services, startup and shutdown of a host"
-HOMEPAGE="https://github.com/openrc/openrc/;
-
-if [[ ${PV} == "" ]]; then
-   EGIT_REPO_URI="https://github.com/OpenRC/${PN}.git;
-   inherit git-r3
-else
-   SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh 
sparc x86 ~amd64-fbsd ~x86-fbsd"
-fi
-
-LICENSE="BSD-2"
-SLOT="0"
-IUSE="audit debug ncurses pam newnet prefix +netifrc selinux static-libs
-   unicode kernel_linux kernel_FreeBSD"
-
-COMMON_DEPEND="kernel_FreeBSD? ( || ( >=sys-freebsd/freebsd-ubin-9.0_rc 
sys-process/fuser-bsd ) )
-   ncurses? ( sys-libs/ncurses:0= )
-   pam? (
-   sys-auth/pambase
-   virtual/pam
-   )
-   audit? ( sys-process/audit )
-   kernel_linux? (
-   sys-process/psmisc
-   !=sys-libs/libselinux-2.6
-   )
-   !test
-# a value of "#" will just comment out the option
-set_config() {
-   local file="${ED}/$1" var=$2 val com
-   eval "${@:5}" && val=$3 || val=$4
-   [[ ${val} == "#" ]] && com="#" && val='\2'
-   sed -i -r -e "/^#?${var}=/{s:=([\"'])?([^ 
]*)\1?:=\1${val}\1:;s:^#?:${com}:}" "${file}"
-}
-
-set_config_yes_no() {
-   set_config "$1" "$2" YES NO "${@:3}"
-}
-
-src_install() {
-   emake ${MAKE_ARGS} DESTDIR="${D}" install
-
-   # move the shared libs back to /usr so ldscript can install
-   # more of a minimal set of files
-   # disabled for now due to #270646
-   #mv "${ED}"/$(get_libdir)/lib{einfo,rc}* "${ED}"/usr/$(get_libdir)/ || 
die
-   #gen_usr_ldscript -a einfo rc
-   gen_usr_ldscript libeinfo.so
-   gen_usr_ldscript librc.so
-
-   if ! use kernel_linux; then
-   keepdir /$(get_libdir)/rc/init.d
-   fi
-   keepdir /$(get_libdir)/rc/tmp
-
-   # Backup our default runlevels
-   dodir /usr/share/"${PN}"
-   cp -PR "${ED}"/etc/runlevels "${ED}"/usr/share/${PN} || die
-   rm -rf "${ED}"/etc/runlevels
-
-   # Setup unicode defaults for silly unicode users
-   set_config_yes_no /etc/rc.conf unicode use unicode
-
-   # Cater to the norm
-   set_config_yes_no /etc/conf.d/keymaps windowkeys '(' use x86 '||' use 
amd64 ')'
-
-   # On HPPA, do not run 

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

2019-08-20 Thread William Hubbs
commit: 5c3005eefadcdef6243fac3b482cfbc1b3ab33c7
Author: William Hubbs  sony  com>
AuthorDate: Tue Aug 20 18:35:51 2019 +
Commit: William Hubbs  gentoo  org>
CommitDate: Tue Aug 20 18:38:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c3005ee

sys-apps/openrc: 0.42 bump

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: William Hubbs  gentoo.org>

 sys-apps/openrc/Manifest   |   1 +
 sys-apps/openrc/openrc-0.42.ebuild | 211 +
 2 files changed, 212 insertions(+)

diff --git a/sys-apps/openrc/Manifest b/sys-apps/openrc/Manifest
index 360aca845d8..c2452410c3d 100644
--- a/sys-apps/openrc/Manifest
+++ b/sys-apps/openrc/Manifest
@@ -1,3 +1,4 @@
 DIST openrc-0.34.11.tar.gz 228054 BLAKE2B 
8d4fdd7de4b3c44df0ccec728b91bd2624582dc2bbdb1fa7892aa61ce0a953a7cf66964f38da888636d895e3c6b776747a4a7fbbdbbbd26029313695f35837fe
 SHA512 
76245d31c6fe9e90e5e2f35ce918b915fc88c231674e0c99dc98b8f3fa120e794900eec9919a0ab029a081b206393246eccb9119a79c90ad6e39325d022928be
 DIST openrc-0.38.3.tar.gz 238031 BLAKE2B 
87d1546e21d581feda4064cd64bf43f762203becdcc4b002bf868f17403bd42770cb1106a8bc383c8d69e19ad66ad2bedaa7090c95206597e8a9b6e2ba481dcc
 SHA512 
6bb42ccdab5fb24b11f5042bf19850f440d3494b6bd1d7b8db31b592f051fcd26feac1c8d9ef515238c53c6f5bf98a8c367a48471c178ae829e05c56bd24cfde
 DIST openrc-0.41.2.tar.gz 245302 BLAKE2B 
ab80dc4f3a7c2c464fe64cdfa7fd31363d5a9d25e90d0239325be05561e5802f22c47013fde82650f5ce08cf99f16f5f479d8617c254647b8c40cec9609d0b6b
 SHA512 
ebfa691cae4704bb3023ea0508a712a45b8c20809828729dfa5292e96f3fd1b309813d80d7c286d0c09680bf5378aba40cfd994f27951f43a3ffb1fd0d69a58b
+DIST openrc-0.42.tar.gz 242670 BLAKE2B 
df3c1594cb441228dd9c5f16e0758bd3a62cd51c8797ce57b6c290b0b8d80307eb5e43a4a6107da8d6911777524deac48cea48f6b96a5d4eab4e5c81fa11a835
 SHA512 
200f3f0054e766accce332bc86941367f99f0c6a0b00bf1faad877ff9ac7cfa36a90a60432361483c0d2a778bed0d811130ad692aea64b2e2d34c5b95940b68a

diff --git a/sys-apps/openrc/openrc-0.42.ebuild 
b/sys-apps/openrc/openrc-0.42.ebuild
new file mode 100644
index 000..dea79c65bd1
--- /dev/null
+++ b/sys-apps/openrc/openrc-0.42.ebuild
@@ -0,0 +1,211 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic pam toolchain-funcs usr-ldscript
+
+DESCRIPTION="OpenRC manages the services, startup and shutdown of a host"
+HOMEPAGE="https://github.com/openrc/openrc/;
+
+if [[ ${PV} == "" ]]; then
+   EGIT_REPO_URI="https://github.com/OpenRC/${PN}.git;
+   inherit git-r3
+else
+   SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+fi
+
+LICENSE="BSD-2"
+SLOT="0"
+IUSE="audit bash debug ncurses pam newnet prefix +netifrc selinux static-libs
+   sysv-utils unicode kernel_linux kernel_FreeBSD"
+
+COMMON_DEPEND="kernel_FreeBSD? ( || ( >=sys-freebsd/freebsd-ubin-9.0_rc 
sys-process/fuser-bsd ) )
+   ncurses? ( sys-libs/ncurses:0= )
+   pam? (
+   sys-auth/pambase
+   virtual/pam
+   )
+   audit? ( sys-process/audit )
+   kernel_linux? (
+   sys-process/psmisc
+   !=sys-libs/libselinux-2.6
+   )
+   !test
+# a value of "#" will just comment out the option
+set_config() {
+   local file="${ED}/$1" var=$2 val com
+   eval "${@:5}" && val=$3 || val=$4
+   [[ ${val} == "#" ]] && com="#" && val='\2'
+   sed -i -r -e "/^#?${var}=/{s:=([\"'])?([^ 
]*)\1?:=\1${val}\1:;s:^#?:${com}:}" "${file}"
+}
+
+set_config_yes_no() {
+   set_config "$1" "$2" YES NO "${@:3}"
+}
+
+src_install() {
+   emake ${MAKE_ARGS} DESTDIR="${D}" install
+
+   # move the shared libs back to /usr so ldscript can install
+   # more of a minimal set of files
+   # disabled for now due to #270646
+   #mv "${ED}"/$(get_libdir)/lib{einfo,rc}* "${ED}"/usr/$(get_libdir)/ || 
die
+   #gen_usr_ldscript -a einfo rc
+   gen_usr_ldscript libeinfo.so
+   gen_usr_ldscript librc.so
+
+   if ! use kernel_linux; then
+   keepdir /lib/rc/init.d
+   fi
+   keepdir /lib/rc/tmp
+
+   # Setup unicode defaults for silly unicode users
+   set_config_yes_no /etc/rc.conf unicode use unicode
+
+   # Cater to the norm
+   set_config_yes_no /etc/conf.d/keymaps windowkeys '(' use x86 '||' use 
amd64 ')'
+
+   # On HPPA, do not run consolefont by default (bug #222889)
+   if use hppa; then
+   rm -f "${ED}"/etc/runlevels/boot/consolefont
+   fi
+
+   # Support for logfile rotation
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}"/openrc.logrotate openrc
+
+   # install gentoo pam.d files
+   newpamd "${FILESDIR}"/start-stop-daemon.pam 

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

2019-08-20 Thread Craig Andrews
commit: 1a3655e91b37a5567c6c2484d10fd8b7b842
Author: Craig Andrews  gentoo  org>
AuthorDate: Tue Aug 20 18:37:49 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Tue Aug 20 18:37:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a3655e9

dev-util/rocminfo: 2.7.0 version bump

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

 dev-util/rocminfo/Manifest |  1 +
 .../rocminfo/files/rocminfo-2.7.0-sizeof.patch | 23 ++
 dev-util/rocminfo/rocminfo-2.7.0.ebuild| 37 ++
 3 files changed, 61 insertions(+)

diff --git a/dev-util/rocminfo/Manifest b/dev-util/rocminfo/Manifest
index 28fcd10b1e6..3f79979809f 100644
--- a/dev-util/rocminfo/Manifest
+++ b/dev-util/rocminfo/Manifest
@@ -1 +1,2 @@
 DIST rocminfo-2.6.0.tar.gz 12293 BLAKE2B 
b08725b45f48e78841da9d6e57bb19a441a423e20f853d16024c620914059abf3cb2e61c12ae6fdfdb85eb3e984d488ae9975ab3fd2fcc529ecb576c6816fc92
 SHA512 
e2dae7e2e02b674b3ad959a3dffdcd8f550842edfd0eac5866259a6a12de1a5f935afbdcb37845fa189d0937c41186f0eb8be08e7b346ddef959d5dd7b62dca7
+DIST rocminfo-2.7.0.tar.gz 12671 BLAKE2B 
6cb6e2fa458224654f4b672d117e2a6c71c7d5aeed8ac71cf7ecddb76d9209f25596521b31465a94fde1c91744fc9bf68e637f7ff4f67a000cbfbe4793c5fa4b
 SHA512 
ffdaa3d11d85475c7600c6b25d8eb7f90cbda13b820f33c250a7ac9b90f92d4d5352d8baee765b4bd3b9c7389b5ab6d3b87df77bf62d6696ed8cd96bfc6be1a0

diff --git a/dev-util/rocminfo/files/rocminfo-2.7.0-sizeof.patch 
b/dev-util/rocminfo/files/rocminfo-2.7.0-sizeof.patch
new file mode 100644
index 000..2d96bb22779
--- /dev/null
+++ b/dev-util/rocminfo/files/rocminfo-2.7.0-sizeof.patch
@@ -0,0 +1,23 @@
+From cf96f42165fe76b98f653f979b4c182279dcac64 Mon Sep 17 00:00:00 2001
+From: Wilfried Holzke 
+Date: Fri, 16 Aug 2019 22:04:52 +0200
+Subject: [PATCH] Fixed sizeof(err_val) to return the number of characters in
+ the array
+
+---
+ rocminfo.cc | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/rocminfo.cc b/rocminfo.cc
+index 9fddcfb..ee20da8 100755
+--- a/rocminfo.cc
 b/rocminfo.cc
+@@ -72,7 +72,7 @@
+ char* err_str = NULL; 
\
+ if (hsa_status_string(err,
\
+ (const char**)_str) != HSA_STATUS_SUCCESS) {  
\
+-  snprintf(&(err_val[0]), sizeof(err_val[12]), "%#x", (uint32_t)err); 
\
++  snprintf(&(err_val[0]), sizeof(err_val), "%#x", (uint32_t)err); 
\
+   err_str = &(err_val[0]);
\
+ } 
\
+ printf("%shsa api call failure at: %s:%d\n",  
\

diff --git a/dev-util/rocminfo/rocminfo-2.7.0.ebuild 
b/dev-util/rocminfo/rocminfo-2.7.0.ebuild
new file mode 100644
index 000..6a46a0806b1
--- /dev/null
+++ b/dev-util/rocminfo/rocminfo-2.7.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake-utils
+
+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"
+   KEYWORDS="~amd64"
+   S="${WORKDIR}/rocminfo-roc-${PV}"
+fi
+
+DESCRIPTION="ROCm Application for Reporting System Info"
+HOMEPAGE="https://github.com/RadeonOpenCompute/rocminfo;
+LICENSE="MIT"
+SLOT="0/$(ver_cut 1-2)"
+
+RDEPEND="dev-libs/rocr-runtime"
+DEPEND="${RDEPEND}"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-2.6.0-cmake-variables.patch"
+   "${FILESDIR}/${P}-sizeof.patch"
+)
+
+src_configure() {
+   local mycmakeargs=(
+   -DROCM_DIR="${ESYSROOT}/usr"
+   -DROCR_INC_DIR="${ESYSROOT}/usr/include"
+   -DROCR_LIB_DIR="${EPREFIX}/usr/$(get_libdir)"
+   )
+   cmake-utils_src_configure
+}



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

2019-08-20 Thread Craig Andrews
commit: d7bd5c1f06f791d5d354ca75100ed64204eea8bd
Author: Craig Andrews  gentoo  org>
AuthorDate: Tue Aug 20 18:24:55 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Tue Aug 20 18:24:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7bd5c1f

dev-libs/rocr-runtime: Add nonfree flag for optional HSA image support

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

 dev-libs/rocr-runtime/metadata.xml  | 3 +++
 dev-libs/rocr-runtime/rocr-runtime-2.7.0.ebuild | 7 +--
 dev-libs/rocr-runtime/rocr-runtime-.ebuild  | 9 ++---
 3 files changed, 14 insertions(+), 5 deletions(-)

diff --git a/dev-libs/rocr-runtime/metadata.xml 
b/dev-libs/rocr-runtime/metadata.xml
index d53b83185ad..53844ebc13e 100644
--- a/dev-libs/rocr-runtime/metadata.xml
+++ b/dev-libs/rocr-runtime/metadata.xml
@@ -15,4 +15,7 @@
 
 Radeon Open Compute Platform Runtime
 
+
+  Enables HSA image support using 
dev-libs/hsa-ext-rocr
+
 

diff --git a/dev-libs/rocr-runtime/rocr-runtime-2.7.0.ebuild 
b/dev-libs/rocr-runtime/rocr-runtime-2.7.0.ebuild
index b2fdce8bee3..507d471dc10 100644
--- a/dev-libs/rocr-runtime/rocr-runtime-2.7.0.ebuild
+++ b/dev-libs/rocr-runtime/rocr-runtime-2.7.0.ebuild
@@ -23,9 +23,12 @@ PATCHES=(
 
 LICENSE="MIT"
 SLOT="0/$(ver_cut 1-2)"
+IUSE="nonfree"
 
-RDEPEND="sys-process/numactl"
-DEPEND="${RDEPEND}
+COMMON_DEPEND="sys-process/numactl"
+RDEPEND="${COMMON_DEPEND}
+   nonfree? ( dev-libs/hsa-ext-rocr )"
+DEPEND="${COMMON_DEPEND}
>=dev-libs/roct-thunk-interface-${PV}"
 
 src_prepare() {

diff --git a/dev-libs/rocr-runtime/rocr-runtime-.ebuild 
b/dev-libs/rocr-runtime/rocr-runtime-.ebuild
index a31193337a6..6a89ca2901e 100644
--- a/dev-libs/rocr-runtime/rocr-runtime-.ebuild
+++ b/dev-libs/rocr-runtime/rocr-runtime-.ebuild
@@ -20,10 +20,13 @@ HOMEPAGE="https://github.com/RadeonOpenCompute/ROCR-Runtime;
 
 LICENSE="MIT"
 SLOT="0/$(ver_cut 1-2)"
+IUSE="nonfree"
 
-RDEPEND="sys-process/numactl"
-DEPEND="${RDEPEND}
-   dev-libs/roct-thunk-interface"
+COMMON_DEPEND="sys-process/numactl"
+RDEPEND="${COMMON_DEPEND}
+   nonfree? ( dev-libs/hsa-ext-rocr )"
+DEPEND="${COMMON_DEPEND}
+   >=dev-libs/roct-thunk-interface-${PV}"
 
 src_prepare() {
sed -e "s:get_version ( \"1.0.0\" ):get_version ( \"${PV}\" ):" -i 
CMakeLists.txt || die



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

2019-08-20 Thread Matt Turner
commit: a772c2b6b58bdfe38590c4b8177e865bb20ab27b
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Aug 19 22:14:02 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Aug 20 17:47:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a772c2b6

x11-libs/libdrm: Drop old versions

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

 x11-libs/libdrm/Manifest |  2 -
 x11-libs/libdrm/libdrm-2.4.96.ebuild | 76 
 x11-libs/libdrm/libdrm-2.4.98.ebuild | 76 
 3 files changed, 154 deletions(-)

diff --git a/x11-libs/libdrm/Manifest b/x11-libs/libdrm/Manifest
index dc4da25343a..6702054cc3c 100644
--- a/x11-libs/libdrm/Manifest
+++ b/x11-libs/libdrm/Manifest
@@ -1,4 +1,2 @@
-DIST libdrm-2.4.96.tar.bz2 829518 BLAKE2B 
d9a21ce31af65812c1b23968ef6c1901aea106b4cc68d76d3641a17b98423024b804bfda509862174eba98271bd7156c7f08d81bc0a520ea4a25c8e2e0bfd598
 SHA512 
008cb7658d953b44e11fa3cc6e00dfeb3efb59c7fdadd59f7066101aff138acbbc2f2508e9ebe0528340e39dc7693937755d1641816ddde135c10a13e7d81e3b
 DIST libdrm-2.4.97.tar.bz2 837329 BLAKE2B 
b47393d81917a0b43c22f7798ff2e1c21a05fc716a63092dbe0e49cda0fe3bd899d5cc4d703ae49f781e283f5067c62cd37a4931362427e21c3356584cb5e810
 SHA512 
3e08ee9d6c9ce265d783a59b51e22449905ea73aa27f25a082a1e9e1532f7c99e1c9f7cb966eb0970be2a08e2e5993dc9aa55093b1bff548689fdb465e7145ed
-DIST libdrm-2.4.98.tar.bz2 833295 BLAKE2B 
abcb51046d95dd0620d8ae705a731c4a0b9db817cc897c6bf2063c3c25c13f45019b5c016248fe93269b77252de96724c3215eaf5be990b925a38034bfe4a4e4
 SHA512 
3d333d060ceb14fa8e204ef468ca2c95d6f07205185ca90a044b685832b9b2d7256faa5e81d5871ce8b70aa1fdf9fb1ade18b4e582ff0c7ef5551da8506eb27b
 DIST libdrm-2.4.99.tar.bz2 853659 BLAKE2B 
66fb3f757ab468b6f6285ae740f67d6c38473f3866b57c6a1e24b322bdd46f2d21132b5ea7a737f1d3fa8dcf55162d4c904f181f17227c239b3322c0af50181c
 SHA512 
04702eebe8dca97fac61653623804fdcb0b8b3714bdc6f5e72f0dfdce9c9524cf16f69d37aa9feac79ddc1c11939be44a216484563a612414668ea5eaeadf191

diff --git a/x11-libs/libdrm/libdrm-2.4.96.ebuild 
b/x11-libs/libdrm/libdrm-2.4.96.ebuild
deleted file mode 100644
index 76499a8ff61..000
--- a/x11-libs/libdrm/libdrm-2.4.96.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-EGIT_REPO_URI="https://gitlab.freedesktop.org/mesa/drm.git;
-
-if [[ ${PV} = * ]]; then
-   GIT_ECLASS="git-r3"
-fi
-
-inherit ${GIT_ECLASS} meson multilib-minimal
-
-DESCRIPTION="X.Org libdrm library"
-HOMEPAGE="https://dri.freedesktop.org/ https://gitlab.freedesktop.org/mesa/drm;
-if [[ ${PV} = * ]]; then
-   SRC_URI=""
-else
-   SRC_URI="https://dri.freedesktop.org/libdrm/${P}.tar.bz2;
-   KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
-fi
-
-VIDEO_CARDS="amdgpu exynos freedreno intel nouveau omap radeon tegra vc4 
vivante vmware"
-for card in ${VIDEO_CARDS}; do
-   IUSE_VIDEO_CARDS+=" video_cards_${card}"
-done
-
-IUSE="${IUSE_VIDEO_CARDS} libkms valgrind"
-RESTRICT="test" # see bug #236845
-LICENSE="MIT"
-SLOT="0"
-
-RDEPEND="elibc_FreeBSD? ( 
>=dev-libs/libpthread-stubs-0.4:=[${MULTILIB_USEDEP}] )
-   video_cards_intel? ( 
>=x11-libs/libpciaccess-0.13.1-r1:=[${MULTILIB_USEDEP}] )"
-DEPEND="${RDEPEND}
-   valgrind? ( dev-util/valgrind )"
-
-src_unpack() {
-   default
-   [[ $PV = * ]] && git-r3_src_unpack
-}
-
-multilib_src_configure() {
-   local emesonargs=(
-   # Udev is only used by tests now.
-   -Dudev=false
-   -Dcairo-tests=false
-   -Damdgpu=$(usex video_cards_amdgpu true false)
-   -Dexynos=$(usex video_cards_exynos true false)
-   -Dfreedreno=$(usex video_cards_freedreno true false)
-   -Dintel=$(usex video_cards_intel true false)
-   -Dnouveau=$(usex video_cards_nouveau true false)
-   -Domap=$(usex video_cards_omap true false)
-   -Dradeon=$(usex video_cards_radeon true false)
-   -Dtegra=$(usex video_cards_tegra true false)
-   -Dvc4=$(usex video_cards_vc4 true false)
-   -Detnaviv=$(usex video_cards_vivante true false)
-   -Dvmwgfx=$(usex video_cards_vmware true false)
-   -Dlibkms=$(usex libkms true false)
-   # valgrind installs its .pc file to the pkgconfig for the 
primary arch
-   -Dvalgrind=$(usex valgrind auto false)
-   )
-   meson_src_configure
-}
-
-multilib_src_compile() {
-   meson_src_compile
-}
-
-multilib_src_test() {
-   meson_src_test
-}
-
-multilib_src_install() {
-   meson_src_install
-}

diff --git a/x11-libs/libdrm/libdrm-2.4.98.ebuild 
b/x11-libs/libdrm/libdrm-2.4.98.ebuild
deleted file mode 100644
index 29daf988738..000
--- a/x11-libs/libdrm/libdrm-2.4.98.ebuild
+++ /dev/null
@@ 

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

2019-08-20 Thread William Hubbs
commit: b5114538f84874c769f9f7693c087bdbd56ad300
Author: William Hubbs  sony  com>
AuthorDate: Tue Aug 20 16:43:42 2019 +
Commit: William Hubbs  gentoo  org>
CommitDate: Tue Aug 20 17:11:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5114538

dev-lang/go: 1.12.9 bump

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: William Hubbs  gentoo.org>

 dev-lang/go/Manifest |   1 +
 dev-lang/go/go-1.12.9.ebuild | 246 +++
 2 files changed, 247 insertions(+)

diff --git a/dev-lang/go/Manifest b/dev-lang/go/Manifest
index b241e6240f5..1b9ec08f9ba 100644
--- a/dev-lang/go/Manifest
+++ b/dev-lang/go/Manifest
@@ -16,3 +16,4 @@ DIST go1.12.5.src.tar.gz 21971348 BLAKE2B 
7de8db4a6c4cd9e1883fbf28357fe99ad9f43f
 DIST go1.12.6.src.tar.gz 21975398 BLAKE2B 
05c183baf2e6544b039cff33abb7c5d66a50a0a7cadaa16032a3dc3793bfa27e82c4598dbb700bf7f90ba2ce2639bb60484e61e50fc154d8184d4874954b81e4
 SHA512 
431a0b916ce2e64d816808a04bc3bf028e955538ab55c571021c08e599781ae344487a55e119bb3aae3d32f84cd83e2c176dc72d336b95da0352edffeab07a48
 DIST go1.12.7.src.tar.gz 21976647 BLAKE2B 
bf0c723f1e02048d91844c7b8908500c83442a8ab7ceeaacdb37d7204f72d80331eab44de54f99411479be8e645b2626fb8a34df0cedbd75fa57c4e1d84d493a
 SHA512 
f84c6b89dea9df21f0efa07564eb80baeee5bc2d68cced5fd645ebb32e9317e60b657afe011c81e7739d8a93e4b4dafa0b4f78431a009d36e05de55f89ed0fd6
 DIST go1.12.8.src.tar.gz 21978756 BLAKE2B 
65258c101d729bbd82f69ba4286ba8e64f9d3128be97243374d442dfcc4033f1238bb57530a34dc0142f55cc8f2692efab65452286c4769f24e8aa3a4a80abd1
 SHA512 
193a9b08752aa2479c19f5b56fdfe2296c7e6097e0c583290f0fce754ac7571e2ff345f66b69774d8e22f2caa147a3dc15658148017b09e5e7f49fd4569373d4
+DIST go1.12.9.src.tar.gz 21979950 BLAKE2B 
dca7e3afcabd513c4b8193e93c0a1ed1a2326dccfce9b909d97b3731fffbe7e26712ab164645e06a316baa949b1e0b14a2fea8d23e6f90fd5b72afa0d15b432b
 SHA512 
57041e7fb767f528aa9fc2592d205d3a7c120c73f92dc8d91f17f816e12aa6152c8421b333081800a5f50b1bb656f203a25faf8ed92c69a6ec164ce0a5619c13

diff --git a/dev-lang/go/go-1.12.9.ebuild b/dev-lang/go/go-1.12.9.ebuild
new file mode 100644
index 000..a6151a8c829
--- /dev/null
+++ b/dev-lang/go/go-1.12.9.ebuild
@@ -0,0 +1,246 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+export CBUILD=${CBUILD:-${CHOST}}
+export CTARGET=${CTARGET:-${CHOST}}
+
+MY_PV=${PV/_/}
+
+inherit toolchain-funcs
+
+BOOTSTRAP_VERSION="bootstrap-1.8"
+BOOTSTRAP_DIST="https://dev.gentoo.org/~williamh/dist;
+BOOTSTRAP_URI="
+   ${BOOTSTRAP_DIST}/go-linux-amd64-${BOOTSTRAP_VERSION}.tbz
+   ${BOOTSTRAP_DIST}/go-linux-arm-${BOOTSTRAP_VERSION}.tbz
+   ${BOOTSTRAP_DIST}/go-linux-arm64-${BOOTSTRAP_VERSION}.tbz
+   ${BOOTSTRAP_DIST}/go-linux-ppc64-${BOOTSTRAP_VERSION}.tbz
+   ${BOOTSTRAP_DIST}/go-linux-ppc64le-${BOOTSTRAP_VERSION}.tbz
+   ${BOOTSTRAP_DIST}/go-linux-s390x-${BOOTSTRAP_VERSION}.tbz
+   ${BOOTSTRAP_DIST}/go-linux-386-${BOOTSTRAP_VERSION}.tbz
+   ${BOOTSTRAP_DIST}/go-freebsd-amd64-${BOOTSTRAP_VERSION}.tbz
+   ${BOOTSTRAP_DIST}/go-freebsd-386-${BOOTSTRAP_VERSION}.tbz
+   ${BOOTSTRAP_DIST}/go-darwin-amd64-${BOOTSTRAP_VERSION}.tbz
+   ${BOOTSTRAP_DIST}/go-solaris-amd64-${BOOTSTRAP_VERSION}.tbz
+"
+
+case ${PV}  in
+**)
+   EGIT_REPO_URI="https://github.com/golang/go.git;
+   inherit git-r3
+   ;;
+*)
+   SRC_URI="https://storage.googleapis.com/golang/go${MY_PV}.src.tar.gz "
+   S="${WORKDIR}"/go
+   case ${PV} in
+   *_beta*|*_rc*) ;;
+   *)
+   KEYWORDS="-* ~amd64 ~arm ~arm64 ~ppc64 ~s390 ~x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris"
+   # The upstream tests fail under portage but pass if the build is
+   # run according to their documentation [1].
+   # I am restricting the tests on released versions until this is
+   # solved.
+   # [1] https://golang.org/issues/18442
+   RESTRICT="test"
+   ;;
+   esac
+esac
+
+# If gccgo or a previously installed version of dev-lang/go is not being
+# used to build Go, there is no way to know the architecture or operating 
system
+# of the build machine, so we need to download all of our bootstrap
+# archives to allow this ebuild to work under crossdev.
+#
+# https://bugs.gentoo.org/671394
+SRC_URI+="!gccgo? ( !system-bootstrap? ( ${BOOTSTRAP_URI} ) )"
+
+DESCRIPTION="A concurrent garbage collected and typesafe programming language"
+HOMEPAGE="https://golang.org;
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+IUSE="gccgo system-bootstrap"
+
+BDEPEND="gccgo? ( >=sys-devel/gcc-5[go] )"
+RDEPEND="!https://golang.org/issue/2775
+   #
+   # deliberately use cp to retain permissions
+   cp -R api bin doc lib pkg misc src test "${ED}"/usr/lib/go
+   if go_cross_compile; then
+   

[gentoo-commits] repo/gentoo:master commit in: dev-libs/hsa-ext-rocr/

2019-08-20 Thread Marek Szuba
commit: 02b7fd5c0c4a9334e942f6b05ac71bcf72a3b6df
Author: Marek Szuba  gentoo  org>
AuthorDate: Tue Aug 20 15:05:57 2019 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Tue Aug 20 15:14:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02b7fd5c

dev-libs/hsa-ext-rocr: new package

Required for the time being by dev-libs/rocm-opencl-runtime in order to
enable OpenCL image support. The relevant code will eventually be
open-sourced but so far upstream hasn't provided any timeline for it.

There is no licence file in the upstream package, that said the
libraries it contains used to be distributed as part of the AMDGPU-Pro
stack so it is a safe bet that the standalone package is covered by the
same EULA as for dev-libs/amdgpu-pro-opencl.

Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Marek Szuba  gentoo.org>

 dev-libs/hsa-ext-rocr/Manifest |  1 +
 dev-libs/hsa-ext-rocr/hsa-ext-rocr-1.1.9.99.ebuild | 53 ++
 dev-libs/hsa-ext-rocr/metadata.xml | 22 +
 3 files changed, 76 insertions(+)

diff --git a/dev-libs/hsa-ext-rocr/Manifest b/dev-libs/hsa-ext-rocr/Manifest
new file mode 100644
index 000..a8f257eb375
--- /dev/null
+++ b/dev-libs/hsa-ext-rocr/Manifest
@@ -0,0 +1 @@
+DIST hsa-ext-rocr-dev_1.1.9-99-g835b876_amd64.deb 1113746 BLAKE2B 
ff1d3418febdde505e12a3a41b39a15d6ed28e97f62700ffa4b7bfbc618b23253026e3978e1293cfa2c06742c78574510e08969e1e1524b82b94a45d98efd2af
 SHA512 
e7c799e218eaee6f926fe309b470af00e0ef7e4974a3dd67231c1c904a0a036e62b1ce3b176bb0c13c0fa65a718443f06e7472e3e66225d818074620e46350b1

diff --git a/dev-libs/hsa-ext-rocr/hsa-ext-rocr-1.1.9.99.ebuild 
b/dev-libs/hsa-ext-rocr/hsa-ext-rocr-1.1.9.99.ebuild
new file mode 100644
index 000..7d91362d6a0
--- /dev/null
+++ b/dev-libs/hsa-ext-rocr/hsa-ext-rocr-1.1.9.99.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit unpacker
+
+MY_PV=$(ver_rs 3 '-')
+
+DESCRIPTION="Proprietary image-support library for Radeon Open Compute"
+HOMEPAGE="https://github.com/RadeonOpenCompute/ROCm#closed-source-components;
+SRC_URI="http://repo.radeon.com/rocm/apt/debian/pool/main/h/${PN}-dev/${PN}-dev_${MY_PV}-g835b876_amd64.deb;
+
+LICENSE="AMD-GPU-PRO-EULA"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="-deprecated"
+
+RESTRICT="mirror fetch strip"
+
+QA_PREBUILT="/opt/${PN}/lib*/*"
+
+S="${WORKDIR}"
+
+pkg_nofetch() {
+   einfo "Please download the package"
+   einfo
+   einfo "${SRC_URI}"
+   einfo
+   einfo "and place into your distfiles directory."
+}
+
+src_unpack() {
+   unpack_deb ${A}
+}
+
+src_install() {
+   local destdir="/opt/${PN}"
+   local soversion=$(ver_cut 1-3)
+   local somajor=$(ver_cut 1)
+
+   local solibs_to_install=( "libhsa-ext-image64.so" )
+   if use deprecated; then
+   solibs_to_install+=( "libhsa-runtime-tools64.so" )
+   fi
+
+   into "${destdir}"
+   for solib in ${solibs_to_install[@]}; do
+   dolib.so "opt/rocm/hsa/lib/${solib}.${soversion}"
+   dosym 
"${EPREFIX}${destdir}/$(get_libdir)/${solib}.${soversion}" 
"${EPREFIX}usr/$(get_libdir)/${solib}.${soversion}"
+   dosym "${solib}.${soversion}" 
"${EPREFIX}usr/$(get_libdir)/${solib}.${somajor}"
+   done
+}

diff --git a/dev-libs/hsa-ext-rocr/metadata.xml 
b/dev-libs/hsa-ext-rocr/metadata.xml
new file mode 100644
index 000..d61b59ba30a
--- /dev/null
+++ b/dev-libs/hsa-ext-rocr/metadata.xml
@@ -0,0 +1,22 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   mare...@gentoo.org
+   Marek Szuba
+   
+   
+   candr...@gentoo.org
+   Craig Andrews
+   
+   
+   For the time being the ROCm platform relies on a closed-source 
library
+   to provide HSA image support. In the future it will either be 
deprecated
+   or become open source.
+   Furthermore, this package optionally provides the "tools"
+   debug/trace/profiling library which has already been deprecated.
+   
+   
+   Install the deprecated 
debug/trace/profiling library
+   
+



[gentoo-commits] repo/gentoo:master commit in: dev-libs/amdgpu-pro-opencl/

2019-08-20 Thread Marek Szuba
commit: 648332c06aec7cca67d9243242510c8a6e968319
Author: Marek Szuba  gentoo  org>
AuthorDate: Tue Aug 20 15:07:17 2019 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Tue Aug 20 15:14:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=648332c0

dev-libs/amdgpu-pro-opencl: remove old 19.x ebuilds

Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Marek Szuba  gentoo.org>

 dev-libs/amdgpu-pro-opencl/Manifest|  1 -
 .../amdgpu-pro-opencl-19.10.785425-r1.ebuild   | 97 --
 .../amdgpu-pro-opencl-19.10.785425.ebuild  | 96 -
 3 files changed, 194 deletions(-)

diff --git a/dev-libs/amdgpu-pro-opencl/Manifest 
b/dev-libs/amdgpu-pro-opencl/Manifest
index 4425b687e69..f7a861f101c 100644
--- a/dev-libs/amdgpu-pro-opencl/Manifest
+++ b/dev-libs/amdgpu-pro-opencl/Manifest
@@ -1,3 +1,2 @@
 DIST amdgpu-pro-18.20-684755-ubuntu-16.04.tar.xz 229474380 BLAKE2B 
f589aad71f093b74e37de40ac7c45ebbbeff93609b2fff1baaba711347a4641ef17acdcbe69d371372510a48bd48262cf6269c1f4d05e264023d52a425a423f2
 SHA512 
240e701acfde4ebe665cf69c8bd3710d036f450822aeb7ee2a21caab289af44167afda1d3b8d0dbe2c46c4e63d9b6fb5e96778311f342c26f334dc7beb4a2d5b
-DIST amdgpu-pro-19.10-785425-ubuntu-18.04.tar.xz 243520380 BLAKE2B 
8c775feaff685b18b6df2f6f17667dbadb3da89f58c823f5470113342b585ecb436fbacef6ba26b35fe05bac53530cfe334d79d933afee303651e1375654da85
 SHA512 
d9c214134bf220c2ab4a306f5d83ce5718adc1f3e93165c724e70b99b4b5bcd8e703299ed70fe79f1d2db5f4f69cae2e1036b5a6238696346710c88f7fa6b3c6
 DIST amdgpu-pro-19.30-838629-ubuntu-18.04.tar.xz 301833044 BLAKE2B 
ffdd49be431906c5ba20e9b285b44e368b40a70678177412d2329489c987567612f5262b64a9a1aef137cef603f77f768127d674c13488e13dddbc8732cf729c
 SHA512 
7e8091dd37ae176d1ff131e5e2b13961f5a33fc7243052dce074dffb1468476f267d50a920182358188e44f4a93d0cbf39c5d430d56a9a2e09a67409e3478904

diff --git 
a/dev-libs/amdgpu-pro-opencl/amdgpu-pro-opencl-19.10.785425-r1.ebuild 
b/dev-libs/amdgpu-pro-opencl/amdgpu-pro-opencl-19.10.785425-r1.ebuild
deleted file mode 100644
index 17472bd93ad..000
--- a/dev-libs/amdgpu-pro-opencl/amdgpu-pro-opencl-19.10.785425-r1.ebuild
+++ /dev/null
@@ -1,97 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MULTILIB_COMPAT=( abi_x86_{32,64} )
-
-inherit unpacker multilib-minimal
-
-SUPER_PN='amdgpu-pro'
-MY_PV=$(ver_rs 2 '-')
-
-DESCRIPTION="Proprietary OpenCL implementation for AMD GPUs"
-HOMEPAGE="https://www.amd.com/en/support/kb/release-notes/rn-rad-lin-19-10-unified;
-SRC_URI="${SUPER_PN}-${MY_PV}-ubuntu-18.04.tar.xz"
-
-LICENSE="AMD-GPU-PRO-EULA"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RESTRICT="mirror fetch strip"
-
-BDEPEND="dev-util/patchelf"
-COMMON="app-eselect/eselect-opencl
-   dev-libs/ocl-icd"
-DEPEND="${COMMON}"
-RDEPEND="${COMMON}
-   !media-libs/mesa[opencl]" # Bug #686790
-
-QA_PREBUILT="/opt/amdgpu/lib*/*"
-
-S="${WORKDIR}/${SUPER_PN}-${MY_PV}-ubuntu-18.04"
-
-pkg_nofetch() {
-   local pkgver=$(ver_cut 1-2)
-   einfo "Please download Radeon Software for Linux version ${pkgver} for 
Ubuntu 18.04 from"
-   einfo "${HOMEPAGE}"
-   einfo "The archive should then be placed into your distfiles directory."
-}
-
-src_unpack() {
-   default
-
-   local ids_ver="1.0.0"
-   local patchlevel=$(ver_cut 3)
-   cd "${S}" || die
-   unpack_deb "${S}/libdrm-amdgpu-common_${ids_ver}-${patchlevel}_all.deb"
-   multilib_parallel_foreach_abi multilib_src_unpack
-}
-
-multilib_src_unpack() {
-   local libdrm_ver="2.4.97"
-   local patchlevel=$(ver_cut 3)
-   local deb_abi
-   [[ ${ABI} == x86 ]] && deb_abi=i386
-
-   mkdir -p "${BUILD_DIR}" || die
-   pushd "${BUILD_DIR}" >/dev/null || die
-   unpack_deb 
"${S}/opencl-orca-amdgpu-pro-icd_${MY_PV}_${deb_abi:-${ABI}}.deb"
-   unpack_deb 
"${S}/libdrm-amdgpu-amdgpu1_${libdrm_ver}-${patchlevel}_${deb_abi:-${ABI}}.deb"
-   popd >/dev/null || die
-}
-
-multilib_src_install() {
-   local dir_abi short_abi
-   [[ ${ABI} == x86 ]] && dir_abi=i386-linux-gnu && short_abi=32
-   [[ ${ABI} == amd64 ]] && dir_abi=x86_64-linux-gnu && short_abi=64
-
-   into "/opt/amdgpu"
-   patchelf --set-rpath '$ORIGIN' 
"opt/${SUPER_PN}/lib/${dir_abi}"/libamdocl-orca${short_abi}.so || die "Failed 
to fix library rpath"
-   dolib.so "opt/${SUPER_PN}/lib/${dir_abi}"/*
-   dolib.so "opt/amdgpu/lib/${dir_abi}"/*
-
-   insinto /etc/OpenCL/vendors
-   echo "/opt/amdgpu/$(get_libdir)/libamdocl-orca${short_abi}.so" \
-   > "${T}/${SUPER_PN}-${ABI}.icd" || die "Failed to generate ICD 
file for ABI ${ABI}"
-   doins "${T}/${SUPER_PN}-${ABI}.icd"
-}
-
-multilib_src_install_all() {
-   insinto "/opt/amdgpu"
-   doins -r opt/amdgpu/share
-}
-
-pkg_postinst() {
-   if [[ -z "${REPLACING_VERSIONS}" ]]; then
-   ewarn "Please note that 

[gentoo-commits] repo/gentoo:master commit in: dev-libs/amdgpu-pro-opencl/

2019-08-20 Thread Marek Szuba
commit: 7af582c10f087c33dfb021fcd42cb9b37dde4c10
Author: Marek Szuba  gentoo  org>
AuthorDate: Tue Aug 20 15:14:19 2019 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Tue Aug 20 15:14:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7af582c1

dev-libs/amdgpu-pro-opencl: add deprecation/compatibility message

Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Marek Szuba  gentoo.org>

 dev-libs/amdgpu-pro-opencl/amdgpu-pro-opencl-18.20.684755.ebuild | 5 +
 dev-libs/amdgpu-pro-opencl/amdgpu-pro-opencl-19.30.838629.ebuild | 5 +
 2 files changed, 10 insertions(+)

diff --git a/dev-libs/amdgpu-pro-opencl/amdgpu-pro-opencl-18.20.684755.ebuild 
b/dev-libs/amdgpu-pro-opencl/amdgpu-pro-opencl-18.20.684755.ebuild
index ffc46c93b61..eb1c7e963ec 100644
--- a/dev-libs/amdgpu-pro-opencl/amdgpu-pro-opencl-18.20.684755.ebuild
+++ b/dev-libs/amdgpu-pro-opencl/amdgpu-pro-opencl-18.20.684755.ebuild
@@ -75,5 +75,10 @@ pkg_postinst() {
ewarn "has become officially supported by Gentoo."
fi
 
+   elog ""
+   elog "This package is now DEPRECATED on amd64 in favour of 
dev-libs/rocm-opencl-runtime."
+   elog "Moreover, it only provides legacy AMDGPU-Pro OpenCL libraries 
which are not compatible with Vega 10 and newer GPUs."
+   elog ""
+
"${ROOT}"/usr/bin/eselect opencl set --use-old ocl-icd
 }

diff --git a/dev-libs/amdgpu-pro-opencl/amdgpu-pro-opencl-19.30.838629.ebuild 
b/dev-libs/amdgpu-pro-opencl/amdgpu-pro-opencl-19.30.838629.ebuild
index a7fc2f7c5bb..218485840c5 100644
--- a/dev-libs/amdgpu-pro-opencl/amdgpu-pro-opencl-19.30.838629.ebuild
+++ b/dev-libs/amdgpu-pro-opencl/amdgpu-pro-opencl-19.30.838629.ebuild
@@ -93,5 +93,10 @@ pkg_postinst() {
ewarn "has become officially supported by Gentoo."
fi
 
+   elog ""
+   elog "This package is now DEPRECATED on amd64 in favour of 
dev-libs/rocm-opencl-runtime."
+   elog "Moreover, it only provides legacy AMDGPU-Pro OpenCL libraries 
which are not compatible with Vega 10 and newer GPUs."
+   elog ""
+
"${ROOT}"/usr/bin/eselect opencl set --use-old ocl-icd
 }



[gentoo-commits] proj/sci:master commit in: sci-biology/abyss/

2019-08-20 Thread Martin Mokrejs
commit: 982e84f44b14e71d4bae96aab4d246a3f0ec0f6f
Author: Martin Mokrejs  fold  natur  cuni  cz>
AuthorDate: Tue Aug 20 13:22:28 2019 +
Commit: Martin Mokrejs  fold  natur  cuni  cz>
CommitDate: Tue Aug 20 13:22:28 2019 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=982e84f4

sci-biology/abyss: version bump

Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: Martin Mokrejs  fold.natur.cuni.cz>

 sci-biology/abyss/{abyss-2.2.1.ebuild => abyss-2.2.2.ebuild} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/sci-biology/abyss/abyss-2.2.1.ebuild 
b/sci-biology/abyss/abyss-2.2.2.ebuild
similarity index 100%
rename from sci-biology/abyss/abyss-2.2.1.ebuild
rename to sci-biology/abyss/abyss-2.2.2.ebuild



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

2019-08-20 Thread Joonas Niilola
commit: 276d256dc07adc0bc09f40fad68ac46a75d62ac8
Author: Conrad Kostecki  kostecki  com>
AuthorDate: Mon Aug 19 18:18:36 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Tue Aug 20 12:56:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=276d256d

net-misc/ntpclient: fix compilation with >=linux-headers-5.2

Closes: https://bugs.gentoo.org/692544
Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: Conrad Kostecki  kostecki.com>
Closes: https://github.com/gentoo/gentoo/pull/12748
Signed-off-by: Joonas Niilola  gentoo.org>

 .../ntpclient-2018.244-linux-headers-5.2.patch | 10 +++
 net-misc/ntpclient/ntpclient-2018.244-r1.ebuild| 35 ++
 2 files changed, 45 insertions(+)

diff --git 
a/net-misc/ntpclient/files/ntpclient-2018.244-linux-headers-5.2.patch 
b/net-misc/ntpclient/files/ntpclient-2018.244-linux-headers-5.2.patch
new file mode 100644
index 000..df87cb6ceb2
--- /dev/null
+++ b/net-misc/ntpclient/files/ntpclient-2018.244-linux-headers-5.2.patch
@@ -0,0 +1,10 @@
+--- a/src/ntpclient.c  2018-08-27 20:38:12.0 +0200
 b/src/ntpclient.c  2019-08-19 20:11:59.0 +0200
+@@ -40,6 +40,7 @@
+ #include 
+ #include 
+ #ifdef PRECISION_SIOCGSTAMP
++#include 
+ #include 
+ #endif
+ #ifdef USE_OBSOLETE_GETTIMEOFDAY

diff --git a/net-misc/ntpclient/ntpclient-2018.244-r1.ebuild 
b/net-misc/ntpclient/ntpclient-2018.244-r1.ebuild
new file mode 100644
index 000..a7655904140
--- /dev/null
+++ b/net-misc/ntpclient/ntpclient-2018.244-r1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PV="${PV/./_}"
+MY_P="${PN}-${MY_PV}"
+
+DESCRIPTION="A NTP (RFC-1305 and RFC-4330) client for unix-alike systems"
+HOMEPAGE="https://github.com/troglobit/ntpclient;
+SRC_URI="https://github.com/troglobit/${PN}/releases/download/${MY_PV}/${MY_P}.tar.xz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE="debug embedded obsolete +syslog"
+
+S="${WORKDIR}/${MY_P}"
+
+PATCHES=(
+   "${FILESDIR}/${P}-linux-headers-5.2.patch"
+)
+
+src_configure() {
+   local myeconfargs=(
+   $(use_enable debug)
+   $(use_enable debug replay)
+   $(use_enable embedded mini)
+   $(use_enable obsolete)
+   $(use_enable !obsolete siocgstamp)
+   $(use_enable syslog)
+   )
+
+   econf "${myeconfargs[@]}"
+}



[gentoo-commits] repo/gentoo:master commit in: app-laptop/msi-keyboard/files/, app-laptop/msi-keyboard/

2019-08-20 Thread Joonas Niilola
commit: 1f3c291a1d794868c714acf741974563d9ff8791
Author: fulgurance  gmail  com>
AuthorDate: Fri May  3 15:10:59 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Tue Aug 20 12:41:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f3c291a

app-laptop/msi-keyboard: New package

Control backlight of MSI laptop keyboards

Package-Manager: Portage 2.3.72, Repoman 2.3.17
Signed-off-by: Zohran Londais  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/11884
Closes: https://github.com/gentoo/gentoo/pull/10476
Signed-off-by: Joonas Niilola  gentoo.org>

 app-laptop/msi-keyboard/Manifest   |  1 +
 .../files/msi-keyboard-1.0-makefile.patch  | 20 +
 app-laptop/msi-keyboard/metadata.xml   | 11 +
 app-laptop/msi-keyboard/msi-keyboard-1.0.ebuild| 26 ++
 4 files changed, 58 insertions(+)

diff --git a/app-laptop/msi-keyboard/Manifest b/app-laptop/msi-keyboard/Manifest
new file mode 100644
index 000..8931d70a696
--- /dev/null
+++ b/app-laptop/msi-keyboard/Manifest
@@ -0,0 +1 @@
+DIST msi-keyboard-1.0.tar.gz 15182 BLAKE2B 
4c084e1522da926e541b18d0e59044aeb83873516b3ec5b5bd980883b923acee21842c3612910d84008f66556b6c9e2f9d0c7e588f6aecf242a0e54d72e9c3a3
 SHA512 
542f74b8eb77db4ef0b26fc5c671bc7446d37b88e13855927d5cdd68c688f933e46b5a377d0f5ec496c1e35694789ae82694d31fc70f04d5059fe60f2ea9d24a

diff --git a/app-laptop/msi-keyboard/files/msi-keyboard-1.0-makefile.patch 
b/app-laptop/msi-keyboard/files/msi-keyboard-1.0-makefile.patch
new file mode 100644
index 000..08cdaa79e23
--- /dev/null
+++ b/app-laptop/msi-keyboard/files/msi-keyboard-1.0-makefile.patch
@@ -0,0 +1,20 @@
+--- a/Makefile 2019-08-19 22:40:43.258528097 +0200
 b/Makefile 2019-08-19 23:00:30.786462412 +0200
+@@ -1,6 +1,4 @@
+ CC=g++
+-CFLAGS=-c -Wall
+-LDFLAGS=-lhidapi-libusb
+ SOURCES=main.cpp Keyboard.cpp Color.cpp
+ OBJECTS=$(SOURCES:.cpp=.o)
+ EXECUTABLE=msi-keyboard
+@@ -11,8 +9,7 @@
+   rm $(OBJECTS) $(EXECUTABLE)
+ 
+ $(EXECUTABLE): $(OBJECTS)
+-  $(CC) $(LDFLAGS) $(OBJECTS) -o $@
++  $(CC) $(CFLAGS) -lhidapi-libusb $(LDFLAGS) $(OBJECTS) -o $@
+ 
+ .cpp.o:
+-  $(CC) $(CFLAGS) $< -o $@
+-
++  $(CC) $(CFLAGS) -c $< -o $@

diff --git a/app-laptop/msi-keyboard/metadata.xml 
b/app-laptop/msi-keyboard/metadata.xml
new file mode 100644
index 000..5c41b33f0a4
--- /dev/null
+++ b/app-laptop/msi-keyboard/metadata.xml
@@ -0,0 +1,11 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   zohran.lond...@gmail.com
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+

diff --git a/app-laptop/msi-keyboard/msi-keyboard-1.0.ebuild 
b/app-laptop/msi-keyboard/msi-keyboard-1.0.ebuild
new file mode 100644
index 000..7e074cc86a8
--- /dev/null
+++ b/app-laptop/msi-keyboard/msi-keyboard-1.0.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit udev
+
+DESCRIPTION="Control backlight of MSI laptop keyboards"
+HOMEPAGE="https://github.com/makkarpov/msi-keyboard;
+SRC_URI="https://github.com/makkarpov/msi-keyboard/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="dev-libs/hidapi"
+
+PATCHES=(
+   "${FILESDIR}"/${P}-makefile.patch
+)
+
+src_install() {
+   udev_dorules 99-msi-keyboard.rules
+   udev_reload
+   dobin msi-keyboard
+}



[gentoo-commits] repo/gentoo:master commit in: dev-dotnet/libgdiplus/

2019-08-20 Thread Stefan Strogin
commit: 8601f2c99c0468872c49a70aa2dab55892f79f5f
Author: Stefan Strogin  gentoo  org>
AuthorDate: Tue Aug 20 12:10:34 2019 +
Commit: Stefan Strogin  gentoo  org>
CommitDate: Tue Aug 20 12:10:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8601f2c9

dev-dotnet/libgdiplus: bump version to 6.0.2

Closes: https://bugs.gentoo.org/609760
Closes: https://bugs.gentoo.org/682068
Package-Manager: Portage-2.3.72, Repoman-2.3.17
Signed-off-by: Stefan Strogin  gentoo.org>

 dev-dotnet/libgdiplus/Manifest|  1 +
 dev-dotnet/libgdiplus/libgdiplus-6.0.2.ebuild | 51 +++
 2 files changed, 52 insertions(+)

diff --git a/dev-dotnet/libgdiplus/Manifest b/dev-dotnet/libgdiplus/Manifest
index f90aac9f192..b8df1fe8aac 100644
--- a/dev-dotnet/libgdiplus/Manifest
+++ b/dev-dotnet/libgdiplus/Manifest
@@ -1,3 +1,4 @@
 DIST libgdiplus-2.10.9.tar.bz2 2074317 BLAKE2B 
ddbdc22d61734e9141f7d05b45867b1c0ac89903a74d23a3b05d247913aaac5350a603a5d7acb85338b2e9877b077c3c4b43839b33b2f6507b76035124cb43b4
 SHA512 
7f1944795c7ede5fd92a6d7e8d7d6cf2ef3c154e656b83e769b417f8f7195dd975084afe3c3cd1dda1ecb2c1167f76c0b5714cd16d549ff056add09763c6b26c
 DIST libgdiplus-4.2.tar.gz 687398 BLAKE2B 
e9b5912cb63de9692861b09ceeb5ad55fa660fddbbe55382f957591e68bede91550c2d49ed4bc78d118288ca6b35a2b2ab69f87f9fcc289b7fe2b1853b7a
 SHA512 
102d1e07a106fa32640a20c4843bf82b3f628c5b7a3813d39c7712f2cd09d80dc5adb337a8d5bdbae065f876a0c433a5d8fcb7d761dff5ee08c48cac2cd2344e
 DIST libgdiplus-5.6.1.tar.gz 734255 BLAKE2B 
db54559b6bb6ea3f3f966de8692f08c4a042d0719b45263d3f546be1c7795a86d26943d699284acded8419a969238f58f2482090186df1b167d650343900729d
 SHA512 
f1e477e4cbdd83f15bd8edc0feb975399c3eca042cafd1795a018f412b88ad5eb82d2cb0852d2009fdaa6f17d1c62c6b81340578f00eccc2e98ac9debe4a748e
+DIST libgdiplus-6.0.2.tar.gz 1377140 BLAKE2B 
5c639a14371eadee0bfa2ad135284089c65212bde0909d21af8f80fd5bdf7283a8aa688ed88df374a0eac0696a377ba05419b12d9a93b37550c020d2b9961ee0
 SHA512 
b334846cf9471e6f81a3e0a2d6b68c9a39f52e6b22833432e34d3823ae12e3aa9d481806ea9a078463a77f56f3265633447d6709c5ade86ea117d3690f16472c

diff --git a/dev-dotnet/libgdiplus/libgdiplus-6.0.2.ebuild 
b/dev-dotnet/libgdiplus/libgdiplus-6.0.2.ebuild
new file mode 100644
index 000..4c37480bf4c
--- /dev/null
+++ b/dev-dotnet/libgdiplus/libgdiplus-6.0.2.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit dotnet
+
+DESCRIPTION="Library for using System.Drawing with Mono"
+HOMEPAGE="https://www.mono-project.com;
+SRC_URI="https://download.mono-project.com/sources/${PN}/${P}.tar.gz;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~x86-solaris"
+IUSE="cairo"
+#skip tests due https://bugs.gentoo.org/687784
+RESTRICT="test"
+
+RDEPEND="dev-libs/glib
+   media-libs/freetype
+   media-libs/fontconfig
+   >=media-libs/giflib-5.1.2
+   media-libs/libexif
+   media-libs/libpng:0=
+   media-libs/tiff
+   x11-libs/cairo[X]
+   x11-libs/libX11
+   x11-libs/libXrender
+   x11-libs/libXt
+   virtual/jpeg:0
+   !cairo? ( x11-libs/pango )"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+   econf \
+   --disable-dependency-tracking \
+   --disable-static \
+   $(usex cairo "" "--with-pango")
+}
+
+src_install () {
+   default
+
+   dotnet_multilib_comply
+   local commondoc=( AUTHORS ChangeLog README TODO )
+   for docfile in "${commondoc[@]}"; do
+   [[ -e "${docfile}" ]] && dodoc "${docfile}"
+   done
+   [[ "${DOCS[@]}" ]] && dodoc "${DOCS[@]}"
+   prune_libtool_files
+}



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

2019-08-20 Thread Michał Górny
commit: 2866849bd3ea2b3a88a467f0db06c76d0de865fd
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Aug 20 11:33:40 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Aug 20 12:06:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2866849b

dev-util/sysdig: Bump to 0.26.3

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

 dev-util/sysdig/Manifest |  1 +
 dev-util/sysdig/sysdig-0.26.3.ebuild | 88 
 2 files changed, 89 insertions(+)

diff --git a/dev-util/sysdig/Manifest b/dev-util/sysdig/Manifest
index 641e78cc9f0..3e21b7bcf7d 100644
--- a/dev-util/sysdig/Manifest
+++ b/dev-util/sysdig/Manifest
@@ -1,2 +1,3 @@
 DIST sysdig-0.26.1.tar.gz 892441 BLAKE2B 
38302458c54a10719fadaf5e5bb6d29931a262550eaf44350543e99cd33e6a90889d81f49096d2f57fcc903bc9245a1f782b438a48613f9fc9f90273c46f0f39
 SHA512 
817573dd2945e20094c548a481205d7ae700e8242a12c75bcab41c52330fb6f508214d71f3d3ba4ecc86576e555c8c2a0c155921d61d29a5861bbf982600f6fb
 DIST sysdig-0.26.2.tar.gz 907496 BLAKE2B 
ce489d7c1a54aa2930599aa7141b1a3d4815c0395b4a444dea565334a1b39a36d339eb2bc9d0c2b3924e8c54f9c3adec6b31278017cfee955fe9ed9d3c29977f
 SHA512 
1a2476060f43559ec89663377361d1fcaace7fe3aa3b472629dca78557e6d5868d8f5cfce3411c46804b501d6a56dcb074f6becf3d8e756b7f7fd943087cd3ae
+DIST sysdig-0.26.3.tar.gz 902206 BLAKE2B 
ec25d0441c69b8c4c4fc431d073d2f93e476ece7add98412e54ce4286bcd7e32d4b1ff89f75dd728dc66c7d77da157bed2182bad85557c0dcec09648f86abb3d
 SHA512 
f700d1ddae687a3474a8bf6816d2fef6c69e963a269a90a8362287dee698ac9799da18f01f383368c906d294ceb046160a8b0792292a72a3b08fc614b5b69d32

diff --git a/dev-util/sysdig/sysdig-0.26.3.ebuild 
b/dev-util/sysdig/sysdig-0.26.3.ebuild
new file mode 100644
index 000..2d4c0de2f51
--- /dev/null
+++ b/dev-util/sysdig/sysdig-0.26.3.ebuild
@@ -0,0 +1,88 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MODULES_OPTIONAL_USE=modules
+inherit linux-mod bash-completion-r1 cmake-utils
+
+DESCRIPTION="A system exploration and troubleshooting tool"
+HOMEPAGE="https://www.sysdig.org/;
+SRC_URI="https://github.com/draios/sysdig/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0
+   modules? ( || ( MIT GPL-2 ) )"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="libressl +modules"
+
+RDEPEND="
+   app-misc/jq:0=
+   dev-cpp/tbb:0=
+   dev-lang/luajit:2=
+   >=dev-libs/jsoncpp-0.6_pre:0=
+   dev-libs/libb64:0=
+   dev-libs/protobuf:0=
+   net-dns/c-ares:0=
+   net-libs/grpc:0=
+   sys-libs/ncurses:0=
+   sys-libs/zlib:0=
+   libressl? ( dev-libs/libressl:0= )
+   !libressl? ( dev-libs/openssl:0= )
+   net-misc/curl:0="
+DEPEND="${RDEPEND}
+   app-arch/xz-utils
+   virtual/os-headers"
+
+# needed for the kernel module
+CONFIG_CHECK="HAVE_SYSCALL_TRACEPOINTS ~TRACEPOINTS"
+
+pkg_pretend() {
+   linux-mod_pkg_setup
+}
+
+pkg_setup() {
+   linux-mod_pkg_setup
+}
+
+src_prepare() {
+   sed -i -e 's:-ggdb::' CMakeLists.txt || die
+
+   cmake-utils_src_prepare
+}
+
+src_configure() {
+   local mycmakeargs=(
+   # we will use linux-mod for that
+   -DBUILD_DRIVER=OFF
+   # libscap examples are not installed or really useful
+   -DBUILD_LIBSCAP_EXAMPLES=OFF
+
+   # unbundle the deps
+   -DUSE_BUNDLED_DEPS=OFF
+   )
+
+   cmake-utils_src_configure
+
+   # setup linux-mod ugliness
+   MODULE_NAMES="sysdig-probe(extra:${BUILD_DIR}/driver/src:)"
+   BUILD_PARAMS='KERNELDIR="${KERNEL_DIR}"'
+   BUILD_TARGETS="all"
+}
+
+src_compile() {
+   cmake-utils_src_compile
+   linux-mod_src_compile
+}
+
+src_install() {
+   cmake-utils_src_install
+   linux-mod_src_install
+
+   # remove sources
+   rm -r "${ED}"/usr/src || die
+
+   # move bashcomp to the proper location
+   dobashcomp "${ED}"/usr/etc/bash_completion.d/sysdig || die
+   rm -r "${ED}"/usr/etc || die
+}



[gentoo-commits] repo/gentoo:master commit in: sys-power/nut/

2019-08-20 Thread Louis Sautier
commit: 630a9755fe031f340818ac92aabf84c5fa0a6ad9
Author: Louis Sautier  gentoo  org>
AuthorDate: Tue Aug 13 23:30:57 2019 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Tue Aug 20 11:47:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=630a9755

sys-power/nut: add upstream info to metadata.xml

Package-Manager: Portage-2.3.71, Repoman-2.3.16
Signed-off-by: Louis Sautier  gentoo.org>

 sys-power/nut/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/sys-power/nut/metadata.xml b/sys-power/nut/metadata.xml
index 85d0b12815a..bde98d03e53 100644
--- a/sys-power/nut/metadata.xml
+++ b/sys-power/nut/metadata.xml
@@ -63,4 +63,8 @@
Multi-MIB Driver for SNMP UPS 
equipment
Driver for IPMI Power 
Supply Units (PSU)

+   
+   networkupstools/nut
+   https://github.com/networkupstools/nut/issues
+   
 



[gentoo-commits] repo/gentoo:master commit in: net-wireless/broadcom-sta/, net-wireless/broadcom-sta/files/

2019-08-20 Thread Louis Sautier
commit: 50d614cc8c602bbc5ced0bab0c5de1ca3a91567d
Author: Louis Sautier  gentoo  org>
AuthorDate: Sun Jul 21 19:16:54 2019 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Tue Aug 20 11:47:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50d614cc

net-wireless/broadcom-sta: fix build for kernel 5.1, EAPI=7

* Apply Ubuntu's patch for the 5.1 kernel, taken from
  
http://launchpadlibrarian.net/429676743/bcmwl_6.30.223.271+bdcom-0ubuntu4_6.30.223.271+bdcom-0ubuntu5.diff.gz.
* Bump to EAPI 7 and use an array for PATCHES, fix one patch that didn't
  apply with -p1.

Closes: https://bugs.gentoo.org/685214
Closes: https://github.com/gentoo/gentoo/pull/12500
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Louis Sautier  gentoo.org>

 ebuild => broadcom-sta-6.30.223.271-r5.ebuild} | 32 ++
 .../files/broadcom-sta-6.30.223.141-makefile.patch |  4 +--
 .../broadcom-sta-6.30.223.271-r5-linux-5.1.patch   | 29 
 3 files changed, 46 insertions(+), 19 deletions(-)

diff --git a/net-wireless/broadcom-sta/broadcom-sta-6.30.223.271-r4.ebuild 
b/net-wireless/broadcom-sta/broadcom-sta-6.30.223.271-r5.ebuild
similarity index 82%
rename from net-wireless/broadcom-sta/broadcom-sta-6.30.223.271-r4.ebuild
rename to net-wireless/broadcom-sta/broadcom-sta-6.30.223.271-r5.ebuild
index 95eeba5c483..91581b52a4e 100644
--- a/net-wireless/broadcom-sta/broadcom-sta-6.30.223.271-r4.ebuild
+++ b/net-wireless/broadcom-sta/broadcom-sta-6.30.223.271-r5.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 inherit eutils linux-info linux-mod
 
 DESCRIPTION="Broadcom's IEEE 802.11a/b/g/n hybrid Linux device driver"
@@ -71,22 +71,20 @@ pkg_setup() {
BUILD_TARGETS="wl.ko"
 }
 
-src_prepare() {
-   epatch \
-   "${FILESDIR}/${PN}-6.30.223.141-makefile.patch" \
-   "${FILESDIR}/${PN}-6.30.223.141-eth-to-wlan.patch" \
-   "${FILESDIR}/${PN}-6.30.223.141-gcc.patch" \
-   "${FILESDIR}/${PN}-6.30.223.248-r3-Wno-date-time.patch" \
-   "${FILESDIR}/${PN}-6.30.223.271-r1-linux-3.18.patch" \
-   "${FILESDIR}/${PN}-6.30.223.271-r2-linux-4.3-v2.patch" \
-   "${FILESDIR}/${PN}-6.30.223.271-r4-linux-4.7.patch" \
-   "${FILESDIR}/${PN}-6.30.223.271-r4-linux-4.8.patch" \
-   "${FILESDIR}/${PN}-6.30.223.271-r4-linux-4.11.patch" \
-   "${FILESDIR}/${PN}-6.30.223.271-r4-linux-4.12.patch" \
+PATCHES=(
+   "${FILESDIR}/${PN}-6.30.223.141-makefile.patch"
+   "${FILESDIR}/${PN}-6.30.223.141-eth-to-wlan.patch"
+   "${FILESDIR}/${PN}-6.30.223.141-gcc.patch"
+   "${FILESDIR}/${PN}-6.30.223.248-r3-Wno-date-time.patch"
+   "${FILESDIR}/${PN}-6.30.223.271-r1-linux-3.18.patch"
+   "${FILESDIR}/${PN}-6.30.223.271-r2-linux-4.3-v2.patch"
+   "${FILESDIR}/${PN}-6.30.223.271-r4-linux-4.7.patch"
+   "${FILESDIR}/${PN}-6.30.223.271-r4-linux-4.8.patch"
+   "${FILESDIR}/${PN}-6.30.223.271-r4-linux-4.11.patch"
+   "${FILESDIR}/${PN}-6.30.223.271-r4-linux-4.12.patch"
"${FILESDIR}/${PN}-6.30.223.271-r4-linux-4.15.patch"
-
-   epatch_user
-}
+   "${FILESDIR}/${PN}-6.30.223.271-r5-linux-5.1.patch"
+)
 
 src_install() {
linux-mod_src_install

diff --git 
a/net-wireless/broadcom-sta/files/broadcom-sta-6.30.223.141-makefile.patch 
b/net-wireless/broadcom-sta/files/broadcom-sta-6.30.223.141-makefile.patch
index 09c495d2a10..d5b97fe87eb 100644
--- a/net-wireless/broadcom-sta/files/broadcom-sta-6.30.223.141-makefile.patch
+++ b/net-wireless/broadcom-sta/files/broadcom-sta-6.30.223.141-makefile.patch
@@ -1,5 +1,5 @@
 Makefile.old   2013-04-28 22:42:59.0 +0200
-+++ Makefile   2013-04-28 22:45:53.0 +0200
+--- a/Makefile 2013-04-28 22:42:59.0 +0200
 b/Makefile 2013-04-28 22:45:53.0 +0200
 @@ -128,9 +128,9 @@
  
  EXTRA_LDFLAGS  := $(src)/lib/wlc_hybrid.o_shipped

diff --git 
a/net-wireless/broadcom-sta/files/broadcom-sta-6.30.223.271-r5-linux-5.1.patch 
b/net-wireless/broadcom-sta/files/broadcom-sta-6.30.223.271-r5-linux-5.1.patch
new file mode 100644
index 000..fcee46ea3d0
--- /dev/null
+++ 
b/net-wireless/broadcom-sta/files/broadcom-sta-6.30.223.271-r5-linux-5.1.patch
@@ -0,0 +1,29 @@
+From 20bb1a6da26c496572ee63d310cdf69a2f1553f8 Mon Sep 17 00:00:00 2001
+From: Seth Forshee 
+Date: Fri, 17 May 2019 20:32:20 +
+Subject: [PATCH] add support for linux 5.1
+
+get_ds() was removed and replaced universally with KERNEL_DS.
+Provide a version of get_ds() to do likewise for 5.1 and later.
+
+Signed-off-by: Seth Forshee 
+---
+ src/include/linuxver.h | 5 +
+ 1 file changed, 5 insertions(+)
+
+diff --git 

[gentoo-commits] repo/gentoo:master commit in: net-libs/libtrace/files/, net-libs/libtrace/

2019-08-20 Thread Jeroen Roovers
commit: 7f7c94aee5a43251ac2812993d0c7ab51f0d17a2
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Aug 20 09:01:15 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Aug 20 09:02:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f7c94ae

net-libs/libtrace: Add include for SIOCGSTAMP definition

Package-Manager: Portage-2.3.72, Repoman-2.3.17
Fixes: https://bugs.gentoo.org/692430
Signed-off-by: Jeroen Roovers  gentoo.org>

 .../files/libtrace-4.0.9_p1-SIOCGSTAMP.patch   | 12 +
 net-libs/libtrace/libtrace-4.0.9_p1-r1.ebuild  | 61 ++
 2 files changed, 73 insertions(+)

diff --git a/net-libs/libtrace/files/libtrace-4.0.9_p1-SIOCGSTAMP.patch 
b/net-libs/libtrace/files/libtrace-4.0.9_p1-SIOCGSTAMP.patch
new file mode 100644
index 000..0693601356b
--- /dev/null
+++ b/net-libs/libtrace/files/libtrace-4.0.9_p1-SIOCGSTAMP.patch
@@ -0,0 +1,12 @@
+diff --git a/lib/format_linux_common.h b/lib/format_linux_common.h
+index 244144b1..b6a66d30 100644
+--- a/lib/format_linux_common.h
 b/lib/format_linux_common.h
+@@ -44,6 +44,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ #include 
+ #include 

diff --git a/net-libs/libtrace/libtrace-4.0.9_p1-r1.ebuild 
b/net-libs/libtrace/libtrace-4.0.9_p1-r1.ebuild
new file mode 100644
index 000..84bdf221362
--- /dev/null
+++ b/net-libs/libtrace/libtrace-4.0.9_p1-r1.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit autotools
+
+DESCRIPTION="A library and tools for trace processing"
+HOMEPAGE="https://research.wand.net.nz/software/libtrace.php;
+SRC_URI="https://github.com/${PN^}Team/${PN}/archive//${PV/_p/-}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="LGPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc ncurses numa static-libs"
+
+RDEPEND="
+   >=net-libs/libpcap-0.8
+   dev-libs/libyaml
+   dev-libs/openssl:0=
+   net-libs/wandio
+   ncurses? ( sys-libs/ncurses:0= )
+   numa? ( sys-process/numactl )
+"
+DEPEND="
+   ${RDEPEND}
+   app-doc/doxygen
+   sys-devel/flex
+   virtual/os-headers
+   virtual/pkgconfig
+   virtual/yacc
+"
+PATCHES=(
+   "${FILESDIR}"/${PN}-3.0.20-autoconf-1.13.patch
+   "${FILESDIR}"/${PN}-4.0.0-no-examples.patch
+   "${FILESDIR}"/${PN}-4.0.0-with-numa.patch
+   "${FILESDIR}"/${PN}-4.0.9_p1-tinfo.patch
+   "${FILESDIR}"/${PN}-4.0.9_p1-SIOCGSTAMP.patch
+)
+S=${WORKDIR}/${P/_p/-}
+
+src_prepare() {
+   default
+
+   eautoreconf
+}
+
+src_configure() {
+   econf \
+   $(use_enable static-libs static) \
+   $(use_with ncurses) \
+   $(use_with numa) \
+   --with-man
+}
+
+src_install() {
+   default
+
+   use doc && dodoc -r docs/doxygen/html
+
+   find "${D}" -name "*.la" -delete || die
+}



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

2019-08-20 Thread Jeroen Roovers
commit: 60968cda3b1a73eb6cc7e603f22aa3d968ac0c6d
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Aug 20 08:50:11 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Aug 20 08:50:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60968cda

dev-util/debhelper: Old

Package-Manager: Portage-2.3.72, Repoman-2.3.17
Signed-off-by: Jeroen Roovers  gentoo.org>

 dev-util/debhelper/Manifest  |  1 -
 dev-util/debhelper/debhelper-12.3.ebuild | 73 
 2 files changed, 74 deletions(-)

diff --git a/dev-util/debhelper/Manifest b/dev-util/debhelper/Manifest
index d70743b1011..98fc73858b2 100644
--- a/dev-util/debhelper/Manifest
+++ b/dev-util/debhelper/Manifest
@@ -1,4 +1,3 @@
-DIST debhelper_12.3.tar.xz 493796 BLAKE2B 
65ed2b494bd7dc70ecefe1a999681af1648385ec4addde8dbe39a650e37d4613c1712ba8005dd1efc8bcc688c02f23d02afe661e6126d29d8855930a34ed74d7
 SHA512 
94abe39f4df1d0b95b49fc20141f46f8f0438de89f904556dcb26f9ddcb6530d04d92c2c719549c0f1f5bc8c5edc395fd770e74097b353ec521affa227d77f4f
 DIST debhelper_12.4.tar.xz 493916 BLAKE2B 
f1478c30a1043f66eea4aa3bbe0cd5bcc10b9d8d2a2caf9ec82b6eaaa4bff03ee7c72ee2aa87ff96827a09b6f33874fd85d7743df2f5c8b1eaaf957c3cbc4066
 SHA512 
82897feadfa953d12bbc6e5e8fb1fbccd4de9e42cafa5c23e188960ff11e7c14a5db0ba7a5a50873b2f399da71580a36b27156c03a11d418c58fbe5cc431b006
 DIST debhelper_12.5.3.tar.xz 500304 BLAKE2B 
c73d0aa6069b3c85511196e50afa73c3303a23503ff13f748fbc58ee26911b3845742ff9d37189a5373b4d05958912b76681f8fe1e02b44256cf29c161ee14c7
 SHA512 
920fbb44f1ec63a90d85f4814f5826a446262a54a2e5209adef902f32965e88080908445586bbac86ba1aa1152f894e5e33369d4fa604084aafb4666b7f3cd38
 DIST debhelper_9.20160814.tar.xz 344328 BLAKE2B 
38791ab3dfb74d12e44226b79a377889911a08505cdb45cc0a6e653906edbafcac1038d1d9ff9f5fd9f714ed36681562ce7fb1c9c1109a8528523100128fced6
 SHA512 
63072ba35ec8c62ee4c4d44833712925264c808a91f1522ef6a73377f2da3d11b285a21ad39158fd44693c801916189261186c8c7b28096719328a81a0a65f62

diff --git a/dev-util/debhelper/debhelper-12.3.ebuild 
b/dev-util/debhelper/debhelper-12.3.ebuild
deleted file mode 100644
index e546013a4fd..000
--- a/dev-util/debhelper/debhelper-12.3.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Collection of programs that can be used to automate common tasks 
in debian/rules"
-HOMEPAGE="https://tracker.debian.org/pkg/debhelper;
-SRC_URI="mirror://debian/pool/main/d/${PN}/${P/-/_}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-linux"
-IUSE="test"
-DH_LANGS=( de es fr )
-IUSE+=" ${DH_LANGS[@]/#/l10n_}"
-
-NLS_DEPEND=$(
-   printf "l10n_%s? ( >=app-text/po4a-0.24 )\n" ${DH_LANGS[@]}
-)
-
-RDEPEND="
-   >=dev-lang/perl-5.10:=
-   >=app-arch/dpkg-1.17
-   dev-perl/TimeDate
-   virtual/perl-Getopt-Long
-"
-DEPEND="
-   ${RDEPEND}
-   ${NLS_DEPEND}
-   test? (
-   dev-perl/Test-Pod
-   sys-apps/fakeroot
-   )
-"
-
-S=${WORKDIR}/${PN}
-
-src_compile() {
-   tc-export CC
-
-   local LANGS="" USE_NLS=no lang
-   for lang in ${DH_LANGS[@]}; do
-   if use l10n_${lang}; then
-   LANGS+=" ${lang}"
-   USE_NLS=yes
-   fi
-   done
-
-   emake USE_NLS="${USE_NLS}" LANGS="${LANGS}" build
-}
-
-src_install() {
-   emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
-   dodoc doc/* debian/changelog
-   docinto examples
-   dodoc examples/*
-   local lang
-   for manfile in *.1 *.7 ; do
-   for lang in ${DH_LANGS[@]}; do
-   case ${manfile} in
-   *.${lang}.?)
-   use l10n_${lang} \
-   && cp ${manfile} 
"${T}"/${manfile/.${lang}/} \
-   && doman -i18n=${lang} 
"${T}"/${manfile/.${lang}/}
-   ;;
-   *)
-   doman ${manfile}
-   ;;
-   esac
-   done
-   done
-}



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

2019-08-20 Thread Jeroen Roovers
commit: f033898d1c076830a363508d7f23273925004162
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Aug 20 08:49:19 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Aug 20 08:49:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f033898d

net-analyzer/vnstat: Old

Package-Manager: Portage-2.3.72, Repoman-2.3.17
Signed-off-by: Jeroen Roovers  gentoo.org>

 net-analyzer/vnstat/Manifest  |  1 -
 net-analyzer/vnstat/vnstat-2.2.ebuild | 68 ---
 2 files changed, 69 deletions(-)

diff --git a/net-analyzer/vnstat/Manifest b/net-analyzer/vnstat/Manifest
index fcfab05c846..81ea7ba532f 100644
--- a/net-analyzer/vnstat/Manifest
+++ b/net-analyzer/vnstat/Manifest
@@ -1,4 +1,3 @@
 DIST vnstat-1.17.tar.gz 238397 BLAKE2B 
73aaffda3c91a1146b1d6a21f637272be227a15a7964aad90fb76c407c5f7fb0085e6f9f54408e8ebc667475c15f260d701c5924737f20921ebc0a35affd52be
 SHA512 
c9c119a89054dacdc15026c766a20d88336d7689dd4264530d0347fcc58f3cbfc806b271e0f83e76c3b4a31ab793a628ee7d7b696943da919ee4cd2fdb481cc3
-DIST vnstat-2.2.tar.gz 264037 BLAKE2B 
dc82798a0c619d2aea3d3cbdd42bb10f73769b0e64443407daabc8838e5af5b0ef718c0769321116269f1bc6f50e99133a1d38ccb730f658f3215a83180589b7
 SHA512 
47bd544ed071268774bf55a8269f50694d2af0b14fe3eb50b707c4f09c9a0c0653360ac892136275355b2a647a0fed731f007d135edf4bc9b04dc537bf248acc
 DIST vnstat-2.3.tar.gz 269907 BLAKE2B 
b935c7baec34f15213b3fe320add4e3ecf0d3cd43d5934231eb9b96f3bc8171aa056e1a08d42cafdc2d06b9e6108d04392a1452a3d24bdbaf748722c53f64f23
 SHA512 
244aae8a127fb93407918e90efefe09d901410abbfda715272f1d754692661f2036ea98cc7f75ebc53ec27249ba676f84463af24ed7e19a9a130d6ce29b32677
 DIST vnstat-2.4.tar.gz 270907 BLAKE2B 
4666c39c05cb0bd2a89db7e57bfd72b542ccda02ba09a9da6097b58957141042a5e63a2ee4863bb61b686b3e4c374a690d798398136760699755187fdca5e27c
 SHA512 
e2f23b375a6afcd9e51770769c741d3a5fc139aec22e535bc98da09e4a6677a0c820fb04727a79f23569be29f031e9ee897b6d569146c42ed917f5f83399b7b6

diff --git a/net-analyzer/vnstat/vnstat-2.2.ebuild 
b/net-analyzer/vnstat/vnstat-2.2.ebuild
deleted file mode 100644
index c5e123218ab..000
--- a/net-analyzer/vnstat/vnstat-2.2.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit systemd user
-
-DESCRIPTION="Console-based network traffic monitor that keeps statistics of 
network usage"
-HOMEPAGE="https://humdi.net/vnstat/;
-SRC_URI="https://humdi.net/vnstat/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
-IUSE="gd selinux test"
-
-COMMON_DEPEND="
-   dev-db/sqlite
-   gd? ( media-libs/gd[png] )
-"
-DEPEND="
-   ${COMMON_DEPEND}
-   test? ( dev-libs/check )
-"
-RDEPEND="
-   ${COMMON_DEPEND}
-   selinux? ( sec-policy/selinux-vnstatd )
-"
-PATCHES=(
-   "${FILESDIR}"/${PN}-2.2-conf.patch
-   "${FILESDIR}"/${PN}-2.2-drop-root.patch
-   "${FILESDIR}"/${PN}-2.2-run.patch
-)
-
-pkg_setup() {
-   enewgroup vnstat
-   enewuser vnstat -1 -1 /var/lib/vnstat vnstat
-}
-
-src_compile() {
-   emake ${PN} ${PN}d $(usex gd ${PN}i '')
-}
-
-src_install() {
-   use gd && dobin vnstati
-   dobin vnstat vnstatd
-
-   exeinto /usr/share/${PN}
-   newexe "${FILESDIR}"/vnstat.cron-r1 vnstat.cron
-
-   insinto /etc
-   doins cfg/vnstat.conf
-   fowners root:vnstat /etc/vnstat.conf
-
-   keepdir /var/lib/vnstat
-   fowners vnstat:vnstat /var/lib/vnstat
-
-   newconfd "${FILESDIR}"/vnstatd.confd-r1 vnstatd
-   newinitd "${FILESDIR}"/vnstatd.initd-r2 vnstatd
-
-   systemd_newunit "${FILESDIR}"/vnstatd.systemd vnstatd.service
-   systemd_newtmpfilesd "${FILESDIR}"/vnstatd.tmpfile vnstatd.conf
-
-   use gd && doman man/vnstati.1
-   doman man/vnstat.1 man/vnstatd.1
-
-   newdoc INSTALL README.setup
-   dodoc CHANGES README UPGRADE FAQ examples/vnstat.cgi
-}



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

2019-08-20 Thread Jeroen Roovers
commit: 85f7283a7984470a1e0f0e0a5a4c4c86649c5c58
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Aug 20 08:46:40 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Aug 20 08:48:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85f7283a

net-analyzer/vnstat: Version 2.4

Package-Manager: Portage-2.3.72, Repoman-2.3.17
Signed-off-by: Jeroen Roovers  gentoo.org>

 net-analyzer/vnstat/Manifest  |  1 +
 net-analyzer/vnstat/vnstat-2.4.ebuild | 68 +++
 2 files changed, 69 insertions(+)

diff --git a/net-analyzer/vnstat/Manifest b/net-analyzer/vnstat/Manifest
index 7c1993ad9cc..fcfab05c846 100644
--- a/net-analyzer/vnstat/Manifest
+++ b/net-analyzer/vnstat/Manifest
@@ -1,3 +1,4 @@
 DIST vnstat-1.17.tar.gz 238397 BLAKE2B 
73aaffda3c91a1146b1d6a21f637272be227a15a7964aad90fb76c407c5f7fb0085e6f9f54408e8ebc667475c15f260d701c5924737f20921ebc0a35affd52be
 SHA512 
c9c119a89054dacdc15026c766a20d88336d7689dd4264530d0347fcc58f3cbfc806b271e0f83e76c3b4a31ab793a628ee7d7b696943da919ee4cd2fdb481cc3
 DIST vnstat-2.2.tar.gz 264037 BLAKE2B 
dc82798a0c619d2aea3d3cbdd42bb10f73769b0e64443407daabc8838e5af5b0ef718c0769321116269f1bc6f50e99133a1d38ccb730f658f3215a83180589b7
 SHA512 
47bd544ed071268774bf55a8269f50694d2af0b14fe3eb50b707c4f09c9a0c0653360ac892136275355b2a647a0fed731f007d135edf4bc9b04dc537bf248acc
 DIST vnstat-2.3.tar.gz 269907 BLAKE2B 
b935c7baec34f15213b3fe320add4e3ecf0d3cd43d5934231eb9b96f3bc8171aa056e1a08d42cafdc2d06b9e6108d04392a1452a3d24bdbaf748722c53f64f23
 SHA512 
244aae8a127fb93407918e90efefe09d901410abbfda715272f1d754692661f2036ea98cc7f75ebc53ec27249ba676f84463af24ed7e19a9a130d6ce29b32677
+DIST vnstat-2.4.tar.gz 270907 BLAKE2B 
4666c39c05cb0bd2a89db7e57bfd72b542ccda02ba09a9da6097b58957141042a5e63a2ee4863bb61b686b3e4c374a690d798398136760699755187fdca5e27c
 SHA512 
e2f23b375a6afcd9e51770769c741d3a5fc139aec22e535bc98da09e4a6677a0c820fb04727a79f23569be29f031e9ee897b6d569146c42ed917f5f83399b7b6

diff --git a/net-analyzer/vnstat/vnstat-2.4.ebuild 
b/net-analyzer/vnstat/vnstat-2.4.ebuild
new file mode 100644
index 000..158b3bde044
--- /dev/null
+++ b/net-analyzer/vnstat/vnstat-2.4.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit systemd user
+
+DESCRIPTION="Console-based network traffic monitor that keeps statistics of 
network usage"
+HOMEPAGE="https://humdi.net/vnstat/;
+SRC_URI="https://humdi.net/vnstat/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
+IUSE="gd selinux test"
+
+COMMON_DEPEND="
+   dev-db/sqlite
+   gd? ( media-libs/gd[png] )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   test? ( dev-libs/check )
+"
+RDEPEND="
+   ${COMMON_DEPEND}
+   selinux? ( sec-policy/selinux-vnstatd )
+"
+PATCHES=(
+   "${FILESDIR}"/${PN}-2.2-conf.patch
+   "${FILESDIR}"/${PN}-2.2-drop-root.patch
+   "${FILESDIR}"/${PN}-2.2-run.patch
+)
+
+pkg_setup() {
+   enewgroup vnstat
+   enewuser vnstat -1 -1 /var/lib/vnstat vnstat
+}
+
+src_compile() {
+   emake ${PN} ${PN}d $(usex gd ${PN}i '')
+}
+
+src_install() {
+   use gd && dobin vnstati
+   dobin vnstat vnstatd
+
+   exeinto /usr/share/${PN}
+   newexe "${FILESDIR}"/vnstat.cron-r1 vnstat.cron
+
+   insinto /etc
+   doins cfg/vnstat.conf
+   fowners root:vnstat /etc/vnstat.conf
+
+   keepdir /var/lib/vnstat
+   fowners vnstat:vnstat /var/lib/vnstat
+
+   newconfd "${FILESDIR}"/vnstatd.confd-r1 vnstatd
+   newinitd "${FILESDIR}"/vnstatd.initd-r2 vnstatd
+
+   systemd_newunit "${FILESDIR}"/vnstatd.systemd vnstatd.service
+   systemd_newtmpfilesd "${FILESDIR}"/vnstatd.tmpfile vnstatd.conf
+
+   use gd && doman man/vnstati.1
+   doman man/vnstat.1 man/vnstatd.8
+
+   newdoc INSTALL README.setup
+   dodoc CHANGES README UPGRADE FAQ examples/vnstat.cgi
+}



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

2019-08-20 Thread Jeroen Roovers
commit: dd7fa260a30402b9d45ef3e33b5dc8329c4bd276
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Aug 20 08:47:18 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Aug 20 08:48:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd7fa260

net-analyzer/arping: Update live ebuild

Package-Manager: Portage-2.3.72, Repoman-2.3.17
Signed-off-by: Jeroen Roovers  gentoo.org>

 net-analyzer/arping/arping-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/arping/arping-.ebuild 
b/net-analyzer/arping/arping-.ebuild
index ee101c39dcd..20b7fc88206 100644
--- a/net-analyzer/arping/arping-.ebuild
+++ b/net-analyzer/arping/arping-.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 inherit autotools fcaps git-r3
 
 DESCRIPTION="A utility to see if a specific IP address is taken and what MAC 
address owns it"



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

2019-08-20 Thread Jeroen Roovers
commit: 1e6e5ad15ae9f2f28860dfedf03e392bc8370da4
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Aug 20 08:44:18 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Aug 20 08:48:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e6e5ad1

net-analyzer/arping: Version 2.20

Package-Manager: Portage-2.3.72, Repoman-2.3.17
Signed-off-by: Jeroen Roovers  gentoo.org>

 net-analyzer/arping/Manifest   |  1 +
 net-analyzer/arping/arping-2.20.ebuild | 34 ++
 2 files changed, 35 insertions(+)

diff --git a/net-analyzer/arping/Manifest b/net-analyzer/arping/Manifest
index c03a326f5a0..aae130d1016 100644
--- a/net-analyzer/arping/Manifest
+++ b/net-analyzer/arping/Manifest
@@ -1,3 +1,4 @@
 DIST arping-2.17.tar.gz 174346 BLAKE2B 
b0a095ff4e39e8f08b25a10db828e4ab9f60299043fbefc353b9df14e5bae839a93be20724ab9758b5bfc830c211e5f9bdfd606e321db508dbce9886b5903b09
 SHA512 
062026f522ab3d3b96c05c97aa3133995bce808a25a470207359a1236886da0300368ddac7d76568201510c0bcc2ac4ef6b34b2284c8d367c1be41972f0ee1c2
 DIST arping-2.18.tar.gz 175691 BLAKE2B 
42372f629b66568868ffa6d5ed5d050f0eeb53b6a3b804bbd87d273d4c381d249b0b2e41f641f7cd2d5d93d5aa18882c8e623461db8052dd2393d6822d8ca222
 SHA512 
0ce54bd834695d1f624e9846d1796a316e5a733b83cdeaf745f522e1311f082d646c265a90b90b524d7e718070d61dd9ca767b5365f9fd5bd0a807e37c4d4c89
 DIST arping-2.19.tar.gz 177178 BLAKE2B 
ed8936b5526c02526d3cf0f208be0cbb91034fec861a26ae9f3fa7a865597ae8ba9d9b15418b07e930b7b5d1e766e4a4be4b4b61e5ba313dcca0f1e038373a00
 SHA512 
7ad242202432d91adc34b049c5511529789cf381ef02e803f8fc61394a5540427b719981946a36f692df9b1b3186e3f39b0f867f583aa42e237ae7f7549822a2
+DIST arping-2.20.tar.gz 48102 BLAKE2B 
ce08c68e5d76db89f4f9ecb31bcee3316064cfd8ffd9615964677db33f214b856300de0dd2619430ce934b19f260cd38c8fa892636787ae4de82022301274a06
 SHA512 
c5fac3b43a9be8c63ee7707a7df1cef2d75c6f7944cc6e580450a6558fb7e72b0d97d09b5c9b4a3aa86a59f49faba94b39bd634c93917c11ae20ac59e8635282

diff --git a/net-analyzer/arping/arping-2.20.ebuild 
b/net-analyzer/arping/arping-2.20.ebuild
new file mode 100644
index 000..9f3f308a61f
--- /dev/null
+++ b/net-analyzer/arping/arping-2.20.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit autotools fcaps
+
+DESCRIPTION="A utility to see if a specific IP address is taken and what MAC 
address owns it"
+HOMEPAGE="http://www.habets.pp.se/synscan/programs.php?prog=arping;
+SRC_URI="https://github.com/ThomasHabets/${PN}/archive/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="2"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
+IUSE="test"
+
+CDEPEND="
+   net-libs/libpcap
+   net-libs/libnet:1.1
+"
+DEPEND="
+   ${CDEPEND}
+   test? ( dev-libs/check )
+"
+RDEPEND="
+   ${CDEPEND}
+   !net-misc/iputils[arping(+)]
+"
+FILECAPS=( cap_net_raw /usr/sbin/arping )
+S=${WORKDIR}/${PN}-${P}
+
+src_prepare() {
+   default
+   eautoreconf
+}



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

2019-08-20 Thread Jeroen Roovers
commit: bcf383825fc58113a6465f1f9adc76531f9acc02
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Aug 20 08:45:12 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Aug 20 08:48:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcf38382

net-analyzer/arping: Old

Package-Manager: Portage-2.3.72, Repoman-2.3.17
Signed-off-by: Jeroen Roovers  gentoo.org>

 net-analyzer/arping/Manifest   |  1 -
 net-analyzer/arping/arping-2.18.ebuild | 29 -
 2 files changed, 30 deletions(-)

diff --git a/net-analyzer/arping/Manifest b/net-analyzer/arping/Manifest
index aae130d1016..c686cad1844 100644
--- a/net-analyzer/arping/Manifest
+++ b/net-analyzer/arping/Manifest
@@ -1,4 +1,3 @@
 DIST arping-2.17.tar.gz 174346 BLAKE2B 
b0a095ff4e39e8f08b25a10db828e4ab9f60299043fbefc353b9df14e5bae839a93be20724ab9758b5bfc830c211e5f9bdfd606e321db508dbce9886b5903b09
 SHA512 
062026f522ab3d3b96c05c97aa3133995bce808a25a470207359a1236886da0300368ddac7d76568201510c0bcc2ac4ef6b34b2284c8d367c1be41972f0ee1c2
-DIST arping-2.18.tar.gz 175691 BLAKE2B 
42372f629b66568868ffa6d5ed5d050f0eeb53b6a3b804bbd87d273d4c381d249b0b2e41f641f7cd2d5d93d5aa18882c8e623461db8052dd2393d6822d8ca222
 SHA512 
0ce54bd834695d1f624e9846d1796a316e5a733b83cdeaf745f522e1311f082d646c265a90b90b524d7e718070d61dd9ca767b5365f9fd5bd0a807e37c4d4c89
 DIST arping-2.19.tar.gz 177178 BLAKE2B 
ed8936b5526c02526d3cf0f208be0cbb91034fec861a26ae9f3fa7a865597ae8ba9d9b15418b07e930b7b5d1e766e4a4be4b4b61e5ba313dcca0f1e038373a00
 SHA512 
7ad242202432d91adc34b049c5511529789cf381ef02e803f8fc61394a5540427b719981946a36f692df9b1b3186e3f39b0f867f583aa42e237ae7f7549822a2
 DIST arping-2.20.tar.gz 48102 BLAKE2B 
ce08c68e5d76db89f4f9ecb31bcee3316064cfd8ffd9615964677db33f214b856300de0dd2619430ce934b19f260cd38c8fa892636787ae4de82022301274a06
 SHA512 
c5fac3b43a9be8c63ee7707a7df1cef2d75c6f7944cc6e580450a6558fb7e72b0d97d09b5c9b4a3aa86a59f49faba94b39bd634c93917c11ae20ac59e8635282

diff --git a/net-analyzer/arping/arping-2.18.ebuild 
b/net-analyzer/arping/arping-2.18.ebuild
deleted file mode 100644
index 1552c81188a..000
--- a/net-analyzer/arping/arping-2.18.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit fcaps
-
-DESCRIPTION="A utility to see if a specific IP address is taken and what MAC 
address owns it"
-HOMEPAGE="http://www.habets.pp.se/synscan/programs.php?prog=arping;
-SRC_URI="http://www.habets.pp.se/synscan/files/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="2"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
-IUSE="test"
-
-CDEPEND="
-   net-libs/libpcap
-   net-libs/libnet:1.1
-"
-DEPEND="
-   ${CDEPEND}
-   test? ( dev-libs/check )
-"
-RDEPEND="
-   ${CDEPEND}
-   !net-misc/iputils[arping(+)]
-"
-
-FILECAPS=( cap_net_raw /usr/sbin/arping )



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

2019-08-20 Thread Jeroen Roovers
commit: 4051324c4ec350f6c5b90e10693f94bcc54cb88c
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Aug 20 08:48:07 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Aug 20 08:48:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4051324c

dev-util/debhelper: Version 12.5.3

Package-Manager: Portage-2.3.72, Repoman-2.3.17
Signed-off-by: Jeroen Roovers  gentoo.org>

 dev-util/debhelper/Manifest|  1 +
 dev-util/debhelper/debhelper-12.5.3.ebuild | 73 ++
 2 files changed, 74 insertions(+)

diff --git a/dev-util/debhelper/Manifest b/dev-util/debhelper/Manifest
index b82251befad..d70743b1011 100644
--- a/dev-util/debhelper/Manifest
+++ b/dev-util/debhelper/Manifest
@@ -1,3 +1,4 @@
 DIST debhelper_12.3.tar.xz 493796 BLAKE2B 
65ed2b494bd7dc70ecefe1a999681af1648385ec4addde8dbe39a650e37d4613c1712ba8005dd1efc8bcc688c02f23d02afe661e6126d29d8855930a34ed74d7
 SHA512 
94abe39f4df1d0b95b49fc20141f46f8f0438de89f904556dcb26f9ddcb6530d04d92c2c719549c0f1f5bc8c5edc395fd770e74097b353ec521affa227d77f4f
 DIST debhelper_12.4.tar.xz 493916 BLAKE2B 
f1478c30a1043f66eea4aa3bbe0cd5bcc10b9d8d2a2caf9ec82b6eaaa4bff03ee7c72ee2aa87ff96827a09b6f33874fd85d7743df2f5c8b1eaaf957c3cbc4066
 SHA512 
82897feadfa953d12bbc6e5e8fb1fbccd4de9e42cafa5c23e188960ff11e7c14a5db0ba7a5a50873b2f399da71580a36b27156c03a11d418c58fbe5cc431b006
+DIST debhelper_12.5.3.tar.xz 500304 BLAKE2B 
c73d0aa6069b3c85511196e50afa73c3303a23503ff13f748fbc58ee26911b3845742ff9d37189a5373b4d05958912b76681f8fe1e02b44256cf29c161ee14c7
 SHA512 
920fbb44f1ec63a90d85f4814f5826a446262a54a2e5209adef902f32965e88080908445586bbac86ba1aa1152f894e5e33369d4fa604084aafb4666b7f3cd38
 DIST debhelper_9.20160814.tar.xz 344328 BLAKE2B 
38791ab3dfb74d12e44226b79a377889911a08505cdb45cc0a6e653906edbafcac1038d1d9ff9f5fd9f714ed36681562ce7fb1c9c1109a8528523100128fced6
 SHA512 
63072ba35ec8c62ee4c4d44833712925264c808a91f1522ef6a73377f2da3d11b285a21ad39158fd44693c801916189261186c8c7b28096719328a81a0a65f62

diff --git a/dev-util/debhelper/debhelper-12.5.3.ebuild 
b/dev-util/debhelper/debhelper-12.5.3.ebuild
new file mode 100644
index 000..e546013a4fd
--- /dev/null
+++ b/dev-util/debhelper/debhelper-12.5.3.ebuild
@@ -0,0 +1,73 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit eutils toolchain-funcs
+
+DESCRIPTION="Collection of programs that can be used to automate common tasks 
in debian/rules"
+HOMEPAGE="https://tracker.debian.org/pkg/debhelper;
+SRC_URI="mirror://debian/pool/main/d/${PN}/${P/-/_}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-linux"
+IUSE="test"
+DH_LANGS=( de es fr )
+IUSE+=" ${DH_LANGS[@]/#/l10n_}"
+
+NLS_DEPEND=$(
+   printf "l10n_%s? ( >=app-text/po4a-0.24 )\n" ${DH_LANGS[@]}
+)
+
+RDEPEND="
+   >=dev-lang/perl-5.10:=
+   >=app-arch/dpkg-1.17
+   dev-perl/TimeDate
+   virtual/perl-Getopt-Long
+"
+DEPEND="
+   ${RDEPEND}
+   ${NLS_DEPEND}
+   test? (
+   dev-perl/Test-Pod
+   sys-apps/fakeroot
+   )
+"
+
+S=${WORKDIR}/${PN}
+
+src_compile() {
+   tc-export CC
+
+   local LANGS="" USE_NLS=no lang
+   for lang in ${DH_LANGS[@]}; do
+   if use l10n_${lang}; then
+   LANGS+=" ${lang}"
+   USE_NLS=yes
+   fi
+   done
+
+   emake USE_NLS="${USE_NLS}" LANGS="${LANGS}" build
+}
+
+src_install() {
+   emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
+   dodoc doc/* debian/changelog
+   docinto examples
+   dodoc examples/*
+   local lang
+   for manfile in *.1 *.7 ; do
+   for lang in ${DH_LANGS[@]}; do
+   case ${manfile} in
+   *.${lang}.?)
+   use l10n_${lang} \
+   && cp ${manfile} 
"${T}"/${manfile/.${lang}/} \
+   && doman -i18n=${lang} 
"${T}"/${manfile/.${lang}/}
+   ;;
+   *)
+   doman ${manfile}
+   ;;
+   esac
+   done
+   done
+}



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/barnyard2/, net-analyzer/barnyard2/files/

2019-08-20 Thread Jeroen Roovers
commit: d7f3d4105fd13bbcf311254a76a36b401ccb6bab
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Aug 20 08:29:21 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Aug 20 08:30:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7f3d410

net-analyzer/barnyard2: Fix building against dev-db/mysql-connector-c-8*

Package-Manager: Portage-2.3.72, Repoman-2.3.17
Signed-off-by: Jeroen Roovers  gentoo.org>

 net-analyzer/barnyard2/barnyard2-1.13.ebuild  |  1 +
 net-analyzer/barnyard2/files/barnyard2-1.13-my_bool.patch | 11 +++
 2 files changed, 12 insertions(+)

diff --git a/net-analyzer/barnyard2/barnyard2-1.13.ebuild 
b/net-analyzer/barnyard2/barnyard2-1.13.ebuild
index 7214129d7ec..64f00cbb8a9 100644
--- a/net-analyzer/barnyard2/barnyard2-1.13.ebuild
+++ b/net-analyzer/barnyard2/barnyard2-1.13.ebuild
@@ -28,6 +28,7 @@ S="${WORKDIR}/${PN}-2-${PV}"
 PATCHES=(
"${FILESDIR}"/${PN}-1.13-free.patch
"${FILESDIR}"/${PN}-1.13-libdir.patch
+   "${FILESDIR}"/${PN}-1.13-my_bool.patch
"${FILESDIR}"/${PN}-1.13-odbc.patch
"${FILESDIR}"/${PN}-1.13-pcap-1.9.0.patch
 )

diff --git a/net-analyzer/barnyard2/files/barnyard2-1.13-my_bool.patch 
b/net-analyzer/barnyard2/files/barnyard2-1.13-my_bool.patch
new file mode 100644
index 000..9cd93220662
--- /dev/null
+++ b/net-analyzer/barnyard2/files/barnyard2-1.13-my_bool.patch
@@ -0,0 +1,11 @@
+--- a/src/output-plugins/spo_database.h
 b/src/output-plugins/spo_database.h
+@@ -357,7 +357,7 @@
+ /* Herited from shared data globals */
+ 
+ unsigned long pThreadID; /* Used to store thread information and know if 
we "reconnected automaticaly" */
+-my_bool mysql_reconnect; /* We will handle it via the api. */
++u_int8_t mysql_reconnect; /* We will handle it via the api. */
+ #endif /* ENABLE_MYSQL */
+ 
+ #ifdef ENABLE_POSTGRESQL



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/argus-clients/, net-analyzer/argus-clients/files/

2019-08-20 Thread Jeroen Roovers
commit: 37f1aed97d3aa07129af7d3edd9acac50b342992
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Aug 20 08:15:41 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Aug 20 08:19:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37f1aed9

net-analyzer/argus-clients: Fix building against dev-db/mysql-connector-c-8*

Package-Manager: Portage-2.3.72, Repoman-2.3.17
Bug: https://bugs.gentoo.org/665932
Signed-off-by: Jeroen Roovers  gentoo.org>

 .../argus-clients/argus-clients-3.0.8.2-r3.ebuild  | 75 ++
 .../files/argus-clients-3.0.8.2-my_bool.patch  | 42 
 2 files changed, 117 insertions(+)

diff --git a/net-analyzer/argus-clients/argus-clients-3.0.8.2-r3.ebuild 
b/net-analyzer/argus-clients/argus-clients-3.0.8.2-r3.ebuild
new file mode 100644
index 000..637ef50ad05
--- /dev/null
+++ b/net-analyzer/argus-clients/argus-clients-3.0.8.2-r3.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit autotools toolchain-funcs
+
+DESCRIPTION="Clients for net-analyzer/argus"
+HOMEPAGE="https://www.qosient.com/argus/;
+SRC_URI="https://qosient.com/argus/dev/${P}.tar.gz;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="debug ft geoip mysql sasl tcpd"
+
+ARGUS_CDEPEND="
+   net-analyzer/rrdtool[perl]
+   net-libs/libpcap
+   net-libs/libtirpc:=
+   sys-libs/ncurses:=
+   sys-libs/readline:=
+   sys-libs/zlib
+   ft? ( net-analyzer/flow-tools )
+   geoip? ( dev-libs/geoip )
+   mysql? ( dev-db/mysql-connector-c:0= )
+   sasl? ( dev-libs/cyrus-sasl )
+"
+RDEPEND="
+   ${ARGUS_CDEPEND}
+"
+DEPEND="
+   ${ARGUS_CDEPEND}
+   sys-devel/bison
+   sys-devel/flex
+   virtual/pkgconfig
+"
+PATCHES=(
+   "${FILESDIR}"/${PN}-3.0.4.1-disable-tcp-wrappers-automagic.patch
+   "${FILESDIR}"/${PN}-3.0.7.21-curses-readline.patch
+   "${FILESDIR}"/${PN}-3.0.8.2-ar.patch
+   "${FILESDIR}"/${PN}-3.0.8.2-curses-readline.patch
+   "${FILESDIR}"/${PN}-3.0.8.2-my_bool.patch
+   "${FILESDIR}"/${PN}-3.0.8.2-rpc.patch
+)
+
+src_prepare() {
+   default
+
+   eautoreconf
+}
+
+src_configure() {
+   tc-export AR RANLIB
+
+   use debug && touch .debug
+   econf \
+   $(use_with ft libft) \
+   $(use_with geoip GeoIP /usr/) \
+   $(use_with sasl) \
+   $(use_with tcpd wrappers) \
+   $(use_with mysql mysql /usr)
+}
+
+src_compile() {
+   emake \
+   CCOPT="${CFLAGS} ${LDFLAGS}" \
+   RANLIB=$(tc-getRANLIB) \
+   CURSESLIB="$( $(tc-getPKG_CONFIG) --libs ncurses)"
+}
+
+src_install() {
+   dobin bin/ra*
+   dodoc ChangeLog CREDITS README CHANGES
+   doman man/man{1,5}/*
+}

diff --git 
a/net-analyzer/argus-clients/files/argus-clients-3.0.8.2-my_bool.patch 
b/net-analyzer/argus-clients/files/argus-clients-3.0.8.2-my_bool.patch
new file mode 100644
index 000..99cd6b255ae
--- /dev/null
+++ b/net-analyzer/argus-clients/files/argus-clients-3.0.8.2-my_bool.patch
@@ -0,0 +1,42 @@
+--- a/examples/ramysql/rasql.c
 b/examples/ramysql/rasql.c
+@@ -414,7 +414,7 @@
+ void
+ RaMySQLInit ()
+ {
+-   my_bool reconnectbuf = 1, *reconnect = 
++   int reconnectbuf = 1, *reconnect = 
+char userbuf[1024], sbuf[1024], db[1024], *dbptr = NULL;
+char *sptr = NULL, *ptr;
+MYSQL_RES *mysqlRes;
+--- a/examples/ramysql/rasqlinsert.c
 b/examples/ramysql/rasqlinsert.c
+@@ -7026,7 +7026,7 @@
+ void
+ RaMySQLInit ()
+ {
+-   my_bool reconnectbuf = 1, *reconnect = 
++   int reconnectbuf = 1, *reconnect = 
+char *sptr = NULL, *ptr;
+char userbuf[1024], sbuf[1024], db[1024], *dbptr = NULL;
+MYSQL_RES *mysqlRes;
+--- a/examples/ramysql/rasqltimeindex.c
 b/examples/ramysql/rasqltimeindex.c
+@@ -539,7 +539,7 @@
+ void
+ RaMySQLInit ()
+ {
+-   my_bool reconnectbuf = 1, *reconnect = 
++   int reconnectbuf = 1, *reconnect = 
+char *sptr = NULL, *ptr;
+char userbuf[1024], sbuf[1024], db[1024], *dbptr = NULL;
+MYSQL_RES *mysqlRes;
+@@ -797,7 +797,7 @@
+ void
+ RaMySQLInit ()
+ {
+-   my_bool reconnectbuf = 1, *reconnect = 
++   int reconnectbuf = 1, *reconnect = 
+unsigned int RaTableFlags = 0;
+int retn = 0, x;
+char *sptr = NULL, *ptr;



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

2019-08-20 Thread Mart Raudsepp
commit: e20610e53d1e2192cf24d71100aeb567ba7d900b
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Tue Aug 20 07:50:50 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Tue Aug 20 08:07:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e20610e5

dev-libs/vala-common: bump p.masked to 0.45.91

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

 dev-libs/vala-common/Manifest   | 2 +-
 .../{vala-common-0.45.90.ebuild => vala-common-0.45.91.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/vala-common/Manifest b/dev-libs/vala-common/Manifest
index 27eab0a54e0..885304a5b87 100644
--- a/dev-libs/vala-common/Manifest
+++ b/dev-libs/vala-common/Manifest
@@ -1,4 +1,4 @@
 DIST vala-0.40.14.tar.xz 3398668 BLAKE2B 
6df1e47439000e1a49dda4d58651b7039737a2648563fc4e09d679bf63d968d9dafcc9ab5e371ca450bab70163f9fb1fb30ffa75451940f9a1518d7fb3a5ebf1
 SHA512 
0387bbcf35055f2b4a8f790370847bcc12a92d7969d9ed583b0630be8b637a9e28895508da9cdfab8baf97ad5fdc9249bf82e31e6c1ee19d0026f5061c027db8
 DIST vala-0.42.7.tar.xz 3362192 BLAKE2B 
59f76d43f4bf80f75681c386cb30c4686bf93444bcd371900b134e0338ab865cf61d4cfd35facfff47c78075c384028cbcbd318eb927444f15862f7a28bccaa1
 SHA512 
d9044b126c91f3b1835a7182a054464339e4e2e52e63df90f43d2d5d9cba06fd6bb7eed5f6aa4d502f43f0a1232610d39d244952cfca54f63eb019e764899eca
 DIST vala-0.44.7.tar.xz 3355928 BLAKE2B 
172e9fee6edec63324b9babc125d2bdb53c2025b2cb86339b54a4c8017ccdf78a848076fdd6a8f5200c15c48864542d711896160f78790d36a29d30980177d34
 SHA512 
5a645e1b1929644ec6b53d06895afcf62d41d6fd63f82c3be3aa4e28847173071621ec857cb973df38d36e60eb960954c2fb48fb4189e1afcbb25a2376ff0d77
-DIST vala-0.45.90.tar.xz 3357976 BLAKE2B 
8c7beb7f2e0fc88b2d789334d0986a6822448148fda2666bc34ff2d3a928e0256895025a88a86c5ca35a9969536157eb27226523c1bda0355bbd436e3c82337b
 SHA512 
3d8ca535f30ba73c2433f377f029b3f7edb92f4a5a71a54ddd95936314f881d5d0b6e31a8fc8747197ab458b3bd84b3e1f1b7a7a73d6bf99edb544e6b2b5339b
+DIST vala-0.45.91.tar.xz 3358640 BLAKE2B 
e51e1e30042cce60f58f9c63698222d40e719f2cd9258d264bdffc2226cd0c126dc0c256d557a2bc600cd2c0cd9f1f55987f9e96ac666d9d57fdd7b1501afb1d
 SHA512 
7bddbd0d711b50154be6e6d3ebe0576c3ead0f533a0b177c3eb181555eb3d096353157cc490b49c9453686e765739283e30d3881652a9bfb82baeed9be4817b6

diff --git a/dev-libs/vala-common/vala-common-0.45.90.ebuild 
b/dev-libs/vala-common/vala-common-0.45.91.ebuild
similarity index 100%
rename from dev-libs/vala-common/vala-common-0.45.90.ebuild
rename to dev-libs/vala-common/vala-common-0.45.91.ebuild



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

2019-08-20 Thread Mart Raudsepp
commit: 9baa11f275bebb0560a37ebbd2491de209ecf2b5
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Tue Aug 20 07:54:50 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Tue Aug 20 08:07:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9baa11f2

dev-lang/vala: bump p.masked to 0.45.91

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

 dev-lang/vala/Manifest | 2 +-
 dev-lang/vala/{vala-0.45.90.ebuild => vala-0.45.91.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/vala/Manifest b/dev-lang/vala/Manifest
index 98db292b439..1b6337d37a1 100644
--- a/dev-lang/vala/Manifest
+++ b/dev-lang/vala/Manifest
@@ -4,4 +4,4 @@ DIST vala-0.40.14.tar.xz 3398668 BLAKE2B 
6df1e47439000e1a49dda4d58651b7039737a26
 DIST vala-0.40.15.tar.xz 3406020 BLAKE2B 
aaa2967a140fae94b4609f4b54f2e37c71fe79453cb3ea30568ee018d2227d1c45061440ad632bcfc53650fbe4dba2f062d8095f95936623a49efb5e97f2c2bb
 SHA512 
abb918b00afab7a85586f9bd26b78be87e19b725752cbb77dd428da2e6241b1f3d4aaa70e3e6daf6f373562d02f1ff8016e6c9107e2bf088d9b84334adecdda2
 DIST vala-0.42.7.tar.xz 3362192 BLAKE2B 
59f76d43f4bf80f75681c386cb30c4686bf93444bcd371900b134e0338ab865cf61d4cfd35facfff47c78075c384028cbcbd318eb927444f15862f7a28bccaa1
 SHA512 
d9044b126c91f3b1835a7182a054464339e4e2e52e63df90f43d2d5d9cba06fd6bb7eed5f6aa4d502f43f0a1232610d39d244952cfca54f63eb019e764899eca
 DIST vala-0.44.7.tar.xz 3355928 BLAKE2B 
172e9fee6edec63324b9babc125d2bdb53c2025b2cb86339b54a4c8017ccdf78a848076fdd6a8f5200c15c48864542d711896160f78790d36a29d30980177d34
 SHA512 
5a645e1b1929644ec6b53d06895afcf62d41d6fd63f82c3be3aa4e28847173071621ec857cb973df38d36e60eb960954c2fb48fb4189e1afcbb25a2376ff0d77
-DIST vala-0.45.90.tar.xz 3357976 BLAKE2B 
8c7beb7f2e0fc88b2d789334d0986a6822448148fda2666bc34ff2d3a928e0256895025a88a86c5ca35a9969536157eb27226523c1bda0355bbd436e3c82337b
 SHA512 
3d8ca535f30ba73c2433f377f029b3f7edb92f4a5a71a54ddd95936314f881d5d0b6e31a8fc8747197ab458b3bd84b3e1f1b7a7a73d6bf99edb544e6b2b5339b
+DIST vala-0.45.91.tar.xz 3358640 BLAKE2B 
e51e1e30042cce60f58f9c63698222d40e719f2cd9258d264bdffc2226cd0c126dc0c256d557a2bc600cd2c0cd9f1f55987f9e96ac666d9d57fdd7b1501afb1d
 SHA512 
7bddbd0d711b50154be6e6d3ebe0576c3ead0f533a0b177c3eb181555eb3d096353157cc490b49c9453686e765739283e30d3881652a9bfb82baeed9be4817b6

diff --git a/dev-lang/vala/vala-0.45.90.ebuild 
b/dev-lang/vala/vala-0.45.91.ebuild
similarity index 100%
rename from dev-lang/vala/vala-0.45.90.ebuild
rename to dev-lang/vala/vala-0.45.91.ebuild



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

2019-08-20 Thread Mart Raudsepp
commit: 05a353e5ea2e2c130d333fadb46231e0a025ceea
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Tue Aug 20 08:02:06 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Tue Aug 20 08:07:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05a353e5

dev-lang/vala:0.36: bump to 0.36.20

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

 dev-lang/vala/Manifest|  1 +
 dev-lang/vala/vala-0.36.20.ebuild | 37 +
 2 files changed, 38 insertions(+)

diff --git a/dev-lang/vala/Manifest b/dev-lang/vala/Manifest
index 1b6337d37a1..63fac01153b 100644
--- a/dev-lang/vala/Manifest
+++ b/dev-lang/vala/Manifest
@@ -1,5 +1,6 @@
 DIST vala-0.36.18.tar.xz 2905668 BLAKE2B 
ed7f8a38e99fd75945071cf54190631b0ccddbb682da9790bb07b4d334063679bfb002bcf6e5c6c1807ca2b1c4e80659441779c113a7b05f9b4ff291f5ada201
 SHA512 
69d76fddee8e52e54dc8a3dbe1c0ffc5aeaede096f52614c3a7e18d28ec7a6a31aa617719a4d27a7a15867cd740888f5b381cd612d8fc010f1ea9fd9389d0655
 DIST vala-0.36.19.tar.xz 2909240 BLAKE2B 
8b41ab516a6e5c9eef6e4f5590cfa49892e69a8bf28837c2816fb2024a91d614df3b0007554aad3ab8a87b18f174c5571289e0264d3a724fb223276d03a3001b
 SHA512 
cb275146537f3cf0678d7de5c0ee1b1b364fef11099f3c3aaba48c1d0b839fd313cc04bef981f36e5f08b3cbb08cd3aef930357e4ee1ed52fefef446aede6449
+DIST vala-0.36.20.tar.xz 2918672 BLAKE2B 
9c2c46992444fafd173f767a4a10ac185b0c49db0ede3cb52dec10da08ab3370adb4445087b24c91c9126e8586418a149ac783b3de92cac6c4badd488f3dc56f
 SHA512 
21ca0573a2f9d945a362f7f15da7db25532fd7b19a0aa0442243b95df0568b7a88ae94d0659af44f6f57e364f4370de361102e7e46a070487985e7cb5d81277c
 DIST vala-0.40.14.tar.xz 3398668 BLAKE2B 
6df1e47439000e1a49dda4d58651b7039737a2648563fc4e09d679bf63d968d9dafcc9ab5e371ca450bab70163f9fb1fb30ffa75451940f9a1518d7fb3a5ebf1
 SHA512 
0387bbcf35055f2b4a8f790370847bcc12a92d7969d9ed583b0630be8b637a9e28895508da9cdfab8baf97ad5fdc9249bf82e31e6c1ee19d0026f5061c027db8
 DIST vala-0.40.15.tar.xz 3406020 BLAKE2B 
aaa2967a140fae94b4609f4b54f2e37c71fe79453cb3ea30568ee018d2227d1c45061440ad632bcfc53650fbe4dba2f062d8095f95936623a49efb5e97f2c2bb
 SHA512 
abb918b00afab7a85586f9bd26b78be87e19b725752cbb77dd428da2e6241b1f3d4aaa70e3e6daf6f373562d02f1ff8016e6c9107e2bf088d9b84334adecdda2
 DIST vala-0.42.7.tar.xz 3362192 BLAKE2B 
59f76d43f4bf80f75681c386cb30c4686bf93444bcd371900b134e0338ab865cf61d4cfd35facfff47c78075c384028cbcbd318eb927444f15862f7a28bccaa1
 SHA512 
d9044b126c91f3b1835a7182a054464339e4e2e52e63df90f43d2d5d9cba06fd6bb7eed5f6aa4d502f43f0a1232610d39d244952cfca54f63eb019e764899eca

diff --git a/dev-lang/vala/vala-0.36.20.ebuild 
b/dev-lang/vala/vala-0.36.20.ebuild
new file mode 100644
index 000..4d1cbf2216f
--- /dev/null
+++ b/dev-lang/vala/vala-0.36.20.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit gnome2
+
+DESCRIPTION="Compiler for the GObject type system"
+HOMEPAGE="https://wiki.gnome.org/Projects/Vala;
+
+LICENSE="LGPL-2.1"
+SLOT="0.36"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
+IUSE="test"
+
+RDEPEND="
+   >=dev-libs/glib-2.32:2
+   >=dev-libs/vala-common-${PV}
+"
+DEPEND="${RDEPEND}
+   !${CATEGORY}/${PN}:0
+   dev-libs/libxslt
+   sys-devel/flex
+   virtual/pkgconfig
+   virtual/yacc
+   test? (
+   dev-libs/dbus-glib
+   >=dev-libs/glib-2.26:2
+   dev-libs/gobject-introspection )
+"
+
+src_configure() {
+   # weasyprint enables generation of PDF from HTML
+   gnome2_src_configure \
+   --disable-unversioned \
+   VALAC=: \
+   WEASYPRINT=:
+}



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

2019-08-20 Thread Mart Raudsepp
commit: 8ec68c410cf30528bf17e510845fcd8e4ab69548
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Tue Aug 20 08:05:36 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Tue Aug 20 08:07:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ec68c41

dev-lang/vala:0.40: bump to 0.40.16

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

 dev-lang/vala/Manifest|  1 +
 dev-lang/vala/vala-0.40.16.ebuild | 53 +++
 2 files changed, 54 insertions(+)

diff --git a/dev-lang/vala/Manifest b/dev-lang/vala/Manifest
index 63fac01153b..e8910f645e0 100644
--- a/dev-lang/vala/Manifest
+++ b/dev-lang/vala/Manifest
@@ -3,6 +3,7 @@ DIST vala-0.36.19.tar.xz 2909240 BLAKE2B 
8b41ab516a6e5c9eef6e4f5590cfa49892e69a8
 DIST vala-0.36.20.tar.xz 2918672 BLAKE2B 
9c2c46992444fafd173f767a4a10ac185b0c49db0ede3cb52dec10da08ab3370adb4445087b24c91c9126e8586418a149ac783b3de92cac6c4badd488f3dc56f
 SHA512 
21ca0573a2f9d945a362f7f15da7db25532fd7b19a0aa0442243b95df0568b7a88ae94d0659af44f6f57e364f4370de361102e7e46a070487985e7cb5d81277c
 DIST vala-0.40.14.tar.xz 3398668 BLAKE2B 
6df1e47439000e1a49dda4d58651b7039737a2648563fc4e09d679bf63d968d9dafcc9ab5e371ca450bab70163f9fb1fb30ffa75451940f9a1518d7fb3a5ebf1
 SHA512 
0387bbcf35055f2b4a8f790370847bcc12a92d7969d9ed583b0630be8b637a9e28895508da9cdfab8baf97ad5fdc9249bf82e31e6c1ee19d0026f5061c027db8
 DIST vala-0.40.15.tar.xz 3406020 BLAKE2B 
aaa2967a140fae94b4609f4b54f2e37c71fe79453cb3ea30568ee018d2227d1c45061440ad632bcfc53650fbe4dba2f062d8095f95936623a49efb5e97f2c2bb
 SHA512 
abb918b00afab7a85586f9bd26b78be87e19b725752cbb77dd428da2e6241b1f3d4aaa70e3e6daf6f373562d02f1ff8016e6c9107e2bf088d9b84334adecdda2
+DIST vala-0.40.16.tar.xz 3412776 BLAKE2B 
0cfe072ce3dfd8b95e804582899ff002869bc005b93ad1ba68e9b085e12444a3ef967c6282d65bab7f8302018edc075077ae8de65182b9123f8f74a91ea062bf
 SHA512 
e37c8573fe6104c0ad6f29748cd28564638d62ebe499ce084481c74d2601a19334c431575904fbbed490b44ea117246516580a5d658dfba30c63de7e7c3fa3e0
 DIST vala-0.42.7.tar.xz 3362192 BLAKE2B 
59f76d43f4bf80f75681c386cb30c4686bf93444bcd371900b134e0338ab865cf61d4cfd35facfff47c78075c384028cbcbd318eb927444f15862f7a28bccaa1
 SHA512 
d9044b126c91f3b1835a7182a054464339e4e2e52e63df90f43d2d5d9cba06fd6bb7eed5f6aa4d502f43f0a1232610d39d244952cfca54f63eb019e764899eca
 DIST vala-0.44.7.tar.xz 3355928 BLAKE2B 
172e9fee6edec63324b9babc125d2bdb53c2025b2cb86339b54a4c8017ccdf78a848076fdd6a8f5200c15c48864542d711896160f78790d36a29d30980177d34
 SHA512 
5a645e1b1929644ec6b53d06895afcf62d41d6fd63f82c3be3aa4e28847173071621ec857cb973df38d36e60eb960954c2fb48fb4189e1afcbb25a2376ff0d77
 DIST vala-0.45.91.tar.xz 3358640 BLAKE2B 
e51e1e30042cce60f58f9c63698222d40e719f2cd9258d264bdffc2226cd0c126dc0c256d557a2bc600cd2c0cd9f1f55987f9e96ac666d9d57fdd7b1501afb1d
 SHA512 
7bddbd0d711b50154be6e6d3ebe0576c3ead0f533a0b177c3eb181555eb3d096353157cc490b49c9453686e765739283e30d3881652a9bfb82baeed9be4817b6

diff --git a/dev-lang/vala/vala-0.40.16.ebuild 
b/dev-lang/vala/vala-0.40.16.ebuild
new file mode 100644
index 000..770448d2d76
--- /dev/null
+++ b/dev-lang/vala/vala-0.40.16.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+GNOME2_EAUTORECONF="yes"
+
+inherit gnome2
+
+DESCRIPTION="Compiler for the GObject type system"
+HOMEPAGE="https://wiki.gnome.org/Projects/Vala;
+
+LICENSE="LGPL-2.1"
+SLOT="0.40"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
+IUSE="test valadoc"
+
+RDEPEND="
+   >=dev-libs/glib-2.40.0:2
+   >=dev-libs/vala-common-${PV}
+   valadoc? ( >=media-gfx/graphviz-2.16 )
+"
+DEPEND="${RDEPEND}
+   !${CATEGORY}/${PN}:0
+   dev-libs/libxslt
+   sys-devel/flex
+   virtual/pkgconfig
+   virtual/yacc
+   test? (
+   dev-libs/dbus-glib
+   >=dev-libs/glib-2.26:2
+   dev-libs/gobject-introspection )
+"
+
+PATCHES=(
+   # From master
+   "${FILESDIR}"/0.40-Allow-disabling-the-build-of-valadoc.patch
+   # Add missing bits to make valadoc parallel installable
+   "${FILESDIR}"/0.40-valadoc-doclets-data-parallel-installable.patch
+)
+
+src_configure() {
+   # weasyprint enables generation of PDF from HTML
+   gnome2_src_configure \
+   --disable-unversioned \
+   $(use_enable valadoc) \
+   VALAC=: \
+   WEASYPRINT=:
+}
+
+src_install() {
+   default
+   find "${D}" -name "*.la" -delete || die
+}



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

2019-08-20 Thread Jeroen Roovers
commit: 8ca909c61b09a3f28fed61e5eee28e0645fce71d
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Aug 20 07:53:29 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Aug 20 07:56:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ca909c6

net-analyzer/argus-clients: Use HTTPS

Package-Manager: Portage-2.3.72, Repoman-2.3.17
Signed-off-by: Jeroen Roovers  gentoo.org>

 net-analyzer/argus-clients/argus-clients-3.0.8.2-r2.ebuild | 4 ++--
 net-analyzer/argus-clients/argus-clients-3.0.8.2.ebuild| 6 +++---
 net-analyzer/argus-clients/argus-clients-3.0.8.ebuild  | 6 +++---
 3 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/net-analyzer/argus-clients/argus-clients-3.0.8.2-r2.ebuild 
b/net-analyzer/argus-clients/argus-clients-3.0.8.2-r2.ebuild
index 42799057487..d87060d87be 100644
--- a/net-analyzer/argus-clients/argus-clients-3.0.8.2-r2.ebuild
+++ b/net-analyzer/argus-clients/argus-clients-3.0.8.2-r2.ebuild
@@ -5,8 +5,8 @@ EAPI=6
 inherit autotools toolchain-funcs
 
 DESCRIPTION="Clients for net-analyzer/argus"
-HOMEPAGE="http://www.qosient.com/argus/;
-SRC_URI="http://qosient.com/argus/dev/${P}.tar.gz;
+HOMEPAGE="https://www.qosient.com/argus/;
+SRC_URI="https://qosient.com/argus/dev/${P}.tar.gz;
 
 LICENSE="GPL-3"
 SLOT="0"

diff --git a/net-analyzer/argus-clients/argus-clients-3.0.8.2.ebuild 
b/net-analyzer/argus-clients/argus-clients-3.0.8.2.ebuild
index efa07fed3bd..d16c7f6422a 100644
--- a/net-analyzer/argus-clients/argus-clients-3.0.8.2.ebuild
+++ b/net-analyzer/argus-clients/argus-clients-3.0.8.2.ebuild
@@ -1,12 +1,12 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 inherit autotools eutils toolchain-funcs
 
 DESCRIPTION="Clients for net-analyzer/argus"
-HOMEPAGE="http://www.qosient.com/argus/;
-SRC_URI="http://qosient.com/argus/dev/${P}.tar.gz;
+HOMEPAGE="https://www.qosient.com/argus/;
+SRC_URI="https://qosient.com/argus/dev/${P}.tar.gz;
 
 LICENSE="GPL-3"
 SLOT="0"

diff --git a/net-analyzer/argus-clients/argus-clients-3.0.8.ebuild 
b/net-analyzer/argus-clients/argus-clients-3.0.8.ebuild
index 7dbfc5a721a..742c6cbebee 100644
--- a/net-analyzer/argus-clients/argus-clients-3.0.8.ebuild
+++ b/net-analyzer/argus-clients/argus-clients-3.0.8.ebuild
@@ -1,12 +1,12 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 inherit autotools eutils toolchain-funcs
 
 DESCRIPTION="Clients for net-analyzer/argus"
-HOMEPAGE="http://www.qosient.com/argus/;
-SRC_URI="http://qosient.com/argus/dev/${P}.tar.gz;
+HOMEPAGE="https://www.qosient.com/argus/;
+SRC_URI="https://qosient.com/argus/dev/${P}.tar.gz;
 
 LICENSE="GPL-3"
 SLOT="0"



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

2019-08-20 Thread Jeroen Roovers
commit: 0a46426e653eee1d55076b1d844016811e7810a8
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Aug 20 07:54:45 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Aug 20 07:56:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a46426e

net-analyzer/argus: Use HTTPS

Package-Manager: Portage-2.3.72, Repoman-2.3.17
Signed-off-by: Jeroen Roovers  gentoo.org>

 net-analyzer/argus/argus-3.0.8.2-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-analyzer/argus/argus-3.0.8.2-r1.ebuild 
b/net-analyzer/argus/argus-3.0.8.2-r1.ebuild
index 7b021685946..83eacad11e4 100644
--- a/net-analyzer/argus/argus-3.0.8.2-r1.ebuild
+++ b/net-analyzer/argus/argus-3.0.8.2-r1.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 inherit autotools eutils user
 
 DESCRIPTION="network Audit Record Generation and Utilization System"
-HOMEPAGE="http://www.qosient.com/argus/;
+HOMEPAGE="https://www.qosient.com/argus/;
 SRC_URI="${HOMEPAGE}dev/${P/_rc/.rc.}.tar.gz"
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/ipsumdump/, net-analyzer/ipsumdump/files/

2019-08-20 Thread Jeroen Roovers
commit: 569015025d09f245f150051fc003e76ac5332be4
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Aug 20 07:49:16 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Aug 20 07:50:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56901502

net-analyzer/ipsumdump: Fix includes, set OS headers dependency

Package-Manager: Portage-2.3.72, Repoman-2.3.17
Fixes: https://bugs.gentoo.org/692550
Signed-off-by: Jeroen Roovers  gentoo.org>

 net-analyzer/ipsumdump/files/ipsumdump-1.86-SIOCGSTAMP.patch   | 10 ++
 .../{ipsumdump-1.86.ebuild => ipsumdump-1.86-r1.ebuild}|  8 ++--
 net-analyzer/ipsumdump/ipsumdump-1.86.ebuild   |  3 ++-
 3 files changed, 18 insertions(+), 3 deletions(-)

diff --git a/net-analyzer/ipsumdump/files/ipsumdump-1.86-SIOCGSTAMP.patch 
b/net-analyzer/ipsumdump/files/ipsumdump-1.86-SIOCGSTAMP.patch
new file mode 100644
index 000..c2f0a74fff1
--- /dev/null
+++ b/net-analyzer/ipsumdump/files/ipsumdump-1.86-SIOCGSTAMP.patch
@@ -0,0 +1,10 @@
+--- a/src/fromdevice.cc
 b/src/fromdevice.cc
+@@ -47,6 +47,7 @@
+ 
+ #if FROMDEVICE_ALLOW_LINUX
+ # include 
++# include 
+ # include 
+ # include 
+ # include 

diff --git a/net-analyzer/ipsumdump/ipsumdump-1.86.ebuild 
b/net-analyzer/ipsumdump/ipsumdump-1.86-r1.ebuild
similarity index 81%
copy from net-analyzer/ipsumdump/ipsumdump-1.86.ebuild
copy to net-analyzer/ipsumdump/ipsumdump-1.86-r1.ebuild
index 182f6ec8e8f..25325a3484d 100644
--- a/net-analyzer/ipsumdump/ipsumdump-1.86.ebuild
+++ b/net-analyzer/ipsumdump/ipsumdump-1.86-r1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 DESCRIPTION="Simple TCP/IP Dump summarizer/analyzer"
 HOMEPAGE="http://read.seas.harvard.edu/~kohler/ipsumdump/;
@@ -20,11 +20,15 @@ DEPEND="
dev-lang/perl
dev-libs/expat
sys-apps/texinfo
+   virtual/os-headers
 "
 DOCS=(
NEWS.md
README.md
 )
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.86-SIOCGSTAMP.patch
+)
 
 src_configure() {
econf \

diff --git a/net-analyzer/ipsumdump/ipsumdump-1.86.ebuild 
b/net-analyzer/ipsumdump/ipsumdump-1.86.ebuild
index 182f6ec8e8f..784df50ece5 100644
--- a/net-analyzer/ipsumdump/ipsumdump-1.86.ebuild
+++ b/net-analyzer/ipsumdump/ipsumdump-1.86.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -20,6 +20,7 @@ DEPEND="
dev-lang/perl
dev-libs/expat
sys-apps/texinfo
+   virtual/os-headers
 "
 DOCS=(
NEWS.md



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

2019-08-20 Thread Jeroen Roovers
commit: 4b87613b200acaeb6d9c50069f37d8868402c2d3
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Aug 20 07:28:30 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Aug 20 07:50:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b87613b

net-analyzer/cacti-spine: Add live ebuild

Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: Jeroen Roovers  gentoo.org>

 net-analyzer/cacti-spine/cacti-spine-9.ebuild | 50 +++
 1 file changed, 50 insertions(+)

diff --git a/net-analyzer/cacti-spine/cacti-spine-9.ebuild 
b/net-analyzer/cacti-spine/cacti-spine-9.ebuild
new file mode 100644
index 000..c378e4a617f
--- /dev/null
+++ b/net-analyzer/cacti-spine/cacti-spine-9.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit autotools git-r3
+
+MY_P=${PN}-${PV/_p/-}
+
+DESCRIPTION="Spine is a fast poller for Cacti (formerly known as Cactid)"
+HOMEPAGE="https://cacti.net/spine_info.php;
+EGIT_REPO_URI="https://github.com/Cacti/spine;
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS=""
+
+CDEPEND="
+   dev-libs/openssl:0=
+   net-analyzer/net-snmp:=
+   dev-db/mysql-connector-c:0=
+"
+DEPEND="
+   ${CDEPEND}
+   sys-apps/help2man
+"
+RDEPEND="
+   ${CDEPEND}
+   >net-analyzer/cacti-0.8.8
+"
+PATCHES=(
+   "${FILESDIR}"/${PN}-0.8.8d-ping.patch
+   "${FILESDIR}"/${PN}-0.8.8g-net-snmp.patch
+)
+
+src_prepare() {
+   default
+
+   AT_M4DIR="config" eautoreconf
+}
+
+src_install() {
+   dosbin spine
+
+   insinto /etc/
+   insopts -m0640 -o root
+   newins spine.conf{.dist,}
+
+   doman spine.1
+   dodoc CHANGELOG
+}



[gentoo-commits] repo/user/ssnb:master commit in: net-misc/megasync/

2019-08-20 Thread Samuel Bernardo
commit: af3c04297089a80c98c6b6f554643a2e7e0df669
Author: Samuel Bernardo  gmail  com>
AuthorDate: Tue Aug 20 07:45:02 2019 +
Commit: Samuel Bernardo  gmail  com>
CommitDate: Tue Aug 20 07:45:15 2019 +
URL:https://gitweb.gentoo.org/repo/user/ssnb.git/commit/?id=af3c0429

update megasync

Signed-off-by: Samuel Bernardo  gmail.com>

 net-misc/megasync/Manifest  |   1 +
 net-misc/megasync/megasync-4.2.3.ebuild | 159 
 2 files changed, 160 insertions(+)

diff --git a/net-misc/megasync/Manifest b/net-misc/megasync/Manifest
index d2f4bdb..3d33649 100644
--- a/net-misc/megasync/Manifest
+++ b/net-misc/megasync/Manifest
@@ -19,5 +19,6 @@ EBUILD megasync-3.7.1-r1.ebuild 3478 BLAKE2B 
7c1e3e43bb883856a53b595cf5dea8b546b
 EBUILD megasync-4.0.2.ebuild 3478 BLAKE2B 
7c1e3e43bb883856a53b595cf5dea8b546bace994c46653d4e1b144aae175122ea8be06d758a900c508af9bf9d9ae9e63cc02cdef085f74b571f14ee98a8ae49
 SHA512 
76761c259bbe503d0f5cfcda4116f3176162a46e5705e085e8fc7624d18c11d1a8b16d3c80566132e37abf6d04563446382e53ec21b7a1c4ced70f8a95e06ff7
 EBUILD megasync-4.1.1.ebuild 3478 BLAKE2B 
7c1e3e43bb883856a53b595cf5dea8b546bace994c46653d4e1b144aae175122ea8be06d758a900c508af9bf9d9ae9e63cc02cdef085f74b571f14ee98a8ae49
 SHA512 
76761c259bbe503d0f5cfcda4116f3176162a46e5705e085e8fc7624d18c11d1a8b16d3c80566132e37abf6d04563446382e53ec21b7a1c4ced70f8a95e06ff7
 EBUILD megasync-4.2.0.ebuild 3917 BLAKE2B 
7295114af019c39c00e8d487c8cc6bfd9ad3480c83374779658325971da2c647ecaa9113b8e5a4646bf6fadbb4d882728f060c809d91aed52208a7a202b32669
 SHA512 
de032dc55d676bbf93d017b2495038c09e859b193fce0bf5ee20e559d0f61e6d49c7742c2dadf3879419915ad93488ca841ec7cf9cb07b0243fe331726c20b81
+EBUILD megasync-4.2.3.ebuild 3915 BLAKE2B 
ed8dca3c7f8062d12e17a5143a8bd5a6ee9b8d79c54b395d9e0502a4d277acd62443c36ed09572aff677842c22b879160a62f92fb7beda90c57d3d6fc14ee8f6
 SHA512 
eb027f7cbf263075f181645ebe2625997ed7a499c8a5e285f52cdb348ef3295ecadb03240ee446a9362895f96e9bfd11657a27aca9fb34ab9d5422cc68d847e9
 EBUILD megasync-.ebuild 3637 BLAKE2B 
948364efa4ae9ce897da38659e669fbb509de374686832d4546caccc4f9333693749540c989f1bb074b9eb929b308978ed089f4b6be714dbf76c530e608b
 SHA512 
020ca96d8972f66cc79673bc31083af2fffacbb02dfeb12677d5d62f08605e1a4f9b29d55d5509231a416c39e7b1cd2e6b20d16c4af00a415cbaf4c133fa6c6d
 MISC metadata.xml 318 BLAKE2B 
ffc32715f0597b63ba78c242a5adfad13c921b43da17b5e07b4cca5e5ef69dbb3c89a7d110165dcea06ed317f873a5210db21be0ac5941dfb433185fdcb7a6e7
 SHA512 
e4930a21d6f75f5395e2e96436b42c792771fd7167abceeff0db7a9036616c6feeb6beee890afa6ff5e4584f5bb6938084316e60df57997aa1c20ba0a025514c

diff --git a/net-misc/megasync/megasync-4.2.3.ebuild 
b/net-misc/megasync/megasync-4.2.3.ebuild
new file mode 100644
index 000..744ef35
--- /dev/null
+++ b/net-misc/megasync/megasync-4.2.3.ebuild
@@ -0,0 +1,159 @@
+# Copyright 1999-2019 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=6
+
+inherit eutils multilib qmake-utils autotools versionator git-r3
+
+DESCRIPTION="A Qt-based program for syncing your MEGA account in your PC. This 
is the official app."
+HOMEPAGE="http://mega.co.nz;
+RTAG="_Linux"
+if [[ ${PV} == ** ]];then
+   EGIT_REPO_URI="https://github.com/meganz/MEGAsync;
+   KEYWORDS=""
+   EGIT_SUBMODULES=( '*' )
+else
+   #SDK_COMMIT="e8e66e9f030febfb35c9e4dd503d69091e28fc04"
+   #MY_PV="$(replace_all_version_separators _)"
+   EGIT_REPO_URI="https://github.com/meganz/MEGAsync;
+   EGIT_COMMIT="v${PV}.0${RTAG}"
+   EGIT_SUBMODULES=( '*' )
+   
#SRC_URI="https://github.com/meganz/MEGAsync/archive/v${PV}.0_Linux.tar.gz -> 
${P}.tar.gz
+   #https://github.com/meganz/sdk/archive/${SDK_COMMIT}.tar.gz -> 
${PN}-sdk-20170215.tar.gz"
+   KEYWORDS="~x86 ~amd64"
+   #RESTRICT="mirror"
+   #S="${WORKDIR}/MEGAsync-${PV}.0_Linux"
+fi
+
+LICENSE="MEGA"
+SLOT="0"
+IUSE="dolphin nautilus thunar +cryptopp +sqlite +zlib +curl freeimage readline 
examples threads qt5 java php python gnome"
+
+DEPEND="
+   dev-lang/swig
+   app-doc/doxygen
+   media-libs/libmediainfo
+   media-libs/libraw
+   !qt5? ( 
+   dev-qt/qtcore:4
+   dev-qt/qtgui:4
+   dev-qt/qtdbus:4
+   dev-libs/sni-qt
+   dev-qt/qtimageformats:5
+   dev-qt/qtsvg:5
+   )
+   qt5? ( 
+   dev-qt/qtcore:5
+   dev-qt/linguist-tools
+   dev-qt/qtwidgets:5
+   dev-qt/qtgui:5
+   dev-qt/qtconcurrent:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtdbus:5
+   dev-qt/qtimageformats:5
+   dev-qt/qtsvg:5
+   )"
+RDEPEND="${DEPEND}
+   x11-themes/hicolor-icon-theme
+   dev-libs/openssl
+   dev-libs/libgcrypt
+   media-libs/libpng
+   net-dns/c-ares
+   cryptopp? ( 

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

2019-08-20 Thread Guilherme Amadio
commit: 4d6d100ebe64d84989d6adf0539a31213f39d752
Author: Guilherme Amadio  gentoo  org>
AuthorDate: Tue Aug 20 06:51:33 2019 +
Commit: Guilherme Amadio  gentoo  org>
CommitDate: Tue Aug 20 06:51:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d6d100e

sys-apps/iproute2: fix files installed outside of prefix

DATADIR is for bash-completions, and HDRDIR for headers.

Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: Guilherme Amadio  gentoo.org>

 sys-apps/iproute2/iproute2-5.2.0.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sys-apps/iproute2/iproute2-5.2.0.ebuild 
b/sys-apps/iproute2/iproute2-5.2.0.ebuild
index 81245c6d74f..9033f5cd956 100644
--- a/sys-apps/iproute2/iproute2-5.2.0.ebuild
+++ b/sys-apps/iproute2/iproute2-5.2.0.ebuild
@@ -136,7 +136,9 @@ src_install() {
LIBDIR="${EPREFIX}"/$(get_libdir) \
SBINDIR="${EPREFIX}"/sbin \
CONFDIR="${EPREFIX}"/etc/iproute2 \
+   DATADIR="${EPREFIX}"/usr/share \
DOCDIR="${EPREFIX}"/usr/share/doc/${PF} \
+   HDRDIR="${EPREFIX}"/usr/include \
MANDIR="${EPREFIX}"/usr/share/man \
ARPDDIR="${EPREFIX}"/var/lib/arpd \
install



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

2019-08-20 Thread Ulrich Müller
commit: 9fab152de8b6b6b71b2a7adb2c36646b740e6e3e
Author: Ulrich Müller  gentoo  org>
AuthorDate: Mon Aug 19 21:12:42 2019 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Tue Aug 20 06:46:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fab152d

acct-{group,user}.eclass: Add @SUPPORTED_EAPIS.

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

 eclass/acct-group.eclass | 3 ++-
 eclass/acct-user.eclass  | 5 +++--
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/eclass/acct-group.eclass b/eclass/acct-group.eclass
index d5ccd209c9e..99919789b2c 100644
--- a/eclass/acct-group.eclass
+++ b/eclass/acct-group.eclass
@@ -7,6 +7,7 @@
 # @AUTHOR:
 # Michael Orlitzky 
 # Michał Górny 
+# @SUPPORTED_EAPIS: 7
 # @BLURB: Eclass used to create and maintain a single group entry
 # @DESCRIPTION:
 # This eclass represents and creates a single group entry.  The name
@@ -35,7 +36,7 @@ _ACCT_GROUP_ECLASS=1
 
 case ${EAPI:-0} in
7) ;;
-   *) die "EAPI=${EAPI} not supported";;
+   *) die "EAPI=${EAPI:-0} not supported";;
 esac
 
 inherit user

diff --git a/eclass/acct-user.eclass b/eclass/acct-user.eclass
index fa4f9daef8f..c1396141454 100644
--- a/eclass/acct-user.eclass
+++ b/eclass/acct-user.eclass
@@ -7,6 +7,7 @@
 # @AUTHOR:
 # Michael Orlitzky 
 # Michał Górny 
+# @SUPPORTED_EAPIS: 7
 # @BLURB: Eclass used to create and maintain a single user entry
 # @DESCRIPTION:
 # This eclass represents and creates a single user entry.  The name
@@ -43,7 +44,7 @@ _ACCT_USER_ECLASS=1
 
 case ${EAPI:-0} in
7) ;;
-   *) die "EAPI=${EAPI} not supported";;
+   *) die "EAPI=${EAPI:-0} not supported";;
 esac
 
 inherit user
@@ -107,7 +108,7 @@ readonly ACCT_USER_NAME
 # @REQUIRED
 # @DESCRIPTION:
 # List of groups the user should belong to.  This must be a bash
-# array. 
+# array.
 
 
 # << Boilerplate ebuild variables >>



[gentoo-commits] repo/gentoo:master commit in: games-roguelike/angband/

2019-08-20 Thread Stefan Strogin
commit: bb219b0ded728e7d8577b6bf40d933556264a8cb
Author: Stefan Strogin  gentoo  org>
AuthorDate: Tue Aug 20 06:33:53 2019 +
Commit: Stefan Strogin  gentoo  org>
CommitDate: Tue Aug 20 06:35:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb219b0d

games-roguelike/angband: bump version to 4.2.0

Package-Manager: Portage-2.3.72, Repoman-2.3.17
Signed-off-by: Stefan Strogin  gentoo.org>

 games-roguelike/angband/Manifest |   1 +
 games-roguelike/angband/angband-4.2.0.ebuild | 127 +++
 games-roguelike/angband/metadata.xml |   1 +
 3 files changed, 129 insertions(+)

diff --git a/games-roguelike/angband/Manifest b/games-roguelike/angband/Manifest
index 89392c28f50..0e9b762249c 100644
--- a/games-roguelike/angband/Manifest
+++ b/games-roguelike/angband/Manifest
@@ -1 +1,2 @@
 DIST angband-4.1.3.tar.gz 19924395 BLAKE2B 
573181ab9b3a01abdc34cfac9e69a757eb7558c67c9490240890bc920c6c2a8ebea6268b733f06a6e421829d807fa135131c1512edfc344610a269139cc5ac47
 SHA512 
7810e1f04e337c1b5d1ddb6013785c953e0149dfa536c75dd8816fdfd304c37a09103d653cee0c150225c6ba702e121300a65012d8034079cd41f86a730f9c2a
+DIST angband-4.2.0.tar.gz 24727127 BLAKE2B 
4bdd5cfe49080fc38b988e6606eadddc2e872ca7b01f34e692ca299a420689310e9e972355986e802e654a27837ac2621eb3bc0823b7e771dc0a851a5c5a8bc6
 SHA512 
b5c4884ce765bc45d7c21b8be06bc29c7d84c16e48341967b5d6a847f250db104ef509fc28e8887d4f1cd9ed545e504781186936a1f38931d5113e2fb58b32c3

diff --git a/games-roguelike/angband/angband-4.2.0.ebuild 
b/games-roguelike/angband/angband-4.2.0.ebuild
new file mode 100644
index 000..acb1f3d093c
--- /dev/null
+++ b/games-roguelike/angband/angband-4.2.0.ebuild
@@ -0,0 +1,127 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools desktop xdg-utils
+
+MAJOR_PV=$(ver_cut 1-2)
+
+DESCRIPTION="A roguelike dungeon exploration game based on the books of J.R.R. 
Tolkien"
+HOMEPAGE="https://rephial.org/;
+SRC_URI="https://rephial.org/downloads/${MAJOR_PV}/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+ncurses sdl sdl2 sound +X"
+
+REQUIRED_USE="sdl2? ( sdl )
+   sound? ( sdl )
+   || ( X ncurses )"
+
+RDEPEND="X? (
+   media-fonts/font-misc-misc
+   x11-libs/libX11
+   )
+   ncurses? ( sys-libs/ncurses:0=[unicode] )
+   sdl? (
+   !sdl2? (
+   media-libs/libsdl[video,X]
+   media-libs/sdl-image
+   media-libs/sdl-ttf
+   sound? (
+   media-libs/libsdl[sound]
+   media-libs/sdl-mixer[mp3]
+   )
+   )
+   sdl2? (
+   media-libs/libsdl2[video,X]
+   media-libs/sdl2-image
+   media-libs/sdl2-ttf
+   sound? (
+   media-libs/libsdl2[sound]
+   media-libs/sdl2-mixer[mp3]
+   )
+   )
+   )"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_prepare() {
+   default
+
+   sed -i -e '/libpath/s#datarootdir#datadir#' configure.ac || die
+   sed -i -e "/^.SILENT/d" mk/buildsys.mk.in || die
+
+   if use !sound ; then
+   sed -i -e 's/sounds//' lib/Makefile || die
+   fi
+
+   # Game constant files are now system config files in Angband, but
+   # users will be hidden from applying updates by default
+   {
+   echo "CONFIG_PROTECT_MASK=\"/etc/${PN}/customize/\""
+   echo "CONFIG_PROTECT_MASK=\"/etc/${PN}/gamedata/\""
+   } > "${T}"/99${PN} || die
+
+   eautoreconf
+}
+
+src_configure() {
+   local myconf=(
+   --bindir="${EPREFIX}"/usr/bin
+   --with-private-dirs
+   $(use_enable X x11)
+   $(use_enable ncurses curses)
+   )
+   if use sdl; then
+   if use sdl2; then
+   myconf+=(
+   --enable-sdl2
+   $(use_enable sound sdl2-mixer)
+   )
+   else
+   myconf+=(
+   --enable-sdl
+   $(use_enable sound sdl-mixer)
+   )
+   fi
+   fi
+
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+
+   dodoc changes.txt readme.txt
+   dodoc 
docs/{a-quick-demo,attack,birth,command,customize,dungeon,faq,guide}.rst
+   doenvd "${T}"/99${PN}
+
+   if use X || use sdl; then
+   use X && make_desktop_entry "angband -mx11" "Angband (X11)" 
"${PN}"
+   if use sdl; then
+   use sdl2 && make_desktop_entry "angband -msdl2" 
"Angband (SDL2)" "${PN}" \
+

[gentoo-commits] repo/gentoo:master commit in: sci-physics/root/

2019-08-20 Thread Guilherme Amadio
commit: aaed0b67cad0edabed9ddb57fd8c4d8800055a39
Author: Guilherme Amadio  gentoo  org>
AuthorDate: Mon Aug 19 13:56:28 2019 +
Commit: Guilherme Amadio  gentoo  org>
CommitDate: Tue Aug 20 06:33:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aaed0b67

sci-physics/root: remove nosplash USE flag from live ebuild

This is now the default upstream.

Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: Guilherme Amadio  gentoo.org>

 sci-physics/root/root-.ebuild | 10 +++---
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/sci-physics/root/root-.ebuild 
b/sci-physics/root/root-.ebuild
index 0b58a32c013..e841fafab73 100644
--- a/sci-physics/root/root-.ebuild
+++ b/sci-physics/root/root-.ebuild
@@ -16,9 +16,9 @@ HOMEPAGE="https://root.cern;
 
 IUSE="+X aqua +asimage +c++11 c++14 c++17 cuda +davix debug emacs
+examples fits fftw fortran +gdml graphviz +gsl http libcxx +minuit
-   mysql nosplash odbc +opengl oracle postgres prefix pythia6 pythia8
-   +python qt5 R +roofit root7 shadow sqlite +ssl +tbb test +tmva
-   +unuran vc vmc +xml xrootd"
+   mysql odbc +opengl oracle postgres prefix pythia6 pythia8 +python
+   qt5 R +roofit root7 shadow sqlite +ssl +tbb test +tmva +unuran vc
+   vmc +xml xrootd"
 
 if [[ ${PV} =~ "" ]] ; then
inherit git-r3
@@ -136,10 +136,6 @@ src_prepare() {
 
# CSS should use local images
sed -i -e 's,http://.*/,,' etc/html/ROOT.css || die "html sed failed"
-
-   if use nosplash; then
-   sed -i -e '/bool gNoLogo/s@false@true@' rootx/src/rootx.cxx
-   fi
 }
 
 # Note: ROOT uses bundled clang because it is patched and API-incompatible